* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2017-03-17 9:47 Alexis Ballier
0 siblings, 0 replies; 22+ messages in thread
From: Alexis Ballier @ 2017-03-17 9:47 UTC (permalink / raw
To: gentoo-commits
commit: 4045b7212a63f6887586749ca84050b22c2ffbc3
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 08:14:51 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 09:46:57 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4045b721
dev-ml/react: Bump to 1.2.1
Package-Manager: Portage-2.3.4, Repoman-2.3.2
dev-ml/react/Manifest | 1 +
dev-ml/react/react-1.2.1.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/dev-ml/react/Manifest b/dev-ml/react/Manifest
index 9eb75488749..dd0811cebbf 100644
--- a/dev-ml/react/Manifest
+++ b/dev-ml/react/Manifest
@@ -1,2 +1,3 @@
DIST react-0.9.4.tbz 82964 SHA256 466ad4e2e7ff57c93c4e51511f53f2bdf32df46354458f4a158cd13bf3fbd4ab SHA512 6f1483ccc02d4aebf5836cb0585edf36119fd6a38c6279d1c35dee616a90e7394f4d6ccc92ef84df5da785121efd329875a0f281b130c6c5a30b8ea42f669f4e WHIRLPOOL cd48957762b6f940cc2ad40b535d12c1f6cd6631850ecb3e4df80b7298dc636d22e9d2b9b0c4188dc2a1b86fcf4652ced63a7ad4cc81922c98ae40560875dd9d
DIST react-1.2.0.tbz 64665 SHA256 887aaea9191870bc0f37f945c02ec4c90497d949cd4dedc3d565c3fbec7ad04e SHA512 3f2037ca68ea9d61eebaf7dcd7a768c59d3ce5bdd33c3adec9eee9df875a1b958cb450398eb7d72ac1a4144dc7b6dab344156ba920aaea2e3d39cc0f515839be WHIRLPOOL 79042a4305297bf12ef17f1d117709a5c15430d4a7ba6225c283c999537e528b6f0773634fe281e7a5423531f1692fb7f552dbbf410663dee39669ba7d8fed3c
+DIST react-1.2.1.tbz 39184 SHA256 7b2c5c078cc659dcd2202e5d89628df592c5e843b7e8f357b63db5f6d2e148aa SHA512 60f8788cc820e2be5303caedc80a377c8e5deab170d0eb9df71ff99d6fc57f31357824522f973c6e0d6b3979b58272e7f90b829474a494b94565279c53e8fbb1 WHIRLPOOL c884c92d66186792de760ed40a1df3d57597d3f85a38ab31207425a3de54fca199edf52ab93239af7ae5bb3b993fc2b044d68b883fb4f3b0d92c082a28121e45
diff --git a/dev-ml/react/react-1.2.1.ebuild b/dev-ml/react/react-1.2.1.ebuild
new file mode 100644
index 00000000000..fe35d719284
--- /dev/null
+++ b/dev-ml/react/react-1.2.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+DESCRIPTION="OCaml module for functional reactive programming"
+HOMEPAGE="http://erratique.ch/software/react https://github.com/dbuenzli/react"
+SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86-fbsd"
+IUSE="test"
+
+RDEPEND=">=dev-lang/ocaml-3.12:="
+DEPEND="${RDEPEND}
+ dev-ml/findlib
+ dev-ml/opam
+ >=dev-ml/topkg-0.9
+"
+
+src_compile() {
+ ocaml pkg/pkg.ml build \
+ --tests $(usex test 'true' 'false') \
+ || die
+}
+
+src_test() {
+ ocaml pkg/pkg.ml test || die
+}
+
+src_install() {
+ opam-installer \
+ --prefix="${ED}/usr" \
+ --libdir="${D}/$(ocamlc -where)" \
+ --docdir="${ED}/usr/share/doc/${PF}" \
+ || die
+ dodoc CHANGES.md README.md TODO.md
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2017-04-05 9:51 Michael Weber
0 siblings, 0 replies; 22+ messages in thread
From: Michael Weber @ 2017-04-05 9:51 UTC (permalink / raw
To: gentoo-commits
commit: b4ab028c1393699f566c7d94dad340ef0f8e4f0c
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 5 09:40:29 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed Apr 5 09:51:34 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4ab028c
dev-ml/react: add ~ppc (bug 527318).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="ppc"
dev-ml/react/react-1.2.0.ebuild | 4 ++--
dev-ml/react/react-1.2.1.ebuild | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-ml/react/react-1.2.0.ebuild b/dev-ml/react/react-1.2.0.ebuild
index 7322bb26a3b..2850479cf4a 100644
--- a/dev-ml/react/react-1.2.0.ebuild
+++ b/dev-ml/react/react-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
@@ -9,7 +9,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~x86-fbsd"
IUSE="doc +ocamlopt"
RDEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
diff --git a/dev-ml/react/react-1.2.1.ebuild b/dev-ml/react/react-1.2.1.ebuild
index fe35d719284..936dfa2b65e 100644
--- a/dev-ml/react/react-1.2.1.ebuild
+++ b/dev-ml/react/react-1.2.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~x86-fbsd"
IUSE="test"
RDEPEND=">=dev-lang/ocaml-3.12:="
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2017-04-05 17:50 Markus Meier
0 siblings, 0 replies; 22+ messages in thread
From: Markus Meier @ 2017-04-05 17:50 UTC (permalink / raw
To: gentoo-commits
commit: 34016fc275f9084f41925b3e87843eda99f0dbaa
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 5 17:41:19 2017 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Wed Apr 5 17:49:52 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34016fc2
dev-ml/react: add ~arm, bug #611014
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"
dev-ml/react/react-1.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.0.ebuild b/dev-ml/react/react-1.2.0.ebuild
index 2850479cf4a..5993fce37a7 100644
--- a/dev-ml/react/react-1.2.0.ebuild
+++ b/dev-ml/react/react-1.2.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~x86-fbsd"
+KEYWORDS="~amd64 ~arm ~ppc ~x86-fbsd"
IUSE="doc +ocamlopt"
RDEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2017-08-06 12:30 Alexis Ballier
0 siblings, 0 replies; 22+ messages in thread
From: Alexis Ballier @ 2017-08-06 12:30 UTC (permalink / raw
To: gentoo-commits
commit: 299db0c091c24a76064f586a9569e19ef81c78a7
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 6 12:25:41 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Aug 6 12:30:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=299db0c0
dev-ml/react: Remove old
Package-Manager: Portage-2.3.6, Repoman-2.3.3
dev-ml/react/Manifest | 2 --
dev-ml/react/react-0.9.4.ebuild | 22 --------------------
dev-ml/react/react-1.2.0.ebuild | 46 -----------------------------------------
3 files changed, 70 deletions(-)
diff --git a/dev-ml/react/Manifest b/dev-ml/react/Manifest
index dd0811cebbf..18d8f9272b3 100644
--- a/dev-ml/react/Manifest
+++ b/dev-ml/react/Manifest
@@ -1,3 +1 @@
-DIST react-0.9.4.tbz 82964 SHA256 466ad4e2e7ff57c93c4e51511f53f2bdf32df46354458f4a158cd13bf3fbd4ab SHA512 6f1483ccc02d4aebf5836cb0585edf36119fd6a38c6279d1c35dee616a90e7394f4d6ccc92ef84df5da785121efd329875a0f281b130c6c5a30b8ea42f669f4e WHIRLPOOL cd48957762b6f940cc2ad40b535d12c1f6cd6631850ecb3e4df80b7298dc636d22e9d2b9b0c4188dc2a1b86fcf4652ced63a7ad4cc81922c98ae40560875dd9d
-DIST react-1.2.0.tbz 64665 SHA256 887aaea9191870bc0f37f945c02ec4c90497d949cd4dedc3d565c3fbec7ad04e SHA512 3f2037ca68ea9d61eebaf7dcd7a768c59d3ce5bdd33c3adec9eee9df875a1b958cb450398eb7d72ac1a4144dc7b6dab344156ba920aaea2e3d39cc0f515839be WHIRLPOOL 79042a4305297bf12ef17f1d117709a5c15430d4a7ba6225c283c999537e528b6f0773634fe281e7a5423531f1692fb7f552dbbf410663dee39669ba7d8fed3c
DIST react-1.2.1.tbz 39184 SHA256 7b2c5c078cc659dcd2202e5d89628df592c5e843b7e8f357b63db5f6d2e148aa SHA512 60f8788cc820e2be5303caedc80a377c8e5deab170d0eb9df71ff99d6fc57f31357824522f973c6e0d6b3979b58272e7f90b829474a494b94565279c53e8fbb1 WHIRLPOOL c884c92d66186792de760ed40a1df3d57597d3f85a38ab31207425a3de54fca199edf52ab93239af7ae5bb3b993fc2b044d68b883fb4f3b0d92c082a28121e45
diff --git a/dev-ml/react/react-0.9.4.ebuild b/dev-ml/react/react-0.9.4.ebuild
deleted file mode 100644
index 26c4c069402..00000000000
--- a/dev-ml/react/react-0.9.4.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="OCaml module for functional reactive programming"
-HOMEPAGE="http://erratique.ch/software/react"
-SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES" "README" )
diff --git a/dev-ml/react/react-1.2.0.ebuild b/dev-ml/react/react-1.2.0.ebuild
deleted file mode 100644
index 5993fce37a7..00000000000
--- a/dev-ml/react/react-1.2.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-DESCRIPTION="OCaml module for functional reactive programming"
-HOMEPAGE="http://erratique.ch/software/react"
-SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~ppc ~x86-fbsd"
-IUSE="doc +ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]"
-DEPEND="${RDEPEND}
- dev-ml/findlib
- dev-ml/opam
-"
-
-src_compile() {
- pkg/build.ml \
- native=$(usex ocamlopt true false) \
- native-dynlink=$(usex ocamlopt true false) \
- || die
-}
-
-src_test() {
- if use ocamlopt ; then
- ocamlbuild tests.otarget || die
- cd _build/test || die
- ./test.native || die
- else
- ewarn "Sorry, ${PN} tests require native support (ocamlopt)"
- fi
-}
-
-src_install() {
- opam-installer \
- --prefix="${ED}/usr" \
- --libdir="${D}/$(ocamlc -where)" \
- --docdir="${ED}/usr/share/doc/${PF}" \
- || die
- dodoc CHANGES.md README.md TODO.md
- use doc && dohtml doc/*
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2017-08-06 12:30 Alexis Ballier
0 siblings, 0 replies; 22+ messages in thread
From: Alexis Ballier @ 2017-08-06 12:30 UTC (permalink / raw
To: gentoo-commits
commit: 0ba9bbdcb7d2401d7211ed560fdbf0b4f293c19e
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 6 12:26:34 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Aug 6 12:30:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba9bbdc
dev-ml/react: convert to opam.eclass
Package-Manager: Portage-2.3.6, Repoman-2.3.3
dev-ml/react/react-1.2.1.ebuild | 14 +++-----------
1 file changed, 3 insertions(+), 11 deletions(-)
diff --git a/dev-ml/react/react-1.2.1.ebuild b/dev-ml/react/react-1.2.1.ebuild
index 5793d0daca0..de34f259d5a 100644
--- a/dev-ml/react/react-1.2.1.ebuild
+++ b/dev-ml/react/react-1.2.1.ebuild
@@ -3,6 +3,8 @@
EAPI="5"
+inherit opam
+
DESCRIPTION="OCaml module for functional reactive programming"
HOMEPAGE="http://erratique.ch/software/react https://github.com/dbuenzli/react"
SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
@@ -12,10 +14,9 @@ SLOT="0/${PV}"
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd"
IUSE="test"
-RDEPEND=">=dev-lang/ocaml-3.12:="
+RDEPEND=""
DEPEND="${RDEPEND}
dev-ml/findlib
- dev-ml/opam
>=dev-ml/topkg-0.9
"
@@ -28,12 +29,3 @@ src_compile() {
src_test() {
ocaml pkg/pkg.ml test || die
}
-
-src_install() {
- opam-installer \
- --prefix="${ED}/usr" \
- --libdir="${D}/$(ocamlc -where)" \
- --docdir="${ED}/usr/share/doc/${PF}" \
- || die
- dodoc CHANGES.md README.md TODO.md
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2017-08-06 12:30 Alexis Ballier
0 siblings, 0 replies; 22+ messages in thread
From: Alexis Ballier @ 2017-08-06 12:30 UTC (permalink / raw
To: gentoo-commits
commit: 2925af110a29d0190aad7740cd0c1beee2655257
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 6 12:25:15 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Aug 6 12:30:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2925af11
dev-ml/react: propagate keywords
Package-Manager: Portage-2.3.6, Repoman-2.3.3
dev-ml/react/react-1.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.1.ebuild b/dev-ml/react/react-1.2.1.ebuild
index 936dfa2b65e..5793d0daca0 100644
--- a/dev-ml/react/react-1.2.1.ebuild
+++ b/dev-ml/react/react-1.2.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~x86-fbsd"
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd"
IUSE="test"
RDEPEND=">=dev-lang/ocaml-3.12:="
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2020-10-13 12:54 Mark Wright
0 siblings, 0 replies; 22+ messages in thread
From: Mark Wright @ 2020-10-13 12:54 UTC (permalink / raw
To: gentoo-commits
commit: fdc3d402e25a27842ec686b67d15ae9d24d63c43
Author: Mark Wright <gienah <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 13 06:55:37 2020 +0000
Commit: Mark Wright <gienah <AT> gentoo <DOT> org>
CommitDate: Tue Oct 13 12:53:44 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdc3d402
dev-ml/react: EAPI=7, add ~arm64 from ml-overlay
Co-Author: Alexis Ballier <aballier <AT> gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Mark Wright <gienah <AT> gentoo.org>
dev-ml/react/react-1.2.1-r1.ebuild | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/dev-ml/react/react-1.2.1-r1.ebuild b/dev-ml/react/react-1.2.1-r1.ebuild
new file mode 100644
index 00000000000..961c0c0dde4
--- /dev/null
+++ b/dev-ml/react/react-1.2.1-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit opam
+
+DESCRIPTION="OCaml module for functional reactive programming"
+HOMEPAGE="http://erratique.ch/software/react https://github.com/dbuenzli/react"
+SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+ dev-ml/findlib
+ >=dev-ml/topkg-0.9
+"
+
+src_compile() {
+ ocaml pkg/pkg.ml build \
+ --tests $(usex test 'true' 'false') \
+ || die
+}
+
+src_test() {
+ ocaml pkg/pkg.ml test || die
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2020-10-28 3:36 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2020-10-28 3:36 UTC (permalink / raw
To: gentoo-commits
commit: 9fb7072e03e4c6094338a6f237e7315bf67f7392
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 28 03:35:07 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 28 03:35:07 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb7072e
dev-ml/react: ppc64 keyworded (bug #748576)
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/react-1.2.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.1-r1.ebuild b/dev-ml/react/react-1.2.1-r1.ebuild
index 961c0c0dde4..8f19e9401a6 100644
--- a/dev-ml/react/react-1.2.1-r1.ebuild
+++ b/dev-ml/react/react-1.2.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2021-02-10 16:33 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2021-02-10 16:33 UTC (permalink / raw
To: gentoo-commits
commit: 950e2454b85bba7eae8de3a7a65ddeeb5af74c7c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 16:32:54 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 16:32:54 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=950e2454
dev-ml/react: Stabilize 1.2.1-r1 ppc64, #769317
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/react-1.2.1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ml/react/react-1.2.1-r1.ebuild b/dev-ml/react/react-1.2.1-r1.ebuild
index 8f19e9401a6..5619ddbe49e 100644
--- a/dev-ml/react/react-1.2.1-r1.ebuild
+++ b/dev-ml/react/react-1.2.1-r1.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=7
@@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2021-02-10 18:53 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2021-02-10 18:53 UTC (permalink / raw
To: gentoo-commits
commit: c83fcc74df5b0f78072be96b7bb0005bcdee4dfb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 18:53:11 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 18:53:11 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c83fcc74
dev-ml/react: Stabilize 1.2.1-r1 amd64, #769317
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/react-1.2.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.1-r1.ebuild b/dev-ml/react/react-1.2.1-r1.ebuild
index 5619ddbe49e..e9fb599a984 100644
--- a/dev-ml/react/react-1.2.1-r1.ebuild
+++ b/dev-ml/react/react-1.2.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2021-02-11 6:26 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2021-02-11 6:26 UTC (permalink / raw
To: gentoo-commits
commit: d196d6268f006f266e683f9a2deda5082a47e8e4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 11 06:25:39 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 11 06:25:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d196d626
dev-ml/react: Stabilize 1.2.1-r1 x86, #769317
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/react-1.2.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.1-r1.ebuild b/dev-ml/react/react-1.2.1-r1.ebuild
index e9fb599a984..186e5dd434b 100644
--- a/dev-ml/react/react-1.2.1-r1.ebuild
+++ b/dev-ml/react/react-1.2.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2021-02-11 6:31 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2021-02-11 6:31 UTC (permalink / raw
To: gentoo-commits
commit: 459fc88908ff0a60056ea0f3d5f5d79802b116b0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 11 06:31:25 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 11 06:31:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=459fc889
dev-ml/react: Stabilize 1.2.1-r1 ppc, #769317
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/react-1.2.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.1-r1.ebuild b/dev-ml/react/react-1.2.1-r1.ebuild
index 186e5dd434b..10975bb41ee 100644
--- a/dev-ml/react/react-1.2.1-r1.ebuild
+++ b/dev-ml/react/react-1.2.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2021-03-14 0:48 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2021-03-14 0:48 UTC (permalink / raw
To: gentoo-commits
commit: f4aeba7f76b4bc09adeccbe364e72f02e9df12b7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 14 00:45:00 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 14 00:48:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4aeba7f
dev-ml/react: Stabilize 1.2.1-r1 arm64, #772833
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/react-1.2.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.1-r1.ebuild b/dev-ml/react/react-1.2.1-r1.ebuild
index 953ac691740..275e826b507 100644
--- a/dev-ml/react/react-1.2.1-r1.ebuild
+++ b/dev-ml/react/react-1.2.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2022-06-12 7:33 Joonas Niilola
0 siblings, 0 replies; 22+ messages in thread
From: Joonas Niilola @ 2022-06-12 7:33 UTC (permalink / raw
To: gentoo-commits
commit: 4dc8be00543a8bc1b8c5d4dec1c4266da712c669
Author: Thamognya Kodi <contact <AT> thamognya <DOT> com>
AuthorDate: Sun May 29 00:10:26 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 07:11:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dc8be00
dev-ml/react: bump to 1.2.2
Signed-off-by: Thamognya Kodi <contact <AT> thamognya.com>
Closes: https://github.com/gentoo/gentoo/pull/25668
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-ml/react/Manifest | 1 +
dev-ml/react/metadata.xml | 35 +++++++++++++++++++----------------
dev-ml/react/react-1.2.2.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
3 files changed, 58 insertions(+), 16 deletions(-)
diff --git a/dev-ml/react/Manifest b/dev-ml/react/Manifest
index 6c88ce594eba..0de27a72b76d 100644
--- a/dev-ml/react/Manifest
+++ b/dev-ml/react/Manifest
@@ -1 +1,2 @@
DIST react-1.2.1.tbz 39184 BLAKE2B 0ad5fd576c08292011e6543462295a11b77048f59aaaf34726c078c654fba4a9b7dd0bb6a6579fad04a6cd217b29f4efc15de9b7d9b208c593b481610534d9c8 SHA512 60f8788cc820e2be5303caedc80a377c8e5deab170d0eb9df71ff99d6fc57f31357824522f973c6e0d6b3979b58272e7f90b829474a494b94565279c53e8fbb1
+DIST react-1.2.2.tbz 40013 BLAKE2B 302f480cf2cc88fc8a97b262d41809ed4fe904d3ea4cdec8ba80a8bdc99b3ffc1c9f19cf853c3d40587a34ba7608734e60ede5b756479676af95f9470e1badac SHA512 18cdd544d484222ba02db6bd9351571516532e7a1c107b59bbe39193837298f5c745eab6754f8bc6ff125b387be7018c6d6e6ac99f91925a5e4f53af688522b1
diff --git a/dev-ml/react/metadata.xml b/dev-ml/react/metadata.xml
index 9371e28a658c..e6107330d4f5 100644
--- a/dev-ml/react/metadata.xml
+++ b/dev-ml/react/metadata.xml
@@ -1,20 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription lang="en">
- React is an OCaml module for functional reactive programming (FRP). It
- provides support to program with time varying values : applicative
- events and signals. React doesn't define any primitive event or
- signal, this lets the client chooses the concrete timeline.
-
- React is made of a single, independent, module and distributed under
- the new BSD license.
-
- Given an absolute notion of time Rtime helps you to manage a timeline
- and provides time stamp events, delayed events and delayed signals.
- </longdescription>
- <upstream>
- <remote-id type="github">dbuenzli/react</remote-id>
- </upstream>
+ <maintainer type="person" proxied="yes">
+ <name>Thamognya Kodi</name>
+ <email>contact@thamognya.com</email>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription lang="en">React is an OCaml module for functional reactive programming (FRP). It
+ provides support to program with time varying values : applicative
+ events and signals. React doesn't define any primitive event or
+ signal, this lets the client chooses the concrete timeline.
+ React is made of a single, independent, module and distributed under
+ the new BSD license.
+ Given an absolute notion of time Rtime helps you to manage a timeline
+ and provides time stamp events, delayed events and delayed signals.</longdescription>
+ <upstream>
+ <remote-id type="github">dbuenzli/react</remote-id>
+ </upstream>
</pkgmetadata>
diff --git a/dev-ml/react/react-1.2.2.ebuild b/dev-ml/react/react-1.2.2.ebuild
new file mode 100644
index 000000000000..a0f919852efe
--- /dev/null
+++ b/dev-ml/react/react-1.2.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit opam
+
+DESCRIPTION="OCaml module for functional reactive programming"
+HOMEPAGE="http://erratique.ch/software/react https://github.com/dbuenzli/react"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/dbuenzli/react.git"
+else
+ SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+ dev-ml/findlib
+ >=dev-ml/topkg-0.9
+"
+
+src_compile() {
+ ocaml pkg/pkg.ml build \
+ --tests $(usex test 'true' 'false') \
+ || die
+}
+
+src_test() {
+ ocaml pkg/pkg.ml test || die
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2022-08-26 12:04 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2022-08-26 12:04 UTC (permalink / raw
To: gentoo-commits
commit: e625e469b4f0f12022f2dd3f40a49b850c094e80
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 12:03:11 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 12:04:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e625e469
dev-ml/react: reassign inactive proxied maintainer's packages
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/metadata.xml | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/dev-ml/react/metadata.xml b/dev-ml/react/metadata.xml
index e6107330d4f5..37e21824a6fc 100644
--- a/dev-ml/react/metadata.xml
+++ b/dev-ml/react/metadata.xml
@@ -1,14 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person" proxied="yes">
- <name>Thamognya Kodi</name>
- <email>contact@thamognya.com</email>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
+ <!-- maintainer-needed -->
<longdescription lang="en">React is an OCaml module for functional reactive programming (FRP). It
provides support to program with time varying values : applicative
events and signals. React doesn't define any primitive event or
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2022-08-26 12:11 Maciej Barć
0 siblings, 0 replies; 22+ messages in thread
From: Maciej Barć @ 2022-08-26 12:11 UTC (permalink / raw
To: gentoo-commits
commit: fa22a4d514721226d5285b8e9e3cb24e5921cfd2
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 12:10:48 2022 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 12:11:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa22a4d5
dev-ml/react: add ml <AT> gentoo.org to maintainers
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-ml/react/metadata.xml | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)
diff --git a/dev-ml/react/metadata.xml b/dev-ml/react/metadata.xml
index 37e21824a6fc..959d68873dec 100644
--- a/dev-ml/react/metadata.xml
+++ b/dev-ml/react/metadata.xml
@@ -1,16 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+
<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription lang="en">React is an OCaml module for functional reactive programming (FRP). It
- provides support to program with time varying values : applicative
- events and signals. React doesn't define any primitive event or
- signal, this lets the client chooses the concrete timeline.
- React is made of a single, independent, module and distributed under
- the new BSD license.
- Given an absolute notion of time Rtime helps you to manage a timeline
- and provides time stamp events, delayed events and delayed signals.</longdescription>
+ <maintainer type="project">
+ <email>ml@gentoo.org</email>
+ <name>ML</name>
+ </maintainer>
+ <longdescription lang="en">
+ React is an OCaml module for functional reactive programming (FRP). It
+ provides support to program with time varying values : applicative events
+ and signals. React doesn't define any primitive event or signal, this lets
+ the client chooses the concrete timeline. React is made of a single,
+ independent, module and distributed under the new BSD license. Given an
+ absolute notion of time Rtime helps you to manage a timeline and provides
+ time stamp events, delayed events and delayed signals.
+ </longdescription>
<upstream>
+ <bugs-to>https://github.com/dbuenzli/react/issues/</bugs-to>
<remote-id type="github">dbuenzli/react</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2022-09-19 18:59 Maciej Barć
0 siblings, 0 replies; 22+ messages in thread
From: Maciej Barć @ 2022-09-19 18:59 UTC (permalink / raw
To: gentoo-commits
commit: 4135d44f83078e945f3142aa2c92b9dd95aeda4b
Author: Thamognya Kodi <contact <AT> thamognya <DOT> com>
AuthorDate: Mon Jun 13 13:16:27 2022 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 18:59:23 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4135d44f
dev-ml/react: update to eapi 8
Signed-off-by: Thamognya Kodi <contact <AT> thamognya.com>
Closes: https://github.com/gentoo/gentoo/pull/25874
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-ml/react/{react-1.2.2.ebuild => react-1.2.2-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.2.ebuild b/dev-ml/react/react-1.2.2-r1.ebuild
similarity index 99%
rename from dev-ml/react/react-1.2.2.ebuild
rename to dev-ml/react/react-1.2.2-r1.ebuild
index a0f919852efe..ffb75f23abed 100644
--- a/dev-ml/react/react-1.2.2.ebuild
+++ b/dev-ml/react/react-1.2.2-r1.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit opam
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2023-03-16 23:16 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2023-03-16 23:16 UTC (permalink / raw
To: gentoo-commits
commit: b38e26a322f832f899ce0dbc9357ee7ba0c69ec0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 23:15:15 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 23:15:15 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b38e26a3
dev-ml/react: Stabilize 1.2.2-r1 arm, #901687
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/react-1.2.2-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ml/react/react-1.2.2-r1.ebuild b/dev-ml/react/react-1.2.2-r1.ebuild
index ffb75f23abed..d296375cbf27 100644
--- a/dev-ml/react/react-1.2.2-r1.ebuild
+++ b/dev-ml/react/react-1.2.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/dbuenzli/react.git"
else
SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2023-03-16 23:16 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2023-03-16 23:16 UTC (permalink / raw
To: gentoo-commits
commit: 90835d09c61479ec46b090bbd8431c6738a49fa6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 23:15:16 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 23:15:16 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90835d09
dev-ml/react: Stabilize 1.2.2-r1 arm64, #901687
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/react-1.2.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.2-r1.ebuild b/dev-ml/react/react-1.2.2-r1.ebuild
index d296375cbf27..6db752613af4 100644
--- a/dev-ml/react/react-1.2.2-r1.ebuild
+++ b/dev-ml/react/react-1.2.2-r1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/dbuenzli/react.git"
else
SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
- KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~riscv ~x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2023-03-17 2:29 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2023-03-17 2:29 UTC (permalink / raw
To: gentoo-commits
commit: b4ce28845063a9635ba96be2033011072a9b7169
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 02:27:49 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 02:27:49 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4ce2884
dev-ml/react: Stabilize 1.2.2-r1 amd64, #901687
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/react-1.2.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.2-r1.ebuild b/dev-ml/react/react-1.2.2-r1.ebuild
index 6db752613af4..4c9bc99dde77 100644
--- a/dev-ml/react/react-1.2.2-r1.ebuild
+++ b/dev-ml/react/react-1.2.2-r1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/dbuenzli/react.git"
else
SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
- KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~riscv ~x86"
+ KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv ~x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2023-03-17 2:29 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2023-03-17 2:29 UTC (permalink / raw
To: gentoo-commits
commit: 0e4de0b127a64d5df3ea022840ab28a4c40a47d6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 02:27:50 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 02:27:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e4de0b1
dev-ml/react: Stabilize 1.2.2-r1 x86, #901687
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/react/react-1.2.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.2-r1.ebuild b/dev-ml/react/react-1.2.2-r1.ebuild
index 4c9bc99dde77..5f05d500056c 100644
--- a/dev-ml/react/react-1.2.2-r1.ebuild
+++ b/dev-ml/react/react-1.2.2-r1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/dbuenzli/react.git"
else
SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
- KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv ~x86"
+ KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/
@ 2023-03-17 14:22 Arthur Zamarin
0 siblings, 0 replies; 22+ messages in thread
From: Arthur Zamarin @ 2023-03-17 14:22 UTC (permalink / raw
To: gentoo-commits
commit: af7b54edfc5eb7a642aff28fabe6c273bb2aba99
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 14:21:53 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 14:21:53 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af7b54ed
dev-ml/react: Stabilize 1.2.2-r1 ppc64, #901687
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-ml/react/react-1.2.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/react/react-1.2.2-r1.ebuild b/dev-ml/react/react-1.2.2-r1.ebuild
index 5f05d500056c..d00b8889f92b 100644
--- a/dev-ml/react/react-1.2.2-r1.ebuild
+++ b/dev-ml/react/react-1.2.2-r1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/dbuenzli/react.git"
else
SRC_URI="http://erratique.ch/software/react/releases/${P}.tbz"
- KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv x86"
+ KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
fi
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 22+ messages in thread
end of thread, other threads:[~2023-03-17 14:22 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-28 3:36 [gentoo-commits] repo/gentoo:master commit in: dev-ml/react/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-03-17 14:22 Arthur Zamarin
2023-03-17 2:29 Sam James
2023-03-17 2:29 Sam James
2023-03-16 23:16 Sam James
2023-03-16 23:16 Sam James
2022-09-19 18:59 Maciej Barć
2022-08-26 12:11 Maciej Barć
2022-08-26 12:04 Sam James
2022-06-12 7:33 Joonas Niilola
2021-03-14 0:48 Sam James
2021-02-11 6:31 Sam James
2021-02-11 6:26 Sam James
2021-02-10 18:53 Sam James
2021-02-10 16:33 Sam James
2020-10-13 12:54 Mark Wright
2017-08-06 12:30 Alexis Ballier
2017-08-06 12:30 Alexis Ballier
2017-08-06 12:30 Alexis Ballier
2017-04-05 17:50 Markus Meier
2017-04-05 9:51 Michael Weber
2017-03-17 9:47 Alexis Ballier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox