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 A753E15810D for ; Wed, 31 May 2023 00:19:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5B34E09E9; Wed, 31 May 2023 00:19:00 +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 A8DC4E09E9 for ; Wed, 31 May 2023 00:19:00 +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 958ED340F5F for ; Wed, 31 May 2023 00:18:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC08AA7D for ; Wed, 31 May 2023 00:18:57 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1685492299.2a4aca8f5798c0068b593c591f3bf09b786e7355.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/rtsp-conntrack/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-firewall/rtsp-conntrack/rtsp-conntrack-5.3-r1.ebuild X-VCS-Directories: net-firewall/rtsp-conntrack/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 2a4aca8f5798c0068b593c591f3bf09b786e7355 X-VCS-Branch: master Date: Wed, 31 May 2023 00:18:57 +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: 8b0c7df1-d314-4b56-b731-33f00d4f09d7 X-Archives-Hash: 53be477644bac52b811eca92f8571fc4 commit: 2a4aca8f5798c0068b593c591f3bf09b786e7355 Author: Ionen Wolkens gentoo org> AuthorDate: Tue May 30 23:50:44 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed May 31 00:18:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a4aca8f net-firewall/rtsp-conntrack: EAPI7->8, migrate to linux-mod-r1 The modulesd .conf are lost but they did not seem useful, users can make their own or keep the old if modified (does nothing by default, just a template). Signed-off-by: Ionen Wolkens gentoo.org> .../rtsp-conntrack/rtsp-conntrack-5.3-r1.ebuild | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/net-firewall/rtsp-conntrack/rtsp-conntrack-5.3-r1.ebuild b/net-firewall/rtsp-conntrack/rtsp-conntrack-5.3-r1.ebuild new file mode 100644 index 000000000000..501856d25c2c --- /dev/null +++ b/net-firewall/rtsp-conntrack/rtsp-conntrack-5.3-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit linux-mod-r1 + +DESCRIPTION="RTSP conntrack module for Netfilter" +HOMEPAGE="http://mike.it-loops.com/rtsp" +SRC_URI="https://github.com/maru-sama/rtsp-linux/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/rtsp-linux-${PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +CONFIG_CHECK="NF_CONNTRACK" + +src_compile() { + local modlist=( + nf_conntrack_rtsp=net/netfilter:::all + nf_nat_rtsp=net/ipv4/netfilter:::all + ) + local modargs=( KERNELDIR="${KV_OUT_DIR}" ) + + linux-mod-r1_src_compile +}