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 6973815800A for ; Mon, 17 Jul 2023 23:21:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4267E08C8; Mon, 17 Jul 2023 23:21:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 81D76E08C8 for ; Mon, 17 Jul 2023 23:21:56 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F6D2335CEA for ; Mon, 17 Jul 2023 23:21:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A8F3A99 for ; Mon, 17 Jul 2023 23:21:53 +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: <1689636066.ea418eaedef80e80dc7e868ddd8b9130753f69c1.sam@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-9999.ebuild X-VCS-Directories: net-analyzer/net-snmp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ea418eaedef80e80dc7e868ddd8b9130753f69c1 X-VCS-Branch: master Date: Mon, 17 Jul 2023 23:21:53 +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: 74b8fa7c-6cfb-4fcc-b49d-6d9096a3e1c8 X-Archives-Hash: b9c1f35a1398fad74b451fb2d8dda2e0 commit: ea418eaedef80e80dc7e868ddd8b9130753f69c1 Author: Sam James gentoo org> AuthorDate: Mon Jul 17 23:21:06 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jul 17 23:21:06 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea418eae net-analyzer/net-snmp: port live to libpcre2 Signed-off-by: Sam James gentoo.org> net-analyzer/net-snmp/net-snmp-9999.ebuild | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/net-analyzer/net-snmp/net-snmp-9999.ebuild b/net-analyzer/net-snmp/net-snmp-9999.ebuild index c7a25ac6302a..1c946612076d 100644 --- a/net-analyzer/net-snmp/net-snmp-9999.ebuild +++ b/net-analyzer/net-snmp/net-snmp-9999.ebuild @@ -6,7 +6,7 @@ EAPI=8 DISTUTILS_OPTIONAL=yes DISTUTILS_SINGLE_IMPL=yes GENTOO_DEPEND_ON_PERL=no -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) WANT_AUTOMAKE=none inherit autotools distutils-r1 perl-module systemd @@ -47,7 +47,7 @@ COMMON_DEPEND=" netlink? ( dev-libs/libnl:3 ) pcap? ( net-libs/libpcap ) pci? ( sys-apps/pciutils ) - pcre? ( dev-libs/libpcre ) + pcre? ( dev-libs/libpcre2 ) perl? ( dev-lang/perl:= ) python? ( $(python_gen_cond_dep ' @@ -91,12 +91,6 @@ PATCHES=( "${FILESDIR}"/${PN}-5.8-pcap.patch "${FILESDIR}"/${PN}-5.8.1-mysqlclient.patch "${FILESDIR}"/${PN}-5.9-MakeMaker.patch - "${FILESDIR}"/${P}-configure-clang16.patch - # https://github.com/net-snmp/net-snmp/pull/493 - "${FILESDIR}"/${PN}-5.9.3-0001-Fix-LDFLAGS-vs-LIBS-ordering.patch - "${FILESDIR}"/${PN}-5.9.3-0002-Tidy-up-net-snmp-config-output.patch - "${FILESDIR}"/${PN}-5.9.3-0003-Prune-Libs.private-entries-in-netsnmp-.pc.in.patch - "${FILESDIR}"/${PN}-5.9.3-0004-Search-for-ltinfo-in-configure-if-needed.patch ) pkg_setup() { @@ -148,7 +142,8 @@ src_configure() { $(use_with netlink nl) \ $(use_with pcap) \ $(use_with pci) \ - $(use_with pcre) \ + $(use_with pcre pcre2-8) \ + --without-pcre \ $(use_with perl perl-modules INSTALLDIRS=vendor) \ $(use_with python python-modules) \ $(use_with rpm) \