postgresql/generate-sources.sh
Filip Janus 1f6ceea57f Resolves: RHEL-3636
New postgresql stream - 16
Remove pdf documentation
Update postgresql-setup to 8.9
postmaster binary no more shipped
2023-10-13 11:44:59 +02:00

13 lines
262 B
Bash
Executable File

#! /bin/sh
rm sources
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
done