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 908D8158086 for ; Tue, 23 Nov 2021 13:26:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D536E07FE; Tue, 23 Nov 2021 13:25:59 +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 7FA6AE07FE for ; Tue, 23 Nov 2021 13:25:59 +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 4DD7A342C8F for ; Tue, 23 Nov 2021 13:25:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF4188E for ; Tue, 23 Nov 2021 13:25:56 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1637673922.6eadfa11b23cf80d5f594a0252837b11b48ba66c.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/nauty/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/nauty/nauty-2.7.3.ebuild X-VCS-Directories: sci-mathematics/nauty/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 6eadfa11b23cf80d5f594a0252837b11b48ba66c X-VCS-Branch: master Date: Tue, 23 Nov 2021 13:25:56 +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: 56037c9c-e48c-42cc-9e60-1967eb01ee5e X-Archives-Hash: c3a7693bcf8e4b2fa6ee2149439374eb commit: 6eadfa11b23cf80d5f594a0252837b11b48ba66c Author: Michael Orlitzky gentoo org> AuthorDate: Tue Nov 23 13:25:05 2021 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Tue Nov 23 13:25:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eadfa11 sci-mathematics/nauty: fix v2.7.3 build with GNU libtool. I accidentally left a variable unset from the Debian autotools patch, leading to build failures with the libtool that everyone actually uses. This commit sets it with sed, and gets us a proper soname again. Closes: https://bugs.gentoo.org/826778 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Michael Orlitzky gentoo.org> sci-mathematics/nauty/nauty-2.7.3.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sci-mathematics/nauty/nauty-2.7.3.ebuild b/sci-mathematics/nauty/nauty-2.7.3.ebuild index a0663b4f959d..dceb2ed0fe24 100644 --- a/sci-mathematics/nauty/nauty-2.7.3.ebuild +++ b/sci-mathematics/nauty/nauty-2.7.3.ebuild @@ -47,6 +47,10 @@ src_prepare() { # cliquer installs that header as . sed -e 's~~~' -i nautycliquer.h || die + # The debian autotools patch has only a placeholder in LT_INIT for + # the version that we must provide. + sed -e "s/@INJECTVER@/${PV}/" -i configure.ac || die + eautoreconf }