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/rofi: rofi-0.15.5.ebuild ChangeLog rofi-0.15.2.ebuild
Date: Mon, 01 Jun 2015 04:48:47
Message-Id: 20150601044841.EE255A13@oystercatcher.gentoo.org
1 jer 15/06/01 04:48:41
2
3 Modified: ChangeLog
4 Added: rofi-0.15.5.ebuild
5 Removed: rofi-0.15.2.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.7 x11-misc/rofi/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/rofi/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 30 Apr 2015 16:03:51 -0000 1.6
25 +++ ChangeLog 1 Jun 2015 04:48:41 -0000 1.7
26 @@ -1,6 +1,13 @@
27 # ChangeLog for x11-misc/rofi
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/rofi/ChangeLog,v 1.6 2015/04/30 16:03:51 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/rofi/ChangeLog,v 1.7 2015/06/01 04:48:41 jer Exp $
31 +
32 +*rofi-0.15.5 (01 Jun 2015)
33 +
34 + 01 Jun 2015; Jeroen Roovers <jer@g.o> -rofi-0.15.2.ebuild,
35 + +rofi-0.15.5.ebuild, -files/rofi-0.15.2-Werror.patch,
36 + -files/rofi-0.15.2-run_test_sh.patch:
37 + Version bump.
38
39 *rofi-0.15.4 (30 Apr 2015)
40
41
42
43
44 1.1 x11-misc/rofi/rofi-0.15.5.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/rofi-0.15.5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/rofi/rofi-0.15.5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: rofi-0.15.5.ebuild
50 ===================================================================
51 # Copyright 1999-2015 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-misc/rofi/rofi-0.15.5.ebuild,v 1.1 2015/06/01 04:48:41 jer Exp $
54
55 EAPI=5
56 inherit autotools eutils toolchain-funcs
57
58 DESCRIPTION="A window switcher, run dialog and dmenu replacement"
59 HOMEPAGE="https://davedavenport.github.io/rofi/"
60 SRC_URI="https://github.com/DaveDavenport/${PN}/releases/download/${PV}/${P}.tar.xz"
61
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="i3"
66
67 RDEPEND="
68 dev-libs/glib:2
69 media-libs/freetype
70 x11-libs/libX11
71 x11-libs/libXft
72 x11-libs/libXinerama
73 x11-libs/pango[X]
74 i3? ( x11-wm/i3 )
75 "
76 DEPEND="
77 ${RDEPEND}
78 x11-proto/xineramaproto
79 x11-proto/xproto
80 virtual/pkgconfig
81 "
82
83 src_prepare() {
84 epatch \
85 "${FILESDIR}"/${PN}-0.15.4-Werror.patch
86
87 eautoreconf
88 }
89
90 src_configure() {
91 tc-export CC
92 econf $(usex i3 '' --disable-i3support)
93 }
94
95 src_test() {
96 emake test
97 }