Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/parti: metadata.xml ChangeLog parti-0.0.6.ebuild
Date: Tue, 31 Aug 2010 09:05:03
Message-Id: 20100831090456.8884D20051@flycatcher.gentoo.org
1 xmw 10/08/31 09:04:56
2
3 Added: metadata.xml ChangeLog parti-0.0.6.ebuild
4 Log:
5 Initial import
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 x11-wm/parti/metadata.xml
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/parti/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/parti/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>no-herd</herd>
20 <maintainer>
21 <email>xmw@g.o</email>
22 <name>Michael Weber</name>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28
29 1.1 x11-wm/parti/ChangeLog
30
31 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/parti/ChangeLog?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/parti/ChangeLog?rev=1.1&content-type=text/plain
33
34 Index: ChangeLog
35 ===================================================================
36 # ChangeLog for x11-wm/parti
37 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
38 # $Header: /var/cvsroot/gentoo-x86/x11-wm/parti/ChangeLog,v 1.1 2010/08/31 09:04:56 xmw Exp $
39
40 *parti-0.0.6 (31 Aug 2010)
41
42 31 Aug 2010; Michael Weber <xmw@g.o> +parti-0.0.6.ebuild,
43 +files/parti-0.0.6-python-2.6-sets-deprecation.patch,
44 +files/parti-0.0.6-python-import.patch, +metadata.xml:
45 Initial commit, fixed bug #271527, thanks to Pinkbyte <pinkbyte@××××.ru>,
46 Dan <dtyler@×××××××.edu> and Eric Johnson <tokenmathematician@×××××.com>
47 for their great work on bug #271527.
48
49
50
51
52 1.1 x11-wm/parti/parti-0.0.6.ebuild
53
54 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/parti/parti-0.0.6.ebuild?rev=1.1&view=markup
55 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/parti/parti-0.0.6.ebuild?rev=1.1&content-type=text/plain
56
57 Index: parti-0.0.6.ebuild
58 ===================================================================
59 # Copyright 1999-2010 Gentoo Foundation
60 # Distributed under the terms of the GNU General Public License v2
61 # $Header: /var/cvsroot/gentoo-x86/x11-wm/parti/parti-0.0.6.ebuild,v 1.1 2010/08/31 09:04:56 xmw Exp $
62
63 EAPI=2
64
65 PYTHON_DEPEND=2
66
67 inherit distutils eutils python
68
69 DESCRIPTION="X Persistent Remote Apps (xpra) and Partitioning WM (parti) based on wimpiggy"
70 HOMEPAGE="http://partiwm.googlecode.com/"
71 MY_P="${PN}-all-${PV}"
72 SRC_URI="http://${PN}wm.googlecode.com/files/${MY_P}.tar.gz"
73
74 LICENSE="GPL-2 LGPL-2.1"
75 SLOT="0"
76 KEYWORDS="~amd64 ~x86"
77 IUSE=""
78
79 COMMON_DEPEND="dev-python/pygtk
80 x11-libs/libX11
81 x11-libs/libXcomposite
82 x11-libs/libXdamage
83 x11-libs/libXtst"
84
85 RDEPEND="${COMMON_RDEPEND}
86 dev-python/ipython
87 x11-apps/xmodmap"
88 DEPEND="${COMMON_RDEPEND}
89 dev-python/pyrex
90 dev-util/pkgconfig"
91
92 S=${WORKDIR}/${MY_P}
93
94 pkg_setup() {
95 python_set_active_version 2
96 }
97
98 src_prepare() {
99 # upstream changeset 620a831d81, solved deprecation warnings on module sets
100 epatch "${FILESDIR}"/${P}-python-2.6-sets-deprecation.patch
101
102 # upstream changeset fedd8b2841, adds missing import sys
103 epatch "${FILESDIR}"/${P}-python-import.patch
104 }