Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@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-r1.ebuild
Date: Wed, 01 Apr 2009 14:00:45
Message-Id: E1Lp0zj-0007sV-KU@stork.gentoo.org
1 patrick 09/04/01 14:00:43
2
3 Modified: ChangeLog
4 Added: kaa-base-0.4.0-r1.ebuild
5 Log:
6 Adding dev-lang/python[threads] dep. Fixes #264471
7 (Portage version: 2.2_rc28/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 dev-python/kaa-base/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/kaa-base/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 23 Aug 2008 11:49:55 -0000 1.15
23 +++ ChangeLog 1 Apr 2009 14:00:43 -0000 1.16
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/kaa-base
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/ChangeLog,v 1.15 2008/08/23 11:49:55 rbu Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/ChangeLog,v 1.16 2009/04/01 14:00:43 patrick Exp $
30 +
31 +*kaa-base-0.4.0-r1 (01 Apr 2009)
32 +
33 + 01 Apr 2009; Patrick Lauer <patrick@g.o> +kaa-base-0.4.0-r1.ebuild:
34 + Adding dev-lang/python[threads] dep. Fixes #264471
35
36 23 Aug 2008; Robert Buchholz <rbu@g.o> kaa-base-0.4.0.ebuild:
37 Pull avahi and others into DEPEND, and check for avahi before checking for
38
39
40
41 1.1 dev-python/kaa-base/kaa-base-0.4.0-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kaa-base-0.4.0-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0-r1.ebuild,v 1.1 2009/04/01 14:00:43 patrick Exp $
51
52 EAPI="2"
53
54 inherit python eutils distutils
55
56 DESCRIPTION="Basic Framework for all Kaa Python Modules."
57 HOMEPAGE="http://freevo.sourceforge.net/kaa/"
58 SRC_URI="mirror://sourceforge/freevo/${P}.tar.gz"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="avahi ssl sqlite tls lirc"
64
65 DEPEND="dev-lang/python[threads]
66 dev-libs/libxml2
67 sqlite? ( dev-python/dbus-python >=dev-python/pysqlite-2.2 )
68 avahi? ( net-dns/avahi )"
69 RDEPEND="${DEPEND}
70 dev-python/pynotifier
71 lirc? ( dev-python/pylirc )
72 tls? ( dev-python/tlslite )"
73
74 PYTHON_MODNAME="kaa"
75
76 src_unpack() {
77 distutils_src_unpack
78
79 cd "${S}"
80 rm -rf src/notifier/pynotifier
81 }
82
83 pkg_setup() {
84 if ! built_with_use dev-libs/libxml2 python; then
85 eerror "dev-libs/libxml2 must be built with the 'python' USE flag"
86 die "Recompile dev-libs/libxml2 with the 'python' USE flag enabled"
87 fi
88 if use avahi && ! built_with_use net-dns/avahi python; then
89 eerror "net-dns/avahi must be built with the 'python' USE flag"
90 die "Recompile net-dns/avahi with the 'python' USE flag enabled"
91 fi
92 }