diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-05-23 00:05:24 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-05-23 00:05:24 +0000 |
commit | 44992501a92c5c1e8104f982e15d1c10e39335a1 (patch) | |
tree | b7e38470065e668a0c2a6ace8433db1091333dd4 /dev-python/pygit2 | |
parent | Version bump; remove old. (diff) | |
download | gentoo-2-44992501a92c5c1e8104f982e15d1c10e39335a1.tar.gz gentoo-2-44992501a92c5c1e8104f982e15d1c10e39335a1.tar.bz2 gentoo-2-44992501a92c5c1e8104f982e15d1c10e39335a1.zip |
Version bump (bug #416379).
(Portage version: 2.2.0_alpha105/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pygit2')
-rw-r--r-- | dev-python/pygit2/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pygit2/pygit2-0.16.2.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-python/pygit2/ChangeLog b/dev-python/pygit2/ChangeLog index c1f48de83dd8..1ba2afe9cdc3 100644 --- a/dev-python/pygit2/ChangeLog +++ b/dev-python/pygit2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pygit2 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygit2/ChangeLog,v 1.7 2012/03/31 22:28:15 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygit2/ChangeLog,v 1.8 2012/05/23 00:05:24 radhermit Exp $ + +*pygit2-0.16.2 (23 May 2012) + + 23 May 2012; Tim Harder <radhermit@gentoo.org> +pygit2-0.16.2.ebuild: + Version bump (bug #416379). *pygit2-0.16.1 (31 Mar 2012) diff --git a/dev-python/pygit2/pygit2-0.16.2.ebuild b/dev-python/pygit2/pygit2-0.16.2.ebuild new file mode 100644 index 000000000000..76e9fe300c08 --- /dev/null +++ b/dev-python/pygit2/pygit2-0.16.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygit2/pygit2-0.16.2.ebuild,v 1.1 2012/05/23 00:05:24 radhermit Exp $ + +EAPI="4" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.5" +DISTUTILS_SRC_TEST="setup.py" + +inherit distutils + +DESCRIPTION="Python bindings for libgit2" +HOMEPAGE="https://github.com/libgit2/pygit2" +SRC_URI="https://github.com/libgit2/${PN}/tarball/v${PV} -> ${P}.tar.gz" + +LICENSE="GPL-2-with-linking-exception" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="=dev-libs/libgit2-0.16* + dev-libs/openssl + sys-libs/zlib" +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + mv *-${PN}-* "${S}" +} |