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 4BCDC158091 for ; Sat, 7 May 2022 02:11:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45952E0848; Sat, 7 May 2022 02:11:34 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1A6C1E0845 for ; Sat, 7 May 2022 02:11:34 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 21577341D4A for ; Sat, 7 May 2022 02:11:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E0DB464 for ; Sat, 7 May 2022 02:11:30 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1651889482.5259d23ea883b3dd7b79f43f6dd29c3357d2858d.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: eclass/ X-VCS-Repository: repo/proj/guru X-VCS-Files: eclass/octaveforge.eclass X-VCS-Directories: eclass/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 5259d23ea883b3dd7b79f43f6dd29c3357d2858d X-VCS-Branch: dev Date: Sat, 7 May 2022 02:11:30 +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: bb6e89a9-0cf8-44a7-955d-786134d389a7 X-Archives-Hash: 9f12db41bc780088c536fb782993eb71 commit: 5259d23ea883b3dd7b79f43f6dd29c3357d2858d Author: Alessandro Barbieri gmail com> AuthorDate: Sat May 7 02:10:44 2022 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sat May 7 02:11:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5259d23e octaveforge.eclass: add missing --no-gui, --eval Signed-off-by: Alessandro Barbieri gmail.com> eclass/octaveforge.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/octaveforge.eclass b/eclass/octaveforge.eclass index 25ac74efc..d02072fd5 100644 --- a/eclass/octaveforge.eclass +++ b/eclass/octaveforge.eclass @@ -209,9 +209,9 @@ octaveforge_pkg_postrm() { mkdir -p "${OCT_PKGDIR}" || die fi cmd="pkg('rebuild');" - "${OCT_BIN}" -H --silent "${cmd}" || die 'failed to rebuild the package database' + "${OCT_BIN}" -H --silent --no-gui --eval "${cmd}" || die 'failed to rebuild the package database' } octavecommand() { - "${OCT_BIN}" -H -q --no-site-file --eval "$1" + "${OCT_BIN}" -H -q --no-site-file --no-gui --eval "$1" }