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

commit:     1198068d5fbf0f7a925186e31682b8c543e5c984
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 20 21:26:34 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Jun 20 21:26:34 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1198068d

dev-ml/fpath: initial import

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/fpath/Manifest           |  1 +
 dev-ml/fpath/fpath-0.7.2.ebuild | 36 ++++++++++++++++++++++++++++++++++++
 dev-ml/fpath/metadata.xml       | 11 +++++++++++
 3 files changed, 48 insertions(+)

diff --git a/dev-ml/fpath/Manifest b/dev-ml/fpath/Manifest
new file mode 100644
index 00000000000..108d1ca52c2
--- /dev/null
+++ b/dev-ml/fpath/Manifest
@@ -0,0 +1 @@
+DIST fpath-0.7.2.tbz 24142 SHA256 2ce2ae81a9d945696771c62082e817fbe49ed39499d8ad9a63b8e2bb502b20c3 SHA512 d8ab8d6f183a1742d74a3a3220cc1d62e7df38a6f3ca1c04fad18426a0897152255382305ad14d058b5b85ab55a27536c39a62deffac8d46984a730a2a18405d WHIRLPOOL 14b8ab716e890535345cd42a992ad2c13737ebf07116c5f2a469d642b31473adead47db67696a665f1d7cf984fdb208619743c02e35dc70b3bcb2f2892e89741

diff --git a/dev-ml/fpath/fpath-0.7.2.ebuild b/dev-ml/fpath/fpath-0.7.2.ebuild
new file mode 100644
index 00000000000..8696bff4270
--- /dev/null
+++ b/dev-ml/fpath/fpath-0.7.2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="File system paths for OCaml"
+HOMEPAGE="http://erratique.ch/software/fpath https://github.com/dbuenzli/fpath"
+SRC_URI="http://erratique.ch/software/fpath/releases/${P}.tbz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+	dev-lang/ocaml:=
+	dev-ml/result:=
+	dev-ml/astring:=
+"
+DEPEND="${RDEPEND}
+	dev-ml/topkg
+	dev-ml/ocamlbuild
+	dev-ml/findlib
+"
+
+src_compile() {
+	ocaml pkg/pkg.ml build || die
+}
+
+src_install() {
+	opam-installer -i \
+		--prefix="${ED}/usr" \
+		--libdir="${D}/$(ocamlc -where)" \
+		--docdir="${ED}/usr/share/doc/${PF}" \
+		${PN}.install || die
+}

diff --git a/dev-ml/fpath/metadata.xml b/dev-ml/fpath/metadata.xml
new file mode 100644
index 00000000000..120208f31d2
--- /dev/null
+++ b/dev-ml/fpath/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">dbuenzli/fpath</remote-id>
+  </upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2017-09-23 12:43 Alexis Ballier
  0 siblings, 0 replies; 19+ messages in thread
From: Alexis Ballier @ 2017-09-23 12:43 UTC (permalink / raw
  To: gentoo-commits

commit:     53bed53756ddea5d437f0ced63beda5718a97fc1
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 23 12:10:46 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Sep 23 12:43:52 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53bed537

dev-ml/fpath: convert  to opam.eclass

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-ml/fpath/fpath-0.7.2.ebuild | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/dev-ml/fpath/fpath-0.7.2.ebuild b/dev-ml/fpath/fpath-0.7.2.ebuild
index 8696bff4270..8a7ca78a229 100644
--- a/dev-ml/fpath/fpath-0.7.2.ebuild
+++ b/dev-ml/fpath/fpath-0.7.2.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=6
 
+inherit opam
+
 DESCRIPTION="File system paths for OCaml"
 HOMEPAGE="http://erratique.ch/software/fpath https://github.com/dbuenzli/fpath"
 SRC_URI="http://erratique.ch/software/fpath/releases/${P}.tbz"
@@ -13,7 +15,6 @@ KEYWORDS="~amd64"
 IUSE=""
 
 RDEPEND="
-	dev-lang/ocaml:=
 	dev-ml/result:=
 	dev-ml/astring:=
 "
@@ -26,11 +27,3 @@ DEPEND="${RDEPEND}
 src_compile() {
 	ocaml pkg/pkg.ml build || die
 }
-
-src_install() {
-	opam-installer -i \
-		--prefix="${ED}/usr" \
-		--libdir="${D}/$(ocamlc -where)" \
-		--docdir="${ED}/usr/share/doc/${PF}" \
-		${PN}.install || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2021-05-10 12:44 Sam James
  0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2021-05-10 12:44 UTC (permalink / raw
  To: gentoo-commits

commit:     5f4a305376fc84227745954e7d83476bba825afe
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 10 12:37:39 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 10 12:40:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f4a3053

dev-ml/fpath: Keyword 0.7.2 ppc64, #788406

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

 dev-ml/fpath/fpath-0.7.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/fpath/fpath-0.7.2.ebuild b/dev-ml/fpath/fpath-0.7.2.ebuild
index e3f27b5fd02..0b3296a15be 100644
--- a/dev-ml/fpath/fpath-0.7.2.ebuild
+++ b/dev-ml/fpath/fpath-0.7.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~ppc64"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2021-05-10 12:45 Sam James
  0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2021-05-10 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     79b75c6193cb3f0ad4ba84c96e7b4f4e7f182b75
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 10 12:44:38 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 10 12:45:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79b75c61

dev-ml/fpath: Keyword 0.7.2 ppc, #788406

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

 dev-ml/fpath/fpath-0.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.2.ebuild b/dev-ml/fpath/fpath-0.7.2.ebuild
index 0b3296a15be..180f39a36ea 100644
--- a/dev-ml/fpath/fpath-0.7.2.ebuild
+++ b/dev-ml/fpath/fpath-0.7.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc64"
+KEYWORDS="~amd64 ~ppc ~ppc64"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2021-05-15  1:55 Sam James
  0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2021-05-15  1:55 UTC (permalink / raw
  To: gentoo-commits

commit:     ea62b765808dfbffbb059bd3ccace4bdcd75ecbc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 15 01:55:14 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 15 01:55:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea62b765

dev-ml/fpath: Keyword 0.7.2 arm64, #788406

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

 dev-ml/fpath/fpath-0.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.2.ebuild b/dev-ml/fpath/fpath-0.7.2.ebuild
index 180f39a36ea..7d690ea3493 100644
--- a/dev-ml/fpath/fpath-0.7.2.ebuild
+++ b/dev-ml/fpath/fpath-0.7.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2021-05-15 19:32 Sam James
  0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2021-05-15 19:32 UTC (permalink / raw
  To: gentoo-commits

commit:     ffad8f84d790e81909cce53314f20965407cb2f2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 15 19:32:19 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 15 19:32:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffad8f84

dev-ml/fpath: Keyword 0.7.2 arm, #788406

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

 dev-ml/fpath/fpath-0.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.2.ebuild b/dev-ml/fpath/fpath-0.7.2.ebuild
index 7d690ea3493..41000274f67 100644
--- a/dev-ml/fpath/fpath-0.7.2.ebuild
+++ b/dev-ml/fpath/fpath-0.7.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2021-07-28  1:48 Sam James
  0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2021-07-28  1:48 UTC (permalink / raw
  To: gentoo-commits

commit:     78f0fa992747e3fd5441c60e04f36c0ef696b16e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 28 01:47:39 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 28 01:47:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78f0fa99

dev-ml/fpath: Keyword 0.7.2 x86, #788406

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

 dev-ml/fpath/fpath-0.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.2.ebuild b/dev-ml/fpath/fpath-0.7.2.ebuild
index 41000274f67..7aded5cba30 100644
--- a/dev-ml/fpath/fpath-0.7.2.ebuild
+++ b/dev-ml/fpath/fpath-0.7.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2021-07-28  2:05 Sam James
  0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2021-07-28  2:05 UTC (permalink / raw
  To: gentoo-commits

commit:     d5c612785decd9393f91297b5140a2c9b7f8cf1d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 28 02:00:46 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 28 02:00:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5c61278

dev-ml/fpath: adopt for ml@

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

 dev-ml/fpath/metadata.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-ml/fpath/metadata.xml b/dev-ml/fpath/metadata.xml
index 27be7d1c1ae..df3bd528961 100644
--- a/dev-ml/fpath/metadata.xml
+++ b/dev-ml/fpath/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>
 	<upstream>
 		<remote-id type="github">dbuenzli/fpath</remote-id>
 	</upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2021-07-28  2:05 Sam James
  0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2021-07-28  2:05 UTC (permalink / raw
  To: gentoo-commits

commit:     d2f8da8db6b4b87cfdf9b37c1071049af6eaed35
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 28 02:04:55 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 28 02:04:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f8da8d

dev-ml/fpath: add 0.7.3

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

 dev-ml/fpath/Manifest           |  1 +
 dev-ml/fpath/fpath-0.7.3.ebuild | 26 ++++++++++++++++++++++++++
 2 files changed, 27 insertions(+)

diff --git a/dev-ml/fpath/Manifest b/dev-ml/fpath/Manifest
index 0f8bf4b1258..c46046bf728 100644
--- a/dev-ml/fpath/Manifest
+++ b/dev-ml/fpath/Manifest
@@ -1 +1,2 @@
 DIST fpath-0.7.2.tbz 24142 BLAKE2B 5aa22a33d0155c2a446c3622d6feef0748be3eaa72f07e7e2770fda1993794864072a5f50a052537b9724e39935064967c87f82d860a2da17fbc86279a1930ab SHA512 d8ab8d6f183a1742d74a3a3220cc1d62e7df38a6f3ca1c04fad18426a0897152255382305ad14d058b5b85ab55a27536c39a62deffac8d46984a730a2a18405d
+DIST fpath-0.7.3.tbz 24345 BLAKE2B 5d4e68acebdafb6378422b31385e78decff2dfce1bedd102c7e6baac519f9843e0828629f4a15e075f506865e1af6f9cc7ece761e74fe6608d3476338cc556cb SHA512 acf4b379aee3c25305ef71d1b97b154faa6de1e8248a8e8d046cf11090a3e94f2dc048b961bb51725ca7384e784455f2893fbd51f26bf80571a9cc7e9475b945

diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild
new file mode 100644
index 00000000000..13e85c27b10
--- /dev/null
+++ b/dev-ml/fpath/fpath-0.7.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit opam
+
+DESCRIPTION="File system paths for OCaml"
+HOMEPAGE="https://erratique.ch/software/fpath https://github.com/dbuenzli/fpath"
+SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+
+RDEPEND="dev-ml/result:=
+	dev-ml/astring:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-ml/topkg
+	dev-ml/ocamlbuild
+	dev-ml/findlib"
+
+src_compile() {
+	ocaml pkg/pkg.ml build || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2021-09-07  0:09 Sam James
  0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2021-09-07  0:09 UTC (permalink / raw
  To: gentoo-commits

commit:     f11194ab373a630198200ecf7cef73b5e98d07f4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  7 00:08:47 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep  7 00:08:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f11194ab

dev-ml/fpath: Stabilize 0.7.2 arm, #804771

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

 dev-ml/fpath/fpath-0.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.2.ebuild b/dev-ml/fpath/fpath-0.7.2.ebuild
index abb9272ce8c..93ce99fbfac 100644
--- a/dev-ml/fpath/fpath-0.7.2.ebuild
+++ b/dev-ml/fpath/fpath-0.7.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 RDEPEND="


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

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

commit:     d057cb62847475cb2cf2355e32d004242a9f1f3d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 11 05:11:21 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 11 05:11:21 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d057cb62

dev-ml/fpath: Stabilize 0.7.3 amd64, #817707

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

 dev-ml/fpath/fpath-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild
index 13e85c27b10..9010440b086 100644
--- a/dev-ml/fpath/fpath-0.7.3.ebuild
+++ b/dev-ml/fpath/fpath-0.7.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 
 RDEPEND="dev-ml/result:=
 	dev-ml/astring:=


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

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

commit:     6face32653688358bb4e3907ffbacbbb9aa1e799
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 11 05:19:56 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 11 05:19:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6face326

dev-ml/fpath: Stabilize 0.7.3 ppc64, #817707

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

 dev-ml/fpath/fpath-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild
index 9010440b086..28cd8eb02b1 100644
--- a/dev-ml/fpath/fpath-0.7.3.ebuild
+++ b/dev-ml/fpath/fpath-0.7.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
 
 RDEPEND="dev-ml/result:=
 	dev-ml/astring:=


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2021-10-11 12:17 Agostino Sarubbo
  0 siblings, 0 replies; 19+ messages in thread
From: Agostino Sarubbo @ 2021-10-11 12:17 UTC (permalink / raw
  To: gentoo-commits

commit:     64db1ff2d86d055c62693e6f81515f4a0b33e077
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 11 12:17:04 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Oct 11 12:17:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64db1ff2

dev-ml/fpath: ppc stable wrt bug #817707

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-ml/fpath/fpath-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild
index 28cd8eb02b1..14ed93ad1a8 100644
--- a/dev-ml/fpath/fpath-0.7.3.ebuild
+++ b/dev-ml/fpath/fpath-0.7.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~x86"
 
 RDEPEND="dev-ml/result:=
 	dev-ml/astring:=


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

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

commit:     0aac76986efe5c05959eaddb75f0e3ebe7172081
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 13 20:34:39 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 13 20:34:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0aac7698

dev-ml/fpath: Stabilize 0.7.3 arm, #817707

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

 dev-ml/fpath/fpath-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild
index 14ed93ad1a8..10539e08538 100644
--- a/dev-ml/fpath/fpath-0.7.3.ebuild
+++ b/dev-ml/fpath/fpath-0.7.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~x86"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~x86"
 
 RDEPEND="dev-ml/result:=
 	dev-ml/astring:=


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

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

commit:     233128b4c5f5ef93b89dad032176f10acac66f7a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 13 20:36:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 13 20:36:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233128b4

dev-ml/fpath: Stabilize 0.7.3 arm64, #817707

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

 dev-ml/fpath/fpath-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild
index 10539e08538..6882f7558f4 100644
--- a/dev-ml/fpath/fpath-0.7.3.ebuild
+++ b/dev-ml/fpath/fpath-0.7.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 ~x86"
 
 RDEPEND="dev-ml/result:=
 	dev-ml/astring:=


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2021-10-14  9:44 Sam James
  0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2021-10-14  9:44 UTC (permalink / raw
  To: gentoo-commits

commit:     ebe825ad10a0501a5926d1564294d0a4434cc8cb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 14 09:44:07 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 14 09:44:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebe825ad

dev-ml/fpath: Stabilize 0.7.2 x86, #815910

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

 dev-ml/fpath/fpath-0.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.2.ebuild b/dev-ml/fpath/fpath-0.7.2.ebuild
index cd686c22319..c2909f3c6d0 100644
--- a/dev-ml/fpath/fpath-0.7.2.ebuild
+++ b/dev-ml/fpath/fpath-0.7.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm arm64 ppc ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
 IUSE=""
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2022-04-18 21:07 Jakov Smolić
  0 siblings, 0 replies; 19+ messages in thread
From: Jakov Smolić @ 2022-04-18 21:07 UTC (permalink / raw
  To: gentoo-commits

commit:     9a3799a1b0a577f300c13e8b34956d405da6db3e
Author:     Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Sun Apr 17 15:41:16 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Apr 18 21:06:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a3799a1

dev-ml/fpath: Keyword 0.7.3 riscv, #835392

Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-ml/fpath/fpath-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild
index c78f06c0be6c..b4996b096d15 100644
--- a/dev-ml/fpath/fpath-0.7.3.ebuild
+++ b/dev-ml/fpath/fpath-0.7.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86"
 
 RDEPEND="dev-ml/result:=
 	dev-ml/astring:=


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2022-07-24 11:28 David Seifert
  0 siblings, 0 replies; 19+ messages in thread
From: David Seifert @ 2022-07-24 11:28 UTC (permalink / raw
  To: gentoo-commits

commit:     2c393ff80c13c95574747fab46adcfa75bdbaf28
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 24 11:28:10 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jul 24 11:28:10 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c393ff8

dev-ml/fpath: drop 0.7.2

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-ml/fpath/Manifest           |  1 -
 dev-ml/fpath/fpath-0.7.2.ebuild | 29 -----------------------------
 2 files changed, 30 deletions(-)

diff --git a/dev-ml/fpath/Manifest b/dev-ml/fpath/Manifest
index c46046bf7280..186a907c964a 100644
--- a/dev-ml/fpath/Manifest
+++ b/dev-ml/fpath/Manifest
@@ -1,2 +1 @@
-DIST fpath-0.7.2.tbz 24142 BLAKE2B 5aa22a33d0155c2a446c3622d6feef0748be3eaa72f07e7e2770fda1993794864072a5f50a052537b9724e39935064967c87f82d860a2da17fbc86279a1930ab SHA512 d8ab8d6f183a1742d74a3a3220cc1d62e7df38a6f3ca1c04fad18426a0897152255382305ad14d058b5b85ab55a27536c39a62deffac8d46984a730a2a18405d
 DIST fpath-0.7.3.tbz 24345 BLAKE2B 5d4e68acebdafb6378422b31385e78decff2dfce1bedd102c7e6baac519f9843e0828629f4a15e075f506865e1af6f9cc7ece761e74fe6608d3476338cc556cb SHA512 acf4b379aee3c25305ef71d1b97b154faa6de1e8248a8e8d046cf11090a3e94f2dc048b961bb51725ca7384e784455f2893fbd51f26bf80571a9cc7e9475b945

diff --git a/dev-ml/fpath/fpath-0.7.2.ebuild b/dev-ml/fpath/fpath-0.7.2.ebuild
deleted file mode 100644
index 3af1323815e7..000000000000
--- a/dev-ml/fpath/fpath-0.7.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit opam
-
-DESCRIPTION="File system paths for OCaml"
-HOMEPAGE="https://erratique.ch/software/fpath https://github.com/dbuenzli/fpath"
-SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86"
-IUSE=""
-
-RDEPEND="
-	dev-ml/result:=
-	dev-ml/astring:=
-"
-DEPEND="${RDEPEND}
-	dev-ml/topkg
-	dev-ml/ocamlbuild
-	dev-ml/findlib
-"
-
-src_compile() {
-	ocaml pkg/pkg.ml build || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
@ 2022-07-24 11:28 David Seifert
  0 siblings, 0 replies; 19+ messages in thread
From: David Seifert @ 2022-07-24 11:28 UTC (permalink / raw
  To: gentoo-commits

commit:     2d0aca6169b513ccea3cfff1de4cb33c4194b8df
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 24 11:28:09 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jul 24 11:28:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0aca61

dev-ml/fpath: stabilize 0.7.3 for x86

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-ml/fpath/fpath-0.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild
index b4996b096d15..499151a72256 100644
--- a/dev-ml/fpath/fpath-0.7.3.ebuild
+++ b/dev-ml/fpath/fpath-0.7.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
 
 LICENSE="ISC"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
 
 RDEPEND="dev-ml/result:=
 	dev-ml/astring:=


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

end of thread, other threads:[~2022-07-24 11:28 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-18 21:07 [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/ Jakov Smolić
  -- strict thread matches above, loose matches on Subject: below --
2022-07-24 11:28 David Seifert
2022-07-24 11:28 David Seifert
2021-10-14  9:44 Sam James
2021-10-13 20:37 Sam James
2021-10-13 20:35 Sam James
2021-10-11 12:17 Agostino Sarubbo
2021-10-11  5:20 Sam James
2021-10-11  5:12 Sam James
2021-09-07  0:09 Sam James
2021-07-28  2:05 Sam James
2021-07-28  2:05 Sam James
2021-07-28  1:48 Sam James
2021-05-15 19:32 Sam James
2021-05-15  1:55 Sam James
2021-05-10 12:45 Sam James
2021-05-10 12:44 Sam James
2017-09-23 12:43 Alexis Ballier
2017-06-20 21:33 Alexis Ballier

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