Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyasn1-modules: pyasn1-modules-0.0.4.ebuild ChangeLog
Date: Wed, 29 Aug 2012 05:35:08
Message-Id: 20120829053458.4E48420AEB@flycatcher.gentoo.org
1 patrick 12/08/29 05:34:58
2
3 Modified: ChangeLog
4 Added: pyasn1-modules-0.0.4.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 dev-python/pyasn1-modules/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyasn1-modules/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyasn1-modules/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyasn1-modules/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyasn1-modules/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 21 May 2012 01:48:29 -0000 1.11
24 +++ ChangeLog 29 Aug 2012 05:34:58 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pyasn1-modules
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyasn1-modules/ChangeLog,v 1.11 2012/05/21 01:48:29 floppym Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyasn1-modules/ChangeLog,v 1.12 2012/08/29 05:34:58 patrick Exp $
30 +
31 +*pyasn1-modules-0.0.4 (29 Aug 2012)
32 +
33 + 29 Aug 2012; Patrick Lauer <patrick@g.o> +pyasn1-modules-0.0.4.ebuild:
34 + Bump
35
36 21 May 2012; Mike Gilbert <floppym@g.o> pyasn1-modules-0.0.3.ebuild:
37 Declare local test.
38 @@ -44,4 +49,3 @@
39 06 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
40 +pyasn1-modules-0.0.1a.ebuild, +metadata.xml:
41 Initial addition. Ebuild written by me.
42 -
43
44
45
46 1.1 dev-python/pyasn1-modules/pyasn1-modules-0.0.4.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyasn1-modules/pyasn1-modules-0.0.4.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyasn1-modules/pyasn1-modules-0.0.4.ebuild?rev=1.1&content-type=text/plain
50
51 Index: pyasn1-modules-0.0.4.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyasn1-modules/pyasn1-modules-0.0.4.ebuild,v 1.1 2012/08/29 05:34:58 patrick Exp $
56
57 EAPI="4"
58 SUPPORT_PYTHON_ABIS="1"
59 RESTRICT_PYTHON_ABIS="*-jython"
60
61 inherit distutils
62
63 DESCRIPTION="pyasn1 modules"
64 HOMEPAGE="http://pyasn1.sourceforge.net/ http://pypi.python.org/pypi/pyasn1-modules"
65 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
66
67 LICENSE="BSD"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
70 IUSE=""
71
72 RDEPEND="dev-python/pyasn1"
73 DEPEND="${RDEPEND}
74 dev-python/setuptools"
75
76 DOCS="CHANGES README"
77 PYTHON_MODNAME="pyasn1_modules"
78
79 src_test() {
80 echoit() { echo "$@"; "$@"; }
81 testing() {
82 local exit_status=0 test
83 for test in test/*.sh; do
84 PATH="${S}/tools:${PATH}" PYTHONPATH="build-${PYTHON_ABI}/lib" \
85 echoit sh "${test}" || exit_status=1
86 done
87 return ${exit_status}
88 }
89 python_execute_function testing
90 }
91
92 src_install() {
93 distutils_src_install
94
95 insinto /usr/share/doc/${PF}/tools
96 doins tools/* || die "doins failed"
97 }