Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/biplist: biplist-0.6.ebuild ChangeLog biplist-0.5-r1.ebuild
Date: Tue, 01 Apr 2014 03:05:20
Message-Id: 20140401030509.0F2312005E@flycatcher.gentoo.org
1 idella4 14/04/01 03:05:08
2
3 Modified: ChangeLog
4 Added: biplist-0.6.ebuild
5 Removed: biplist-0.5-r1.ebuild
6 Log:
7 bump; Add pypy support, tidy deps, update test phase, rm old
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.5 dev-python/biplist/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/biplist/ChangeLog?rev=1.5&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/biplist/ChangeLog?rev=1.5&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/biplist/ChangeLog?r1=1.4&r2=1.5
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/biplist/ChangeLog,v
21 retrieving revision 1.4
22 retrieving revision 1.5
23 diff -u -r1.4 -r1.5
24 --- ChangeLog 29 May 2013 07:02:47 -0000 1.4
25 +++ ChangeLog 1 Apr 2014 03:05:08 -0000 1.5
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/biplist
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/biplist/ChangeLog,v 1.4 2013/05/29 07:02:47 idella4 Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/biplist/ChangeLog,v 1.5 2014/04/01 03:05:08 idella4 Exp $
32 +
33 +*biplist-0.6 (01 Apr 2014)
34 +
35 + 01 Apr 2014; Ian Delaney <idella4@g.o> +biplist-0.6.ebuild,
36 + -biplist-0.5-r1.ebuild:
37 + bump; Add pypy support, tidy deps, update test phase, rm old
38
39 *biplist-0.5-r1 (29 May 2013)
40
41
42
43
44 1.1 dev-python/biplist/biplist-0.6.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/biplist/biplist-0.6.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/biplist/biplist-0.6.ebuild?rev=1.1&content-type=text/plain
48
49 Index: biplist-0.6.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-python/biplist/biplist-0.6.ebuild,v 1.1 2014/04/01 03:05:08 idella4 Exp $
54
55 EAPI=5
56 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 pypy )
57
58 inherit distutils-r1
59
60 DESCRIPTION="A binary plist parser/generator for Python"
61 HOMEPAGE="http://pypi.python.org/pypi/biplist/ https://github.com/wooster/biplist"
62 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="test"
65
66 LICENSE="BSD"
67 SLOT="0"
68
69 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
70 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
71 test? ( dev-python/nose[${PYTHON_USEDEP}]
72 dev-python/coverage[${PYTHON_USEDEP}]
73 ${RDEPEND} )"
74
75 python_test() {
76 # https://github.com/wooster/biplist/issues/5; only py3.3
77 if [[ "${EPYTHON}" == 'python3.3' ]]; then
78 nosetests -e testFileRead || die "Tests failed under ${EPYTHON}"
79 else
80 nosetests || die "Tests failed under ${EPYTHON}"
81 fi
82 }