mirror of
https://passt.top/passt
synced 2024-11-05 20:31:11 +00:00
ebf9009361
This is required as Fedora doesn't accept a temporary pointer to a source URL. Reported-by: Ralf Corsepius <rc040203@freenet.de> Reported-by: Artur Frenszek-Iwicki <fedora@svgames.pl> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
55 lines
1.4 KiB
Plaintext
55 lines
1.4 KiB
Plaintext
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#
|
|
# PASST - Plug A Simple Socket Transport
|
|
# for qemu/UNIX domain socket mode
|
|
#
|
|
# PASTA - Pack A Subtle Tap Abstraction
|
|
# for network namespace/tap device mode
|
|
#
|
|
# contrib/fedora/rpkg.macros - rpkg macros (for COPR builds)
|
|
#
|
|
# Copyright (c) 2022 Red Hat GmbH
|
|
# Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
function git_version {
|
|
printf "0.git.%s.%s" "$(date -u -I | tr - _)" "$(git rev-parse --short HEAD)"
|
|
}
|
|
|
|
function git_head {
|
|
git rev-parse HEAD
|
|
}
|
|
|
|
function passt_git_changelog_entry {
|
|
__from="${2}"
|
|
__to="${1}"
|
|
|
|
[ -z "${__from}" ] && __from="$(git rev-list --max-parents=0 HEAD)"
|
|
|
|
__date="$(git log --pretty="format:%cI" "${__to}" -1)"
|
|
__author="$(git log -1 --pretty="format:%an <%ae>" ${__to} -- contrib/fedora)"
|
|
|
|
printf "* %s %s - %s\n" "$(date "+%a %b %e %Y" -d "${__date}")" "${__author}" "0.git.${1}-0"
|
|
|
|
IFS='
|
|
'
|
|
for l in $(git log ${__from}..${__to} --pretty=format:"- %s" -- contrib/fedora); do
|
|
printf "%s%s\n" '-' "${l#*:}"
|
|
done
|
|
unset IFS
|
|
|
|
printf "%s Upstream changes: https://passt.top/passt/log/?qt=range&q=%s..%s\n\n" '-' "${__from}" "${__to}"
|
|
}
|
|
|
|
function passt_git_changelog_pairs {
|
|
while [ -n "${2}" ]; do
|
|
passt_git_changelog_entry "${1}" "${2}"
|
|
shift 2
|
|
done
|
|
|
|
passt_git_changelog_entry "${1}" ""
|
|
}
|
|
|
|
function passt_git_changelog {
|
|
passt_git_changelog_pairs $((git tag --sort="-v:refname"|tail -n+2; git tag --sort="-v:refname") | sort -r)
|
|
}
|