Gentoo Archives: gentoo-commits

From: "Matt Thode (prometheanfire)" <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/passlib: passlib-1.6.1.ebuild ChangeLog
Date: Tue, 01 Jan 2013 06:22:34
Message-Id: 20130101062220.C9CEA2171D@flycatcher.gentoo.org
1 prometheanfire 13/01/01 06:22:20
2
3 Modified: passlib-1.6.1.ebuild ChangeLog
4 Log:
5 refactor into distutils-r1 and eapi5
6
7 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
8
9 Revision Changes Path
10 1.2 dev-python/passlib/passlib-1.6.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild?r1=1.1&r2=1.2
15
16 Index: passlib-1.6.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- passlib-1.6.1.ebuild 28 Nov 2012 21:48:39 -0000 1.1
23 +++ passlib-1.6.1.ebuild 1 Jan 2013 06:22:20 -0000 1.2
24 @@ -1,10 +1,11 @@
25 -# Copyright 1999-2012 Gentoo Foundation
26 +# Copyright 1999-2013 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v 1.1 2012/11/28 21:48:39 prometheanfire Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/passlib-1.6.1.ebuild,v 1.2 2013/01/01 06:22:20 prometheanfire Exp $
30
31 -EAPI=4
32 +EAPI=5
33 +PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
34
35 -inherit distutils
36 +inherit distutils-r1
37
38 DESCRIPTION="comprehensive password hashing framework supporting over 20
39 schemes"
40 @@ -14,17 +15,19 @@
41 KEYWORDS="~amd64 ~x86"
42 SLOT="0"
43 IUSE="test doc"
44 -DEPEND="dev-python/setuptools
45 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
46 test? ( dev-python/nose )"
47 RDEPEND=""
48
49 -src_install() {
50 - distutils_src_install
51 - if use doc; then
52 - dodoc "${S}"/docs/*
53 - fi
54 +python_test() {
55 + "${PYTHON}" setup.py nosetests || die
56 }
57
58 -src_test() {
59 - PYTHONPATH=. "${python}" setup.py nosetests || die "tests failed"
60 +python_install() {
61 + distutils-r1_python_install
62 + if use doc; then
63 + dodoc "${S}"/docs/*.rst
64 + dodoc "${S}"/docs/requirements.txt
65 + dodoc "${S}"/docs/lib/*.rst
66 + fi
67 }
68
69
70
71 1.2 dev-python/passlib/ChangeLog
72
73 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?rev=1.2&view=markup
74 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?rev=1.2&content-type=text/plain
75 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/passlib/ChangeLog?r1=1.1&r2=1.2
76
77 Index: ChangeLog
78 ===================================================================
79 RCS file: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v
80 retrieving revision 1.1
81 retrieving revision 1.2
82 diff -u -r1.1 -r1.2
83 --- ChangeLog 28 Nov 2012 21:48:39 -0000 1.1
84 +++ ChangeLog 1 Jan 2013 06:22:20 -0000 1.2
85 @@ -1,10 +1,12 @@
86 # ChangeLog for dev-python/passlib
87 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
88 -# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.1 2012/11/28 21:48:39 prometheanfire Exp $
89 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
90 +# $Header: /var/cvsroot/gentoo-x86/dev-python/passlib/ChangeLog,v 1.2 2013/01/01 06:22:20 prometheanfire Exp $
91 +
92 + 01 Jan 2013; Matthew Thode <prometheanfire@g.o> passlib-1.6.1.ebuild:
93 + refactor into distutils-r1 and eapi5
94
95 *passlib-1.6.1 (28 Nov 2012)
96
97 28 Nov 2012; Matthew Thode <prometheanfire@g.o> +passlib-1.6.1.ebuild,
98 +metadata.xml:
99 adding as it is needed for keystone
100 -