public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2015-10-17 14:09 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2015-10-17 14:09 UTC (permalink / raw
  To: gentoo-commits

commit:     7a3d1300f1f5b2f1dca6d7b019ee64884310f5c0
Author:     Matthew Brewer <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Fri Oct 16 12:25:24 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Oct 17 14:01:19 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a3d1300

dev-ml/ocaml-uri: new ebuild

- needed as a transitive dependency of Libre S3 1.1 (net-misc/libres3)
- explicit support for MirageOS is not enabled

 dev-ml/ocaml-uri/Manifest               |  1 +
 dev-ml/ocaml-uri/metadata.xml           | 12 +++++++++++
 dev-ml/ocaml-uri/ocaml-uri-1.9.1.ebuild | 37 +++++++++++++++++++++++++++++++++
 3 files changed, 50 insertions(+)

diff --git a/dev-ml/ocaml-uri/Manifest b/dev-ml/ocaml-uri/Manifest
new file mode 100644
index 0000000..4118a74
--- /dev/null
+++ b/dev-ml/ocaml-uri/Manifest
@@ -0,0 +1 @@
+DIST ocaml-uri-1.9.1.tar.gz 256457 SHA256 e7e9f53150bf67eceb556d48119db169aa05e8a8227cde3655545bcace034402 SHA512 9a5acac8c15928ce6e52d7f9001701c63223607db800ab5247cdecfedf96133912af59d388f51e9d4fafe3b1c1658d56bf2c79d754c92f626da33c8a30e79609 WHIRLPOOL e13d77aa1bd2c2b852ea0857d25ded71d10fd3cb082ed2d6691aa623ef437ab96b19809a3680bb72dc4e8c3c72c3f906afe06d4ca1610690201aebaeeb242784

diff --git a/dev-ml/ocaml-uri/metadata.xml b/dev-ml/ocaml-uri/metadata.xml
new file mode 100644
index 0000000..e4232a4
--- /dev/null
+++ b/dev-ml/ocaml-uri/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <herd>ml</herd>
+    <herd>proxy-maintainers</herd>
+    <maintainer>
+        <email>tomboy64@sina.cn</email>
+    </maintainer>
+    <use>
+        <flag name="allservices">Compile support for all service types</flag>
+    </use>
+</pkgmetadata>

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.1.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.1.ebuild
new file mode 100644
index 0000000..e10f5b6
--- /dev/null
+++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="RFC3986 URI parsing library for OCaml"
+HOMEPAGE="https://github.com/mirage/ocaml-uri https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="allservices"
+
+RDEPEND="
+	dev-ml/ocaml-re:=
+	>=dev-ml/sexplib-109.53.00:=
+	dev-ml/stringext:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( >=dev-ml/ounit-1.0.2 )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable allservices)
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2015-10-17 16:24 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2015-10-17 16:24 UTC (permalink / raw
  To: gentoo-commits

commit:     540833940aff5845645a888aefb82c8d32e978e1
Author:     Matthew Brewer <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Fri Oct 16 12:25:24 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Oct 17 15:17:09 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54083394

dev-ml/ocaml-uri: revbump

changed SLOT="0" to SLOT="0/${PV}" to make := actually useful

 dev-ml/ocaml-uri/{ocaml-uri-1.9.1.ebuild => ocaml-uri-1.9.1-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.1.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.1-r1.ebuild
similarity index 97%
rename from dev-ml/ocaml-uri/ocaml-uri-1.9.1.ebuild
rename to dev-ml/ocaml-uri/ocaml-uri-1.9.1-r1.ebuild
index e10f5b6..373e810 100644
--- a/dev-ml/ocaml-uri/ocaml-uri-1.9.1.ebuild
+++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.1-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/mirage/ocaml-uri https://mirage.io"
 SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="ISC"
-SLOT="0"
+SLOT="0/${PV}"
 KEYWORDS="~amd64"
 IUSE="allservices"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2016-02-05 20:59 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2016-02-05 20:59 UTC (permalink / raw
  To: gentoo-commits

commit:     0862a508f7a31525fd5d9744b4d51753d8be4179
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  5 20:52:52 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Feb  5 20:59:02 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0862a508

dev-ml/ocaml-uri: restrict dep to older sexplib, based on opam dep

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ml/ocaml-uri/ocaml-uri-1.9.1-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.1-r1.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.1-r1.ebuild
index 373e810..52341e8 100644
--- a/dev-ml/ocaml-uri/ocaml-uri-1.9.1-r1.ebuild
+++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.1-r1.ebuild
@@ -20,6 +20,7 @@ IUSE="allservices"
 RDEPEND="
 	dev-ml/ocaml-re:=
 	>=dev-ml/sexplib-109.53.00:=
+	<dev-ml/sexplib-113.01.00
 	dev-ml/stringext:=
 	dev-ml/type-conv:=
 "


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2016-02-10 10:32 Ian Delaney
  0 siblings, 0 replies; 13+ messages in thread
From: Ian Delaney @ 2016-02-10 10:32 UTC (permalink / raw
  To: gentoo-commits

commit:     92c5cd2c45129411dac7c667b3fca87598eca48c
Author:     Matthew Brewer <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Wed Feb 10 09:37:34 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 09:37:34 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92c5cd2c

dev-ml/ocaml-uri: update metadata.xml to contain a name-tag for tomboy64 <AT> sina.cn

Package-Manager: portage-2.2.26
RepoMan-Options: --ignore-arches

 dev-ml/ocaml-uri/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-ml/ocaml-uri/metadata.xml b/dev-ml/ocaml-uri/metadata.xml
index 950a237..ea9ef19 100644
--- a/dev-ml/ocaml-uri/metadata.xml
+++ b/dev-ml/ocaml-uri/metadata.xml
@@ -3,6 +3,8 @@
 <pkgmetadata>
     <maintainer type="person">
         <email>tomboy64@sina.cn</email>
+        <name>M.B.</name>
+        <description>Maintainer, assign bugs to him</description>
     </maintainer>
     <maintainer type="project">
         <email>ml@gentoo.org</email>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2016-03-14 12:21 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2016-03-14 12:21 UTC (permalink / raw
  To: gentoo-commits

commit:     7791ecc6a88cf806039d800bb10e2e4989fc0770
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 14 11:51:25 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Mar 14 12:18:03 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7791ecc6

dev-ml/ocaml-uri: bump to 1.9.2

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ml/ocaml-uri/Manifest               |  1 +
 dev-ml/ocaml-uri/ocaml-uri-1.9.2.ebuild | 38 +++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-ml/ocaml-uri/Manifest b/dev-ml/ocaml-uri/Manifest
index 4118a74..3214f29 100644
--- a/dev-ml/ocaml-uri/Manifest
+++ b/dev-ml/ocaml-uri/Manifest
@@ -1 +1,2 @@
 DIST ocaml-uri-1.9.1.tar.gz 256457 SHA256 e7e9f53150bf67eceb556d48119db169aa05e8a8227cde3655545bcace034402 SHA512 9a5acac8c15928ce6e52d7f9001701c63223607db800ab5247cdecfedf96133912af59d388f51e9d4fafe3b1c1658d56bf2c79d754c92f626da33c8a30e79609 WHIRLPOOL e13d77aa1bd2c2b852ea0857d25ded71d10fd3cb082ed2d6691aa623ef437ab96b19809a3680bb72dc4e8c3c72c3f906afe06d4ca1610690201aebaeeb242784
+DIST ocaml-uri-1.9.2.tar.gz 256642 SHA256 8c3250d3b6bf872e02b888ba4b1d71fc2672a6a235b99e83113ddf749eca7f09 SHA512 c71cb8cdda7823139475c9f4d915fb41ccf621f1f2460eba15c537ff8655520ea6daf248e22e8e9f6dfb1a4a204753ee77f458549b35c0b5b6e26e31b07b0ea7 WHIRLPOOL 9ed0308b7fcfb9dded2519e3d02e3fff1c358cd28972af3ff617e36ad963f220125bd31ebacfa615de19745c69a91d0fc6acadee37e0f7f7a6709c949d301f4f

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.2.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.2.ebuild
new file mode 100644
index 0000000..4b83916
--- /dev/null
+++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="RFC3986 URI parsing library for OCaml"
+HOMEPAGE="https://github.com/mirage/ocaml-uri https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="allservices"
+
+RDEPEND="
+	dev-ml/ocaml-re:=
+	>=dev-ml/sexplib-109.53.00:=
+	dev-ml/ppx_sexp_conv:=
+	dev-ml/stringext:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( >=dev-ml/ounit-1.0.2 )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable allservices)
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2017-06-03 15:13 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2017-06-03 15:13 UTC (permalink / raw
  To: gentoo-commits

commit:     f9f72e276f3c3ca835a93ca5d9467684383ca96c
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  2 10:54:02 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Jun  3 15:13:26 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9f72e27

dev-ml/ocaml-uri: bump to 1.9.4

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-uri/Manifest               |  1 +
 dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild | 38 +++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-ml/ocaml-uri/Manifest b/dev-ml/ocaml-uri/Manifest
index de2a7c2c678..5dc6bb6039a 100644
--- a/dev-ml/ocaml-uri/Manifest
+++ b/dev-ml/ocaml-uri/Manifest
@@ -1 +1,2 @@
 DIST ocaml-uri-1.9.2.tar.gz 256642 SHA256 8c3250d3b6bf872e02b888ba4b1d71fc2672a6a235b99e83113ddf749eca7f09 SHA512 c71cb8cdda7823139475c9f4d915fb41ccf621f1f2460eba15c537ff8655520ea6daf248e22e8e9f6dfb1a4a204753ee77f458549b35c0b5b6e26e31b07b0ea7 WHIRLPOOL 9ed0308b7fcfb9dded2519e3d02e3fff1c358cd28972af3ff617e36ad963f220125bd31ebacfa615de19745c69a91d0fc6acadee37e0f7f7a6709c949d301f4f
+DIST ocaml-uri-1.9.4.tar.gz 213917 SHA256 cdcecd5bc9fb74fc9ba76da63acd33bc5a7a7e5f066c5729d36cc1488d3f348f SHA512 c2314c55d1d89bb7824e6bd2aad57fa2bdc4889d5e6c0b4ce75f4ca33660d510d7ab125ff0f340f4688930f3ddac13193d34762f912cc70c4ce30aa206f32ddc WHIRLPOOL ff9cadecc800d37a651e17e0d4765c9796df046c96f74139866dd1386c9eb16241caa82e3aa440ae415bf2cc3b16a3f3a8577396c4709ba93f0923151b746c06

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
new file mode 100644
index 00000000000..d7a33a6f362
--- /dev/null
+++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="RFC3986 URI parsing library for OCaml"
+HOMEPAGE="https://github.com/mirage/ocaml-uri https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+	dev-ml/ocaml-re:=
+	dev-ml/sexplib:=
+	dev-ml/ppx_sexp_conv:=
+	dev-ml/stringext:=
+	dev-ml/type-conv:=
+	dev-lang/ocaml:=
+"
+DEPEND="${RDEPEND}
+	test? ( >=dev-ml/ounit-1.0.2 )
+	dev-ml/jbuilder
+	dev-ml/opam
+"
+
+
+src_install() {
+	opam-installer -i \
+		--prefix="${ED}/usr" \
+		--libdir="${D}/$(ocamlc -where)" \
+		--docdir="${ED}/usr/share/doc/${PF}" \
+		uri.install || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2017-06-03 17:13 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2017-06-03 17:13 UTC (permalink / raw
  To: gentoo-commits

commit:     85c898451db25ba5d25db87888509d129bf800ee
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  3 17:12:51 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Jun  3 17:12:59 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85c89845

dev-ml/ocaml-uri: remove spurious blank line

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
index d7a33a6f362..c7251eb6912 100644
--- a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
+++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
@@ -28,7 +28,6 @@ DEPEND="${RDEPEND}
 	dev-ml/opam
 "
 
-
 src_install() {
 	opam-installer -i \
 		--prefix="${ED}/usr" \


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2017-06-25 14:42 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2017-06-25 14:42 UTC (permalink / raw
  To: gentoo-commits

commit:     a57ded9d68d26acc21d85fe507aef8a887fce62d
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 25 10:59:10 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Jun 25 14:42:42 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a57ded9d

dev-ml/ocaml-uri: add missing ppx_core:= dep

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
index c7251eb6912..aa6b02ac68e 100644
--- a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
+++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
@@ -18,6 +18,7 @@ RDEPEND="
 	dev-ml/ocaml-re:=
 	dev-ml/sexplib:=
 	dev-ml/ppx_sexp_conv:=
+	dev-ml/ppx_core:=
 	dev-ml/stringext:=
 	dev-ml/type-conv:=
 	dev-lang/ocaml:=


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2017-06-25 14:42 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2017-06-25 14:42 UTC (permalink / raw
  To: gentoo-commits

commit:     dc096672a6de83efd5ff723c80626c5a700a5aad
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 25 10:58:39 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Jun 25 14:42:41 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc096672

dev-ml/ocaml-uri: Remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-uri/Manifest               |  1 -
 dev-ml/ocaml-uri/metadata.xml           |  3 ---
 dev-ml/ocaml-uri/ocaml-uri-1.9.2.ebuild | 37 ---------------------------------
 3 files changed, 41 deletions(-)

diff --git a/dev-ml/ocaml-uri/Manifest b/dev-ml/ocaml-uri/Manifest
index 5dc6bb6039a..0b9754dc073 100644
--- a/dev-ml/ocaml-uri/Manifest
+++ b/dev-ml/ocaml-uri/Manifest
@@ -1,2 +1 @@
-DIST ocaml-uri-1.9.2.tar.gz 256642 SHA256 8c3250d3b6bf872e02b888ba4b1d71fc2672a6a235b99e83113ddf749eca7f09 SHA512 c71cb8cdda7823139475c9f4d915fb41ccf621f1f2460eba15c537ff8655520ea6daf248e22e8e9f6dfb1a4a204753ee77f458549b35c0b5b6e26e31b07b0ea7 WHIRLPOOL 9ed0308b7fcfb9dded2519e3d02e3fff1c358cd28972af3ff617e36ad963f220125bd31ebacfa615de19745c69a91d0fc6acadee37e0f7f7a6709c949d301f4f
 DIST ocaml-uri-1.9.4.tar.gz 213917 SHA256 cdcecd5bc9fb74fc9ba76da63acd33bc5a7a7e5f066c5729d36cc1488d3f348f SHA512 c2314c55d1d89bb7824e6bd2aad57fa2bdc4889d5e6c0b4ce75f4ca33660d510d7ab125ff0f340f4688930f3ddac13193d34762f912cc70c4ce30aa206f32ddc WHIRLPOOL ff9cadecc800d37a651e17e0d4765c9796df046c96f74139866dd1386c9eb16241caa82e3aa440ae415bf2cc3b16a3f3a8577396c4709ba93f0923151b746c06

diff --git a/dev-ml/ocaml-uri/metadata.xml b/dev-ml/ocaml-uri/metadata.xml
index 34e6384d841..b6a6ada36e6 100644
--- a/dev-ml/ocaml-uri/metadata.xml
+++ b/dev-ml/ocaml-uri/metadata.xml
@@ -5,9 +5,6 @@
         <email>ml@gentoo.org</email>
         <name>Gentoo ML Project</name>
     </maintainer>
-   <use>
-        <flag name="allservices">Compile support for all service types</flag>
-    </use>
     <upstream>
         <remote-id type="github">mirage/ocaml-uri</remote-id>
     </upstream>

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.2.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.2.ebuild
deleted file mode 100644
index 9440ac353da..00000000000
--- a/dev-ml/ocaml-uri/ocaml-uri-1.9.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="RFC3986 URI parsing library for OCaml"
-HOMEPAGE="https://github.com/mirage/ocaml-uri https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="allservices"
-
-RDEPEND="
-	dev-ml/ocaml-re:=
-	dev-ml/sexplib:=
-	dev-ml/ppx_sexp_conv:=
-	dev-ml/stringext:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	test? ( >=dev-ml/ounit-1.0.2 )
-	${RDEPEND}
-"
-
-src_configure() {
-	oasis_configure_opts="
-		$(use_enable allservices)
-	" oasis_src_configure
-}
-
-DOCS=( CHANGES README.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2017-06-25 14:42 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2017-06-25 14:42 UTC (permalink / raw
  To: gentoo-commits

commit:     cf57d9b51306412eef45dbea556d2b2845b5f2cb
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 25 11:29:50 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Jun 25 14:42:43 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf57d9b5

dev-ml/ocaml-uri: add missing dev-ml/ppx_type_conv:= dep

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
index aa6b02ac68e..87566fc4d15 100644
--- a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
+++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
@@ -19,6 +19,7 @@ RDEPEND="
 	dev-ml/sexplib:=
 	dev-ml/ppx_sexp_conv:=
 	dev-ml/ppx_core:=
+	dev-ml/ppx_type_conv:=
 	dev-ml/stringext:=
 	dev-ml/type-conv:=
 	dev-lang/ocaml:=


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/
@ 2017-09-22  8:32 Alexis Ballier
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier @ 2017-09-22  8:32 UTC (permalink / raw
  To: gentoo-commits

commit:     3d59a59245133238f2d8e8c63f37c8582e45d898
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 22 08:24:44 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Sep 22 08:31:45 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d59a592

dev-ml/ocaml-uri: update to opam.eclass

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
index 87566fc4d15..53b7fbd0612 100644
--- a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
+++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit findlib
+inherit findlib opam
 
 DESCRIPTION="RFC3986 URI parsing library for OCaml"
 HOMEPAGE="https://github.com/mirage/ocaml-uri https://mirage.io"
@@ -22,18 +22,12 @@ RDEPEND="
 	dev-ml/ppx_type_conv:=
 	dev-ml/stringext:=
 	dev-ml/type-conv:=
-	dev-lang/ocaml:=
 "
 DEPEND="${RDEPEND}
 	test? ( >=dev-ml/ounit-1.0.2 )
 	dev-ml/jbuilder
-	dev-ml/opam
 "
 
 src_install() {
-	opam-installer -i \
-		--prefix="${ED}/usr" \
-		--libdir="${D}/$(ocamlc -where)" \
-		--docdir="${ED}/usr/share/doc/${PF}" \
-		uri.install || die
+	opam_src_install uri
 }


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

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

commit:     0eb6ae9c4b0678a16401ebf5c5f34e88dfaf7851
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 17 21:15:31 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Wed Feb 17 21:15:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eb6ae9c

dev-ml/ocaml-uri: 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-uri/metadata.xml                                 | 11 +++++++----
 .../{ocaml-uri-1.9.4.ebuild => ocaml-uri-1.9.4-r1.ebuild}     |  4 ++--
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/dev-ml/ocaml-uri/metadata.xml b/dev-ml/ocaml-uri/metadata.xml
index c310dca89ba..5d2f0a1ef51 100644
--- a/dev-ml/ocaml-uri/metadata.xml
+++ b/dev-ml/ocaml-uri/metadata.xml
@@ -1,8 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-   <!-- maintainer-needed -->
-    <upstream>
-        <remote-id type="github">mirage/ocaml-uri</remote-id>
-    </upstream>
+	<maintainer type="project">
+		<email>ml@gentoo.org</email>
+		<name>ML</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">mirage/ocaml-uri</remote-id>
+	</upstream>
 </pkgmetadata>

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.4-r1.ebuild
similarity index 91%
rename from dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
rename to dev-ml/ocaml-uri/ocaml-uri-1.9.4-r1.ebuild
index bfa2f6bcf83..63708fe6bc1 100644
--- a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
+++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ IUSE="test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="
-	dev-ml/ocaml-re:=
+	dev-ml/re:=
 	dev-ml/sexplib:=
 	dev-ml/ppx_sexp_conv:=
 	dev-ml/ppx_core:=


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

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

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

dev-ml/ocaml-uri: treeclean

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

 dev-ml/ocaml-uri/Manifest                  |  1 -
 dev-ml/ocaml-uri/metadata.xml              | 11 ----------
 dev-ml/ocaml-uri/ocaml-uri-1.9.4-r1.ebuild | 34 ------------------------------
 3 files changed, 46 deletions(-)

diff --git a/dev-ml/ocaml-uri/Manifest b/dev-ml/ocaml-uri/Manifest
deleted file mode 100644
index fb9710722c6..00000000000
--- a/dev-ml/ocaml-uri/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ocaml-uri-1.9.4.tar.gz 213917 BLAKE2B 3b76ae2f39a7a97e581791e32e7ec302faacaf883ae82bb635497f205a7bb12b331f2ef34f834c4b22b56433fef75b6ba2c60db6b66f13997290e108f6f0f38b SHA512 c2314c55d1d89bb7824e6bd2aad57fa2bdc4889d5e6c0b4ce75f4ca33660d510d7ab125ff0f340f4688930f3ddac13193d34762f912cc70c4ce30aa206f32ddc

diff --git a/dev-ml/ocaml-uri/metadata.xml b/dev-ml/ocaml-uri/metadata.xml
deleted file mode 100644
index 5d2f0a1ef51..00000000000
--- a/dev-ml/ocaml-uri/metadata.xml
+++ /dev/null
@@ -1,11 +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>
-	<upstream>
-		<remote-id type="github">mirage/ocaml-uri</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.4-r1.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.4-r1.ebuild
deleted file mode 100644
index 63708fe6bc1..00000000000
--- a/dev-ml/ocaml-uri/ocaml-uri-1.9.4-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib opam
-
-DESCRIPTION="RFC3986 URI parsing library for OCaml"
-HOMEPAGE="https://github.com/mirage/ocaml-uri https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-ml/re:=
-	dev-ml/sexplib:=
-	dev-ml/ppx_sexp_conv:=
-	dev-ml/ppx_core:=
-	dev-ml/ppx_type_conv:=
-	dev-ml/stringext:=
-	dev-ml/type-conv:=
-"
-DEPEND="${RDEPEND}
-	test? ( >=dev-ml/ounit-1.0.2 )
-	dev-ml/jbuilder
-"
-
-src_install() {
-	opam_src_install uri
-}


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

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

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-17 16:24 [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-uri/ Alexis Ballier
  -- strict thread matches above, loose matches on Subject: below --
2021-04-04  6:10 Sam James
2021-02-17 21:15 Alfredo Tupone
2017-09-22  8:32 Alexis Ballier
2017-06-25 14:42 Alexis Ballier
2017-06-25 14:42 Alexis Ballier
2017-06-25 14:42 Alexis Ballier
2017-06-03 17:13 Alexis Ballier
2017-06-03 15:13 Alexis Ballier
2016-03-14 12:21 Alexis Ballier
2016-02-10 10:32 Ian Delaney
2016-02-05 20:59 Alexis Ballier
2015-10-17 14:09 Alexis Ballier

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