* [gentoo-commits] repo/gentoo:master commit in: dev-python/dynd-python/
@ 2016-07-21 13:12 Patrick Lauer
0 siblings, 0 replies; 8+ messages in thread
From: Patrick Lauer @ 2016-07-21 13:12 UTC (permalink / raw
To: gentoo-commits
commit: af763927c973d0279c20d068bfa7a049130fb0d2
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 21 12:59:07 2016 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Thu Jul 21 13:12:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af763927
dev-python/dynd-python: Add py35
Package-Manager: portage-2.3.0
dev-python/dynd-python/dynd-python-0.6.6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/dynd-python/dynd-python-0.6.6.ebuild b/dev-python/dynd-python/dynd-python-0.6.6.ebuild
index ac4f487..ca73693 100644
--- a/dev-python/dynd-python/dynd-python-0.6.6.ebuild
+++ b/dev-python/dynd-python/dynd-python-0.6.6.ebuild
@@ -1,10 +1,10 @@
-# 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 python3_{3,4} )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
inherit cmake-utils python-r1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dynd-python/
@ 2017-01-10 11:40 David Seifert
0 siblings, 0 replies; 8+ messages in thread
From: David Seifert @ 2017-01-10 11:40 UTC (permalink / raw
To: gentoo-commits
commit: 8eda327dc87a4562efac5e1e253317415def5b77
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 10 11:39:50 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Jan 10 11:40:20 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eda327d
dev-python/dynd-python: Fix python handling
* src_prepare should not be overridden in
distutils-r1 based ebuilds
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-python/dynd-python/dynd-python-0.7.2.ebuild | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/dev-python/dynd-python/dynd-python-0.7.2.ebuild b/dev-python/dynd-python/dynd-python-0.7.2.ebuild
index 3ab41b4..8cb9dd6 100644
--- a/dev-python/dynd-python/dynd-python-0.7.2.ebuild
+++ b/dev-python/dynd-python/dynd-python-0.7.2.ebuild
@@ -29,8 +29,8 @@ DEPEND="${RDEPEND}
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/nose[${PYTHON_USEDEP}] )
"
-src_prepare() {
- default
+
+python_prepare_all() {
# remove the version mangling from git stuff it requires a git clone
# rather force set it a configure time
sed -e "/--dirty/s/ver =.*/ver = 'v${PV}'/" \
@@ -41,18 +41,18 @@ src_prepare() {
-e 's|-g -fomit-frame-pointer||' \
-e 's|-Werror||g' \
-i CMakeLists.txt || die
+
+ distutils-r1_python_prepare_all
}
python_compile_all() {
- use doc && emake -C docs html
+ if use doc; then
+ emake -C docs html
+ HTML_DOCS=( docs/build/html/. )
+ fi
}
python_test() {
cd "${BUILD_DIR}/lib" || die
PYTHONPATH=${BUILD_DIR}/lib nosetests -v || die
}
-
-src_install() {
- use doc && HTML_DOCS=( docs/build/html/. )
- distutils-r1_src_install
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dynd-python/
@ 2017-03-10 12:43 David Seifert
0 siblings, 0 replies; 8+ messages in thread
From: David Seifert @ 2017-03-10 12:43 UTC (permalink / raw
To: gentoo-commits
commit: b34fb219a13d3dcccc3cee1186c6aa31015bfe82
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 12:36:49 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 12:43:11 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b34fb219
dev-python/dynd-python: Add py3.6 support
Package-Manager: Portage-2.3.4, Repoman-2.3.2
.../{dynd-python-0.7.2.ebuild => dynd-python-0.7.2-r1.ebuild} | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-python/dynd-python/dynd-python-0.7.2.ebuild b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
similarity index 90%
rename from dev-python/dynd-python/dynd-python-0.7.2.ebuild
rename to dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
index 5912ab5666f..b43e90bd52f 100644
--- a/dev-python/dynd-python/dynd-python-0.7.2.ebuild
+++ b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
@@ -18,14 +18,16 @@ LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
+ ${PYTHON_DEPS}
~dev-libs/libdynd-${PV}
dev-python/numpy[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}
dev-python/cython[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/nose[${PYTHON_USEDEP}] )
"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dynd-python/
@ 2017-06-17 15:36 Agostino Sarubbo
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo @ 2017-06-17 15:36 UTC (permalink / raw
To: gentoo-commits
commit: cebe7a7f42a2cf46a5fdac58d0fc63b3bb195eff
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 17 15:31:55 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jun 17 15:36:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cebe7a7f
dev-python/dynd-python: amd64 stable wrt bug #606050
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
index b43e90bd52f..5517872d390 100644
--- a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
+++ b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/libdynd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dynd-python/
@ 2017-06-17 17:24 Agostino Sarubbo
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo @ 2017-06-17 17:24 UTC (permalink / raw
To: gentoo-commits
commit: 4197b5f0c87d0cdc77746f95e16103a642bdaced
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 17 17:21:56 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jun 17 17:21:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4197b5f0
dev-python/dynd-python: x86 stable wrt bug #606050
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
index 5517872d390..458dea2c37c 100644
--- a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
+++ b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/libdynd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dynd-python/
@ 2020-01-19 19:54 Pacho Ramos
0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos @ 2020-01-19 19:54 UTC (permalink / raw
To: gentoo-commits
commit: 912620f73e2a9d9ca74bbe81cf1f8b29e870a99e
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 19 19:52:54 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jan 19 19:54:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=912620f7
(cat_pn): No reverse dep needs py2 support
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild | 2 +-
.../{dynd-python-0.7.2-r1.ebuild => dynd-python-0.7.2-r2.ebuild} | 5 ++---
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
index 019d4022e49..ef63b311c67 100644
--- a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
+++ b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/libdynd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RESTRICT="!test? ( test )"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
diff --git a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild b/dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild
similarity index 94%
copy from dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
copy to dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild
index 019d4022e49..190b19a824e 100644
--- a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
+++ b/dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild
@@ -2,8 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
inherit distutils-r1
@@ -16,7 +15,7 @@ SRC_URI="https://github.com/libdynd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RESTRICT="!test? ( test )"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dynd-python/
@ 2020-01-19 21:36 Pacho Ramos
0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos @ 2020-01-19 21:36 UTC (permalink / raw
To: gentoo-commits
commit: 58b15492f1afe7ca6a2fa502ba98de0def143336
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 19 21:36:18 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jan 19 21:36:18 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58b15492
dev-python/dynd-python: Fix previous commit
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
index ef63b311c67..019d4022e49 100644
--- a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
+++ b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/libdynd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RESTRICT="!test? ( test )"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dynd-python/
@ 2020-01-30 21:26 Michał Górny
0 siblings, 0 replies; 8+ messages in thread
From: Michał Górny @ 2020-01-30 21:26 UTC (permalink / raw
To: gentoo-commits
commit: e02bde266118baee69989e87472db01bccf9df23
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 30 21:04:27 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan 30 21:26:00 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e02bde26
dev-python/dynd-python: Combine both ebuilds (remove py2)
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild | 60 ----------------------
dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild | 2 +-
2 files changed, 1 insertion(+), 61 deletions(-)
diff --git a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild b/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
deleted file mode 100644
index 019d4022e49..00000000000
--- a/dev-python/dynd-python/dynd-python-0.7.2-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_6 )
-
-inherit distutils-r1
-
-# change each new dynd version, to avoid git in tree dependency
-DYND_PYTHON_GIT_SHA1=8cdef57e71c784d7fe1f3f97a2ce2ce5727a89f1
-
-DESCRIPTION="Python exposure of multidimensionnal array library libdynd"
-HOMEPAGE="http://libdynd.org/"
-SRC_URI="https://github.com/libdynd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
- ${PYTHON_DEPS}
- ~dev-libs/libdynd-${PV}
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
- dev-python/cython[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-python_prepare_all() {
- # remove the version mangling from git stuff it requires a git clone
- # rather force set it a configure time
- sed -e "/--dirty/s/ver =.*/ver = 'v${PV}'/" \
- -e '/--always/d' \
- -i setup.py || die
- sed -e "s/get_git.*/set(DYND_PYTHON_GIT_SHA1 ${DYND_PYTHON_GIT_SHA1})/" \
- -e "s/git_describe.*/set(DYND_PYTHON_VERSION_STRING v${PV})/" \
- -e 's|-g -fomit-frame-pointer||' \
- -e 's|-Werror||g' \
- -i CMakeLists.txt || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- if use doc; then
- emake -C docs html
- HTML_DOCS=( docs/build/html/. )
- fi
-}
-
-python_test() {
- cd "${BUILD_DIR}/lib" || die
- PYTHONPATH=${BUILD_DIR}/lib nosetests -v || die
-}
diff --git a/dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild b/dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild
index 190b19a824e..7fe6afddb27 100644
--- a/dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild
+++ b/dev-python/dynd-python/dynd-python-0.7.2-r2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/libdynd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RESTRICT="!test? ( test )"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2020-01-30 21:26 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-17 17:24 [gentoo-commits] repo/gentoo:master commit in: dev-python/dynd-python/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2020-01-30 21:26 Michał Górny
2020-01-19 21:36 Pacho Ramos
2020-01-19 19:54 Pacho Ramos
2017-06-17 15:36 Agostino Sarubbo
2017-03-10 12:43 David Seifert
2017-01-10 11:40 David Seifert
2016-07-21 13:12 Patrick Lauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox