public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/socat/
Date: Sat, 22 Feb 2025 17:44:31 +0000 (UTC)	[thread overview]
Message-ID: <1740246247.e857f9adaabf1374d203673749f69ee54c4c656f.sam@gentoo> (raw)

commit:     e857f9adaabf1374d203673749f69ee54c4c656f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 22 17:44:07 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 22 17:44:07 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e857f9ad

net-misc/socat: add 1.8.0.3

Bug: https://bugs.gentoo.org/950117
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/socat/Manifest             |  1 +
 net-misc/socat/socat-1.8.0.3.ebuild | 60 +++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/net-misc/socat/Manifest b/net-misc/socat/Manifest
index 200256eefe2a..9b1169dc1c69 100644
--- a/net-misc/socat/Manifest
+++ b/net-misc/socat/Manifest
@@ -2,3 +2,4 @@ DIST socat-1.7.4.4.tar.bz2 522127 BLAKE2B 221b1c7c1ef0ac9c2402a6917ce7740a7ed857
 DIST socat-1.8.0.0.tar.bz2 564066 BLAKE2B b0b3e8c46f746b1aaff7390bbf9521cca8c421f3c20cd7a7f7d8ffd3d7b5e5e881e2477642f7d29247ee5a9d9edf6c8370a43c5f2757e456966b17e3ba08a58a SHA512 dd15c31204f2843ab473a30aa841e960e7c00ac7487e2265d69f9e8ea0afde3841d57cfcb99084f03935d7223da65cee27166837f2f9b3a20c834bc161af802b
 DIST socat-1.8.0.1.tar.bz2 579492 BLAKE2B 0af65b18dc6fec28e59d75048b1e1c4f442f134d87bc6a9b5ea7b3032a0c5519e0d042ae760d451006eacf368870a0a47465d9ec2d5f2fe8d41efcd639ef58c5 SHA512 ce8147df545f74d4b6e1d3d0dae2dcea58c4c7e6ccd1cb2eec68c29ead2c3a818e9851b30a5e5f1456d70463c31b13ab1c5b350293359419a583ed693a917231
 DIST socat-1.8.0.2.tar.bz2 579370 BLAKE2B 148bc4a49113af987f3c9faf9971bd309e1114358d2f32722c975715a151a4d8f194be58858c4a1a1833c53e2f4334afe105423550776bc174afc84126f8d0db SHA512 549380b3bf95fcf7088a7b774e0cbf5532c6fa86895cfbb44ee1dd7895391f3696f78bda886e786275951656d7c90b99c658eb28e58d2365eb33946768f04321
+DIST socat-1.8.0.3.tar.bz2 594396 BLAKE2B a152b1da6332ff925299deca2e39c09e7c3042e14a87b2d6f6fb6c263489291be54ed001d37908767b3164140de262b702a65833c792b1e607781dc5e89e0fdf SHA512 6425c42cf4a3cbe253d238213d11e7daae8f8a09fcce2634c8ce220bb3352a824a80ecfa36330007cf5c537f60fea057e9f68410bccb843ff4666e775c5dcd8e

diff --git a/net-misc/socat/socat-1.8.0.3.ebuild b/net-misc/socat/socat-1.8.0.3.ebuild
new file mode 100644
index 000000000000..bebed3b91af6
--- /dev/null
+++ b/net-misc/socat/socat-1.8.0.3.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo flag-o-matic toolchain-funcs
+
+MY_P=${P/_beta/-b}
+DESCRIPTION="Multipurpose relay (SOcket CAT)"
+HOMEPAGE="http://www.dest-unreach.org/socat/ https://repo.or.cz/socat.git"
+SRC_URI="http://www.dest-unreach.org/socat/download/${MY_P}.tar.bz2"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+IUSE="ipv6 readline ssl tcpd"
+
+DEPEND="
+	ssl? ( >=dev-libs/openssl-3:= )
+	readline? ( sys-libs/readline:= )
+	tcpd? ( sys-apps/tcp-wrappers )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( BUGREPORTS CHANGES DEVELOPMENT EXAMPLES FAQ FILES PORTING README SECURITY )
+
+src_configure() {
+	# bug #293324
+	filter-flags '-Wno-error*'
+
+	tc-export AR
+
+	local myeconfargs=(
+		$(use_enable ssl openssl)
+		$(use_enable readline)
+		$(use_enable ipv6 ip6)
+		$(use_enable tcpd libwrap)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_test() {
+	# Most tests are skipped because they need network access or a TTY
+	# Some are for /dev permissions probing (bug #940740)
+	# 518 519 need extra permissions
+	edo ./test.sh -v --expect-fail 13,15,87,217,311,313,370,388,410,466,478,518,519,528
+}
+
+src_install() {
+	default
+
+	docinto html
+	dodoc doc/*.html doc/*.css
+
+	if use elibc_musl; then
+		QA_CONFIG_IMPL_DECL_SKIP=( getprotobynumber_r )
+	fi
+}


             reply	other threads:[~2025-02-22 17:44 UTC|newest]

Thread overview: 106+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-22 17:44 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-21 17:21 [gentoo-commits] repo/gentoo:master commit in: net-misc/socat/ Arthur Zamarin
2025-02-21 17:20 Arthur Zamarin
2025-02-21 17:20 Arthur Zamarin
2025-01-22 18:06 Arthur Zamarin
2025-01-22 18:06 Arthur Zamarin
2025-01-22 18:06 Arthur Zamarin
2024-12-30 14:04 Sam James
2024-12-30 14:04 Sam James
2024-12-13 15:35 Sam James
2024-12-13 15:34 Sam James
2024-10-23 19:33 Arthur Zamarin
2024-10-09  7:57 Arthur Zamarin
2024-10-09  7:57 Arthur Zamarin
2024-10-09  7:57 Arthur Zamarin
2024-10-09  7:57 Arthur Zamarin
2024-10-09  7:57 Arthur Zamarin
2024-10-09  7:57 Arthur Zamarin
2024-10-04  1:57 Sam James
2024-10-04  1:57 Sam James
2023-12-28  3:43 Sam James
2023-11-15 17:13 Sam James
2023-08-06 10:17 Andreas K. Hüttel
2023-08-06 10:14 Andreas K. Hüttel
2023-08-06  1:36 Sam James
2023-03-04 11:13 Arthur Zamarin
2023-03-04 11:09 Arthur Zamarin
2023-03-04  9:00 Arthur Zamarin
2023-03-04  8:09 Arthur Zamarin
2023-03-04  7:45 Arthur Zamarin
2023-03-04  6:01 Arthur Zamarin
2023-03-04  5:49 Arthur Zamarin
2022-11-23  1:45 Sam James
2022-10-31  0:44 Sam James
2022-05-14  6:21 WANG Xuerui
2022-04-17 16:44 Sam James
2022-02-20 19:34 Arthur Zamarin
2022-02-19  0:37 Sam James
2022-02-15 15:57 Agostino Sarubbo
2022-02-15  7:12 Agostino Sarubbo
2022-02-15  7:11 Agostino Sarubbo
2022-02-15  7:11 Agostino Sarubbo
2022-02-15  7:09 Agostino Sarubbo
2022-02-10  7:50 Sam James
2022-01-09  7:09 Sam James
2022-01-01  9:38 Sam James
2021-12-06 15:23 Sam James
2021-12-06 15:20 Sam James
2021-12-06 11:31 Agostino Sarubbo
2021-12-05 20:12 Arthur Zamarin
2021-12-05 18:39 Sam James
2021-12-05  5:18 Sam James
2021-11-02 23:50 Sam James
2021-09-24 17:45 Sam James
2021-03-23  4:53 Sam James
2021-02-16 12:30 Sam James
2021-02-15 10:48 Sam James
2021-02-14 14:53 Sam James
2021-02-12 13:48 Sam James
2021-02-12  9:57 Sam James
2021-02-10 16:59 Sam James
2021-02-10  2:45 Sam James
2021-01-10 21:56 Sam James
2021-01-07  3:19 Sam James
2021-01-07  3:16 Sam James
2021-01-07  3:07 Sam James
2021-01-06 15:06 Fabian Groffen
2020-11-04  0:44 Sam James
2020-07-25  9:20 Jeroen Roovers
2020-07-25  9:14 Jeroen Roovers
2020-07-22  9:02 Agostino Sarubbo
2020-07-22  9:01 Agostino Sarubbo
2020-07-22  7:31 Sergei Trofimovich
2020-07-22  7:30 Sergei Trofimovich
2020-07-22  7:29 Sergei Trofimovich
2020-07-21  0:23 Sam James
2020-07-20 18:25 Sam James
2020-06-03  9:10 Jeroen Roovers
2020-01-07 10:43 Jeroen Roovers
2019-04-10  9:53 Jeroen Roovers
2019-04-04  8:41 Jeroen Roovers
2018-03-15 15:49 Jeroen Roovers
2018-03-15 15:07 Mikle Kolyada
2018-03-05 14:29 Mart Raudsepp
2017-11-05 18:06 Sergei Trofimovich
2017-08-29 21:39 Thomas Deutschmann
2017-08-26  8:40 Mikle Kolyada
2017-06-17 16:32 Sergei Trofimovich
2017-05-22 18:41 Tobias Klausmann
2017-05-18 15:20 Michael Weber
2017-04-18  6:36 Jeroen Roovers
2017-03-21 18:11 Matt Turner
2017-01-29  9:34 Jeroen Roovers
2016-03-02  8:05 Jeroen Roovers
2016-03-02  5:57 Mike Frysinger
2016-02-14 17:20 Markus Meier
2016-02-03 16:54 Agostino Sarubbo
2016-02-03 16:53 Agostino Sarubbo
2016-02-02 11:58 Tobias Klausmann
2016-02-02  4:52 Jeroen Roovers
2016-02-01 16:14 Jeroen Roovers
2016-02-01 16:14 Jeroen Roovers
2016-02-01 16:14 Jeroen Roovers
2016-02-01 16:14 Jeroen Roovers
2015-11-10  7:10 Jeroen Roovers
2015-11-10  6:32 Jeroen Roovers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1740246247.e857f9adaabf1374d203673749f69ee54c4c656f.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox