diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-04-01 07:57:23 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-04-01 07:57:23 +0000 |
commit | 9180430b0d4525ba85a45051a70bad42d7b62fad (patch) | |
tree | b56ac938ddf7193917695eb24d9fd08816ae01e0 /dev-python/PyGithub | |
parent | Add python[threads] to dep to avoid build failure (diff) | |
download | gentoo-2-9180430b0d4525ba85a45051a70bad42d7b62fad.tar.gz gentoo-2-9180430b0d4525ba85a45051a70bad42d7b62fad.tar.bz2 gentoo-2-9180430b0d4525ba85a45051a70bad42d7b62fad.zip |
Version bump, add python-3.3 support since tests are now fixed with it.
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/PyGithub')
-rw-r--r-- | dev-python/PyGithub/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/PyGithub/PyGithub-1.13.1.ebuild | 23 |
2 files changed, 29 insertions, 1 deletions
diff --git a/dev-python/PyGithub/ChangeLog b/dev-python/PyGithub/ChangeLog index 4fff638833ed..c1ac25d4051f 100644 --- a/dev-python/PyGithub/ChangeLog +++ b/dev-python/PyGithub/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/PyGithub # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/PyGithub/ChangeLog,v 1.6 2013/03/06 03:36:05 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/PyGithub/ChangeLog,v 1.7 2013/04/01 07:57:23 radhermit Exp $ + +*PyGithub-1.13.1 (01 Apr 2013) + + 01 Apr 2013; Tim Harder <radhermit@gentoo.org> +PyGithub-1.13.1.ebuild: + Version bump, add python-3.3 support since tests are now fixed with it. *PyGithub-1.12.2 (06 Mar 2013) diff --git a/dev-python/PyGithub/PyGithub-1.13.1.ebuild b/dev-python/PyGithub/PyGithub-1.13.1.ebuild new file mode 100644 index 000000000000..ee19b877a80c --- /dev/null +++ b/dev-python/PyGithub/PyGithub-1.13.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/PyGithub/PyGithub-1.13.1.ebuild,v 1.1 2013/04/01 07:57:23 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} ) + +inherit distutils-r1 + +DESCRIPTION="Python library to access the Github API v3" +HOMEPAGE="http://vincent-jacques.net/PyGithub/" +# Use github since pypi is missing test data +SRC_URI="https://github.com/jacquev6/PyGithub/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + esetup.py test +} |