Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pybluez: pybluez-0.16.ebuild ChangeLog
Date: Sun, 01 Mar 2009 09:58:41
Message-Id: E1LdiRS-0000g4-Th@stork.gentoo.org
1 dev-zero 09/03/01 09:58:38
2
3 Modified: ChangeLog
4 Added: pybluez-0.16.ebuild
5 Log:
6 Version bump, added net-wireless/bluez as possible dep.
7 (Portage version: 2.1.6.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 dev-python/pybluez/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pybluez/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pybluez/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pybluez/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pybluez/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 3 Jan 2009 11:04:14 -0000 1.19
23 +++ ChangeLog 1 Mar 2009 09:58:38 -0000 1.20
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/pybluez
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pybluez/ChangeLog,v 1.19 2009/01/03 11:04:14 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pybluez/ChangeLog,v 1.20 2009/03/01 09:58:38 dev-zero Exp $
29 +
30 +*pybluez-0.16 (01 Mar 2009)
31 +
32 + 01 Mar 2009; Tiziano Müller <dev-zero@g.o> +pybluez-0.16.ebuild:
33 + Version bump, added net-wireless/bluez as possible dep.
34
35 03 Jan 2009; Raúl Porcel <armin76@g.o> pybluez-0.9.2.ebuild,
36 pybluez-0.15.ebuild:
37
38
39
40 1.1 dev-python/pybluez/pybluez-0.16.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pybluez/pybluez-0.16.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pybluez/pybluez-0.16.ebuild?rev=1.1&content-type=text/plain
44
45 Index: pybluez-0.16.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-python/pybluez/pybluez-0.16.ebuild,v 1.1 2009/03/01 09:58:38 dev-zero Exp $
50
51 NEED_PYTHON="2.5"
52
53 inherit distutils
54
55 MY_P="PyBluez-${PV}"
56
57 DESCRIPTION="Python bindings for Bluez Bluetooth Stack"
58 HOMEPAGE="http://code.google.com/p/pybluez/"
59 SRC_URI="http://pybluez.googlecode.com/files/${MY_P}.tar.gz"
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="examples"
64
65 DEPEND="|| ( >=net-wireless/bluez-libs-2.10 net-wireless/bluez )"
66 RDEPEND="${DEPEND}"
67
68 S="${WORKDIR}/${MY_P}"
69
70 PYTHON_MODNAME="bluetooth"
71
72 src_install() {
73 distutils_src_install
74
75 if use examples; then
76 insinto /usr/share/doc/${PF}/examples
77 doins -r examples/* || die "doins failed"
78 fi
79 }