diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-02-11 08:22:16 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-02-11 08:54:06 +0100 |
commit | cf678e9093cc63840ee26ab6398c5033b61c3b05 (patch) | |
tree | 9c61d2ba62c80362f755c5d0bb251556bc5e7743 | |
parent | sys-kernel/raspberrypi-sources: drop non-lts 3.19.9999 (diff) | |
download | gentoo-cf678e9093cc63840ee26ab6398c5033b61c3b05.tar.gz gentoo-cf678e9093cc63840ee26ab6398c5033b61c3b05.tar.bz2 gentoo-cf678e9093cc63840ee26ab6398c5033b61c3b05.zip |
dev-python/git-python: Version Bump
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
-rw-r--r-- | dev-python/git-python/Manifest | 1 | ||||
-rw-r--r-- | dev-python/git-python/git-python-1.0.2.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/dev-python/git-python/Manifest b/dev-python/git-python/Manifest index 04f1338a1ac0..c84a3dd5ac0e 100644 --- a/dev-python/git-python/Manifest +++ b/dev-python/git-python/Manifest @@ -1,3 +1,4 @@ DIST GitPython-0.3.6.tar.gz 353639 SHA256 f3f42ca085eedbd3a9956b5e639de58bbe77a119f6b3d5c3af27669a2322c4a9 SHA512 cfa70004c42580b858a030eb1b46c9827e33b4dbc5477934bf08809e001568a7314e21caacb36743e2b3575be005b4cf9d831fc26e9cbe1964c2808da222a161 WHIRLPOOL afee46f324d22de6ee1b5d1525a17e68e6fa84ef851cf4d44e4aa6f71ee55d26421716559ba446706b12afb45a692cd7b2c27659a58bcdd28f09063ff05961e0 DIST GitPython-1.0.0.tar.gz 354662 SHA256 c1b3e6fdd209040b6b1cb32ecbff989eeb2fb31b4e7078c3342d71ae8ef7352b SHA512 02d6ca44c930cabd9aa7344ae2f97d201e1840cf22b6083e949f9f374113558b1d7ca88f2d5a4691e63d71da5e54418ef7b8807adb2dfcf90d843fe2d588b3f9 WHIRLPOOL 1623ffabe1bd9de7a71890e3794b45b5871ef519d2b7581f881b4df4e54dc529e5e75bd7835161900a4307ffabfa014f7e64dbe1cee9502b70821691c9853476 DIST GitPython-1.0.1.tar.gz 355108 SHA256 9c88c17bbcae2a445ff64024ef13526224f70e35e38c33416be5ceb56ca7f760 SHA512 63fc061f0e045b11adf20ab291f9d614028d76fb44c6b0910193f6a9f4a5f9bae070527fa2ca06b234da12b7cd545194a7f5e912f4e09370bd41f81552c3160f WHIRLPOOL f166834a746d5e2a4888219aa86f897f2713dbcc94dd1f2444a3ffc1b292bb2ae0b83df51aebd65ef45b942ff6d48ebb08b26796818512af6fcafded90398d4e +DIST GitPython-1.0.2.tar.gz 387615 SHA256 85de72556781480a38897a77de5b458ae3838b0fd589593679a1b5f34d181d84 SHA512 faff50d5272158f1d05d932e7827c05272f9a28772aabbcabd631b735bb4d8306d2861d13c327d02a4c554bd9a9902c473fb282318036405497dd8bf0fcc51a8 WHIRLPOOL c12e850114d101faa673d4d87e6885b1d7cd55544d335e08d4579c160e4d8ef488dd09359cfbd9a39e11f4555b8cb3cd2bfec214c95883b5a83565ad1e28b403 diff --git a/dev-python/git-python/git-python-1.0.2.ebuild b/dev-python/git-python/git-python-1.0.2.ebuild new file mode 100644 index 000000000000..e7daa4265be0 --- /dev/null +++ b/dev-python/git-python/git-python-1.0.2.ebuild @@ -0,0 +1,40 @@ +# 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,4,5}} ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +MY_PN="GitPython" +MY_PV="${PV/_rc/.RC}" +MY_P="${MY_PN}-${MY_PV}" + +DESCRIPTION="Library used to interact with Git repositories" +HOMEPAGE="http://gitorious.org/git-python https://pypi.python.org/pypi/GitPython" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +# Tests dont make sense without a git repo +RESTRICT="test" + +RDEPEND=" + dev-vcs/git + >=dev-python/gitdb-0.6.4[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + )" +# $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7 pypy) +# is the correct entry for mock, however while RESTRICT="test" +# there is little point in setting it since it is inactive +S="${WORKDIR}/${MY_P}" |