From 1713b6251cd98e29a29c670f0d8c257fa43d1062 Mon Sep 17 00:00:00 2001 From: Laura Abbott Date: Mon, 17 Oct 2016 08:53:57 -0700 Subject: Fixup rawhide RC script to actually work - Drop some debug output - Make fixup-bumpspec executable - copy kernel.spec.tmp back to kernel.spec - Typo in grep command - Increment base properly - Actually grab/upload tarball --- scripts/fixup-bumpspec.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) mode change 100644 => 100755 scripts/fixup-bumpspec.sh (limited to 'scripts/fixup-bumpspec.sh') diff --git a/scripts/fixup-bumpspec.sh b/scripts/fixup-bumpspec.sh old mode 100644 new mode 100755 index 65ac489c4..1a38de222 --- a/scripts/fixup-bumpspec.sh +++ b/scripts/fixup-bumpspec.sh @@ -4,9 +4,7 @@ RELEASE=`grep "%global baserelease" kernel.spec | cut -d ' ' -f 3` export RELEASE=$(($RELEASE-1)) -echo $RELEASE perl -p -i -e 's|%global baserelease.*|%global baserelease $ENV{'RELEASE'}|' kernel.spec TODAY=`date +"%a %b %d %Y"` -echo $TODAY awk -v DATE="$TODAY" 'START { marked = 0; } $0 ~ DATE { if (marked == 1) { print $0 } else {out=$1; for(i = 2; i <= NF - 2; i++) { out=out" "$i } print out; marked = 1; } } $0 !~ DATE { print $0; }' < kernel.spec > kernel.spec.tmp - +mv kernel.spec.tmp kernel.spec -- cgit