1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/packaging/bin/fill-templates
Andreas Schneider 3849802497 packaging: Reformat shell scripts
shfmt -f packaging/ | xargs shfmt -w -p -i 0 -fn

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Thu Feb 24 10:13:36 UTC 2022 on sn-devel-184
2022-02-24 10:13:36 +00:00

48 lines
1.2 KiB
Bash
Executable File

#!/bin/sh
# Script to fill the packaging templates with the version
# information that is created by mkversion in advance.
#
# This is a standalone wrapper for update-pkginfo, which
# is usually called from release-scripts/create-tarball.
# This allows for testing some aspects of packaging without
# the need to go through all of create-tarball.
#
# Copyright (C) Michael Adam 2009
#
# License: GPL
DIRNAME=$(dirname $0)
TOPDIR=${DIRNAME}/../..
SRCDIR=${TOPDIR}/source3
VERSION_H=${SRCDIR}/include/version.h
pushd ${SRCDIR} >/dev/null 2>&1
./script/mkversion.sh
popd >/dev/null 2>&1
if [ ! -f ${VERSION_H} ]; then
echo "Error creating version.h"
exit 1
fi
VERSION=$(grep "define SAMBA_VERSION_OFFICIAL_STRING" ${VERSION_H} | awk '{print $3}')
vendor_version=$(grep "define SAMBA_VERSION_VENDOR_SUFFIX" ${VERSION_H} | awk '{print $3}')
if test "x${vendor_version}" != "x"; then
VERSION="${VERSION}-${vendor_version}"
fi
vendor_patch=$(grep "define SAMBA_VERSION_VENDOR_PATCH" ${VERSION_H} | awk '{print $3}')
if test "x${vendor_patch}" != "x"; then
VERSION="${VERSION}-${vendor_patch}"
fi
VERSION=$(echo ${VERSION} | sed 's/\"//g')
echo "VERSION: ${VERSION}"
pushd ${TOPDIR}/packaging >/dev/null 2>&1
./bin/update-pkginfo "${VERSION}" 1 ""
popd >/dev/null 2>&1