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