summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Horelick <jdhore@gentoo.org>2012-03-14 03:41:42 +0000
committerJeff Horelick <jdhore@gentoo.org>2012-03-14 03:41:42 +0000
commiteb667b9134421008b71812fcf89ad5a7e10bc4c2 (patch)
treeefaeac60087b65aee8a4ca5f36a491d215bfd5ba /sys-apps/the_silver_searcher
parentRemove old (diff)
downloadgentoo-2-eb667b9134421008b71812fcf89ad5a7e10bc4c2.tar.gz
gentoo-2-eb667b9134421008b71812fcf89ad5a7e10bc4c2.tar.bz2
gentoo-2-eb667b9134421008b71812fcf89ad5a7e10bc4c2.zip
Version bump. Adds a manpage, stdin searching, performance improvements and more.
(Portage version: 2.2.0_alpha90/cvs/Linux i686)
Diffstat (limited to 'sys-apps/the_silver_searcher')
-rw-r--r--sys-apps/the_silver_searcher/ChangeLog9
-rw-r--r--sys-apps/the_silver_searcher/the_silver_searcher-0.2.ebuild24
2 files changed, 32 insertions, 1 deletions
diff --git a/sys-apps/the_silver_searcher/ChangeLog b/sys-apps/the_silver_searcher/ChangeLog
index cb64c7ff9f7b..b30f8c9fa9dd 100644
--- a/sys-apps/the_silver_searcher/ChangeLog
+++ b/sys-apps/the_silver_searcher/ChangeLog
@@ -1,6 +1,13 @@
# 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.3 2012/03/04 18:22:00 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/the_silver_searcher/ChangeLog,v 1.4 2012/03/14 03:41:42 jdhore Exp $
+
+*the_silver_searcher-0.2 (14 Mar 2012)
+
+ 14 Mar 2012; Jeff Horelick <jdhore@gentoo.org>
+ +the_silver_searcher-0.2.ebuild:
+ Version bump. Adds a manpage, stdin searching, performance improvements and
+ more.
04 Mar 2012; Jeff Horelick <jdhore@gentoo.org> metadata.xml:
Drop the proxy-maintainers herd as i maintain this package now.
diff --git a/sys-apps/the_silver_searcher/the_silver_searcher-0.2.ebuild b/sys-apps/the_silver_searcher/the_silver_searcher-0.2.ebuild
new file mode 100644
index 000000000000..8cf52d40b8de
--- /dev/null
+++ b/sys-apps/the_silver_searcher/the_silver_searcher-0.2.ebuild
@@ -0,0 +1,24 @@
+# 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.2.ebuild,v 1.1 2012/03/14 03:41:42 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"
+IUSE=""
+
+RDEPEND="dev-libs/libpcre"
+DEPEND="${RDEPEND}"
+
+DOCS="README.md"
+
+src_prepare() {
+ eautoreconf
+}