From 596d31cd4174865625797c6ae1204e649274c893 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 15 Feb 2017 14:19:09 -0500 Subject: Add a "License:" tag to all code files. --- arch-nspawn.in | 2 ++ archbuild.in | 1 + archco.in | 1 + archrelease.in | 1 + archrm.in | 1 + bash_completion.in | 2 ++ checkpkg.in | 1 + commitpkg.in | 1 + crossrepomove.in | 1 + find-libdeps.in | 1 + finddeps.in | 1 + lddd.in | 1 + lib/common.sh | 2 ++ lib/valid-tags.sh | 2 ++ makechrootpkg.in | 2 ++ mkarchroot.in | 2 ++ rebuildpkgs.in | 2 ++ zsh_completion.in | 1 + 18 files changed, 25 insertions(+) diff --git a/arch-nspawn.in b/arch-nspawn.in index 9fd0692..122d66e 100644 --- a/arch-nspawn.in +++ b/arch-nspawn.in @@ -1,4 +1,6 @@ #!/bin/bash +# License: GNU GPLv2 +# # 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 # the Free Software Foundation; version 2 of the License. diff --git a/archbuild.in b/archbuild.in index 812db7c..60e7cec 100644 --- a/archbuild.in +++ b/archbuild.in @@ -1,4 +1,5 @@ #!/bin/bash +# License: Unspecified m4_include(lib/common.sh) diff --git a/archco.in b/archco.in index 2a58921..6088b8e 100644 --- a/archco.in +++ b/archco.in @@ -1,4 +1,5 @@ #!/bin/bash +# License: Unspecified m4_include(lib/common.sh) diff --git a/archrelease.in b/archrelease.in index 4ac55db..3b11652 100644 --- a/archrelease.in +++ b/archrelease.in @@ -1,4 +1,5 @@ #!/bin/bash +# License: Unspecified m4_include(lib/common.sh) m4_include(lib/valid-tags.sh) diff --git a/archrm.in b/archrm.in index 7c7139b..3173131 100644 --- a/archrm.in +++ b/archrm.in @@ -1,4 +1,5 @@ #!/bin/bash +# License: Unspecified m4_include(lib/common.sh) diff --git a/bash_completion.in b/bash_completion.in index dd140fc..b9ed69c 100644 --- a/bash_completion.in +++ b/bash_completion.in @@ -1,3 +1,5 @@ +# License: Unspecified + _devtools_compgen() { local i r COMPREPLY=($(compgen -W '$*' -- "$cur")) diff --git a/checkpkg.in b/checkpkg.in index fcbfd80..fbd30d3 100644 --- a/checkpkg.in +++ b/checkpkg.in @@ -1,4 +1,5 @@ #!/bin/bash +# License: Unspecified shopt -s extglob diff --git a/commitpkg.in b/commitpkg.in index a5e6d65..d31f6ba 100644 --- a/commitpkg.in +++ b/commitpkg.in @@ -1,4 +1,5 @@ #!/bin/bash +# License: Unspecified m4_include(lib/common.sh) diff --git a/crossrepomove.in b/crossrepomove.in index afeec77..1be2dc3 100644 --- a/crossrepomove.in +++ b/crossrepomove.in @@ -1,4 +1,5 @@ #!/bin/bash +# License: Unspecified m4_include(lib/common.sh) diff --git a/find-libdeps.in b/find-libdeps.in index b40f794..5c350a9 100644 --- a/find-libdeps.in +++ b/find-libdeps.in @@ -1,4 +1,5 @@ #!/bin/bash +# License: Unspecified m4_include(lib/common.sh) diff --git a/finddeps.in b/finddeps.in index 7a2a3fb..89ccc41 100644 --- a/finddeps.in +++ b/finddeps.in @@ -2,6 +2,7 @@ # # finddeps - find packages that depend on a given depname # +# License: Unspecified m4_include(lib/common.sh) diff --git a/lddd.in b/lddd.in index f111d67..f01ebf9 100644 --- a/lddd.in +++ b/lddd.in @@ -2,6 +2,7 @@ # # lddd - find broken library links on your machine # +# License: Unspecified m4_include(lib/common.sh) diff --git a/lib/common.sh b/lib/common.sh index 22a80ca..4593b36 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -1,6 +1,8 @@ #!/hint/bash # This may be included with or without `set -euE` +# License: Unspecified + # Avoid any encoding problems export LANG=C diff --git a/lib/valid-tags.sh b/lib/valid-tags.sh index 36918fe..0543ab2 100644 --- a/lib/valid-tags.sh +++ b/lib/valid-tags.sh @@ -1,3 +1,5 @@ +# License: Unspecified + _arch=( i686 x86_64 diff --git a/makechrootpkg.in b/makechrootpkg.in index 7d3ebed..145801e 100644 --- a/makechrootpkg.in +++ b/makechrootpkg.in @@ -1,4 +1,6 @@ #!/bin/bash +# License: GNU GPLv2 +# # 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 # the Free Software Foundation; version 2 of the License. diff --git a/mkarchroot.in b/mkarchroot.in index b790bdb..656c74e 100644 --- a/mkarchroot.in +++ b/mkarchroot.in @@ -1,4 +1,6 @@ #!/bin/bash +# License: GNU GPLv2 +# # 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 # the Free Software Foundation; version 2 of the License. diff --git a/rebuildpkgs.in b/rebuildpkgs.in index ba8fee4..215439f 100644 --- a/rebuildpkgs.in +++ b/rebuildpkgs.in @@ -1,4 +1,6 @@ #!/bin/bash +# License: Unspecified +# # This script rebuilds a list of packages in order # and reports anything that fails # diff --git a/zsh_completion.in b/zsh_completion.in index 4c6dd99..0f95a4c 100644 --- a/zsh_completion.in +++ b/zsh_completion.in @@ -1,4 +1,5 @@ #compdef archbuild archco arch-nspawn archrelease archrm commitpkg finddeps makechrootpkg mkarchroot rebuildpkgs extrapkg=commitpkg corepkg=commitpkg testingpkg=commitpkg stagingpkg=commitpkg communitypkg=commitpkg community-testingpkg=commitpkg community-stagingpkg=commitpkg multilibpkg=commitpkg multilib-testingpkg=commitpkg extra-i686-build=archbuild extra-x86_64-build=archbuild testing-i686-build=archbuild testing-x86_64-build=archbuild staging-i686-build=archbuild staging-x86_64-build=archbuild multilib-build=archbuild multilib-testing-build=archbuild multilib-staging-build=archbuild kde-unstable-i686-build=archbuild kde-unstable-x86_64-build=archbuild gnome-unstable-i686-build=archbuild gnome-unstable-x86_64-build=archbuild communityco=archco +# License: Unspecified m4_include(lib/valid-tags.sh) -- cgit v1.2.3-54-g00ecf