postgresql/generate-sources-and-gitignore.sh
Honza Horak 87e6a9cfbe Replace whole repo with latest content from branch stream-15-rhel-8.8.0
Content corresponds with RHEL dist-git commit dca2250
2023-05-15 16:53:21 +02:00

14 lines
305 B
Bash
Executable File

#! /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