Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/kaa-base: ChangeLog kaa-base-0.4.0.ebuild
Date: Sat, 23 Aug 2008 11:49:58
Message-Id: E1KWrcx-0003oR-NA@stork.gentoo.org
1 rbu 08/08/23 11:49:55
2
3 Modified: ChangeLog kaa-base-0.4.0.ebuild
4 Log:
5 + 23 Aug 2008; Robert Buchholz <rbu@g.o> kaa-base-0.4.0.ebuild:+ Pull avahi and others into DEPEND, and check for avahi before checking for+ use flags (bug #235123 by Anton Romanov)
6 (Portage version: 2.1.5_rc4)
7
8 Revision Changes Path
9 1.15 dev-python/kaa-base/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/ChangeLog?rev=1.15&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/ChangeLog?rev=1.15&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/ChangeLog?r1=1.14&r2=1.15
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/kaa-base/ChangeLog,v
18 retrieving revision 1.14
19 retrieving revision 1.15
20 diff -u -r1.14 -r1.15
21 --- ChangeLog 16 Aug 2008 15:36:49 -0000 1.14
22 +++ ChangeLog 23 Aug 2008 11:49:55 -0000 1.15
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-python/kaa-base
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/ChangeLog,v 1.14 2008/08/16 15:36:49 rbu Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/ChangeLog,v 1.15 2008/08/23 11:49:55 rbu Exp $
28 +
29 + 23 Aug 2008; Robert Buchholz <rbu@g.o> kaa-base-0.4.0.ebuild:
30 + Pull avahi and others into DEPEND, and check for avahi before checking for
31 + use flags (bug #235123 by Anton Romanov)
32
33 16 Aug 2008; Robert Buchholz <rbu@g.o> metadata.xml,
34 kaa-base-0.4.0.ebuild:
35
36
37
38 1.5 dev-python/kaa-base/kaa-base-0.4.0.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0.ebuild?rev=1.5&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0.ebuild?rev=1.5&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0.ebuild?r1=1.4&r2=1.5
43
44 Index: kaa-base-0.4.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0.ebuild,v
47 retrieving revision 1.4
48 retrieving revision 1.5
49 diff -u -r1.4 -r1.5
50 --- kaa-base-0.4.0.ebuild 16 Aug 2008 15:38:17 -0000 1.4
51 +++ kaa-base-0.4.0.ebuild 23 Aug 2008 11:49:55 -0000 1.5
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2008 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0.ebuild,v 1.4 2008/08/16 15:38:17 rbu Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0.ebuild,v 1.5 2008/08/23 11:49:55 rbu Exp $
57
58 inherit python eutils distutils
59
60 @@ -13,11 +13,12 @@
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="avahi ssl sqlite tls lirc"
63
64 -RDEPEND="dev-libs/libxml2
65 +DEPEND="dev-libs/libxml2
66 + sqlite? ( dev-python/dbus-python >=dev-python/pysqlite-2.2 )
67 + avahi? ( net-dns/avahi )"
68 +RDEPEND="${DEPEND}
69 dev-python/pynotifier
70 - avahi? ( net-dns/avahi )
71 lirc? ( dev-python/pylirc )
72 - sqlite? ( >=dev-libs/glib-2.4.0 >=dev-python/pysqlite-2.2 )
73 tls? ( dev-python/tlslite )"
74
75 PYTHON_MODNAME="kaa"
76 @@ -34,7 +35,7 @@
77 eerror "dev-libs/libxml2 must be built with the 'python' USE flag"
78 die "Recompile dev-libs/libxml2 with the 'python' USE flag enabled"
79 fi
80 - if ! built_with_use net-dns/avahi python; then
81 + if use avahi && ! built_with_use net-dns/avahi python; then
82 eerror "net-dns/avahi must be built with the 'python' USE flag"
83 die "Recompile net-dns/avahi with the 'python' USE flag enabled"
84 fi