Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/cryptography: cryptography-0.4-r2.ebuild ChangeLog
Date: Mon, 23 Jun 2014 15:06:13
Message-Id: 20140623150608.4BB132004E@flycatcher.gentoo.org
1 idella4 14/06/23 15:06:08
2
3 Modified: ChangeLog
4 Added: cryptography-0.4-r2.ebuild
5 Log:
6 revbump; patch required to fix a test failing in pyopenssl, fixes Bug #514418
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.16 dev-python/cryptography/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cryptography/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cryptography/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cryptography/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/cryptography/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 8 Jun 2014 12:16:13 -0000 1.15
24 +++ ChangeLog 23 Jun 2014 15:06:08 -0000 1.16
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/cryptography
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cryptography/ChangeLog,v 1.15 2014/06/08 12:16:13 hattya Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cryptography/ChangeLog,v 1.16 2014/06/23 15:06:08 idella4 Exp $
30 +
31 +*cryptography-0.4-r2 (23 Jun 2014)
32 +
33 + 23 Jun 2014; Ian Delaney <idella4@g.o> +cryptography-0.4-r2.ebuild,
34 + +files/asn1.patch, cryptography-0.4-r1.ebuild:
35 + revbump; patch required to fix a test failing in pyopenssl, fixes Bug #514418
36
37 08 Jun 2014; Akinori Hattori <hattya@g.o> cryptography-0.4-r1.ebuild:
38 keyword ~ia64 wrt bug #503094
39
40
41
42 1.1 dev-python/cryptography/cryptography-0.4-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cryptography/cryptography-0.4-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cryptography/cryptography-0.4-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cryptography-0.4-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/cryptography/cryptography-0.4-r2.ebuild,v 1.1 2014/06/23 15:06:08 idella4 Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Library providing cryptographic recipes and primitives"
59 HOMEPAGE="https://github.com/pyca/cryptography/ https://pypi.python.org/pypi/cryptography/"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="Apache-2.0"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~x86 ~x86-fbsd"
65 IUSE="test"
66
67 RDEPEND="dev-libs/openssl:0
68 >=dev-python/six-1.4.1[${PYTHON_USEDEP}]
69 $(python_gen_cond_dep '>=dev-python/cffi-0.8:=[${PYTHON_USEDEP}]' python*)"
70 DEPEND="${RDEPEND}
71 dev-python/setuptools[${PYTHON_USEDEP}]
72 test? (
73 =dev-python/cryptography-vectors-${PV}[${PYTHON_USEDEP}]
74 dev-python/iso8601[${PYTHON_USEDEP}]
75 dev-python/pretend[${PYTHON_USEDEP}]
76 dev-python/pyasn1[${PYTHON_USEDEP}]
77 dev-python/pytest[${PYTHON_USEDEP}]
78 )"
79
80 DOCS=( AUTHORS.rst CONTRIBUTING.rst README.rst )
81
82 # commit/1e95bc636ffd66451b6097b0a7f55c6a004563b7
83 # Making the name minimal. This must be discarded on release of 0.5
84 PATCHES=( "${FILESDIR}"/asn1.patch )
85
86 python_test() {
87 py.test -v || die "Tests fail with ${EPYTHON}"
88 }