Received: from mx.sdf.org (mx.sdf.org [205.166.94.24]) by gbr-app-1.alpinelinux.org (Postfix) with ESMTPS id 0AF0A2232D8 for ; Sun, 19 Mar 2023 22:56:22 +0000 (UTC) Received: from localhost (pool-71-190-153-145.nycmny.fios.verizon.net [71.190.153.145]) (authenticated (0 bits)) by mx.sdf.org (8.16.1/8.14.5) with ESMTPSA id 32JMuHBw020405 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256 bits) verified NO); Sun, 19 Mar 2023 22:56:18 GMT From: Caleb Malchik To: alpine-aports@lists.alpinelinux.org Cc: Peter Shkenev Subject: [PATCH] community/os-prober: add missing blkid and grub-mount dependencies Date: Sun, 19 Mar 2023 18:55:51 -0400 Message-Id: <20230319225550.3241-1-cm@sdf.org> X-Mailer: git-send-email 2.38.4 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Peter Shkenev os-prober is unable to detect other operating systems without grub-mount. Also, it uses blkid features that are unsupported by busybox blkid. (cherry picked from commit 911d58dc60edb8d2f8f27776e6c978beb273fdc5) --- community/os-prober/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/community/os-prober/APKBUILD b/community/os-prober/APKBUILD index 60557b1efdd..c1d0f589138 100644 --- a/community/os-prober/APKBUILD +++ b/community/os-prober/APKBUILD @@ -2,10 +2,11 @@ # Maintainer: Bart Ribbers pkgname=os-prober pkgver=1.81 -pkgrel=0 +pkgrel=1 pkgdesc="Utility to detect other OSes on a set of drives" url="https://joeyh.name/code/os-prober/" -arch="all" +arch="all !s390x" # grub-mount does not support s390x +depends="grub-mount blkid" license="GPL-3.0-only" source="https://deb.debian.org/debian/pool/main/o/os-prober/os-prober_$pkgver.tar.xz" options="!check" # No tests -- 2.38.4