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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3C57E158091 for ; Sun, 5 Jun 2022 13:25:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54566E0893; Sun, 5 Jun 2022 13:25:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35816E0893 for ; Sun, 5 Jun 2022 13:25:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 66D1B34170C for ; Sun, 5 Jun 2022 13:25:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDC5747E for ; Sun, 5 Jun 2022 13:25:40 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1654435527.fa53e9d7a0c77755c414c1fa012329c98e8c6705.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libestr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libestr/libestr-0.1.11-r1.ebuild dev-libs/libestr/libestr-0.1.11.ebuild X-VCS-Directories: dev-libs/libestr/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: fa53e9d7a0c77755c414c1fa012329c98e8c6705 X-VCS-Branch: master Date: Sun, 5 Jun 2022 13:25:40 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 25fd9fad-ae5c-402a-83ce-efeb3e381940 X-Archives-Hash: 919ee0ad1dd5dbf589dd28b7e9402962 commit: fa53e9d7a0c77755c414c1fa012329c98e8c6705 Author: Maciej Barć gentoo org> AuthorDate: Sun Jun 5 13:11:54 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sun Jun 5 13:25:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa53e9d7 dev-libs/libestr: bump to EAPI 8; minor tweaks Signed-off-by: Maciej Barć gentoo.org> .../libestr/{libestr-0.1.11.ebuild => libestr-0.1.11-r1.ebuild} | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/dev-libs/libestr/libestr-0.1.11.ebuild b/dev-libs/libestr/libestr-0.1.11-r1.ebuild similarity index 89% rename from dev-libs/libestr/libestr-0.1.11.ebuild rename to dev-libs/libestr/libestr-0.1.11-r1.ebuild index 46bfad9d48e4..ad8ff4a5ae64 100644 --- a/dev-libs/libestr/libestr-0.1.11.ebuild +++ b/dev-libs/libestr/libestr-0.1.11-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 inherit autotools @@ -15,12 +15,8 @@ KEYWORDS="amd64 arm arm64 ~hppa x86" IUSE="debug static-libs test" RESTRICT="!test? ( test )" -DEPEND="" -RDEPEND="${DEPEND}" - src_prepare() { default - eautoreconf } @@ -30,7 +26,6 @@ src_configure() { $(use_enable static-libs static) $(use_enable test testbench) ) - econf "${myeconfargs[@]}" }