From f6348b20ea2ab1d3fe936fc07ad588efefc11708 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Tue, 1 Sep 2020 19:00:31 -0700 Subject: [PATCH] Adjust copyright string to refer to The Nitrocli Developers This change adjusts the copyright header in all files to no longer mention individuals but refer to The Nitrocli Developers in general. --- Cargo.toml | 2 +- Makefile | 2 +- src/arg_util.rs | 2 +- src/args.rs | 2 +- src/commands.rs | 2 +- src/config.rs | 2 +- src/main.rs | 2 +- src/pinentry.rs | 2 +- src/redefine.rs | 2 +- src/tests/config.rs | 2 +- src/tests/encrypted.rs | 2 +- src/tests/hidden.rs | 2 +- src/tests/list.rs | 2 +- src/tests/lock.rs | 2 +- src/tests/mod.rs | 2 +- src/tests/otp.rs | 2 +- src/tests/pin.rs | 2 +- src/tests/pws.rs | 2 +- src/tests/reset.rs | 2 +- src/tests/run.rs | 2 +- src/tests/status.rs | 2 +- src/tests/unencrypted.rs | 2 +- var/binary-size.py | 2 +- var/shell-complete.rs | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 61c2a15e..0f60c040 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ # Cargo.toml #/*************************************************************************** -# * Copyright (C) 2017-2020 Daniel Mueller (deso@posteo.net) * +# * Copyright (C) 2017-2020 The Nitrocli Developers * # * * # * 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 * diff --git a/Makefile b/Makefile index e7f7da52..e221cd8f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Makefile #/*************************************************************************** -# * Copyright (C) 2017-2019 Daniel Mueller (deso@posteo.net) * +# * Copyright (C) 2017-2019 The Nitrocli Developers * # * * # * 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 * diff --git a/src/arg_util.rs b/src/arg_util.rs index d4ffa74f..1c5d38ff 100644 --- a/src/arg_util.rs +++ b/src/arg_util.rs @@ -1,7 +1,7 @@ // arg_util.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/args.rs b/src/args.rs index 5a4b312b..4b12ceb3 100644 --- a/src/args.rs +++ b/src/args.rs @@ -1,7 +1,7 @@ // args.rs // ************************************************************************* -// * Copyright (C) 2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/commands.rs b/src/commands.rs index 47020010..30651c1b 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -1,7 +1,7 @@ // commands.rs // ************************************************************************* -// * Copyright (C) 2018-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2018-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/config.rs b/src/config.rs index a7f48e4f..8b12f105 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,7 +1,7 @@ // config.rs // ************************************************************************* -// * Copyright (C) 2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/main.rs b/src/main.rs index 09ceedd7..e4ff6018 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,7 @@ // main.rs // ************************************************************************* -// * Copyright (C) 2017-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2017-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/pinentry.rs b/src/pinentry.rs index 937d8dff..01217547 100644 --- a/src/pinentry.rs +++ b/src/pinentry.rs @@ -1,7 +1,7 @@ // pinentry.rs // ************************************************************************* -// * Copyright (C) 2017-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2017-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/redefine.rs b/src/redefine.rs index a79cb4bd..2e37b1e4 100644 --- a/src/redefine.rs +++ b/src/redefine.rs @@ -1,7 +1,7 @@ // redefine.rs // ************************************************************************* -// * Copyright (C) 2019 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/config.rs b/src/tests/config.rs index ad1fb12f..c4d412f3 100644 --- a/src/tests/config.rs +++ b/src/tests/config.rs @@ -1,7 +1,7 @@ // config.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/encrypted.rs b/src/tests/encrypted.rs index fb00ea23..ec0fb510 100644 --- a/src/tests/encrypted.rs +++ b/src/tests/encrypted.rs @@ -1,7 +1,7 @@ // encrypted.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/hidden.rs b/src/tests/hidden.rs index 6e08c1b8..e261a726 100644 --- a/src/tests/hidden.rs +++ b/src/tests/hidden.rs @@ -1,7 +1,7 @@ // hidden.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/list.rs b/src/tests/list.rs index e8bd8193..63aeac1e 100644 --- a/src/tests/list.rs +++ b/src/tests/list.rs @@ -1,7 +1,7 @@ // list.rs // ************************************************************************* -// * Copyright (C) 2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/lock.rs b/src/tests/lock.rs index cb4962c9..4a32c9cf 100644 --- a/src/tests/lock.rs +++ b/src/tests/lock.rs @@ -1,7 +1,7 @@ // lock.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/mod.rs b/src/tests/mod.rs index 3c38b8e7..298dde9e 100644 --- a/src/tests/mod.rs +++ b/src/tests/mod.rs @@ -1,7 +1,7 @@ // mod.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/otp.rs b/src/tests/otp.rs index f94df2dd..59fd319c 100644 --- a/src/tests/otp.rs +++ b/src/tests/otp.rs @@ -1,7 +1,7 @@ // otp.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/pin.rs b/src/tests/pin.rs index cfcd0f65..416a7f84 100644 --- a/src/tests/pin.rs +++ b/src/tests/pin.rs @@ -1,7 +1,7 @@ // pin.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/pws.rs b/src/tests/pws.rs index 238ce28e..d0e8907a 100644 --- a/src/tests/pws.rs +++ b/src/tests/pws.rs @@ -1,7 +1,7 @@ // pws.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/reset.rs b/src/tests/reset.rs index c7492dae..cbac6762 100644 --- a/src/tests/reset.rs +++ b/src/tests/reset.rs @@ -1,7 +1,7 @@ // reset.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Robin Krahl (robin.krahl@ireas.org) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/run.rs b/src/tests/run.rs index 597e4000..90e30677 100644 --- a/src/tests/run.rs +++ b/src/tests/run.rs @@ -1,7 +1,7 @@ // run.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/status.rs b/src/tests/status.rs index c944cbb4..983afa7c 100644 --- a/src/tests/status.rs +++ b/src/tests/status.rs @@ -1,7 +1,7 @@ // status.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/src/tests/unencrypted.rs b/src/tests/unencrypted.rs index 2fd92a09..574b53a8 100644 --- a/src/tests/unencrypted.rs +++ b/src/tests/unencrypted.rs @@ -1,7 +1,7 @@ // unencrypted.rs // ************************************************************************* -// * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2019-2020 The Nitrocli Developers * // * * // * 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 * diff --git a/var/binary-size.py b/var/binary-size.py index ff1ac6b3..893e5c37 100755 --- a/var/binary-size.py +++ b/var/binary-size.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 -B #/*************************************************************************** -# * Copyright (C) 2019-2020 Daniel Mueller (deso@posteo.net) * +# * Copyright (C) 2019-2020 The Nitrocli Developers * # * * # * 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 * diff --git a/var/shell-complete.rs b/var/shell-complete.rs index a6f476db..a8372a4f 100644 --- a/var/shell-complete.rs +++ b/var/shell-complete.rs @@ -1,7 +1,7 @@ // shell-complete.rs // ************************************************************************* -// * Copyright (C) 2020 Daniel Mueller (deso@posteo.net) * +// * Copyright (C) 2020 The Nitrocli Developers * // * * // * 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 *