Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-daap: ChangeLog python-daap-0.7.1.ebuild
Date: Mon, 31 May 2010 18:41:26
Message-Id: 20100531183358.15AF22CF3C@corvid.gentoo.org
1 arfrever 10/05/31 18:33:57
2
3 Modified: ChangeLog python-daap-0.7.1.ebuild
4 Log:
5 Set SUPPORT_PYTHON_ABIS.
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.4 dev-python/python-daap/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-daap/ChangeLog?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-daap/ChangeLog?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-daap/ChangeLog?r1=1.3&r2=1.4
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-daap/ChangeLog,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- ChangeLog 24 Nov 2008 17:52:18 -0000 1.3
22 +++ ChangeLog 31 May 2010 18:33:57 -0000 1.4
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-python/python-daap
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-daap/ChangeLog,v 1.3 2008/11/24 17:52:18 ssuominen Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-daap/ChangeLog,v 1.4 2010/05/31 18:33:57 arfrever Exp $
29 +
30 + 31 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
31 + python-daap-0.7.1.ebuild:
32 + Set SUPPORT_PYTHON_ABIS.
33
34 24 Nov 2008; <ssuominen@g.o> metadata.xml:
35 Re-assign to sound and python herds.
36
37
38
39 1.2 dev-python/python-daap/python-daap-0.7.1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-daap/python-daap-0.7.1.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-daap/python-daap-0.7.1.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-daap/python-daap-0.7.1.ebuild?r1=1.1&r2=1.2
44
45 Index: python-daap-0.7.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-daap/python-daap-0.7.1.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- python-daap-0.7.1.ebuild 27 May 2008 15:05:53 -0000 1.1
52 +++ python-daap-0.7.1.ebuild 31 May 2010 18:33:57 -0000 1.2
53 @@ -1,12 +1,14 @@
54 -# Copyright 1999-2008 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-daap/python-daap-0.7.1.ebuild,v 1.1 2008/05/27 15:05:53 drac Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-daap/python-daap-0.7.1.ebuild,v 1.2 2010/05/31 18:33:57 arfrever Exp $
59
60 -NEED_PYTHON=2.4
61 +EAPI="3"
62 +PYTHON_DEPEND="2"
63 +SUPPORT_PYTHON_ABIS="1"
64
65 -inherit distutils multilib python
66 +inherit distutils
67
68 -MY_P=PythonDaap-${PV}
69 +MY_P="PythonDaap-${PV}"
70
71 DESCRIPTION="PyDaap is a DAAP client implemented in Python, based on PyTunes"
72 HOMEPAGE="http://jerakeen.org/code/pythondaap"
73 @@ -17,7 +19,13 @@
74 KEYWORDS="~amd64 ~x86"
75 IUSE="examples"
76
77 -S=${WORKDIR}/${MY_P}
78 +DEPEND=""
79 +RDEPEND=""
80 +RESTRICT_PYTHON_ABIS="3.*"
81 +
82 +S="${WORKDIR}/${MY_P}"
83 +
84 +PYTHON_MODNAME="daap.py"
85
86 src_install() {
87 distutils_src_install
88 @@ -27,13 +35,3 @@
89 doins -r examples
90 fi
91 }
92 -
93 -pkg_postinst() {
94 - python_version
95 - python_mod_optimize "${ROOT}"usr/$(get_libdir)/python${PYVER}/site-packages
96 -}
97 -
98 -pkg_postrm() {
99 - python_version
100 - python_mod_cleanup /usr/$(get_libdir)/python${PYVER}/site-packages
101 -}