From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1385538-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id DAD8A15808B
	for <garchives@archives.gentoo.org>; Thu, 14 Apr 2022 20:57:58 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id BF455E0843;
	Thu, 14 Apr 2022 20:57:57 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id EABAFE0841
	for <gentoo-commits@lists.gentoo.org>; Thu, 14 Apr 2022 20:57:56 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 03481341D51
	for <gentoo-commits@lists.gentoo.org>; Thu, 14 Apr 2022 20:57:55 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DF08398
	for <gentoo-commits@lists.gentoo.org>; Thu, 14 Apr 2022 20:57:53 +0000 (UTC)
From: "Dex Conner" <cantcuckthis@danwin1210.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, "Dex Conner" <cantcuckthis@danwin1210.de>
Message-ID: <1649969708.f7b8c98e001eed4728571106a2d811e4e4904140.cantcuckthis@gentoo>
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/libxlsxwriter/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: dev-libs/libxlsxwriter/libxlsxwriter-1.1.4.ebuild
X-VCS-Directories: dev-libs/libxlsxwriter/
X-VCS-Committer: cantcuckthis
X-VCS-Committer-Name: Dex Conner
X-VCS-Revision: f7b8c98e001eed4728571106a2d811e4e4904140
X-VCS-Branch: dev
Date: Thu, 14 Apr 2022 20:57:53 +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: d49828cc-b5c5-4584-a9bd-e395061fae6f
X-Archives-Hash: 4d374685dfc03b10321e51f86d43b23d

commit:     f7b8c98e001eed4728571106a2d811e4e4904140
Author:     Dex Conner <cantcuckthis <AT> danwin1210 <DOT> de>
AuthorDate: Thu Apr 14 20:55:08 2022 +0000
Commit:     Dex Conner <cantcuckthis <AT> danwin1210 <DOT> de>
CommitDate: Thu Apr 14 20:55:08 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f7b8c98e

dev-libs/libxlsxwriter: remove static-libs flag

Signed-off-by: Dex Conner <cantcuckthis <AT> danwin1210.de>

 dev-libs/libxlsxwriter/libxlsxwriter-1.1.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libxlsxwriter/libxlsxwriter-1.1.4.ebuild b/dev-libs/libxlsxwriter/libxlsxwriter-1.1.4.ebuild
index 830a2cca9..863461e29 100644
--- a/dev-libs/libxlsxwriter/libxlsxwriter-1.1.4.ebuild
+++ b/dev-libs/libxlsxwriter/libxlsxwriter-1.1.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/jmcnamara/libxlsxwriter/archive/RELEASE_${PV}.tar.gz
 LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="openssl static-libs"
+IUSE="openssl"
 S="${WORKDIR}/${PN}-RELEASE_${PV}"
 
 DEPEND="
@@ -33,7 +33,7 @@ src_configure() {
 		-DCMAKE_BUILD_TYPE=Release
 		-DUSE_OPENSSL_MD5="$(usex openssl ON OFF)"
 		-DUSE_SYSTEM_MINIZIP="ON"
-		-DBUILD_SHARED_LIBS="$(usex static-libs ON OFF)"
+		-DBUILD_SHARED_LIBS="OFF"
 		-DUSE_DTOA_LIBRARY=${DOUBLEFUNCTION}
 	)
 	cmake_src_configure