Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/arandr: arandr-0.1.7.1.ebuild ChangeLog arandr-0.1.7-r1.ebuild
Date: Mon, 04 Mar 2013 18:32:21
Message-Id: 20130304183217.DED972171D@flycatcher.gentoo.org
1 hasufell 13/03/04 18:32:17
2
3 Modified: ChangeLog
4 Added: arandr-0.1.7.1.ebuild
5 Removed: arandr-0.1.7-r1.ebuild
6 Log:
7 version bump wrt #460300, remove old
8
9 (Portage version: 2.2.0_alpha164/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
10
11 Revision Changes Path
12 1.12 x11-misc/arandr/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/ChangeLog?rev=1.12&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/ChangeLog?rev=1.12&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/ChangeLog?r1=1.11&r2=1.12
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/arandr/ChangeLog,v
21 retrieving revision 1.11
22 retrieving revision 1.12
23 diff -u -r1.11 -r1.12
24 --- ChangeLog 3 Mar 2013 00:25:13 -0000 1.11
25 +++ ChangeLog 4 Mar 2013 18:32:17 -0000 1.12
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-misc/arandr
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/arandr/ChangeLog,v 1.11 2013/03/03 00:25:13 hasufell Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/arandr/ChangeLog,v 1.12 2013/03/04 18:32:17 hasufell Exp $
31 +
32 +*arandr-0.1.7.1 (04 Mar 2013)
33 +
34 + 04 Mar 2013; Julian Ospald <hasufell@g.o> -arandr-0.1.7-r1.ebuild,
35 + +arandr-0.1.7.1.ebuild, -files/arandr-0.1.7-locale.patch:
36 + version bump wrt #460300, remove old
37
38 *arandr-0.1.7-r1 (03 Mar 2013)
39
40
41
42
43 1.1 x11-misc/arandr/arandr-0.1.7.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/arandr-0.1.7.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/arandr-0.1.7.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: arandr-0.1.7.1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/arandr/arandr-0.1.7.1.ebuild,v 1.1 2013/03/04 18:32:17 hasufell Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_6,2_7} )
57
58 inherit eutils distutils-r1
59
60 DESCRIPTION="A simple visual frontend for XRandR 1.2/1.3"
61 HOMEPAGE="http://christian.amsuess.com/tools/arandr/"
62 SRC_URI="http://christian.amsuess.com/tools/${PN}/files/${P}.tar.gz"
63
64 LICENSE="GPL-3+"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 RDEPEND=">=dev-python/pygtk-2[${PYTHON_USEDEP}]
70 x11-apps/xrandr"
71 DEPEND=">=dev-python/docutils-0.6[${PYTHON_USEDEP}]"
72
73 src_prepare() {
74 local i p
75 # simulate gettext behavior:
76 # LINGUAS unset => install all
77 # LINGUAS="" => install none
78 # LINGUAS="de fr" => install de and fr
79 if [[ -n "${LINGUAS+x}" ]] ; then # if LINGUAS is set
80 for i in $(cd "${S}"/data/po ; for p in *.po ; do echo ${p%.po} ; done) ; do # for every supported language
81 if ! has ${i} ${LINGUAS} ; then # if language is disabled
82 rm data/po/${i}.po || die
83 fi
84 done
85 fi
86 distutils-r1_src_prepare
87 }