diff options
author | 2014-04-03 02:00:51 +0000 | |
---|---|---|
committer | 2014-04-03 02:00:51 +0000 | |
commit | 2537185e12a23f9ef02fb821e6c0851b6e0e455f (patch) | |
tree | 53fca64585c342f2974e850476f93d2154583544 /dev-python/PyGithub | |
parent | Version bump, add python3_4 support. (diff) | |
download | gentoo-2-2537185e12a23f9ef02fb821e6c0851b6e0e455f.tar.gz gentoo-2-2537185e12a23f9ef02fb821e6c0851b6e0e455f.tar.bz2 gentoo-2-2537185e12a23f9ef02fb821e6c0851b6e0e455f.zip |
Version bump, add python3_4 support.
(Portage version: 2.2.10/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.24.1.ebuild | 23 |
2 files changed, 29 insertions, 1 deletions
diff --git a/dev-python/PyGithub/ChangeLog b/dev-python/PyGithub/ChangeLog index 01041c03cdee..f31a1cc07d76 100644 --- a/dev-python/PyGithub/ChangeLog +++ b/dev-python/PyGithub/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/PyGithub # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/PyGithub/ChangeLog,v 1.21 2014/03/07 21:48:22 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/PyGithub/ChangeLog,v 1.22 2014/04/03 02:00:51 radhermit Exp $ + +*PyGithub-1.24.1 (03 Apr 2014) + + 03 Apr 2014; Tim Harder <radhermit@gentoo.org> +PyGithub-1.24.1.ebuild: + Version bump, add python3_4 support. *PyGithub-1.24.0 (07 Mar 2014) diff --git a/dev-python/PyGithub/PyGithub-1.24.1.ebuild b/dev-python/PyGithub/PyGithub-1.24.1.ebuild new file mode 100644 index 000000000000..39b9fbf2ab82 --- /dev/null +++ b/dev-python/PyGithub/PyGithub-1.24.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/PyGithub/PyGithub-1.24.1.ebuild,v 1.1 2014/04/03 02:00:51 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="Python library to access the Github API v3" +HOMEPAGE="https://github.com/jacquev6/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 +} |