Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/blinker: blinker-1.2-r1.ebuild ChangeLog
Date: Thu, 28 Mar 2013 02:55:47
Message-Id: 20130328025543.A04392171D@flycatcher.gentoo.org
1 floppym 13/03/28 02:55:43
2
3 Modified: ChangeLog
4 Added: blinker-1.2-r1.ebuild
5 Log:
6 Convert to distutils-r1.
7
8 (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
9
10 Revision Changes Path
11 1.3 dev-python/blinker/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blinker/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blinker/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blinker/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/blinker/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 9 Mar 2012 08:23:00 -0000 1.2
24 +++ ChangeLog 28 Mar 2013 02:55:43 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/blinker
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/blinker/ChangeLog,v 1.2 2012/03/09 08:23:00 patrick Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/blinker/ChangeLog,v 1.3 2013/03/28 02:55:43 floppym Exp $
31 +
32 +*blinker-1.2-r1 (28 Mar 2013)
33 +
34 + 28 Mar 2013; Mike Gilbert <floppym@g.o> +blinker-1.2-r1.ebuild:
35 + Convert to distutils-r1.
36
37 *blinker-1.2 (09 Mar 2012)
38
39 @@ -12,4 +17,3 @@
40 12 Feb 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
41 +blinker-1.1.ebuild, +metadata.xml:
42 Initial addition. Ebuild written by me.
43 -
44
45
46
47 1.1 dev-python/blinker/blinker-1.2-r1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blinker/blinker-1.2-r1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blinker/blinker-1.2-r1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: blinker-1.2-r1.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-python/blinker/blinker-1.2-r1.ebuild,v 1.1 2013/03/28 02:55:43 floppym Exp $
57
58 EAPI="5"
59 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
60
61 inherit distutils-r1
62
63 DESCRIPTION="Fast, simple object-to-object and broadcast signaling"
64 HOMEPAGE="http://discorporate.us/projects/Blinker/ http://pypi.python.org/pypi/blinker"
65 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
66
67 LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="doc"
71
72 python_test() {
73 nosetests || die "Testing failed with ${EPYTHON}"
74 }
75
76 python_install_all() {
77 if use doc; then
78 pushd docs/html > /dev/null
79 insinto /usr/share/doc/${PF}/html
80 doins -r [a-z]* _static
81 popd > /dev/null
82 fi
83 }