commit:     242b07ce90a8277147a8414e73a6dfd46033f844
Author:     Sam Jorna <wraeth <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 16 08:19:38 2019 +0000
Commit:     Sam Jorna <wraeth <AT> gentoo <DOT> org>
CommitDate: Mon Dec 16 08:47:59 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=242b07ce

sys-apps/the_silver_searcher: vbump to 2.2.0

Bug: https://bugs.gentoo.org/683672
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Sam Jorna <wraeth <AT> gentoo.org>

 sys-apps/the_silver_searcher/Manifest              |  1 +
 .../the_silver_searcher-2.2.0.ebuild               | 51 ++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/sys-apps/the_silver_searcher/Manifest 
b/sys-apps/the_silver_searcher/Manifest
index 722eff7196b..1ae01b0415d 100644
--- a/sys-apps/the_silver_searcher/Manifest
+++ b/sys-apps/the_silver_searcher/Manifest
@@ -1,2 +1,3 @@
 DIST the_silver_searcher-2.0.0.tar.gz 160093 BLAKE2B 
1955772c6f71cf7839270cdcaf73f917a69966afa69e781a81ff1926946d9e61a7229e5eb4981b21879b6d2ad46232563285b083de77b8fbf42d3070792b26bd
 SHA512 
2587b9958fadcf5d95bc472f901904edb0d3d9bbc652dc6bb3801b77e7dfa744a97869bed4699776cc3fdcd7b0319fcecbe4b08ccfda617d1c2aa4ea8e9f990d
 DIST the_silver_searcher-2.1.0.tar.gz 163139 BLAKE2B 
0112489e9e8c965708f2526aa5141bc700cb86bc1bc5a63ad9b2505234595f673b6e163546fdec7e5066d00789042ab1acdf02db926170bb823112847f304944
 SHA512 
9b49b1666bbb915b122eae45dbe5dbdba18539257b59f1dee9ba9ec86dbe73c7c8ecde1eff9d3e06951295685161fc4594fcdbfa5d19d7b466f2a7f95021e631
+DIST the_silver_searcher-2.2.0.tar.gz 163686 BLAKE2B 
ca81f701336ff463b6dc783ac8bc615a05e048c35b653a80c3fb74b053bb71f4822990b699a9e3741c7ffdd2581b65faa5439824189a9d8e36025d248201f814
 SHA512 
b635165fa3259475027986dd49c0786545cc2e3037695aec70f6ee54eaa768ab0e25af78d4bfd3754c4eb8352464cebf64324ed4a68a4b3de60a6889473da26e

diff --git a/sys-apps/the_silver_searcher/the_silver_searcher-2.2.0.ebuild 
b/sys-apps/the_silver_searcher/the_silver_searcher-2.2.0.ebuild
new file mode 100644
index 00000000000..f6cfa25db0a
--- /dev/null
+++ b/sys-apps/the_silver_searcher/the_silver_searcher-2.2.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools bash-completion-r1
+
+DESCRIPTION="A code-searching tool similar to ack, but faster"
+HOMEPAGE="https://github.com/ggreer/the_silver_searcher";
+SRC_URI="https://github.com/ggreer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86 ~amd64-linux"
+IUSE="lzma test zlib"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-libs/libpcre
+       lzma? ( app-arch/xz-utils )
+       zlib? ( sys-libs/zlib )"
+DEPEND="${RDEPEND}
+       virtual/pkgconfig
+       test? (
+               dev-util/cram
+               dev-vcs/git
+       )"
+
+DOCS="README.md"
+
+PATCHES=( "${FILESDIR}"/${PN}-2.1.0-lzma.patch )
+
+src_prepare() {
+       sed '/^dist_bashcomp/d' -i Makefile.am || die
+
+       default
+       eautoreconf
+}
+
+src_configure() {
+       econf \
+               $(use_enable lzma) \
+               $(use_enable zlib)
+}
+
+src_test() {
+       cram -v tests/*.t || die "tests failed"
+}
+
+src_install() {
+       default
+       newbashcomp ag.bashcomp.sh ag
+}

Reply via email to