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 31B7C138359 for ; Wed, 21 Oct 2020 00:24:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87B9AE0AC4; Wed, 21 Oct 2020 00:24:53 +0000 (UTC) Received: from mail-pj1-f42.google.com (mail-pj1-f42.google.com [209.85.216.42]) (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 806A9E0AC4 for ; Wed, 21 Oct 2020 00:24:53 +0000 (UTC) Received: by mail-pj1-f42.google.com with SMTP id p21so234054pju.0 for ; Tue, 20 Oct 2020 17:24:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=jyC4shFta7GRWfxO8JWIx5Qg8jGaWdrM19DVQ67xEes=; b=EWL37Be3ouY6zI6JGNOMNI9uSDf48qPferRudjGYkbKKHKfs+AQgmGzxdz9dQCU3g0 VV7VLg1k/TVEyTwq4KSP0H27HKOveH1DyACGN+ZmGpS1qpkRolG34Bz0as8mSlEqWA9m lkeudKViIorav5jeAjOU+zrEwApnfsfKyBZW6aopqQSwxDGijMKvtbkcp4uby2rXVWmX HK5FdX2f4qdfmVB4pugyK+wkFKkKTnAGyyDE1BAJy9MO3MpJZj0ndJG/QBNu9gk6HAEm y8fopTIM0wGumqk85jWuI0TZQACY9jhRRarGJ+VyvVt3H+L5GDNVExrUlsMf12YMY+O4 JFgg== X-Gm-Message-State: AOAM533cLuc1ACA5e1e3omiYzIdubokBHLZfgRlSHSH9onejgiq+tBVY Cb8td43oSpJB21F47qofR3oCmIuW74mTCw== X-Google-Smtp-Source: ABdhPJzmqQGzcBOvvXwiyZg6BS3OHu3SdswIC5rN20tzwEtHt6RkZNj2NeqH9nyys+aZQWvLfZ/zrg== X-Received: by 2002:a17:90a:e884:: with SMTP id h4mr650613pjy.126.1603239892208; Tue, 20 Oct 2020 17:24:52 -0700 (PDT) Received: from localhost ([108.161.26.224]) by smtp.gmail.com with ESMTPSA id z16sm175138pfr.116.2020.10.20.17.24.51 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 20 Oct 2020 17:24:51 -0700 (PDT) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 32/37] targets: Delete never-used packages.txt code Date: Tue, 20 Oct 2020 17:23:39 -0700 Message-Id: <20201021002344.378131-32-mattst88@gentoo.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20201021002344.378131-1-mattst88@gentoo.org> References: <20201021002344.378131-1-mattst88@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 7df89618-a3ec-45ef-91ad-f99a16f9a7e4 X-Archives-Hash: aa67ed8851fbe286ad22ef40b1be34dd Added in 2008 with a commit message saying Added code to livecd-stage1 to generate a package list, which will be used in livecd-stage2 with the upcoming livedvd livecd/type to fetch the distfiles automatically. which sounds like a nice plan, but until it's implemented we don't need this code. Fixes: a97c7ee4 ("Updated TODO. ...") Signed-off-by: Matt Turner --- targets/livecd-stage1/controller.sh | 1 - targets/livecd-stage2/controller.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/targets/livecd-stage1/controller.sh b/targets/livecd-stage1/controller.sh index c4572ff9..ae897da9 100755 --- a/targets/livecd-stage1/controller.sh +++ b/targets/livecd-stage1/controller.sh @@ -11,7 +11,6 @@ case $1 in mkdir -p ${clst_chroot_path}/usr/livecd ${clst_chroot_path}/tmp exec_in_chroot \ ${clst_shdir}/${clst_target}/chroot.sh - echo "${clst_packages}" > ${clst_chroot_path}/tmp/packages.txt ;; esac exit $? diff --git a/targets/livecd-stage2/controller.sh b/targets/livecd-stage2/controller.sh index 30b522e3..826dc9dc 100755 --- a/targets/livecd-stage2/controller.sh +++ b/targets/livecd-stage2/controller.sh @@ -78,7 +78,6 @@ case $1 in # Clean out man, info and doc files rm -rf ${clst_chroot_path}/usr/share/{man,doc,info}/* fi - rm -f ${clst_chroot_path}/tmp/packages.txt ;; bootloader) -- 2.26.2