summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2023-02-21 23:06:52 +0100
committerjaseg <git@jaseg.de>2023-02-21 23:06:52 +0100
commit16f1247fda50061faa95609493c773f4e769006e (patch)
tree4de4d816df222f9cb30a2159f6f823cd7298573c
parent67dfad8418a092ed9465e88be479f0e555e640ff (diff)
downloadgerbonara-16f1247fda50061faa95609493c773f4e769006e.tar.gz
gerbonara-16f1247fda50061faa95609493c773f4e769006e.tar.bz2
gerbonara-16f1247fda50061faa95609493c773f4e769006e.zip
Fix copyright headers
-rw-r--r--gerbonara/__init__.py2
-rw-r--r--gerbonara/aperture_macros/expression.py2
-rw-r--r--gerbonara/aperture_macros/parse.py2
-rw-r--r--gerbonara/aperture_macros/primitive.py2
-rw-r--r--gerbonara/apertures.py2
-rw-r--r--gerbonara/cam.py2
-rwxr-xr-xgerbonara/excellon.py2
-rw-r--r--gerbonara/graphic_objects.py2
-rw-r--r--gerbonara/graphic_primitives.py2
-rw-r--r--gerbonara/ipc356.py2
-rw-r--r--gerbonara/layer_rules.py2
-rw-r--r--gerbonara/rs274x.py2
-rw-r--r--gerbonara/tests/image_support.py2
-rw-r--r--gerbonara/tests/test_excellon.py2
-rw-r--r--gerbonara/tests/test_ipc356.py2
-rw-r--r--gerbonara/tests/test_layers.py2
-rw-r--r--gerbonara/tests/test_rs274x.py2
-rw-r--r--gerbonara/tests/test_utils.py2
-rw-r--r--gerbonara/tests/utils.py2
-rw-r--r--gerbonara/utils.py2
20 files changed, 20 insertions, 20 deletions
diff --git a/gerbonara/__init__.py b/gerbonara/__init__.py
index 7a0475f..cadd528 100644
--- a/gerbonara/__init__.py
+++ b/gerbonara/__init__.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <code@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/aperture_macros/expression.py b/gerbonara/aperture_macros/expression.py
index 0cf055a..3600f4f 100644
--- a/gerbonara/aperture_macros/expression.py
+++ b/gerbonara/aperture_macros/expression.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright 2021 Jan Götte <gerbonara@jaseg.de>
+# Copyright 2021 Jan Sebastian Götte <gerbonara@jaseg.de>
import operator
import re
diff --git a/gerbonara/aperture_macros/parse.py b/gerbonara/aperture_macros/parse.py
index 448330f..727b950 100644
--- a/gerbonara/aperture_macros/parse.py
+++ b/gerbonara/aperture_macros/parse.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright 2021 Jan Götte <gerbonara@jaseg.de>
+# Copyright 2021 Jan Sebastian Götte <gerbonara@jaseg.de>
import operator
import re
diff --git a/gerbonara/aperture_macros/primitive.py b/gerbonara/aperture_macros/primitive.py
index 579c701..f9b5a78 100644
--- a/gerbonara/aperture_macros/primitive.py
+++ b/gerbonara/aperture_macros/primitive.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# Copyright 2019 Hiroshi Murayama <opiopan@gmail.com>
-# Copyright 2022 Jan Götte <gerbonara@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
import warnings
import contextlib
diff --git a/gerbonara/apertures.py b/gerbonara/apertures.py
index 4f41941..b4bf67b 100644
--- a/gerbonara/apertures.py
+++ b/gerbonara/apertures.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/cam.py b/gerbonara/cam.py
index 4944945..d5a2efa 100644
--- a/gerbonara/cam.py
+++ b/gerbonara/cam.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# Copyright 2014 Hamilton Kibbe <ham@hamiltonkib.be>
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/excellon.py b/gerbonara/excellon.py
index 6f816b9..2653a37 100755
--- a/gerbonara/excellon.py
+++ b/gerbonara/excellon.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# Copyright 2014 Hamilton Kibbe <ham@hamiltonkib.be>
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/graphic_objects.py b/gerbonara/graphic_objects.py
index 4fd0de8..7dd9199 100644
--- a/gerbonara/graphic_objects.py
+++ b/gerbonara/graphic_objects.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/graphic_primitives.py b/gerbonara/graphic_primitives.py
index 7dc1126..1cfebbb 100644
--- a/gerbonara/graphic_primitives.py
+++ b/gerbonara/graphic_primitives.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/ipc356.py b/gerbonara/ipc356.py
index 9da129a..ea15ab0 100644
--- a/gerbonara/ipc356.py
+++ b/gerbonara/ipc356.py
@@ -3,7 +3,7 @@
#
# copyright 2014 Hamilton Kibbe <ham@hamiltonkib.be>
# Modified from parser.py by Paulo Henrique Silva <ph.silva@gmail.com>
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/layer_rules.py b/gerbonara/layer_rules.py
index 6a53f4e..2b33d25 100644
--- a/gerbonara/layer_rules.py
+++ b/gerbonara/layer_rules.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/rs274x.py b/gerbonara/rs274x.py
index 3efb825..8c6d9ae 100644
--- a/gerbonara/rs274x.py
+++ b/gerbonara/rs274x.py
@@ -4,7 +4,7 @@
# Modified from parser.py by Paulo Henrique Silva <ph.silva@gmail.com>
# Copyright 2014 Hamilton Kibbe <ham@hamiltonkib.be>
# Copyright 2019 Hiroshi Murayama <opiopan@gmail.com>
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/tests/image_support.py b/gerbonara/tests/image_support.py
index 862baf5..b5e06cf 100644
--- a/gerbonara/tests/image_support.py
+++ b/gerbonara/tests/image_support.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/tests/test_excellon.py b/gerbonara/tests/test_excellon.py
index addf89e..cd0960f 100644
--- a/gerbonara/tests/test_excellon.py
+++ b/gerbonara/tests/test_excellon.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/tests/test_ipc356.py b/gerbonara/tests/test_ipc356.py
index 1090554..a074e78 100644
--- a/gerbonara/tests/test_ipc356.py
+++ b/gerbonara/tests/test_ipc356.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# Copyright 2015 Hamilton Kibbe <ham@hamiltonkib.be>
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/tests/test_layers.py b/gerbonara/tests/test_layers.py
index 05ac440..445572b 100644
--- a/gerbonara/tests/test_layers.py
+++ b/gerbonara/tests/test_layers.py
@@ -1,7 +1,7 @@
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/tests/test_rs274x.py b/gerbonara/tests/test_rs274x.py
index 5111921..0807bfd 100644
--- a/gerbonara/tests/test_rs274x.py
+++ b/gerbonara/tests/test_rs274x.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/tests/test_utils.py b/gerbonara/tests/test_utils.py
index e6dc8d5..1791afe 100644
--- a/gerbonara/tests/test_utils.py
+++ b/gerbonara/tests/test_utils.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# Copyright 2015 Hamilton Kibbe <ham@hamiltonkib.be>
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/tests/utils.py b/gerbonara/tests/utils.py
index d78f257..3e8966c 100644
--- a/gerbonara/tests/utils.py
+++ b/gerbonara/tests/utils.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gerbonara/utils.py b/gerbonara/utils.py
index 83dc471..6b2d5c1 100644
--- a/gerbonara/utils.py
+++ b/gerbonara/utils.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# Copyright 2014 Hamilton Kibbe <ham@hamiltonkib.be>
-# Copyright 2022 Jan Götte <code@jaseg.de>
+# Copyright 2022 Jan Sebastian Götte <gerbonara@jaseg.de>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.