Gentoo Archives: gentoo-commits

From: "Brian Dolbec (dolsen)" <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/ssl-fetch: ssl-fetch-0.2.ebuild ChangeLog ssl-fetch-0.1.ebuild
Date: Thu, 29 May 2014 16:19:33
Message-Id: 20140529161929.548622004E@flycatcher.gentoo.org
1 dolsen 14/05/29 16:19:29
2
3 Modified: ChangeLog
4 Added: ssl-fetch-0.2.ebuild
5 Removed: ssl-fetch-0.1.ebuild
6 Log:
7 version bump
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x65E309F2189DB0B8)
10
11 Revision Changes Path
12 1.7 dev-python/ssl-fetch/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/ssl-fetch/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 15 May 2014 20:02:45 -0000 1.6
25 +++ ChangeLog 29 May 2014 16:19:28 -0000 1.7
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/ssl-fetch
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ssl-fetch/ChangeLog,v 1.6 2014/05/15 20:02:45 maekke Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ssl-fetch/ChangeLog,v 1.7 2014/05/29 16:19:28 dolsen Exp $
31 +
32 +*ssl-fetch-0.2 (29 May 2014)
33 +
34 + 29 May 2014; Brian Dolbec <dolsen@g.o> -ssl-fetch-0.1.ebuild,
35 + +ssl-fetch-0.2.ebuild:
36 + Version bump, includes bugfixes and API changes.
37
38 15 May 2014; Markus Meier <maekke@g.o> ssl-fetch-0.1.ebuild:
39 add ~arm, bug #509628
40
41
42
43 1.1 dev-python/ssl-fetch/ssl-fetch-0.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ssl-fetch-0.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ssl-fetch-0.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ssl-fetch-0.2.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/ssl-fetch/ssl-fetch-0.2.ebuild,v 1.1 2014/05/29 16:19:28 dolsen Exp $
53
54 EAPI="5"
55
56 PYTHON_COMPAT=(python{2_7,3_3,3_4})
57
58 inherit distutils-r1
59
60 DESCRIPTION="A small convinience library for fetching files securely"
61 HOMEPAGE="https://github.com/dol-sen/ssl-fetch"
62 SRC_URI="http://dev.gentoo.org/~dolsen/releases/ssl-fetch/${P}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 IUSE=""
67
68 KEYWORDS="~amd64 ~arm ~hppa ~x86"
69
70 DEPEND=""
71
72 RDEPEND="${DEPEND}
73 >=dev-python/requests-1.2.1[${PYTHON_USEDEP}]
74 python_targets_python2_7? (
75 dev-python/ndg-httpsclient[python_targets_python2_7]
76 dev-python/pyasn1[python_targets_python2_7]
77 >=dev-python/pyopenssl-0.13[python_targets_python2_7]
78 )
79 "
80
81 pkg_postinst() {
82 einfo
83 einfo "This is beta software."
84 einfo "The APIs it installs should be considered unstable"
85 einfo "and are subject to change in these early versions."
86 einfo
87 einfo "Please file any enhancement requests, or bugs"
88 einfo "at https://github.com/dol-sen/ssl-fetch/issues"
89 einfo "I am also on IRC @ #gentoo-portage, #gentoo-keys,... of the freenode network"
90 einfo
91 }