2016-02-17 00:06:49 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
2017-06-16 19:21:18 +00:00
|
|
|
set -u
|
2016-02-17 00:06:49 +00:00
|
|
|
shopt -qu globstar
|
2017-06-16 19:21:18 +00:00
|
|
|
shopt -qs expand_aliases
|
2016-02-17 00:06:49 +00:00
|
|
|
export LC_COLLATE=C
|
|
|
|
export LC_ALL=C
|
|
|
|
|
2018-07-12 14:55:34 +00:00
|
|
|
format_patch_ops="--zero-commit --no-signature --no-numbered --stat=80 --summary -O.git.diff.order --patience -l0"
|
2017-06-16 19:21:18 +00:00
|
|
|
alias othergit="GIT_DIR=$PWD/.rhboot.git GIT_WORK_TREE=$PWD git"
|
2018-05-11 14:33:02 +00:00
|
|
|
alias formatpatch="othergit format-patch $format_patch_ops"
|
2017-06-16 19:21:18 +00:00
|
|
|
|
2016-02-17 00:06:49 +00:00
|
|
|
usage()
|
|
|
|
{
|
|
|
|
retcode=0
|
2018-05-14 15:43:51 +00:00
|
|
|
if [ -n "${1:-}" ]; then
|
2016-02-17 00:06:49 +00:00
|
|
|
exec 1>&2
|
|
|
|
retcode=$1
|
|
|
|
fi
|
2018-07-12 15:20:24 +00:00
|
|
|
echo usage: "do-rebase [OPTIONS] [--dist RELEASEVER | RELEASEVER ] [GITREPO]"
|
2018-07-10 18:39:10 +00:00
|
|
|
echo OPTIONS: --dist=RELEASEVER --repo=REPO --amend --nocommit --nobumpspec
|
2016-02-17 00:06:49 +00:00
|
|
|
exit $retcode
|
|
|
|
}
|
|
|
|
|
2016-12-01 22:10:06 +00:00
|
|
|
if ! git status | grep -q 'nothing to commit, working .* clean' ; then
|
2016-02-17 00:06:49 +00:00
|
|
|
echo "Working directory is not clean, cannot rebase." 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-05-14 15:43:52 +00:00
|
|
|
gitrepo="git@github.com:rhboot/grub2.git"
|
2016-02-17 00:06:49 +00:00
|
|
|
releasever=""
|
2016-04-07 14:44:51 +00:00
|
|
|
amend=""
|
2018-07-10 18:39:10 +00:00
|
|
|
commit=1
|
|
|
|
bumpspec=1
|
2016-02-17 00:06:49 +00:00
|
|
|
|
|
|
|
declare -a savedargs
|
2017-06-16 19:21:18 +00:00
|
|
|
savedargs=()
|
2016-02-17 00:06:49 +00:00
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case $1 in
|
|
|
|
--help|-h|--usage|-?|-u)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
--dist=*)
|
|
|
|
releasever=${1##--dist=}
|
|
|
|
;;
|
|
|
|
--dist)
|
|
|
|
shift
|
|
|
|
releasever=$1
|
|
|
|
;;
|
2018-05-14 15:43:52 +00:00
|
|
|
--repo=*)
|
|
|
|
gitrepo=${1##--repo=}
|
|
|
|
;;
|
|
|
|
--repo)
|
|
|
|
shift
|
|
|
|
gitrepo=$1
|
|
|
|
;;
|
2016-04-07 14:44:51 +00:00
|
|
|
--amend)
|
|
|
|
amend="--amend"
|
|
|
|
;;
|
2018-07-10 18:39:10 +00:00
|
|
|
--commit)
|
|
|
|
commit=1
|
|
|
|
;;
|
2018-07-11 19:52:37 +00:00
|
|
|
--nocommit|--no-commit|--nc)
|
2018-07-10 18:39:10 +00:00
|
|
|
# --nocommit implies nobumpspec, but --bumpspec after it will
|
|
|
|
# force bumpspec to get run.
|
|
|
|
commit=0
|
|
|
|
bumpspec=0
|
|
|
|
;;
|
|
|
|
--bumpspec)
|
|
|
|
bumpspec=2
|
|
|
|
;;
|
2018-07-11 19:52:37 +00:00
|
|
|
--nobumpspec|--no-bumpspec|--nb)
|
2018-07-10 18:39:10 +00:00
|
|
|
bumpspec=0
|
|
|
|
;;
|
2016-02-17 00:06:49 +00:00
|
|
|
*)
|
|
|
|
savedargs[${#savedargs[@]}]="$1"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
set -- "${savedargs[@]}"
|
|
|
|
|
|
|
|
if [ -z "${releasever}" -a $# -gt 0 ]; then
|
|
|
|
releasever=$1
|
|
|
|
shift
|
|
|
|
else
|
|
|
|
dist=$(git status | grep "On branch" | cut -d\ -f3-)
|
|
|
|
if [ -z "$dist" ]; then
|
|
|
|
echo "Could not figure out distro release version" 1>&2
|
|
|
|
usage 1
|
|
|
|
fi
|
|
|
|
case "$(eval echo \${dist})" in
|
|
|
|
.fc*)
|
|
|
|
releasever=$(echo ${dist} | \
|
|
|
|
sed 's/^\.fc\([[:digit:]]\+\)$/fedora-\1/')
|
|
|
|
;;
|
|
|
|
.*)
|
|
|
|
releasever=$(echo $dist | \
|
|
|
|
sed 's/^\.\([[:alpha:]]\+\)\([[:digit:]]\+\)$/\1-\2/')
|
|
|
|
;;
|
2017-06-16 19:21:18 +00:00
|
|
|
rhel*)
|
|
|
|
releasever=${dist}
|
|
|
|
dist=.el${releasever##rhel-}
|
|
|
|
;;
|
2016-02-17 00:06:49 +00:00
|
|
|
esac
|
|
|
|
if [ -z "${releasever}" -o "${releasever}" = "${dist}" ]; then
|
|
|
|
echo "Could not figure out distro release version" 1>&2
|
|
|
|
usage 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$releasever" ]; then
|
|
|
|
echo "Could not figure out distro release version" 1>&2
|
|
|
|
usage 1
|
|
|
|
fi
|
|
|
|
|
2018-05-14 15:43:52 +00:00
|
|
|
if [ -n "${1:-}" ]; then
|
|
|
|
gitrepo=$1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2016-02-17 00:06:49 +00:00
|
|
|
if [ $# -ge 1 ]; then
|
|
|
|
echo "Unknown argument \"$1\"" 1>&2
|
|
|
|
usage 1
|
|
|
|
fi
|
|
|
|
|
2017-06-16 19:21:18 +00:00
|
|
|
if [ ! -d $PWD/.rhboot.git ]; then
|
|
|
|
othergit init
|
|
|
|
if ! othergit remote add \
|
2018-05-14 15:43:52 +00:00
|
|
|
rhboot $gitrepo \
|
2017-06-16 19:21:18 +00:00
|
|
|
>/dev/null 2>&1 ; then
|
|
|
|
echo "Could not add remote: rhboot" 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
elif othergit remote show -n rhboot | grep -q "URL: github$" ; then
|
|
|
|
if ! othergit remote add \
|
2018-05-14 15:43:52 +00:00
|
|
|
rhboot $gitrepo \
|
2017-06-16 19:21:18 +00:00
|
|
|
>/dev/null 2>&1 ; then
|
|
|
|
echo "Could not add remote: rhboot" 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2018-07-17 20:30:53 +00:00
|
|
|
else
|
|
|
|
othergit remote set-url rhboot ${gitrepo}
|
2016-02-17 00:06:49 +00:00
|
|
|
fi
|
|
|
|
|
2017-06-16 19:21:18 +00:00
|
|
|
othergit fetch rhboot
|
|
|
|
remote=$(othergit branch --list -r "rhboot/${releasever}" 2>/dev/null)
|
|
|
|
if [ "${remote}" != " rhboot/${releasever}" ]; then
|
2016-02-17 00:06:49 +00:00
|
|
|
echo branch \"${releasever}\" does not appear to exist 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
unset LC_ALL
|
|
|
|
git rm -q 0*.patch
|
|
|
|
|
2017-06-16 19:21:18 +00:00
|
|
|
> grub.patches
|
2018-05-11 14:33:02 +00:00
|
|
|
patches=$(formatpatch grub-2.02..refs/remotes/rhboot/${releasever})
|
2016-02-17 00:06:49 +00:00
|
|
|
for x in $patches ; do
|
|
|
|
echo Patch$(echo ${x} | cut -d- -f1): ${x} >> grub.patches
|
|
|
|
done
|
2018-07-10 18:39:10 +00:00
|
|
|
if [[ -z "$amend" && ${bumpspec} -gt 0 ]] || [[ ${bumpspec} -ge 2 ]] ; then
|
2016-04-07 14:44:51 +00:00
|
|
|
rpmdev-bumpspec -c "- Rebased to newer upstream for ${releasever}" grub2.spec
|
|
|
|
fi
|
2017-06-16 19:21:18 +00:00
|
|
|
git add 0*.patch grub2.spec grub.patches
|
2018-07-10 18:39:10 +00:00
|
|
|
if [[ ${commit} -eq 1 ]] ; then
|
|
|
|
if [ -z "$amend" ]; then
|
|
|
|
fedpkg commit -s -c
|
|
|
|
else
|
|
|
|
git commit --amend
|
|
|
|
fi
|
2016-04-07 14:44:51 +00:00
|
|
|
fi
|