bug-gnulib@gnu.org mirror (unofficial)
 help / color / mirror / Atom feed
From: Paul Eggert <eggert@cs.ucla.edu>
To: bug-gnulib@gnu.org
Cc: Paul Eggert <eggert@cs.ucla.edu>
Subject: [PATCH 1/6] Move scriptversion= lines up in scripts
Date: Tue, 27 Dec 2022 10:59:56 -0800	[thread overview]
Message-ID: <20221227190002.5660-2-eggert@cs.ucla.edu> (raw)
In-Reply-To: <20221227190002.5660-1-eggert@cs.ucla.edu>

By default they need to be in the first 8 lines to be updated.
---
 build-aux/bootstrap      | 8 ++++----
 top/autogen.sh           | 4 ++--
 top/autopull.sh          | 4 ++--
 top/bootstrap            | 4 ++--
 top/bootstrap-funclib.sh | 4 ++--
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/build-aux/bootstrap b/build-aux/bootstrap
index 9714a59432..d94605dd44 100755
--- a/build-aux/bootstrap
+++ b/build-aux/bootstrap
@@ -5,6 +5,8 @@
 
 # Bootstrap this package from checked-out sources.
 
+scriptversion=2022-12-27.03; # UTC
+
 # Copyright (C) 2003-2022 Free Software Foundation, Inc.
 #
 # This program is free software: you can redistribute it and/or modify
@@ -30,8 +32,6 @@
 
 # Please report bugs or propose patches to bug-gnulib@gnu.org.
 
-scriptversion=2022-07-29.23; # UTC
-
 me="$0"
 medir=`dirname "$me"`
 
@@ -39,6 +39,8 @@ medir=`dirname "$me"`
 
 # A library of shell functions for autopull.sh, autogen.sh, and bootstrap.
 
+scriptversion=2022-12-27.03; # UTC
+
 # Copyright (C) 2003-2022 Free Software Foundation, Inc.
 #
 # This program is free software: you can redistribute it and/or modify
@@ -62,8 +64,6 @@ medir=`dirname "$me"`
 # file also maintained in your version control; gnulib comes with a
 # template build-aux/bootstrap.conf to get you started.
 
-scriptversion=2022-07-24.15; # UTC
-
 nl='
 '
 
diff --git a/top/autogen.sh b/top/autogen.sh
index 81db3fe035..4ca4c05577 100755
--- a/top/autogen.sh
+++ b/top/autogen.sh
@@ -4,6 +4,8 @@
 # also regenerates all aclocal.m4, config.h.in, Makefile.in, configure files
 # with new versions of autoconf or automake.
 
+scriptversion=2022-12-27.03; # UTC
+
 # Copyright (C) 2003-2022 Free Software Foundation, Inc.
 #
 # This program is free software: you can redistribute it and/or modify
@@ -30,8 +32,6 @@
 # Alternatively, you can use an autogen.sh script that is specific
 # to your package.
 
-scriptversion=2022-07-24.15; # UTC
-
 me="$0"
 medir=`dirname "$me"`
 
diff --git a/top/autopull.sh b/top/autopull.sh
index ffb4ba7cba..f3b9a3811d 100755
--- a/top/autopull.sh
+++ b/top/autopull.sh
@@ -2,6 +2,8 @@
 # Convenience script for fetching auxiliary files that are omitted from
 # the version control repository of this package.
 
+scriptversion=2022-12-27.03; # UTC
+
 # Copyright (C) 2003-2022 Free Software Foundation, Inc.
 #
 # This program is free software: you can redistribute it and/or modify
@@ -28,8 +30,6 @@
 # Alternatively, you can use an autopull.sh script that is specific
 # to your package.
 
-scriptversion=2022-07-24.15; # UTC
-
 me="$0"
 medir=`dirname "$me"`
 
diff --git a/top/bootstrap b/top/bootstrap
index cf8d007f64..9d31b4311c 100755
--- a/top/bootstrap
+++ b/top/bootstrap
@@ -1,6 +1,8 @@
 #! /bin/sh
 # Bootstrap this package from checked-out sources.
 
+scriptversion=2022-12-27.03; # UTC
+
 # Copyright (C) 2003-2022 Free Software Foundation, Inc.
 #
 # This program is free software: you can redistribute it and/or modify
@@ -26,8 +28,6 @@
 
 # Please report bugs or propose patches to bug-gnulib@gnu.org.
 
-scriptversion=2022-07-29.23; # UTC
-
 me="$0"
 medir=`dirname "$me"`
 
diff --git a/top/bootstrap-funclib.sh b/top/bootstrap-funclib.sh
index cfad85a318..ef0fa70ae5 100644
--- a/top/bootstrap-funclib.sh
+++ b/top/bootstrap-funclib.sh
@@ -1,5 +1,7 @@
 # A library of shell functions for autopull.sh, autogen.sh, and bootstrap.
 
+scriptversion=2022-12-27.03; # UTC
+
 # Copyright (C) 2003-2022 Free Software Foundation, Inc.
 #
 # This program is free software: you can redistribute it and/or modify
@@ -23,8 +25,6 @@
 # file also maintained in your version control; gnulib comes with a
 # template build-aux/bootstrap.conf to get you started.
 
-scriptversion=2022-07-24.15; # UTC
-
 nl='
 '
 
-- 
2.25.1



  reply	other threads:[~2022-12-27 19:01 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-27 18:59 [PATCH 0/6] build-aux/bootstrap that doesn't need to replace itself Paul Eggert
2022-12-27 18:59 ` Paul Eggert [this message]
2022-12-27 18:59 ` [PATCH] stdnoreturn: deprecate Paul Eggert
2022-12-27 18:59 ` [PATCH 2/6] Make autogen a shell function too Paul Eggert
2022-12-27 18:59 ` [PATCH 3/6] Make autopull " Paul Eggert
2022-12-27 19:00 ` [PATCH 4/6] Bootstrap with functions, not scripts Paul Eggert
2022-12-27 19:00 ` [PATCH 5/6] Support packages with just 'bootstrap' Paul Eggert
2022-12-27 19:00 ` [PATCH 6/6] Add --pull, --gen options to build-aux/bootstrap Paul Eggert
2022-12-27 21:09 ` [PATCH 0/6] build-aux/bootstrap that doesn't need to replace itself Bruno Haible
2022-12-28  2:16   ` Paul Eggert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://lists.gnu.org/mailman/listinfo/bug-gnulib

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221227190002.5660-2-eggert@cs.ucla.edu \
    --to=eggert@cs.ucla.edu \
    --cc=bug-gnulib@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).