Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pycups: pycups-1.9.55.ebuild ChangeLog pycups-1.9.53.ebuild
Date: Sat, 30 Apr 2011 16:53:26
Message-Id: 20110430165316.BE53320054@flycatcher.gentoo.org
1 scarabeus 11/04/30 16:53:16
2
3 Modified: ChangeLog
4 Added: pycups-1.9.55.ebuild
5 Removed: pycups-1.9.53.ebuild
6 Log:
7 Version bump to latest. Drop older.
8
9 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.29 dev-python/pycups/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/ChangeLog?rev=1.29&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/ChangeLog?rev=1.29&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/ChangeLog?r1=1.28&r2=1.29
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/pycups/ChangeLog,v
21 retrieving revision 1.28
22 retrieving revision 1.29
23 diff -u -r1.28 -r1.29
24 --- ChangeLog 27 Jan 2011 16:38:40 -0000 1.28
25 +++ ChangeLog 30 Apr 2011 16:53:16 -0000 1.29
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/pycups
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/ChangeLog,v 1.28 2011/01/27 16:38:40 arfrever Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/ChangeLog,v 1.29 2011/04/30 16:53:16 scarabeus Exp $
31 +
32 +*pycups-1.9.55 (30 Apr 2011)
33 +
34 + 30 Apr 2011; Tomáš Chvátal <scarabeus@g.o> -pycups-1.9.53.ebuild,
35 + +pycups-1.9.55.ebuild:
36 + Version bump to latest. Drop older.
37
38 27 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
39 pycups-1.9.46.ebuild, pycups-1.9.49.ebuild, pycups-1.9.51.ebuild,
40
41
42
43 1.1 dev-python/pycups/pycups-1.9.55.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/pycups-1.9.55.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycups/pycups-1.9.55.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pycups-1.9.55.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/pycups-1.9.55.ebuild,v 1.1 2011/04/30 16:53:16 scarabeus Exp $
53
54 EAPI="2"
55
56 RESTRICT_PYTHON_ABIS="3.* *-jython"
57 SUPPORT_PYTHON_ABIS="1"
58 inherit distutils flag-o-matic
59
60 DESCRIPTION="Python bindings for the CUPS API"
61 HOMEPAGE="http://cyberelk.net/tim/data/pycups/"
62 SRC_URI="http://cyberelk.net/tim/data/pycups/${P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
66 SLOT="0"
67 IUSE="doc examples"
68
69 RDEPEND="
70 >=net-print/cups-1.4.4
71 "
72 DEPEND="${RDEPEND}
73 doc? ( dev-python/epydoc )
74 "
75
76 src_compile() {
77 append-cflags -DVERSION=\\\"${PV}\\\"
78 distutils_src_compile
79
80 if use doc; then
81 emake doc || die "emake doc failed"
82 fi
83 }
84
85 src_install() {
86 distutils_src_install
87
88 if use doc; then
89 dohtml -r html/ || die "installing html docs failed"
90 fi
91
92 if use examples; then
93 insinto /usr/share/doc/"${P}"
94 doins -r examples/ || die "installing examples failed"
95 fi
96 }