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: Tue,  1 Mar 2016 20:41:02 +0000 (UTC)	[thread overview]
Message-ID: <1456864798.8b983802a76f0922fe9ca776318bca6ea187d80b.patrick@gentoo> (raw)

commit:     8b983802a76f0922fe9ca776318bca6ea187d80b
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  1 20:31:07 2016 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Tue Mar  1 20:39:58 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b983802

dev-python/odo: Bump

Package-Manager: portage-2.2.27

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

diff --git a/dev-python/odo/Manifest b/dev-python/odo/Manifest
index 1c7acf6..4e04eed 100644
--- a/dev-python/odo/Manifest
+++ b/dev-python/odo/Manifest
@@ -1,3 +1,4 @@
 DIST odo-0.3.2.zip 142291 SHA256 515365ec8b67c7c73303391b8f12107be6a8f4ab983352f548dcb32f8eb175e5 SHA512 c2a0dc2f62225bb394fc5f01476a9159310c798f7ea115ccf6e292d99c666509a0e6ef10c50c47c491ffdc805046152a9d75f90940153fbba4382426a07354b7 WHIRLPOOL 74ee63848e20b8936d6608f240c449bf3d81916bf40be51723fd7f519139474fa74f477bc3e835c9988e8926e12510a5e234817291240a1ae4aeefbb0a8c0cb3
 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

diff --git a/dev-python/odo/odo-0.4.2.ebuild b/dev-python/odo/odo-0.4.2.ebuild
new file mode 100644
index 0000000..dd0574d
--- /dev/null
+++ b/dev-python/odo/odo-0.4.2.ebuild
@@ -0,0 +1,50 @@
+# 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="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-03-01 20:41 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-01 20:41 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-06-12 18:33 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=1456864798.8b983802a76f0922fe9ca776318bca6ea187d80b.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