diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-03-31 19:39:32 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-03-31 19:39:32 +0000 |
commit | e99f8927199afe1e046d9b8f45215e4936725360 (patch) | |
tree | b5e03aed598eb212550059720cb707a50a477a83 /dev-python/certifi | |
parent | Make cython wrapper respect EPYTHON. Ported from Progress. (diff) | |
download | gentoo-2-e99f8927199afe1e046d9b8f45215e4936725360.tar.gz gentoo-2-e99f8927199afe1e046d9b8f45215e4936725360.tar.bz2 gentoo-2-e99f8927199afe1e046d9b8f45215e4936725360.zip |
Call python_execute_function -q. Remove old.
(Portage version: 2.2.0_alpha96/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/certifi')
-rw-r--r-- | dev-python/certifi/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/certifi/certifi-0.0.6.ebuild | 31 | ||||
-rw-r--r-- | dev-python/certifi/certifi-0.0.8.ebuild | 4 |
3 files changed, 7 insertions, 34 deletions
diff --git a/dev-python/certifi/ChangeLog b/dev-python/certifi/ChangeLog index 7603eb5b40eb..0e961220bda7 100644 --- a/dev-python/certifi/ChangeLog +++ b/dev-python/certifi/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/certifi # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/certifi/ChangeLog,v 1.2 2012/02/27 05:05:43 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/certifi/ChangeLog,v 1.3 2012/03/31 19:39:32 floppym Exp $ + + 31 Mar 2012; Mike Gilbert <floppym@gentoo.org> -certifi-0.0.6.ebuild, + certifi-0.0.8.ebuild: + Call python_execute_function -q. Remove old. *certifi-0.0.8 (27 Feb 2012) diff --git a/dev-python/certifi/certifi-0.0.6.ebuild b/dev-python/certifi/certifi-0.0.6.ebuild deleted file mode 100644 index 69518335980b..000000000000 --- a/dev-python/certifi/certifi-0.0.6.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/certifi/certifi-0.0.6.ebuild,v 1.1 2012/01/02 06:56:38 floppym Exp $ - -EAPI="4" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" - -inherit distutils - -DESCRIPTION="SSL root certificate bundle" -HOMEPAGE="http://python-requests.org/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="app-misc/ca-certificates" - -src_install() { - distutils_src_install - installing() { - # Overwrite bundled certificates with a symlink. - dosym "${EPREFIX}/etc/ssl/certs/ca-certificates.crt" \ - "$(python_get_sitedir -b)/certifi/cacert.pem" - } - python_execute_function installing -} diff --git a/dev-python/certifi/certifi-0.0.8.ebuild b/dev-python/certifi/certifi-0.0.8.ebuild index 3937383883bf..07b395c40ffc 100644 --- a/dev-python/certifi/certifi-0.0.8.ebuild +++ b/dev-python/certifi/certifi-0.0.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/certifi/certifi-0.0.8.ebuild,v 1.1 2012/02/27 05:05:43 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/certifi/certifi-0.0.8.ebuild,v 1.2 2012/03/31 19:39:32 floppym Exp $ EAPI="4" SUPPORT_PYTHON_ABIS="1" @@ -25,5 +25,5 @@ src_install() { dosym "${EPREFIX}/etc/ssl/certs/ca-certificates.crt" \ "$(python_get_sitedir -b)/certifi/cacert.pem" } - python_execute_function installing + python_execute_function -q installing } |