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.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 9A0F8158087 for ; Wed, 1 Dec 2021 11:40:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3348E0839; Wed, 1 Dec 2021 11:40:42 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CBC68E0839 for ; Wed, 1 Dec 2021 11:40:42 +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 A8943342F8C for ; Wed, 1 Dec 2021 11:40:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0ED771E3 for ; Wed, 1 Dec 2021 11:40:40 +0000 (UTC) From: "Marc Schiffbauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marc Schiffbauer" Message-ID: <1638358828.a9fb0f0c1c8ce2f4d8c06de5988df96627b41eac.mschiff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ldns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/ldns/ldns-1.8.0-r1.ebuild X-VCS-Directories: net-libs/ldns/ X-VCS-Committer: mschiff X-VCS-Committer-Name: Marc Schiffbauer X-VCS-Revision: a9fb0f0c1c8ce2f4d8c06de5988df96627b41eac X-VCS-Branch: master Date: Wed, 1 Dec 2021 11:40:40 +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: e1d45530-11c1-44aa-9360-15875c06783f X-Archives-Hash: 6042a5dd91ebd29c99890b7c1a54bf9e commit: a9fb0f0c1c8ce2f4d8c06de5988df96627b41eac Author: Marc Schiffbauer gentoo org> AuthorDate: Wed Dec 1 11:35:42 2021 +0000 Commit: Marc Schiffbauer gentoo org> CommitDate: Wed Dec 1 11:40:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9fb0f0c net-libs/ldns: fix LDFLAGS in pkg-config (#695672) Closes: https://bugs.gentoo.org/695672 Signed-off-by: Marc Schiffbauer gentoo.org> net-libs/ldns/ldns-1.8.0-r1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net-libs/ldns/ldns-1.8.0-r1.ebuild b/net-libs/ldns/ldns-1.8.0-r1.ebuild index 71986a0e0f92..5d48f102da5c 100644 --- a/net-libs/ldns/ldns-1.8.0-r1.ebuild +++ b/net-libs/ldns/ldns-1.8.0-r1.ebuild @@ -81,6 +81,9 @@ src_prepare() { # remove $(srcdir) from path for multilib build sed -i 's,$(srcdir)/packaging/libldns.pc,packaging/libldns.pc,' "${S}"/Makefile.in || die 'could not patch Makefile.in' + # remove Libs.private, see bug #695672 + sed -i '/^Libs.private:/d' "${S}"/packaging/libldns.pc.in || die 'could not patch libldns.pc.in' + # backport https://github.com/NLnetLabs/ldns/commit/bc9d017f6fd8b6b5d2ff6e4489a2931d0aab8184 sed -i 's/AC_SUBST(VERSION_INFO.*/AC_SUBST(VERSION_INFO, [5:0:2])/' "${S}"/configure.ac || die 'could not patch configure.ac'