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: ChangeLog biplist-0.5-r1.ebuild biplist-0.4.ebuild biplist-0.5.ebuild
Date: Wed, 29 May 2013 07:02:52
Message-Id: 20130529070247.AB7FB2171D@flycatcher.gentoo.org
1 idella4 13/05/29 07:02:47
2
3 Modified: ChangeLog
4 Added: biplist-0.5-r1.ebuild
5 Removed: biplist-0.4.ebuild biplist-0.5.ebuild
6 Log:
7 revbump, migrate -> distutils-r1, remove old ebuilds
8
9 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.4 dev-python/biplist/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/biplist/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/biplist/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/biplist/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/biplist/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 13 Nov 2012 10:53:25 -0000 1.3
25 +++ ChangeLog 29 May 2013 07:02:47 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/biplist
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/biplist/ChangeLog,v 1.3 2012/11/13 10:53:25 idella4 Exp $
30 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/biplist/ChangeLog,v 1.4 2013/05/29 07:02:47 idella4 Exp $
32 +
33 +*biplist-0.5-r1 (29 May 2013)
34 +
35 + 29 May 2013; Ian Delaney <idella4@g.o> +biplist-0.5-r1.ebuild,
36 + -biplist-0.4.ebuild:
37 + revbump, migrate -> distutils-r1, remove old ebuilds
38
39 14 Nov 2012; Ian Delaney <idella4@g.o> metadata.xml:
40 Updating maintainer, metadata.xml
41
42
43
44 1.1 dev-python/biplist/biplist-0.5-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/biplist/biplist-0.5-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/biplist/biplist-0.5-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: biplist-0.5-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2013 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.5-r1.ebuild,v 1.1 2013/05/29 07:02:47 idella4 Exp $
54
55 EAPI=5
56 PYTHON_COMPAT=( python{2_6,2_6,2_7,3_2,3_3} )
57 #DISTUTILS_SRC_TEST=nosetests
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="${RDEPEND}
71 dev-python/setuptools[${PYTHON_USEDEP}]
72 test? ( dev-python/nose[${PYTHON_USEDEP}]
73 dev-python/coverage[${PYTHON_USEDEP}] )"
74
75 python_test() {
76 # https://github.com/wooster/biplist/issues/5
77 nosetests || die "Tests failed under ${EPYTHON}"
78 }