update makerepo.sh script
This commit is contained in:
parent
9ab3949bca
commit
8166579897
1302
makerepo.gitignore
Normal file
1302
makerepo.gitignore
Normal file
File diff suppressed because it is too large
Load Diff
190
makerepo.sh
190
makerepo.sh
@ -1,24 +1,102 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -vx
|
||||
#set -vx
|
||||
|
||||
die() {
|
||||
echo "$@" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
DIRNAME=NetworkManager-0.9.9.0
|
||||
|
||||
|
||||
if grep -q '^NAME="Red Hat Enterprise Linux' /etc/os-release ; then
|
||||
FEDPKG=rhpkg
|
||||
else
|
||||
FEDPKG=fedpkg
|
||||
fi
|
||||
|
||||
split_patch() {
|
||||
# patches created with git-format-patch that contain more then one
|
||||
# commit, cannot be easily reverted with patch, because patch works
|
||||
# the patches from top down. In case of -R however, we have to apply
|
||||
# the latest patches first.
|
||||
|
||||
read -r -d '' PERL_PROG <<-'EOF'
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
open FILE, $ARGV[0] or die "Can't open $ARGV[0] for reading: $!\n";
|
||||
|
||||
local $/ = undef;
|
||||
my $file = <FILE>;
|
||||
close FILE;
|
||||
|
||||
my @patches = split(/\n\nFrom /,$file);
|
||||
|
||||
my $i = $#patches + 1;
|
||||
my $patch;
|
||||
my $first = 1;
|
||||
foreach $patch (@patches){
|
||||
if ($first) {
|
||||
$first = 0;
|
||||
} else {
|
||||
$patch = "From $patch"
|
||||
}
|
||||
my $o = sprintf("%s%s%03d", $ARGV[0], $ARGV[1], $i);
|
||||
open(my $OUT, ">", $o) or die "Can't open $o for writing: $!";
|
||||
$i--;
|
||||
|
||||
print $OUT "$patch";
|
||||
|
||||
close $OUT;
|
||||
}
|
||||
EOF
|
||||
|
||||
perl -e "$PERL_PROG" "$1" "$2"
|
||||
}
|
||||
|
||||
unset REVERT_COUNT
|
||||
LOCAL=0
|
||||
for ARG; do
|
||||
case "$ARG" in
|
||||
-h|-?|help|--help)
|
||||
echo "SYNOPSIS: $(basename "$0") [local|-l] [-?|-h|--help|help] [NUM]"
|
||||
echo " - If [NUM] is omitted, it will revert all patches from the spec file,"
|
||||
echo " otherwise only the last NUM patches."
|
||||
echo " - When specifying 'local', it will also call \`$FEDPKG local\` to configure"
|
||||
echo " and build the output directory."
|
||||
echo " TIP: symlink your local git clone of NetworkManager to './.git/local'."
|
||||
exit 0
|
||||
;;
|
||||
local|-l)
|
||||
LOCAL=1
|
||||
;;
|
||||
*)
|
||||
if [ -n "${REVERT_COUNT+x}" ]; then
|
||||
die "invalid argument \"$ARG\""
|
||||
fi
|
||||
case "$ARG" in
|
||||
''|*[!0-9]*) die "invalid argument \"$ARG\": should be an integer (number of patches to revert)";;
|
||||
esac
|
||||
REVERT_COUNT="$ARG"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
srcdir="$(dirname "$(readlink -f "$0")")"
|
||||
|
||||
(test -f $srcdir/NetworkManager.spec \
|
||||
&& test -f $srcdir/sources) || {
|
||||
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the NM pkg dir"
|
||||
echo "**Error**: Directory "\`$srcdir\'" does not look like the NM pkg dir."
|
||||
echo "Copy the file \"$(readlink -f "$0")\" to the dist-git base directory"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# generate the clean dir
|
||||
fedpkg prep || die "error while \`fedpkg prep\`"
|
||||
$FEDPKG prep || die "error while \`$FEDPKG prep\`"
|
||||
|
||||
pushd NetworkManager-0.9.9.0
|
||||
pushd "$DIRNAME"
|
||||
git init .
|
||||
# if you have a local clone of NetworkManager, symlink
|
||||
# it as ../.git/local.
|
||||
@ -29,47 +107,91 @@ pushd NetworkManager-0.9.9.0
|
||||
git fetch local 'refs/remotes/origin/*:refs/remotes/origin/*'
|
||||
fi
|
||||
git remote add origin git://anongit.freedesktop.org/NetworkManager/NetworkManager
|
||||
git remote 'set-url' --push origin "ssh://$USER@git.freedesktop.org/git/NetworkManager/NetworkManager"
|
||||
git commit --allow-empty -m '*** empty initial commit' # useful, to rebase the following commit
|
||||
git add -f -A .
|
||||
git commit -m '*** add all'
|
||||
cat <<EOF > .gitignore
|
||||
EOF
|
||||
cat ../makerepo.gitignore > .gitignore
|
||||
git rm --cached -r .
|
||||
git add .
|
||||
git commit -m "*** clean state (ignored files removed)"
|
||||
|
||||
REVERT_COUNT="$(echo "${1-1}" | sed -n 's/^\([0-9]\+\)$/\1/p' | head -n1)"
|
||||
if [[ "$REVERT_COUNT" != "" ]]; then
|
||||
echo "revert the last $REVERT_COUNT commits"
|
||||
PATCH_LIST="$(sed -n 's/^Patch\([0-9]\+\): \+\(.*\)$/\1 \2/p' ../NetworkManager.spec | sort -n | tail -n $REVERT_COUNT)"
|
||||
echo "$PATCH_LIST"
|
||||
# revert and last patches...
|
||||
for i in $(seq "$REVERT_COUNT" -1 1); do
|
||||
LAST_PATCH_N=$(echo "$PATCH_LIST" | sed -n "$i"'s/^\([0-9]\+\) \+.*$/\1/p')
|
||||
LAST_PATCH=$( echo "$PATCH_LIST" | sed -n "$i"'s/^\([0-9]\+\) \+\(.*\)$/\2/p')
|
||||
echo "revert Patch$LAST_PATCH_N \"$LAST_PATCH\"..."
|
||||
patch --no-backup-if-mismatch -R -p1 < "../$LAST_PATCH" || die "error reverting Patch$LAST_PATCH_N $LAST_PATCH"
|
||||
git add .
|
||||
git commit --allow-empty -a -m "<< revert Patch$LAST_PATCH_N \"$LAST_PATCH\""
|
||||
done
|
||||
BASECOMMIT=`git rev-parse HEAD`
|
||||
for i in $(seq 1 "$REVERT_COUNT"); do
|
||||
LAST_PATCH_N=$(echo "$PATCH_LIST" | sed -n "$i"'s/^\([0-9]\+\) \+.*$/\1/p')
|
||||
LAST_PATCH=$( echo "$PATCH_LIST" | sed -n "$i"'s/^\([0-9]\+\) \+\(.*\)$/\2/p')
|
||||
echo "reapply Patch$LAST_PATCH_N \"$LAST_PATCH\"..."
|
||||
# first try git-am to preserve the commit message, otherwise just revert the last commit
|
||||
git am "../$LAST_PATCH" || (
|
||||
git revert --no-edit $BASECOMMIT~$((i-1))
|
||||
COMMIT_MSG="$(git log -n1 --format='%s' $BASECOMMIT~$((i-1)) | sed 's/<< revert \(Patch.*"\)$/>> reapply \1/')"
|
||||
git commit --amend -m "$COMMIT_MSG"
|
||||
)
|
||||
if [[ "$REVERT_COUNT" == "" || $REVERT_COUNT -gt 0 ]]; then
|
||||
|
||||
# The tree to the version before should be identical. Just to be sure, reset it.
|
||||
git reset $BASECOMMIT~$((i)) -- .
|
||||
EDITOR=true git commit --amend --no-edit
|
||||
# parse the list of patches
|
||||
IFS=$'\n' read -rd '' -a PATCH_LIST <<<"$(sed -n 's/^Patch\([0-9]\+\): \+\(.*\)$/\1 \2/p' ../NetworkManager.spec | sort -n)"
|
||||
|
||||
# truncate the list of patches to revert/reapply
|
||||
if [[ "$REVERT_COUNT" == "" || "$REVERT_COUNT" -gt ${#PATCH_LIST[@]} ]]; then
|
||||
echo "revert all ${#PATCH_LIST[@]} patches"
|
||||
else
|
||||
echo "revert the last $REVERT_COUNT patches of ${#PATCH_LIST[@]}"
|
||||
PATCH_LIST=("${PATCH_LIST[@]:$((${#PATCH_LIST[@]} - $REVERT_COUNT))}")
|
||||
fi
|
||||
|
||||
# split the list in index and patch file name
|
||||
PATCH_LIST_N=()
|
||||
for i in ${!PATCH_LIST[@]}; do
|
||||
LAST_PATCH_N[$i]=$(echo "${PATCH_LIST[$i]}" | sed -n 's/^\([0-9]\+\) \+.*$/\1/p')
|
||||
LAST_PATCH[$i]=$( echo "${PATCH_LIST[$i]}" | sed -n 's/^\([0-9]\+\) \+\(.*\)$/\2/p')
|
||||
done
|
||||
|
||||
# revert and patches in reverse order...
|
||||
BASECOMMIT=("`git rev-parse HEAD`")
|
||||
for j in "${!PATCH_LIST[@]}"; do
|
||||
i=$((${#PATCH_LIST[@]} - $j - 1))
|
||||
echo "revert Patch${LAST_PATCH_N[$i]} \"${LAST_PATCH[$i]}\"..."
|
||||
patch -f --no-backup-if-mismatch -R -p1 < "../${LAST_PATCH[$i]}" || (
|
||||
# error applying patch. Maybe we have a multi line patch...
|
||||
|
||||
split_patch "../${LAST_PATCH[$i]}" ".makerepo-split."
|
||||
|
||||
git reset --hard
|
||||
git clean -fdx
|
||||
for p in "../${LAST_PATCH[$i]}".makerepo-split.*; do
|
||||
echo ">>> try split part $p for ${LAST_PATCH[$i]}"
|
||||
patch --no-backup-if-mismatch -R -p1 < "$p" || die "error reverting Patch${LAST_PATCH_N[$i]} ${LAST_PATCH[$i]}"
|
||||
done
|
||||
)
|
||||
git add .
|
||||
git commit --allow-empty -a -m "<< revert Patch${LAST_PATCH_N[$i]} \"${LAST_PATCH[$i]}\""
|
||||
BASECOMMIT=("`git rev-parse HEAD`" "${BASECOMMIT[@]}")
|
||||
done
|
||||
|
||||
# reapply the patches
|
||||
for i in ${!PATCH_LIST[@]}; do
|
||||
echo "reapply Patch${LAST_PATCH_N[$i]} \"${LAST_PATCH[$i]}\"..."
|
||||
|
||||
# create an empty commit, indicating the commit before starting to reapply
|
||||
BASECOMMIT_REVERT="${BASECOMMIT[$((i))]}"
|
||||
COMMIT_MSG="$(git log -n1 --format='%s' "$BASECOMMIT_REVERT" | sed 's/<< revert \(Patch.*"\)$/-- before reapplying \1/')"
|
||||
git commit --allow-empty -m "$COMMIT_MSG"
|
||||
|
||||
# first try git-am to preserve the commit message, otherwise just revert the last commit
|
||||
if git am "../${LAST_PATCH[$i]}"; then
|
||||
# The tree to the version before should be identical after reapplying the patch.
|
||||
# Just to be sure, reset the commit.
|
||||
git reset "${BASECOMMIT[$((i+1))]}" -- .
|
||||
COMMIT_MSG="$(git log -n1 --format='%s' "$BASECOMMIT_REVERT" | sed 's/<< revert \(Patch.*"\)$/-- after reapplying \1\n\ngit-am did not fully restore the previous state/')"
|
||||
git commit -m "$COMMIT_MSG" || echo "NOTHING TO COMMIT"
|
||||
else
|
||||
git am --abort
|
||||
git reset "${BASECOMMIT[$((i+1))]}" -- .
|
||||
COMMIT_MSG="$(git log -n1 --format='%s' "$BASECOMMIT_REVERT" | sed 's/<< revert \(Patch.*"\)$/>> reapply \1/')"
|
||||
git commit --allow-empty -m "$COMMIT_MSG"
|
||||
fi
|
||||
git reset --hard HEAD
|
||||
done
|
||||
fi
|
||||
popd
|
||||
|
||||
if [[ $LOCAL != 0 ]]; then
|
||||
rm -rf ./.makerepo.git/
|
||||
mv "$DIRNAME/.git" ./.makerepo.git/
|
||||
$FEDPKG local
|
||||
mv ./.makerepo.git/ "$DIRNAME/.git"
|
||||
pushd "$DIRNAME"
|
||||
git checkout -- .gitignore
|
||||
popd
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user