public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/odo/
Date: Sun, 12 Jun 2016 18:33:01 +0000 (UTC)	[thread overview]
Message-ID: <1465756357.2631df2aa7fa6e8b49893dd7b98962f39d1f0304.patrick@gentoo> (raw)

commit:     2631df2aa7fa6e8b49893dd7b98962f39d1f0304
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 12 18:05:23 2016 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 18:32:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2631df2a

dev-python/odo: Bump

Package-Manager: portage-2.3.0_rc1

 dev-python/odo/Manifest         |  1 +
 dev-python/odo/odo-0.5.0.ebuild | 50 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/odo/Manifest b/dev-python/odo/Manifest
index 4e04eed..7d2d312 100644
--- a/dev-python/odo/Manifest
+++ b/dev-python/odo/Manifest
@@ -2,3 +2,4 @@ DIST odo-0.3.2.zip 142291 SHA256 515365ec8b67c7c73303391b8f12107be6a8f4ab983352f
 DIST odo-0.3.3.tar.gz 109748 SHA256 2499ee86c26c74daa28f21ed235ca331911065950deea5169ebdb7d5dae6ebef SHA512 7c470ea5a24ab5ccc3e72d1cbb4dcd2d370bb5de6ee5d8f1dafb8215db057f920d61470dbba02e5510ee5700fe86f2ae842bbc2bbbedf20e801789998b9c714e WHIRLPOOL 8c5329310a33d890452de8d9156f207ab294b26a68722719f375f2da4bef8fd23b47aee883c4a5c79e0f39cc30eb5eaab544e3f02c34b24062c6c2c2bfc146c3
 DIST odo-0.4.0.tar.gz 129308 SHA256 e9d84a76f9a60bb278810204892348d6883cc1f4c6ce34e362421d75d6271577 SHA512 303462c0d21cc44219256f4f6b3c7ccacbcc2cb880a8c5a864ed8ef5159b365d099a7dc308574d37fd566e1fffa57db615a9e51e42ebcf3e101aee9143c60d20 WHIRLPOOL f935829b1423ab096113ed5042d9e0773024128717d42cade358217daa72d9163a472ad575ca572c91f752f91a85f9a5221420cc25f03d46631f1fdf651f11cd
 DIST odo-0.4.2.tar.gz 129757 SHA256 f793df8b212994ea23ce34e90e2048d0237d3b95ecd066ef2cfbb1c2384b79e9 SHA512 821188e8de1ef1efa3a27454c6787e63d7478ea450ef4cd2af4b35b4f53f085d01625bd2cede2dbe8e999fe86e8b6525928fe5c4834746fe8e4a88486d89ea7a WHIRLPOOL 2a87f34709c1ce09173ba1e2530642e26de38bb2653086331ce3afa63a1151c13d3d7287c04666a171caf8735f15dec2266fac4f8420141bd10df8ef482dd856
+DIST odo-0.5.0.tar.gz 129977 SHA256 e892ffe58e87d6b1c12838c4ab252bd0ae8c0ec43e5179409309ded4929905d6 SHA512 699ec7a3640f319d428854c784bac7747b5c50a8d3f1cad9caa02048a012b51e0da655989b749d84b52b9cb23ad26e6c218aac1d36a0966087238f60874f41f3 WHIRLPOOL 159b9ff4f00ddbef4082e6304dc8176482837f90a711662db77d2656b85b71833d7eae1e3241d64155955f77734ecde41ad3797fa893d775d76dbe8a2f3831c9

diff --git a/dev-python/odo/odo-0.5.0.ebuild b/dev-python/odo/odo-0.5.0.ebuild
new file mode 100644
index 0000000..372e306
--- /dev/null
+++ b/dev-python/odo/odo-0.5.0.ebuild
@@ -0,0 +1,50 @@
+# 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} )
+
+inherit distutils-r1
+
+DESCRIPTION="Data migration in python"
+HOMEPAGE="https://github.com/ContinuumIO/odo"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+DEPEND="app-arch/unzip
+	doc? ( dev-python/docutils )"
+RDEPEND=">=dev-python/datashape-0.4.4[${PYTHON_USEDEP}]
+	>=dev-python/numpy-1.7[${PYTHON_USEDEP}]
+	>=dev-python/pandas-0.15.0[${PYTHON_USEDEP}]
+	dev-python/toolz[${PYTHON_USEDEP}]
+	>=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
+	dev-python/networkx[${PYTHON_USEDEP}]
+	"
+
+python_prepare_all() {
+	sed -e '/.. toctree::/d' -i docs/source/index.rst|| die
+	distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+	if use doc; then
+		pushd docs/source > /dev/null
+		mkdir ../build || die
+		local i;
+		for i in ./*
+		do
+	        	rst2html.py $i > ../build/${i/rst/html} || die
+		done
+		popd > /dev/null
+	fi
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/build/. )
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2016-06-12 18:33 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-12 18:33 Patrick Lauer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-12-29 13:23 [gentoo-commits] repo/gentoo:master commit in: dev-python/odo/ Andreas Sturmlechner
2018-07-21  0:06 Mikle Kolyada
2018-06-24  9:40 Mikle Kolyada
2017-06-28  4:02 Sebastien Fabbro
2017-05-02  8:47 Michał Górny
2017-02-26 18:02 Sebastien Fabbro
2017-01-09 22:36 Aaron Bauman
2016-07-21 13:12 Patrick Lauer
2016-03-01 20:41 Patrick Lauer
2016-01-07 19:51 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=1465756357.2631df2aa7fa6e8b49893dd7b98962f39d1f0304.patrick@gentoo \
    --to=patrick@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