2006-05-17 22:44:40 +04:00
|
|
|
#!/bin/sh
|
2007-11-04 13:31:01 +03:00
|
|
|
OPTIONS_KEEPDASHDASH=
|
2014-02-01 06:17:59 +04:00
|
|
|
OPTIONS_STUCKLONG=
|
2007-11-04 13:31:01 +03:00
|
|
|
OPTIONS_SPEC="\
|
2008-07-13 17:36:15 +04:00
|
|
|
git quiltimport [options]
|
2007-11-04 13:31:01 +03:00
|
|
|
--
|
|
|
|
n,dry-run dry run
|
|
|
|
author= author name and email address for patches without any
|
2015-08-31 15:06:38 +03:00
|
|
|
patches= path to the quilt patches
|
|
|
|
series= path to the quilt series file
|
2018-12-13 01:32:27 +03:00
|
|
|
keep-non-patch Pass -b to git mailinfo
|
2007-11-04 13:31:01 +03:00
|
|
|
"
|
2006-05-17 22:44:40 +04:00
|
|
|
SUBDIRECTORY_ON=Yes
|
|
|
|
. git-sh-setup
|
|
|
|
|
2006-05-18 00:10:25 +04:00
|
|
|
dry_run=""
|
2006-05-17 22:44:40 +04:00
|
|
|
quilt_author=""
|
2007-09-24 00:42:08 +04:00
|
|
|
while test $# != 0
|
2006-05-17 22:44:40 +04:00
|
|
|
do
|
|
|
|
case "$1" in
|
2007-11-04 13:31:01 +03:00
|
|
|
--author)
|
2006-05-17 22:44:40 +04:00
|
|
|
shift
|
|
|
|
quilt_author="$1"
|
|
|
|
;;
|
2007-11-04 13:31:01 +03:00
|
|
|
-n|--dry-run)
|
2006-05-18 00:10:25 +04:00
|
|
|
dry_run=1
|
|
|
|
;;
|
2007-11-04 13:31:01 +03:00
|
|
|
--patches)
|
2006-05-17 22:44:40 +04:00
|
|
|
shift
|
2007-11-12 15:07:40 +03:00
|
|
|
QUILT_PATCHES="$1"
|
2006-05-17 22:44:40 +04:00
|
|
|
;;
|
2015-08-31 15:06:38 +03:00
|
|
|
--series)
|
|
|
|
shift
|
|
|
|
QUILT_SERIES="$1"
|
|
|
|
;;
|
2018-12-13 01:32:27 +03:00
|
|
|
--keep-non-patch)
|
|
|
|
MAILINFO_OPT="-b"
|
|
|
|
;;
|
2007-11-04 13:31:01 +03:00
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break;;
|
2006-05-17 22:44:40 +04:00
|
|
|
*)
|
2007-11-04 13:31:01 +03:00
|
|
|
usage
|
2006-05-17 22:44:40 +04:00
|
|
|
;;
|
|
|
|
esac
|
2007-11-04 13:31:01 +03:00
|
|
|
shift
|
2006-05-17 22:44:40 +04:00
|
|
|
done
|
|
|
|
|
|
|
|
# Quilt Author
|
|
|
|
if [ -n "$quilt_author" ] ; then
|
|
|
|
quilt_author_name=$(expr "z$quilt_author" : 'z\(.*[^ ]\) *<.*') &&
|
|
|
|
quilt_author_email=$(expr "z$quilt_author" : '.*<\([^>]*\)') &&
|
|
|
|
test '' != "$quilt_author_name" &&
|
|
|
|
test '' != "$quilt_author_email" ||
|
2006-07-10 09:50:18 +04:00
|
|
|
die "malformed --author parameter"
|
2006-05-17 22:44:40 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Quilt patch directory
|
|
|
|
: ${QUILT_PATCHES:=patches}
|
|
|
|
if ! [ -d "$QUILT_PATCHES" ] ; then
|
|
|
|
echo "The \"$QUILT_PATCHES\" directory does not exist."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2015-08-31 15:06:38 +03:00
|
|
|
# Quilt series file
|
|
|
|
: ${QUILT_SERIES:=$QUILT_PATCHES/series}
|
|
|
|
if ! [ -e "$QUILT_SERIES" ] ; then
|
|
|
|
echo "The \"$QUILT_SERIES\" file does not exist."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2007-02-04 07:49:16 +03:00
|
|
|
# Temporary directories
|
2008-07-21 14:51:02 +04:00
|
|
|
tmp_dir="$GIT_DIR"/rebase-apply
|
2006-05-17 22:44:40 +04:00
|
|
|
tmp_msg="$tmp_dir/msg"
|
|
|
|
tmp_patch="$tmp_dir/patch"
|
|
|
|
tmp_info="$tmp_dir/info"
|
|
|
|
|
|
|
|
|
2013-04-12 02:36:10 +04:00
|
|
|
# Find the initial commit
|
2007-07-03 09:52:14 +04:00
|
|
|
commit=$(git rev-parse HEAD)
|
2006-05-17 22:44:40 +04:00
|
|
|
|
|
|
|
mkdir $tmp_dir || exit 2
|
2009-02-24 12:00:06 +03:00
|
|
|
while read patch_name level garbage <&3
|
2008-03-08 21:27:09 +03:00
|
|
|
do
|
|
|
|
case "$patch_name" in ''|'#'*) continue;; esac
|
|
|
|
case "$level" in
|
2008-03-13 07:07:19 +03:00
|
|
|
-p*) ;;
|
2008-03-08 21:27:09 +03:00
|
|
|
''|'#'*)
|
|
|
|
level=;;
|
|
|
|
*)
|
|
|
|
echo "unable to parse patch level, ignoring it."
|
|
|
|
level=;;
|
|
|
|
esac
|
|
|
|
case "$garbage" in
|
|
|
|
''|'#'*);;
|
|
|
|
*)
|
|
|
|
echo "trailing garbage found in series file: $garbage"
|
|
|
|
exit 1;;
|
|
|
|
esac
|
2007-09-28 00:30:59 +04:00
|
|
|
if ! [ -f "$QUILT_PATCHES/$patch_name" ] ; then
|
|
|
|
echo "$patch_name doesn't exist. Skipping."
|
|
|
|
continue
|
|
|
|
fi
|
2006-05-17 22:44:40 +04:00
|
|
|
echo $patch_name
|
2018-12-13 01:32:27 +03:00
|
|
|
git mailinfo $MAILINFO_OPT "$tmp_msg" "$tmp_patch" \
|
2007-07-14 12:05:43 +04:00
|
|
|
<"$QUILT_PATCHES/$patch_name" >"$tmp_info" || exit 3
|
|
|
|
test -s "$tmp_patch" || {
|
2007-04-25 01:27:00 +04:00
|
|
|
echo "Patch is empty. Was it split wrong?"
|
2007-04-14 01:34:18 +04:00
|
|
|
exit 1
|
2007-03-12 22:52:04 +03:00
|
|
|
}
|
2006-05-17 22:44:40 +04:00
|
|
|
|
|
|
|
# Parse the author information
|
2007-11-28 18:56:11 +03:00
|
|
|
GIT_AUTHOR_NAME=$(sed -ne 's/Author: //p' "$tmp_info")
|
|
|
|
GIT_AUTHOR_EMAIL=$(sed -ne 's/Email: //p' "$tmp_info")
|
|
|
|
export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
2006-05-17 22:44:40 +04:00
|
|
|
while test -z "$GIT_AUTHOR_EMAIL" && test -z "$GIT_AUTHOR_NAME" ; do
|
|
|
|
if [ -n "$quilt_author" ] ; then
|
|
|
|
GIT_AUTHOR_NAME="$quilt_author_name";
|
|
|
|
GIT_AUTHOR_EMAIL="$quilt_author_email";
|
2006-05-18 00:10:25 +04:00
|
|
|
elif [ -n "$dry_run" ]; then
|
|
|
|
echo "No author found in $patch_name" >&2;
|
|
|
|
GIT_AUTHOR_NAME="dry-run-not-found";
|
|
|
|
GIT_AUTHOR_EMAIL="dry-run-not-found";
|
2006-05-17 22:44:40 +04:00
|
|
|
else
|
2006-05-18 00:10:25 +04:00
|
|
|
echo "No author found in $patch_name" >&2;
|
2006-05-17 22:44:40 +04:00
|
|
|
echo "---"
|
|
|
|
cat $tmp_msg
|
2007-01-16 04:31:29 +03:00
|
|
|
printf "Author: ";
|
2006-05-17 22:44:40 +04:00
|
|
|
read patch_author
|
|
|
|
|
|
|
|
echo "$patch_author"
|
|
|
|
|
|
|
|
patch_author_name=$(expr "z$patch_author" : 'z\(.*[^ ]\) *<.*') &&
|
|
|
|
patch_author_email=$(expr "z$patch_author" : '.*<\([^>]*\)') &&
|
|
|
|
test '' != "$patch_author_name" &&
|
|
|
|
test '' != "$patch_author_email" &&
|
|
|
|
GIT_AUTHOR_NAME="$patch_author_name" &&
|
|
|
|
GIT_AUTHOR_EMAIL="$patch_author_email"
|
|
|
|
fi
|
|
|
|
done
|
2007-11-28 18:56:11 +03:00
|
|
|
GIT_AUTHOR_DATE=$(sed -ne 's/Date: //p' "$tmp_info")
|
|
|
|
SUBJECT=$(sed -ne 's/Subject: //p' "$tmp_info")
|
|
|
|
export GIT_AUTHOR_DATE SUBJECT
|
2006-05-17 22:44:40 +04:00
|
|
|
if [ -z "$SUBJECT" ] ; then
|
|
|
|
SUBJECT=$(echo $patch_name | sed -e 's/.patch$//')
|
|
|
|
fi
|
|
|
|
|
2006-05-18 00:10:25 +04:00
|
|
|
if [ -z "$dry_run" ] ; then
|
2008-03-13 07:07:19 +03:00
|
|
|
git apply --index -C1 ${level:+"$level"} "$tmp_patch" &&
|
2007-07-03 09:52:14 +04:00
|
|
|
tree=$(git write-tree) &&
|
|
|
|
commit=$( (echo "$SUBJECT"; echo; cat "$tmp_msg") | git commit-tree $tree -p $commit) &&
|
|
|
|
git update-ref -m "quiltimport: $patch_name" HEAD $commit || exit 4
|
2006-05-18 00:10:25 +04:00
|
|
|
fi
|
2015-08-31 15:06:38 +03:00
|
|
|
done 3<"$QUILT_SERIES"
|
2006-05-17 22:44:40 +04:00
|
|
|
rm -rf $tmp_dir || exit 5
|