Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/the_silver_searcher: the_silver_searcher-0.26.0.ebuild ChangeLog
Date: Tue, 28 Oct 2014 00:36:19
Message-Id: 20141028003615.157428E45@oystercatcher.gentoo.org
1 radhermit 14/10/28 00:36:15
2
3 Modified: ChangeLog
4 Added: the_silver_searcher-0.26.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.43 sys-apps/the_silver_searcher/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog?rev=1.43&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog?rev=1.43&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog?r1=1.42&r2=1.43
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog,v
20 retrieving revision 1.42
21 retrieving revision 1.43
22 diff -u -r1.42 -r1.43
23 --- ChangeLog 19 Oct 2014 05:20:43 -0000 1.42
24 +++ ChangeLog 28 Oct 2014 00:36:15 -0000 1.43
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-apps/the_silver_searcher
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog,v 1.42 2014/10/19 05:20:43 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog,v 1.43 2014/10/28 00:36:15 radhermit Exp $
30 +
31 +*the_silver_searcher-0.26.0 (28 Oct 2014)
32 +
33 + 28 Oct 2014; Tim Harder <radhermit@g.o>
34 + +the_silver_searcher-0.26.0.ebuild:
35 + Version bump.
36
37 *the_silver_searcher-0.25.0 (19 Oct 2014)
38
39
40
41
42 1.1 sys-apps/the_silver_searcher/the_silver_searcher-0.26.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/the_silver_searcher/the_silver_searcher-0.26.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/the_silver_searcher/the_silver_searcher-0.26.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: the_silver_searcher-0.26.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/the_silver_searcher-0.26.0.ebuild,v 1.1 2014/10/28 00:36:15 radhermit Exp $
52
53 EAPI=5
54 inherit autotools bash-completion-r1
55
56 DESCRIPTION="A code-searching tool similar to ack, but faster"
57 HOMEPAGE="http://github.com/ggreer/the_silver_searcher"
58 SRC_URI="https://github.com/ggreer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
59
60 LICENSE="Apache-2.0"
61 SLOT="0"
62 KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd"
63 IUSE="lzma zlib"
64
65 RDEPEND="dev-libs/libpcre
66 lzma? ( app-arch/xz-utils )
67 zlib? ( sys-libs/zlib )"
68 DEPEND="${RDEPEND}
69 virtual/pkgconfig"
70
71 DOCS="README.md"
72
73 src_prepare() {
74 sed -i '/^dist_bashcomp/d' Makefile.am || die
75
76 eautoreconf
77 }
78
79 src_configure() {
80 econf \
81 $(use_enable lzma) \
82 $(use_enable zlib)
83 }
84
85 src_install() {
86 default
87 newbashcomp ag.bashcomp.sh ag
88 }