public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-FFT/
@ 2017-01-17  2:28 Christoph Junghans
  0 siblings, 0 replies; 6+ messages in thread
From: Christoph Junghans @ 2017-01-17  2:28 UTC (permalink / raw
  To: gentoo-commits

commit:     5ecbecf5cb99a335b0eda61f73dea833b1b4a40c
Author:     Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 17 02:27:22 2017 +0000
Commit:     Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Tue Jan 17 02:27:56 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ecbecf5

dev-perl/Math-FFT: initial commit

Package-Manager: portage-2.3.0

 dev-perl/Math-FFT/Manifest             |  1 +
 dev-perl/Math-FFT/Math-FFT-1.28.ebuild | 22 ++++++++++++++++++++++
 dev-perl/Math-FFT/metadata.xml         | 12 ++++++++++++
 3 files changed, 35 insertions(+)

diff --git a/dev-perl/Math-FFT/Manifest b/dev-perl/Math-FFT/Manifest
new file mode 100644
index 00000000..41cc7f3
--- /dev/null
+++ b/dev-perl/Math-FFT/Manifest
@@ -0,0 +1 @@
+DIST Math-FFT-1.28.tar.gz 29345 SHA256 63aca20ff0043544e8c1cb3fdcc9cc77d12241309bffaa45ad08f515085c3853 SHA512 d5d2dda22d3752f365a45b2dee7c1a71867fbe42aa9509196afd2c2eb950875bc599aa81ec06878c41d0dca4fa247add7503bda70bf688dbe64123d6b26f9927 WHIRLPOOL 50f6a471571f90f7b344b4065b826e6e238434858d6c5bc74d577b22cefe00fa96dee4168cf9633913ac65250d56c38145872ee21c6f40f8b1b55a0c18aa8118

diff --git a/dev-perl/Math-FFT/Math-FFT-1.28.ebuild b/dev-perl/Math-FFT/Math-FFT-1.28.ebuild
new file mode 100644
index 00000000..3fbd92d
--- /dev/null
+++ b/dev-perl/Math-FFT/Math-FFT-1.28.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MODULE_AUTHOR=RKOBES
+MODULE_VERSION=${PV}
+inherit perl-module
+
+DESCRIPTION="Perl module to calculate Fast Fourier Transforms"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+	dev-perl/Module-Build
+	test? ( virtual/perl-Test-Simple )"
+
+SRC_TEST="do"

diff --git a/dev-perl/Math-FFT/metadata.xml b/dev-perl/Math-FFT/metadata.xml
new file mode 100644
index 00000000..08e251a
--- /dev/null
+++ b/dev-perl/Math-FFT/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="project">
+    <email>perl@gentoo.org</email>
+    <name>Gentoo Perl Project</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="cpan">Math-FFT</remote-id>
+    <remote-id type="cpan-module">Math::FFT</remote-id>
+  </upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-FFT/
@ 2017-01-17  3:27 Kent Fredric
  0 siblings, 0 replies; 6+ messages in thread
From: Kent Fredric @ 2017-01-17  3:27 UTC (permalink / raw
  To: gentoo-commits

commit:     78f0c02f8d286dc8f6d9d2f5d98494fd1f36c05c
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 17 03:27:03 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Tue Jan 17 03:27:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78f0c02f

dev-perl/Math-FFT: Remove unwanted Module-Build dep

- Moved to normalised version
- EAPI6ified
- Parallel tests

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../Math-FFT/{Math-FFT-1.28.ebuild => Math-FFT-1.280.0.ebuild} | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/dev-perl/Math-FFT/Math-FFT-1.28.ebuild b/dev-perl/Math-FFT/Math-FFT-1.280.0.ebuild
similarity index 78%
rename from dev-perl/Math-FFT/Math-FFT-1.28.ebuild
rename to dev-perl/Math-FFT/Math-FFT-1.280.0.ebuild
index 3fbd92d..128b9b5 100644
--- a/dev-perl/Math-FFT/Math-FFT-1.28.ebuild
+++ b/dev-perl/Math-FFT/Math-FFT-1.280.0.ebuild
@@ -2,10 +2,10 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-MODULE_AUTHOR=RKOBES
-MODULE_VERSION=${PV}
+DIST_AUTHOR=RKOBES
+DIST_VERSION=1.28
 inherit perl-module
 
 DESCRIPTION="Perl module to calculate Fast Fourier Transforms"
@@ -16,7 +16,5 @@ IUSE="test"
 
 RDEPEND=""
 DEPEND="${RDEPEND}
-	dev-perl/Module-Build
+	virtual/perl-ExtUtils-MakeMaker
 	test? ( virtual/perl-Test-Simple )"
-
-SRC_TEST="do"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-FFT/
@ 2017-04-07 19:37 Kent Fredric
  0 siblings, 0 replies; 6+ messages in thread
From: Kent Fredric @ 2017-04-07 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     07215a54a45d696a2935ee96c64c96fe7087368d
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  7 19:36:54 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Apr  7 19:37:02 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07215a54

dev-perl/Math-FFT: Bump to version 1.340.0

Upstream:
- Fix '.' in @INC
- Avoid integer overflow in _spctrm by using doubles for n2

Bug: https://bugs.gentoo.org/614936
Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-perl/Math-FFT/Manifest                |  1 +
 dev-perl/Math-FFT/Math-FFT-1.340.0.ebuild | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/dev-perl/Math-FFT/Manifest b/dev-perl/Math-FFT/Manifest
index 41cc7f3f77d..0bc1050afb3 100644
--- a/dev-perl/Math-FFT/Manifest
+++ b/dev-perl/Math-FFT/Manifest
@@ -1 +1,2 @@
 DIST Math-FFT-1.28.tar.gz 29345 SHA256 63aca20ff0043544e8c1cb3fdcc9cc77d12241309bffaa45ad08f515085c3853 SHA512 d5d2dda22d3752f365a45b2dee7c1a71867fbe42aa9509196afd2c2eb950875bc599aa81ec06878c41d0dca4fa247add7503bda70bf688dbe64123d6b26f9927 WHIRLPOOL 50f6a471571f90f7b344b4065b826e6e238434858d6c5bc74d577b22cefe00fa96dee4168cf9633913ac65250d56c38145872ee21c6f40f8b1b55a0c18aa8118
+DIST Math-FFT-1.34.tar.gz 41732 SHA256 df7badbb4c1d21189ab7a3face3ecf817ee19d2df6f226451d3bc8fa2b7a7348 SHA512 605ce6805c106d00e851604115581d2e035843982e01b848d730e74890041c66e57139dcc037c36eeb3de80a45436e0a36f7482eac080e92638ac44be8af428d WHIRLPOOL ef00620a48da6129c2cafa0fa055448e7c7a3cbe574c69a0b63378d157b276b044478a370467bc76d732ec7fa9297fa7f3a57848a9ff83bebf895cd778c0960d

diff --git a/dev-perl/Math-FFT/Math-FFT-1.340.0.ebuild b/dev-perl/Math-FFT/Math-FFT-1.340.0.ebuild
new file mode 100644
index 00000000000..4d88fbb524a
--- /dev/null
+++ b/dev-perl/Math-FFT/Math-FFT-1.340.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=SHLOMIF
+DIST_VERSION=1.34
+inherit perl-module
+
+DESCRIPTION="Perl module to calculate Fast Fourier Transforms"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+	virtual/perl-XSLoader
+"
+DEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+	test? (
+		virtual/perl-Exporter
+		virtual/perl-File-Spec
+		virtual/perl-File-Temp
+		virtual/perl-IO
+		virtual/perl-Test-Simple
+		virtual/perl-parent
+	)
+"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-FFT/
@ 2017-04-15 10:57 Kent Fredric
  0 siblings, 0 replies; 6+ messages in thread
From: Kent Fredric @ 2017-04-15 10:57 UTC (permalink / raw
  To: gentoo-commits

commit:     4d61976f8b87a36e1210619015188aeec5e5b832
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 15 10:56:59 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Apr 15 10:57:18 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d61976f

dev-perl/Math-FFT: Cleanup old

Remove old versions affected by Perl 5.26

https://bugs.gentoo.org/614936

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-perl/Math-FFT/Manifest                |  1 -
 dev-perl/Math-FFT/Math-FFT-1.280.0.ebuild | 19 -------------------
 2 files changed, 20 deletions(-)

diff --git a/dev-perl/Math-FFT/Manifest b/dev-perl/Math-FFT/Manifest
index 0bc1050afb3..2c20489ebd5 100644
--- a/dev-perl/Math-FFT/Manifest
+++ b/dev-perl/Math-FFT/Manifest
@@ -1,2 +1 @@
-DIST Math-FFT-1.28.tar.gz 29345 SHA256 63aca20ff0043544e8c1cb3fdcc9cc77d12241309bffaa45ad08f515085c3853 SHA512 d5d2dda22d3752f365a45b2dee7c1a71867fbe42aa9509196afd2c2eb950875bc599aa81ec06878c41d0dca4fa247add7503bda70bf688dbe64123d6b26f9927 WHIRLPOOL 50f6a471571f90f7b344b4065b826e6e238434858d6c5bc74d577b22cefe00fa96dee4168cf9633913ac65250d56c38145872ee21c6f40f8b1b55a0c18aa8118
 DIST Math-FFT-1.34.tar.gz 41732 SHA256 df7badbb4c1d21189ab7a3face3ecf817ee19d2df6f226451d3bc8fa2b7a7348 SHA512 605ce6805c106d00e851604115581d2e035843982e01b848d730e74890041c66e57139dcc037c36eeb3de80a45436e0a36f7482eac080e92638ac44be8af428d WHIRLPOOL ef00620a48da6129c2cafa0fa055448e7c7a3cbe574c69a0b63378d157b276b044478a370467bc76d732ec7fa9297fa7f3a57848a9ff83bebf895cd778c0960d

diff --git a/dev-perl/Math-FFT/Math-FFT-1.280.0.ebuild b/dev-perl/Math-FFT/Math-FFT-1.280.0.ebuild
deleted file mode 100644
index c1f1de4847d..00000000000
--- a/dev-perl/Math-FFT/Math-FFT-1.280.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=RKOBES
-DIST_VERSION=1.28
-inherit perl-module
-
-DESCRIPTION="Perl module to calculate Fast Fourier Transforms"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-	virtual/perl-ExtUtils-MakeMaker
-	test? ( virtual/perl-Test-Simple )"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-FFT/
@ 2021-06-30 20:48 Andreas K. Hüttel
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas K. Hüttel @ 2021-06-30 20:48 UTC (permalink / raw
  To: gentoo-commits

commit:     61059cb28d671f332867c9ff489efd0e68eb9117
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 30 20:46:07 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Wed Jun 30 20:48:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61059cb2

dev-perl/Math-FFT: Version bump 1.36

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

 dev-perl/Math-FFT/Manifest                |  1 +
 dev-perl/Math-FFT/Math-FFT-1.360.0.ebuild | 28 ++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/dev-perl/Math-FFT/Manifest b/dev-perl/Math-FFT/Manifest
index 7072e9cd3a8..b6d8b589610 100644
--- a/dev-perl/Math-FFT/Manifest
+++ b/dev-perl/Math-FFT/Manifest
@@ -1 +1,2 @@
 DIST Math-FFT-1.34.tar.gz 41732 BLAKE2B d1ba5c1184cfd38459294eb8064a89a518dc78e0f12501c20322ea91945457b3bd420003dc8177dc4b6e4aa3c57869ccd2aa571763161f43790b215f843d36fc SHA512 605ce6805c106d00e851604115581d2e035843982e01b848d730e74890041c66e57139dcc037c36eeb3de80a45436e0a36f7482eac080e92638ac44be8af428d
+DIST Math-FFT-1.36.tar.gz 44954 BLAKE2B 14b44355d3ab3779f660141aa30e26e1379886e16092983d33e5911418bcff812217762998014a03db128088b7ee9a2c8a41a1c879a874dcb4586cbbbfe62421 SHA512 04d9aac4eb7f1c3b974ca18f150d513ebad0e34d5ac4cbc0b7aeedad19e642f155acda5d507b35be8afebe1481f8de93762136dda8978c58a8d29fb85cb90d43

diff --git a/dev-perl/Math-FFT/Math-FFT-1.360.0.ebuild b/dev-perl/Math-FFT/Math-FFT-1.360.0.ebuild
new file mode 100644
index 00000000000..4d782ba6c5b
--- /dev/null
+++ b/dev-perl/Math-FFT/Math-FFT-1.360.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=SHLOMIF
+DIST_VERSION=1.36
+inherit perl-module
+
+DESCRIPTION="Perl module to calculate Fast Fourier Transforms"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	virtual/perl-XSLoader
+"
+BDEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+	test? (
+		virtual/perl-Exporter
+		virtual/perl-File-Spec
+		virtual/perl-File-Temp
+		virtual/perl-IO
+		virtual/perl-Test-Simple
+		virtual/perl-parent
+	)
+"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-FFT/
@ 2021-11-12 18:13 Andreas K. Hüttel
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas K. Hüttel @ 2021-11-12 18:13 UTC (permalink / raw
  To: gentoo-commits

commit:     109f8589d044efc18ca55feac5f1ad4228867a65
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 12 18:08:40 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Nov 12 18:13:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109f8589

dev-perl/Math-FFT: Remove old

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

 dev-perl/Math-FFT/Manifest                |  1 -
 dev-perl/Math-FFT/Math-FFT-1.340.0.ebuild | 30 ------------------------------
 2 files changed, 31 deletions(-)

diff --git a/dev-perl/Math-FFT/Manifest b/dev-perl/Math-FFT/Manifest
index b6d8b589610..e920aa5b32f 100644
--- a/dev-perl/Math-FFT/Manifest
+++ b/dev-perl/Math-FFT/Manifest
@@ -1,2 +1 @@
-DIST Math-FFT-1.34.tar.gz 41732 BLAKE2B d1ba5c1184cfd38459294eb8064a89a518dc78e0f12501c20322ea91945457b3bd420003dc8177dc4b6e4aa3c57869ccd2aa571763161f43790b215f843d36fc SHA512 605ce6805c106d00e851604115581d2e035843982e01b848d730e74890041c66e57139dcc037c36eeb3de80a45436e0a36f7482eac080e92638ac44be8af428d
 DIST Math-FFT-1.36.tar.gz 44954 BLAKE2B 14b44355d3ab3779f660141aa30e26e1379886e16092983d33e5911418bcff812217762998014a03db128088b7ee9a2c8a41a1c879a874dcb4586cbbbfe62421 SHA512 04d9aac4eb7f1c3b974ca18f150d513ebad0e34d5ac4cbc0b7aeedad19e642f155acda5d507b35be8afebe1481f8de93762136dda8978c58a8d29fb85cb90d43

diff --git a/dev-perl/Math-FFT/Math-FFT-1.340.0.ebuild b/dev-perl/Math-FFT/Math-FFT-1.340.0.ebuild
deleted file mode 100644
index f6374da11c1..00000000000
--- a/dev-perl/Math-FFT/Math-FFT-1.340.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=SHLOMIF
-DIST_VERSION=1.34
-inherit perl-module
-
-DESCRIPTION="Perl module to calculate Fast Fourier Transforms"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	virtual/perl-XSLoader
-"
-DEPEND="${RDEPEND}
-	virtual/perl-ExtUtils-MakeMaker
-	test? (
-		virtual/perl-Exporter
-		virtual/perl-File-Spec
-		virtual/perl-File-Temp
-		virtual/perl-IO
-		virtual/perl-Test-Simple
-		virtual/perl-parent
-	)
-"


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

end of thread, other threads:[~2021-11-12 18:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-17  3:27 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-FFT/ Kent Fredric
  -- strict thread matches above, loose matches on Subject: below --
2021-11-12 18:13 Andreas K. Hüttel
2021-06-30 20:48 Andreas K. Hüttel
2017-04-15 10:57 Kent Fredric
2017-04-07 19:37 Kent Fredric
2017-01-17  2:28 Christoph Junghans

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