public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/
Date: Fri, 21 Aug 2015 09:35:12 +0000 (UTC)	[thread overview]
Message-ID: <1440149704.160101da2af34dea11ce42d6f9c9bf8fd5faecf3.jlec@gentoo> (raw)

commit:     160101da2af34dea11ce42d6f9c9bf8fd5faecf3
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 21 09:29:02 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Aug 21 09:35:04 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160101da

dev-python/patsy: Version Bump

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/patsy/Manifest           |  1 +
 dev-python/patsy/patsy-0.4.0.ebuild | 47 +++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 31c617b..f95f1a8 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1,3 +1,4 @@
 DIST patsy-0.2.0.tar.gz 315486 SHA256 1d399e504dc7c9e5f35460698dd4ebf098aa215e861ea4f5ded29e98e73740c3 SHA512 4e1028dcab58e2fc938c4f8dec0aeb148fbf7d2430855d8caa844bc19088b66a8ab9b83edc3f3066df41e751f1e0ff6d24478109be562e420da6c84e3f76763f WHIRLPOOL 2da9956373cc9bd2f13d277bcca37467ab8f5b37223f9c6bf6d59b6c69e7c54bdcc70433c990ea4a02aa424c497be08031966963721194af308cda1bb36edb13
 DIST patsy-0.2.1.tar.gz 316115 SHA256 31374ce25275813d8f1c48bdda40bba06f7a16cce7dcdfad73f43a555393d065 SHA512 b7cbd9b224081b2496292b23c134abfdd9decedfda433bc7c289b899003c527184e0ba0f729eca1f3bceceac0c43090d9b611b8b1f593df5ce2a01129fabf9f6 WHIRLPOOL 91b8bc896146e48c272429482d3294a35cbc0a46662e66b913811491b2d89005371dc6eb09f38a4a043e507fba3b359dcf3a1fc61e9bf88c462c8b9ebeb995d9
 DIST patsy-0.3.0.zip 414947 SHA256 a55dd4ca09af4b9608b81f30322beb450510964c022708ab50e83a065ccf15f0 SHA512 e716588372ca5c2cb8923b5a04c11be4911cb44e7af2c82ebf92aba478bd9ec6707bea5abfa11439038a6be7522c80fb5d67d452725669f38bc81bc9a0c1e2e8 WHIRLPOOL c0e82d8f15961d4954245c7abe03973b8f660c58e57962dbb3d0523a6a544d4a922c578f3394d72e00ca5656ed5a552aeab5633317bf52d33fd856e135094c30
+DIST patsy-0.4.0.zip 424027 SHA256 e4f3034f5593f0e2e66701b9bed623ca15c843ce293458a9ea0a0ad64d4a7acd SHA512 a8cbdfcb43cf97116abd00c272f51b1c561c8c01baa81e108d51ff05d29f75f465a92b04c875762324500f4fc2f2018856cc17e313658f0b502769ec9555cfc6 WHIRLPOOL 6e7c0b80c84e71911dcf7ba18601376cd97082937d1ab812e9a484285c27ef54d212875c0a2a0d0361f7cf19de4e263bb72049793a111d0a953777e7f9886f7d

diff --git a/dev-python/patsy/patsy-0.4.0.ebuild b/dev-python/patsy/patsy-0.4.0.ebuild
new file mode 100644
index 0000000..0bb5f9c
--- /dev/null
+++ b/dev-python/patsy/patsy-0.4.0.ebuild
@@ -0,0 +1,47 @@
+# 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="Python module to describe statistical models and design matrices"
+HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	doc? (
+		dev-python/ipython[${PYTHON_USEDEP}]
+		dev-python/matplotlib[${PYTHON_USEDEP}]
+		dev-python/sphinx[${PYTHON_USEDEP}]
+		dev-python/pandas[${PYTHON_USEDEP}]
+		)
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_compile_all() {
+	use doc && emake -C doc html
+}
+
+python_test() {
+	cd "${BUILD_DIR}" || die
+	nosetests -v || die "Testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+	use doc && HTML_DOCS=( doc/_build/html/. )
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2015-08-21  9:35 UTC|newest]

Thread overview: 73+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-21  9:35 Justin Lecher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-11-09 11:49 [gentoo-commits] repo/gentoo:master commit in: dev-python/patsy/ Justin Lecher
2015-11-10 13:23 Agostino Sarubbo
2015-11-11  9:27 Justin Lecher
2017-03-12 12:31 Zac Medico
2019-03-15 22:42 Patrice Clement
2020-01-17  7:47 Michał Górny
2020-01-17  7:47 Michał Górny
2020-01-17  7:47 Michał Górny
2020-03-28 11:36 Michał Górny
2020-04-29  4:12 Patrick McLean
2020-06-12 13:20 Michał Górny
2020-08-18  5:28 Sam James
2020-08-18  5:52 Sam James
2021-08-16 11:46 Marek Szuba
2021-09-06  0:13 Sam James
2021-09-06 23:37 Sam James
2021-09-06 23:42 Sam James
2021-09-26  6:52 Michał Górny
2021-10-02 23:17 Sam James
2021-10-24 21:14 Sam James
2021-10-31 17:58 Sam James
2021-10-31 18:02 Sam James
2021-11-08  6:22 Sam James
2021-11-14 23:51 Sam James
2021-11-18 11:03 Sam James
2021-11-20  6:35 Sam James
2022-06-05  5:36 Michał Górny
2022-10-10  7:43 Arthur Zamarin
2022-10-10  7:43 Arthur Zamarin
2022-10-14 15:09 Andrew Ammerlaan
2022-11-10 19:03 Arthur Zamarin
2022-11-10 19:23 Arthur Zamarin
2022-11-10 19:41 Arthur Zamarin
2022-11-11  4:25 Sam James
2022-11-11  4:27 Sam James
2022-11-11  7:04 Sam James
2022-11-11 12:01 Michał Górny
2022-11-14 15:03 Arthur Zamarin
2022-11-14 15:03 Arthur Zamarin
2023-03-16  4:03 Michał Górny
2023-11-01 17:09 Michał Górny
2023-11-30 14:14 Michał Górny
2023-12-01  5:39 Michał Górny
2023-12-08 19:39 Arthur Zamarin
2023-12-09 16:45 Arthur Zamarin
2023-12-24 17:21 Arthur Zamarin
2023-12-24 17:24 Michał Górny
2023-12-25  7:06 Michał Górny
2024-01-04 11:29 WANG Xuerui
2024-01-05 11:25 Michał Górny
2024-01-18 18:03 Arthur Zamarin
2024-01-18 18:37 Arthur Zamarin
2024-01-18 18:37 Arthur Zamarin
2024-01-18 19:48 Sam James
2024-01-18 19:48 Sam James
2024-01-19  5:10 Michał Górny
2024-01-20 18:35 Arthur Zamarin
2024-01-20 18:47 Arthur Zamarin
2024-01-21  2:44 Sam James
2024-01-21  2:44 Sam James
2024-01-21  2:44 Sam James
2024-01-21  6:21 Michał Górny
2024-06-30  2:52 Michał Górny
2024-07-10 15:33 Michał Górny
2024-07-27  7:13 Arthur Zamarin
2024-07-27  7:35 Arthur Zamarin
2024-07-27  8:34 Arthur Zamarin
2024-07-27  9:08 Arthur Zamarin
2024-07-27  9:08 Arthur Zamarin
2024-07-27 10:06 Michał Górny
2024-11-13  6:55 Michał Górny
2024-11-30 11:49 Michał Górny

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=1440149704.160101da2af34dea11ce42d6f9c9bf8fd5faecf3.jlec@gentoo \
    --to=jlec@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