mkgitrel.setprev: factor out helper scripts, extend it
[releases.git] / mkgitrel.cln
1 #! /bin/bash
2
3 # Copyright 2021-2022 Alexandre Oliva <lxoliva@fsfla.org>
4 #
5 # This program is part of GNU Linux-libre, a GNU project that
6 # publishes scripts to clean up Linux so as to make it suitable for
7 # use in the GNU Project and in Free System Distributions.
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
22 # USA
23
24 scriptdir=$(dirname "$0")
25 . $scriptdir/mkgitrel.gcfg
26
27 success=:
28 for rel
29 do
30
31 . $scriptdir/mkgitrel.setprev &&
32
33 for up in linus stable; do
34   git rev-parse --verify -q $up/v$rup && break
35 done &&
36
37 git verify-tag $up/v$rup &&
38
39 { test -d scripts/v$rel ||
40   git worktree add --detach scripts/v$rel scripts/$cbr
41 } &&
42
43 case $(sed -n 's,^kver=\(.*\) extra=\(.*\),\1-gnu\2,p' \
44            scripts/v$rel/deblob-$cbr) in
45 "$cbr$(echo $rel | sed -n 's,.*\(-gnu\),\1,p')") ;;
46 *) echo $rel mismatches release implied by scripts/v$rel/deblob-$cbr >&2
47    echo "$cbr$(echo $rel | sed -n 's,.*\(-gnu\),\1,p')" vs \
48         $(sed -n 's,^kver=\(.*\) extra=\(.*\),\1-gnu\2,p' \
49            scripts/v$rel/deblob-$cbr) >&2
50    continue;;
51 esac &&
52
53 git worktree add --detach sources/v$rel $up/v$rup &&
54
55 git worktree add --detach logs/v$rel public/logs/v$prevn &&
56
57 (cd logs/v$rel && git rm -f linux-*) &&
58
59 (
60   cd sources/v$rel &&
61   ../../scripts/v$rel/deblob-$cbr >& ../../logs/v$rel/linux-libre-$rel.log &&
62   git commit -m "GNU Linux-libre v$rel incremental" -a &&
63   git tag incr/v$rel
64 ) &&
65
66 . $scriptdir/mkgitrel.setdate &&
67
68 (
69   cd sources/v$rel &&
70   git reset --soft -q public/sources/v$prevn &&
71   git commit --amend --reset-author -S$key \
72       -m "GNU Linux-libre $rel" &&
73   git tag -m "GNU Linux-libre $rel" -s -u $key sources/v$rel &&
74
75   git reset --hard incr/v$rel^ &&
76   { git merge --no-commit incr/v$prevn || :; } &&
77   git diff incr/v$rel > ../../linux-libre-$rel.patckT &&
78   mv -v ../../linux-libre-$rel.patckT ../../linux-libre-$rel.patck
79  ) &&
80
81 git archive --format tar --prefix=linux-$rup/ -o linux-libre-$rel.tar sources/v$rel &&
82 gpg --armor --detach-sign linux-libre-$rel.tar &&
83 mv linux-libre-$rel.tar.asc logs/v$rel/linux-libre-$rel.tar.sign &&
84
85 for f in linux-libre-; do
86   if cmp logs/v$rel/$f$rel.log $reldir/$prevn/$f$prevn.log; then
87     ln -vf $reldir/$prevn/$f$prevn.log logs/v$rel/$f$rel.log &&
88     ln -vf $reldir/$prevn/$f$prevn.log.sign logs/v$rel/$f$rel.log.sign
89   else
90     gpg --armor --detach-sign logs/v$rel/$f$rel.log &&
91     mv -v logs/v$rel/$f$rel.log.asc logs/v$rel/$f$rel.log.sign
92   fi
93 done &&
94
95 (
96   cd logs/v$rel &&
97   git add linux* &&
98   git commit --amend --reset-author -S$key -m "GNU Linux-libre $rel logs" &&
99   git tag -m "GNU Linux-libre $rel logs" -s -u $key logs/v$rel
100 ) &&
101
102 git diff --src-prefix=linux-libre-$prev0/ --dst-prefix=linux-libre-$rel/ \
103   public/sources/v$prev0 sources/v$rel -- > patch-$prev0-$rel &&
104
105 if test "$prev0" != "$prevn"; then
106   git diff --src-prefix=linux-libre-$prevn/ --dst-prefix=linux-libre-$rel/ \
107     public/sources/v$prevn sources/v$rel -- > patch-$prevn-$rel
108 fi &&
109
110 { scripts/v$rel/deblob-check --use-awk linux-libre-$rel.tar ||
111     scripts/v$rel/deblob-check --use-awk -C linux-libre-$rel.tar \
112       > linux-libre-$rel.check ||
113     { success=false; continue; }; } &&
114
115 continue
116
117 success=false
118
119 done &&
120
121 $success