diff options
author | Jeff Horelick <jdhore@gentoo.org> | 2012-07-10 08:33:50 +0000 |
---|---|---|
committer | Jeff Horelick <jdhore@gentoo.org> | 2012-07-10 08:33:50 +0000 |
commit | 6c149bc3146553b929ca22b58be0558c14dd53ad (patch) | |
tree | 0345df484af6022cebc2c9b6727b82f33e00b3eb /sys-apps/the_silver_searcher | |
parent | Add patch to fix tests when network information is restricted (bug #425430). (diff) | |
download | gentoo-2-6c149bc3146553b929ca22b58be0558c14dd53ad.tar.gz gentoo-2-6c149bc3146553b929ca22b58be0558c14dd53ad.tar.bz2 gentoo-2-6c149bc3146553b929ca22b58be0558c14dd53ad.zip |
Version bump.
(Portage version: 2.2.0_alpha116/cvs/Linux i686)
Diffstat (limited to 'sys-apps/the_silver_searcher')
-rw-r--r-- | sys-apps/the_silver_searcher/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/the_silver_searcher/the_silver_searcher-0.8.ebuild | 25 |
2 files changed, 32 insertions, 2 deletions
diff --git a/sys-apps/the_silver_searcher/ChangeLog b/sys-apps/the_silver_searcher/ChangeLog index 84d27361713f..b585e5ed022a 100644 --- a/sys-apps/the_silver_searcher/ChangeLog +++ b/sys-apps/the_silver_searcher/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/the_silver_searcher # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog,v 1.16 2012/06/20 05:45:22 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog,v 1.17 2012/07/10 08:33:50 jdhore Exp $ + +*the_silver_searcher-0.8 (10 Jul 2012) + + 10 Jul 2012; Jeff Horelick <jdhore@gentoo.org> + +the_silver_searcher-0.8.ebuild: + Version bump. 20 Jun 2012; Jeff Horelick <jdhore@gentoo.org> -the_silver_searcher-0.4.ebuild: @@ -77,4 +83,3 @@ 13 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> +the_silver_searcher-0.1.ebuild: Initial commit by Jeff Horelick - diff --git a/sys-apps/the_silver_searcher/the_silver_searcher-0.8.ebuild b/sys-apps/the_silver_searcher/the_silver_searcher-0.8.ebuild new file mode 100644 index 000000000000..6180c038084a --- /dev/null +++ b/sys-apps/the_silver_searcher/the_silver_searcher-0.8.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/the_silver_searcher-0.8.ebuild,v 1.1 2012/07/10 08:33:50 jdhore Exp $ + +EAPI=4 +inherit autotools + +DESCRIPTION="A code-searching tool similar to ack, but faster" +HOMEPAGE="http://github.com/ggreer/the_silver_searcher" +SRC_URI="mirror://github/ggreer/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="" + +RDEPEND="dev-libs/libpcre" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS="README.md" + +src_prepare() { + eautoreconf +} |