Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/igmpproxy/
Date: Mon, 31 Oct 2022 13:36:34
Message-Id: 1667223101.4c9f72cc9d5162ff1ea736e9ac371b22e5d93084.conikost@gentoo
1 commit: 4c9f72cc9d5162ff1ea736e9ac371b22e5d93084
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 31 13:31:41 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 31 13:31:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c9f72cc
7
8 net-misc/igmpproxy: add 0.4
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 net-misc/igmpproxy/Manifest | 1 +
13 net-misc/igmpproxy/igmpproxy-0.4.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/net-misc/igmpproxy/Manifest b/net-misc/igmpproxy/Manifest
17 index b95a32c6d533..993628fbced8 100644
18 --- a/net-misc/igmpproxy/Manifest
19 +++ b/net-misc/igmpproxy/Manifest
20 @@ -1 +1,2 @@
21 DIST igmpproxy-0.3.tar.gz 168403 BLAKE2B 4dd07936074fbd9b3c869851f5b592f1eec33109be78ee5a05b3658c26afb67c30379f7cc66dfa20af276aae0a1c21dbf5c9fd337c853d623b08126324b06561 SHA512 0b1deca544317e2f0b1ff550e5921e8d6f64565f7cd72b6210fc7d3d7c3a301875088687a31ca5a29d310b2931695bd7a77e41dc5685ab7175ea1d41fe9246af
22 +DIST igmpproxy-0.4.tar.gz 170700 BLAKE2B 233af2fe35a0d661211d205fec89cce0a7dc91fe1530e940703e6d56eeb69f4490ca16d18787dbbaf7c0087dc2ebcb61d212778993af6fbb8acc7ba33429f7e0 SHA512 ad5d8f0794cf74e42f6f99a57815402904ef7f03b76a901885c16aa0d148e552ce001832e82e4cc4ac33e2d4fd6059c51352363f13f192bca48ea9bca12c640c
23
24 diff --git a/net-misc/igmpproxy/igmpproxy-0.4.ebuild b/net-misc/igmpproxy/igmpproxy-0.4.ebuild
25 new file mode 100644
26 index 000000000000..3683a01cbe83
27 --- /dev/null
28 +++ b/net-misc/igmpproxy/igmpproxy-0.4.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit autotools linux-info systemd
36 +
37 +DESCRIPTION="A multicast routing daemon which uses IGMP forwarding"
38 +HOMEPAGE="https://github.com/pali/igmpproxy"
39 +SRC_URI="https://github.com/pali/${PN}/releases/download/${PV}/${P}.tar.gz"
40 +
41 +KEYWORDS="~amd64 ~x86"
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +
45 +CONFIG_CHECK="~IP_MULTICAST ~IP_MROUTE"
46 +
47 +src_prepare() {
48 + default
49 +
50 + eautoreconf
51 +}
52 +
53 +src_install() {
54 + default
55 +
56 + newinitd "${FILESDIR}"/igmpproxy.initd-r1 igmpproxy
57 + systemd_dounit "${FILESDIR}"/"${PN}".service
58 +
59 + newconfd "${FILESDIR}"/igmpproxy.confd igmpproxy
60 +}