diff options
author | 2009-09-08 20:59:00 +0000 | |
---|---|---|
committer | 2009-09-08 20:59:00 +0000 | |
commit | 3d6f4b161ca2f647b1616a70ff490fd0f7e737b6 (patch) | |
tree | ca5f710bef10131bb29cb14eeeef8c041ac0671c /sys-apps/ack | |
parent | Set SUPPORT_PYTHON_ABIS. (diff) | |
download | gentoo-2-3d6f4b161ca2f647b1616a70ff490fd0f7e737b6.tar.gz gentoo-2-3d6f4b161ca2f647b1616a70ff490fd0f7e737b6.tar.bz2 gentoo-2-3d6f4b161ca2f647b1616a70ff490fd0f7e737b6.zip |
Bump to 1.90, fixes #284183
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/ack')
-rw-r--r-- | sys-apps/ack/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/ack/ack-1.90.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/sys-apps/ack/ChangeLog b/sys-apps/ack/ChangeLog index 2b67519b9709..acd3e7cee327 100644 --- a/sys-apps/ack/ChangeLog +++ b/sys-apps/ack/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/ack # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/ack/ChangeLog,v 1.10 2009/07/26 19:13:27 tcunha Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ack/ChangeLog,v 1.11 2009/09/08 20:59:00 patrick Exp $ + +*ack-1.90 (08 Sep 2009) + + 08 Sep 2009; Patrick Lauer <patrick@gentoo.org> +ack-1.90.ebuild: + Bump to 1.90, fixes #284183 26 Jul 2009; Tiago Cunha <tcunha@gentoo.org> ack-1.88-r1.ebuild: stable amd64, bug 277477 diff --git a/sys-apps/ack/ack-1.90.ebuild b/sys-apps/ack/ack-1.90.ebuild new file mode 100644 index 000000000000..74931574c2c1 --- /dev/null +++ b/sys-apps/ack/ack-1.90.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ack/ack-1.90.ebuild,v 1.1 2009/09/08 20:59:00 patrick Exp $ + +inherit perl-module bash-completion + +DESCRIPTION="ack is a tool like grep, aimed at programmers with large trees of heterogeneous source code" +HOMEPAGE="http://www.petdance.com/ack/" +SRC_URI="mirror://cpan/authors/id/P/PE/PETDANCE/${P}.tar.gz" + +LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +SRC_TEST=do + +DEPEND=">=dev-perl/File-Next-1.02 + dev-lang/perl" +RDEPEND="${DEPEND}" + +src_install() { + perl-module_src_install + dobashcompletion etc/ack.bash_completion.sh +} + +pkg_postinst() { + perl-module_pkg_postinst + bash-completion_pkg_postinst +} |