mirror of
https://passt.top/passt
synced 2024-11-05 12:21:12 +00:00
e2cae8f1c3
...rpmbuild otherwise expands valid macro names in changelog entries. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
58 lines
1.5 KiB
Plaintext
58 lines
1.5 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 {
|
|
__commit="$(git rev-parse --short "${1:-HEAD}")"
|
|
__date="$(git log --pretty="format:%cI" "${__commit}" -1)"
|
|
|
|
printf "0^%s.g%s" "$(date -uI -d "${__date}" | tr -d -)" "${__commit}"
|
|
}
|
|
|
|
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}" "$(git_version "${__to}")-1"
|
|
|
|
IFS='
|
|
'
|
|
for l in $(git log ${__from}..${__to} --pretty=format:"- %s" -- contrib/fedora); do
|
|
printf "%s%s\n" '-' "${l#*:}" | sed s/%/%%/g
|
|
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)
|
|
}
|