X-Original-To: alpine-aports@lists.alpinelinux.org Received: from superlel.me (superlel.me [163.172.195.163]) by lists.alpinelinux.org (Postfix) with ESMTP id 41E0EF8557E for ; Tue, 8 Jan 2019 04:41:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=superlel.me; s=defaultjuly2017; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=oO1inEPZBu7VsXAFlp6CowygQps9FaUkjzBM9ZTIyyM=; b=qgggmHK0pwChbqxmTkQw/rWNi0X7ZvWIcPfRb5Ge2mHJoNEbcATnsSYAn6llZx+SqWFJW5KzBplHuHpaN18Wc8yLLl38H/c9tB8fbflHLIeE4+TEl97iSRlGooRfFnKL2BYYfxB9wMd8Yy5llt/T1MHzRhPn6xJTq2WNLgZJtw+FS2E3fVDSW+pcQmxQANUuuJgBOjhXeGc/8s1LZLnurs3yFzHU1gFdvTVFnOnF7H2fRWH4zJKGxGfLbtWJ3xtV79JXwTYWnhbItwyv5+SQzIFltlJ0fHxvgUPi2Yuxgb3RdXmPPL9zZmZQNi+Xgo2dOkzHdf75z5HkQ3R/mYY3mA==; Received: from [90.4.173.177] (helo=localhost.localdomain) by superlel.me with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1ggjCS-0005eI-MW; Tue, 08 Jan 2019 05:41:12 +0100 From: =?UTF-8?q?L=C3=A9o=20El=20Amri?= To: alpine-aports@lists.alpinelinux.org Cc: =?UTF-8?q?L=C3=A9o=20El=20Amri?= Subject: [alpine-aports] [PATCH] main/alpine-conf: missing dependency squashfs-tools Date: Tue, 8 Jan 2019 05:41:04 +0100 Message-Id: <20190108044104.11522-2-leo@superlel.me> X-Mailer: git-send-email 2.19.2 In-Reply-To: <20190108044104.11522-1-leo@superlel.me> References: <20190108044104.11522-1-leo@superlel.me> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit update-kernel needs mksquashfs, which is provided by squashfs-tools --- main/alpine-conf/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/alpine-conf/APKBUILD b/main/alpine-conf/APKBUILD index f5b6a72c0a..5190c55e6b 100644 --- a/main/alpine-conf/APKBUILD +++ b/main/alpine-conf/APKBUILD @@ -6,7 +6,7 @@ pkgdesc="Alpine configuration management scripts" url=http://git.alpinelinux.org/cgit/$pkgname arch="all" license="MIT" -depends="openrc>=0.24.1-r6 busybox>=1.26.1-r3" +depends="openrc>=0.24.1-r6 busybox>=1.26.1-r3 squashfs-tools" source="https://dev.alpinelinux.org/archive/alpine-conf/alpine-conf-$pkgver.tar.xz " -- 2.19.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---