diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-02-04 21:09:34 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-02-04 21:09:34 +0000 |
commit | f825d588399a7e3167dc33064a86ebc8e6bce410 (patch) | |
tree | 02d23fa656ed5e0ee68fb1b5d5aecf56972d741f /dev-python/python-gnutls | |
parent | Marked ~hppa (bug #298502). (diff) | |
download | historical-f825d588399a7e3167dc33064a86ebc8e6bce410.tar.gz historical-f825d588399a7e3167dc33064a86ebc8e6bce410.tar.bz2 historical-f825d588399a7e3167dc33064a86ebc8e6bce410.zip |
Version bump.
Package-Manager: portage-15321-svn/cvs/Linux x86_64
Diffstat (limited to 'dev-python/python-gnutls')
-rw-r--r-- | dev-python/python-gnutls/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/python-gnutls/python-gnutls-1.2.0.ebuild | 32 |
2 files changed, 40 insertions, 2 deletions
diff --git a/dev-python/python-gnutls/ChangeLog b/dev-python/python-gnutls/ChangeLog index ec5d5b6d3f34..4fae8e5047ca 100644 --- a/dev-python/python-gnutls/ChangeLog +++ b/dev-python/python-gnutls/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/python-gnutls -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-gnutls/ChangeLog,v 1.3 2009/09/04 18:20:04 patrick Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-gnutls/ChangeLog,v 1.4 2010/02/04 21:05:15 arfrever Exp $ + +*python-gnutls-1.2.0 (04 Feb 2010) + + 04 Feb 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +python-gnutls-1.2.0.ebuild: + Version bump. 04 Sep 2009; Patrick Lauer <patrick@gentoo.org> -python-gnutls-1.1.8.ebuild: diff --git a/dev-python/python-gnutls/python-gnutls-1.2.0.ebuild b/dev-python/python-gnutls/python-gnutls-1.2.0.ebuild new file mode 100644 index 000000000000..0d76eb1cb7f7 --- /dev/null +++ b/dev-python/python-gnutls/python-gnutls-1.2.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-gnutls/python-gnutls-1.2.0.ebuild,v 1.1 2010/02/04 21:05:15 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="Python bindings for GnuTLS" +HOMEPAGE="http://pypi.python.org/pypi/python-gnutls http://ag-projects.com/" +SRC_URI="http://pypi.python.org/packages/source/p/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +DEPEND="net-libs/gnutls" +RDEPEND="${DEPEND}" +RESTRICT_PYTHON_ABIS="3.*" + +PYTHON_MODNAME="gnutls" + +src_install() { + distutils_src_install + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |