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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B3058158017 for ; Wed, 29 Sep 2021 20:35:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D59DAE0880; Wed, 29 Sep 2021 20:35:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BBEA9E0880 for ; Wed, 29 Sep 2021 20:35:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 944C9342AC8 for ; Wed, 29 Sep 2021 20:35:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14903E5 for ; Wed, 29 Sep 2021 20:35:12 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1632939356.e43878aa62e563fcefa7c1da5c44017816ac65b4.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/software.sh X-VCS-Directories: defaults/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: e43878aa62e563fcefa7c1da5c44017816ac65b4 X-VCS-Branch: master Date: Wed, 29 Sep 2021 20:35:12 +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: 14391f95-fcb3-4d8b-93e1-b9bb6df29a8e X-Archives-Hash: 82eafb3615bbbe265a5678addc5ff722 commit: e43878aa62e563fcefa7c1da5c44017816ac65b4 Author: Thomas Deutschmann gentoo org> AuthorDate: Wed Sep 29 18:15:56 2021 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Wed Sep 29 18:15:56 2021 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=e43878aa defaults/software.sh: dropbear needs libxcrypt Signed-off-by: Thomas Deutschmann gentoo.org> defaults/software.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/software.sh b/defaults/software.sh index 54836ad..9f64ab0 100644 --- a/defaults/software.sh +++ b/defaults/software.sh @@ -67,7 +67,7 @@ GKPKG_DMRAID_BINPKG="${GKPKG_DMRAID_BINPKG:-%%CACHE%%/dmraid-${GKPKG_DMRAID_PV}- GKPKG_DROPBEAR_PN="dropbear" GKPKG_DROPBEAR_PV="${GKPKG_DROPBEAR_PV:-VERSION_DROPBEAR}" -GKPKG_DROPBEAR_DEPS="zlib" +GKPKG_DROPBEAR_DEPS="zlib libxcrypt" GKPKG_DROPBEAR_SRCTAR="${GKPKG_DROPBEAR_SRCTAR:-${DISTDIR}/dropbear-${GKPKG_DROPBEAR_PV}.tar.bz2}" GKPKG_DROPBEAR_SRCDIR="${GKPKG_DROPBEAR_SRCDIR:-dropbear-${GKPKG_DROPBEAR_PV}}" GKPKG_DROPBEAR_BINPKG="${GKPKG_DROPBEAR_BINPKG:-%%CACHE%%/dropbear-${GKPKG_DROPBEAR_PV}-%%ARCH%%.tar.xz}"