1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-06 13:18:07 +03:00
samba-mirror/packaging/bin/update-pkginfo

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
590 B
Plaintext
Raw Normal View History

#!/bin/bash
VERSION=$1
RELEASE=$2
REVISION=$3
if [ "x${REVISION}" = "x" ]; then
RPMREVISION=""
else
RPMREVISION=".${REVISION}"
fi
if [ $# -ne 3 ]; then
echo Usage: update-pkginfo VERSION RELEASE REVISION
exit 1
fi
DIRNAME=$(dirname $0)
TOPDIR=${DIRNAME}/../../
PACKAGINGDIR=${TOPDIR}/packaging
pushd ${PACKAGINGDIR} >/dev/null 2>&1
for f in $(find . -type f -name "*.tmpl"); do
f2=$(echo $f | sed s/.tmpl//g)
echo $f2
sed -e s/PVERSION/$VERSION/g \
-e s/PRELEASE/$RELEASE/g \
-e s/PREVISION/${REVISION}/g \
-e s/PRPMREV/${RPMREVISION}/g <$f >$f2
done
popd >/dev/null 2>&1