Drop unused script generate-sources-and-gitignore.sh

Version: 10.7-1
This commit is contained in:
Pavel Raiskup 2019-02-15 10:06:17 +01:00
parent 174efeb89d
commit e1f85b7973

View File

@ -1,13 +0,0 @@
#! /bin/sh
rm sources .gitignore
set -e
spectool -S *.spec | cut -d' ' -f2 \
| grep -E -e 'postgresql-.*\.tar\.*' -e 'postgresql.*\.pdf' | sort | \
while read line
do
base=`basename "$line"`
echo " * handling $base"
sha512sum --tag "$base" >> sources
echo "/$base" >> .gitignore
done