* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2016-02-18 12:38 Patrick Lauer
0 siblings, 0 replies; 12+ messages in thread
From: Patrick Lauer @ 2016-02-18 12:38 UTC (permalink / raw
To: gentoo-commits
commit: d1248c2078c184eeb06d2bfe22f80a06d7840452
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 18 12:37:14 2016 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Thu Feb 18 12:37:40 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1248c20
dev-python/datashape: Bump
Package-Manager: portage-2.2.27
dev-python/datashape/Manifest | 1 +
dev-python/datashape/datashape-0.4.7.ebuild | 46 +++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/dev-python/datashape/Manifest b/dev-python/datashape/Manifest
index 6ccd353..7da5f61 100644
--- a/dev-python/datashape/Manifest
+++ b/dev-python/datashape/Manifest
@@ -2,3 +2,4 @@ DIST datashape-0.4.2.tar.gz 79106 SHA256 56ca27c5eb090d3670d3f59d2cd4a9855c48849
DIST datashape-0.4.4.tar.gz 80923 SHA256 c4142eadbdb986a350941e5427d35a2aa106934f9197e91ccb53809c4c79e394 SHA512 047127e070b1cbecd241a888a8b2d773ee149d05e08556644ae0add79f774be9795caab8b8c6de146dc9281ebfd93aadbcb54c2c08fc8fa7f1612834cecf9753 WHIRLPOOL 8294278a940f2a89e525e1133d5870c320b37d1cf1f48f24b267fa792c1599695e8b72cdda6a455500cd8d6d008d394791ba5ea71c7ff42d71da9059bcf47268
DIST datashape-0.4.5.tar.gz 93549 SHA256 34d4922fa924ef474de2ef8b69833fe2d5da51703d74426f8c4354c9bb209d0f SHA512 f8fcaf923640e42d0ceb6cd607e89b74145443f33ec1d4c0018dc0093518d572ae890bf582487b0c2de6c9d793e96ebb7dc901a330150f2ef2f203b329db5968 WHIRLPOOL cb78a9fd8337d9047c473914f216a06ff3797cc3fc494982696ba8c379d3e50e7cc194f84557eada06fe8459d3711589ad6e1404eb2ae9e389e81e104d447ce0
DIST datashape-0.4.6.tar.gz 94083 SHA256 872929d992929ee23ea939984d43d726458ddaa3367503bb4678edac81a4b854 SHA512 596b997ebf9f3b05d5c7d686514408630a987b5933ded24e5cfe1321ea32b1cb4b2f99b820c3e2ec608fdf5fcb1ec795f256bbc14c0ec2e6e8f21b61b083d696 WHIRLPOOL e85917492996b81d01f6c3c5577f5a446ce141c3518d332709a95d40584a77898b59264f3d03bd87a33d39df63854225020e604ca06341e090eeacd541a14047
+DIST datashape-0.4.7.tar.gz 92581 SHA256 1028378bb56e8546a07cd3ad09247672516468ab395aa87646c4791488ba1794 SHA512 c5e4f9ef36456d6673c7cb50297d36cf0080cb08d9da81ff044853cc9bb52d659bc6c0beeb6d95d47ff6924aab50b67ac28eb906e7049624fe5d923a304c0ad0 WHIRLPOOL 7bfc2491a8598cc5a3574ced486d6b19308f45155002a0703e4d57fdc23f2ad270cde500ed65af9520a69c6538bf3622f733a19d56509bd65e5bb981d64118ec
diff --git a/dev-python/datashape/datashape-0.4.7.ebuild b/dev-python/datashape/datashape-0.4.7.ebuild
new file mode 100644
index 0000000..9a77693
--- /dev/null
+++ b/dev-python/datashape/datashape-0.4.7.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Language defining a data description protocol"
+HOMEPAGE="https://github.com/ContinuumIO/datashape"
+SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
+ >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
+ dev-python/python-dateutil[${PYTHON_USEDEP}]"
+DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? ( ${RDEPEND}
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+ # Prevent un-needed d'loading
+ sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
+
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C docs html
+}
+
+python_test() {
+ py.test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/build/html/. )
+ distutils-r1_python_install_all
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2016-02-26 19:53 Patrick Lauer
0 siblings, 0 replies; 12+ messages in thread
From: Patrick Lauer @ 2016-02-26 19:53 UTC (permalink / raw
To: gentoo-commits
commit: 009a8a7b6837f7d6bc3fbe83cd5b23e307103e0b
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 26 19:34:07 2016 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Fri Feb 26 19:52:09 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=009a8a7b
dev-python/datashape: Bump
Package-Manager: portage-2.2.27
dev-python/datashape/Manifest | 1 +
dev-python/datashape/datashape-0.5.0.ebuild | 46 +++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/dev-python/datashape/Manifest b/dev-python/datashape/Manifest
index 7da5f61..618475f 100644
--- a/dev-python/datashape/Manifest
+++ b/dev-python/datashape/Manifest
@@ -3,3 +3,4 @@ DIST datashape-0.4.4.tar.gz 80923 SHA256 c4142eadbdb986a350941e5427d35a2aa106934
DIST datashape-0.4.5.tar.gz 93549 SHA256 34d4922fa924ef474de2ef8b69833fe2d5da51703d74426f8c4354c9bb209d0f SHA512 f8fcaf923640e42d0ceb6cd607e89b74145443f33ec1d4c0018dc0093518d572ae890bf582487b0c2de6c9d793e96ebb7dc901a330150f2ef2f203b329db5968 WHIRLPOOL cb78a9fd8337d9047c473914f216a06ff3797cc3fc494982696ba8c379d3e50e7cc194f84557eada06fe8459d3711589ad6e1404eb2ae9e389e81e104d447ce0
DIST datashape-0.4.6.tar.gz 94083 SHA256 872929d992929ee23ea939984d43d726458ddaa3367503bb4678edac81a4b854 SHA512 596b997ebf9f3b05d5c7d686514408630a987b5933ded24e5cfe1321ea32b1cb4b2f99b820c3e2ec608fdf5fcb1ec795f256bbc14c0ec2e6e8f21b61b083d696 WHIRLPOOL e85917492996b81d01f6c3c5577f5a446ce141c3518d332709a95d40584a77898b59264f3d03bd87a33d39df63854225020e604ca06341e090eeacd541a14047
DIST datashape-0.4.7.tar.gz 92581 SHA256 1028378bb56e8546a07cd3ad09247672516468ab395aa87646c4791488ba1794 SHA512 c5e4f9ef36456d6673c7cb50297d36cf0080cb08d9da81ff044853cc9bb52d659bc6c0beeb6d95d47ff6924aab50b67ac28eb906e7049624fe5d923a304c0ad0 WHIRLPOOL 7bfc2491a8598cc5a3574ced486d6b19308f45155002a0703e4d57fdc23f2ad270cde500ed65af9520a69c6538bf3622f733a19d56509bd65e5bb981d64118ec
+DIST datashape-0.5.0.tar.gz 97748 SHA256 d0b7eafd84fbc75941e274b1bd9c26327ee90f3a1872e7e9b72693f49bee4f0f SHA512 670049fdc6e829805bdf4bf50ffb037bfa2b48fcc3e8772ac82a030fbb3d9c2dd084b6d2ed79cbe08a6e8d074b9fc54a7836f530f5fb45bf96df8b2fb9a8eaa1 WHIRLPOOL bc30f093889951ce47e9eacbad7dbfc5dd1257c9a6cc2a7692660b28b123fc40912f68dfb52bc387fc03043dd35cff5b7d51693ee69f153539653536738c6590
diff --git a/dev-python/datashape/datashape-0.5.0.ebuild b/dev-python/datashape/datashape-0.5.0.ebuild
new file mode 100644
index 0000000..9a77693
--- /dev/null
+++ b/dev-python/datashape/datashape-0.5.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Language defining a data description protocol"
+HOMEPAGE="https://github.com/ContinuumIO/datashape"
+SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
+ >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
+ dev-python/python-dateutil[${PYTHON_USEDEP}]"
+DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? ( ${RDEPEND}
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+ # Prevent un-needed d'loading
+ sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
+
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C docs html
+}
+
+python_test() {
+ py.test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/build/html/. )
+ distutils-r1_python_install_all
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2016-03-12 11:40 Patrick Lauer
0 siblings, 0 replies; 12+ messages in thread
From: Patrick Lauer @ 2016-03-12 11:40 UTC (permalink / raw
To: gentoo-commits
commit: 198a7c804d13b10e8c3e3cdae5baa715da4510d8
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 10:37:15 2016 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 11:39:11 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=198a7c80
dev-python/datashape: Bump
Package-Manager: portage-2.2.28
dev-python/datashape/Manifest | 1 +
dev-python/datashape/datashape-0.5.1.ebuild | 46 +++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/dev-python/datashape/Manifest b/dev-python/datashape/Manifest
index 618475f..f6e1e9d 100644
--- a/dev-python/datashape/Manifest
+++ b/dev-python/datashape/Manifest
@@ -4,3 +4,4 @@ DIST datashape-0.4.5.tar.gz 93549 SHA256 34d4922fa924ef474de2ef8b69833fe2d5da517
DIST datashape-0.4.6.tar.gz 94083 SHA256 872929d992929ee23ea939984d43d726458ddaa3367503bb4678edac81a4b854 SHA512 596b997ebf9f3b05d5c7d686514408630a987b5933ded24e5cfe1321ea32b1cb4b2f99b820c3e2ec608fdf5fcb1ec795f256bbc14c0ec2e6e8f21b61b083d696 WHIRLPOOL e85917492996b81d01f6c3c5577f5a446ce141c3518d332709a95d40584a77898b59264f3d03bd87a33d39df63854225020e604ca06341e090eeacd541a14047
DIST datashape-0.4.7.tar.gz 92581 SHA256 1028378bb56e8546a07cd3ad09247672516468ab395aa87646c4791488ba1794 SHA512 c5e4f9ef36456d6673c7cb50297d36cf0080cb08d9da81ff044853cc9bb52d659bc6c0beeb6d95d47ff6924aab50b67ac28eb906e7049624fe5d923a304c0ad0 WHIRLPOOL 7bfc2491a8598cc5a3574ced486d6b19308f45155002a0703e4d57fdc23f2ad270cde500ed65af9520a69c6538bf3622f733a19d56509bd65e5bb981d64118ec
DIST datashape-0.5.0.tar.gz 97748 SHA256 d0b7eafd84fbc75941e274b1bd9c26327ee90f3a1872e7e9b72693f49bee4f0f SHA512 670049fdc6e829805bdf4bf50ffb037bfa2b48fcc3e8772ac82a030fbb3d9c2dd084b6d2ed79cbe08a6e8d074b9fc54a7836f530f5fb45bf96df8b2fb9a8eaa1 WHIRLPOOL bc30f093889951ce47e9eacbad7dbfc5dd1257c9a6cc2a7692660b28b123fc40912f68dfb52bc387fc03043dd35cff5b7d51693ee69f153539653536738c6590
+DIST datashape-0.5.1.tar.gz 98160 SHA256 bbb1dbcbfa285c4ecf0d2ee14b7017b3ea357935537c736bc51eca07d2bd4f47 SHA512 cb882b76f2b0a0f0321fcb41fe59dd5a1465f07bc58dc817400cd2d17d8a2b34a2ca944c24629616684ea6c6cf3f19365f539a2b58baf83f8ecebe6896a8beb8 WHIRLPOOL 7b78d1a0fbc1233666915715448d4552b948b82198773b5d13f43169f59513e43ceca2ccb9d625d64d83f58f122272f56b952cb3d0156c0f8b7512427f702490
diff --git a/dev-python/datashape/datashape-0.5.1.ebuild b/dev-python/datashape/datashape-0.5.1.ebuild
new file mode 100644
index 0000000..6fcc4af
--- /dev/null
+++ b/dev-python/datashape/datashape-0.5.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Language defining a data description protocol"
+HOMEPAGE="https://github.com/ContinuumIO/datashape"
+SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
+ >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
+ dev-python/python-dateutil[${PYTHON_USEDEP}]"
+DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? ( ${RDEPEND}
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+ # Prevent un-needed d'loading
+ sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
+
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C docs html
+}
+
+python_test() {
+ py.test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/build/html/. )
+ distutils-r1_python_install_all
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2016-06-29 13:21 Patrick Lauer
0 siblings, 0 replies; 12+ messages in thread
From: Patrick Lauer @ 2016-06-29 13:21 UTC (permalink / raw
To: gentoo-commits
commit: 9728700f8da5d552dd1376dbb74d6b5b728f460e
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 11:00:02 2016 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 13:20:41 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9728700f
dev-python/datashape: Bump
Package-Manager: portage-2.3.0
dev-python/datashape/Manifest | 1 +
dev-python/datashape/datashape-0.5.2.ebuild | 46 +++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/dev-python/datashape/Manifest b/dev-python/datashape/Manifest
index f6e1e9d..9b04a8f 100644
--- a/dev-python/datashape/Manifest
+++ b/dev-python/datashape/Manifest
@@ -5,3 +5,4 @@ DIST datashape-0.4.6.tar.gz 94083 SHA256 872929d992929ee23ea939984d43d726458ddaa
DIST datashape-0.4.7.tar.gz 92581 SHA256 1028378bb56e8546a07cd3ad09247672516468ab395aa87646c4791488ba1794 SHA512 c5e4f9ef36456d6673c7cb50297d36cf0080cb08d9da81ff044853cc9bb52d659bc6c0beeb6d95d47ff6924aab50b67ac28eb906e7049624fe5d923a304c0ad0 WHIRLPOOL 7bfc2491a8598cc5a3574ced486d6b19308f45155002a0703e4d57fdc23f2ad270cde500ed65af9520a69c6538bf3622f733a19d56509bd65e5bb981d64118ec
DIST datashape-0.5.0.tar.gz 97748 SHA256 d0b7eafd84fbc75941e274b1bd9c26327ee90f3a1872e7e9b72693f49bee4f0f SHA512 670049fdc6e829805bdf4bf50ffb037bfa2b48fcc3e8772ac82a030fbb3d9c2dd084b6d2ed79cbe08a6e8d074b9fc54a7836f530f5fb45bf96df8b2fb9a8eaa1 WHIRLPOOL bc30f093889951ce47e9eacbad7dbfc5dd1257c9a6cc2a7692660b28b123fc40912f68dfb52bc387fc03043dd35cff5b7d51693ee69f153539653536738c6590
DIST datashape-0.5.1.tar.gz 98160 SHA256 bbb1dbcbfa285c4ecf0d2ee14b7017b3ea357935537c736bc51eca07d2bd4f47 SHA512 cb882b76f2b0a0f0321fcb41fe59dd5a1465f07bc58dc817400cd2d17d8a2b34a2ca944c24629616684ea6c6cf3f19365f539a2b58baf83f8ecebe6896a8beb8 WHIRLPOOL 7b78d1a0fbc1233666915715448d4552b948b82198773b5d13f43169f59513e43ceca2ccb9d625d64d83f58f122272f56b952cb3d0156c0f8b7512427f702490
+DIST datashape-0.5.2.tar.gz 99032 SHA256 7f964969944bfcd61904c4f40210429723d0db91e57d543660b38bbe1da4806b SHA512 731d65d0dd82310d0101386bb0df8169f940d8e6e3a749fd2b40996ee8dddf046ae83bdee0417e0bb156e6d8c00a03f53839a1b5eae4c4867eedfff338df99e6 WHIRLPOOL f876bfe31446b0a573b8293a068ef45fc53dc1845aa10bf86ab23ffff9ea2fc6a481f5c11288c5b971fc626b93dfd41baf22f54423b13d441d167d60ab598182
diff --git a/dev-python/datashape/datashape-0.5.2.ebuild b/dev-python/datashape/datashape-0.5.2.ebuild
new file mode 100644
index 0000000..602a6f4
--- /dev/null
+++ b/dev-python/datashape/datashape-0.5.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Language defining a data description protocol"
+HOMEPAGE="https://github.com/ContinuumIO/datashape"
+SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
+ >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
+ dev-python/python-dateutil[${PYTHON_USEDEP}]"
+DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? ( ${RDEPEND}
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+ # Prevent un-needed d'loading
+ sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
+
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C docs html
+}
+
+python_test() {
+ py.test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/build/html/. )
+ distutils-r1_python_install_all
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2016-07-18 9:32 Patrick Lauer
0 siblings, 0 replies; 12+ messages in thread
From: Patrick Lauer @ 2016-07-18 9:32 UTC (permalink / raw
To: gentoo-commits
commit: 408c4a56b255f6f83d639c2b585b97145e971566
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 18 09:03:33 2016 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Mon Jul 18 09:32:10 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=408c4a56
dev-python/datashape: Bump
Package-Manager: portage-2.3.0
dev-python/datashape/Manifest | 1 +
dev-python/datashape/datashape-0.5.3.ebuild | 46 +++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/dev-python/datashape/Manifest b/dev-python/datashape/Manifest
index 9b04a8f..dd19e7b 100644
--- a/dev-python/datashape/Manifest
+++ b/dev-python/datashape/Manifest
@@ -6,3 +6,4 @@ DIST datashape-0.4.7.tar.gz 92581 SHA256 1028378bb56e8546a07cd3ad09247672516468a
DIST datashape-0.5.0.tar.gz 97748 SHA256 d0b7eafd84fbc75941e274b1bd9c26327ee90f3a1872e7e9b72693f49bee4f0f SHA512 670049fdc6e829805bdf4bf50ffb037bfa2b48fcc3e8772ac82a030fbb3d9c2dd084b6d2ed79cbe08a6e8d074b9fc54a7836f530f5fb45bf96df8b2fb9a8eaa1 WHIRLPOOL bc30f093889951ce47e9eacbad7dbfc5dd1257c9a6cc2a7692660b28b123fc40912f68dfb52bc387fc03043dd35cff5b7d51693ee69f153539653536738c6590
DIST datashape-0.5.1.tar.gz 98160 SHA256 bbb1dbcbfa285c4ecf0d2ee14b7017b3ea357935537c736bc51eca07d2bd4f47 SHA512 cb882b76f2b0a0f0321fcb41fe59dd5a1465f07bc58dc817400cd2d17d8a2b34a2ca944c24629616684ea6c6cf3f19365f539a2b58baf83f8ecebe6896a8beb8 WHIRLPOOL 7b78d1a0fbc1233666915715448d4552b948b82198773b5d13f43169f59513e43ceca2ccb9d625d64d83f58f122272f56b952cb3d0156c0f8b7512427f702490
DIST datashape-0.5.2.tar.gz 99032 SHA256 7f964969944bfcd61904c4f40210429723d0db91e57d543660b38bbe1da4806b SHA512 731d65d0dd82310d0101386bb0df8169f940d8e6e3a749fd2b40996ee8dddf046ae83bdee0417e0bb156e6d8c00a03f53839a1b5eae4c4867eedfff338df99e6 WHIRLPOOL f876bfe31446b0a573b8293a068ef45fc53dc1845aa10bf86ab23ffff9ea2fc6a481f5c11288c5b971fc626b93dfd41baf22f54423b13d441d167d60ab598182
+DIST datashape-0.5.3.tar.gz 99757 SHA256 a4c9d54145ce9ec5d971073aec72c3066efec5a180d711f5a07d02b434e822d3 SHA512 f9542bdfbbf1d28023551023fef283385ee4b431e28c7ca8552727f5eb9deee9b6d022acbc694070f13e1441c1b0fe30963719e7b11326969edeca1193db41ab WHIRLPOOL 03c08314a3f0933f1b5a90061d43ca7c487be7e05a34349e6a464c8f3524cafbb62b2605fd18b3ca861c0fc733b04d9a788dbd9c54730c06c8118a72daa63e11
diff --git a/dev-python/datashape/datashape-0.5.3.ebuild b/dev-python/datashape/datashape-0.5.3.ebuild
new file mode 100644
index 0000000..602a6f4
--- /dev/null
+++ b/dev-python/datashape/datashape-0.5.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Language defining a data description protocol"
+HOMEPAGE="https://github.com/ContinuumIO/datashape"
+SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
+ >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
+ dev-python/python-dateutil[${PYTHON_USEDEP}]"
+DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? ( ${RDEPEND}
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+ # Prevent un-needed d'loading
+ sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
+
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C docs html
+}
+
+python_test() {
+ py.test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/build/html/. )
+ distutils-r1_python_install_all
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2017-01-10 5:27 Sebastien Fabbro
0 siblings, 0 replies; 12+ messages in thread
From: Sebastien Fabbro @ 2017-01-10 5:27 UTC (permalink / raw
To: gentoo-commits
commit: 98389f444eb62f884fdd0f08f735ed1472246ef8
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 7 20:09:17 2017 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Tue Jan 10 05:26:39 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98389f44
dev-python/datashape: version bump
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-python/datashape/Manifest | 1 +
dev-python/datashape/datashape-0.5.4.ebuild | 50 +++++++++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/dev-python/datashape/Manifest b/dev-python/datashape/Manifest
index dd19e7b..e0f2194 100644
--- a/dev-python/datashape/Manifest
+++ b/dev-python/datashape/Manifest
@@ -7,3 +7,4 @@ DIST datashape-0.5.0.tar.gz 97748 SHA256 d0b7eafd84fbc75941e274b1bd9c26327ee90f3
DIST datashape-0.5.1.tar.gz 98160 SHA256 bbb1dbcbfa285c4ecf0d2ee14b7017b3ea357935537c736bc51eca07d2bd4f47 SHA512 cb882b76f2b0a0f0321fcb41fe59dd5a1465f07bc58dc817400cd2d17d8a2b34a2ca944c24629616684ea6c6cf3f19365f539a2b58baf83f8ecebe6896a8beb8 WHIRLPOOL 7b78d1a0fbc1233666915715448d4552b948b82198773b5d13f43169f59513e43ceca2ccb9d625d64d83f58f122272f56b952cb3d0156c0f8b7512427f702490
DIST datashape-0.5.2.tar.gz 99032 SHA256 7f964969944bfcd61904c4f40210429723d0db91e57d543660b38bbe1da4806b SHA512 731d65d0dd82310d0101386bb0df8169f940d8e6e3a749fd2b40996ee8dddf046ae83bdee0417e0bb156e6d8c00a03f53839a1b5eae4c4867eedfff338df99e6 WHIRLPOOL f876bfe31446b0a573b8293a068ef45fc53dc1845aa10bf86ab23ffff9ea2fc6a481f5c11288c5b971fc626b93dfd41baf22f54423b13d441d167d60ab598182
DIST datashape-0.5.3.tar.gz 99757 SHA256 a4c9d54145ce9ec5d971073aec72c3066efec5a180d711f5a07d02b434e822d3 SHA512 f9542bdfbbf1d28023551023fef283385ee4b431e28c7ca8552727f5eb9deee9b6d022acbc694070f13e1441c1b0fe30963719e7b11326969edeca1193db41ab WHIRLPOOL 03c08314a3f0933f1b5a90061d43ca7c487be7e05a34349e6a464c8f3524cafbb62b2605fd18b3ca861c0fc733b04d9a788dbd9c54730c06c8118a72daa63e11
+DIST datashape-0.5.4.tar.gz 99343 SHA256 c266c5803dde48b9fa8d8ee51b5b5979ef77443060e32db2d225b72648c638a5 SHA512 3640c3871e6a00ad5c9961586821c0aab94ed10e82f5c2d361707c66853025aec70793f74f057c30a7bbc58d4645791b33df2916732e703586fd6bb84e91bdfa WHIRLPOOL b3ceec74c95329dbe9ac041344babeaa2b7f4df82de18797fffad590a57b00088e833cf79adf031effc7350e1772b5cd4210fc1a121eebe4749b8bfee6886117
diff --git a/dev-python/datashape/datashape-0.5.4.ebuild b/dev-python/datashape/datashape-0.5.4.ebuild
new file mode 100644
index 00000000..a04a3bf
--- /dev/null
+++ b/dev-python/datashape/datashape-0.5.4.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Language defining a data description protocol"
+HOMEPAGE="https://github.com/ContinuumIO/datashape"
+SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND="
+ >=dev-python/numpy-1.7[${PYTHON_USEDEP}]
+ >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
+ dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+DEPEND="
+ doc? ( ${RDEPEND} dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? ( ${RDEPEND}
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ )
+"
+
+python_prepare_all() {
+ # Prevent un-needed d'loading
+ sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C docs html
+}
+
+python_test() {
+ py.test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/build/html/. )
+ distutils-r1_python_install_all
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2017-01-17 16:22 Agostino Sarubbo
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo @ 2017-01-17 16:22 UTC (permalink / raw
To: gentoo-commits
commit: bbbd31b141cc295f3b5f7d6385148154f3fee646
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 17 16:20:18 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Jan 17 16:21:51 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbbd31b1
dev-python/datashape: amd64 stable wrt bug #606040
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-python/datashape/datashape-0.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/datashape/datashape-0.5.4.ebuild b/dev-python/datashape/datashape-0.5.4.ebuild
index a04a3bf..7f42edf 100644
--- a/dev-python/datashape/datashape-0.5.4.ebuild
+++ b/dev-python/datashape/datashape-0.5.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.g
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RDEPEND="
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2017-02-26 18:02 Sebastien Fabbro
0 siblings, 0 replies; 12+ messages in thread
From: Sebastien Fabbro @ 2017-02-26 18:02 UTC (permalink / raw
To: gentoo-commits
commit: 45342441cc269df53786f173d46f0c6ac14dc123
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 19 05:58:06 2017 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sun Feb 26 18:02:03 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45342441
dev-python/datashape: fix web page
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-python/datashape/datashape-0.5.4.ebuild | 4 ++--
dev-python/datashape/metadata.xml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/datashape/datashape-0.5.4.ebuild b/dev-python/datashape/datashape-0.5.4.ebuild
index 9138f6076e..9f7a8a37a3 100644
--- a/dev-python/datashape/datashape-0.5.4.ebuild
+++ b/dev-python/datashape/datashape-0.5.4.ebuild
@@ -9,8 +9,8 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5} )
inherit distutils-r1
DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/ContinuumIO/datashape"
-SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://github.com/blaze/datashape"
+SRC_URI="https://github.com/blaze/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
diff --git a/dev-python/datashape/metadata.xml b/dev-python/datashape/metadata.xml
index c6bb1a1c33..fa8c7de680 100644
--- a/dev-python/datashape/metadata.xml
+++ b/dev-python/datashape/metadata.xml
@@ -10,6 +10,6 @@
the NumPy dtype with an emphasis on cross language support.
</longdescription>
<upstream>
- <remote-id type="github">ContinuumIO/datashape</remote-id>
+ <remote-id type="github">blaze/datashape</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2017-05-02 11:58 Michał Górny
0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2017-05-02 11:58 UTC (permalink / raw
To: gentoo-commits
commit: 5e719abfc4ed95be4f2c903ace3ae27a7b45bffa
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 2 11:20:26 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 2 11:58:20 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e719abf
dev-python/datashape: Clean old versions up
dev-python/datashape/Manifest | 9 ------
dev-python/datashape/datashape-0.4.2.ebuild | 44 ----------------------------
dev-python/datashape/datashape-0.4.4.ebuild | 44 ----------------------------
dev-python/datashape/datashape-0.4.5.ebuild | 44 ----------------------------
dev-python/datashape/datashape-0.4.6.ebuild | 44 ----------------------------
dev-python/datashape/datashape-0.4.7.ebuild | 45 -----------------------------
dev-python/datashape/datashape-0.5.0.ebuild | 45 -----------------------------
dev-python/datashape/datashape-0.5.1.ebuild | 45 -----------------------------
dev-python/datashape/datashape-0.5.2.ebuild | 45 -----------------------------
dev-python/datashape/datashape-0.5.3.ebuild | 45 -----------------------------
10 files changed, 410 deletions(-)
diff --git a/dev-python/datashape/Manifest b/dev-python/datashape/Manifest
index e0f21943b9a..a3a500cee41 100644
--- a/dev-python/datashape/Manifest
+++ b/dev-python/datashape/Manifest
@@ -1,10 +1 @@
-DIST datashape-0.4.2.tar.gz 79106 SHA256 56ca27c5eb090d3670d3f59d2cd4a9855c488495fd1888e6f723a21f42acfa32 SHA512 d12eecdce6ffeb77d9367fcf978c2cfddea3bd2daa53a2aea983464c41ff2a408f9d199462ed25eebf247f4bb0f9e827ac97a5acab19979a5d30789898441c49 WHIRLPOOL 5497a90258115e8db30414ab1bedbad88d38462e6606561c9be7645137557608ac12a384e93da08f3e2cb49c1ffbb5a3b5d33483376ee8f170cfe6af10a9dc32
-DIST datashape-0.4.4.tar.gz 80923 SHA256 c4142eadbdb986a350941e5427d35a2aa106934f9197e91ccb53809c4c79e394 SHA512 047127e070b1cbecd241a888a8b2d773ee149d05e08556644ae0add79f774be9795caab8b8c6de146dc9281ebfd93aadbcb54c2c08fc8fa7f1612834cecf9753 WHIRLPOOL 8294278a940f2a89e525e1133d5870c320b37d1cf1f48f24b267fa792c1599695e8b72cdda6a455500cd8d6d008d394791ba5ea71c7ff42d71da9059bcf47268
-DIST datashape-0.4.5.tar.gz 93549 SHA256 34d4922fa924ef474de2ef8b69833fe2d5da51703d74426f8c4354c9bb209d0f SHA512 f8fcaf923640e42d0ceb6cd607e89b74145443f33ec1d4c0018dc0093518d572ae890bf582487b0c2de6c9d793e96ebb7dc901a330150f2ef2f203b329db5968 WHIRLPOOL cb78a9fd8337d9047c473914f216a06ff3797cc3fc494982696ba8c379d3e50e7cc194f84557eada06fe8459d3711589ad6e1404eb2ae9e389e81e104d447ce0
-DIST datashape-0.4.6.tar.gz 94083 SHA256 872929d992929ee23ea939984d43d726458ddaa3367503bb4678edac81a4b854 SHA512 596b997ebf9f3b05d5c7d686514408630a987b5933ded24e5cfe1321ea32b1cb4b2f99b820c3e2ec608fdf5fcb1ec795f256bbc14c0ec2e6e8f21b61b083d696 WHIRLPOOL e85917492996b81d01f6c3c5577f5a446ce141c3518d332709a95d40584a77898b59264f3d03bd87a33d39df63854225020e604ca06341e090eeacd541a14047
-DIST datashape-0.4.7.tar.gz 92581 SHA256 1028378bb56e8546a07cd3ad09247672516468ab395aa87646c4791488ba1794 SHA512 c5e4f9ef36456d6673c7cb50297d36cf0080cb08d9da81ff044853cc9bb52d659bc6c0beeb6d95d47ff6924aab50b67ac28eb906e7049624fe5d923a304c0ad0 WHIRLPOOL 7bfc2491a8598cc5a3574ced486d6b19308f45155002a0703e4d57fdc23f2ad270cde500ed65af9520a69c6538bf3622f733a19d56509bd65e5bb981d64118ec
-DIST datashape-0.5.0.tar.gz 97748 SHA256 d0b7eafd84fbc75941e274b1bd9c26327ee90f3a1872e7e9b72693f49bee4f0f SHA512 670049fdc6e829805bdf4bf50ffb037bfa2b48fcc3e8772ac82a030fbb3d9c2dd084b6d2ed79cbe08a6e8d074b9fc54a7836f530f5fb45bf96df8b2fb9a8eaa1 WHIRLPOOL bc30f093889951ce47e9eacbad7dbfc5dd1257c9a6cc2a7692660b28b123fc40912f68dfb52bc387fc03043dd35cff5b7d51693ee69f153539653536738c6590
-DIST datashape-0.5.1.tar.gz 98160 SHA256 bbb1dbcbfa285c4ecf0d2ee14b7017b3ea357935537c736bc51eca07d2bd4f47 SHA512 cb882b76f2b0a0f0321fcb41fe59dd5a1465f07bc58dc817400cd2d17d8a2b34a2ca944c24629616684ea6c6cf3f19365f539a2b58baf83f8ecebe6896a8beb8 WHIRLPOOL 7b78d1a0fbc1233666915715448d4552b948b82198773b5d13f43169f59513e43ceca2ccb9d625d64d83f58f122272f56b952cb3d0156c0f8b7512427f702490
-DIST datashape-0.5.2.tar.gz 99032 SHA256 7f964969944bfcd61904c4f40210429723d0db91e57d543660b38bbe1da4806b SHA512 731d65d0dd82310d0101386bb0df8169f940d8e6e3a749fd2b40996ee8dddf046ae83bdee0417e0bb156e6d8c00a03f53839a1b5eae4c4867eedfff338df99e6 WHIRLPOOL f876bfe31446b0a573b8293a068ef45fc53dc1845aa10bf86ab23ffff9ea2fc6a481f5c11288c5b971fc626b93dfd41baf22f54423b13d441d167d60ab598182
-DIST datashape-0.5.3.tar.gz 99757 SHA256 a4c9d54145ce9ec5d971073aec72c3066efec5a180d711f5a07d02b434e822d3 SHA512 f9542bdfbbf1d28023551023fef283385ee4b431e28c7ca8552727f5eb9deee9b6d022acbc694070f13e1441c1b0fe30963719e7b11326969edeca1193db41ab WHIRLPOOL 03c08314a3f0933f1b5a90061d43ca7c487be7e05a34349e6a464c8f3524cafbb62b2605fd18b3ca861c0fc733b04d9a788dbd9c54730c06c8118a72daa63e11
DIST datashape-0.5.4.tar.gz 99343 SHA256 c266c5803dde48b9fa8d8ee51b5b5979ef77443060e32db2d225b72648c638a5 SHA512 3640c3871e6a00ad5c9961586821c0aab94ed10e82f5c2d361707c66853025aec70793f74f057c30a7bbc58d4645791b33df2916732e703586fd6bb84e91bdfa WHIRLPOOL b3ceec74c95329dbe9ac041344babeaa2b7f4df82de18797fffad590a57b00088e833cf79adf031effc7350e1772b5cd4210fc1a121eebe4749b8bfee6886117
diff --git a/dev-python/datashape/datashape-0.4.2.ebuild b/dev-python/datashape/datashape-0.4.2.ebuild
deleted file mode 100644
index e73473a905f..00000000000
--- a/dev-python/datashape/datashape-0.4.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/ContinuumIO/datashape"
-SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/multipledispatch[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( ${RDEPEND}
- dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- # Prevent un-needed d'loading
- sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/datashape/datashape-0.4.4.ebuild b/dev-python/datashape/datashape-0.4.4.ebuild
deleted file mode 100644
index e73473a905f..00000000000
--- a/dev-python/datashape/datashape-0.4.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/ContinuumIO/datashape"
-SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/multipledispatch[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( ${RDEPEND}
- dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- # Prevent un-needed d'loading
- sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/datashape/datashape-0.4.5.ebuild b/dev-python/datashape/datashape-0.4.5.ebuild
deleted file mode 100644
index 41d132899f3..00000000000
--- a/dev-python/datashape/datashape-0.4.5.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/ContinuumIO/datashape"
-SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
- >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( ${RDEPEND}
- dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- # Prevent un-needed d'loading
- sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/datashape/datashape-0.4.6.ebuild b/dev-python/datashape/datashape-0.4.6.ebuild
deleted file mode 100644
index 41d132899f3..00000000000
--- a/dev-python/datashape/datashape-0.4.6.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/ContinuumIO/datashape"
-SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
- >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( ${RDEPEND}
- dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- # Prevent un-needed d'loading
- sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/datashape/datashape-0.4.7.ebuild b/dev-python/datashape/datashape-0.4.7.ebuild
deleted file mode 100644
index c5ba512f12a..00000000000
--- a/dev-python/datashape/datashape-0.4.7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/ContinuumIO/datashape"
-SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
- >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( ${RDEPEND}
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- # Prevent un-needed d'loading
- sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/datashape/datashape-0.5.0.ebuild b/dev-python/datashape/datashape-0.5.0.ebuild
deleted file mode 100644
index c5ba512f12a..00000000000
--- a/dev-python/datashape/datashape-0.5.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/ContinuumIO/datashape"
-SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
- >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( ${RDEPEND}
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- # Prevent un-needed d'loading
- sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/datashape/datashape-0.5.1.ebuild b/dev-python/datashape/datashape-0.5.1.ebuild
deleted file mode 100644
index eebb3101961..00000000000
--- a/dev-python/datashape/datashape-0.5.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/ContinuumIO/datashape"
-SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
- >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( ${RDEPEND}
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- # Prevent un-needed d'loading
- sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/datashape/datashape-0.5.2.ebuild b/dev-python/datashape/datashape-0.5.2.ebuild
deleted file mode 100644
index 469aeaa1900..00000000000
--- a/dev-python/datashape/datashape-0.5.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/ContinuumIO/datashape"
-SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
- >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( ${RDEPEND}
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- # Prevent un-needed d'loading
- sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/datashape/datashape-0.5.3.ebuild b/dev-python/datashape/datashape-0.5.3.ebuild
deleted file mode 100644
index 469aeaa1900..00000000000
--- a/dev-python/datashape/datashape-0.5.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/ContinuumIO/datashape"
-SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND=">=dev-python/numpy-1.7[${PYTHON_USEDEP}]
- >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( ${RDEPEND}
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- # Prevent un-needed d'loading
- sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2017-06-28 4:02 Sebastien Fabbro
0 siblings, 0 replies; 12+ messages in thread
From: Sebastien Fabbro @ 2017-06-28 4:02 UTC (permalink / raw
To: gentoo-commits
commit: c59f213ad6a6cd4e71871c81d8ca5c801ea454cc
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 28 03:05:05 2017 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jun 28 04:00:14 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c59f213a
dev-python/datashape: added python-3.6
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-python/datashape/datashape-0.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/datashape/datashape-0.5.4.ebuild b/dev-python/datashape/datashape-0.5.4.ebuild
index 1057ef2865d..0162b78b810 100644
--- a/dev-python/datashape/datashape-0.5.4.ebuild
+++ b/dev-python/datashape/datashape-0.5.4.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2020-01-19 19:54 Pacho Ramos
0 siblings, 0 replies; 12+ messages in thread
From: Pacho Ramos @ 2020-01-19 19:54 UTC (permalink / raw
To: gentoo-commits
commit: 09881367a674bf725f8365892c1214ccefac5f3d
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 19 19:51:21 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=09881367
(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/datashape/datashape-0.5.4-r1.ebuild | 50 ++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/dev-python/datashape/datashape-0.5.4-r1.ebuild b/dev-python/datashape/datashape-0.5.4-r1.ebuild
new file mode 100644
index 00000000000..ba87920acb0
--- /dev/null
+++ b/dev-python/datashape/datashape-0.5.4-r1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_6 )
+
+inherit distutils-r1
+
+DESCRIPTION="Language defining a data description protocol"
+HOMEPAGE="https://github.com/blaze/datashape"
+SRC_URI="https://github.com/blaze/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-python/numpy-1.7[${PYTHON_USEDEP}]
+ >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
+ dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+DEPEND="
+ doc? ( ${RDEPEND} dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? ( ${RDEPEND}
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ )
+"
+
+python_prepare_all() {
+ # Prevent un-needed d'loading
+ sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C docs html
+}
+
+python_test() {
+ py.test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/build/html/. )
+ distutils-r1_python_install_all
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
@ 2020-01-30 21:26 Michał Górny
0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2020-01-30 21:26 UTC (permalink / raw
To: gentoo-commits
commit: e63de3a37c303866298c846d0cf3a6b004420ea4
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 30 21:03:42 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=e63de3a3
dev-python/datashape: Combine both ebuilds (remove py2)
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/datashape/datashape-0.5.4-r1.ebuild | 2 +-
dev-python/datashape/datashape-0.5.4.ebuild | 50 --------------------------
2 files changed, 1 insertion(+), 51 deletions(-)
diff --git a/dev-python/datashape/datashape-0.5.4-r1.ebuild b/dev-python/datashape/datashape-0.5.4-r1.ebuild
index ba87920acb0..e72858a26c4 100644
--- a/dev-python/datashape/datashape-0.5.4-r1.ebuild
+++ b/dev-python/datashape/datashape-0.5.4-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/blaze/${PN}/archive/${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 )"
diff --git a/dev-python/datashape/datashape-0.5.4.ebuild b/dev-python/datashape/datashape-0.5.4.ebuild
deleted file mode 100644
index d62fc5beed9..00000000000
--- a/dev-python/datashape/datashape-0.5.4.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Language defining a data description protocol"
-HOMEPAGE="https://github.com/blaze/datashape"
-SRC_URI="https://github.com/blaze/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-python/numpy-1.7[${PYTHON_USEDEP}]
- >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
- dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-DEPEND="
- doc? ( ${RDEPEND} dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( ${RDEPEND}
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- )
-"
-
-python_prepare_all() {
- # Prevent un-needed d'loading
- sed -e "s/'sphinx.ext.intersphinx', //" -i docs/source/conf.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- py.test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2020-01-30 21:26 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-26 19:53 [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/ Patrick Lauer
-- strict thread matches above, loose matches on Subject: below --
2020-01-30 21:26 Michał Górny
2020-01-19 19:54 Pacho Ramos
2017-06-28 4:02 Sebastien Fabbro
2017-05-02 11:58 Michał Górny
2017-02-26 18:02 Sebastien Fabbro
2017-01-17 16:22 Agostino Sarubbo
2017-01-10 5:27 Sebastien Fabbro
2016-07-18 9:32 Patrick Lauer
2016-06-29 13:21 Patrick Lauer
2016-03-12 11:40 Patrick Lauer
2016-02-18 12:38 Patrick Lauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox