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 835F1138350 for ; Thu, 5 Mar 2020 15:10:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DD4BE093E; Thu, 5 Mar 2020 15:10:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 157F7E093E for ; Thu, 5 Mar 2020 15:10:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A16F634ED9E for ; Thu, 5 Mar 2020 15:10:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F9C0175 for ; Thu, 5 Mar 2020 15:10:23 +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: <1583420611.2b2ada1ab9a30e214b69d596636d7abbbc51d249.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: 2b2ada1ab9a30e214b69d596636d7abbbc51d249 X-VCS-Branch: master Date: Thu, 5 Mar 2020 15:10:23 +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: 2653ff75-8c25-4408-86be-d802a136d0c9 X-Archives-Hash: 24c801c4c5a56b3cd06a168bf4e79f90 commit: 2b2ada1ab9a30e214b69d596636d7abbbc51d249 Author: Thomas Deutschmann gentoo org> AuthorDate: Thu Mar 5 15:03:31 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Thu Mar 5 15:03:31 2020 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=2b2ada1a defaults/software.sh: Fix coreutils binpkg name Fixes 17d706a ("defaults/software.sh: Add coreutils") 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 60f6a31..fbdca42 100644 --- a/defaults/software.sh +++ b/defaults/software.sh @@ -42,7 +42,7 @@ GKPKG_COREUTILS_PV="${GKPKG_COREUTILS_PV:-VERSION_COREUTILS}" GKPKG_COREUTILS_DEPS="" GKPKG_COREUTILS_SRCTAR="${GKPKG_COREUTILS_SRCTAR:-${DISTDIR}/coreutils-${GKPKG_COREUTILS_PV}.tar.xz}" GKPKG_COREUTILS_SRCDIR="${GKPKG_COREUTILS_SRCDIR:-coreutils-${GKPKG_COREUTILS_PV}}" -GKPKG_COREUTILS_BINPKG="${GKPKG_COREUTILS_BINPKG:-%%CACHE%%/cryptsetup-${GKPKG_COREUTILS_PV}-%%ARCH%%.tar.xz}" +GKPKG_COREUTILS_BINPKG="${GKPKG_COREUTILS_BINPKG:-%%CACHE%%/coreutils-${GKPKG_COREUTILS_PV}-%%ARCH%%.tar.xz}" GKPKG_CRYPTSETUP_PN="cryptsetup" GKPKG_CRYPTSETUP_PV="${GKPKG_CRYPTSETUP_PV:-VERSION_CRYPTSETUP}"