mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

This adds SPDX license headers in place of the wide assortment of things currently in our script headers. We default to GPL-2.0-only except for the oeqa code where it was clearly submitted and marked as MIT on the most part or some scripts which had the "or later" GPL versioning. The patch also drops other obsolete bits of file headers where they were encoountered such as editor modelines, obsolete maintainer information or the phrase "All rights reserved" which is now obsolete and not required in copyright headers (in this case its actually confusing for licensing as all rights were not reserved). More work is needed for OE-Core but this takes care of the bulk of the scripts and meta/lib directories. The top level LICENSE files are tweaked to match the new structure and the SPDX naming. (From OE-Core rev: f8c9c511b5f1b7dbd45b77f345cb6c048ae6763e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
105 lines
2.0 KiB
Bash
Executable File
105 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# patchtest: Run patchtest on commits starting at master
|
|
#
|
|
# Copyright (c) 2017, Intel Corporation.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
|
|
set -o errexit
|
|
|
|
# Default values
|
|
pokydir=''
|
|
|
|
usage() {
|
|
CMD=$(basename $0)
|
|
cat <<EOM
|
|
Usage: $CMD [-h] [-p pokydir]
|
|
-p pokydir Defaults to current directory
|
|
EOM
|
|
>&2
|
|
exit 1
|
|
}
|
|
|
|
function clone() {
|
|
local REPOREMOTE=$1
|
|
local REPODIR=$2
|
|
if [ ! -d $REPODIR ]; then
|
|
git clone $REPOREMOTE $REPODIR --quiet
|
|
else
|
|
( cd $REPODIR; git pull --quiet )
|
|
fi
|
|
}
|
|
|
|
while getopts ":p:h" opt; do
|
|
case $opt in
|
|
p)
|
|
pokydir=$OPTARG
|
|
;;
|
|
h)
|
|
usage
|
|
;;
|
|
\?)
|
|
echo "Invalid option: -$OPTARG" >&2
|
|
usage
|
|
;;
|
|
:)
|
|
echo "Option -$OPTARG requires an argument." >&2
|
|
usage
|
|
;;
|
|
esac
|
|
done
|
|
shift $((OPTIND-1))
|
|
|
|
CDIR="$PWD"
|
|
|
|
# default pokydir to current directory if user did not specify one
|
|
if [ -z "$pokydir" ]; then
|
|
pokydir="$CDIR"
|
|
fi
|
|
|
|
PTENV="$PWD/patchtest"
|
|
PT="$PTENV/patchtest"
|
|
PTOE="$PTENV/patchtest-oe"
|
|
|
|
if ! which virtualenv > /dev/null; then
|
|
echo "Install virtualenv before proceeding"
|
|
exit 1;
|
|
fi
|
|
|
|
# activate the virtual env
|
|
virtualenv $PTENV --quiet
|
|
source $PTENV/bin/activate
|
|
|
|
cd $PTENV
|
|
|
|
# clone or pull
|
|
clone git://git.yoctoproject.org/patchtest $PT
|
|
clone git://git.yoctoproject.org/patchtest-oe $PTOE
|
|
|
|
# install requirements
|
|
pip install -r $PT/requirements.txt --quiet
|
|
pip install -r $PTOE/requirements.txt --quiet
|
|
|
|
PATH="$PT:$PT/scripts:$PATH"
|
|
|
|
# loop through parent to HEAD and execute patchtest on each commit
|
|
for commit in $(git rev-list master..HEAD --reverse)
|
|
do
|
|
shortlog="$(git log "$commit^1..$commit" --pretty='%h: %aN: %cd: %s')"
|
|
log="$(git format-patch "$commit^1..$commit" --stdout | patchtest - -r $pokydir -s $PTOE/tests --base-commit $commit^1 --json 2>/dev/null | create-summary --fail --only-results)"
|
|
if [ -z "$log" ]; then
|
|
shortlog="$shortlog: OK"
|
|
else
|
|
shortlog="$shortlog: FAIL"
|
|
fi
|
|
echo "$shortlog"
|
|
echo "$log" | sed -n -e '/Issue/p' -e '/Suggested fix/p'
|
|
echo ""
|
|
done
|
|
|
|
deactivate
|
|
|
|
cd $CDIR
|