public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cohttp/
@ 2017-03-11 10:31 Alexis Ballier
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier @ 2017-03-11 10:31 UTC (permalink / raw
  To: gentoo-commits

commit:     218f1f1600537f011869669b196b05e0937fc746
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 11 10:31:24 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 10:31:38 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=218f1f16

dev-ml/ocaml-cohttp: Initial import. Ebuild by me.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-ml/ocaml-cohttp/Manifest                   |  1 +
 dev-ml/ocaml-cohttp/metadata.xml               | 12 +++++
 dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0.ebuild | 62 ++++++++++++++++++++++++++
 3 files changed, 75 insertions(+)

diff --git a/dev-ml/ocaml-cohttp/Manifest b/dev-ml/ocaml-cohttp/Manifest
new file mode 100644
index 00000000000..2a2970077b9
--- /dev/null
+++ b/dev-ml/ocaml-cohttp/Manifest
@@ -0,0 +1 @@
+DIST ocaml-cohttp-0.22.0.tar.gz 194568 SHA256 706a3851b54ce9feb5bf3184a5e95ab79128756f2b31b646e7a69c82cb4e7678 SHA512 60ae828a3e2085d5468f5d177f50a8e7a02ed47b8036af5548996ba3d36d8eef756662259abc65035c5d1f4158c9760762ac5f85376d6bfc76a7f027f01fa5b2 WHIRLPOOL 5c66d8d5ddf7acc5484a5970236e4e972dfb82b6354dd6894ad265f2f5e97b6c6709e7dded8d29ff7942c563d421894ed17d34f2765020337b2016b734793822

diff --git a/dev-ml/ocaml-cohttp/metadata.xml b/dev-ml/ocaml-cohttp/metadata.xml
new file mode 100644
index 00000000000..fa5c1b148ef
--- /dev/null
+++ b/dev-ml/ocaml-cohttp/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="project">
+	<email>ml@gentoo.org</email>
+	<name>Gentoo ML Project</name>
+</maintainer>
+  <use>
+	  <flag name="async">Enables support for the <pkg>dev-ml/async</pkg> asynchronous execution library.</flag>
+	  <flag name="lwt">Enables support for the <pkg>dev-ml/lwt</pkg> cooperative light-weight thread library.</flag>
+  </use>
+</pkgmetadata>

diff --git a/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0.ebuild b/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0.ebuild
new file mode 100644
index 00000000000..bb00e40e162
--- /dev/null
+++ b/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+OASIS_BUILD_TESTS=1
+OASIS_BUILD_DOCS=1
+
+inherit oasis
+
+DESCRIPTION="Very lightweight HTTP server using Lwt or Async"
+HOMEPAGE="https://github.com/mirage/ocaml-cohttp"
+SRC_URI="https://github.com/mirage/ocaml-cohttp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async javascript +lwt"
+
+DEPEND="
+	dev-ml/ocaml-re:=
+	dev-ml/stringext:=
+	dev-ml/ocaml-uri:=
+	dev-ml/fieldslib:=
+	dev-ml/sexplib:=
+	dev-ml/ppx_fields_conv:=
+	dev-ml/ppx_sexp_conv:=
+	dev-ml/ocaml-base64:=
+	lwt? (
+		dev-ml/lwt:=
+		dev-ml/logs:=[fmt,lwt]
+		dev-ml/cmdliner:=
+		dev-ml/ocaml-conduit:=
+		dev-ml/ocaml-magic-mime:=
+	)
+	async? (
+		dev-ml/ocaml-conduit:=
+		dev-ml/logs:=[fmt]
+		dev-ml/ocaml-magic-mime:=
+		dev-ml/fmt:=
+	)
+	javascript? (
+		dev-ml/js_of_ocaml:=[ppx]
+	)
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	test? (
+		dev-ml/ounit
+		dev-ml/alcotest
+	)
+"
+DOCS=( README.md CHANGES DESIGN.md TODO.md )
+
+src_configure() {
+	local oasis_configure_opts="
+		$(use_enable lwt) $(use_enable lwt lwt-unix)
+		$(use_enable async)
+		$(use_enable javascript js)
+	"
+	oasis_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cohttp/
@ 2021-02-17 21:13 Alfredo Tupone
  0 siblings, 0 replies; 4+ messages in thread
From: Alfredo Tupone @ 2021-02-17 21:13 UTC (permalink / raw
  To: gentoo-commits

commit:     233a8d7a065be16867ae6127633e95c6276063ca
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 17 21:12:40 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Wed Feb 17 21:13:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233a8d7a

dev-ml/ocaml-cohttp: ocaml-re -> re

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/ocaml-cohttp/metadata.xml                                     | 5 ++++-
 .../{ocaml-cohttp-0.22.0.ebuild => ocaml-cohttp-0.22.0-r1.ebuild}    | 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/dev-ml/ocaml-cohttp/metadata.xml b/dev-ml/ocaml-cohttp/metadata.xml
index 5671f937b5e..fb051a0cc19 100644
--- a/dev-ml/ocaml-cohttp/metadata.xml
+++ b/dev-ml/ocaml-cohttp/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="project">
+		<email>ml@gentoo.org</email>
+		<name>ML</name>
+	</maintainer>
 	<use>
 		<flag name="async">Enables support for the <pkg>dev-ml/async</pkg> asynchronous execution library.</flag>
 		<flag name="lwt">Enables support for the <pkg>dev-ml/lwt</pkg> cooperative light-weight thread library.</flag>

diff --git a/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0.ebuild b/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild
similarity index 95%
rename from dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0.ebuild
rename to dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild
index bb00e40e162..55c330d8b1b 100644
--- a/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0.ebuild
+++ b/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ KEYWORDS="~amd64"
 IUSE="async javascript +lwt"
 
 DEPEND="
-	dev-ml/ocaml-re:=
+	dev-ml/re:=
 	dev-ml/stringext:=
 	dev-ml/ocaml-uri:=
 	dev-ml/fieldslib:=


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cohttp/
@ 2021-03-06 18:10 Alfredo Tupone
  0 siblings, 0 replies; 4+ messages in thread
From: Alfredo Tupone @ 2021-03-06 18:10 UTC (permalink / raw
  To: gentoo-commits

commit:     4c2442d1715386b1abaa8bb17a2c0a53c4924ef5
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  6 18:09:51 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Mar  6 18:09:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c2442d1

dev-ml/ocaml-cohttp: rm dep on dev-ml/js_of_ocaml

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild b/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild
index 55c330d8b1b..bfcf3140f3d 100644
--- a/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild
+++ b/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/mirage/ocaml-cohttp/archive/v${PV}.tar.gz -> ${P}.ta
 LICENSE="ISC"
 SLOT="0/${PV}"
 KEYWORDS="~amd64"
-IUSE="async javascript +lwt"
+IUSE="async +lwt"
 
 DEPEND="
 	dev-ml/re:=
@@ -39,9 +39,6 @@ DEPEND="
 		dev-ml/ocaml-magic-mime:=
 		dev-ml/fmt:=
 	)
-	javascript? (
-		dev-ml/js_of_ocaml:=[ppx]
-	)
 "
 RDEPEND="${DEPEND}"
 DEPEND="${DEPEND}
@@ -56,7 +53,6 @@ src_configure() {
 	local oasis_configure_opts="
 		$(use_enable lwt) $(use_enable lwt lwt-unix)
 		$(use_enable async)
-		$(use_enable javascript js)
 	"
 	oasis_src_configure
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cohttp/
@ 2021-04-04  6:10 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2021-04-04  6:10 UTC (permalink / raw
  To: gentoo-commits

commit:     7825eadea859b5632471f710bfaa7d884ed9de46
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 22 04:13:49 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr  4 06:09:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7825eade

dev-ml/ocaml-cohttp: treeclean

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/ocaml-cohttp/Manifest                      |  1 -
 dev-ml/ocaml-cohttp/metadata.xml                  | 15 ------
 dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild | 58 -----------------------
 3 files changed, 74 deletions(-)

diff --git a/dev-ml/ocaml-cohttp/Manifest b/dev-ml/ocaml-cohttp/Manifest
deleted file mode 100644
index 667c5207f2b..00000000000
--- a/dev-ml/ocaml-cohttp/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ocaml-cohttp-0.22.0.tar.gz 194568 BLAKE2B 220c291cdf50c1720e553cc224f6b3c7723add13a637cedd33deb162d4f420a8577b716f073c2b6a630de4458bdc9ac69d8eeeb1ccd44cb310b1a1262188c680 SHA512 60ae828a3e2085d5468f5d177f50a8e7a02ed47b8036af5548996ba3d36d8eef756662259abc65035c5d1f4158c9760762ac5f85376d6bfc76a7f027f01fa5b2

diff --git a/dev-ml/ocaml-cohttp/metadata.xml b/dev-ml/ocaml-cohttp/metadata.xml
deleted file mode 100644
index fb051a0cc19..00000000000
--- a/dev-ml/ocaml-cohttp/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>ml@gentoo.org</email>
-		<name>ML</name>
-	</maintainer>
-	<use>
-		<flag name="async">Enables support for the <pkg>dev-ml/async</pkg> asynchronous execution library.</flag>
-		<flag name="lwt">Enables support for the <pkg>dev-ml/lwt</pkg> cooperative light-weight thread library.</flag>
-	</use>
-	<upstream>
-		<remote-id type="github">mirage/ocaml-cohttp</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild b/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild
deleted file mode 100644
index bfcf3140f3d..00000000000
--- a/dev-ml/ocaml-cohttp/ocaml-cohttp-0.22.0-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-OASIS_BUILD_TESTS=1
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="Very lightweight HTTP server using Lwt or Async"
-HOMEPAGE="https://github.com/mirage/ocaml-cohttp"
-SRC_URI="https://github.com/mirage/ocaml-cohttp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt"
-
-DEPEND="
-	dev-ml/re:=
-	dev-ml/stringext:=
-	dev-ml/ocaml-uri:=
-	dev-ml/fieldslib:=
-	dev-ml/sexplib:=
-	dev-ml/ppx_fields_conv:=
-	dev-ml/ppx_sexp_conv:=
-	dev-ml/ocaml-base64:=
-	lwt? (
-		dev-ml/lwt:=
-		dev-ml/logs:=[fmt,lwt]
-		dev-ml/cmdliner:=
-		dev-ml/ocaml-conduit:=
-		dev-ml/ocaml-magic-mime:=
-	)
-	async? (
-		dev-ml/ocaml-conduit:=
-		dev-ml/logs:=[fmt]
-		dev-ml/ocaml-magic-mime:=
-		dev-ml/fmt:=
-	)
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	test? (
-		dev-ml/ounit
-		dev-ml/alcotest
-	)
-"
-DOCS=( README.md CHANGES DESIGN.md TODO.md )
-
-src_configure() {
-	local oasis_configure_opts="
-		$(use_enable lwt) $(use_enable lwt lwt-unix)
-		$(use_enable async)
-	"
-	oasis_src_configure
-}


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

end of thread, other threads:[~2021-04-04  6:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-04  6:10 [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cohttp/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2021-03-06 18:10 Alfredo Tupone
2021-02-17 21:13 Alfredo Tupone
2017-03-11 10:31 Alexis Ballier

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