* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygsl/
@ 2016-02-14 17:54 Justin Lecher
0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2016-02-14 17:54 UTC (permalink / raw
To: gentoo-commits
commit: af650985872dd12ebd9ece6b3dde175a82312d9d
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 17:47:20 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 17:54:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af650985
dev-python/pygsl: Set max supported gsl version
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=574704
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/pygsl/pygsl-0.9.5-r1.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-python/pygsl/pygsl-0.9.5-r1.ebuild b/dev-python/pygsl/pygsl-0.9.5-r1.ebuild
index 08a36b8..92102d2 100644
--- a/dev-python/pygsl/pygsl-0.9.5-r1.ebuild
+++ b/dev-python/pygsl/pygsl-0.9.5-r1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
+
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
@@ -16,7 +17,8 @@ LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="examples"
-DEPEND="sci-libs/gsl
+DEPEND="
+ <sci-libs/gsl-2
dev-python/numpy[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"
# Testsuite written to be run post install
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygsl/
@ 2016-02-14 17:54 Justin Lecher
0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2016-02-14 17:54 UTC (permalink / raw
To: gentoo-commits
commit: 557dfc134c041eb9624d66ff028e22be922e5096
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 17:48:43 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 17:54:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=557dfc13
dev-python/pygsl: Version Bump
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/pygsl/Manifest | 1 +
dev-python/pygsl/pygsl-2.1.1.ebuild | 29 +++++++++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/dev-python/pygsl/Manifest b/dev-python/pygsl/Manifest
index d5d95ec..4d3a32a 100644
--- a/dev-python/pygsl/Manifest
+++ b/dev-python/pygsl/Manifest
@@ -1 +1,2 @@
DIST pygsl-0.9.5.tar.gz 1674504 SHA256 05d11160ff482e1f1f5f6a047aaef2776eedc1e8e1f98533a95299584fd4752d SHA512 7364e67ff2885be2cbe5410a573071209d3917f4807797b3b8525aacd03e6ab96e157e6d12d631c384e3b66602eab7e6cb89f9ab362f520397df900e77fcc875 WHIRLPOOL 404b5f06b1088d047e7afe56311ad9ce0bdcf465ab6961f3cc9d893f575d54c2a103e4c572a60d93e4cf27ee15d4000b7dfbcd6bd33bbc4cf6638749e87f7e24
+DIST pygsl-2.1.1.tar.gz 727636 SHA256 3d17e6deb5433b331a567a45ff467f41e9059def76e6ef0f21d8e891498f946a SHA512 141232032f0221b756596bc3426160849749642ddaa3667d36b19abf3b4a22b76b5e0b0e9452898494b7f6ce0f8d17a2e392bdaba535633bbfbf1a672bf8d62e WHIRLPOOL e2c6035104ca78cb0eec5ec9bdda8dfbc01182090f1edd176c6d4565f9a71364f107eb38229c5b7758dc455337622e70b5626acbe3552e2e48219ed2f0b1f33c
diff --git a/dev-python/pygsl/pygsl-2.1.1.ebuild b/dev-python/pygsl/pygsl-2.1.1.ebuild
new file mode 100644
index 0000000..c093fef
--- /dev/null
+++ b/dev-python/pygsl/pygsl-2.1.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python interface for the GNU scientific library (gsl)"
+HOMEPAGE="http://pygsl.sourceforge.net/"
+SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="examples"
+
+DEPEND="
+ <sci-libs/gsl-2
+ dev-python/numpy[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"
+# Testsuite written to be run post install
+
+python_install_all() {
+ use examples && dodoc -r examples
+ distutils-r1_python_install_all
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygsl/
@ 2016-09-05 16:37 Manuel Rüger
0 siblings, 0 replies; 8+ messages in thread
From: Manuel Rüger @ 2016-09-05 16:37 UTC (permalink / raw
To: gentoo-commits
commit: ef15b860e7bfd03396ee4e5bee5991ac310bf00e
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 5 16:37:23 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Sep 5 16:37:23 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef15b860
dev-python/pygsl: Remove old
Package-Manager: portage-2.3.0
dev-python/pygsl/pygsl-0.9.5.ebuild | 38 -------------------------------------
1 file changed, 38 deletions(-)
diff --git a/dev-python/pygsl/pygsl-0.9.5.ebuild b/dev-python/pygsl/pygsl-0.9.5.ebuild
deleted file mode 100644
index 4af265c..00000000
--- a/dev-python/pygsl/pygsl-0.9.5.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython"
-
-inherit distutils
-
-DESCRIPTION="Python interface for the GNU scientific library (gsl)"
-HOMEPAGE="http://pygsl.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="examples"
-
-DEPEND="sci-libs/gsl
- dev-python/numpy"
-RDEPEND="${DEPEND}"
-
-src_test() {
- testing() {
- cd "${S}/tests"
- PYTHONPATH=$(ls -d ../build-${PYTHON_ABI}/lib*) "$(PYTHON)" run_test.py
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples || die "install examples failed"
- fi
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygsl/
@ 2017-11-25 21:44 David Seifert
0 siblings, 0 replies; 8+ messages in thread
From: David Seifert @ 2017-11-25 21:44 UTC (permalink / raw
To: gentoo-commits
commit: 7f2adc26ac94bce7e8401fd0ad910c1ed2e062cd
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 20:06:14 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 21:41:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f2adc26
dev-python/pygsl: [QA] Consistent whitespace in metadata.xml
dev-python/pygsl/metadata.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/pygsl/metadata.xml b/dev-python/pygsl/metadata.xml
index 9e4f72faa86..2f82549b6e5 100644
--- a/dev-python/pygsl/metadata.xml
+++ b/dev-python/pygsl/metadata.xml
@@ -6,9 +6,9 @@
<name>Gentoo Science Project</name>
</maintainer>
<longdescription lang="en">
- PyGSL provides a python interface for the GNU scientific library
- (gsl).
-</longdescription>
+ PyGSL provides a python interface for the GNU scientific library
+ (gsl).
+ </longdescription>
<upstream>
<remote-id type="sourceforge">pygsl</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygsl/
@ 2018-06-24 16:40 Pacho Ramos
0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos @ 2018-06-24 16:40 UTC (permalink / raw
To: gentoo-commits
commit: 365559919c96b0b9e46423ff5a545f387e88486d
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 24 16:38:58 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jun 24 16:40:27 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36555991
dev-python/pygsl: Support python3.6
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-python/pygsl/pygsl-2.1.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/pygsl/pygsl-2.1.1.ebuild b/dev-python/pygsl/pygsl-2.1.1.ebuild
index 6d96bca0694..b9770f954a2 100644
--- a/dev-python/pygsl/pygsl-2.1.1.ebuild
+++ b/dev-python/pygsl/pygsl-2.1.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygsl/
@ 2018-06-25 10:40 Jason Zaman
0 siblings, 0 replies; 8+ messages in thread
From: Jason Zaman @ 2018-06-25 10:40 UTC (permalink / raw
To: gentoo-commits
commit: d4811fdc42e3fbcbb2eb1df585f0430b5afd7499
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 25 10:19:30 2018 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Mon Jun 25 10:39:58 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4811fdc
dev-python/pygsl: amd64 stable
Gentoo-bug: 658982
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-python/pygsl/pygsl-2.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/pygsl/pygsl-2.1.1.ebuild b/dev-python/pygsl/pygsl-2.1.1.ebuild
index b9770f954a2..d09b5ec97c0 100644
--- a/dev-python/pygsl/pygsl-2.1.1.ebuild
+++ b/dev-python/pygsl/pygsl-2.1.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="examples"
DEPEND="
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygsl/
@ 2018-06-25 23:20 Thomas Deutschmann
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Deutschmann @ 2018-06-25 23:20 UTC (permalink / raw
To: gentoo-commits
commit: 884f093abaaad4b28f519eed42747e207adcd581
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 25 22:53:49 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Jun 25 23:20:02 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=884f093a
dev-python/pygsl: x86 stable (bug #658982)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-python/pygsl/pygsl-2.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/pygsl/pygsl-2.1.1.ebuild b/dev-python/pygsl/pygsl-2.1.1.ebuild
index d09b5ec97c0..e8824434da4 100644
--- a/dev-python/pygsl/pygsl-2.1.1.ebuild
+++ b/dev-python/pygsl/pygsl-2.1.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="examples"
DEPEND="
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pygsl/
@ 2019-12-27 18:52 David Seifert
0 siblings, 0 replies; 8+ messages in thread
From: David Seifert @ 2019-12-27 18:52 UTC (permalink / raw
To: gentoo-commits
commit: 928d3326c8d6e7f8f753dfaad87bdede80d1225e
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 27 18:52:27 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 27 18:52:27 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=928d3326
dev-python/pygsl: Remove old
Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
dev-python/pygsl/Manifest | 1 -
dev-python/pygsl/pygsl-0.9.5-r1.ebuild | 28 ----------------------------
2 files changed, 29 deletions(-)
diff --git a/dev-python/pygsl/Manifest b/dev-python/pygsl/Manifest
index 016646382fd..90f711b2261 100644
--- a/dev-python/pygsl/Manifest
+++ b/dev-python/pygsl/Manifest
@@ -1,2 +1 @@
-DIST pygsl-0.9.5.tar.gz 1674504 BLAKE2B 01423256cfda1d62aec0281725abfbe35f6260feec5fbb107819202cd9041405760988b1718e9aebf93284f4ab61597055ead308ad758d41d6eb37f867237b88 SHA512 7364e67ff2885be2cbe5410a573071209d3917f4807797b3b8525aacd03e6ab96e157e6d12d631c384e3b66602eab7e6cb89f9ab362f520397df900e77fcc875
DIST pygsl-2.1.1.tar.gz 727636 BLAKE2B 42b87a945a41418a295ebc9ddd3c5a367256427145e4c3bbf980e561df0cc3d84a64ddab22f936c5d1a5ad58b4649e36b121648f125824e6922a3d34fcd07d10 SHA512 141232032f0221b756596bc3426160849749642ddaa3667d36b19abf3b4a22b76b5e0b0e9452898494b7f6ce0f8d17a2e392bdaba535633bbfbf1a672bf8d62e
diff --git a/dev-python/pygsl/pygsl-0.9.5-r1.ebuild b/dev-python/pygsl/pygsl-0.9.5-r1.ebuild
deleted file mode 100644
index f8440315a22..00000000000
--- a/dev-python/pygsl/pygsl-0.9.5-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python interface for the GNU scientific library (gsl)"
-HOMEPAGE="http://pygsl.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="examples"
-
-DEPEND="
- <sci-libs/gsl-2
- dev-python/numpy[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-# Testsuite written to be run post install
-
-python_install_all() {
- use examples && local EXAMPLES=( examples/. )
- distutils-r1_python_install_all
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2019-12-27 18:52 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-25 23:20 [gentoo-commits] repo/gentoo:master commit in: dev-python/pygsl/ Thomas Deutschmann
-- strict thread matches above, loose matches on Subject: below --
2019-12-27 18:52 David Seifert
2018-06-25 10:40 Jason Zaman
2018-06-24 16:40 Pacho Ramos
2017-11-25 21:44 David Seifert
2016-09-05 16:37 Manuel Rüger
2016-02-14 17:54 Justin Lecher
2016-02-14 17:54 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox