]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: update further copyright year number ranges
authorBernhard Voelker <mail@bernhard-voelker.de>
Thu, 1 Jan 2015 18:56:25 +0000 (19:56 +0100)
committerBernhard Voelker <mail@bernhard-voelker.de>
Thu, 1 Jan 2015 18:56:25 +0000 (19:56 +0100)
* bootstrap: Update copyright year manually (missing in previous
gnulib update).
* tests/init.sh: Likewise.

The entries in the exemption list are processed by
"grep -vEf ./.x-update-copyright", and therefore evaluated as an
extended regular expression (ERE).  Thus, the "bootstrap" entry
also matched for bootstrap.conf which we want to be updated.

* .x-update-copyright: Change all entries to EREs, i.e. including
the caret ^ and dollar sign $ meta-characters matching the beginning
and the end of a line.
* bootstrap.conf: Update copyright year by "make update-copyright".

Finally, the only one showing up with the following command should
be the COPYING file:
  $ git grep 'Copyright .* Free Software' | grep -v '2015 Free Software'

.x-update-copyright
bootstrap
bootstrap.conf
tests/init.sh

index 725ac759bcf9240cc210bd6ed83900d111bfcb1b..9b83e1cc3add7a64554db6656afb465c9971c2aa 100644 (file)
@@ -1,4 +1,4 @@
-COPYING
-bootstrap
-man/help2man
-tests/init\.sh
+^COPYING$
+^bootstrap$
+^man/help2man$
+^tests/init\.sh$
index 1f4c97b8f63a170849771a57bff4001de7825310..47a57641c4d63141daa7211afe9d50fc4a920021 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -4,7 +4,7 @@ scriptversion=2014-12-08.12; # UTC
 
 # Bootstrap this package from checked-out sources.
 
-# Copyright (C) 2003-2014 Free Software Foundation, Inc.
+# Copyright (C) 2003-2015 Free Software Foundation, Inc.
 
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -221,7 +221,7 @@ check_exists() {
       ($2 --version </dev/null)
     fi
   else
-  ($1 --version </dev/null) >/dev/null 2>&1
+    ($1 --version </dev/null) >/dev/null 2>&1
   fi
 
   test $? -lt 126
index 7706c5a794390b658cb41e2e710e8ebf3d9bcba8..42831401cc8b0a61c4facdbeca070d3f6ded18e3 100644 (file)
@@ -1,6 +1,6 @@
 # Bootstrap configuration.
 
-# Copyright (C) 2006-2014 Free Software Foundation, Inc.
+# Copyright (C) 2006-2015 Free Software Foundation, Inc.
 
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index fbd293d642034efe6cfcab09532a1fb2d9d53a68..37fc7b62ee8e39f906798c4b71bf988fde8554ea 100755 (executable)
@@ -1,6 +1,6 @@
 # source this file; set up for tests
 
-# Copyright (C) 2009-2014 Free Software Foundation, Inc.
+# Copyright (C) 2009-2015 Free Software Foundation, Inc.
 
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by