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 0F137158064 for ; Thu, 2 May 2024 16:52:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B89C8E2A27; Thu, 2 May 2024 16:52:35 +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 99391E2A27 for ; Thu, 2 May 2024 16:52:35 +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 917C7343008 for ; Thu, 2 May 2024 16:52:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A69631979 for ; Thu, 2 May 2024 16:52:32 +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: <1714666353.85014db5f84c2bc52d9314c7490b7277573204f6.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: 85014db5f84c2bc52d9314c7490b7277573204f6 X-VCS-Branch: emacs-updater Date: Thu, 2 May 2024 16:52:32 +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: d4ad0f66-3853-4fc5-ac58-9529381a634f X-Archives-Hash: a144d3c6715a1e287e6b192d15e319c0 commit: 85014db5f84c2bc52d9314c7490b7277573204f6 Author: Arsen Arsenović gentoo org> AuthorDate: Wed May 1 21:04:19 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu May 2 16:12:33 2024 +0000 URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=85014db5 Pass --usepkg=n to Portage * emacs-updater (pm_portage): Pass --usepkg=n to Portage. Fixes bug 931064. Bug: https://bugs.gentoo.org/931064 Signed-off-by: Arsen Arsenović gentoo.org> 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 f4e8a2b..2dc5440 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-05-01 Arsen Arsenović + + * emacs-updater (pm_portage): Pass --usepkg=n to Portage. + Fixes bug 931064. + 2023-09-25 Ulrich Müller * Version 1.17 released. diff --git a/emacs-updater b/emacs-updater index 6d03c34..c1ac43e 100755 --- a/emacs-updater +++ b/emacs-updater @@ -79,7 +79,7 @@ version() { # Wrapper for package manager commands have_portage() { type -P emerge >/dev/null; } -pm_portage() { emerge --oneshot "$@"; } +pm_portage() { emerge --usepkg=n --oneshot "$@"; } have_pkgcore() { type -P pmerge >/dev/null; } pm_pkgcore() { pmerge --oneshot "$@"; }