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 D124D13835A for ; Mon, 1 Feb 2021 13:30:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 044D1E093D; Mon, 1 Feb 2021 13:30:43 +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 DFDFFE093D for ; Mon, 1 Feb 2021 13:30:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 57F35340EEB for ; Mon, 1 Feb 2021 13:30:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B93024B0 for ; Mon, 1 Feb 2021 13:30:39 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1612174821.3bbec67e236f6c9ec66ed4db42a2b2628a88bc2a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/net6/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/net6/net6-1.3.14-r2.ebuild X-VCS-Directories: net-libs/net6/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3bbec67e236f6c9ec66ed4db42a2b2628a88bc2a X-VCS-Branch: master Date: Mon, 1 Feb 2021 13:30:39 +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: 7da5925b-bfea-4eed-9187-60a2287c543a X-Archives-Hash: 15f2ea00481e49f9b996aa9a4e256a38 commit: 3bbec67e236f6c9ec66ed4db42a2b2628a88bc2a Author: Sam James gentoo org> AuthorDate: Mon Feb 1 09:28:37 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Feb 1 10:20:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bbec67e net-libs/net6: port to EAPI 7 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> net-libs/net6/net6-1.3.14-r2.ebuild | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/net-libs/net6/net6-1.3.14-r2.ebuild b/net-libs/net6/net6-1.3.14-r2.ebuild index 7d269bc823c..cb41c438fc5 100644 --- a/net-libs/net6/net6-1.3.14-r2.ebuild +++ b/net-libs/net6/net6-1.3.14-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit eutils flag-o-matic ltprune multilib +inherit flag-o-matic DESCRIPTION="Network access framework for IPv4/IPv6 written in C++" HOMEPAGE="http://gobby.0x539.de/" @@ -12,13 +12,17 @@ SRC_URI="http://releases.0x539.de/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ~arm ~hppa ppc x86" -IUSE="nls static-libs" +IUSE="nls" -RDEPEND="dev-libs/libsigc++:2 - >=net-libs/gnutls-1.2.10" -DEPEND="${RDEPEND} +BDEPEND=" virtual/pkgconfig - nls? ( sys-devel/gettext )" + nls? ( sys-devel/gettext ) +" +RDEPEND=" + dev-libs/libsigc++:2 + >=net-libs/gnutls-1.2.10:= +" +DEPEND="${RDEPEND}" DOCS=( AUTHORS ChangeLog NEWS README ) PATCHES=( @@ -27,11 +31,14 @@ PATCHES=( src_configure() { append-cxxflags -std=c++11 - econf $(use_enable nls) \ - $(use_enable static-libs static) + + econf \ + --disable-static \ + $(use_enable nls) } src_install() { default - prune_libtool_files + + find "${ED}" -name '*.la' -delete || die }