blob: 957c0678fe2ce2adadd19cd93285e711d7d54ce3 (
plain)
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
|
#!/bin/bash
set -o errexit -o nounset -o xtrace
# Run with -s to include *.symbols files.
package=knot-resolver
withsymbols=false
while getopts "s" o; do
case "${o}" in
s)
withsymbols=true
;;
*)
;;
esac
done
shift $((OPTIND-1))
cd "$(git rev-parse --show-toplevel)"
version=$(ls ${package}*.tar.xz | sed "s/${package}-\(.*\).tar.xz/\1/")
# Check version for invalid characters
if [[ $(echo "${version}" | grep '^[[:alnum:].]$') -ne 0 ]]; then
echo "Invalid version number: may contain only alphanumeric characters and dots"
exit 1
fi
# Fill in VERSION field in distribution specific files
files="distro/rpm/${package}.spec distro/deb/changelog distro/arch/PKGBUILD"
for file in ${files}; do
sed -i "s/__VERSION__/${version}/g" "${file}"
done
# Rename archive to debian format
pkgname="${package}-${version}"
debname="${package}_${version}.orig"
mv "${pkgname}.tar.xz" "${debname}.tar.xz"
# Prepare clean debian-specific directory
tar -xf "${debname}.tar.xz"
pushd "${pkgname}" > /dev/null
cp -arL ../distro/deb debian
# Optionally remove symbols file
if [ "$withsymbols" = false ]; then
rm -f debian/*.symbols
fi
# Create debian archive and dsc
dpkg-source -b .
popd > /dev/null
|