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

commit:     899b27034ad77bf7339a2e3c1cd66e9cdf791502
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  6 13:14:52 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Oct  6 13:21:10 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899b2703

dev-ml/dns: move from dev-ml/ocaml-dns to match opam name

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 dev-ml/dns/Manifest         |  1 +
 dev-ml/dns/dns-1.0.0.ebuild | 53 +++++++++++++++++++++++++++++++++++++++++++++
 dev-ml/dns/metadata.xml     | 11 ++++++++++
 3 files changed, 65 insertions(+)

diff --git a/dev-ml/dns/Manifest b/dev-ml/dns/Manifest
new file mode 100644
index 00000000000..467ed0a3eec
--- /dev/null
+++ b/dev-ml/dns/Manifest
@@ -0,0 +1 @@
+DIST ocaml-dns-1.0.0.tar.gz 99161 SHA256 823410badaf2faf54ca8a59472b0ad82c4db9fe4ef92f6809061baa826851226 SHA512 199653605e985851dcaafc94f1efeba5c261c29cd5e5f8eaebc9f7d25a05c43adcf7620efb291b22f9549f7c05f8ac3f6abfbcf40e0d7762bd2f7cd623ebcb1c WHIRLPOOL e7c26857270d92be2e8e068ac29119ef5d82d52fd739b8304e84c595d6a6e7fc11c22ed98e4a6d99a20f4e9d1d6b28dbc76c333d6b464bbd1dc4d37597cfe66c

diff --git a/dev-ml/dns/dns-1.0.0.ebuild b/dev-ml/dns/dns-1.0.0.ebuild
new file mode 100644
index 00000000000..85d9d78a23c
--- /dev/null
+++ b/dev-ml/dns/dns-1.0.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib eutils
+
+DESCRIPTION="A pure OCaml implementation of the DNS protocol"
+HOMEPAGE="https://github.com/mirage/ocaml-dns https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ocaml-${P}.tar.gz"
+
+LICENSE="LGPL-2 LGPL-2.1-with-linking-exception ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+	>=dev-lang/ocaml-4:=
+	>=dev-ml/ocaml-base64-2.0.0:=
+	>=dev-ml/ocaml-cstruct-3.0.2:=[ppx]
+	dev-ml/ocaml-hashcons:=
+	>=dev-ml/ocaml-ipaddr-2.6.0:=
+	dev-ml/ocaml-re:=
+	>=dev-ml/ocaml-uri-1.7.0:=
+	dev-ml/result:=
+	!dev-ml/odns
+"
+DEPEND="
+	dev-ml/jbuilder
+	dev-ml/opam
+	${RDEPEND}
+"
+
+# Do not work
+RESTRICT="test"
+
+S="${WORKDIR}/ocaml-${P}"
+
+src_compile() {
+	jbuilder build @install -p dns || die
+}
+
+src_test() {
+	jbuilder runtest -p dns || die
+}
+
+src_install() {
+	opam-installer -i \
+		--prefix="${ED}/usr" \
+		--libdir="${D}/$(ocamlc -where)" \
+		--docdir="${ED}/usr/share/doc/${PF}" \
+		dns.install || die
+}

diff --git a/dev-ml/dns/metadata.xml b/dev-ml/dns/metadata.xml
new file mode 100644
index 00000000000..2f4ef14adaa
--- /dev/null
+++ b/dev-ml/dns/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="project">
+        <email>ml@gentoo.org</email>
+        <name>Gentoo ML Project</name>
+    </maintainer>
+    <upstream>
+        <remote-id type="github">mirage/ocaml-dns</remote-id>
+    </upstream>
+</pkgmetadata>


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

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

commit:     2ba027d3edc68228488669c7247d1ed6715107a1
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  6 13:19:22 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Oct  6 13:21:11 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ba027d3

dev-ml/dns: update to opam.eclass

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 dev-ml/dns/dns-1.0.0.ebuild | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/dev-ml/dns/dns-1.0.0.ebuild b/dev-ml/dns/dns-1.0.0.ebuild
index 85d9d78a23c..1780cf1361f 100644
--- a/dev-ml/dns/dns-1.0.0.ebuild
+++ b/dev-ml/dns/dns-1.0.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit findlib eutils
+inherit findlib opam
 
 DESCRIPTION="A pure OCaml implementation of the DNS protocol"
 HOMEPAGE="https://github.com/mirage/ocaml-dns https://mirage.io"
@@ -15,7 +15,6 @@ KEYWORDS="~amd64"
 IUSE=""
 
 RDEPEND="
-	>=dev-lang/ocaml-4:=
 	>=dev-ml/ocaml-base64-2.0.0:=
 	>=dev-ml/ocaml-cstruct-3.0.2:=[ppx]
 	dev-ml/ocaml-hashcons:=
@@ -27,7 +26,6 @@ RDEPEND="
 "
 DEPEND="
 	dev-ml/jbuilder
-	dev-ml/opam
 	${RDEPEND}
 "
 
@@ -43,11 +41,3 @@ src_compile() {
 src_test() {
 	jbuilder runtest -p dns || die
 }
-
-src_install() {
-	opam-installer -i \
-		--prefix="${ED}/usr" \
-		--libdir="${D}/$(ocamlc -where)" \
-		--docdir="${ED}/usr/share/doc/${PF}" \
-		dns.install || die
-}


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

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

commit:     11a04c9e4c4008e354e10d58ed245bb6c0cf23ee
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 17 21:08:09 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Wed Feb 17 21:08:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11a04c9e

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

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

 dev-ml/dns/{dns-1.0.0.ebuild => dns-1.0.0-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/dns/dns-1.0.0.ebuild b/dev-ml/dns/dns-1.0.0-r1.ebuild
similarity index 93%
rename from dev-ml/dns/dns-1.0.0.ebuild
rename to dev-ml/dns/dns-1.0.0-r1.ebuild
index 1780cf1361f..02a29c7096f 100644
--- a/dev-ml/dns/dns-1.0.0.ebuild
+++ b/dev-ml/dns/dns-1.0.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
@@ -19,7 +19,7 @@ RDEPEND="
 	>=dev-ml/ocaml-cstruct-3.0.2:=[ppx]
 	dev-ml/ocaml-hashcons:=
 	>=dev-ml/ocaml-ipaddr-2.6.0:=
-	dev-ml/ocaml-re:=
+	dev-ml/re:=
 	>=dev-ml/ocaml-uri-1.7.0:=
 	dev-ml/result:=
 	!dev-ml/odns


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

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

commit:     4a551e95dbf7fbd9289603145acca3625dbd20f4
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 17 21:09:50 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Wed Feb 17 21:09:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a551e95

dev-ml/dns: take maintainership (ML)

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

 dev-ml/dns/metadata.xml | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-ml/dns/metadata.xml b/dev-ml/dns/metadata.xml
index 39ef7ef9f54..f66f6b2c6b5 100644
--- a/dev-ml/dns/metadata.xml
+++ b/dev-ml/dns/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-dns</remote-id>
-    </upstream>
+	<maintainer type="project">
+		<email>ml@gentoo.org</email>
+		<name>ML</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">mirage/ocaml-dns</remote-id>
+	</upstream>
 </pkgmetadata>


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

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

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

dev-ml/dns: treeclean

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

 dev-ml/dns/Manifest            |  1 -
 dev-ml/dns/dns-1.0.0-r1.ebuild | 43 ------------------------------------------
 dev-ml/dns/metadata.xml        | 11 -----------
 3 files changed, 55 deletions(-)

diff --git a/dev-ml/dns/Manifest b/dev-ml/dns/Manifest
deleted file mode 100644
index 7755e3b6cb3..00000000000
--- a/dev-ml/dns/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ocaml-dns-1.0.0.tar.gz 99161 BLAKE2B f0fa068296ac7eb5331ff7f5f88ee60a3010ac146f4b5bfeeffc8db014e6e5563da4f516ee1090365d290fb50b2754576b14167d55b2a33e125046103d485c1e SHA512 199653605e985851dcaafc94f1efeba5c261c29cd5e5f8eaebc9f7d25a05c43adcf7620efb291b22f9549f7c05f8ac3f6abfbcf40e0d7762bd2f7cd623ebcb1c

diff --git a/dev-ml/dns/dns-1.0.0-r1.ebuild b/dev-ml/dns/dns-1.0.0-r1.ebuild
deleted file mode 100644
index 02a29c7096f..00000000000
--- a/dev-ml/dns/dns-1.0.0-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib opam
-
-DESCRIPTION="A pure OCaml implementation of the DNS protocol"
-HOMEPAGE="https://github.com/mirage/ocaml-dns https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ocaml-${P}.tar.gz"
-
-LICENSE="LGPL-2 LGPL-2.1-with-linking-exception ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="
-	>=dev-ml/ocaml-base64-2.0.0:=
-	>=dev-ml/ocaml-cstruct-3.0.2:=[ppx]
-	dev-ml/ocaml-hashcons:=
-	>=dev-ml/ocaml-ipaddr-2.6.0:=
-	dev-ml/re:=
-	>=dev-ml/ocaml-uri-1.7.0:=
-	dev-ml/result:=
-	!dev-ml/odns
-"
-DEPEND="
-	dev-ml/jbuilder
-	${RDEPEND}
-"
-
-# Do not work
-RESTRICT="test"
-
-S="${WORKDIR}/ocaml-${P}"
-
-src_compile() {
-	jbuilder build @install -p dns || die
-}
-
-src_test() {
-	jbuilder runtest -p dns || die
-}

diff --git a/dev-ml/dns/metadata.xml b/dev-ml/dns/metadata.xml
deleted file mode 100644
index f66f6b2c6b5..00000000000
--- a/dev-ml/dns/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-dns</remote-id>
-	</upstream>
-</pkgmetadata>


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

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

Thread overview: 5+ 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/dns/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2021-02-17 21:10 Alfredo Tupone
2021-02-17 21:08 Alfredo Tupone
2017-10-06 13:21 Alexis Ballier
2017-10-06 13:21 Alexis Ballier

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