commit:     3769af2738d5e70fd8cd6b736007d8f1c181f990
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  1 17:27:35 2017 +0000
Commit:     Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Wed Mar  1 17:36:14 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3769af27

dev-python/sqlalchemy-migrate: bup

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/sqlalchemy-migrate/Manifest             |  1 +
 .../sqlalchemy-migrate-0.11.0.ebuild               | 49 ++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/sqlalchemy-migrate/Manifest 
b/dev-python/sqlalchemy-migrate/Manifest
index 7fbcdaa0097..3c6c632876a 100644
--- a/dev-python/sqlalchemy-migrate/Manifest
+++ b/dev-python/sqlalchemy-migrate/Manifest
@@ -1,4 +1,5 @@
 DIST sqlalchemy-migrate-0.10.0.tar.gz 127356 SHA256 
f83c5cce9c09e5c05527279b7fe1565b32e5353342ff30b24f594fa2e5a7e003 SHA512 
611782f0843cf1d283d41580196cad971c63fee01a612dbcaa47f1bc2de21baf035079d7f7036460d7aeb7f3233a101207eb5084d27b8a85177f9d13cea6603e
 WHIRLPOOL 
3c6cd4ce3a956d60e2771d492531f252eed341323aaf084643d85981524766a2c847b44ae2545aecedad4d5906354f8ab82b5092d4620e0784b3df6d37cafba2
+DIST sqlalchemy-migrate-0.11.0.tar.gz 128299 SHA256 
e68af5e3e0561f629d4eb23d9d0ea77d2649747f2eff37fd29aece74615ca251 SHA512 
5ce76f221cab54ca7436f30a907db4a17e7e338af2cc2d324f06e73bfeda99569584227f925f8a078d01c17761878b865af665a9eb7c1de306cbc0f9b8d7a451
 WHIRLPOOL 
728a8651d6aa4d651b8973f9be836c6b117660b68b74a154f059ec7b7bdb5d54771a097a58ff88d806114d57622e9f9bf30fb0d97ee66f79f8e38ad42f67c0e5
 DIST sqlalchemy-migrate-0.7.2.tar.gz 105862 SHA256 
7f55c768ee26f143fedb11b365a4c57c3bbdb5211e049c7f04b8ae8107c28333 SHA512 
31c56da755ccccdc0aa5eacddcb097a4bd6431ab72a5b964689b0943b50ae4b23e034ae84d8dad4707d4cf9bea5b538e015ff755318685cc17dd82497a4cb4a9
 WHIRLPOOL 
51a058edea0b48db8377a69366f2b30a44e0ed9621d662fa347df3b2a6b9605ee8866ee21e86153c649f5e4e627fef39dc1a68d333c5f334e96be2cf20aceee1
 DIST sqlalchemy-migrate-0.9.2.tar.gz 124175 SHA256 
578fa857615f05f9c73f024147c75019535d3d276ca46f5ec84cc0d606820893 SHA512 
25b218ae97e9a99ad126e4185621bff04da2e9d47d2e47620965974a0b865a9dad161c4d284aaf316f01f0241743d11dd6578942ad6673f2843476fbeaaa4688
 WHIRLPOOL 
ca9952c56dafde150126001aa1b58b43cb95fd751c4d2361037424bca8d5b2080f72f7ed3c5b39a2a504fa30f5f310857331b23d9f244b1106858d068c4cbb49
 DIST sqlalchemy-migrate-0.9.5.tar.gz 125820 SHA256 
d36ae0879b418c4a7011c081a7b05aa9eaf2f2bc38402cdad4ad64369de31d9c SHA512 
2e6e36fe68c5e3c5cb0b2c12c9d00168389461d28606facb34c7d8e6aa2807e4f7c41182140a7b8e933be73ef19af652177687c9af3b9b2e59c318f1e16efb30
 WHIRLPOOL 
eec61bc839c926279452063b31966a6800d0be6bd5bb3654515dcf32a41f0b6dcdf1ac0ef2abdb0d1ccb5bc3f06f4ef272b2b37223a580e9c9b7888c8e8be4a0

diff --git a/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.11.0.ebuild 
b/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.11.0.ebuild
new file mode 100644
index 00000000000..8ffba1e4395
--- /dev/null
+++ b/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.11.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
+
+inherit distutils-r1
+
+DESCRIPTION="SQLAlchemy Schema Migration Tools"
+HOMEPAGE="https://pypi.python.org/pypi/sqlalchemy-migrate";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+IUSE="doc"
+
+CDEPEND=">=dev-python/pbr-1.8.0[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+       ${CDEPEND}
+       doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
+               dev-python/sphinxcontrib-issuetracker[${PYTHON_USEDEP}] )"
+RDEPEND=">=dev-python/sqlalchemy-0.7.8[${PYTHON_USEDEP}]
+               !~dev-python/sqlalchemy-0.9.5[${PYTHON_USEDEP}]
+               dev-python/decorator[${PYTHON_USEDEP}]
+               >=dev-python/six-1.7.0[${PYTHON_USEDEP}]
+               dev-python/python-sqlparse[${PYTHON_USEDEP}]
+               >=dev-python/tempita-0.4[${PYTHON_USEDEP}]"
+# Testsuite requires a missing dep and errors with poor report output
+
+python_prepare_all() {
+       # Prevent d'loading during the doc build via sphinx.ext.intersphinx
+       sed -e "s: 'sphinx.ext.intersphinx',::" -i doc/source/conf.py || die
+
+       distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+       if use doc; then
+               einfo ""; einfo "The build seeks to import modules from an 
installed state of the package"
+               einfo "simply ignore all warnings / errors of failure to import 
module migrate.<module>"; einfo ""
+               emake -C doc/source html || die "Generation of documentation 
failed"
+       fi
+}
+
+python_install_all() {
+       use doc && local HTML_DOCS=( doc/source/_build/html/. )
+       distutils-r1_python_install_all
+}

Reply via email to