0e04f8fc5e
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/libecpg.git#82d1535e954a3a86ae227645fa1db1cbaa1adfa2
13 lines
262 B
Bash
Executable File
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
|