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-1.1.ebuild ChangeLog
Date: Mon, 28 Oct 2013 07:03:37
Message-Id: 20131028070329.8AC1420047@flycatcher.gentoo.org
1 patrick 13/10/28 07:03:29
2
3 Modified: ChangeLog
4 Added: pycountry-1.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.21 dev-python/pycountry/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pycountry/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 12 Sep 2013 06:13:30 -0000 1.20
24 +++ ChangeLog 28 Oct 2013 07:03:29 -0000 1.21
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.20 2013/09/12 06:13:30 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycountry/ChangeLog,v 1.21 2013/10/28 07:03:29 patrick Exp $
30 +
31 +*pycountry-1.1 (28 Oct 2013)
32 +
33 + 28 Oct 2013; Patrick Lauer <patrick@g.o> +pycountry-1.1.ebuild:
34 + Bump
35
36 *pycountry-1.0 (12 Sep 2013)
37
38
39
40
41 1.1 dev-python/pycountry/pycountry-1.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/pycountry-1.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycountry/pycountry-1.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pycountry-1.1.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-1.1.ebuild,v 1.1 2013/10/28 07:03:29 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 }