Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/arandr: ChangeLog arandr-0.1.7.ebuild
Date: Fri, 01 Mar 2013 17:26:18
Message-Id: 20130301172613.AC6EE2171D@flycatcher.gentoo.org
1 jer 13/03/01 17:26:13
2
3 Modified: ChangeLog
4 Added: arandr-0.1.7.ebuild
5 Log:
6 Version bump by chrysn (bug #459792). Add support for LINGUAS.
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.9 x11-misc/arandr/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/arandr/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 21 Nov 2012 12:36:00 -0000 1.8
24 +++ ChangeLog 1 Mar 2013 17:26:13 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/arandr
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/arandr/ChangeLog,v 1.8 2012/11/21 12:36:00 ago Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/arandr/ChangeLog,v 1.9 2013/03/01 17:26:13 jer Exp $
31 +
32 +*arandr-0.1.7 (01 Mar 2013)
33 +
34 + 01 Mar 2013; Jeroen Roovers <jer@g.o> +arandr-0.1.7.ebuild:
35 + Version bump by chrysn (bug #459792). Add support for LINGUAS.
36
37 21 Nov 2012; Agostino Sarubbo <ago@g.o> arandr-0.1.6.ebuild:
38 Stable for x86, tested by Vicente Olivert Riera <peratu@×××××××××.com>, wrt
39
40
41
42 1.1 x11-misc/arandr/arandr-0.1.7.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/arandr-0.1.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/arandr/arandr-0.1.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: arandr-0.1.7.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/arandr/arandr-0.1.7.ebuild,v 1.1 2013/03/01 17:26:13 jer Exp $
52
53 EAPI=5
54
55 PYTHON_DEPEND="2:2.5"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="2.5 3.*"
58
59 inherit distutils
60
61 DESCRIPTION="A simple visual frontend for XRandR 1.2/1.3"
62 HOMEPAGE="http://christian.amsuess.com/tools/arandr/"
63 SRC_URI="http://christian.amsuess.com/tools/${PN}/files/${P}.tar.gz"
64
65 LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 ARANDR_LINGUAS=(
71 ar br bs ca da de el es fa fr gl hu it ja kn ko_KR lt nl pl pt_BR ro ru sk
72 sv tr uk zh_CN
73 )
74
75 IUSE+=" ${ARANDR_LINGUAS[@]/#/linguas_}"
76
77 RDEPEND=">=dev-python/pygtk-2
78 x11-apps/xrandr"
79 DEPEND=">=dev-python/docutils-0.6"
80
81 PYTHON_MODNAME=screenlayout
82
83 src_prepare() {
84 local lingua
85 for lingua in ${ARANDR_LINGUAS[@]}; do
86 if ! use linguas_${lingua}; then
87 rm data/po/${lingua}.po || die
88 fi
89 done
90 }