diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-03-06 03:36:05 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-03-06 03:36:05 +0000 |
commit | ba09a5f563f0882a687dac1174afe8ca9b8d2bf0 (patch) | |
tree | d7f1e224e94ad0fa51d68e4fcb8c32369ac9cb7b /dev-python/PyGithub | |
parent | Switch hardened/linux/mips profiles to 13.0 (diff) | |
download | gentoo-2-ba09a5f563f0882a687dac1174afe8ca9b8d2bf0.tar.gz gentoo-2-ba09a5f563f0882a687dac1174afe8ca9b8d2bf0.tar.bz2 gentoo-2-ba09a5f563f0882a687dac1174afe8ca9b8d2bf0.zip |
Version bump.
(Portage version: 2.2.0_alpha166/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.12.2.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/dev-python/PyGithub/ChangeLog b/dev-python/PyGithub/ChangeLog index 540fb7a45475..4fff638833ed 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.5 2013/02/25 04:23:59 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/PyGithub/ChangeLog,v 1.6 2013/03/06 03:36:05 radhermit Exp $ + +*PyGithub-1.12.2 (06 Mar 2013) + + 06 Mar 2013; Tim Harder <radhermit@gentoo.org> +PyGithub-1.12.2.ebuild: + Version bump. *PyGithub-1.12.1 (25 Feb 2013) diff --git a/dev-python/PyGithub/PyGithub-1.12.2.ebuild b/dev-python/PyGithub/PyGithub-1.12.2.ebuild new file mode 100644 index 000000000000..3842960d1c60 --- /dev/null +++ b/dev-python/PyGithub/PyGithub-1.12.2.ebuild @@ -0,0 +1,24 @@ +# 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.12.2.ebuild,v 1.1 2013/03/06 03:36:05 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2} ) +# TODO(floppym): Investigate test failures with python-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 +} |