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/pycountry: pycountry-0.19.ebuild ChangeLog
Date: Mon, 02 Sep 2013 03:33:41
Message-Id: 20130902033333.816142004C@flycatcher.gentoo.org
1 patrick 13/09/02 03:33:33
2
3 Modified: ChangeLog
4 Added: pycountry-0.19.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.18 dev-python/pycountry/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pycountry/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 10 Aug 2013 09:48:06 -0000 1.17
24 +++ ChangeLog 2 Sep 2013 03:33:33 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pycountry
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycountry/ChangeLog,v 1.17 2013/08/10 09:48:06 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycountry/ChangeLog,v 1.18 2013/09/02 03:33:33 patrick Exp $
30 +
31 +*pycountry-0.19 (02 Sep 2013)
32 +
33 + 02 Sep 2013; Patrick Lauer <patrick@g.o> +pycountry-0.19.ebuild:
34 + Bump
35
36 *pycountry-0.18 (10 Aug 2013)
37
38
39
40
41 1.1 dev-python/pycountry/pycountry-0.19.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/pycountry-0.19.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/pycountry-0.19.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pycountry-0.19.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pycountry/pycountry-0.19.ebuild,v 1.1 2013/09/02 03:33:33 patrick Exp $
51
52 EAPI=5
53 # pypy pennding actioning of bug filed upstream
54 PYTHON_COMPAT=( python{2_6,2_7,3_3} )
55
56 inherit distutils-r1
57
58 DESCRIPTION="ISO country, subdivision, language, currency and script definitions and their translations"
59 HOMEPAGE="http://pypi.python.org/pypi/pycountry"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="test"
66
67 DEPEND="app-arch/unzip
68 dev-python/setuptools[${PYTHON_USEDEP}]
69 test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
70
71 DOCS=( HISTORY.txt README TODO.txt )
72
73 python_test() {
74 # https://bitbucket.org/techtonik/pycountry/issue/8/test_locales-pycountry-015-pypy
75 pushd "${BUILD_DIR}"/lib > /dev/null
76 py.test ${PN}/tests/test_general.py || die
77 }