mkgitrel.cln: run single check pass and refuse --force releases
[releases.git] / mkgitrel.setdate
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 DATE=$(git cat-file -p incr/v$rel |
25        gawk '/^(author|tagger)/ {
26                print strftime(PROCINFO["strftime"], $(NF-1))
27              }') &&
28 export GIT_COMMITTER_DATE=$DATE GIT_AUTHOR_DATE=$DATE