From a62fb9b3aa2cee7c5a5b5c3e14372faba01f383d Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Thu, 30 Jan 2003 17:11:00 +0000 Subject: Remove useless oldies. Missing functionnalities needs to be reimplemented almost from the scratch due to the bunch of changes to the core since those scripts were written. --- needs-checking/combine-series | 52 ------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100755 needs-checking/combine-series (limited to 'needs-checking/combine-series') diff --git a/needs-checking/combine-series b/needs-checking/combine-series deleted file mode 100755 index f94a706..0000000 --- a/needs-checking/combine-series +++ /dev/null @@ -1,52 +0,0 @@ -#! /bin/bash - -# This script is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License version 2 as -# published by the Free Software Foundation. -# -# See the COPYING and AUTHORS files for more details. - -# -# Make superpatch from current series using combinediff. -# - -. patchfns 2>/dev/null || -. /usr/lib/patch-scripts/patchfns 2>/dev/null || -. $PATCHSCRIPTS_LIBDIR/patchfns 2>/dev/null || -{ - echo "Impossible to find my library 'patchfns'." - echo "Check your install, or go to the right directory" - exit 1 -} - -usage() -{ - echo "Usage: combine-series output-file" - exit 1 -} - -if [ $# -ne 1 ] -then - usage -fi - -need_file_there series -CURRENT=$(mktemp /tmp/cmbd-XXXXXXXX) -for FILE in $(cat_series) -do - NEXT=$(mktemp /tmp/cmbd-XXXXXXXX) - if [ -f $P/patches/$FILE ] - then - combinediff $CURRENT $P/patches/$FILE > $NEXT - elif [ -f $P/patches/$FILE.patch ] - then - combinediff $CURRENT $P/patches/$FILE.patch > $NEXT - elif [ -f $FILE ] - then - combinediff $CURRENT $FILE > $NEXT - fi - rm $CURRENT - CURRENT=$NEXT -done - -mv $NEXT "$1" -- cgit