* [PATCH] util: Fix licensing information display in --version
@ 2024-08-20 21:55 Stefano Brivio
2024-08-20 22:29 ` Stefano Brivio
0 siblings, 1 reply; 4+ messages in thread
From: Stefano Brivio @ 2024-08-20 21:55 UTC (permalink / raw)
To: passt-dev
The regular expression I used when relicensing to GPLv2+ missed this.
Fixes: ca2749e1bd52 ("passt: Relicense to GPL 2.0, or any later version")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
---
util.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/util.h b/util.h
index e4db33a..195023f 100644
--- a/util.h
+++ b/util.h
@@ -15,8 +15,8 @@
#define VERSION_BLOB \
VERSION "\n" \
"Copyright Red Hat\n" \
- "GNU Affero GPL version 3 or later " \
- "<https://www.gnu.org/licenses/agpl-3.0.html>\n" \
+ "GNU General Public License, version 2 or later\n" \
+ " <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n" \
"This is free software: you are free to change and redistribute it.\n" \
"There is NO WARRANTY, to the extent permitted by law.\n\n"
--
@@ -15,8 +15,8 @@
#define VERSION_BLOB \
VERSION "\n" \
"Copyright Red Hat\n" \
- "GNU Affero GPL version 3 or later " \
- "<https://www.gnu.org/licenses/agpl-3.0.html>\n" \
+ "GNU General Public License, version 2 or later\n" \
+ " <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n" \
"This is free software: you are free to change and redistribute it.\n" \
"There is NO WARRANTY, to the extent permitted by law.\n\n"
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] util: Fix licensing information display in --version
@ 2023-09-08 15:36 Stefano Brivio
2023-09-10 0:46 ` David Gibson
0 siblings, 1 reply; 4+ messages in thread
From: Stefano Brivio @ 2023-09-08 15:36 UTC (permalink / raw)
To: passt-dev
The regular expression I used when relicensing to GPLv2+ missed this.
Fixes: ca2749e1bd52 ("passt: Relicense to GPL 2.0, or any later version")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
---
util.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/util.h b/util.h
index e4db33a..195023f 100644
--- a/util.h
+++ b/util.h
@@ -15,8 +15,8 @@
#define VERSION_BLOB \
VERSION "\n" \
"Copyright Red Hat\n" \
- "GNU Affero GPL version 3 or later " \
- "<https://www.gnu.org/licenses/agpl-3.0.html>\n" \
+ "GNU General Public License, version 2 or later\n" \
+ " <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n" \
"This is free software: you are free to change and redistribute it.\n" \
"There is NO WARRANTY, to the extent permitted by law.\n\n"
--
@@ -15,8 +15,8 @@
#define VERSION_BLOB \
VERSION "\n" \
"Copyright Red Hat\n" \
- "GNU Affero GPL version 3 or later " \
- "<https://www.gnu.org/licenses/agpl-3.0.html>\n" \
+ "GNU General Public License, version 2 or later\n" \
+ " <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n" \
"This is free software: you are free to change and redistribute it.\n" \
"There is NO WARRANTY, to the extent permitted by law.\n\n"
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] util: Fix licensing information display in --version
2023-09-08 15:36 Stefano Brivio
@ 2023-09-10 0:46 ` David Gibson
0 siblings, 0 replies; 4+ messages in thread
From: David Gibson @ 2023-09-10 0:46 UTC (permalink / raw)
To: Stefano Brivio; +Cc: passt-dev
[-- Attachment #1: Type: text/plain, Size: 1323 bytes --]
On Fri, Sep 08, 2023 at 05:36:46PM +0200, Stefano Brivio wrote:
> The regular expression I used when relicensing to GPLv2+ missed this.
>
> Fixes: ca2749e1bd52 ("passt: Relicense to GPL 2.0, or any later version")
> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Oh, yes, I noticed that the other day then forgot about it again.
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> util.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/util.h b/util.h
> index e4db33a..195023f 100644
> --- a/util.h
> +++ b/util.h
> @@ -15,8 +15,8 @@
> #define VERSION_BLOB \
> VERSION "\n" \
> "Copyright Red Hat\n" \
> - "GNU Affero GPL version 3 or later " \
> - "<https://www.gnu.org/licenses/agpl-3.0.html>\n" \
> + "GNU General Public License, version 2 or later\n" \
> + " <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n" \
> "This is free software: you are free to change and redistribute it.\n" \
> "There is NO WARRANTY, to the extent permitted by law.\n\n"
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-08-20 22:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-20 21:55 [PATCH] util: Fix licensing information display in --version Stefano Brivio
2024-08-20 22:29 ` Stefano Brivio
-- strict thread matches above, loose matches on Subject: below --
2023-09-08 15:36 Stefano Brivio
2023-09-10 0:46 ` David Gibson
Code repositories for project(s) associated with this public inbox
https://passt.top/passt
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 IMAP folder(s).