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 3F2671382C5 for ; Mon, 19 Apr 2021 19:12:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82E57E083D; Mon, 19 Apr 2021 19:12:50 +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 69360E083D for ; Mon, 19 Apr 2021 19:12:50 +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 6AB0E340E57 for ; Mon, 19 Apr 2021 19:12:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B51172E for ; Mon, 19 Apr 2021 19:12:44 +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: <1618859533.67ff77e87f243a28e94620a89843a8b631591ae8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gsnmp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/gsnmp/gsnmp-0.3.0.ebuild X-VCS-Directories: net-libs/gsnmp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 67ff77e87f243a28e94620a89843a8b631591ae8 X-VCS-Branch: master Date: Mon, 19 Apr 2021 19:12:44 +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: d11f77b6-9061-4c3c-8723-2c274f6188f6 X-Archives-Hash: 1bf6a7791965b9e4eea359d43a26b44c commit: 67ff77e87f243a28e94620a89843a8b631591ae8 Author: Sam James gentoo org> AuthorDate: Mon Apr 19 18:43:17 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 19 19:12:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67ff77e8 net-libs/gsnmp: port to EAPI 7 Signed-off-by: Sam James gentoo.org> net-libs/gsnmp/gsnmp-0.3.0.ebuild | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/net-libs/gsnmp/gsnmp-0.3.0.ebuild b/net-libs/gsnmp/gsnmp-0.3.0.ebuild index e38b808d2f6..03183265f56 100644 --- a/net-libs/gsnmp/gsnmp-0.3.0.ebuild +++ b/net-libs/gsnmp/gsnmp-0.3.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit autotools epatch ltprune +inherit autotools DESCRIPTION="An SNMP library based on glib and gnet" HOMEPAGE="https://github.com/schoenw/gsnmp" @@ -19,14 +19,18 @@ DEPEND=" net-libs/gnet " RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" -DOCS="README" +DOCS=( README ) + +PATCHES=( + "${FILESDIR}"/${P}-g_access.patch + "${FILESDIR}"/${P}-pkg_config.patch + "${FILESDIR}"/${P}-underquoting.patch +) src_prepare() { - epatch \ - "${FILESDIR}"/${P}-g_access.patch \ - "${FILESDIR}"/${P}-pkg_config.patch \ - "${FILESDIR}"/${P}-underquoting.patch + default eautoreconf } @@ -38,5 +42,5 @@ src_configure() { src_install() { default - prune_libtool_files + find "${ED}" -name '*.la' -delete || die }