From: "Sebastien Fabbro" <bicatali@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/
Date: Tue, 10 Jan 2017 05:27:20 +0000 (UTC) [thread overview]
Message-ID: <1484025999.98389f444eb62f884fdd0f08f735ed1472246ef8.bicatali@gentoo> (raw)
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
+}
next reply other threads:[~2017-01-10 5:27 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-10 5:27 Sebastien Fabbro [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-01-30 21:26 [gentoo-commits] repo/gentoo:master commit in: dev-python/datashape/ 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
2016-07-18 9:32 Patrick Lauer
2016-06-29 13:21 Patrick Lauer
2016-03-12 11:40 Patrick Lauer
2016-02-26 19:53 Patrick Lauer
2016-02-18 12:38 Patrick Lauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1484025999.98389f444eb62f884fdd0f08f735ed1472246ef8.bicatali@gentoo \
--to=bicatali@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox