>From af8063dad3148bb99d8100b6c246bb12d9ca096d Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Thu, 3 Jan 2013 23:02:33 +0100 Subject: [PATCH] Update copyright year to 2013. This time I used a slightly modified version of last year's oneliner, to catch banner.scm and README as well: for i in `git grep -Il '(c) [0-9-]*, The Chicken Team'`; do sed -r 's/\(c\) (([0-9]+)-|(2012))(2012)?,/(c) \2\3-2013,/' "$i" > tmp && mv tmp "$i"; done banner.scm had to be slightly changed (spaces and commas) in order to get detected by this script. --- GNUmakefile | 2 +- LICENSE | 2 +- Makefile.bsd | 2 +- Makefile.cross-linux-mingw | 2 +- Makefile.cygwin | 2 +- Makefile.haiku | 2 +- Makefile.linux | 2 +- Makefile.macosx | 2 +- Makefile.mingw | 2 +- Makefile.mingw-msys | 2 +- Makefile.solaris | 2 +- README | 2 +- apply-hack.ppc.darwin.S | 2 +- apply-hack.ppc.sysv.S | 2 +- apply-hack.x86-64.S | 2 +- apply-hack.x86.S | 2 +- banner.scm | 4 ++-- batch-driver.scm | 2 +- build-version.scm | 2 +- c-backend.scm | 2 +- c-platform.scm | 2 +- chicken-bug.scm | 2 +- chicken-ffi-syntax.scm | 2 +- chicken-install.scm | 2 +- chicken-profile.scm | 2 +- chicken-status.scm | 2 +- chicken-syntax.scm | 2 +- chicken-uninstall.scm | 2 +- chicken.h | 2 +- chicken.import.scm | 2 +- chicken.scm | 2 +- common-declarations.scm | 2 +- compiler-namespace.scm | 2 +- compiler-syntax.scm | 2 +- compiler.scm | 2 +- config-arch.sh | 2 +- csc.scm | 2 +- csi.import.scm | 2 +- csi.scm | 2 +- data-structures.import.scm | 2 +- data-structures.scm | 2 +- defaults.make | 2 +- eval.scm | 2 +- expand.scm | 2 +- extras.import.scm | 2 +- extras.scm | 2 +- files.import.scm | 2 +- files.scm | 2 +- foreign.import.scm | 2 +- irregex.import.scm | 2 +- irregex.scm | 2 +- lfa2.scm | 2 +- library.scm | 2 +- lolevel.import.scm | 2 +- lolevel.scm | 2 +- modules.scm | 2 +- optimizer.scm | 2 +- ports.import.scm | 2 +- ports.scm | 2 +- posix-common.scm | 2 +- posix.import.scm | 2 +- posixunix.scm | 2 +- posixwin.scm | 2 +- private-namespace.scm | 2 +- profiler.scm | 2 +- rules.make | 2 +- runtime.c | 2 +- scheduler.scm | 2 +- scrutinizer.scm | 2 +- setup-api.scm | 2 +- setup-download.scm | 2 +- srfi-1.import.scm | 2 +- srfi-13.import.scm | 2 +- srfi-14.import.scm | 2 +- srfi-18.import.scm | 2 +- srfi-18.scm | 2 +- srfi-4.import.scm | 2 +- srfi-4.scm | 2 +- srfi-69.import.scm | 2 +- srfi-69.scm | 2 +- stub.scm | 2 +- support.scm | 2 +- tcp.import.scm | 2 +- tcp.scm | 2 +- tests/null.scm | 2 +- tweaks.scm | 2 +- types.db | 2 +- utils.import.scm | 2 +- utils.scm | 2 +- 89 files changed, 90 insertions(+), 90 deletions(-) mode change 100755 => 100644 scrutinizer.scm diff --git a/GNUmakefile b/GNUmakefile index 7fbd95b..270b72f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,6 +1,6 @@ # GNUmakefile - toplevel makefile # -# Copyright (c) 2008-2012, The Chicken Team +# Copyright (c) 2008-2013, The Chicken Team # Copyright (c) 2007, Felix L. Winkelmann # All rights reserved. # diff --git a/LICENSE b/LICENSE index c4217e0..119acec 100644 --- a/LICENSE +++ b/LICENSE @@ -2,7 +2,7 @@ Chicken falls under the following main license: - Copyright (c) 2007-2012, The Chicken Team + Copyright (c) 2007-2013, The Chicken Team Copyright (c) 2000-2007, Felix L. Winkelmann All rights reserved. diff --git a/Makefile.bsd b/Makefile.bsd index 00a77ca..bd387a7 100644 --- a/Makefile.bsd +++ b/Makefile.bsd @@ -1,6 +1,6 @@ # Makefile.bsd - configuration for BSD UNIX -*- Makefile -*- # -# Copyright (c) 2008-2012, The Chicken Team +# Copyright (c) 2008-2013, The Chicken Team # Copyright (c) 2007, Felix L. Winkelmann # All rights reserved. # diff --git a/Makefile.cross-linux-mingw b/Makefile.cross-linux-mingw index 5c4a8d2..c18dd18 100644 --- a/Makefile.cross-linux-mingw +++ b/Makefile.cross-linux-mingw @@ -1,6 +1,6 @@ # Makefile.cross-linux-mingw - configuration for MinGW (crosscompiled from Linux) -*- Makefile -*- # -# Copyright (c) 2008-2012, The Chicken Team +# Copyright (c) 2008-2013, The Chicken Team # Copyright (c) 2007, Felix L. Winkelmann # All rights reserved. # diff --git a/Makefile.cygwin b/Makefile.cygwin index ddae01b..5772caf 100644 --- a/Makefile.cygwin +++ b/Makefile.cygwin @@ -1,6 +1,6 @@ # Makefile.cygwin - configuration for Linux -*- Makefile -*- # -# Copyright (c) 2008-2012, The Chicken Team +# Copyright (c) 2008-2013, The Chicken Team # Copyright (c) 2007, Felix L. Winkelmann # All rights reserved. # diff --git a/Makefile.haiku b/Makefile.haiku index 407366a..fe7fce9 100644 --- a/Makefile.haiku +++ b/Makefile.haiku @@ -1,6 +1,6 @@ # Makefile.haiku - configuration for Haiku -*- Makefile -*- # -# Copyright (c) 2011-2012, The Chicken Team +# Copyright (c) 2011-2013, The Chicken Team # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following diff --git a/Makefile.linux b/Makefile.linux index e944252..68646cf 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -1,6 +1,6 @@ # Makefile.linux - configuration for Linux -*- Makefile -*- # -# Copyright (c) 2008-2012, The Chicken Team +# Copyright (c) 2008-2013, The Chicken Team # Copyright (c) 2007, Felix L. Winkelmann # All rights reserved. # diff --git a/Makefile.macosx b/Makefile.macosx index 5cdf36d..6137c96 100644 --- a/Makefile.macosx +++ b/Makefile.macosx @@ -1,6 +1,6 @@ # Makefile.macosx - configuration for Apple Macintosh OS X -*- Makefile -*- # -# Copyright (c) 2008-2012, The Chicken Team +# Copyright (c) 2008-2013, The Chicken Team # Copyright (c) 2007, Felix L. Winkelmann # All rights reserved. # diff --git a/Makefile.mingw b/Makefile.mingw index cf76ff4..e34f604 100644 --- a/Makefile.mingw +++ b/Makefile.mingw @@ -1,6 +1,6 @@ # Makefile.mingw - configuration for MinGW (no MSYS) -*- Makefile -*- # -# Copyright (c) 2008-2012, The Chicken Team +# Copyright (c) 2008-2013, The Chicken Team # Copyright (c) 2007, Felix L. Winkelmann # All rights reserved. # diff --git a/Makefile.mingw-msys b/Makefile.mingw-msys index b98943f..d2ac34b 100644 --- a/Makefile.mingw-msys +++ b/Makefile.mingw-msys @@ -1,6 +1,6 @@ # Makefile.mingw - configuration for MinGW (MSYS) -*- Makefile -*- # -# Copyright (c) 2008-2012, The Chicken Team +# Copyright (c) 2008-2013, The Chicken Team # Copyright (c) 2007, Felix L. Winkelmann # All rights reserved. # diff --git a/Makefile.solaris b/Makefile.solaris index 4d9f7a7..8228a68 100644 --- a/Makefile.solaris +++ b/Makefile.solaris @@ -1,6 +1,6 @@ # Makefile.solaris - configuration for Solaris -*- Makefile -*- # -# Copyright (c) 2008-2012, The Chicken Team +# Copyright (c) 2008-2013, The Chicken Team # Copyright (c) 2007, Felix L. Winkelmann # All rights reserved. # diff --git a/README b/README index f5b858a..1f7a658 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ ========================================= - (c) 2008-2012, The Chicken Team + (c) 2008-2013, The Chicken Team (c) 2000-2007, Felix L. Winkelmann version 4.8.2 diff --git a/apply-hack.ppc.darwin.S b/apply-hack.ppc.darwin.S index 633dacc..a7ee2c1 100644 --- a/apply-hack.ppc.darwin.S +++ b/apply-hack.ppc.darwin.S @@ -1,6 +1,6 @@ /* apply-hack.ppc.s ; -; Copyright (c) 2008-2012, The Chicken Team +; Copyright (c) 2008-2013, The Chicken Team ; Copyright (c) 2007, Felix L. Winkelmann ; All rights reserved. ; diff --git a/apply-hack.ppc.sysv.S b/apply-hack.ppc.sysv.S index 1484ff5..0fcfc51 100644 --- a/apply-hack.ppc.sysv.S +++ b/apply-hack.ppc.sysv.S @@ -1,6 +1,6 @@ /* apply-hack.ppc.s ; -; Copyright (c) 2008-2012, The Chicken Team +; Copyright (c) 2008-2013, The Chicken Team ; Copyright (c) 2007, Felix L. Winkelmann ; All rights reserved. ; diff --git a/apply-hack.x86-64.S b/apply-hack.x86-64.S index 5539a4a..67c8a1e 100644 --- a/apply-hack.x86-64.S +++ b/apply-hack.x86-64.S @@ -1,6 +1,6 @@ /* Apply-hack.x86-64.S ; -; Copyright (c) 2008-2012, The Chicken Team +; Copyright (c) 2008-2013, The Chicken Team ; Copyright (c) 2007, Felix L. Winkelmann ; All rights reserved. ; diff --git a/apply-hack.x86.S b/apply-hack.x86.S index c3407df..50799ce 100644 --- a/apply-hack.x86.S +++ b/apply-hack.x86.S @@ -1,6 +1,6 @@ /* apply-hack.x86.S ; -; Copyright (c) 2008-2012, The Chicken Team +; Copyright (c) 2008-2013, The Chicken Team ; Copyright (c) 2007, Felix L. Winkelmann ; All rights reserved. ; diff --git a/banner.scm b/banner.scm index 7cee8a0..5213792 100644 --- a/banner.scm +++ b/banner.scm @@ -4,8 +4,8 @@ (define-constant +product+ "CHICKEN") (define-constant +banner+ #<