From 7df216bf4df207571e06757e1d41967686270083 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 10 Jan 2018 01:29:10 +0100 Subject: [PATCH] all: modify the license preamble in files This project contains both a library and executables so it's better to use an umbrella term "This program ..." than "This library ..." in all the source files. Signed-off-by: Bartosz Golaszewski --- Doxyfile | 2 +- Makefile.am | 2 +- configure.ac | 2 +- include/Makefile.am | 2 +- include/gpiod.h | 2 +- src/Makefile.am | 2 +- src/lib/Makefile.am | 2 +- src/lib/core.c | 2 +- src/lib/helpers.c | 2 +- src/lib/iter.c | 2 +- src/lib/misc.c | 2 +- src/lib/simple.c | 2 +- src/tools/Makefile.am | 2 +- src/tools/gpiodetect.c | 2 +- src/tools/gpiofind.c | 2 +- src/tools/gpioget.c | 2 +- src/tools/gpioinfo.c | 2 +- src/tools/gpiomon.c | 2 +- src/tools/gpioset.c | 2 +- src/tools/tools-common.c | 2 +- src/tools/tools-common.h | 2 +- tests/Makefile.am | 2 +- tests/gpiod-test.c | 2 +- tests/gpiod-test.h | 2 +- tests/tests-chip.c | 2 +- tests/tests-event.c | 2 +- tests/tests-gpiodetect.c | 2 +- tests/tests-gpiofind.c | 2 +- tests/tests-gpioget.c | 2 +- tests/tests-gpioinfo.c | 2 +- tests/tests-gpiomon.c | 2 +- tests/tests-gpioset.c | 2 +- tests/tests-iter.c | 2 +- tests/tests-line.c | 2 +- tests/tests-misc.c | 2 +- tests/tests-simple-api.c | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/Doxyfile b/Doxyfile index 851e82a..8102819 100644 --- a/Doxyfile +++ b/Doxyfile @@ -1,7 +1,7 @@ # # Copyright (C) 2017 Bartosz Golaszewski # -# This library is free software; you can redistribute it and/or modify it +# This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or (at # your option) any later version. diff --git a/Makefile.am b/Makefile.am index 136bac0..bf6ca96 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ # # Copyright (C) 2017 Bartosz Golaszewski # -# This library is free software; you can redistribute it and/or modify it +# This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or (at # your option) any later version. diff --git a/configure.ac b/configure.ac index 3fe0334..c1f71c0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # # Copyright (C) 2017 Bartosz Golaszewski # -# This library is free software; you can redistribute it and/or modify it +# This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or (at # your option) any later version. diff --git a/include/Makefile.am b/include/Makefile.am index 1a64459..da0ebf4 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,7 +1,7 @@ # # Copyright (C) 2017 Bartosz Golaszewski # -# This library is free software; you can redistribute it and/or modify it +# This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or (at # your option) any later version. diff --git a/include/gpiod.h b/include/gpiod.h index 027027c..61eb7d9 100644 --- a/include/gpiod.h +++ b/include/gpiod.h @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/Makefile.am b/src/Makefile.am index 50b5215..728442d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,7 @@ # # Copyright (C) 2017 Bartosz Golaszewski # -# This library is free software; you can redistribute it and/or modify it +# This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or (at # your option) any later version. diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index 93fef36..a4a0ea0 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -1,7 +1,7 @@ # # Copyright (C) 2017 Bartosz Golaszewski # -# This library is free software; you can redistribute it and/or modify it +# This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or (at # your option) any later version. diff --git a/src/lib/core.c b/src/lib/core.c index 935e163..05078ef 100644 --- a/src/lib/core.c +++ b/src/lib/core.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/lib/helpers.c b/src/lib/helpers.c index 8718386..a97c9f3 100644 --- a/src/lib/helpers.c +++ b/src/lib/helpers.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/lib/iter.c b/src/lib/iter.c index 133634e..c8b5458 100644 --- a/src/lib/iter.c +++ b/src/lib/iter.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/lib/misc.c b/src/lib/misc.c index 08e2a33..19be37a 100644 --- a/src/lib/misc.c +++ b/src/lib/misc.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/lib/simple.c b/src/lib/simple.c index 4876312..6d51bbf 100644 --- a/src/lib/simple.c +++ b/src/lib/simple.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/tools/Makefile.am b/src/tools/Makefile.am index 8099ba4..503642a 100644 --- a/src/tools/Makefile.am +++ b/src/tools/Makefile.am @@ -1,7 +1,7 @@ # # Copyright (C) 2017 Bartosz Golaszewski # -# This library is free software; you can redistribute it and/or modify it +# This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or (at # your option) any later version. diff --git a/src/tools/gpiodetect.c b/src/tools/gpiodetect.c index a1f8631..e70473f 100644 --- a/src/tools/gpiodetect.c +++ b/src/tools/gpiodetect.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/tools/gpiofind.c b/src/tools/gpiofind.c index 3c4ba98..cfdd891 100644 --- a/src/tools/gpiofind.c +++ b/src/tools/gpiofind.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/tools/gpioget.c b/src/tools/gpioget.c index 86b1799..02afa0a 100644 --- a/src/tools/gpioget.c +++ b/src/tools/gpioget.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/tools/gpioinfo.c b/src/tools/gpioinfo.c index 2a2ffac..23a3f9a 100644 --- a/src/tools/gpioinfo.c +++ b/src/tools/gpioinfo.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/tools/gpiomon.c b/src/tools/gpiomon.c index 6101312..d679b5a 100644 --- a/src/tools/gpiomon.c +++ b/src/tools/gpiomon.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/tools/gpioset.c b/src/tools/gpioset.c index a51a3d5..4c1adb0 100644 --- a/src/tools/gpioset.c +++ b/src/tools/gpioset.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/tools/tools-common.c b/src/tools/tools-common.c index 5d650a6..9065c77 100644 --- a/src/tools/tools-common.c +++ b/src/tools/tools-common.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/src/tools/tools-common.h b/src/tools/tools-common.h index 4ba2e3d..4029aae 100644 --- a/src/tools/tools-common.h +++ b/src/tools/tools-common.h @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/Makefile.am b/tests/Makefile.am index 9eee96b..86b8464 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,7 +1,7 @@ # # Copyright (C) 2017 Bartosz Golaszewski # -# This library is free software; you can redistribute it and/or modify it +# This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or (at # your option) any later version. diff --git a/tests/gpiod-test.c b/tests/gpiod-test.c index e398240..a3c0a44 100644 --- a/tests/gpiod-test.c +++ b/tests/gpiod-test.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/gpiod-test.h b/tests/gpiod-test.h index 63cb37d..b414fd1 100644 --- a/tests/gpiod-test.h +++ b/tests/gpiod-test.h @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-chip.c b/tests/tests-chip.c index c199a28..52649bf 100644 --- a/tests/tests-chip.c +++ b/tests/tests-chip.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-event.c b/tests/tests-event.c index 1fa44f0..f3d879b 100644 --- a/tests/tests-event.c +++ b/tests/tests-event.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-gpiodetect.c b/tests/tests-gpiodetect.c index 3d19911..a10a01b 100644 --- a/tests/tests-gpiodetect.c +++ b/tests/tests-gpiodetect.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-gpiofind.c b/tests/tests-gpiofind.c index 2b8db6d..ed7f7ee 100644 --- a/tests/tests-gpiofind.c +++ b/tests/tests-gpiofind.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-gpioget.c b/tests/tests-gpioget.c index 0441a98..a83d5df 100644 --- a/tests/tests-gpioget.c +++ b/tests/tests-gpioget.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-gpioinfo.c b/tests/tests-gpioinfo.c index 164f14c..5048730 100644 --- a/tests/tests-gpioinfo.c +++ b/tests/tests-gpioinfo.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-gpiomon.c b/tests/tests-gpiomon.c index 74fe9b7..44a0348 100644 --- a/tests/tests-gpiomon.c +++ b/tests/tests-gpiomon.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-gpioset.c b/tests/tests-gpioset.c index 8ad7530..0f3f94a 100644 --- a/tests/tests-gpioset.c +++ b/tests/tests-gpioset.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-iter.c b/tests/tests-iter.c index e618edb..b38c9e0 100644 --- a/tests/tests-iter.c +++ b/tests/tests-iter.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-line.c b/tests/tests-line.c index 3ad246a..2901d56 100644 --- a/tests/tests-line.c +++ b/tests/tests-line.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-misc.c b/tests/tests-misc.c index 2d19334..150cd75 100644 --- a/tests/tests-misc.c +++ b/tests/tests-misc.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. diff --git a/tests/tests-simple-api.c b/tests/tests-simple-api.c index dbbad3d..26a95a1 100644 --- a/tests/tests-simple-api.c +++ b/tests/tests-simple-api.c @@ -3,7 +3,7 @@ * * Copyright (C) 2017 Bartosz Golaszewski * - * This library is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. -- 2.30.2