guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[shepherd] 01/05: License headers refer to "the GNU Shepherd".


From: Ludovic Courtès
Subject: [shepherd] 01/05: License headers refer to "the GNU Shepherd".
Date: Mon, 11 Jan 2016 23:14:17 +0000

civodul pushed a commit to branch master
in repository shepherd.

commit e67dae86e56757aa96b4f4f07ec11a48a098eccd
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jan 11 00:57:33 2016 +0100

    License headers refer to "the GNU Shepherd".
    
    This is the result of applying this sed script:
    
      s/This file is part of GNU dmd/This file is part of the GNU Shepherd/;
      s/GNU dmd is free software/The GNU Shepherd is free software/;
      s/GNU dmd is distributed/The GNU Shepherd is distributed/;
      s/along with GNU dmd/along with the GNU Shepherd/
---
 Makefile.am               |   20 ++++++++++----------
 examples/_unknown.scm     |    8 ++++----
 examples/wolfgangj.scm    |    8 ++++----
 modules/deco.scm          |    8 ++++----
 modules/dmd.scm           |    8 ++++----
 modules/dmd/args.scm      |    8 ++++----
 modules/dmd/comm.scm      |    8 ++++----
 modules/dmd/runlevel.scm  |    8 ++++----
 modules/dmd/service.scm   |    8 ++++----
 modules/dmd/support.scm   |    8 ++++----
 modules/dmd/system.scm.in |    8 ++++----
 modules/halt.scm          |    8 ++++----
 modules/reboot.scm        |    8 ++++----
 tests/basic.sh            |   10 +++++-----
 tests/no-home.sh          |   12 ++++++------
 tests/respawn.sh          |   10 +++++-----
 tests/sigint.sh           |   10 +++++-----
 tests/status-sexp.sh      |   10 +++++-----
 utils/dmd-gettext.scm     |    8 ++++----
 utils/sysvconfig.scm      |    8 ++++----
 20 files changed, 92 insertions(+), 92 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index f3e33b9..798f167 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,20 +1,20 @@
-# Makefile.am -- How to build and install dmd.
+# Makefile.am -- How to build and install the Shepherd.
 # Copyright (C) 2002, 2003 Wolfgang J�hrling <address@hidden>
 #
-# This is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
+# This file is part of the GNU Shepherd.
 #
-# This file is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# The GNU Shepherd is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or (at
+# your option) any later version.
+#
+# The GNU Shepherd is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program; see the file COPYING. If not, write to
-# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA  02111-1307, USA.
+# along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 # The main programs.
 bin_SCRIPTS = dmd deco
diff --git a/examples/_unknown.scm b/examples/_unknown.scm
index cd0427a..9e425df 100644
--- a/examples/_unknown.scm
+++ b/examples/_unknown.scm
@@ -1,20 +1,20 @@
 ;; _unknown.scm -- An example for an `unknown' service.
 ;; Copyright (C) 2003 Wolfgang J�hrling <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 ;; Return true if STR1 lacks a character that exists in STR2, but
 ;; otherwise both are identical.
diff --git a/examples/wolfgangj.scm b/examples/wolfgangj.scm
index d4681c7..b01ddd0 100644
--- a/examples/wolfgangj.scm
+++ b/examples/wolfgangj.scm
@@ -1,20 +1,20 @@
 ;; wolfgangj.scm -- Personal dmd configuration of Wolfgang J�hrling.
 ;; Copyright (C) 2002, 2003 Wolfgang J�hrling <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 
 
diff --git a/modules/deco.scm b/modules/deco.scm
index 339e415..df55a7f 100644
--- a/modules/deco.scm
+++ b/modules/deco.scm
@@ -2,20 +2,20 @@
 ;; Copyright (C) 2013, 2014, 2016 Ludovic Courtès <address@hidden>
 ;; Copyright (C) 2002, 2003 Wolfgang Jährling <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (deco)
   #:use-module (dmd config)
diff --git a/modules/dmd.scm b/modules/dmd.scm
index 889c09f..b414b9e 100644
--- a/modules/dmd.scm
+++ b/modules/dmd.scm
@@ -2,20 +2,20 @@
 ;; Copyright (C) 2013, 2014, 2016 Ludovic Courtès <address@hidden>
 ;; Copyright (C) 2002, 2003 Wolfgang Jährling <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (dmd)
   #:use-module (ice-9 match)
diff --git a/modules/dmd/args.scm b/modules/dmd/args.scm
index c4684e8..fb6f738 100644
--- a/modules/dmd/args.scm
+++ b/modules/dmd/args.scm
@@ -2,20 +2,20 @@
 ;; Copyright (C) 2013 Ludovic Court�s <address@hidden>
 ;; Copyright (C) 2002, 2003 Wolfgang J�hrling <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (dmd args)
   #:use-module (oop goops)
diff --git a/modules/dmd/comm.scm b/modules/dmd/comm.scm
index fb08629..0466ff6 100644
--- a/modules/dmd/comm.scm
+++ b/modules/dmd/comm.scm
@@ -2,20 +2,20 @@
 ;; Copyright (C) 2013, 2014 Ludovic Court�s <address@hidden>
 ;; Copyright (C) 2002, 2003 Wolfgang J�hrling <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (dmd comm)
   #:use-module (dmd support)
diff --git a/modules/dmd/runlevel.scm b/modules/dmd/runlevel.scm
index 153e3ec..7a4d6be 100644
--- a/modules/dmd/runlevel.scm
+++ b/modules/dmd/runlevel.scm
@@ -2,20 +2,20 @@
 ;; Copyright (C) 2013 Ludovic Court�s <address@hidden>
 ;; Copyright (C) 2002 Wolfgang J�hrling <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (dmd runlevel)
   #:use-module (oop goops)
diff --git a/modules/dmd/service.scm b/modules/dmd/service.scm
index f859ca3..c9e6c89 100644
--- a/modules/dmd/service.scm
+++ b/modules/dmd/service.scm
@@ -3,20 +3,20 @@
 ;; Copyright (C) 2002, 2003 Wolfgang Järling <address@hidden>
 ;; Copyright (C) 2014 Alex Sassmannshausen <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (dmd service)
   #:use-module (oop goops)
diff --git a/modules/dmd/support.scm b/modules/dmd/support.scm
index dd42186..6591a25 100644
--- a/modules/dmd/support.scm
+++ b/modules/dmd/support.scm
@@ -3,20 +3,20 @@
 ;; Copyright (C) 2013, 2014, 2016 Ludovic Courtès <address@hidden>
 ;; Copyright (C) 2002, 2003 Wolfgang Jährling <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (dmd support)
   #:use-module (dmd config)
diff --git a/modules/dmd/system.scm.in b/modules/dmd/system.scm.in
index 65a0580..1576dc1 100644
--- a/modules/dmd/system.scm.in
+++ b/modules/dmd/system.scm.in
@@ -1,20 +1,20 @@
 ;; system.scm -- Low-level operating system interface.
 ;; Copyright (C) 2013, 2014 Ludovic Courtès <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (dmd system)
   #:use-module (system foreign)
diff --git a/modules/halt.scm b/modules/halt.scm
index ad42daf..f37c5e2 100644
--- a/modules/halt.scm
+++ b/modules/halt.scm
@@ -1,20 +1,20 @@
 ;; halt.scm -- Halt or power off the system.
 ;; Copyright (C) 2013, 2014, 2015, 2016 Ludovic Courtès <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (halt)
   #:use-module (dmd support)
diff --git a/modules/reboot.scm b/modules/reboot.scm
index 45aeaf5..75279a3 100644
--- a/modules/reboot.scm
+++ b/modules/reboot.scm
@@ -1,20 +1,20 @@
 ;; reboot.scm -- Reboot the system.
 ;; Copyright (C) 2013, 2014, 2015, 2016 Ludovic Courtès <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (reboot)
   #:use-module (dmd support)
diff --git a/tests/basic.sh b/tests/basic.sh
index c160345..f72198c 100644
--- a/tests/basic.sh
+++ b/tests/basic.sh
@@ -1,21 +1,21 @@
-# GNU dmd --- Test basic communication capabilities.
+# GNU Shepherd --- Test basic communication capabilities.
 # Copyright © 2013, 2014, 2016 Ludovic Courtès <address@hidden>
 # Copyright © 2014 Alex Sassmannshausen <address@hidden>
 #
-# This file is part of GNU dmd.
+# This file is part of the GNU Shepherd.
 #
-# GNU dmd is free software; you can redistribute it and/or modify it
+# The GNU Shepherd is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3 of the License, or (at
 # your option) any later version.
 #
-# GNU dmd is distributed in the hope that it will be useful, but
+# The GNU Shepherd is distributed in the hope that it will be useful, but
 # WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+# along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 dmd --version
 deco --version
diff --git a/tests/no-home.sh b/tests/no-home.sh
index c58acd3..7fb8bea 100644
--- a/tests/no-home.sh
+++ b/tests/no-home.sh
@@ -1,20 +1,20 @@
-# GNU dmd --- Make sure dmd doesn't fail when $HOME is not writable.
-# Copyright © 2014 Ludovic Courtès <address@hidden>
+# GNU Shepherd --- Make sure shepherd doesn't fail when $HOME is not writable.
+# Copyright © 2014, 2016 Ludovic Courtès <address@hidden>
 #
-# This file is part of GNU dmd.
+# This file is part of the GNU Shepherd.
 #
-# GNU dmd is free software; you can redistribute it and/or modify it
+# The GNU Shepherd is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3 of the License, or (at
 # your option) any later version.
 #
-# GNU dmd is distributed in the hope that it will be useful, but
+# The GNU Shepherd is distributed in the hope that it will be useful, but
 # WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+# along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 dmd --version
 
diff --git a/tests/respawn.sh b/tests/respawn.sh
index 4d0f5a7..04f562f 100644
--- a/tests/respawn.sh
+++ b/tests/respawn.sh
@@ -1,20 +1,20 @@
-# GNU dmd --- Test respawnable services.
+# GNU Shepherd --- Test respawnable services.
 # Copyright © 2013, 2014, 2016 Ludovic Courtès <address@hidden>
 #
-# This file is part of GNU dmd.
+# This file is part of the GNU Shepherd.
 #
-# GNU dmd is free software; you can redistribute it and/or modify it
+# The GNU Shepherd is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3 of the License, or (at
 # your option) any later version.
 #
-# GNU dmd is distributed in the hope that it will be useful, but
+# The GNU Shepherd is distributed in the hope that it will be useful, but
 # WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+# along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 dmd --version
 deco --version
diff --git a/tests/sigint.sh b/tests/sigint.sh
index 0b74578..bb149a7 100644
--- a/tests/sigint.sh
+++ b/tests/sigint.sh
@@ -1,20 +1,20 @@
-# GNU dmd --- Make sure SIGINT is correctly handled.
+# GNU Shepherd --- Make sure SIGINT is correctly handled.
 # Copyright © 2014 Ludovic Courtès <address@hidden>
 #
-# This file is part of GNU dmd.
+# This file is part of the GNU Shepherd.
 #
-# GNU dmd is free software; you can redistribute it and/or modify it
+# The GNU Shepherd is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3 of the License, or (at
 # your option) any later version.
 #
-# GNU dmd is distributed in the hope that it will be useful, but
+# The GNU Shepherd is distributed in the hope that it will be useful, but
 # WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+# along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 dmd --version
 deco --version
diff --git a/tests/status-sexp.sh b/tests/status-sexp.sh
index 6a8f4f8..fad5bbf 100644
--- a/tests/status-sexp.sh
+++ b/tests/status-sexp.sh
@@ -1,20 +1,20 @@
-# GNU dmd --- Test status sexps.
+# GNU Shepherd --- Test status sexps.
 # Copyright © 2016 Ludovic Courtès <address@hidden>
 #
-# This file is part of GNU dmd.
+# This file is part of the GNU Shepherd.
 #
-# GNU dmd is free software; you can redistribute it and/or modify it
+# The GNU Shepherd is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3 of the License, or (at
 # your option) any later version.
 #
-# GNU dmd is distributed in the hope that it will be useful, but
+# The GNU Shepherd is distributed in the hope that it will be useful, but
 # WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+# along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 dmd --version
 deco --version
diff --git a/utils/dmd-gettext.scm b/utils/dmd-gettext.scm
index 72072d7..72d6441 100644
--- a/utils/dmd-gettext.scm
+++ b/utils/dmd-gettext.scm
@@ -1,20 +1,20 @@
 ;; dmd-gettext.scm -- Extract translatable strings from source code.
 ;; Copyright (C) 2002 Wolfgang J�hrling <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (define l10n-keywords '(l10n local-output))
 
diff --git a/utils/sysvconfig.scm b/utils/sysvconfig.scm
index 0f6b791..4f6106f 100644
--- a/utils/sysvconfig.scm
+++ b/utils/sysvconfig.scm
@@ -1,20 +1,20 @@
 ;; sysvconfig.scm -- Absorb an existing System V Init configuration.
 ;; Copyright (C) 2002 Wolfgang J�hrling <address@hidden>
 ;;
-;; This file is part of GNU dmd.
+;; This file is part of the GNU Shepherd.
 ;;
-;; GNU dmd is free software; you can redistribute it and/or modify it
+;; The GNU Shepherd is free software; you can redistribute it and/or modify it
 ;; under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation; either version 3 of the License, or (at
 ;; your option) any later version.
 ;;
-;; GNU dmd is distributed in the hope that it will be useful, but
+;; The GNU Shepherd is distributed in the hope that it will be useful, but
 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 ;;
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU dmd.  If not, see <http://www.gnu.org/licenses/>.
+;; along with the GNU Shepherd.  If not, see <http://www.gnu.org/licenses/>.
 
 (use-modules (ice-9 pretty-print))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]