* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2019-03-18 20:14 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2019-03-18 20:14 UTC (permalink / raw
To: gentoo-commits
commit: 1a1400c50d0695d82ba911b1a0b72312ac8f3e6d
Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Mon Mar 18 20:14:17 2019 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Mar 18 20:14:17 2019 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1a1400c5
dev-python/traits: migrated from main tree
See bug #672412
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Horea Christian <horea.christ <AT> yandex.com>
dev-python/traits/metadata.xml | 26 +++++++++++++++++++++
dev-python/traits/traits-4.5.0.ebuild | 38 +++++++++++++++++++++++++++++++
dev-python/traits/traits-4.6.0.ebuild | 43 +++++++++++++++++++++++++++++++++++
3 files changed, 107 insertions(+)
diff --git a/dev-python/traits/metadata.xml b/dev-python/traits/metadata.xml
new file mode 100644
index 000000000..0e2713e31
--- /dev/null
+++ b/dev-python/traits/metadata.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>horea.christ@gmail.com</email>
+ <name>Horea Christian</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription lang="en">
+ The traits package from the Enthought Tool Suite provides a
+ metaclass with special attributes that are called traits. A trait
+ is a type definition that can be used for normal Python object
+ attributes, giving the attributes some additional characteristics:
+ * Initialization: A trait attribute can have a default value
+ * Validation: A trait attribute is manifestly typed.
+ * Delegation: The value of a trait attribute can be contained in another object
+ * Notification: Setting the value of a trait attribute can fired callbacks
+ * Visualization: With the TraitsUI package, GUIs can be generated automatically from traited objects.
+ </longdescription>
+ <upstream>
+ <remote-id type="pypi">traits</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/traits/traits-4.5.0.ebuild b/dev-python/traits/traits-4.5.0.ebuild
new file mode 100644
index 000000000..528d28b25
--- /dev/null
+++ b/dev-python/traits/traits-4.5.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
+HOMEPAGE="http://docs.enthought.com/traits/
+ https://github.com/enthought/traits
+ https://pypi.org/project/traits/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( ${RDEPEND} )"
+
+python_prepare_all() {
+ sed -i -e "s/'-O3'//g" setup.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile() {
+ local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+ distutils-r1_python_compile
+}
+
+python_test() {
+ cd "${BUILD_DIR}"/lib || die
+ nosetests || die
+}
diff --git a/dev-python/traits/traits-4.6.0.ebuild b/dev-python/traits/traits-4.6.0.ebuild
new file mode 100644
index 000000000..5685ceeb5
--- /dev/null
+++ b/dev-python/traits/traits-4.6.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
+HOMEPAGE="http://docs.enthought.com/traits/
+ https://github.com/enthought/traits
+ https://pypi.org/project/traits/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ ${RDEPEND}
+ )"
+
+python_prepare_all() {
+ sed -i -e "s/'-O3'//g" setup.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile() {
+ python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+ distutils-r1_python_compile
+}
+
+python_test() {
+ cd "${BUILD_DIR}"/lib || die
+ nosetests || die
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2019-03-22 2:02 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2019-03-22 2:02 UTC (permalink / raw
To: gentoo-commits
commit: cfde1408403cb2e1ee4ee9b4106e47b6a9325525
Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Fri Mar 22 02:02:13 2019 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Mar 22 02:02:13 2019 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=cfde1408
dev-python/traits: version bump 5.0.0
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Horea Christian <horea.christ <AT> yandex.com>
dev-python/traits/traits-5.0.0.ebuild | 50 +++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/dev-python/traits/traits-5.0.0.ebuild b/dev-python/traits/traits-5.0.0.ebuild
new file mode 100644
index 000000000..f0b7d6dd0
--- /dev/null
+++ b/dev-python/traits/traits-5.0.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
+HOMEPAGE="http://docs.enthought.com/traits/
+ https://github.com/enthought/traits
+ https://pypi.org/project/traits/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ ${RDEPEND}
+ )"
+
+python_prepare_all() {
+ sed -i -e "s/'-O3'//g" setup.py || die
+ if use test; then
+ # Errors reported upstream: https://github.com/enthought/traits/issues/458
+ sed -i \
+ -e '1s/^/from nose.plugins.skip import SkipTest \n/' \
+ -e "/class TraitTypesTest(unittest.TestCase):/i@SkipTest" \
+ traits/tests/test_trait_types.py || die
+ fi
+ distutils-r1_python_prepare_all
+}
+
+python_compile() {
+ python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+ distutils-r1_python_compile
+}
+
+python_test() {
+ cd "${BUILD_DIR}"/lib || die
+ nosetests || die
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2019-04-16 19:51 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2019-04-16 19:51 UTC (permalink / raw
To: gentoo-commits
commit: 08dc865f3f9859345648663296ed9633c2a1989b
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Tue Apr 16 19:27:48 2019 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Tue Apr 16 19:51:01 2019 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=08dc865f
dev-python/traits: version bump to 5.1.0
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-5.1.0.ebuild | 43 +++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/dev-python/traits/traits-5.1.0.ebuild b/dev-python/traits/traits-5.1.0.ebuild
new file mode 100644
index 000000000..5685ceeb5
--- /dev/null
+++ b/dev-python/traits/traits-5.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
+HOMEPAGE="http://docs.enthought.com/traits/
+ https://github.com/enthought/traits
+ https://pypi.org/project/traits/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ ${RDEPEND}
+ )"
+
+python_prepare_all() {
+ sed -i -e "s/'-O3'//g" setup.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile() {
+ python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+ distutils-r1_python_compile
+}
+
+python_test() {
+ cd "${BUILD_DIR}"/lib || die
+ nosetests || die
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2020-03-20 5:40 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2020-03-20 5:40 UTC (permalink / raw
To: gentoo-commits
commit: 2109e5887c6cadddd4fdb629514580bc97dc8a27
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Mar 20 05:38:54 2020 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Mar 20 05:40:18 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=2109e588
dev-python/traits: version bump 6.0.0
and added PYTHON_COMPAT to include 3_7
Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-6.0.0.ebuild | 43 +++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/dev-python/traits/traits-6.0.0.ebuild b/dev-python/traits/traits-6.0.0.ebuild
new file mode 100644
index 000000000..163fc881e
--- /dev/null
+++ b/dev-python/traits/traits-6.0.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{3_6,3_7} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
+HOMEPAGE="http://docs.enthought.com/traits/
+ https://github.com/enthought/traits
+ https://pypi.org/project/traits/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ ${RDEPEND}
+ )"
+
+python_prepare_all() {
+ sed -i -e "s/'-O3'//g" setup.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile() {
+ python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+ distutils-r1_python_compile
+}
+
+python_test() {
+ cd "${BUILD_DIR}"/lib || die
+ ${EPYTHON} -m unittest discover || die
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2020-09-25 8:53 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2020-09-25 8:53 UTC (permalink / raw
To: gentoo-commits
commit: a5c686a673a83cec73fcd39f34f655bdcdab54fe
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Sep 25 08:53:04 2020 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Sep 25 08:53:04 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a5c686a6
dev-python/traits: removed old versions, PYTHON_COMPAT update
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-4.5.0.ebuild | 38 --------------------------
dev-python/traits/traits-4.6.0.ebuild | 43 ------------------------------
dev-python/traits/traits-5.0.0.ebuild | 50 -----------------------------------
dev-python/traits/traits-5.1.0.ebuild | 4 +--
dev-python/traits/traits-6.0.0.ebuild | 2 +-
5 files changed, 3 insertions(+), 134 deletions(-)
diff --git a/dev-python/traits/traits-4.5.0.ebuild b/dev-python/traits/traits-4.5.0.ebuild
deleted file mode 100644
index 528d28b25..000000000
--- a/dev-python/traits/traits-4.5.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="http://docs.enthought.com/traits/
- https://github.com/enthought/traits
- https://pypi.org/project/traits/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( ${RDEPEND} )"
-
-python_prepare_all() {
- sed -i -e "s/'-O3'//g" setup.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile() {
- local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
- distutils-r1_python_compile
-}
-
-python_test() {
- cd "${BUILD_DIR}"/lib || die
- nosetests || die
-}
diff --git a/dev-python/traits/traits-4.6.0.ebuild b/dev-python/traits/traits-4.6.0.ebuild
deleted file mode 100644
index 5685ceeb5..000000000
--- a/dev-python/traits/traits-4.6.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="http://docs.enthought.com/traits/
- https://github.com/enthought/traits
- https://pypi.org/project/traits/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? (
- dev-python/nose[${PYTHON_USEDEP}]
- ${RDEPEND}
- )"
-
-python_prepare_all() {
- sed -i -e "s/'-O3'//g" setup.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile() {
- python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
- distutils-r1_python_compile
-}
-
-python_test() {
- cd "${BUILD_DIR}"/lib || die
- nosetests || die
-}
diff --git a/dev-python/traits/traits-5.0.0.ebuild b/dev-python/traits/traits-5.0.0.ebuild
deleted file mode 100644
index f0b7d6dd0..000000000
--- a/dev-python/traits/traits-5.0.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="http://docs.enthought.com/traits/
- https://github.com/enthought/traits
- https://pypi.org/project/traits/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? (
- dev-python/nose[${PYTHON_USEDEP}]
- ${RDEPEND}
- )"
-
-python_prepare_all() {
- sed -i -e "s/'-O3'//g" setup.py || die
- if use test; then
- # Errors reported upstream: https://github.com/enthought/traits/issues/458
- sed -i \
- -e '1s/^/from nose.plugins.skip import SkipTest \n/' \
- -e "/class TraitTypesTest(unittest.TestCase):/i@SkipTest" \
- traits/tests/test_trait_types.py || die
- fi
- distutils-r1_python_prepare_all
-}
-
-python_compile() {
- python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
- distutils-r1_python_compile
-}
-
-python_test() {
- cd "${BUILD_DIR}"/lib || die
- nosetests || die
-}
diff --git a/dev-python/traits/traits-5.1.0.ebuild b/dev-python/traits/traits-5.1.0.ebuild
index 5685ceeb5..e575e72a0 100644
--- a/dev-python/traits/traits-5.1.0.ebuild
+++ b/dev-python/traits/traits-5.1.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1 virtualx
diff --git a/dev-python/traits/traits-6.0.0.ebuild b/dev-python/traits/traits-6.0.0.ebuild
index 163fc881e..f109a0c09 100644
--- a/dev-python/traits/traits-6.0.0.ebuild
+++ b/dev-python/traits/traits-6.0.0.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
inherit distutils-r1 virtualx
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2020-12-31 1:38 Aisha Tammy
0 siblings, 0 replies; 20+ messages in thread
From: Aisha Tammy @ 2020-12-31 1:38 UTC (permalink / raw
To: gentoo-commits
commit: 63ce6d7b4292b1a8dfe5afc58a7547720f9bf814
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Thu Dec 31 01:38:01 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Thu Dec 31 01:38:01 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=63ce6d7b
dev-python/traits: remove proxy maintainers
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/traits/metadata.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/traits/metadata.xml b/dev-python/traits/metadata.xml
index 586a28623..ec9460dd1 100644
--- a/dev-python/traits/metadata.xml
+++ b/dev-python/traits/metadata.xml
@@ -6,8 +6,8 @@
<name>Horea Christian</name>
</maintainer>
<maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
+ <email>sci@gentoo.org</email>
+ <name>Gentoo Science Project</name>
</maintainer>
<longdescription lang="en">
The traits package from the Enthought Tool Suite provides a
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2021-01-03 3:38 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2021-01-03 3:38 UTC (permalink / raw
To: gentoo-commits
commit: 022d5da8a7b0fa7d16141aa2f250b10f7962adea
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Wed Dec 30 16:45:55 2020 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Sun Jan 3 03:31:15 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=022d5da8
dev-python/traits: version bump, cleanup ebuild
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-5.1.0.ebuild | 43 ----------------------
.../{traits-6.0.0.ebuild => traits-6.1.1.ebuild} | 20 +++-------
2 files changed, 6 insertions(+), 57 deletions(-)
diff --git a/dev-python/traits/traits-5.1.0.ebuild b/dev-python/traits/traits-5.1.0.ebuild
deleted file mode 100644
index e575e72a0..000000000
--- a/dev-python/traits/traits-5.1.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="http://docs.enthought.com/traits/
- https://github.com/enthought/traits
- https://pypi.org/project/traits/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? (
- dev-python/nose[${PYTHON_USEDEP}]
- ${RDEPEND}
- )"
-
-python_prepare_all() {
- sed -i -e "s/'-O3'//g" setup.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile() {
- python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
- distutils-r1_python_compile
-}
-
-python_test() {
- cd "${BUILD_DIR}"/lib || die
- nosetests || die
-}
diff --git a/dev-python/traits/traits-6.0.0.ebuild b/dev-python/traits/traits-6.1.1.ebuild
similarity index 65%
rename from dev-python/traits/traits-6.0.0.ebuild
rename to dev-python/traits/traits-6.1.1.ebuild
index f109a0c09..a5258b8a5 100644
--- a/dev-python/traits/traits-6.0.0.ebuild
+++ b/dev-python/traits/traits-6.1.1.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8,9} )
+PYTHON_COMPAT=( python3_{7,8,9} )
inherit distutils-r1 virtualx
@@ -15,28 +15,20 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? (
- dev-python/nose[${PYTHON_USEDEP}]
- ${RDEPEND}
- )"
+distutils_enable_tests nose
+# ToDo: Fix doc building:
+# AttributeError: 'NoDefaultSpecified' object has no attribute '__name__'
+#distutils_enable_sphinx docs/source --no-autodoc
python_prepare_all() {
sed -i -e "s/'-O3'//g" setup.py || die
distutils-r1_python_prepare_all
}
-python_compile() {
- python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
- distutils-r1_python_compile
-}
-
python_test() {
cd "${BUILD_DIR}"/lib || die
${EPYTHON} -m unittest discover || die
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2021-01-03 3:38 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2021-01-03 3:38 UTC (permalink / raw
To: gentoo-commits
commit: a46c4413e84ced35887a9c412473726b321df4e7
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Sun Jan 3 03:37:51 2021 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Sun Jan 3 03:38:02 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a46c4413
dev-python/traits: keeping second version 6.0.0
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-6.0.0.ebuild | 43 +++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/dev-python/traits/traits-6.0.0.ebuild b/dev-python/traits/traits-6.0.0.ebuild
new file mode 100644
index 000000000..ba9a4980b
--- /dev/null
+++ b/dev-python/traits/traits-6.0.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
+HOMEPAGE="http://docs.enthought.com/traits/
+ https://github.com/enthought/traits
+ https://pypi.org/project/traits/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ ${RDEPEND}
+ )"
+
+python_prepare_all() {
+ sed -i -e "s/'-O3'//g" setup.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile() {
+ python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+ distutils-r1_python_compile
+}
+
+python_test() {
+ cd "${BUILD_DIR}"/lib || die
+ ${EPYTHON} -m unittest discover || die
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2021-01-06 9:42 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2021-01-06 9:42 UTC (permalink / raw
To: gentoo-commits
commit: 4917e0a239db03732d3391f906ab190639b9040c
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Wed Jan 6 09:32:36 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Jan 6 09:32:36 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4917e0a2
dev-python/traits: drop keywords not available in python dep
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-python/traits/traits-6.0.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/traits/traits-6.0.0.ebuild b/dev-python/traits/traits-6.0.0.ebuild
index ba9a4980b..f686ff071 100644
--- a/dev-python/traits/traits-6.0.0.ebuild
+++ b/dev-python/traits/traits-6.0.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="test"
RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2021-01-13 21:06 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2021-01-13 21:06 UTC (permalink / raw
To: gentoo-commits
commit: 0ecc704b01ecfa57595b409e0561dbb443cad636
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Wed Jan 13 21:05:11 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Jan 13 21:05:11 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=0ecc704b
dev-python/traits: use https for homepage
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-python/traits/traits-6.0.0.ebuild | 2 +-
dev-python/traits/traits-6.1.1.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/traits/traits-6.0.0.ebuild b/dev-python/traits/traits-6.0.0.ebuild
index f686ff071..5719323de 100644
--- a/dev-python/traits/traits-6.0.0.ebuild
+++ b/dev-python/traits/traits-6.0.0.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6,7,8,9} )
inherit distutils-r1 virtualx
DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="http://docs.enthought.com/traits/
+HOMEPAGE="https://docs.enthought.com/traits/
https://github.com/enthought/traits
https://pypi.org/project/traits/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
diff --git a/dev-python/traits/traits-6.1.1.ebuild b/dev-python/traits/traits-6.1.1.ebuild
index a5258b8a5..ac4465fe9 100644
--- a/dev-python/traits/traits-6.1.1.ebuild
+++ b/dev-python/traits/traits-6.1.1.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
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{7,8,9} )
inherit distutils-r1 virtualx
DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="http://docs.enthought.com/traits/
+HOMEPAGE="https://docs.enthought.com/traits/
https://github.com/enthought/traits
https://pypi.org/project/traits/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2021-12-16 11:07 Andrew Ammerlaan
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Ammerlaan @ 2021-12-16 11:07 UTC (permalink / raw
To: gentoo-commits
commit: a38c42db7c26475385772f82bf42e36c69b8995a
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 16 11:03:01 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Dec 16 11:03:01 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a38c42db
dev-python/traits: add missing RESTRICT="!test? ( test )"
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-python/traits/traits-6.0.0.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/traits/traits-6.0.0.ebuild b/dev-python/traits/traits-6.0.0.ebuild
index 45ad1b92a..732c6247a 100644
--- a/dev-python/traits/traits-6.0.0.ebuild
+++ b/dev-python/traits/traits-6.0.0.ebuild
@@ -17,6 +17,7 @@ LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="test"
+RESTRICT="!test? ( test )"
RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2022-07-11 17:22 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2022-07-11 17:22 UTC (permalink / raw
To: gentoo-commits
commit: d7d7e600bd07ac990896631a0dd08a7bb6764d67
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon Jul 11 17:22:16 2022 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Jul 11 17:22:16 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=d7d7e600
dev-python/traits: EAPI and PYTHON_COMPAT bump
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-6.0.0.ebuild | 6 +++---
dev-python/traits/traits-6.1.1.ebuild | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/dev-python/traits/traits-6.0.0.ebuild b/dev-python/traits/traits-6.0.0.ebuild
index 732c6247a..0d6ffae85 100644
--- a/dev-python/traits/traits-6.0.0.ebuild
+++ b/dev-python/traits/traits-6.0.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
diff --git a/dev-python/traits/traits-6.1.1.ebuild b/dev-python/traits/traits-6.1.1.ebuild
index e0263e441..677be0b9e 100644
--- a/dev-python/traits/traits-6.1.1.ebuild
+++ b/dev-python/traits/traits-6.1.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2023-01-12 23:54 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2023-01-12 23:54 UTC (permalink / raw
To: gentoo-commits
commit: 09aea9c7150a6b4b5aba118cf887d326916c5940
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu Jan 12 23:52:56 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu Jan 12 23:52:56 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=09aea9c7
dev-python/traits: Package uses unittests instead of nose
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-6.0.0.ebuild | 2 ++
dev-python/traits/traits-6.1.1.ebuild | 4 +++-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/dev-python/traits/traits-6.0.0.ebuild b/dev-python/traits/traits-6.0.0.ebuild
index dfca6a6f6..2bcb063c0 100644
--- a/dev-python/traits/traits-6.0.0.ebuild
+++ b/dev-python/traits/traits-6.0.0.ebuild
@@ -28,6 +28,8 @@ DEPEND="
${RDEPEND}
)"
+distutils_enable_tests unittest
+
python_prepare_all() {
sed -i -e "s/'-O3'//g" setup.py || die
distutils-r1_python_prepare_all
diff --git a/dev-python/traits/traits-6.1.1.ebuild b/dev-python/traits/traits-6.1.1.ebuild
index 47187ae45..0754ddefd 100644
--- a/dev-python/traits/traits-6.1.1.ebuild
+++ b/dev-python/traits/traits-6.1.1.ebuild
@@ -16,10 +16,12 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+# Reported upstream: https://github.com/enthought/traits/issues/1731
+RESTRICT="test"
RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-distutils_enable_tests nose
+distutils_enable_tests unittest
# ToDo: Fix doc building:
# AttributeError: 'NoDefaultSpecified' object has no attribute '__name__'
#distutils_enable_sphinx docs/source --no-autodoc
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2023-01-12 23:54 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2023-01-12 23:54 UTC (permalink / raw
To: gentoo-commits
commit: ab93f23cfcb1e398eee4c4bb362ce88cd0c5b436
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu Jan 12 23:54:18 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu Jan 12 23:54:18 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ab93f23c
dev-python/traits: drop 6.0.0
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-6.0.0.ebuild | 46 -----------------------------------
1 file changed, 46 deletions(-)
diff --git a/dev-python/traits/traits-6.0.0.ebuild b/dev-python/traits/traits-6.0.0.ebuild
deleted file mode 100644
index 2bcb063c0..000000000
--- a/dev-python/traits/traits-6.0.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_10 )
-
-inherit distutils-r1
-
-DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="https://docs.enthought.com/traits/
- https://github.com/enthought/traits
- https://pypi.org/project/traits/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? (
- dev-python/nose[${PYTHON_USEDEP}]
- ${RDEPEND}
- )"
-
-distutils_enable_tests unittest
-
-python_prepare_all() {
- sed -i -e "s/'-O3'//g" setup.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile() {
- python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
- distutils-r1_python_compile
-}
-
-python_test() {
- cd "${BUILD_DIR}"/lib || die
- ${EPYTHON} -m unittest discover || die
-}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2023-01-12 23:54 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2023-01-12 23:54 UTC (permalink / raw
To: gentoo-commits
commit: f51f644df30b8e93a607f84f5b30c64105021659
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu Jan 12 23:53:57 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu Jan 12 23:53:57 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=f51f644d
dev-python/traits: add 6.4.1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-6.4.1.ebuild | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/dev-python/traits/traits-6.4.1.ebuild b/dev-python/traits/traits-6.4.1.ebuild
new file mode 100644
index 000000000..12afbe075
--- /dev/null
+++ b/dev-python/traits/traits-6.4.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_10 )
+
+inherit distutils-r1
+
+DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
+HOMEPAGE="https://docs.enthought.com/traits/
+ https://github.com/enthought/traits
+ https://pypi.org/project/traits/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+
+distutils_enable_tests unittest
+# ToDo: Fix doc building:
+# AttributeError: 'NoDefaultSpecified' object has no attribute '__name__'
+#distutils_enable_sphinx docs/source --no-autodoc
+
+python_prepare_all() {
+ sed -i -e "s/'-O3'//g" setup.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_test() {
+ cd "${BUILD_DIR}"/lib || die
+ ${EPYTHON} -m unittest discover || die
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2023-01-27 18:45 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2023-01-27 18:45 UTC (permalink / raw
To: gentoo-commits
commit: e9151ecdb32f15ba7a8f87e6fdfe28942ee40856
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Jan 27 18:43:40 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Jan 27 18:43:40 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e9151ecd
dev-python/traits: added highest version before compat-breaking 6.4.*
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/{traits-6.4.1.ebuild => traits-6.3.2.ebuild} | 5 +++--
dev-python/traits/traits-6.4.1.ebuild | 5 +++--
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/dev-python/traits/traits-6.4.1.ebuild b/dev-python/traits/traits-6.3.2.ebuild
similarity index 90%
copy from dev-python/traits/traits-6.4.1.ebuild
copy to dev-python/traits/traits-6.3.2.ebuild
index 12afbe075..57d555447 100644
--- a/dev-python/traits/traits-6.4.1.ebuild
+++ b/dev-python/traits/traits-6.3.2.ebuild
@@ -8,9 +8,10 @@ PYTHON_COMPAT=( python3_10 )
inherit distutils-r1
DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="https://docs.enthought.com/traits/
+HOMEPAGE="
+ https://docs.enthought.com/traits/
https://github.com/enthought/traits
- https://pypi.org/project/traits/"
+"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
diff --git a/dev-python/traits/traits-6.4.1.ebuild b/dev-python/traits/traits-6.4.1.ebuild
index 12afbe075..57d555447 100644
--- a/dev-python/traits/traits-6.4.1.ebuild
+++ b/dev-python/traits/traits-6.4.1.ebuild
@@ -8,9 +8,10 @@ PYTHON_COMPAT=( python3_10 )
inherit distutils-r1
DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="https://docs.enthought.com/traits/
+HOMEPAGE="
+ https://docs.enthought.com/traits/
https://github.com/enthought/traits
- https://pypi.org/project/traits/"
+"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2023-01-27 18:47 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2023-01-27 18:47 UTC (permalink / raw
To: gentoo-commits
commit: 398a2229c62b13edbce256150da8545fde088a95
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Jan 27 18:46:42 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Jan 27 18:46:42 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=398a2229
dev-python/traits: PYTHON_COMPAT bump
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-6.1.1.ebuild | 4 ++--
dev-python/traits/traits-6.3.2.ebuild | 4 ++--
dev-python/traits/traits-6.4.1.ebuild | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/dev-python/traits/traits-6.1.1.ebuild b/dev-python/traits/traits-6.1.1.ebuild
index 0754ddefd..7282ebfa8 100644
--- a/dev-python/traits/traits-6.1.1.ebuild
+++ b/dev-python/traits/traits-6.1.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
diff --git a/dev-python/traits/traits-6.3.2.ebuild b/dev-python/traits/traits-6.3.2.ebuild
index 57d555447..3d81493f5 100644
--- a/dev-python/traits/traits-6.3.2.ebuild
+++ b/dev-python/traits/traits-6.3.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
diff --git a/dev-python/traits/traits-6.4.1.ebuild b/dev-python/traits/traits-6.4.1.ebuild
index 57d555447..3d81493f5 100644
--- a/dev-python/traits/traits-6.4.1.ebuild
+++ b/dev-python/traits/traits-6.4.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2023-05-22 12:10 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2023-05-22 12:10 UTC (permalink / raw
To: gentoo-commits
commit: eb94c232b2bbe9dbac0225fd0af094cd9a7774cc
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon May 22 12:10:47 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon May 22 12:10:47 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=eb94c232
dev-python/traits: update SRC_URI
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/metadata.xml | 1 +
dev-python/traits/traits-6.1.1.ebuild | 3 +--
dev-python/traits/traits-6.3.2.ebuild | 3 +--
dev-python/traits/traits-6.4.1.ebuild | 3 +--
4 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/dev-python/traits/metadata.xml b/dev-python/traits/metadata.xml
index ec9460dd1..2e84467ab 100644
--- a/dev-python/traits/metadata.xml
+++ b/dev-python/traits/metadata.xml
@@ -21,6 +21,7 @@
* Visualization: With the TraitsUI package, GUIs can be generated automatically from traited objects.
</longdescription>
<upstream>
+ <remote-id type="github">enthought/traits</remote-id>
<remote-id type="pypi">traits</remote-id>
</upstream>
</pkgmetadata>
diff --git a/dev-python/traits/traits-6.1.1.ebuild b/dev-python/traits/traits-6.1.1.ebuild
index 7282ebfa8..3fb901492 100644
--- a/dev-python/traits/traits-6.1.1.ebuild
+++ b/dev-python/traits/traits-6.1.1.ebuild
@@ -5,13 +5,12 @@ EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
-inherit distutils-r1
+inherit distutils-r1 pypi
DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
HOMEPAGE="https://docs.enthought.com/traits/
https://github.com/enthought/traits
https://pypi.org/project/traits/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
diff --git a/dev-python/traits/traits-6.3.2.ebuild b/dev-python/traits/traits-6.3.2.ebuild
index 3d81493f5..4d3c699a5 100644
--- a/dev-python/traits/traits-6.3.2.ebuild
+++ b/dev-python/traits/traits-6.3.2.ebuild
@@ -5,14 +5,13 @@ EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
-inherit distutils-r1
+inherit distutils-r1 pypi
DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
HOMEPAGE="
https://docs.enthought.com/traits/
https://github.com/enthought/traits
"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
diff --git a/dev-python/traits/traits-6.4.1.ebuild b/dev-python/traits/traits-6.4.1.ebuild
index 3d81493f5..4d3c699a5 100644
--- a/dev-python/traits/traits-6.4.1.ebuild
+++ b/dev-python/traits/traits-6.4.1.ebuild
@@ -5,14 +5,13 @@ EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
-inherit distutils-r1
+inherit distutils-r1 pypi
DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
HOMEPAGE="
https://docs.enthought.com/traits/
https://github.com/enthought/traits
"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2023-05-25 5:55 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2023-05-25 5:55 UTC (permalink / raw
To: gentoo-commits
commit: 8a3207cdb31bd100bb51094bfcdb842799dc6db7
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu May 25 05:52:56 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu May 25 05:52:56 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8a3207cd
dev-python/traits: fixed tests
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-6.4.1.ebuild | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/dev-python/traits/traits-6.4.1.ebuild b/dev-python/traits/traits-6.4.1.ebuild
index 4d3c699a5..ebd3fb97a 100644
--- a/dev-python/traits/traits-6.4.1.ebuild
+++ b/dev-python/traits/traits-6.4.1.ebuild
@@ -3,6 +3,7 @@
EAPI=8
+DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1 pypi
@@ -19,7 +20,7 @@ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-distutils_enable_tests unittest
+distutils_enable_tests pytest
# ToDo: Fix doc building:
# AttributeError: 'NoDefaultSpecified' object has no attribute '__name__'
#distutils_enable_sphinx docs/source --no-autodoc
@@ -30,6 +31,6 @@ python_prepare_all() {
}
python_test() {
- cd "${BUILD_DIR}"/lib || die
- ${EPYTHON} -m unittest discover || die
+ cd "${T}" || die
+ epytest --pyargs traits
}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/traits/
@ 2023-05-25 5:55 Horea Christian
0 siblings, 0 replies; 20+ messages in thread
From: Horea Christian @ 2023-05-25 5:55 UTC (permalink / raw
To: gentoo-commits
commit: 40b112b3f93916b1aef743104ed6e2374a6883b1
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu May 25 05:54:24 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu May 25 05:54:24 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=40b112b3
dev-python/traits: drop 6.1.1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/traits/traits-6.1.1.ebuild | 36 -----------------------------------
1 file changed, 36 deletions(-)
diff --git a/dev-python/traits/traits-6.1.1.ebuild b/dev-python/traits/traits-6.1.1.ebuild
deleted file mode 100644
index 3fb901492..000000000
--- a/dev-python/traits/traits-6.1.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Enthought Tool Suite: Explicitly typed attributes for Python"
-HOMEPAGE="https://docs.enthought.com/traits/
- https://github.com/enthought/traits
- https://pypi.org/project/traits/"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-# Reported upstream: https://github.com/enthought/traits/issues/1731
-RESTRICT="test"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
-
-distutils_enable_tests unittest
-# ToDo: Fix doc building:
-# AttributeError: 'NoDefaultSpecified' object has no attribute '__name__'
-#distutils_enable_sphinx docs/source --no-autodoc
-
-python_prepare_all() {
- sed -i -e "s/'-O3'//g" setup.py || die
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- cd "${BUILD_DIR}"/lib || die
- ${EPYTHON} -m unittest discover || die
-}
^ permalink raw reply related [flat|nested] 20+ messages in thread
end of thread, other threads:[~2023-05-25 5:55 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-18 20:14 [gentoo-commits] proj/sci:master commit in: dev-python/traits/ Horea Christian
-- strict thread matches above, loose matches on Subject: below --
2019-03-22 2:02 Horea Christian
2019-04-16 19:51 Horea Christian
2020-03-20 5:40 Horea Christian
2020-09-25 8:53 Horea Christian
2020-12-31 1:38 Aisha Tammy
2021-01-03 3:38 Horea Christian
2021-01-03 3:38 Horea Christian
2021-01-06 9:42 Andrew Ammerlaan
2021-01-13 21:06 Andrew Ammerlaan
2021-12-16 11:07 Andrew Ammerlaan
2022-07-11 17:22 Horea Christian
2023-01-12 23:54 Horea Christian
2023-01-12 23:54 Horea Christian
2023-01-12 23:54 Horea Christian
2023-01-27 18:45 Horea Christian
2023-01-27 18:47 Horea Christian
2023-05-22 12:10 Horea Christian
2023-05-25 5:55 Horea Christian
2023-05-25 5:55 Horea Christian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox