From f4f7122ebcdab969fb9ae73ab4796cdbccc4a1ea Mon Sep 17 00:00:00 2001 From: Sebastian Knapp Date: Wed, 16 Mar 2005 13:38:55 +0000 Subject: [PATCH] giftnuss: remove -import from scripts/Download this is broken (seams to run in a endless loop) now complete import is the default behaviour anyway download a single import does not work!? Index: scripts/Download =================================================================== [2004122400035826136] (https://www.rocklinux.net/submaster) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@5683 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- scripts/Download | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/scripts/Download b/scripts/Download index 586e31709..6fbf2096f 100755 --- a/scripts/Download +++ b/scripts/Download @@ -40,7 +40,6 @@ if [ "$1" = '-help' ] ; then echo " ./scripts/Download [ options ] [ ]" echo " ./scripts/Download [ options ] [ ]" echo " ./scripts/Download [ options ] -repository " - echo " ./scripts/Download [ options ] -import " echo " ./scripts/Download [ options ] -sm " echo " ./scripts/Download [ options ] { -all | -required }" echo @@ -859,14 +858,6 @@ all() { done } -import() { - local import - for import ; do - mapped_packages $( grep '#if ' package/import/$import/*.desc | \ - column_clean | cut -d' ' -f4) - done -} - packages() { local descfile for arg; do @@ -971,7 +962,6 @@ case "$1" in -required) required ;; -all) all ;; - -import) shift ; import "$@" ;; -repository) shift ; repository "$@" ;; -sm) shift ; smpatches "$@" ;;