Gentoo Archives: gentoo-commits

From: Viorel Munteanu <ceamac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rinetd/, net-misc/rinetd/files/
Date: Tue, 31 Jan 2023 05:33:15
Message-Id: 1675143170.0496527537647fe9387252a20d7580cde21f7b48.ceamac@gentoo
1 commit: 0496527537647fe9387252a20d7580cde21f7b48
2 Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 31 05:32:18 2023 +0000
4 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 31 05:32:50 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04965275
7
8 net-misc/rinetd: drop 0.62-r3
9
10 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
11
12 net-misc/rinetd/Manifest | 1 -
13 net-misc/rinetd/files/rinetd-0.62-clang16.patch | 11 -------
14 net-misc/rinetd/rinetd-0.62-r3.ebuild | 42 -------------------------
15 3 files changed, 54 deletions(-)
16
17 diff --git a/net-misc/rinetd/Manifest b/net-misc/rinetd/Manifest
18 index f4c5ff624624..d7df5fbf9d00 100644
19 --- a/net-misc/rinetd/Manifest
20 +++ b/net-misc/rinetd/Manifest
21 @@ -1,2 +1 @@
22 -DIST rinetd-0.62.tar.gz 115541 BLAKE2B 11a6db6955181ba6c823c3b8d9697e4efac10962364b4e993e9057b3500b09161826d325ac0dc3f6756c5cc91b29885c493ba5f053dffd28da97ecae25d2346f SHA512 b6ddb496b4542ad46aacaef4b2241b16b9ee43f2f6761a18a4813d83a0a9db23fbd73a554393dcf01ae7350e8b6662571414ca6f93a949ce4effbbeddc198606
23 DIST rinetd-0.73.tar.bz2 115343 BLAKE2B c85ff0b65d28095a554b53bc7a1b162cbbdb8eabd1c3d1bd8475c64a5b9dd7ec576036e2318d3a8125ac52af323f8238bb4a3e05fe37d1d9ad87e4d6d6fbcb3b SHA512 e5d1c7e5826a75c520453032f6e4651700860505dfced625698fc036249b9f585a894e1fee905321878b2d2a265c843f5a746090311929518594263b33b64ed8
24
25 diff --git a/net-misc/rinetd/files/rinetd-0.62-clang16.patch b/net-misc/rinetd/files/rinetd-0.62-clang16.patch
26 deleted file mode 100644
27 index 1aefd48aff1e..000000000000
28 --- a/net-misc/rinetd/files/rinetd-0.62-clang16.patch
29 +++ /dev/null
30 @@ -1,11 +0,0 @@
31 -https://bugs.gentoo.org/871060
32 ---- a/rinetd.c
33 -+++ b/rinetd.c
34 -@@ -12,2 +12,3 @@
35 - #include <netinet/in.h>
36 -+#include <arpa/inet.h>
37 - #include <getopt.h>
38 -@@ -25,2 +26,3 @@
39 - #include <ctype.h>
40 -+#include <unistd.h>
41 -
42
43 diff --git a/net-misc/rinetd/rinetd-0.62-r3.ebuild b/net-misc/rinetd/rinetd-0.62-r3.ebuild
44 deleted file mode 100644
45 index b6df56b6242f..000000000000
46 --- a/net-misc/rinetd/rinetd-0.62-r3.ebuild
47 +++ /dev/null
48 @@ -1,42 +0,0 @@
49 -# Copyright 1999-2022 Gentoo Authors
50 -# Distributed under the terms of the GNU General Public License v2
51 -
52 -EAPI=8
53 -
54 -inherit toolchain-funcs
55 -
56 -DESCRIPTION="redirects TCP connections from one IP address and port to another"
57 -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
58 -SRC_URI="mirror://gentoo/${P}.tar.gz"
59 -S="${WORKDIR}/${PN}"
60 -
61 -LICENSE="GPL-2+ GPL-2"
62 -SLOT="0"
63 -KEYWORDS="amd64 x86"
64 -
65 -PATCHES=(
66 - "${FILESDIR}"/${P}-clang16.patch
67 -)
68 -
69 -src_prepare() {
70 - default
71 -
72 - sed -i '/gcc rinetd/d' Makefile || die
73 -}
74 -
75 -src_compile() {
76 - tc-export CC
77 -
78 - emake CFLAGS="${CFLAGS} -DLINUX"
79 -}
80 -
81 -src_install() {
82 - dosbin rinetd
83 - doman rinetd.8
84 - einstalldocs
85 -
86 - docinto html
87 - dodoc index.html
88 -
89 - newinitd "${FILESDIR}"/rinetd.rc rinetd
90 -}