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/xsetleds: xsetleds-0.1.3-r1.ebuild xsetleds-0.1.3.ebuild ChangeLog
Date: Wed, 03 Sep 2014 09:04:00
Message-Id: 20140903090356.D2E1E4972@oystercatcher.gentoo.org
1 jer 14/09/03 09:03:56
2
3 Modified: xsetleds-0.1.3.ebuild ChangeLog
4 Added: xsetleds-0.1.3-r1.ebuild
5 Log:
6 einstall -> EAPI 5 default (bug #521674). Respect CC. Fix some coding issues.
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.17 x11-misc/xsetleds/xsetleds-0.1.3.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xsetleds/xsetleds-0.1.3.ebuild?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xsetleds/xsetleds-0.1.3.ebuild?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xsetleds/xsetleds-0.1.3.ebuild?r1=1.16&r2=1.17
16
17 Index: xsetleds-0.1.3.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xsetleds/xsetleds-0.1.3.ebuild,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- xsetleds-0.1.3.ebuild 7 Jan 2008 10:42:10 -0000 1.16
24 +++ xsetleds-0.1.3.ebuild 3 Sep 2014 09:03:56 -0000 1.17
25 @@ -1,6 +1,9 @@
26 -# Copyright 1999-2008 Gentoo Foundation
27 +# Copyright 1999-2014 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsetleds/xsetleds-0.1.3.ebuild,v 1.16 2008/01/07 10:42:10 nelchael Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsetleds/xsetleds-0.1.3.ebuild,v 1.17 2014/09/03 09:03:56 jer Exp $
31 +
32 +EAPI=5
33 +inherit eutils toolchain-funcs
34
35 DESCRIPTION="small tool to report and change the keyboard LED states of an X display"
36 HOMEPAGE="ftp://ftp.unix-ag.org/user/bmeurer/xsetleds/"
37 @@ -9,16 +12,23 @@
38 LICENSE="GPL-2"
39 SLOT="0"
40 KEYWORDS="x86 ppc sparc alpha hppa ~mips amd64 ia64"
41 -IUSE=""
42
43 -RDEPEND="x11-libs/libX11
44 - x11-libs/libXtst"
45 -DEPEND="${RDEPEND}
46 +RDEPEND="
47 + x11-libs/libX11
48 + x11-libs/libXtst
49 +"
50 +DEPEND="
51 + ${RDEPEND}
52 x11-proto/inputproto
53 x11-proto/xextproto
54 - x11-proto/xproto"
55 + x11-proto/xproto
56 +"
57
58 -src_install() {
59 - einstall || die
60 - dodoc AUTHORS ChangeLog README TODO
61 +src_prepare() {
62 + epatch \
63 + "${FILESDIR}"/${P}-assignment.patch \
64 + "${FILESDIR}"/${P}-isalpha.patch
65 + tc-export CC
66 }
67 +
68 +DOCS=( AUTHORS ChangeLog README TODO )
69
70
71
72 1.17 x11-misc/xsetleds/ChangeLog
73
74 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xsetleds/ChangeLog?rev=1.17&view=markup
75 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xsetleds/ChangeLog?rev=1.17&content-type=text/plain
76 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xsetleds/ChangeLog?r1=1.16&r2=1.17
77
78 Index: ChangeLog
79 ===================================================================
80 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xsetleds/ChangeLog,v
81 retrieving revision 1.16
82 retrieving revision 1.17
83 diff -u -r1.16 -r1.17
84 --- ChangeLog 17 Mar 2013 16:13:46 -0000 1.16
85 +++ ChangeLog 3 Sep 2014 09:03:56 -0000 1.17
86 @@ -1,6 +1,13 @@
87 # ChangeLog for x11-misc/xsetleds
88 -# Copyright 2000-2013 Gentoo Foundation; Distributed under the GPL v2
89 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsetleds/ChangeLog,v 1.16 2013/03/17 16:13:46 hwoarang Exp $
90 +# Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
91 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsetleds/ChangeLog,v 1.17 2014/09/03 09:03:56 jer Exp $
92 +
93 +*xsetleds-0.1.3-r1 (03 Sep 2014)
94 +
95 + 03 Sep 2014; Jeroen Roovers <jer@g.o> xsetleds-0.1.3.ebuild,
96 + +xsetleds-0.1.3-r1.ebuild, +files/xsetleds-0.1.3-assignment.patch,
97 + +files/xsetleds-0.1.3-isalpha.patch:
98 + einstall -> EAPI 5 default (bug #521674). Respect CC. Fix some coding issues.
99
100 17 Mar 2013; Markos Chandras <hwoarang@g.o> metadata.xml:
101 Add proxy-maintainers to metadata.xml
102
103
104
105 1.1 x11-misc/xsetleds/xsetleds-0.1.3-r1.ebuild
106
107 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xsetleds/xsetleds-0.1.3-r1.ebuild?rev=1.1&view=markup
108 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xsetleds/xsetleds-0.1.3-r1.ebuild?rev=1.1&content-type=text/plain
109
110 Index: xsetleds-0.1.3-r1.ebuild
111 ===================================================================
112 # Copyright 1999-2014 Gentoo Foundation
113 # Distributed under the terms of the GNU General Public License v2
114 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xsetleds/xsetleds-0.1.3-r1.ebuild,v 1.1 2014/09/03 09:03:56 jer Exp $
115
116 EAPI=5
117 inherit eutils toolchain-funcs
118
119 DESCRIPTION="small tool to report and change the keyboard LED states of an X display"
120 HOMEPAGE="ftp://ftp.unix-ag.org/user/bmeurer/xsetleds/"
121 SRC_URI="ftp://ftp.unix-ag.org/user/bmeurer/xsetleds/src/${P}.tar.gz"
122
123 LICENSE="GPL-2"
124 SLOT="0"
125 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86"
126
127 RDEPEND="
128 x11-libs/libX11
129 x11-libs/libXtst
130 "
131 DEPEND="
132 ${RDEPEND}
133 x11-proto/inputproto
134 x11-proto/xextproto
135 x11-proto/xproto
136 "
137
138 src_prepare() {
139 epatch \
140 "${FILESDIR}"/${P}-assignment.patch \
141 "${FILESDIR}"/${P}-isalpha.patch
142 tc-export CC
143 }
144
145 DOCS=( AUTHORS ChangeLog README TODO )