mirror of https://gitee.com/openkylin/gnupg2.git
avoid-beta-warning
avoid self-describing as a beta Using autoreconf against the source as distributed in tarball form invariably results in a package that thinks it's a "beta" package, which produces the "THIS IS A DEVELOPMENT VERSION" warning string. since we use dh_autoreconf, i need this patch to avoid producing builds that announce themselves as DEVELOPMENT VERSIONs. See discussion at: http://lists.gnupg.org/pipermail/gnupg-devel/2014-November/029065.html Gbp-Pq: Topic debian-packaging Gbp-Pq: Name avoid-beta-warning.patch
This commit is contained in:
parent
84a7357b64
commit
c774625dc4
|
@ -229,7 +229,7 @@ if [ "$myhost" = "find-version" ]; then
|
|||
esac
|
||||
|
||||
beta=no
|
||||
if [ -e .git ]; then
|
||||
if false; then
|
||||
ingit=yes
|
||||
tmp=$(git describe --match "${matchstr1}" --long 2>/dev/null)
|
||||
tmp=$(echo "$tmp" | sed s/^"$package"//)
|
||||
|
@ -245,8 +245,8 @@ if [ "$myhost" = "find-version" ]; then
|
|||
rvd=$((0x$(echo ${rev} | dd bs=1 count=4 2>/dev/null)))
|
||||
else
|
||||
ingit=no
|
||||
beta=yes
|
||||
tmp="-unknown"
|
||||
beta=no
|
||||
tmp=""
|
||||
rev="0000000"
|
||||
rvd="0"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue