Diff socat-1.7.4.4 with a socat-1.7.4.4-r1

/usr/portage/net-misc/socat/socat-1.7.4.4-r1.ebuild 2023-10-09 14:52:34.700368481 +0300
14 14
LICENSE="GPL-2"
15 15
SLOT="0"
16 16
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
17
IUSE="bindist ipv6 readline ssl tcpd"
17
IUSE="ipv6 readline ssl tcpd"
18 18

  
19
DEPEND="ssl? ( dev-libs/openssl:0= )
19
DEPEND="ssl? ( >=dev-libs/openssl-3:0= )
20 20
	readline? ( sys-libs/readline:= )
21 21
	tcpd? ( sys-apps/tcp-wrappers )"
22 22
RDEPEND="${DEPEND}"
......
24 24
# Tests are a large bash script
25 25
# Hard to disable individual tests needing network or privileges
26 26
# in 1.7.4.2: FAILED:  59 329
27
RESTRICT="test ssl? ( readline? ( bindist ) )"
27
RESTRICT="test"
28 28

  
29 29
DOCS=( BUGREPORTS CHANGES DEVELOPMENT EXAMPLES FAQ FILES PORTING README SECURITY )
30 30

  
31
pkg_setup() {
32
	# bug #587740
33
	if use readline && use ssl ; then
34
		elog "You are enabling both readline and ssl (openssl) USE flags, the licenses"
35
		elog "for these packages conflict. You may not be able to legally"
36
		elog "redistribute the resulting binary."
37
	fi
38
}
39

  
40 31
src_configure() {
41 32
	# bug #293324
42 33
	filter-flags '-Wno-error*'
Thank you!