diff options
author | 2014-09-04 14:33:46 +0000 | |
---|---|---|
committer | 2014-09-04 14:33:46 +0000 | |
commit | 7eb57eac41a7f14f1091a733e4a430a6522ef684 (patch) | |
tree | ac99e6f4ab780fe09efdda2f37919d7937d2e995 | |
parent | Remove old. (diff) | |
download | gentoo-2-7eb57eac41a7f14f1091a733e4a430a6522ef684.tar.gz gentoo-2-7eb57eac41a7f14f1091a733e4a430a6522ef684.tar.bz2 gentoo-2-7eb57eac41a7f14f1091a733e4a430a6522ef684.zip |
Version bump.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)
-rw-r--r-- | sys-apps/ack/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/ack/ack-2.14.ebuild | 28 | ||||
-rw-r--r-- | sys-apps/ack/files/ack-2.14-gentoo.patch | 22 |
3 files changed, 57 insertions, 1 deletions
diff --git a/sys-apps/ack/ChangeLog b/sys-apps/ack/ChangeLog index dfd28ace0906..2fda90cf4dea 100644 --- a/sys-apps/ack/ChangeLog +++ b/sys-apps/ack/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/ack # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/ack/ChangeLog,v 1.41 2014/07/12 21:03:00 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ack/ChangeLog,v 1.42 2014/09/04 14:33:46 radhermit Exp $ + +*ack-2.14 (04 Sep 2014) + + 04 Sep 2014; Tim Harder <radhermit@gentoo.org> +ack-2.14.ebuild, + +files/ack-2.14-gentoo.patch: + Version bump. 12 Jul 2014; Mikle Kolyada <zlogene@gentoo.org> -ack-1.96.ebuild: Drop old. diff --git a/sys-apps/ack/ack-2.14.ebuild b/sys-apps/ack/ack-2.14.ebuild new file mode 100644 index 000000000000..7a42a78eb3b3 --- /dev/null +++ b/sys-apps/ack/ack-2.14.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ack/ack-2.14.ebuild,v 1.1 2014/09/04 14:33:46 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="~alpha ~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}"/${P}-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 +} diff --git a/sys-apps/ack/files/ack-2.14-gentoo.patch b/sys-apps/ack/files/ack-2.14-gentoo.patch new file mode 100644 index 000000000000..80f0747deef9 --- /dev/null +++ b/sys-apps/ack/files/ack-2.14-gentoo.patch @@ -0,0 +1,22 @@ +--- ack-2.14/ConfigDefault.pm ++++ ack-2.14/ConfigDefault.pm +@@ -252,6 +252,9 @@ + # http://en.wikipedia.org/wiki/Fortran + --type-add=fortran:ext:f,f77,f90,f95,f03,for,ftn,fpp + ++# Gentoo http://www.gentoo.org/ ++--type-add=gentoo:ext:ebuild,eclass ++ + # Go + # http://golang.org/ + --type-add=go:ext:go +--- ack-2.14/t/ack-filetypes.t ++++ ack-2.14/t/ack-filetypes.t +@@ -26,6 +26,7 @@ + elisp + erlang + fortran ++gentoo + go + groovy + haskell |