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 BD5D0158041 for ; Tue, 20 Feb 2024 05:06:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CC5D2BC024; Tue, 20 Feb 2024 05:06:14 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 321AC2BC01F for ; Tue, 20 Feb 2024 05:06:14 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 41113343162 for ; Tue, 20 Feb 2024 05:06:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 433F014D2 for ; Tue, 20 Feb 2024 05:06:10 +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: <1708405498.9af9987a199037372852eac1f4455087757ad61f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnetfilter_conntrack/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.9.ebuild X-VCS-Directories: net-libs/libnetfilter_conntrack/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9af9987a199037372852eac1f4455087757ad61f X-VCS-Branch: master Date: Tue, 20 Feb 2024 05:06:10 +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: 25d0884d-e3f4-4c47-a506-ce6d3bd20c51 X-Archives-Hash: 3259d6236264cef714565c881034c7b2 commit: 9af9987a199037372852eac1f4455087757ad61f Author: Sam James gentoo org> AuthorDate: Tue Feb 20 05:04:58 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Feb 20 05:04:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9af9987a net-libs/libnetfilter_conntrack: drop 1.0.9 Signed-off-by: Sam James gentoo.org> .../libnetfilter_conntrack-1.0.9.ebuild | 51 ---------------------- 1 file changed, 51 deletions(-) diff --git a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.9.ebuild b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.9.ebuild deleted file mode 100644 index 5610bdf51498..000000000000 --- a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.9.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit linux-info verify-sig - -DESCRIPTION="Programming interface (API) to the in-kernel connection tracking state table" -HOMEPAGE="https://www.netfilter.org/projects/libnetfilter_conntrack/" -SRC_URI="https://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2 - verify-sig? ( https://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2.sig )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" -VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/netfilter.org.asc - -RDEPEND=">=net-libs/libmnl-1.0.3 - >=net-libs/libnfnetlink-1.0.0" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig - verify-sig? ( sec-keys/openpgp-keys-netfilter )" - -DOCS=( README ) - -PATCHES=( - "${FILESDIR}"/${P}-musl.patch -) - -pkg_setup() { - linux-info_pkg_setup - - if kernel_is lt 2 6 18 ; then - die "${PN} requires at least 2.6.18 kernel version" - fi - - # netfilter core team has changed some option names with kernel 2.6.20 - if kernel_is lt 2 6 20 ; then - CONFIG_CHECK="~IP_NF_CONNTRACK_NETLINK" - else - CONFIG_CHECK="~NF_CT_NETLINK" - fi - - check_extra_config -} - -src_install() { - default - - find "${ED}" -name '*.la' -delete || die -}