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 4FC21138334 for ; Tue, 30 Oct 2018 16:38:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A0ACE0653; Tue, 30 Oct 2018 16:38:54 +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 037F9E0653 for ; Tue, 30 Oct 2018 16:38:53 +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 9B862335C58 for ; Tue, 30 Oct 2018 16:38:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E24EB42F for ; Tue, 30 Oct 2018 16:38:50 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1540917522.a874eaccf3f560a31559b8d34339439401b89526.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/less/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/less/less-540-r1.ebuild sys-apps/less/less-540.ebuild X-VCS-Directories: sys-apps/less/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: a874eaccf3f560a31559b8d34339439401b89526 X-VCS-Branch: master Date: Tue, 30 Oct 2018 16:38:50 +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: bcef81a2-e48f-469c-9706-d49178004566 X-Archives-Hash: af5b228ebbcc82bd9ee39c6019a33898 commit: a874eaccf3f560a31559b8d34339439401b89526 Author: Lars Wendler gentoo org> AuthorDate: Tue Oct 30 16:38:27 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Oct 30 16:38:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a874eacc sys-apps/less: Revbump to use pcre2 instead of pcre. Closes: https://bugs.gentoo.org/669976 Signed-off-by: Lars Wendler gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sys-apps/less/{less-540.ebuild => less-540-r1.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-apps/less/less-540.ebuild b/sys-apps/less/less-540-r1.ebuild similarity index 95% rename from sys-apps/less/less-540.ebuild rename to sys-apps/less/less-540-r1.ebuild index 3d7a9f40c80..3bc3bf38932 100644 --- a/sys-apps/less/less-540.ebuild +++ b/sys-apps/less/less-540-r1.ebuild @@ -14,14 +14,14 @@ IUSE="pcre unicode" DEPEND=">=app-misc/editor-wrapper-3 >=sys-libs/ncurses-5.2:0= - pcre? ( dev-libs/libpcre )" + pcre? ( dev-libs/libpcre2 )" RDEPEND="${DEPEND}" src_configure() { export ac_cv_lib_ncursesw_initscr=$(usex unicode) export ac_cv_lib_ncurses_initscr=$(usex !unicode) local myeconfargs=( - --with-regex=$(usex pcre pcre posix) + --with-regex=$(usex pcre pcre2 posix) --with-editor="${EPREFIX}"/usr/libexec/editor ) econf "${myeconfargs[@]}"