diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-09-25 10:01:40 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-09-25 10:01:40 +0000 |
commit | 865a17d87d0adacbef377e0e2a3b2e82abd848af (patch) | |
tree | 815aaa178700909ffd1d29ac4080a46467ec30e7 /sys-apps/ack | |
parent | Add tests for repo URI canonicalization. (diff) | |
download | gentoo-2-865a17d87d0adacbef377e0e2a3b2e82abd848af.tar.gz gentoo-2-865a17d87d0adacbef377e0e2a3b2e82abd848af.tar.bz2 gentoo-2-865a17d87d0adacbef377e0e2a3b2e82abd848af.zip |
Version bump.
(Portage version: 2.2.6/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'sys-apps/ack')
-rw-r--r-- | sys-apps/ack/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/ack/ack-2.10.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/sys-apps/ack/ChangeLog b/sys-apps/ack/ChangeLog index efdf0352dac0..46b25f4b6b16 100644 --- a/sys-apps/ack/ChangeLog +++ b/sys-apps/ack/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/ack # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/ack/ChangeLog,v 1.33 2013/08/25 05:42:59 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ack/ChangeLog,v 1.34 2013/09/25 10:01:40 radhermit Exp $ + +*ack-2.10 (25 Sep 2013) + + 25 Sep 2013; Tim Harder <radhermit@gentoo.org> +ack-2.10.ebuild: + Version bump. *ack-2.08 (25 Aug 2013) diff --git a/sys-apps/ack/ack-2.10.ebuild b/sys-apps/ack/ack-2.10.ebuild new file mode 100644 index 000000000000..46157e2b1da9 --- /dev/null +++ b/sys-apps/ack/ack-2.10.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ack/ack-2.10.ebuild,v 1.1 2013/09/25 10:01:40 radhermit Exp $ + +EAPI=5 +MODULE_AUTHOR=PETDANCE +inherit perl-module + +DESCRIPTION="ack is a tool like grep, aimed at programmers with large trees of heterogeneous source code" +HOMEPAGE="http://betterthangrep.com/ ${HOMEPAGE}" + +LICENSE="Artistic-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~x86 ~x86-interix ~amd64-linux ~x86-linux ~x86-macos" +IUSE="test" + +RDEPEND=">=dev-perl/File-Next-1.100.0" +DEPEND="${RDEPEND}" + +SRC_TEST=do +PATCHES=( "${FILESDIR}"/${PN}-2.04-gentoo.patch ) + +src_test() { + # Tests fail when run in parallel and if dev-perl/IO-Tty is installed + # which enables interactive tests that need to read from stdin. If IO-Tty + # is not installed the related tests are skipped. + MAKEOPTS+=" -j1" perl-module_src_test +} |