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: metadata.xml ChangeLog ssl-fetch-9999.ebuild ssl-fetch-0.1.ebuild
Date: Sun, 02 Mar 2014 05:42:55
Message-Id: 20140302054249.713DD2004C@flycatcher.gentoo.org
1 dolsen 14/03/02 05:42:49
2
3 Added: metadata.xml ChangeLog ssl-fetch-9999.ebuild
4 ssl-fetch-0.1.ebuild
5 Log:
6 New package and initial release.
7
8 (Portage version: 2.2.8_p51/cvs/Linux x86_64, signed Manifest commit with key 0x65E309F2189DB0B8)
9
10 Revision Changes Path
11 1.1 dev-python/ssl-fetch/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>tools-portage</herd>
22 <maintainer>
23 <email>dolsen@g.o</email>
24 <name>Brian Dolbec</name>
25 </maintainer>
26 </pkgmetadata>
27
28
29
30 1.1 dev-python/ssl-fetch/ChangeLog
31
32 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ChangeLog?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ChangeLog?rev=1.1&content-type=text/plain
34
35 Index: ChangeLog
36 ===================================================================
37 # ChangeLog for dev-python/ssl-fetch
38 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
39 # $Header: /var/cvsroot/gentoo-x86/dev-python/ssl-fetch/ChangeLog,v 1.1 2014/03/02 05:42:49 dolsen Exp $
40
41 *ssl-fetch-9999 (02 Mar 2014)
42 *ssl-fetch-0.1 (02 Mar 2014)
43
44 02 Mar 2014; Brian Dolbec <dolsen@g.o> +ssl-fetch-0.1.ebuild,
45 +ssl-fetch-9999.ebuild, +metadata.xml:
46 New package, and initial release.
47
48
49
50
51 1.1 dev-python/ssl-fetch/ssl-fetch-9999.ebuild
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ssl-fetch-9999.ebuild?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ssl-fetch-9999.ebuild?rev=1.1&content-type=text/plain
55
56 Index: ssl-fetch-9999.ebuild
57 ===================================================================
58 # Copyright 1999-2014 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 # $Header: /var/cvsroot/gentoo-x86/dev-python/ssl-fetch/ssl-fetch-9999.ebuild,v 1.1 2014/03/02 05:42:49 dolsen Exp $
61
62 EAPI="5"
63
64 PYTHON_COMPAT=(python{2_6,2_7,3_2,3_3})
65
66 EGIT_BRANCH="master"
67
68 inherit distutils-r1 python-r1 git-2
69
70 EGIT_REPO_URI="git://github.com/dol-sen/ssl-fetch.git"
71
72 DESCRIPTION="A small convinience library for fetching files securely"
73 HOMEPAGE="https://github.com/dol-sen/ssl-fetch"
74 SRC_URI=""
75
76 LICENSE="GPL-2"
77 SLOT="0"
78 IUSE=""
79
80 KEYWORDS=""
81
82 DEPEND=""
83
84 # requests dropped py-3.2 support in >=2.2.0
85 RDEPEND="${DEPEND}
86 >=dev-python/requests-1.2.1
87 python_targets_python3_2? ( <=dev-python/requests-2.1.0 )
88 python_targets_python2_6? (
89 dev-python/ndg-httpsclient[python_targets_python2_6]
90 dev-python/pyasn1[python_targets_python2_6]
91 >=dev-python/pyopenssl-0.13[python_targets_python2_6]
92 )
93 python_targets_python2_7? (
94 dev-python/ndg-httpsclient[python_targets_python2_7]
95 dev-python/pyasn1[python_targets_python2_7]
96 >=dev-python/pyopenssl-0.13[python_targets_python2_7]
97 )
98 "
99
100 python_install_all() {
101 distutils-r1_python_install_all
102 }
103
104 pkg_postinst() {
105 einfo
106 einfo "This is experimental software."
107 einfo "The APIs it installs should be considered unstable"
108 einfo "and are subject to change."
109 einfo
110 einfo "Please file any enhancement requests, or bugs"
111 einfo "at https://github.com/dol-sen/ssl-fetch/issues"
112 einfo "I am also on IRC @ #gentoo-portage, #gentoo-keys,... of the freenode network"
113 einfo
114 }
115
116
117
118 1.1 dev-python/ssl-fetch/ssl-fetch-0.1.ebuild
119
120 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ssl-fetch-0.1.ebuild?rev=1.1&view=markup
121 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ssl-fetch/ssl-fetch-0.1.ebuild?rev=1.1&content-type=text/plain
122
123 Index: ssl-fetch-0.1.ebuild
124 ===================================================================
125 # Copyright 1999-2014 Gentoo Foundation
126 # Distributed under the terms of the GNU General Public License v2
127 # $Header: /var/cvsroot/gentoo-x86/dev-python/ssl-fetch/ssl-fetch-0.1.ebuild,v 1.1 2014/03/02 05:42:49 dolsen Exp $
128
129 EAPI="5"
130
131 PYTHON_COMPAT=(python{2_7,3_2,3_3})
132
133 inherit distutils-r1 python-r1
134
135 DESCRIPTION="A small convinience library for fetching files securely"
136 HOMEPAGE="https://github.com/dol-sen/ssl-fetch"
137 SRC_URI="http://dev.gentoo.org/~dolsen/releases/ssl-fetch/${P}.tar.gz"
138
139 LICENSE="GPL-2"
140 SLOT="0"
141 IUSE=""
142
143 KEYWORDS="~amd64 ~x86"
144
145 DEPEND=""
146
147 # requests dropped py-3.2 support in >=2.2.0
148 RDEPEND="${DEPEND}
149 >=dev-python/requests-1.2.1
150 python_targets_python3_2? ( <=dev-python/requests-2.1.0 )
151 python_targets_python2_7? (
152 dev-python/ndg-httpsclient[python_targets_python2_7]
153 dev-python/pyasn1[python_targets_python2_7]
154 >=dev-python/pyopenssl-0.13[python_targets_python2_7]
155 )
156 "
157
158 python_install_all() {
159 distutils-r1_python_install_all
160 }
161
162 pkg_postinst() {
163 einfo
164 einfo "This is beta software."
165 einfo "The APIs it installs should be considered unstable"
166 einfo "and are subject to change in these early versions."
167 einfo
168 einfo "Please file any enhancement requests, or bugs"
169 einfo "at https://github.com/dol-sen/ssl-fetch/issues"
170 einfo "I am also on IRC @ #gentoo-portage, #gentoo-keys,... of the freenode network"
171 einfo
172 }