From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1314106-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 28D00158D91
	for <garchives@archives.gentoo.org>; Thu, 19 Aug 2021 10:52:46 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 68185E07F1;
	Thu, 19 Aug 2021 10:52:45 +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 534B5E07F1
	for <gentoo-commits@lists.gentoo.org>; Thu, 19 Aug 2021 10:52:45 +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 099A1340FD8
	for <gentoo-commits@lists.gentoo.org>; Thu, 19 Aug 2021 10:52:44 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 639618A7
	for <gentoo-commits@lists.gentoo.org>; Thu, 19 Aug 2021 10:52:42 +0000 (UTC)
From: "Mart Raudsepp" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" <leio@gentoo.org>
Message-ID: <1629370232.c3c022ea8f3ef45d905291f23af6b97940a76047.leio@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/harfbuzz/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-libs/harfbuzz/harfbuzz-2.9.0.ebuild media-libs/harfbuzz/harfbuzz-9999.ebuild
X-VCS-Directories: media-libs/harfbuzz/
X-VCS-Committer: leio
X-VCS-Committer-Name: Mart Raudsepp
X-VCS-Revision: c3c022ea8f3ef45d905291f23af6b97940a76047
X-VCS-Branch: master
Date: Thu, 19 Aug 2021 10:52:42 +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: f982f249-a09c-4511-aee6-7752366c9f02
X-Archives-Hash: 5f853842930f88668277f73696cf83ca

commit:     c3c022ea8f3ef45d905291f23af6b97940a76047
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 18 21:40:12 2021 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Thu Aug 19 10:50:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c022ea

media-libs/harfbuzz: drop broken USE=static-libs

Fixing it should just be a matter of replacing the non-existent
static meson option with
-Ddefault_library=$(usex static-libs both shared)
But as it has been broken for a year, there are no in-tree consumers
of it and no-one has complained, just drop it as we don't generally
provide USE=static-libs unless something requires it.

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 media-libs/harfbuzz/harfbuzz-2.9.0.ebuild | 3 +--
 media-libs/harfbuzz/harfbuzz-9999.ebuild  | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/media-libs/harfbuzz/harfbuzz-2.9.0.ebuild b/media-libs/harfbuzz/harfbuzz-2.9.0.ebuild
index f47e641c6ee..28175cdd235 100644
--- a/media-libs/harfbuzz/harfbuzz-2.9.0.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-2.9.0.ebuild
@@ -21,7 +21,7 @@ fi
 LICENSE="Old-MIT ISC icu"
 SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416
 
-IUSE="+cairo debug doc experimental +glib +graphite icu +introspection static-libs test +truetype"
+IUSE="+cairo debug doc experimental +glib +graphite icu +introspection test +truetype"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="introspection? ( glib )"
 
@@ -91,7 +91,6 @@ multilib_src_configure() {
 		$(meson_native_use_feature introspection)
 
 		$(meson_use experimental experimental_api)
-		$(meson_use static-libs static)
 	)
 	meson_src_configure
 }

diff --git a/media-libs/harfbuzz/harfbuzz-9999.ebuild b/media-libs/harfbuzz/harfbuzz-9999.ebuild
index f47e641c6ee..28175cdd235 100644
--- a/media-libs/harfbuzz/harfbuzz-9999.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-9999.ebuild
@@ -21,7 +21,7 @@ fi
 LICENSE="Old-MIT ISC icu"
 SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416
 
-IUSE="+cairo debug doc experimental +glib +graphite icu +introspection static-libs test +truetype"
+IUSE="+cairo debug doc experimental +glib +graphite icu +introspection test +truetype"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="introspection? ( glib )"
 
@@ -91,7 +91,6 @@ multilib_src_configure() {
 		$(meson_native_use_feature introspection)
 
 		$(meson_use experimental experimental_api)
-		$(meson_use static-libs static)
 	)
 	meson_src_configure
 }