diff options
Diffstat (limited to 'debian/bin/genpatch-aufs')
-rwxr-xr-x | debian/bin/genpatch-aufs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/debian/bin/genpatch-aufs b/debian/bin/genpatch-aufs new file mode 100755 index 000000000..8f69f0f0f --- /dev/null +++ b/debian/bin/genpatch-aufs @@ -0,0 +1,32 @@ +#!/bin/bash -e + +aufs_dir="$1" + +export GIT_DIR="$aufs_dir/.git" + +from_line='From: J. R. Okajima <hooanon05@yahoo.co.jp>' +if [ -d "$GIT_DIR" ]; then + origin_line="Origin: https://github.com/sfjro/aufs5-standalone/tree/$(git rev-list HEAD -1)" +else + echo >&2 "W: Cannot include a specific origin URL without an aufs git repo" + origin_line='Origin: https://github.com/sfjro/aufs5-standalone/branches' +fi +bug_line='Bug-Debian: https://bugs.debian.org/541828' + +mkdir -p debian/patches/features/all/aufs5 +for patch in aufs5-{base,mmap,standalone}.patch; do + { + echo "$from_line" + if [ -d "$GIT_DIR" ]; then + git log --pretty='Date: %ad' HEAD -1 -- "$patch" + fi + echo -n 'Subject: ' + grep -v '^SPDX-License-Identifier:' "$aufs_dir/$patch" | head -1 + echo "$origin_line" + echo "$bug_line" + echo + echo 'Patch headers added by debian/bin/genpatch-aufs' + echo + sed 's/^+.*EXPORT_SYMBOL\b/&_GPL/' < "$aufs_dir"/"$patch" + } > debian/patches/features/all/aufs5/"$patch" +done |