2017-12-08 04:31:26 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Generic function to print an error message and bail out.
|
|
|
|
die ()
|
|
|
|
{
|
|
|
|
echo $1 > /dev/stderr
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Print usage
|
|
|
|
usage ()
|
|
|
|
{
|
|
|
|
cat <<EOF
|
|
|
|
$0 -- Generate .patch files for a RPM package from a git repository
|
|
|
|
|
|
|
|
Usage:
|
2018-02-05 18:01:55 +00:00
|
|
|
$0 <REPOSITORY> [<COMMIT_OR_TAG_OR_BRANCH>]
|
2017-12-08 04:31:26 +00:00
|
|
|
|
|
|
|
<REPOSITORY> is the directory where the rebase was performed.
|
|
|
|
|
2018-02-05 18:01:55 +00:00
|
|
|
<COMMIT_OR_TAG_OR_BRANCH> is the commit or tag or branch against which
|
|
|
|
the rebase was performed. It generally just needs to be provided if
|
|
|
|
the file "_git_upstream_commit" doesn't exist, or if you are doing a
|
|
|
|
rebase. This script will then use 'git merge-base' to find the most
|
|
|
|
recent common ancestor between HEAD and COMMIT_OR_TAG_OR_BRANCH.
|
2017-12-08 04:31:26 +00:00
|
|
|
|
|
|
|
Options are:
|
|
|
|
|
|
|
|
-h: Print this message
|
|
|
|
EOF
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
test -f gdb.spec || die "This script needs to run from the same directory as gdb.spec."
|
|
|
|
|
|
|
|
test -z $1 && die "You need to specify the repository."
|
|
|
|
test "$1" = "-h" && usage
|
|
|
|
|
2018-02-05 18:01:55 +00:00
|
|
|
commit_or_tag="`cat _git_upstream_commit`"
|
2017-12-08 04:31:26 +00:00
|
|
|
if test ! -z "$2" ; then
|
|
|
|
commit_or_tag="$2"
|
|
|
|
fi
|
|
|
|
|
2018-02-05 18:01:55 +00:00
|
|
|
test -z $commit_or_tag && die "Because the '_git_upstream_commit' file doesn't exist, you need to specify a commit/tag/branch."
|
|
|
|
|
2017-12-08 04:31:26 +00:00
|
|
|
test -d $1 || die "$1 is not a directory."
|
|
|
|
|
|
|
|
# Remove all the current patches
|
|
|
|
for f in `cat _patch_order` ; do
|
|
|
|
git rm -f $f
|
|
|
|
done
|
|
|
|
|
|
|
|
cd $1
|
2018-07-25 21:35:59 +00:00
|
|
|
|
|
|
|
git name-rev $commit_or_tag
|
|
|
|
test $? -eq 0 || die "Could not find $commit_or_tag in the repository. Did you run 'git fetch'?"
|
|
|
|
|
2017-12-08 04:31:26 +00:00
|
|
|
idx=1
|
|
|
|
common_ancestor=`git merge-base HEAD $commit_or_tag`
|
|
|
|
|
|
|
|
test -z "$common_ancestor" && die "Could not find common ancestor between HEAD and $commit_or_tag."
|
|
|
|
|
|
|
|
temp_PATCH_file=/tmp/_gdb.spec.Patch.include
|
|
|
|
temp_patch_file=/tmp/_gdb.spec.patch.include
|
|
|
|
temp_patch_order_file=/tmp/_patch_order
|
|
|
|
|
|
|
|
rm -f $temp_PATCH_file $temp_patch_file $temp_patch_order_file
|
|
|
|
|
|
|
|
for c in `git rev-list --reverse ${common_ancestor}..HEAD` ; do
|
2018-06-19 00:10:24 +00:00
|
|
|
fname=`git log -1 --pretty='format:%s' $c`
|
|
|
|
test -z $fname && die "Could not determine filename for commit $c."
|
2017-12-10 22:00:49 +00:00
|
|
|
# Because git-format-patch generates patches with the first line
|
|
|
|
# containing the commit hash, every time we do a git-format-patch
|
|
|
|
# here we will have a different .patch file from what we had
|
|
|
|
# before, even if nothing has changed. This is bad, so we replace
|
|
|
|
# the commit hash by something constant (the string
|
|
|
|
# "FEDORA_PATCHES").
|
2018-06-05 15:25:20 +00:00
|
|
|
git format-patch --no-signature --no-stat --keep -1 --stdout $c | sed -e '1 s/^From [0-9a-f]\+ \(.*\)/From FEDORA_PATCHES \1/' -e '/^index [0-9a-f]\+\.\.[0-9a-f]\+.*$/d' > ../$fname
|
2017-12-08 04:31:26 +00:00
|
|
|
(cd .. && git add $fname)
|
|
|
|
|
|
|
|
cat >> $temp_PATCH_file <<EOF
|
|
|
|
`git log -1 --pretty='format:%b' $c | sed -n 's/^;;/#/p'`
|
|
|
|
EOF
|
|
|
|
printf "Patch%03d: %s\n\n" $idx $fname >> $temp_PATCH_file
|
|
|
|
printf "%%patch%03d -p1\n" $idx >> $temp_patch_file
|
|
|
|
echo $fname >> $temp_patch_order_file
|
|
|
|
idx=`expr $idx + 1`
|
|
|
|
done
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
mv $temp_PATCH_file _gdb.spec.Patch.include
|
|
|
|
mv $temp_patch_file _gdb.spec.patch.include
|
|
|
|
mv $temp_patch_order_file _patch_order
|
|
|
|
echo "$common_ancestor" > _git_upstream_commit
|