Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/socat/
Date: Fri, 24 Sep 2021 17:45:43
Message-Id: 1632505520.a6879406ac48246a96799e710176fcd8f0d3bca4.sam@gentoo
1 commit: a6879406ac48246a96799e710176fcd8f0d3bca4
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 24 17:44:00 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 24 17:45:20 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6879406
7
8 net-misc/socat: drop (broken) 9999
9
10 Apparently I broke it (when syncing with release ebuilds)
11 9 months ago and nobody has noticed. Let's get rid of it.
12
13 Fixes: df13bd514e0d04eb52593e0b43c40c422ce09ad4
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 net-misc/socat/socat-9999.ebuild | 64 ----------------------------------------
17 1 file changed, 64 deletions(-)
18
19 diff --git a/net-misc/socat/socat-9999.ebuild b/net-misc/socat/socat-9999.ebuild
20 deleted file mode 100644
21 index e0872e55666..00000000000
22 --- a/net-misc/socat/socat-9999.ebuild
23 +++ /dev/null
24 @@ -1,64 +0,0 @@
25 -# Copyright 1999-2021 Gentoo Authors
26 -# Distributed under the terms of the GNU General Public License v2
27 -
28 -EAPI=7
29 -
30 -inherit autotools flag-o-matic toolchain-funcs
31 -
32 -DESCRIPTION="Multipurpose relay (SOcket CAT)"
33 -HOMEPAGE="http://www.dest-unreach.org/socat/ https://repo.or.cz/socat.git"
34 -EGIT_REPO_URI="https://repo.or.cz/${PN}.git"
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -IUSE="bindist ipv6 readline ssl tcpd"
39 -
40 -BDEPEND="app-text/yodl"
41 -DEPEND="
42 - ssl? ( dev-libs/openssl:0= )
43 - readline? ( sys-libs/readline:= )
44 - tcpd? ( sys-apps/tcp-wrappers )
45 -"
46 -RDEPEND="${DEPEND}"
47 -
48 -# Tests are a large bash script
49 -# Hard to disable individual tests needing network or privileges
50 -RESTRICT="
51 - test
52 - ssl? ( readline? ( bindist ) )
53 -"
54 -
55 -DOCS=( BUGREPORTS CHANGES DEVELOPMENT EXAMPLES FAQ FILES PORTING README SECURITY )
56 -
57 -pkg_setup() {
58 - # bug #587740
59 - if use readline && use ssl ; then
60 - elog "You are enabling both readline and openssl USE flags, the licenses"
61 - elog "for these packages conflict. You may not be able to legally"
62 - elog "redistribute the resulting binary."
63 - fi
64 -}
65 -
66 -src_prepare() {
67 - default
68 - eautoreconf
69 -}
70 -
71 -src_configure() {
72 - # bug #293324
73 - filter-flags '-Wno-error*'
74 - tc-export AR
75 -
76 - econf \
77 - $(use_enable ssl openssl) \
78 - $(use_enable readline) \
79 - $(use_enable ipv6 ip6) \
80 - $(use_enable tcpd libwrap)
81 -}
82 -
83 -src_install() {
84 - default
85 -
86 - docinto html
87 - dodoc doc/*.html doc/*.css
88 -}