Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/certifi: certifi-0.0.8.ebuild ChangeLog
Date: Mon, 27 Feb 2012 05:05:54
Message-Id: 20120227050543.8B1832004B@flycatcher.gentoo.org
1 floppym 12/02/27 05:05:43
2
3 Modified: ChangeLog
4 Added: certifi-0.0.8.ebuild
5 Log:
6 Version bump. Support Python 3.
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-python/certifi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/certifi/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/certifi/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/certifi/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/certifi/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 2 Jan 2012 06:56:38 -0000 1.1
24 +++ ChangeLog 27 Feb 2012 05:05:43 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/certifi
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/certifi/ChangeLog,v 1.1 2012/01/02 06:56:38 floppym Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/certifi/ChangeLog,v 1.2 2012/02/27 05:05:43 floppym Exp $
30 +
31 +*certifi-0.0.8 (27 Feb 2012)
32 +
33 + 27 Feb 2012; Mike Gilbert <floppym@g.o> +certifi-0.0.8.ebuild:
34 + Version bump. Support Python 3.
35
36 *certifi-0.0.6 (02 Jan 2012)
37
38
39
40
41 1.1 dev-python/certifi/certifi-0.0.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/certifi/certifi-0.0.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/certifi/certifi-0.0.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: certifi-0.0.8.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/certifi/certifi-0.0.8.ebuild,v 1.1 2012/02/27 05:05:43 floppym Exp $
51
52 EAPI="4"
53 SUPPORT_PYTHON_ABIS="1"
54
55 inherit distutils
56
57 DESCRIPTION="SSL root certificate bundle"
58 HOMEPAGE="http://python-requests.org/"
59 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="ISC"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 RDEPEND="app-misc/ca-certificates"
67
68 src_install() {
69 distutils_src_install
70 installing() {
71 # Overwrite bundled certificates with a symlink.
72 dosym "${EPREFIX}/etc/ssl/certs/ca-certificates.crt" \
73 "$(python_get_sitedir -b)/certifi/cacert.pem"
74 }
75 python_execute_function installing
76 }