]> git.pld-linux.org Git - packages/openssh.git/blame - branch.sh
Release 5 (by relup.sh)
[packages/openssh.git] / branch.sh
CommitLineData
fdf9e348
AM
1#!/bin/sh
2
3# https://lists.mindrot.org/pipermail/openssh-unix-dev/2022-March/040086.html
4
5set -e
6url=https://github.com/openssh/openssh-portable.git
7package=openssh
9805e738
AM
8tag=V_9_0_P1
9branch=V_9_0
fdf9e348
AM
10out=$package-git.patch
11repo=$package.git
12
13# use filterdiff, etc to exclude bad chunks from diff
14filter() {
15 cat
16}
17
18if [ ! -d $repo ]; then
19 git clone --bare $url -b $branch $repo
20fi
21
22cd $repo
23 git fetch origin +$branch:$branch +refs/tags/$tag:refs/tags/$tag
24 git log -p --reverse $tag..$branch ":(exclude)doc/doc-*" ":(exclude)test" ":(exclude).*" | filter > ../$out.tmp
25cd ..
26
27if cmp -s $out{,.tmp}; then
28 echo >&2 "No new diffs..."
29 rm -f $out.tmp
30 exit 0
31fi
32mv -f $out{.tmp,}
33
34../md5 $package.spec
35../dropin $out
This page took 0.226005 seconds and 4 git commands to generate.