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 3AEEC138334 for ; Sat, 7 Dec 2019 13:05:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1867BE0858; Sat, 7 Dec 2019 13:05:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 1330CE0858 for ; Sat, 7 Dec 2019 13:05:19 +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 A11E834D85D for ; Sat, 7 Dec 2019 13:05:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F05F8D0 for ; Sat, 7 Dec 2019 13:05:16 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1575723910.89c704984a3f721a4c8cddc22d58323aa94c326d.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/net-snmp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/net-snmp/net-snmp-99999999.ebuild X-VCS-Directories: net-analyzer/net-snmp/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 89c704984a3f721a4c8cddc22d58323aa94c326d X-VCS-Branch: master Date: Sat, 7 Dec 2019 13:05:16 +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: c38da803-f37b-469d-8d0f-4fe1b7ccf8d6 X-Archives-Hash: 6954621673afe585b582d406e0e0ac59 commit: 89c704984a3f721a4c8cddc22d58323aa94c326d Author: Jeroen Roovers gentoo org> AuthorDate: Sat Dec 7 12:54:12 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Dec 7 13:05:10 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c70498 net-analyzer/net-snmp: Update live ebuild Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: Jeroen Roovers gentoo.org> net-analyzer/net-snmp/net-snmp-99999999.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/net-analyzer/net-snmp/net-snmp-99999999.ebuild b/net-analyzer/net-snmp/net-snmp-99999999.ebuild index c6deae576b9..901356c5a93 100644 --- a/net-analyzer/net-snmp/net-snmp-99999999.ebuild +++ b/net-analyzer/net-snmp/net-snmp-99999999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python2_7 ) DISTUTILS_SINGLE_IMPL=yesplz DISTUTILS_OPTIONAL=yesplz @@ -9,7 +9,7 @@ WANT_AUTOMAKE=none PATCHSET=3 GENTOO_DEPEND_ON_PERL=no -inherit autotools distutils-r1 eutils git-r3 perl-module systemd +inherit autotools distutils-r1 git-r3 perl-module systemd DESCRIPTION="Software for generating and retrieving SNMP data" HOMEPAGE="http://www.net-snmp.org/" @@ -72,8 +72,10 @@ S=${WORKDIR}/${P/_p*/} RESTRICT=test PATCHES=( "${FILESDIR}"/${PN}-5.7.3-include-limits.patch + "${FILESDIR}"/${PN}-5.8-do-not-conflate-LDFLAGS-and-LIBS.patch "${FILESDIR}"/${PN}-5.8-pcap.patch "${FILESDIR}"/${PN}-5.8-tinfo.patch + "${FILESDIR}"/${PN}-5.8.1-pkg-config.patch ) pkg_setup() { @@ -149,6 +151,8 @@ src_install () { # bug #317965 emake -j1 DESTDIR="${D}" install + use python && python_optimize + if use perl ; then perl_delete_localpod if ! use X; then @@ -203,5 +207,5 @@ src_install () { || die fi - prune_libtool_files + find "${ED}" -name '*.la' -delete || die }