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/isodate: isodate-0.5.0.ebuild ChangeLog
Date: Sat, 03 May 2014 08:18:24
Message-Id: 20140503081821.63A462004C@flycatcher.gentoo.org
1 patrick 14/05/03 08:18:21
2
3 Modified: ChangeLog
4 Added: isodate-0.5.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.25 dev-python/isodate/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/isodate/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/isodate/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/isodate/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/isodate/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 31 Mar 2014 21:22:10 -0000 1.24
24 +++ ChangeLog 3 May 2014 08:18:21 -0000 1.25
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/isodate
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/isodate/ChangeLog,v 1.24 2014/03/31 21:22:10 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/isodate/ChangeLog,v 1.25 2014/05/03 08:18:21 patrick Exp $
30 +
31 +*isodate-0.5.0 (03 May 2014)
32 +
33 + 03 May 2014; Patrick Lauer <patrick@g.o> +isodate-0.5.0.ebuild:
34 + Bump
35
36 31 Mar 2014; Michał Górny <mgorny@g.o> isodate-0.4.9-r1.ebuild:
37 Add support for the new PyPy slotting.
38
39
40
41 1.1 dev-python/isodate/isodate-0.5.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/isodate/isodate-0.5.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/isodate/isodate-0.5.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: isodate-0.5.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/isodate/isodate-0.5.0.ebuild,v 1.1 2014/05/03 08:18:21 patrick Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
55
56 inherit distutils-r1
57
58 DESCRIPTION="ISO 8601 date/time/duration parser and formater"
59 HOMEPAGE="http://pypi.python.org/pypi/isodate"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
65 IUSE=""
66
67 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
68
69 DOCS=( CHANGES.txt README.rst TODO.txt )
70
71 python_test() {
72 local test
73 pushd "${BUILD_DIR}"/lib/
74 for test in ${PN}/tests/test_*.py
75 do
76 if ! "${PYTHON}" $test; then
77 die "Test $test failed under ${EPYTHON}"
78 fi
79 done
80 # Give some order to the output salad
81 einfo "Testsuite passed under ${EPYTHON}";einfo ""
82 }