From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3CC63158012 for ; Fri, 24 Sep 2021 17:45:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C290E0929; Fri, 24 Sep 2021 17:45:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DD34E0929 for ; Fri, 24 Sep 2021 17:45:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0EB6C342BED for ; Fri, 24 Sep 2021 17:45:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55301ED for ; Fri, 24 Sep 2021 17:45:39 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1632505520.a6879406ac48246a96799e710176fcd8f0d3bca4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/socat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/socat/socat-9999.ebuild X-VCS-Directories: net-misc/socat/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a6879406ac48246a96799e710176fcd8f0d3bca4 X-VCS-Branch: master Date: Fri, 24 Sep 2021 17:45:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2bc6c3d7-4c1a-4484-90cf-d26766cc7cbd X-Archives-Hash: fa5618f77eab42eef7fca19ed61fe6da commit: a6879406ac48246a96799e710176fcd8f0d3bca4 Author: Sam James gentoo org> AuthorDate: Fri Sep 24 17:44:00 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 24 17:45:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6879406 net-misc/socat: drop (broken) 9999 Apparently I broke it (when syncing with release ebuilds) 9 months ago and nobody has noticed. Let's get rid of it. Fixes: df13bd514e0d04eb52593e0b43c40c422ce09ad4 Signed-off-by: Sam James gentoo.org> net-misc/socat/socat-9999.ebuild | 64 ---------------------------------------- 1 file changed, 64 deletions(-) diff --git a/net-misc/socat/socat-9999.ebuild b/net-misc/socat/socat-9999.ebuild deleted file mode 100644 index e0872e55666..00000000000 --- a/net-misc/socat/socat-9999.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic toolchain-funcs - -DESCRIPTION="Multipurpose relay (SOcket CAT)" -HOMEPAGE="http://www.dest-unreach.org/socat/ https://repo.or.cz/socat.git" -EGIT_REPO_URI="https://repo.or.cz/${PN}.git" - -LICENSE="GPL-2" -SLOT="0" -IUSE="bindist ipv6 readline ssl tcpd" - -BDEPEND="app-text/yodl" -DEPEND=" - ssl? ( dev-libs/openssl:0= ) - readline? ( sys-libs/readline:= ) - tcpd? ( sys-apps/tcp-wrappers ) -" -RDEPEND="${DEPEND}" - -# Tests are a large bash script -# Hard to disable individual tests needing network or privileges -RESTRICT=" - test - ssl? ( readline? ( bindist ) ) -" - -DOCS=( BUGREPORTS CHANGES DEVELOPMENT EXAMPLES FAQ FILES PORTING README SECURITY ) - -pkg_setup() { - # bug #587740 - if use readline && use ssl ; then - elog "You are enabling both readline and openssl USE flags, the licenses" - elog "for these packages conflict. You may not be able to legally" - elog "redistribute the resulting binary." - fi -} - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # bug #293324 - filter-flags '-Wno-error*' - tc-export AR - - econf \ - $(use_enable ssl openssl) \ - $(use_enable readline) \ - $(use_enable ipv6 ip6) \ - $(use_enable tcpd libwrap) -} - -src_install() { - default - - docinto html - dodoc doc/*.html doc/*.css -}