diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-02-04 21:05:15 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-02-04 21:05:15 +0000 |
commit | 64055e1c0a20ae714f52abee7bfe58fd180119b2 (patch) | |
tree | 3286b6264ad8369a4145ad540902c912f2ed4344 /dev-python/python-gnutls | |
parent | Delete older ebuild. (diff) | |
download | gentoo-2-64055e1c0a20ae714f52abee7bfe58fd180119b2.tar.gz gentoo-2-64055e1c0a20ae714f52abee7bfe58fd180119b2.tar.bz2 gentoo-2-64055e1c0a20ae714f52abee7bfe58fd180119b2.zip |
Version bump.
(Portage version: 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 +} |