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 E6F3013835B for ; Tue, 23 Mar 2021 04:53:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87836E07FE; Tue, 23 Mar 2021 04:53:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 62CDEE07FE for ; Tue, 23 Mar 2021 04:53:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 08BC333BED4 for ; Tue, 23 Mar 2021 04:53:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 697495FC for ; Tue, 23 Mar 2021 04:53:22 +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: <1616474920.2119d24638ee3bed12532160394cd6ed7e44249a.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-1.7.3.4.ebuild net-misc/socat/socat-1.7.4.1.ebuild net-misc/socat/socat-2.0.0_beta9.ebuild 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: 2119d24638ee3bed12532160394cd6ed7e44249a X-VCS-Branch: master Date: Tue, 23 Mar 2021 04:53:22 +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: c7d98411-fab4-4fef-8f14-760745432af6 X-Archives-Hash: fc9e0c0bedd887e9e733b8cb89a097df commit: 2119d24638ee3bed12532160394cd6ed7e44249a Author: Sam James gentoo org> AuthorDate: Mon Mar 22 22:21:12 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 23 04:48:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2119d246 net-misc/socat: minor style changes * Sort IUSE * Drop trailing slash from HOMEPAGE * Semicolon style Signed-off-by: Sam James gentoo.org> net-misc/socat/socat-1.7.3.4.ebuild | 4 ++-- net-misc/socat/socat-1.7.4.1.ebuild | 4 ++-- net-misc/socat/socat-2.0.0_beta9.ebuild | 4 ++-- net-misc/socat/socat-9999.ebuild | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/net-misc/socat/socat-1.7.3.4.ebuild b/net-misc/socat/socat-1.7.3.4.ebuild index 3eba54db2ef..6a196150378 100644 --- a/net-misc/socat/socat-1.7.3.4.ebuild +++ b/net-misc/socat/socat-1.7.3.4.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="bindist libressl ssl readline ipv6 tcpd" +IUSE="bindist libressl ipv6 readline ssl tcpd" DEPEND=" ssl? ( @@ -41,7 +41,7 @@ PATCHES=( pkg_setup() { # bug #587740 - if use readline && use ssl; then + 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." diff --git a/net-misc/socat/socat-1.7.4.1.ebuild b/net-misc/socat/socat-1.7.4.1.ebuild index d064243f99d..d7ded0482c7 100644 --- a/net-misc/socat/socat-1.7.4.1.ebuild +++ b/net-misc/socat/socat-1.7.4.1.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="bindist libressl ssl readline ipv6 tcpd" +IUSE="bindist libressl ipv6 readline ssl tcpd" DEPEND=" ssl? ( @@ -37,7 +37,7 @@ DOCS=( BUGREPORTS CHANGES DEVELOPMENT EXAMPLES FAQ FILES PORTING README SECURITY pkg_setup() { # bug #587740 - if use readline && use ssl; then + 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." diff --git a/net-misc/socat/socat-2.0.0_beta9.ebuild b/net-misc/socat/socat-2.0.0_beta9.ebuild index 0f00e144582..9532a828421 100644 --- a/net-misc/socat/socat-2.0.0_beta9.ebuild +++ b/net-misc/socat/socat-2.0.0_beta9.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="libressl ssl readline ipv6 tcpd" +IUSE="libressl ipv6 readline ssl tcpd" DEPEND=" ssl? ( @@ -44,7 +44,7 @@ PATCHES=( pkg_setup() { # bug #587740 - if use readline && use ssl; then + 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." diff --git a/net-misc/socat/socat-9999.ebuild b/net-misc/socat/socat-9999.ebuild index dada7a8478e..b0f72ca9e8e 100644 --- a/net-misc/socat/socat-9999.ebuild +++ b/net-misc/socat/socat-9999.ebuild @@ -11,7 +11,7 @@ EGIT_REPO_URI="https://repo.or.cz/${PN}.git" LICENSE="GPL-2" SLOT="0" -IUSE="bindist libressl ssl readline ipv6 tcpd" +IUSE="bindist libressl ipv6 readline ssl tcpd" BDEPEND="app-text/yodl" DEPEND=" @@ -35,7 +35,7 @@ DOCS=( BUGREPORTS CHANGES DEVELOPMENT EXAMPLES FAQ FILES PORTING README SECURITY pkg_setup() { # bug #587740 - if use readline && use ssl; then + 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."