diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:47:29 +0000 |
commit | 4f5791ebd03eaec1c7da0865a383175b05102712 (patch) | |
tree | 8ce7b00f7a76baa386372422adebbe64510812d4 /packaging/bin/fill-templates | |
parent | Initial commit. (diff) | |
download | samba-4f5791ebd03eaec1c7da0865a383175b05102712.tar.xz samba-4f5791ebd03eaec1c7da0865a383175b05102712.zip |
Adding upstream version 2:4.17.12+dfsg.upstream/2%4.17.12+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'packaging/bin/fill-templates')
-rwxr-xr-x | packaging/bin/fill-templates | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/packaging/bin/fill-templates b/packaging/bin/fill-templates new file mode 100755 index 0000000..cd711bd --- /dev/null +++ b/packaging/bin/fill-templates @@ -0,0 +1,47 @@ +#!/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 |