1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
#!/bin/bash
: <<=cut
=head1 DESCRIPTION
This script is called by uscan(1) as per "debian/watch" to populate
"templates" directory from upstream git repository.
See also https://support.zabbix.com/browse/ZBX-17784
=head1 COPYRIGHT
Copyright: 2018-2022 Dmitry Smirnov <onlyjob@member.fsf.org>
=head1 LICENSE
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
=cut
set -e
set -u
if [ "$1" = '--upstream-version' ]; then
version="$2"
else
printf "E: missing argument '--upstream-version'.\n" 1>&2
exit 1
fi
GOBIN=$(command -v go)
export XZ_OPT="-6v"
DEB_SOURCE="$( dpkg-parsechangelog -SSource )"
#DEB_VERSION="$( dpkg-parsechangelog -SVersion )"
filename="$( readlink -f ../${DEB_SOURCE}_${version}.orig.tar.xz )"
[ -s "${filename}" ] || exit 1
uversion="${version%%?dfsg*}"
## tarpack() takes two arguments:
## 1. directory to compress
## 2. tarball path/name
tarpack() {
( find -L "$1" -xdev -type f -print | LC_ALL=C sort \
| XZ_OPT="-6v" tar -caf "$2" -T- --owner=root --group=root --mode=a+rX \
)
}
work_dir="$( mktemp -d -t get-orig-source_${DEB_SOURCE}_XXXXXXXX )"
trap "rm -rf '${work_dir}'" EXIT
(
git clone --branch ${uversion} --depth 1 https://git.zabbix.com/scm/zbx/zabbix.git "${work_dir}"
cd "${work_dir}/src/go"
#tar -xf "${filename}" --strip-components=1
${GOBIN} version
set -x
${GOBIN} mod vendor -v
${GOBIN} mod tidy -v || true
set +x
mv vendor ../../
)
## pack component(s):
for component in templates vendor; do
FN="$( readlink -f ../${DEB_SOURCE}_${version}.orig-${component}.tar.gz )"
if [ ! -s "${FN}" ]; then
( cd "${work_dir}" && tarpack "${component}" "${FN}" )
mk-origtargz --package ${DEB_SOURCE} --version ${version} \
--rename --repack --compression xz --directory .. \
--component ${component} --copyright-file debian/copyright \
"${FN}"
fi
done
#####
rm -rf "${work_dir}"
|