aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2008-06-25 22:27:17 +0000
committerKris Kennaway <kris@FreeBSD.org>2008-06-25 22:27:17 +0000
commita530ab018bb7985ab8120d5a5264147f8baef180 (patch)
tree4987a0133e02febfa7af250d29dd37eda51fff6e /Tools
parent801d3113a2396cb1891d3e77140b31bbf201b89e (diff)
downloadports-a530ab018bb7985ab8120d5a5264147f8baef180.tar.gz
ports-a530ab018bb7985ab8120d5a5264147f8baef180.zip
This conversion script is no longer useful
Notes
Notes: svn path=/head/; revision=215781
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/portbuild/scripts/updatefailure74
1 files changed, 0 insertions, 74 deletions
diff --git a/Tools/portbuild/scripts/updatefailure b/Tools/portbuild/scripts/updatefailure
deleted file mode 100755
index cd38e8e0512c..000000000000
--- a/Tools/portbuild/scripts/updatefailure
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/bin/sh
-#
-# Update the format of the failure file from the old-style (alphanumeric
-# date, and only tracks latest failure date).
-#
-# This must be called via:
-#
-# lockf -k ${pb}/${arch}/${branch}/failure.lock ${pb}/scripts/updatefailure ${arch} ${branch}
-#
-# to avoid racing with any package builds in progress that might try to append to
-# these files.
-
-# configurable variables
-pb=/var/portbuild
-
-cleanup() {
- echo "Problem writing new failure file!"
- rm -f failure.new
- exit 1
-}
-
-if [ $# -ne 2 ]; then
- echo "updatefailure <arch> <branch>"
- exit 1
-fi
-
-arch=$1
-branch=$2
-shift 2
-
-. ${pb}/${arch}/portbuild.conf
-. ${pb}/scripts/buildenv
-
-buildenv ${pb} ${arch} ${branch}
-
-home=${pb}/${arch}/${branch}
-cd $home
-
-echo "===> Updating old failure file"
-
-rm -f failure.new
-tr -s ' ' '_' < failure > failure2
-mv failure2 failure
-
-IFS='|'
-while read dir name ver date count; do
-
- entry=$(grep "^$dir|" newfailure)
- if [ -z "$entry" ]; then
- echo $dir not in newfailures
- olddate=0
- else
- olddate=$(echo $entry | cut -f 4 -d \ )
- echo $dir has olddate $olddate
- fi
-
- if (echo $olddate | grep '_'); then
- date2=$(echo $olddate | tr -s '_' ' ')
- echo $date2
- olddate=$(date -j -f %+ "$date2" +%s)
- echo Updating to $olddate
- fi
-
- if (echo $date | grep '_'); then
- date2=$(echo $date | tr -s '_' ' ')
- echo $date2
- date=$(date -j -f %+ "$date2" +%s)
- echo Updating to $date
- fi
-
- (echo "$dir|$name|$ver|$olddate|$date|$count" >> $home/failure.new) || cleanup
-done < $home/failure
-
-mv failure.new failure