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 (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 34064158232 for ; Sat, 7 Dec 2024 08:01:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 376E0E09A4; Sat, 7 Dec 2024 08:01:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 5F750E09A4 for ; Sat, 7 Dec 2024 08:01:43 +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 58A2A33BEFF for ; Sat, 7 Dec 2024 08:01:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55473AED for ; Sat, 7 Dec 2024 08:01:40 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1733558327.63e5e0fc544b5fdae32a2634996c868a1fe791a1.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:emacs-updater commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog emacs-updater X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 63e5e0fc544b5fdae32a2634996c868a1fe791a1 X-VCS-Branch: emacs-updater Date: Sat, 7 Dec 2024 08:01: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: 5a380b91-d937-4c48-8c00-ff91d57c5982 X-Archives-Hash: de5bd4f385023ad16c0e6ac126f13560 commit: 63e5e0fc544b5fdae32a2634996c868a1fe791a1 Author: Ulrich Müller gentoo org> AuthorDate: Sat Dec 7 07:58:47 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Dec 7 07:58:47 2024 +0000 URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=63e5e0fc Pass --getbinpkg=n to Portage * emacs-updater (pm_portage): Pass --getbinpkg=n to Portage. Fixes bug 945381. Bug: https://bugs.gentoo.org/945381 Signed-off-by: Ulrich Müller gentoo.org> ChangeLog | 5 +++++ emacs-updater | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 372c88b..a733bed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-12-07 Ulrich Müller + + * emacs-updater (pm_portage): Pass --getbinpkg=n to Portage. + Fixes bug 945381. + 2024-05-02 Ulrich Müller * Version 1.18 released. diff --git a/emacs-updater b/emacs-updater index 1926218..c666aaa 100755 --- a/emacs-updater +++ b/emacs-updater @@ -81,7 +81,7 @@ version() { # Wrapper for package manager commands have_portage() { type -P emerge >/dev/null; } -pm_portage() { emerge --usepkg=n --oneshot "$@"; } +pm_portage() { emerge --usepkg=n --getbinpkg=n --oneshot "$@"; } have_pkgcore() { type -P pmerge >/dev/null; } pm_pkgcore() { pmerge --oneshot "$@"; }