public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Random-ISAAC-XS/
@ 2020-09-21 20:29 Kent Fredric
  0 siblings, 0 replies; 6+ messages in thread
From: Kent Fredric @ 2020-09-21 20:29 UTC (permalink / raw
  To: gentoo-commits

commit:     06a60bb388494e02450546b95e976375ad6a11e9
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 21 19:04:39 2020 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Sep 21 20:28:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06a60bb3

dev-perl/Math-Random-ISAAC-XS: -r bump for EAPI7 + Toolchain love

- EAPI7
- Add USE="examples"
- Fix LICENSE
- USE=minimal -ize the RDEP on Math-Random-ISAAC as no code seems to
  directly use it, but some weak dependency is there only as a
  precaution.
- Fix dependencies somewhat
- Parallel tests
- Strip bad tests
- Guard against LD breaking Perl by not being a CCLD ( Set CCLD if
  you know what you're doing )
- Ensure CFLAGS passed to make/compiler

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>

 .../Math-Random-ISAAC-XS-1.4.0-r2.ebuild           | 53 ++++++++++++++++++++++
 1 file changed, 53 insertions(+)

diff --git a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild
new file mode 100644
index 00000000000..078626b748d
--- /dev/null
+++ b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=JAWNSY
+DIST_VERSION=1.004
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="C implementation of the ISAAC PRNG algorithm"
+
+LICENSE="public-domain || ( Artistic GPL-1+ )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	!minimal? (
+		dev-perl/Math-Random-ISAAC
+	)
+"
+DEPEND="dev-perl/Module-Build"
+BDEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-CBuilder
+	virtual/perl-ExtUtils-ParseXS
+	>=dev-perl/Module-Build-0.280.801_rc
+	test? (
+		>=dev-perl/Test-NoWarnings-0.84.0
+		>=virtual/perl-Test-Simple-0.620.0
+	)
+"
+PERL_RM_FILES=(
+	# dubious use for gentoo, maybe one day?
+	t/03memory.t
+	t/05valgrind.t
+	# release only
+	t/04uniform.t
+	t/release-dist-manifest.t
+	t/release-kwalitee.t
+	t/release-pod-coverage.t
+	t/release-pod-syntax.t
+	t/release-portability.t
+)
+src_configure() {
+	unset LD
+	[[ -n "${CCLD}" ]] && export LD="${CCLD}"
+	perl-module_src_configure
+}
+src_compile() {
+	./Build --config "optimize=${CFLAGS}" build || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Random-ISAAC-XS/
@ 2021-07-02 20:44 Andreas K. Hüttel
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas K. Hüttel @ 2021-07-02 20:44 UTC (permalink / raw
  To: gentoo-commits

commit:     e2b5513bc7e1a01dbbc86fb6e1948409bf6b3c20
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  2 20:42:41 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Jul  2 20:43:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2b5513b

dev-perl/Math-Random-ISAAC-XS: Stable for all

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild
index 078626b748d..df555c82a4b 100644
--- a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild
+++ b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.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
@@ -12,7 +12,7 @@ DESCRIPTION="C implementation of the ISAAC PRNG algorithm"
 
 LICENSE="public-domain || ( Artistic GPL-1+ )"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="minimal test"
 RESTRICT="!test? ( test )"
 
@@ -43,11 +43,13 @@ PERL_RM_FILES=(
 	t/release-pod-syntax.t
 	t/release-portability.t
 )
+
 src_configure() {
 	unset LD
 	[[ -n "${CCLD}" ]] && export LD="${CCLD}"
 	perl-module_src_configure
 }
+
 src_compile() {
 	./Build --config "optimize=${CFLAGS}" build || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Random-ISAAC-XS/
@ 2021-07-02 20:44 Andreas K. Hüttel
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas K. Hüttel @ 2021-07-02 20:44 UTC (permalink / raw
  To: gentoo-commits

commit:     ee889060f05a1b3a9bb180cba9575a9e03737f49
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  2 20:42:59 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Jul  2 20:43:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee889060

dev-perl/Math-Random-ISAAC-XS: Remove old

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 .../Math-Random-ISAAC-XS-1.4.0-r1.ebuild           | 25 ----------------------
 1 file changed, 25 deletions(-)

diff --git a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r1.ebuild b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r1.ebuild
deleted file mode 100644
index 4aa432f8236..00000000000
--- a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=JAWNSY
-MODULE_VERSION=1.004
-inherit perl-module
-
-DESCRIPTION="C implementation of the ISAAC PRNG algorithm"
-
-LICENSE="|| ( public-domain Artistic Artistic-2 GPL-1 GPL-2 GPL-3 )"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-perl/Math-Random-ISAAC"
-DEPEND="${RDEPEND}
-	dev-perl/Module-Build
-	test? (
-		dev-perl/Test-NoWarnings
-	)"
-
-SRC_TEST="do"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Random-ISAAC-XS/
@ 2022-09-14 15:30 Jakov Smolić
  0 siblings, 0 replies; 6+ messages in thread
From: Jakov Smolić @ 2022-09-14 15:30 UTC (permalink / raw
  To: gentoo-commits

commit:     a5a0f872d89ecca5469ae6c1c9bd75aa7d8a6340
Author:     Yu Gu <guyu2876 <AT> gmail <DOT> com>
AuthorDate: Tue Sep 13 13:53:49 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 15:24:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5a0f872

dev-perl/Math-Random-ISAAC-XS: Keyword 1.4.0-r2 riscv, #869923

Signed-off-by: Yu Gu <guyu2876 <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/27239
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild
index df555c82a4b6..29e943fcf6eb 100644
--- a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild
+++ b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ DESCRIPTION="C implementation of the ISAAC PRNG algorithm"
 
 LICENSE="public-domain || ( Artistic GPL-1+ )"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
 IUSE="minimal test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Random-ISAAC-XS/
@ 2024-05-22  2:18 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-05-22  2:18 UTC (permalink / raw
  To: gentoo-commits

commit:     d7b5a0c5c3347c8eb11388fd2a973fad9f961340
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 02:15:44 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 02:17:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b5a0c5

dev-perl/Math-Random-ISAAC-XS: EAPI 8, rely on eclass impls

This covers more variables/args, etc.

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

 .../Math-Random-ISAAC-XS-1.4.0-r3.ebuild           | 46 ++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r3.ebuild b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r3.ebuild
new file mode 100644
index 000000000000..b2527d47ca4d
--- /dev/null
+++ b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=JAWNSY
+DIST_VERSION=1.004
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="C implementation of the ISAAC PRNG algorithm"
+
+LICENSE="public-domain || ( Artistic GPL-1+ )"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+IUSE="minimal"
+
+RDEPEND="
+	!minimal? (
+		dev-perl/Math-Random-ISAAC
+	)
+"
+DEPEND="dev-perl/Module-Build"
+BDEPEND="
+	${RDEPEND}
+	virtual/perl-ExtUtils-CBuilder
+	virtual/perl-ExtUtils-ParseXS
+	>=dev-perl/Module-Build-0.280.801_rc
+	test? (
+		>=dev-perl/Test-NoWarnings-0.84.0
+		>=virtual/perl-Test-Simple-0.620.0
+	)
+"
+
+PERL_RM_FILES=(
+	# dubious use for gentoo, maybe one day?
+	t/03memory.t
+	t/05valgrind.t
+	# release only
+	t/04uniform.t
+	t/release-dist-manifest.t
+	t/release-kwalitee.t
+	t/release-pod-coverage.t
+	t/release-pod-syntax.t
+	t/release-portability.t
+)


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Random-ISAAC-XS/
@ 2024-06-25  4:46 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-06-25  4:46 UTC (permalink / raw
  To: gentoo-commits

commit:     b2da866daa2c606ea8322e5d41981c31ed9f7ff1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 25 04:46:17 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 04:46:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2da866d

dev-perl/Math-Random-ISAAC-XS: Stabilize 1.4.0-r3 amd64, #934834

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

 dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r3.ebuild b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r3.ebuild
index fc9d17e331e6..742b5b6d38ca 100644
--- a/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r3.ebuild
+++ b/dev-perl/Math-Random-ISAAC-XS/Math-Random-ISAAC-XS-1.4.0-r3.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="C implementation of the ISAAC PRNG algorithm"
 
 LICENSE="public-domain || ( Artistic GPL-1+ )"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv x86"
+KEYWORDS="amd64 ~riscv x86"
 IUSE="minimal"
 
 RDEPEND="


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

end of thread, other threads:[~2024-06-25  4:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-21 20:29 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Random-ISAAC-XS/ Kent Fredric
  -- strict thread matches above, loose matches on Subject: below --
2021-07-02 20:44 Andreas K. Hüttel
2021-07-02 20:44 Andreas K. Hüttel
2022-09-14 15:30 Jakov Smolić
2024-05-22  2:18 Sam James
2024-06-25  4:46 Sam James

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