From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1291669-garchives=archives.gentoo.org@lists.gentoo.org> 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 A3AB313835A for <garchives@archives.gentoo.org>; Wed, 9 Jun 2021 03:22:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D98EE0822; Wed, 9 Jun 2021 03:22:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 046DBE0821 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Jun 2021 03:22:39 +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 5A296340B54 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Jun 2021 03:22:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B128479B for <gentoo-commits@lists.gentoo.org>; Wed, 9 Jun 2021 03:22:35 +0000 (UTC) From: "Theo Anderson" <telans@posteo.de> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" <telans@posteo.de> Message-ID: <1623208910.7b981a0a91c05fc554d00e1108ff6890e6c60be5.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-libs/usockets/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild net-libs/usockets/usockets-9999.ebuild X-VCS-Directories: net-libs/usockets/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: 7b981a0a91c05fc554d00e1108ff6890e6c60be5 X-VCS-Branch: dev Date: Wed, 9 Jun 2021 03:22:35 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 25813bb5-a1e8-4d69-88fd-846a65463f55 X-Archives-Hash: 4928cf2aaa20ad4c20a0b2131ed44d66 commit: 7b981a0a91c05fc554d00e1108ff6890e6c60be5 Author: Theo Anderson <telans <AT> posteo <DOT> de> AuthorDate: Wed Jun 9 03:21:50 2021 +0000 Commit: Theo Anderson <telans <AT> posteo <DOT> de> CommitDate: Wed Jun 9 03:21:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7b981a0a net-libs/usockets: drop static-libs Signed-off-by: Theo Anderson <telans <AT> posteo.de> net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild | 10 ++++------ net-libs/usockets/usockets-9999.ebuild | 10 ++++------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild b/net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild index d7d107c8c..0e1f15d5b 100644 --- a/net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild +++ b/net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild @@ -20,11 +20,11 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="libuv +ssl static-libs" +IUSE="libuv +ssl" DEPEND=" - libuv? ( dev-libs/libuv[static-libs(-)?] ) - ssl? ( >=dev-libs/openssl-1.1.0[static-libs?] ) + libuv? ( dev-libs/libuv ) + ssl? ( >=dev-libs/openssl-1.1.0 ) " RDEPEND="${DEPEND}" @@ -44,7 +44,5 @@ src_configure() { src_install() { default einstalldocs - if ! use static-libs; then - rm -f "${ED}/usr/$(get_libdir)/libusockets.a" || die - fi + rm -f "${ED}/usr/$(get_libdir)/libusockets.a" || die } diff --git a/net-libs/usockets/usockets-9999.ebuild b/net-libs/usockets/usockets-9999.ebuild index e40b7ed25..c08a9ad93 100644 --- a/net-libs/usockets/usockets-9999.ebuild +++ b/net-libs/usockets/usockets-9999.ebuild @@ -19,11 +19,11 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="libuv +ssl static-libs" +IUSE="libuv +ssl" DEPEND=" - libuv? ( dev-libs/libuv[static-libs(-)?] ) - ssl? ( >=dev-libs/openssl-1.1.0[static-libs?] ) + libuv? ( dev-libs/libuv ) + ssl? ( >=dev-libs/openssl-1.1.0 ) " RDEPEND="${DEPEND}" @@ -43,7 +43,5 @@ src_configure() { src_install() { default einstalldocs - if ! use static-libs; then - rm -f "${ED}/usr/$(get_libdir)/libusockets.a" || die - fi + rm -f "${ED}/usr/$(get_libdir)/libusockets.a" || die } From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1291686-garchives=archives.gentoo.org@lists.gentoo.org> 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 1B5A01382C5 for <garchives@archives.gentoo.org>; Wed, 9 Jun 2021 03:39:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D864E0849; Wed, 9 Jun 2021 03:39:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 13565E0849 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Jun 2021 03:39:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 092B0340BC1 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Jun 2021 03:39:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 239AD7B6 for <gentoo-commits@lists.gentoo.org>; Wed, 9 Jun 2021 03:39:06 +0000 (UTC) From: "Theo Anderson" <telans@posteo.de> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" <telans@posteo.de> Message-ID: <1623208910.7b981a0a91c05fc554d00e1108ff6890e6c60be5.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-libs/usockets/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild net-libs/usockets/usockets-9999.ebuild X-VCS-Directories: net-libs/usockets/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: 7b981a0a91c05fc554d00e1108ff6890e6c60be5 X-VCS-Branch: master Date: Wed, 9 Jun 2021 03:39:06 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fcdb90ba-b201-4e7e-b890-e1757af933c6 X-Archives-Hash: 18a11834817541534ca4529cf9c7de49 Message-ID: <20210609033906.u_VgO2vxF7-jhZVEd-FpE9Anom9ujYUJUvd4mQu-8P8@z> commit: 7b981a0a91c05fc554d00e1108ff6890e6c60be5 Author: Theo Anderson <telans <AT> posteo <DOT> de> AuthorDate: Wed Jun 9 03:21:50 2021 +0000 Commit: Theo Anderson <telans <AT> posteo <DOT> de> CommitDate: Wed Jun 9 03:21:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7b981a0a net-libs/usockets: drop static-libs Signed-off-by: Theo Anderson <telans <AT> posteo.de> net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild | 10 ++++------ net-libs/usockets/usockets-9999.ebuild | 10 ++++------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild b/net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild index d7d107c8c..0e1f15d5b 100644 --- a/net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild +++ b/net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild @@ -20,11 +20,11 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="libuv +ssl static-libs" +IUSE="libuv +ssl" DEPEND=" - libuv? ( dev-libs/libuv[static-libs(-)?] ) - ssl? ( >=dev-libs/openssl-1.1.0[static-libs?] ) + libuv? ( dev-libs/libuv ) + ssl? ( >=dev-libs/openssl-1.1.0 ) " RDEPEND="${DEPEND}" @@ -44,7 +44,5 @@ src_configure() { src_install() { default einstalldocs - if ! use static-libs; then - rm -f "${ED}/usr/$(get_libdir)/libusockets.a" || die - fi + rm -f "${ED}/usr/$(get_libdir)/libusockets.a" || die } diff --git a/net-libs/usockets/usockets-9999.ebuild b/net-libs/usockets/usockets-9999.ebuild index e40b7ed25..c08a9ad93 100644 --- a/net-libs/usockets/usockets-9999.ebuild +++ b/net-libs/usockets/usockets-9999.ebuild @@ -19,11 +19,11 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="libuv +ssl static-libs" +IUSE="libuv +ssl" DEPEND=" - libuv? ( dev-libs/libuv[static-libs(-)?] ) - ssl? ( >=dev-libs/openssl-1.1.0[static-libs?] ) + libuv? ( dev-libs/libuv ) + ssl? ( >=dev-libs/openssl-1.1.0 ) " RDEPEND="${DEPEND}" @@ -43,7 +43,5 @@ src_configure() { src_install() { default einstalldocs - if ! use static-libs; then - rm -f "${ED}/usr/$(get_libdir)/libusockets.a" || die - fi + rm -f "${ED}/usr/$(get_libdir)/libusockets.a" || die }