diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-28 22:35:44 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-28 22:35:44 +0000 |
commit | efdb86ce9ebc8a8367a32dc7e3d3e787c0c3ac48 (patch) | |
tree | c26cc0babd152c179c1a39fedf664b39f870f95d /dev-python/httplib2 | |
parent | x86 stable, bug #293850 (diff) | |
download | gentoo-2-efdb86ce9ebc8a8367a32dc7e3d3e787c0c3ac48.tar.gz gentoo-2-efdb86ce9ebc8a8367a32dc7e3d3e787c0c3ac48.tar.bz2 gentoo-2-efdb86ce9ebc8a8367a32dc7e3d3e787c0c3ac48.zip |
Version bump.
(Portage version: 15153-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/httplib2')
-rw-r--r-- | dev-python/httplib2/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/httplib2/httplib2-0.6.0.ebuild | 27 |
2 files changed, 34 insertions, 1 deletions
diff --git a/dev-python/httplib2/ChangeLog b/dev-python/httplib2/ChangeLog index d02070f8c6ee..1f6f1b433764 100644 --- a/dev-python/httplib2/ChangeLog +++ b/dev-python/httplib2/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/httplib2 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v 1.14 2009/10/07 17:36:14 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/ChangeLog,v 1.15 2009/12/28 22:35:44 arfrever Exp $ + +*httplib2-0.6.0 (28 Dec 2009) + + 28 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +httplib2-0.6.0.ebuild: + Version bump. 07 Oct 2009; nixnut <nixnut@gentoo.org> httplib2-0.5.0.ebuild: ppc stable #286968 diff --git a/dev-python/httplib2/httplib2-0.6.0.ebuild b/dev-python/httplib2/httplib2-0.6.0.ebuild new file mode 100644 index 000000000000..b6f0a3c385ac --- /dev/null +++ b/dev-python/httplib2/httplib2-0.6.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/httplib2/httplib2-0.6.0.ebuild,v 1.1 2009/12/28 22:35:44 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="A comprehensive HTTP client library" +HOMEPAGE="http://code.google.com/p/httplib2/ http://pypi.python.org/pypi/httplib2" +SRC_URI="http://httplib2.googlecode.com/files/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_install() { + distutils_src_install + + dodoc README + newdoc python3/README README-python3 +} |