public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/mustache/
@ 2022-04-15 20:34 Alessandro Barbieri
  0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2022-04-15 20:34 UTC (permalink / raw
  To: gentoo-commits

commit:     a39a21963858a0727028f90bb9c1dac1c9ae98d6
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Apr  9 10:29:13 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Fri Apr 15 20:34:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a39a2196

dev-ml/mustache: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-ml/mustache/Manifest              |  1 +
 dev-ml/mustache/metadata.xml          | 11 +++++++++++
 dev-ml/mustache/mustache-3.1.0.ebuild | 33 +++++++++++++++++++++++++++++++++
 3 files changed, 45 insertions(+)

diff --git a/dev-ml/mustache/Manifest b/dev-ml/mustache/Manifest
new file mode 100644
index 000000000..c2b5418f0
--- /dev/null
+++ b/dev-ml/mustache/Manifest
@@ -0,0 +1 @@
+DIST mustache-3.1.0.tar.gz 21162 BLAKE2B 6a0d54414ac0154d85023a02e9f2e6f256edb528392a89024566a8903b3d80beaa1ccf0d78af523a3c186f0ca09175848579564fcbc7c847ed7491fc527a46bf SHA512 00657c9a5a5bd07ffc2922e4e35b66e07d2da111c6a9f2d2410dda933d99c436ff93a051d1ce8b76257ae6c8d45589a223f76521ab9d3621353f696f13188503

diff --git a/dev-ml/mustache/metadata.xml b/dev-ml/mustache/metadata.xml
new file mode 100644
index 000000000..97dc89242
--- /dev/null
+++ b/dev-ml/mustache/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">rgrinberg/ocaml-mustache</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-ml/mustache/mustache-3.1.0.ebuild b/dev-ml/mustache/mustache-3.1.0.ebuild
new file mode 100644
index 000000000..afd8eea78
--- /dev/null
+++ b/dev-ml/mustache/mustache-3.1.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune
+
+MYPN="ocaml-${PN}"
+
+DESCRIPTION="mustache.js logic-less templates in OCaml"
+HOMEPAGE="https://github.com/rgrinberg/ocaml-mustache"
+SRC_URI="https://github.com/rgrinberg/${MYPN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MYPN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="ocamlopt test"
+
+DEPEND="
+	dev-ml/jsonm
+	dev-ml/menhir
+	dev-ml/cmdliner
+"
+RDEPEND="
+	${DEPEND}
+	test? (
+		dev-ml/ounit
+		dev-ml/ezjsonm
+	)
+"
+
+RESTRICT="!test? ( test )"


^ permalink raw reply related	[flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/mustache/
@ 2022-04-16 16:20 Alessandro Barbieri
  0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2022-04-16 16:20 UTC (permalink / raw
  To: gentoo-commits

commit:     1099ba3b7cd35f431fb49c23b0cd408c8030c9a7
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Apr 16 12:33:40 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Apr 16 16:20:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1099ba3b

dev-ml/mustache: update HOMEPAGE

Closes: https://bugs.gentoo.org/838814
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-ml/mustache/mustache-3.1.0.ebuild | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/dev-ml/mustache/mustache-3.1.0.ebuild b/dev-ml/mustache/mustache-3.1.0.ebuild
index afd8eea78..6861c6c4f 100644
--- a/dev-ml/mustache/mustache-3.1.0.ebuild
+++ b/dev-ml/mustache/mustache-3.1.0.ebuild
@@ -8,7 +8,10 @@ inherit dune
 MYPN="ocaml-${PN}"
 
 DESCRIPTION="mustache.js logic-less templates in OCaml"
-HOMEPAGE="https://github.com/rgrinberg/ocaml-mustache"
+HOMEPAGE="
+	https://github.com/rgrinberg/ocaml-mustache
+	https://opam.ocaml.org/packages/mustache/
+"
 SRC_URI="https://github.com/rgrinberg/${MYPN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
 S="${WORKDIR}/${MYPN}-${PV}"
 
@@ -18,16 +21,12 @@ KEYWORDS="~amd64"
 IUSE="ocamlopt test"
 
 DEPEND="
-	dev-ml/jsonm
-	dev-ml/menhir
-	dev-ml/cmdliner
+	dev-ml/menhir:=
+	dev-ml/ezjsonm:=
 "
 RDEPEND="
 	${DEPEND}
-	test? (
-		dev-ml/ounit
-		dev-ml/ezjsonm
-	)
+	test? ( dev-ml/ounit )
 "
 
 RESTRICT="!test? ( test )"


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-04-16 16:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-15 20:34 [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/mustache/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2022-04-16 16:20 Alessandro Barbieri

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox