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 AD3B0158086 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 03C0EE083D; Wed, 1 Dec 2021 11:40:43 +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 DC2852BC001 for ; Wed, 1 Dec 2021 11:40:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A79FE342F89 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 EFE0B10C for ; Wed, 1 Dec 2021 11:40:39 +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.4899ef98267b13c91ab7329769263b0cf72c27fa.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 net-libs/ldns/ldns-1.8.0.ebuild X-VCS-Directories: net-libs/ldns/ X-VCS-Committer: mschiff X-VCS-Committer-Name: Marc Schiffbauer X-VCS-Revision: 4899ef98267b13c91ab7329769263b0cf72c27fa X-VCS-Branch: master Date: Wed, 1 Dec 2021 11:40:39 +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: f5506934-5cb2-437d-9741-124c695b49e2 X-Archives-Hash: 67601682f03456d73017d03232f5d365 commit: 4899ef98267b13c91ab7329769263b0cf72c27fa Author: Marc Schiffbauer gentoo org> AuthorDate: Wed Dec 1 11:34:12 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=4899ef98 net-libs/ldns: fix soname Signed-off-by: Marc Schiffbauer gentoo.org> net-libs/ldns/{ldns-1.8.0.ebuild => ldns-1.8.0-r1.ebuild} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/net-libs/ldns/ldns-1.8.0.ebuild b/net-libs/ldns/ldns-1.8.0-r1.ebuild similarity index 90% rename from net-libs/ldns/ldns-1.8.0.ebuild rename to net-libs/ldns/ldns-1.8.0-r1.ebuild index f530e59ed7ab..71986a0e0f92 100644 --- a/net-libs/ldns/ldns-1.8.0.ebuild +++ b/net-libs/ldns/ldns-1.8.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{7,8,9,10} ) -inherit python-single-r1 flag-o-matic multilib-minimal +inherit python-single-r1 autotools multilib-minimal DESCRIPTION="a library with the aim to simplify DNS programming in C" HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/" @@ -81,7 +81,10 @@ 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' - filter-ldflags * + # 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' + + eautoreconf } multilib_src_compile() {