Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/munkres: munkres-1.0.5.4-r1.ebuild ChangeLog munkres-1.0.5.4.ebuild
Date: Wed, 30 May 2012 12:44:42
Message-Id: 20120530124432.C7E612004B@flycatcher.gentoo.org
1 xarthisius 12/05/30 12:44:32
2
3 Modified: ChangeLog
4 Added: munkres-1.0.5.4-r1.ebuild
5 Removed: munkres-1.0.5.4.ebuild
6 Log:
7 Enable tests, install documentation, drop empty (R)DEPEND
8
9 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.3 dev-python/munkres/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/munkres/ChangeLog?rev=1.3&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/munkres/ChangeLog?rev=1.3&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/munkres/ChangeLog?r1=1.2&r2=1.3
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/munkres/ChangeLog,v
21 retrieving revision 1.2
22 retrieving revision 1.3
23 diff -u -r1.2 -r1.3
24 --- ChangeLog 28 May 2012 23:22:37 -0000 1.2
25 +++ ChangeLog 30 May 2012 12:44:32 -0000 1.3
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/munkres
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/munkres/ChangeLog,v 1.2 2012/05/28 23:22:37 jdhore Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/munkres/ChangeLog,v 1.3 2012/05/30 12:44:32 xarthisius Exp $
31 +
32 +*munkres-1.0.5.4-r1 (30 May 2012)
33 +
34 + 30 May 2012; Kacper Kowalik <xarthisius@g.o>
35 + +munkres-1.0.5.4-r1.ebuild, -munkres-1.0.5.4.ebuild:
36 + Enable tests, install documentation, drop empty (R)DEPEND
37
38 28 May 2012; Jeff Horelick <jdhore@g.o> munkres-1.0.5.4.ebuild:
39 Keyword ~x86.
40
41
42
43 1.1 dev-python/munkres/munkres-1.0.5.4-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/munkres/munkres-1.0.5.4-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/munkres/munkres-1.0.5.4-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: munkres-1.0.5.4-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/munkres/munkres-1.0.5.4-r1.ebuild,v 1.1 2012/05/30 12:44:32 xarthisius Exp $
53
54 EAPI=4
55
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="3.*"
58
59 inherit distutils
60
61 DESCRIPTION="Module implementing munkres algorithm for the Assignment Problem"
62 HOMEPAGE="http://pypi.python.org/pypi/munkres/"
63 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 src_test() {
71 testing() {
72 "$(PYTHON)" ${PN}.py
73 }
74 python_execute_function testing
75 }
76
77 src_install() {
78 distutils_src_install
79 dohtml -r html/
80 }