diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2018-01-02 09:26:27 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2018-01-02 09:26:27 +0100 |
| commit | e64d1d93755b228ddb8ca0d5784c87b5778176f4 (patch) | |
| tree | 8e437d99a1b9c9751592b1ef969a7f3f45dbbff7 /bin | |
| parent | 01f9e698bd904897a8945f026fbb87368e404e2d (diff) | |
| download | dotfiles-e64d1d93755b228ddb8ca0d5784c87b5778176f4.tar.gz dotfiles-e64d1d93755b228ddb8ca0d5784c87b5778176f4.zip | |
Updated license notice
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/db | 2 | ||||
| -rwxr-xr-x | bin/git-fork | 2 | ||||
| -rwxr-xr-x | bin/license | 5 | ||||
| -rw-r--r-- | bin/sass | 2 | ||||
| -rw-r--r-- | bin/test/README.md.expected | 2 | ||||
| -rw-r--r-- | bin/test/main.cpp.expected | 12 | ||||
| -rwxr-xr-x | bin/test/test.sh | 2 | ||||
| -rwxr-xr-x | bin/toggle-keyboard-layout.sh | 2 | ||||
| -rwxr-xr-x | bin/vpnsetup | 2 | ||||
| -rwxr-xr-x | bin/xspf_extractor | 4 |
10 files changed, 17 insertions, 18 deletions
@@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 2014-2017 Miquel Sabaté Solà <mikisabate@gmail.com> +# Copyright (C) 2014-2018 Miquel Sabaté Solà <mikisabate@gmail.com> # # 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/bin/git-fork b/bin/git-fork index c7a7c9b..77fba4c 100755 --- a/bin/git-fork +++ b/bin/git-fork @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (C) 2015-2017 Miquel Sabaté Solà <mikisabate@gmail.com> +# Copyright (C) 2015-2018 Miquel Sabaté Solà <mikisabate@gmail.com> # # 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/bin/license b/bin/license index 7007df5..b877d04 100755 --- a/bin/license +++ b/bin/license @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 2014-2017 Miquel Sabaté Solà <mikisabate@gmail.com> +# Copyright (C) 2014-2018 Miquel Sabaté Solà <mikisabate@gmail.com> # # 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 @@ -65,7 +65,7 @@ my $name = 'Miquel'; # The current year. I previously thought to be clever and set it to `date +%Y`, # but then I decided that I didn't want to be clever here to avoid problems and # be more flexible. -my $current_year = '2015'; +my $current_year = '2018'; # The command that feeds this command if no command line argument was given. my $default_cmd = "git grep -l 'Copyright' | xargs"; @@ -131,4 +131,3 @@ my @files = (@ARGV > 0) ? @ARGV : split(' ', `$default_cmd`); foreach my $f (@files) { update_file($f); } - @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014-2017 Miquel Sabaté Solà <mikisabate@gmail.com> +# Copyright (C) 2014-2018 Miquel Sabaté Solà <mikisabate@gmail.com> # # 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/bin/test/README.md.expected b/bin/test/README.md.expected index 9defd7f..5e5e030 100644 --- a/bin/test/README.md.expected +++ b/bin/test/README.md.expected @@ -3,5 +3,5 @@ A readme file -Copyright © 2014-2015 Miquel Sabaté Solà, released under the MIT License. +Copyright © 2014-2018 Miquel Sabaté Solà, released under the MIT License. diff --git a/bin/test/main.cpp.expected b/bin/test/main.cpp.expected index 27c570c..155214f 100644 --- a/bin/test/main.cpp.expected +++ b/bin/test/main.cpp.expected @@ -1,10 +1,10 @@ /* - * Copyright (C) 2015 Miquel Sabaté Solà <mikisabate@gmail.com> - * Copyright (c) 2015 Miquel Sabaté Solà <mikisabate@gmail.com> - * Copyright (C) 2015 Miquel Sabaté Solà <mikisabate@gmail.com> - * Copyright (C) 2013-2015 Miquel Sabaté Solà <mikisabate@gmail.com> - * Copyright (C) 2014-2015 Miquel Sabaté Solà <mikisabate@gmail.com> - * Copyright (C) 2015 Miquel Sabaté Solà <mikisabate@gmail.com> + * Copyright (C) 2015-2018 Miquel Sabaté Solà <mikisabate@gmail.com> + * Copyright (c) 2015-2018 Miquel Sabaté Solà <mikisabate@gmail.com> + * Copyright (C) 2015-2018 Miquel Sabaté Solà <mikisabate@gmail.com> + * Copyright (C) 2013-2018 Miquel Sabaté Solà <mikisabate@gmail.com> + * Copyright (C) 2014-2018 Miquel Sabaté Solà <mikisabate@gmail.com> + * Copyright (C) 2015-2018 Miquel Sabaté Solà <mikisabate@gmail.com> */ int main(int argc, char *argv[]) diff --git a/bin/test/test.sh b/bin/test/test.sh index f9f23a8..b9bf1b5 100755 --- a/bin/test/test.sh +++ b/bin/test/test.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2014-2016 Miquel Sabaté Solà <mikisabate@gmail.com> +# Copyright (C) 2014-2018 Miquel Sabaté Solà <mikisabate@gmail.com> # # 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/bin/toggle-keyboard-layout.sh b/bin/toggle-keyboard-layout.sh index b5458c4..3d2412a 100755 --- a/bin/toggle-keyboard-layout.sh +++ b/bin/toggle-keyboard-layout.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (C) 2016-2017 Miquel Sabaté Solà <mikisabate@gmail.com> +# Copyright (C) 2016-2018 Miquel Sabaté Solà <mikisabate@gmail.com> # # 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/bin/vpnsetup b/bin/vpnsetup index e32a7e7..0316688 100755 --- a/bin/vpnsetup +++ b/bin/vpnsetup @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (C) 2016-2017 Miquel Sabaté Solà <mikisabate@gmail.com> +# Copyright (C) 2016-2018 Miquel Sabaté Solà <mikisabate@gmail.com> # # 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/bin/xspf_extractor b/bin/xspf_extractor index 1bb3631..6ba13e2 100755 --- a/bin/xspf_extractor +++ b/bin/xspf_extractor @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 2017 Miquel Sabaté Solà <mikisabate@gmail.com> +# Copyright (C) 2017-2018 Miquel Sabaté Solà <mikisabate@gmail.com> # # 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 @@ -56,7 +56,7 @@ EOF sub version { print <<EOF; xspf_extractor version 0.1 -Copyright (C) 2017 Miquel Sabaté Solà <mikisabate\@gmail.com> +Copyright (C) 2017-2018 Miquel Sabaté Solà <mikisabate\@gmail.com> License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. |
