Gentoo Archives: gentoo-commits

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