From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1154393-garchives=archives.gentoo.org@lists.gentoo.org> 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 8C269138350 for <garchives@archives.gentoo.org>; Sat, 21 Mar 2020 14:10:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC822E0B72; Sat, 21 Mar 2020 14:10:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 22110E0B34 for <gentoo-commits@lists.gentoo.org>; Sat, 21 Mar 2020 14:10:40 +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 C227034F096 for <gentoo-commits@lists.gentoo.org>; Sat, 21 Mar 2020 14:10:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5206D18E for <gentoo-commits@lists.gentoo.org>; Sat, 21 Mar 2020 14:10:37 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1584799821.8dbb0ed73fef732b82ee4a1a477bea1ed629c3eb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/resolv_wrapper/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/resolv_wrapper/resolv_wrapper-1.1.5.ebuild X-VCS-Directories: net-dns/resolv_wrapper/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8dbb0ed73fef732b82ee4a1a477bea1ed629c3eb X-VCS-Branch: master Date: Sat, 21 Mar 2020 14:10:37 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f034be5c-6727-4207-be0e-29d5d265e2b5 X-Archives-Hash: 5a317a9831c7da49e08c1a66657c851f commit: 8dbb0ed73fef732b82ee4a1a477bea1ed629c3eb Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Thu Mar 19 13:20:47 2020 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sat Mar 21 14:10:21 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dbb0ed7 net-dns/resolv_wrapper: EAPI-7 bump, use cmake.eclass Dropping unused USE test. Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> net-dns/resolv_wrapper/resolv_wrapper-1.1.5.ebuild | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/net-dns/resolv_wrapper/resolv_wrapper-1.1.5.ebuild b/net-dns/resolv_wrapper/resolv_wrapper-1.1.5.ebuild index ba89b7e9fb9..f936bc18a14 100644 --- a/net-dns/resolv_wrapper/resolv_wrapper-1.1.5.ebuild +++ b/net-dns/resolv_wrapper/resolv_wrapper-1.1.5.ebuild @@ -1,25 +1,22 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 +CMAKE_ECLASS=cmake inherit cmake-multilib -DESCRIPTION="A wrapper for DNS name resolving or DNS faking" +DESCRIPTION="Wrapper for DNS name resolving or DNS faking" HOMEPAGE="https://cwrap.org/resolv_wrapper.html" SRC_URI="https://ftp.samba.org/pub/cwrap/${P}.tar.gz" + LICENSE="BSD" SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND="" -RDEPEND="${DEPEND}" # Work around a problem with >=dev-util/cmake-3.3.0 (bug #558340) # Because of this we cannot use cmake-multilib_src_configure() here. multilib_src_configure() { local mycmakeargs=( -DCMAKE_LIBRARY_PATH=/usr/$(get_libdir) ) - cmake-utils_src_configure + cmake_src_configure }