mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
49b84197e0
Michael
32 lines
619 B
Bash
Executable File
32 lines
619 B
Bash
Executable File
#!/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
|