From e12ec81927ef897dd1eeb9ea358ead0b3689ddfd Mon Sep 17 00:00:00 2001 From: Al Stone Date: Wed, 28 Nov 2012 17:32:50 -0700 Subject: Insert basic copyright and redistribution info Signed-off-by: Al Stone --- COPYING | 17 +++++++++++++++++ debian-pkgs.sh | 7 +++++++ fedora-pkgs.sh | 7 +++++++ packages/debian | 7 +++++++ packages/fedora | 7 +++++++ portdep.sh | 7 +++++++ report-candidates.sh | 7 +++++++ report-versions.sh | 7 +++++++ scanners/dot-s-files.sh | 7 +++++++ scanners/ifdefs.py | 7 +++++++ scanners/which-asm.sh | 7 +++++++ 11 files changed, 87 insertions(+) create mode 100644 COPYING diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..50a8b91 --- /dev/null +++ b/COPYING @@ -0,0 +1,17 @@ +All code in this main directory, and the scanners and packages subdirectories +is: + + Copyright (c) 2012, Al Stone + + This program is free software; you can redistribute it and/or + modify it under the terms of version 2 (only) of the GNU General + Public License as published by the Free Software Foundation. + + +All code in the whichasm subdirectory is: + + Copyright (C) 2012 Jon Masters + + This program is free software; you can redistribute it and/or + modify it under the terms of version 2 (only) of the GNU General + Public License as published by the Free Software Foundation. diff --git a/debian-pkgs.sh b/debian-pkgs.sh index 6a4a385..c6633d3 100755 --- a/debian-pkgs.sh +++ b/debian-pkgs.sh @@ -1,4 +1,11 @@ #!/bin/sh +# +# Copyright (c) 2012, Al Stone +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 (only) of the GNU General +# Public License as published by the Free Software Foundation. +# apt-cache pkgnames | sort | uniq > debian.pkgs diff --git a/fedora-pkgs.sh b/fedora-pkgs.sh index eebbbb3..432b155 100755 --- a/fedora-pkgs.sh +++ b/fedora-pkgs.sh @@ -1,5 +1,12 @@ #!/bin/sh # +# Copyright (c) 2012, Al Stone +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 (only) of the GNU General +# Public License as published by the Free Software Foundation. +# +# # generate a list of all known fedora packages # diff --git a/packages/debian b/packages/debian index dbf056c..a82ab49 100644 --- a/packages/debian +++ b/packages/debian @@ -1,4 +1,11 @@ #!/bin/bash +# +# Copyright (c) 2012, Al Stone +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 (only) of the GNU General +# Public License as published by the Free Software Foundation. +# #-- make sure we know how to handle the distro # Each file needs to define a function called get_source that will # be passed the working directory and a package name, and that must diff --git a/packages/fedora b/packages/fedora index cf50a2a..2d11084 100644 --- a/packages/fedora +++ b/packages/fedora @@ -1,4 +1,11 @@ #!/bin/bash +# +# Copyright (c) 2012, Al Stone +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 (only) of the GNU General +# Public License as published by the Free Software Foundation. +# #-- make sure we know how to handle the distro # Each file needs to define a function called get_source that will # be passed the working directory and a package name, and that must diff --git a/portdep.sh b/portdep.sh index cef8c6c..2c9c398 100755 --- a/portdep.sh +++ b/portdep.sh @@ -1,5 +1,12 @@ #!/bin/bash # +# Copyright (c) 2012, Al Stone +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 (only) of the GNU General +# Public License as published by the Free Software Foundation. +# +# # For each package in a list, run a set of one or more scanners # over the source files looking for potential machine dependent # code (i.e., portability dependencies). diff --git a/report-candidates.sh b/report-candidates.sh index 8697fcc..a78995e 100755 --- a/report-candidates.sh +++ b/report-candidates.sh @@ -1,5 +1,12 @@ #!/bin/bash # +# Copyright (c) 2012, Al Stone +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 (only) of the GNU General +# Public License as published by the Free Software Foundation. +# +# # Sort through the raw results of a scan to find candidates # for examination -- i.e., those packages that may require # new or changed assembler on a new architecture, whether to diff --git a/report-versions.sh b/report-versions.sh index 8dc742e..8dcf531 100755 --- a/report-versions.sh +++ b/report-versions.sh @@ -1,5 +1,12 @@ #!/bin/bash # +# Copyright (c) 2012, Al Stone +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 (only) of the GNU General +# Public License as published by the Free Software Foundation. +# +# # Sort through the raw results of a scan and list all of # packages found and their reported versions # diff --git a/scanners/dot-s-files.sh b/scanners/dot-s-files.sh index 0fb7f18..d205ca1 100755 --- a/scanners/dot-s-files.sh +++ b/scanners/dot-s-files.sh @@ -1,4 +1,11 @@ #!/bin/bash +# +# Copyright (c) 2012, Al Stone +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 (only) of the GNU General +# Public License as published by the Free Software Foundation. +# scanner="Dot-S-Files" diff --git a/scanners/ifdefs.py b/scanners/ifdefs.py index ba817fa..1d300bf 100755 --- a/scanners/ifdefs.py +++ b/scanners/ifdefs.py @@ -1,4 +1,11 @@ #!/usr/bin/env python +# +# Copyright (c) 2012, Al Stone +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 (only) of the GNU General +# Public License as published by the Free Software Foundation. +# import os import os.path diff --git a/scanners/which-asm.sh b/scanners/which-asm.sh index 116e44f..b4ff973 100755 --- a/scanners/which-asm.sh +++ b/scanners/which-asm.sh @@ -1,4 +1,11 @@ #!/bin/bash +# +# Copyright (c) 2012, Al Stone +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of version 2 (only) of the GNU General +# Public License as published by the Free Software Foundation. +# scanner="Which-Asm" -- cgit