mirror of
https://passt.top/passt
synced 2024-11-05 12:21:12 +00:00
ca2749e1bd
In practical terms, passt doesn't benefit from the additional protection offered by the AGPL over the GPL, because it's not suitable to be executed over a computer network. Further, restricting the distribution under the version 3 of the GPL wouldn't provide any practical advantage either, as long as the passt codebase is concerned, and might cause unnecessary compatibility dilemmas. Change licensing terms to the GNU General Public License Version 2, or any later version, with written permission from all current and past contributors, namely: myself, David Gibson, Laine Stump, Andrea Bolognani, Paul Holzinger, Richard W.M. Jones, Chris Kuhn, Florian Weimer, Giuseppe Scrivano, Stefan Hajnoczi, and Vasiliy Ulyanov. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.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)
|
|
}
|