From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 256D41382C5 for ; Sat, 3 Feb 2018 09:15:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A01B8E0A8A; Sat, 3 Feb 2018 09:15:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7CFF5E0A8A for ; Sat, 3 Feb 2018 09:15:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 79FDE335C54 for ; Sat, 3 Feb 2018 09:15:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9D8F1E0 for ; Sat, 3 Feb 2018 09:15:07 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1517648642.8543e6d21c7ac3fd0fcb24c7a9db9ca7760e2779.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ack/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/ack/Manifest sys-apps/ack/ack-2.22.ebuild X-VCS-Directories: sys-apps/ack/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 8543e6d21c7ac3fd0fcb24c7a9db9ca7760e2779 X-VCS-Branch: master Date: Sat, 3 Feb 2018 09:15:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 47706e97-eaf2-460e-9be6-f9266dac00f3 X-Archives-Hash: 819fe17526a94d5602fefaeeec68215f commit: 8543e6d21c7ac3fd0fcb24c7a9db9ca7760e2779 Author: Tim Harder gentoo org> AuthorDate: Fri Feb 2 09:30:56 2018 +0000 Commit: Tim Harder gentoo org> CommitDate: Sat Feb 3 09:04:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8543e6d2 sys-apps/ack: version bump to 2.22 sys-apps/ack/Manifest | 1 + sys-apps/ack/ack-2.22.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/sys-apps/ack/Manifest b/sys-apps/ack/Manifest index 5284511de6f..fe9c62d3f0c 100644 --- a/sys-apps/ack/Manifest +++ b/sys-apps/ack/Manifest @@ -1 +1,2 @@ DIST ack-2.18.tar.gz 232279 BLAKE2B dc7c347eee2be367a2b1bd4839719661f1c0de68bd3fcb3512c68cb5c42e09e8208712e7e3c57b418a00c961a933574a0c09c7f107fe43a4f96efeae21fbc8d8 SHA512 4147161baa8d82fb84b29980d5eac7cf3197733192ca827d3fa4e8f55fa9df29d92b2ac21beb69df00186eea03c7ae6fcb85d6e4334a0a21c232ddeb4933bcf5 +DIST ack-2.22.tar.gz 250275 BLAKE2B 52cafe63b6f4aa50feb3a8d68141662fbbec7a73d31b2f06d3d63c7efb9ba681214ac20fbfd299f680d4e3758eaed8b4b9b3cd697f38977f2e0657a90dc0478a SHA512 d0073c424d861f2cfdc2ce8c0dfa149620803b4c30adb6c6f4f8896277ac89bb6d97d3e8e9bdfd1202f95808bd387b2e3a8353a3e7d204cdd61eb9cafde48303 diff --git a/sys-apps/ack/ack-2.22.ebuild b/sys-apps/ack/ack-2.22.ebuild new file mode 100644 index 00000000000..3e28da27b33 --- /dev/null +++ b/sys-apps/ack/ack-2.22.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +DIST_AUTHOR=PETDANCE +inherit perl-module + +DESCRIPTION="ack is a tool like grep, optimized for programmers" +HOMEPAGE="https://beyondgrep.com/ ${HOMEPAGE}" + +LICENSE="Artistic-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="test" + +RDEPEND=">=dev-perl/File-Next-1.160.0" +DEPEND="${RDEPEND} + test? ( dev-perl/IO-Tty )" + +PATCHES=( "${FILESDIR}"/${PN}-2.14-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 +}