diff --git a/.travis/autobrew.py b/.travis/autobrew.py index 1c92deed..952b9a1a 100644 --- a/.travis/autobrew.py +++ b/.travis/autobrew.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 + from string import Template from subprocess import run, PIPE import re diff --git a/.travis/linux_before_install.sh b/.travis/linux_before_install.sh index 1fb467c4..bfd16774 100644 --- a/.travis/linux_before_install.sh +++ b/.travis/linux_before_install.sh @@ -1,4 +1,5 @@ #!/bin/bash +# © 2017 James R. Barlow: github.com/jbarlow83 set -euo pipefail set -x diff --git a/.travis/osx_before_install.sh b/.travis/osx_before_install.sh index fb33adc6..91ad0276 100644 --- a/.travis/osx_before_install.sh +++ b/.travis/osx_before_install.sh @@ -1,4 +1,5 @@ #!/bin/bash +# © 2017 James R. Barlow: github.com/jbarlow83 set -euo pipefail set -x diff --git a/.travis/osx_brew.sh b/.travis/osx_brew.sh index d82a4514..69c2a2a4 100644 --- a/.travis/osx_brew.sh +++ b/.travis/osx_brew.sh @@ -1,4 +1,5 @@ #!/bin/bash +# © 2017 James R. Barlow: github.com/jbarlow83 set -euo pipefail set -x diff --git a/ocrmypdf/__init__.py b/ocrmypdf/__init__.py index 65994daa..b33d4279 100644 --- a/ocrmypdf/__init__.py +++ b/ocrmypdf/__init__.py @@ -1,3 +1,5 @@ +# © 2017 James R. Barlow: github.com/jbarlow83 + import pkg_resources PROGRAM_NAME = 'ocrmypdf' diff --git a/ocrmypdf/__main__.py b/ocrmypdf/__main__.py index 6d1d0b07..2b05f230 100755 --- a/ocrmypdf/__main__.py +++ b/ocrmypdf/__main__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# © 2015-16 James R. Barlow: github.com/jbarlow83 +# © 2015-17 James R. Barlow: github.com/jbarlow83 from contextlib import suppress from tempfile import mkdtemp diff --git a/ocrmypdf/lib/__init__.py b/ocrmypdf/lib/__init__.py index 4207e851..c0f31295 100644 --- a/ocrmypdf/lib/__init__.py +++ b/ocrmypdf/lib/__init__.py @@ -1 +1,2 @@ """Bindings to external libraries""" +# © 2017 James R. Barlow: github.com/jbarlow83 \ No newline at end of file diff --git a/ocrmypdf/lib/compile_leptonica.py b/ocrmypdf/lib/compile_leptonica.py index 6748b67e..be9a5a4a 100644 --- a/ocrmypdf/lib/compile_leptonica.py +++ b/ocrmypdf/lib/compile_leptonica.py @@ -1,3 +1,5 @@ +# © 2017 James R. Barlow: github.com/jbarlow83 + from cffi import FFI ffibuilder = FFI() diff --git a/tests/spoof/gs_feature_elision.py b/tests/spoof/gs_feature_elision.py index 63a47a68..c2aabeb4 100755 --- a/tests/spoof/gs_feature_elision.py +++ b/tests/spoof/gs_feature_elision.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 + import sys import os from subprocess import check_call diff --git a/tests/spoof/gs_pdfa_failure.py b/tests/spoof/gs_pdfa_failure.py index 26fc89a3..80c02b02 100755 --- a/tests/spoof/gs_pdfa_failure.py +++ b/tests/spoof/gs_pdfa_failure.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 + import sys import os diff --git a/tests/spoof/gs_raster_failure.py b/tests/spoof/gs_raster_failure.py index 70c23b31..35c96d0d 100755 --- a/tests/spoof/gs_raster_failure.py +++ b/tests/spoof/gs_raster_failure.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 + import sys import os diff --git a/tests/spoof/gs_render_failure.py b/tests/spoof/gs_render_failure.py index b1ba58f8..0c147aca 100755 --- a/tests/spoof/gs_render_failure.py +++ b/tests/spoof/gs_render_failure.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 + import sys import os diff --git a/tests/spoof/qpdf_dummy_return2.py b/tests/spoof/qpdf_dummy_return2.py index a4d999e1..9c39afac 100755 --- a/tests/spoof/qpdf_dummy_return2.py +++ b/tests/spoof/qpdf_dummy_return2.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 + import sys diff --git a/tests/spoof/tesseract_big_image_error.py b/tests/spoof/tesseract_big_image_error.py index c3db5ccc..5ddff56b 100755 --- a/tests/spoof/tesseract_big_image_error.py +++ b/tests/spoof/tesseract_big_image_error.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 + import sys diff --git a/tests/spoof/tesseract_cache.py b/tests/spoof/tesseract_cache.py index bce1f520..e4154258 100755 --- a/tests/spoof/tesseract_cache.py +++ b/tests/spoof/tesseract_cache.py @@ -1,4 +1,6 @@ #!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 + import sys import os import hashlib diff --git a/tests/spoof/tesseract_crash.py b/tests/spoof/tesseract_crash.py index 433f5f81..81d3ffdf 100755 --- a/tests/spoof/tesseract_crash.py +++ b/tests/spoof/tesseract_crash.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 import sys import os import signal diff --git a/tests/spoof/tesseract_noop.py b/tests/spoof/tesseract_noop.py index 93b766ee..e3dc357a 100755 --- a/tests/spoof/tesseract_noop.py +++ b/tests/spoof/tesseract_noop.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 import sys import img2pdf from PIL import Image diff --git a/tests/spoof/unpaper_oldversion.py b/tests/spoof/unpaper_oldversion.py index fb97a6f0..fd55d257 100644 --- a/tests/spoof/unpaper_oldversion.py +++ b/tests/spoof/unpaper_oldversion.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# © 2016 James R. Barlow: github.com/jbarlow83 import sys def main():