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 3EE7B158094 for ; Wed, 27 Jul 2022 20:09:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2792E0F06; Wed, 27 Jul 2022 20:09:15 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BD594E0EDD for ; Wed, 27 Jul 2022 20:09:15 +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 B5CFF340FEC for ; Wed, 27 Jul 2022 20:09:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0014D54C for ; Wed, 27 Jul 2022 20:09:12 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1658952453.1eee4a79e7c73327f6e2b3dc2b9e52f63a69b7c0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/cups/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/cups/cups-2.4.2-r1.ebuild X-VCS-Directories: net-print/cups/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1eee4a79e7c73327f6e2b3dc2b9e52f63a69b7c0 X-VCS-Branch: master Date: Wed, 27 Jul 2022 20:09:12 +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: cb60bc8f-0e68-41a6-a59d-52203e0713b9 X-Archives-Hash: de43804125a156abd44534f8279eaf22 commit: 1eee4a79e7c73327f6e2b3dc2b9e52f63a69b7c0 Author: orbea riseup net> AuthorDate: Tue May 10 22:20:08 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jul 27 20:07:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eee4a79 net-print/cups: Don't use libtool When building cups with LIBTOOL=rlibtool exported in make.conf the build will fail. This happens because slibtool can't determine build information from the generated libtool script that doesn't exist. Its better to just not use libtool at all in this build system. Bug: https://bugs.gentoo.org/843638 Upstream-PR: https://github.com/OpenPrinting/cups/pull/394 Signed-off-by: orbea riseup.net> Closes: https://github.com/gentoo/gentoo/pull/25431 Signed-off-by: Sam James gentoo.org> net-print/cups/cups-2.4.2-r1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net-print/cups/cups-2.4.2-r1.ebuild b/net-print/cups/cups-2.4.2-r1.ebuild index 98885fee4bcd..0b9465532f39 100644 --- a/net-print/cups/cups-2.4.2-r1.ebuild +++ b/net-print/cups/cups-2.4.2-r1.ebuild @@ -188,6 +188,11 @@ multilib_src_configure() { # makes more sense when facing multilib support. sed -i -e 's:CUPS_SERVERBIN="$exec_prefix/lib/cups":CUPS_SERVERBIN="$exec_prefix/libexec/cups":g' configure ||die + # Don't use the libtool build + # https://bugs.gentoo.org/843638 + # https://github.com/OpenPrinting/cups/pull/394 + unset LIBTOOL + econf "${myeconfargs[@]}" sed -i -e "s:SERVERBIN.*:SERVERBIN = \"\$\(BUILDROOT\)${EPREFIX}/usr/libexec/cups\":" Makedefs || die