diff --git a/pmb/__init__.py b/pmb/__init__.py index b4023a9b..4c1fa80a 100644 --- a/pmb/__init__.py +++ b/pmb/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later # PYTHON_ARGCOMPLETE_OK import sys diff --git a/pmb/aportgen/__init__.py b/pmb/aportgen/__init__.py index 32a84287..6473f916 100644 --- a/pmb/aportgen/__init__.py +++ b/pmb/aportgen/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/aportgen/binutils.py b/pmb/aportgen/binutils.py index 7bc50f4b..deda8d06 100644 --- a/pmb/aportgen/binutils.py +++ b/pmb/aportgen/binutils.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.aportgen.core import pmb.helpers.git diff --git a/pmb/aportgen/busybox_static.py b/pmb/aportgen/busybox_static.py index edcd0ef2..b2d0155b 100644 --- a/pmb/aportgen/busybox_static.py +++ b/pmb/aportgen/busybox_static.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.aportgen.core import pmb.build diff --git a/pmb/aportgen/core.py b/pmb/aportgen/core.py index 79209e63..65fa8963 100644 --- a/pmb/aportgen/core.py +++ b/pmb/aportgen/core.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import fnmatch import logging diff --git a/pmb/aportgen/device.py b/pmb/aportgen/device.py index c23e24a2..6883f475 100644 --- a/pmb/aportgen/device.py +++ b/pmb/aportgen/device.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/aportgen/gcc.py b/pmb/aportgen/gcc.py index 61686260..c341aa86 100644 --- a/pmb/aportgen/gcc.py +++ b/pmb/aportgen/gcc.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.aportgen.core import pmb.helpers.git diff --git a/pmb/aportgen/grub_efi.py b/pmb/aportgen/grub_efi.py index e8a7c816..36c69b4f 100644 --- a/pmb/aportgen/grub_efi.py +++ b/pmb/aportgen/grub_efi.py @@ -1,4 +1,4 @@ -# Copyright 2022 Nick Reitemeyer, Oliver Smith +# Copyright 2023 Nick Reitemeyer, Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.aportgen.core import pmb.build diff --git a/pmb/aportgen/linux.py b/pmb/aportgen/linux.py index 49043900..fcd34554 100644 --- a/pmb/aportgen/linux.py +++ b/pmb/aportgen/linux.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.helpers.run import pmb.aportgen.core diff --git a/pmb/aportgen/musl.py b/pmb/aportgen/musl.py index 8116ee23..107b96b0 100644 --- a/pmb/aportgen/musl.py +++ b/pmb/aportgen/musl.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.aportgen.core import pmb.build diff --git a/pmb/build/__init__.py b/pmb/build/__init__.py index 8a96e949..1470aa3b 100644 --- a/pmb/build/__init__.py +++ b/pmb/build/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later from pmb.build.init import init, init_compiler from pmb.build.envkernel import package_kernel diff --git a/pmb/build/_package.py b/pmb/build/_package.py index d2b8ae4a..751a1b77 100644 --- a/pmb/build/_package.py +++ b/pmb/build/_package.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import datetime import logging diff --git a/pmb/build/autodetect.py b/pmb/build/autodetect.py index 5d0c2a60..adeced40 100644 --- a/pmb/build/autodetect.py +++ b/pmb/build/autodetect.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/build/checksum.py b/pmb/build/checksum.py index 341aa388..e10fefc3 100644 --- a/pmb/build/checksum.py +++ b/pmb/build/checksum.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging diff --git a/pmb/build/envkernel.py b/pmb/build/envkernel.py index a3b85e6d..b04fcbba 100644 --- a/pmb/build/envkernel.py +++ b/pmb/build/envkernel.py @@ -1,4 +1,4 @@ -# Copyright 2022 Robert Yang +# Copyright 2023 Robert Yang # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/build/init.py b/pmb/build/init.py index fed99d1c..8a427809 100644 --- a/pmb/build/init.py +++ b/pmb/build/init.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/build/menuconfig.py b/pmb/build/menuconfig.py index 55688126..7b5a6313 100644 --- a/pmb/build/menuconfig.py +++ b/pmb/build/menuconfig.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/build/newapkbuild.py b/pmb/build/newapkbuild.py index 418569b5..9ada1b53 100644 --- a/pmb/build/newapkbuild.py +++ b/pmb/build/newapkbuild.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import glob import os diff --git a/pmb/build/other.py b/pmb/build/other.py index aced8796..d9557503 100644 --- a/pmb/build/other.py +++ b/pmb/build/other.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import glob import logging diff --git a/pmb/chroot/__init__.py b/pmb/chroot/__init__.py index 21964f0f..01ff116b 100644 --- a/pmb/chroot/__init__.py +++ b/pmb/chroot/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later from pmb.chroot.init import init, init_keys from pmb.chroot.mount import mount, mount_native_into_foreign diff --git a/pmb/chroot/apk.py b/pmb/chroot/apk.py index ed051e63..926f92c1 100644 --- a/pmb/chroot/apk.py +++ b/pmb/chroot/apk.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/chroot/apk_static.py b/pmb/chroot/apk_static.py index a8813d73..76b8d8bb 100644 --- a/pmb/chroot/apk_static.py +++ b/pmb/chroot/apk_static.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/chroot/binfmt.py b/pmb/chroot/binfmt.py index 4ca7796c..61b0b026 100644 --- a/pmb/chroot/binfmt.py +++ b/pmb/chroot/binfmt.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/chroot/distccd.py b/pmb/chroot/distccd.py index 174865be..be27dad0 100644 --- a/pmb/chroot/distccd.py +++ b/pmb/chroot/distccd.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import errno import json diff --git a/pmb/chroot/init.py b/pmb/chroot/init.py index ebaa40c2..e2622ffc 100644 --- a/pmb/chroot/init.py +++ b/pmb/chroot/init.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/chroot/initfs.py b/pmb/chroot/initfs.py index a8c92e7d..257534db 100644 --- a/pmb/chroot/initfs.py +++ b/pmb/chroot/initfs.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/chroot/initfs_hooks.py b/pmb/chroot/initfs_hooks.py index 3e7c980e..75a85a0f 100644 --- a/pmb/chroot/initfs_hooks.py +++ b/pmb/chroot/initfs_hooks.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import glob diff --git a/pmb/chroot/mount.py b/pmb/chroot/mount.py index 3907ca59..65f00a7b 100644 --- a/pmb/chroot/mount.py +++ b/pmb/chroot/mount.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import glob import logging diff --git a/pmb/chroot/other.py b/pmb/chroot/other.py index 556a9006..4af5029c 100644 --- a/pmb/chroot/other.py +++ b/pmb/chroot/other.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import glob diff --git a/pmb/chroot/root.py b/pmb/chroot/root.py index 27a757a5..a14177ad 100644 --- a/pmb/chroot/root.py +++ b/pmb/chroot/root.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import shutil diff --git a/pmb/chroot/shutdown.py b/pmb/chroot/shutdown.py index ddd0ffff..633560fe 100644 --- a/pmb/chroot/shutdown.py +++ b/pmb/chroot/shutdown.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import glob diff --git a/pmb/chroot/user.py b/pmb/chroot/user.py index 232afaef..925f3124 100644 --- a/pmb/chroot/user.py +++ b/pmb/chroot/user.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.chroot.root import pmb.helpers.run diff --git a/pmb/chroot/zap.py b/pmb/chroot/zap.py index fa63038f..c91ccfa8 100644 --- a/pmb/chroot/zap.py +++ b/pmb/chroot/zap.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import glob import logging diff --git a/pmb/ci/__init__.py b/pmb/ci/__init__.py index 82433c9c..6d2f1e71 100644 --- a/pmb/ci/__init__.py +++ b/pmb/ci/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import collections import glob diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 2e701024..9d4e1272 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import multiprocessing import os diff --git a/pmb/config/init.py b/pmb/config/init.py index 53a646be..96ec344f 100644 --- a/pmb/config/init.py +++ b/pmb/config/init.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import glob diff --git a/pmb/config/load.py b/pmb/config/load.py index 37ac0dae..f67215f3 100644 --- a/pmb/config/load.py +++ b/pmb/config/load.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import configparser diff --git a/pmb/config/merge_with_args.py b/pmb/config/merge_with_args.py index 635f9611..262a28f0 100644 --- a/pmb/config/merge_with_args.py +++ b/pmb/config/merge_with_args.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.config diff --git a/pmb/config/pmaports.py b/pmb/config/pmaports.py index 54a0a5ac..43958b53 100644 --- a/pmb/config/pmaports.py +++ b/pmb/config/pmaports.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import configparser import logging diff --git a/pmb/config/save.py b/pmb/config/save.py index 338d6321..e10821a7 100644 --- a/pmb/config/save.py +++ b/pmb/config/save.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/config/sudo.py b/pmb/config/sudo.py index 43abcce8..fe876987 100644 --- a/pmb/config/sudo.py +++ b/pmb/config/sudo.py @@ -1,4 +1,4 @@ -# Copyright 2022 Anjandev Momi +# Copyright 2023 Anjandev Momi # SPDX-License-Identifier: GPL-3.0-or-later import os import shutil diff --git a/pmb/config/workdir.py b/pmb/config/workdir.py index 5eae366b..4a32c3fb 100644 --- a/pmb/config/workdir.py +++ b/pmb/config/workdir.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Save, read, verify workdir state related information in $WORK/workdir.cfg, for example the init dates of the chroots. This is not saved in diff --git a/pmb/export/__init__.py b/pmb/export/__init__.py index 63eb647c..40656df9 100644 --- a/pmb/export/__init__.py +++ b/pmb/export/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later from pmb.export.frontend import frontend from pmb.export.odin import odin diff --git a/pmb/export/odin.py b/pmb/export/odin.py index 018f2cf7..3417344b 100644 --- a/pmb/export/odin.py +++ b/pmb/export/odin.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/export/symlinks.py b/pmb/export/symlinks.py index 28532289..04c5a952 100644 --- a/pmb/export/symlinks.py +++ b/pmb/export/symlinks.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/flasher/__init__.py b/pmb/flasher/__init__.py index 4d788c4c..2fd1c1fd 100644 --- a/pmb/flasher/__init__.py +++ b/pmb/flasher/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later from pmb.flasher.init import init from pmb.flasher.init import install_depends diff --git a/pmb/flasher/frontend.py b/pmb/flasher/frontend.py index 8ba3011d..a88986a4 100644 --- a/pmb/flasher/frontend.py +++ b/pmb/flasher/frontend.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/flasher/init.py b/pmb/flasher/init.py index 1ca47ae2..aff7808d 100644 --- a/pmb/flasher/init.py +++ b/pmb/flasher/init.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.chroot.apk import pmb.config diff --git a/pmb/flasher/run.py b/pmb/flasher/run.py index a5dba03a..7daa7376 100644 --- a/pmb/flasher/run.py +++ b/pmb/flasher/run.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.flasher import pmb.chroot.initfs diff --git a/pmb/flasher/variables.py b/pmb/flasher/variables.py index ff245818..44a59489 100644 --- a/pmb/flasher/variables.py +++ b/pmb/flasher/variables.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.config.pmaports diff --git a/pmb/helpers/__init__.py b/pmb/helpers/__init__.py index 11a998a1..aa2f5ff1 100644 --- a/pmb/helpers/__init__.py +++ b/pmb/helpers/__init__.py @@ -1,2 +1,2 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later diff --git a/pmb/helpers/apk.py b/pmb/helpers/apk.py index cddb890b..2833c1c9 100644 --- a/pmb/helpers/apk.py +++ b/pmb/helpers/apk.py @@ -1,4 +1,4 @@ -# Copyright 2022 Johannes Marbach, Oliver Smith +# Copyright 2023 Johannes Marbach, Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os diff --git a/pmb/helpers/aportupgrade.py b/pmb/helpers/aportupgrade.py index 39a58259..692a22a1 100644 --- a/pmb/helpers/aportupgrade.py +++ b/pmb/helpers/aportupgrade.py @@ -1,4 +1,4 @@ -# Copyright 2022 Luca Weiss +# Copyright 2023 Luca Weiss # SPDX-License-Identifier: GPL-3.0-or-later import datetime import fnmatch diff --git a/pmb/helpers/args.py b/pmb/helpers/args.py index 0edabd4d..ea364030 100644 --- a/pmb/helpers/args.py +++ b/pmb/helpers/args.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import copy import os diff --git a/pmb/helpers/cli.py b/pmb/helpers/cli.py index 0ae3c53b..a9fefe42 100644 --- a/pmb/helpers/cli.py +++ b/pmb/helpers/cli.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import datetime import logging diff --git a/pmb/helpers/devices.py b/pmb/helpers/devices.py index 1c805987..b0583047 100644 --- a/pmb/helpers/devices.py +++ b/pmb/helpers/devices.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import glob diff --git a/pmb/helpers/file.py b/pmb/helpers/file.py index 1aab2a06..c6a0ec4a 100644 --- a/pmb/helpers/file.py +++ b/pmb/helpers/file.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os diff --git a/pmb/helpers/frontend.py b/pmb/helpers/frontend.py index 301142af..d569abea 100644 --- a/pmb/helpers/frontend.py +++ b/pmb/helpers/frontend.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import glob import json diff --git a/pmb/helpers/git.py b/pmb/helpers/git.py index 50597c91..f04901b7 100644 --- a/pmb/helpers/git.py +++ b/pmb/helpers/git.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import configparser import logging diff --git a/pmb/helpers/http.py b/pmb/helpers/http.py index 78d30797..fe0f7c58 100644 --- a/pmb/helpers/http.py +++ b/pmb/helpers/http.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import hashlib import json diff --git a/pmb/helpers/lint.py b/pmb/helpers/lint.py index e440e9ba..95e7070f 100644 --- a/pmb/helpers/lint.py +++ b/pmb/helpers/lint.py @@ -1,4 +1,4 @@ -# Copyright 2022 Danct12 +# Copyright 2023 Danct12 # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/helpers/logging.py b/pmb/helpers/logging.py index f2a8babf..fc9e3d59 100644 --- a/pmb/helpers/logging.py +++ b/pmb/helpers/logging.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/helpers/mount.py b/pmb/helpers/mount.py index f73d8369..a3203b53 100644 --- a/pmb/helpers/mount.py +++ b/pmb/helpers/mount.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import pmb.helpers.run diff --git a/pmb/helpers/other.py b/pmb/helpers/other.py index 9c952e8b..a150dcd1 100644 --- a/pmb/helpers/other.py +++ b/pmb/helpers/other.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import glob import logging diff --git a/pmb/helpers/package.py b/pmb/helpers/package.py index d91d1185..db648a6b 100644 --- a/pmb/helpers/package.py +++ b/pmb/helpers/package.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Functions that work with both pmaports and binary package repos. See also: diff --git a/pmb/helpers/pkgrel_bump.py b/pmb/helpers/pkgrel_bump.py index 402455eb..982cc2fc 100644 --- a/pmb/helpers/pkgrel_bump.py +++ b/pmb/helpers/pkgrel_bump.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging diff --git a/pmb/helpers/pmaports.py b/pmb/helpers/pmaports.py index d7dd04d0..510ec4d0 100644 --- a/pmb/helpers/pmaports.py +++ b/pmb/helpers/pmaports.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Functions that work with pmaports. See also: diff --git a/pmb/helpers/repo.py b/pmb/helpers/repo.py index 3c855eea..cb5847c8 100644 --- a/pmb/helpers/repo.py +++ b/pmb/helpers/repo.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Functions that work with binary package repos. See also: diff --git a/pmb/helpers/repo_missing.py b/pmb/helpers/repo_missing.py index 9d1b1c8a..294fed63 100644 --- a/pmb/helpers/repo_missing.py +++ b/pmb/helpers/repo_missing.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging diff --git a/pmb/helpers/run.py b/pmb/helpers/run.py index 05a036bf..b172b356 100644 --- a/pmb/helpers/run.py +++ b/pmb/helpers/run.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import shlex import pmb.helpers.run_core diff --git a/pmb/helpers/run_core.py b/pmb/helpers/run_core.py index 313cdbc6..c3283e9a 100644 --- a/pmb/helpers/run_core.py +++ b/pmb/helpers/run_core.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import fcntl import logging diff --git a/pmb/helpers/status.py b/pmb/helpers/status.py index 854b7612..657c27a3 100644 --- a/pmb/helpers/status.py +++ b/pmb/helpers/status.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/helpers/ui.py b/pmb/helpers/ui.py index c52fed74..039be55d 100644 --- a/pmb/helpers/ui.py +++ b/pmb/helpers/ui.py @@ -1,4 +1,4 @@ -# Copyright 2022 Clayton Craft +# Copyright 2023 Clayton Craft # SPDX-License-Identifier: GPL-3.0-or-later import os import glob diff --git a/pmb/install/__init__.py b/pmb/install/__init__.py index 7163ee2d..d44288ce 100644 --- a/pmb/install/__init__.py +++ b/pmb/install/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later from pmb.install._install import install from pmb.install._install import get_kernel_package diff --git a/pmb/install/_install.py b/pmb/install/_install.py index c6537fed..5a3f2bfe 100644 --- a/pmb/install/_install.py +++ b/pmb/install/_install.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/install/blockdevice.py b/pmb/install/blockdevice.py index 2956093a..b949ee22 100644 --- a/pmb/install/blockdevice.py +++ b/pmb/install/blockdevice.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/install/format.py b/pmb/install/format.py index d8d9a2d3..7cbb82ef 100644 --- a/pmb/install/format.py +++ b/pmb/install/format.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/install/losetup.py b/pmb/install/losetup.py index 38f4a601..6fe943ba 100644 --- a/pmb/install/losetup.py +++ b/pmb/install/losetup.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import glob import json diff --git a/pmb/install/partition.py b/pmb/install/partition.py index ff57eee4..3cdff159 100644 --- a/pmb/install/partition.py +++ b/pmb/install/partition.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/install/recovery.py b/pmb/install/recovery.py index e0f708e7..c39e0cef 100644 --- a/pmb/install/recovery.py +++ b/pmb/install/recovery.py @@ -1,4 +1,4 @@ -# Copyright 2022 Attila Szollosi +# Copyright 2023 Attila Szollosi # SPDX-License-Identifier: GPL-3.0-or-later import logging diff --git a/pmb/install/ui.py b/pmb/install/ui.py index debbd4d3..d311b611 100644 --- a/pmb/install/ui.py +++ b/pmb/install/ui.py @@ -1,4 +1,4 @@ -# Copyright 2022 Dylan Van Assche +# Copyright 2023 Dylan Van Assche # SPDX-License-Identifier: GPL-3.0-or-later import logging diff --git a/pmb/netboot/__init__.py b/pmb/netboot/__init__.py index fc35c9b8..1cd4904c 100644 --- a/pmb/netboot/__init__.py +++ b/pmb/netboot/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Mark Hargreaves, Luca Weiss +# Copyright 2023 Mark Hargreaves, Luca Weiss # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/parse/__init__.py b/pmb/parse/__init__.py index 478c93c5..3d58830e 100644 --- a/pmb/parse/__init__.py +++ b/pmb/parse/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later from pmb.parse.arguments import arguments from pmb.parse._apkbuild import apkbuild diff --git a/pmb/parse/_apkbuild.py b/pmb/parse/_apkbuild.py index adc0947b..39b27868 100644 --- a/pmb/parse/_apkbuild.py +++ b/pmb/parse/_apkbuild.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/parse/apkindex.py b/pmb/parse/apkindex.py index a37e5c07..c031c86b 100644 --- a/pmb/parse/apkindex.py +++ b/pmb/parse/apkindex.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import collections import logging diff --git a/pmb/parse/arch.py b/pmb/parse/arch.py index e062652a..664ef976 100644 --- a/pmb/parse/arch.py +++ b/pmb/parse/arch.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import fnmatch import platform diff --git a/pmb/parse/arguments.py b/pmb/parse/arguments.py index 0c080a34..e934b791 100644 --- a/pmb/parse/arguments.py +++ b/pmb/parse/arguments.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import argparse import copy diff --git a/pmb/parse/binfmt_info.py b/pmb/parse/binfmt_info.py index 4b83fdb8..a50861cb 100644 --- a/pmb/parse/binfmt_info.py +++ b/pmb/parse/binfmt_info.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import pmb.config diff --git a/pmb/parse/bootimg.py b/pmb/parse/bootimg.py index 59172840..8a9fa1ad 100644 --- a/pmb/parse/bootimg.py +++ b/pmb/parse/bootimg.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import logging diff --git a/pmb/parse/cpuinfo.py b/pmb/parse/cpuinfo.py index bd713c7e..33ff17fb 100644 --- a/pmb/parse/cpuinfo.py +++ b/pmb/parse/cpuinfo.py @@ -1,4 +1,4 @@ -# Copyright 2022 Lary Gibaud +# Copyright 2023 Lary Gibaud # SPDX-License-Identifier: GPL-3.0-or-later import re diff --git a/pmb/parse/depends.py b/pmb/parse/depends.py index a5d40459..0920202a 100644 --- a/pmb/parse/depends.py +++ b/pmb/parse/depends.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import pmb.chroot diff --git a/pmb/parse/deviceinfo.py b/pmb/parse/deviceinfo.py index 8d1de246..6bef8a95 100644 --- a/pmb/parse/deviceinfo.py +++ b/pmb/parse/deviceinfo.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import copy import logging diff --git a/pmb/parse/kconfig.py b/pmb/parse/kconfig.py index e04da49a..3437b544 100644 --- a/pmb/parse/kconfig.py +++ b/pmb/parse/kconfig.py @@ -1,4 +1,4 @@ -# Copyright 2022 Attila Szollosi +# Copyright 2023 Attila Szollosi # SPDX-License-Identifier: GPL-3.0-or-later import glob import logging diff --git a/pmb/parse/version.py b/pmb/parse/version.py index d5a86fb2..ae2e84c6 100644 --- a/pmb/parse/version.py +++ b/pmb/parse/version.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import collections diff --git a/pmb/qemu/__init__.py b/pmb/qemu/__init__.py index acbacbb3..ff4980c0 100644 --- a/pmb/qemu/__init__.py +++ b/pmb/qemu/__init__.py @@ -1,3 +1,3 @@ -# Copyright 2022 Pablo Castellano +# Copyright 2023 Pablo Castellano # SPDX-License-Identifier: GPL-3.0-or-later from pmb.qemu.run import run diff --git a/pmb/qemu/run.py b/pmb/qemu/run.py index 8d17b9aa..b85ddcf6 100644 --- a/pmb/qemu/run.py +++ b/pmb/qemu/run.py @@ -1,4 +1,4 @@ -# Copyright 2022 Pablo Castellano, Oliver Smith +# Copyright 2023 Pablo Castellano, Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/pmb/sideload/__init__.py b/pmb/sideload/__init__.py index 7bb8f699..f46882d1 100644 --- a/pmb/sideload/__init__.py +++ b/pmb/sideload/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Martijn Braam +# Copyright 2023 Martijn Braam # SPDX-License-Identifier: GPL-3.0-or-later import glob import os diff --git a/pmbootstrap.py b/pmbootstrap.py index 198cabd8..6b8766bc 100755 --- a/pmbootstrap.py +++ b/pmbootstrap.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -*- encoding: UTF-8 -*- -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later # PYTHON_ARGCOMPLETE_OK import sys diff --git a/test/pmb_test/__init__.py b/test/pmb_test/__init__.py index 554889c0..2d920746 100644 --- a/test/pmb_test/__init__.py +++ b/test/pmb_test/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import sys diff --git a/test/pmb_test/const.py b/test/pmb_test/const.py index 175f1326..94d78171 100644 --- a/test/pmb_test/const.py +++ b/test/pmb_test/const.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb.config diff --git a/test/pmb_test/git.py b/test/pmb_test/git.py index 4eea401f..bd9ea892 100644 --- a/test/pmb_test/git.py +++ b/test/pmb_test/git.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Common code for git tests """ import os diff --git a/test/test_apk.py b/test/test_apk.py index f1ef6c86..148dd259 100644 --- a/test/test_apk.py +++ b/test/test_apk.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import fnmatch import pytest diff --git a/test/test_apk_static.py b/test/test_apk_static.py index 43f16a86..84530f46 100644 --- a/test/test_apk_static.py +++ b/test/test_apk_static.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import copy diff --git a/test/test_aportgen.py b/test/test_aportgen.py index e4cc141f..6258f6b7 100644 --- a/test/test_aportgen.py +++ b/test/test_aportgen.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import sys diff --git a/test/test_aportgen_device_wizard.py b/test/test_aportgen_device_wizard.py index e2d0f716..fe7e5199 100644 --- a/test/test_aportgen_device_wizard.py +++ b/test/test_aportgen_device_wizard.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import pytest diff --git a/test/test_bootimg.py b/test/test_bootimg.py index 5081232d..7425111a 100644 --- a/test/test_bootimg.py +++ b/test/test_bootimg.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import sys import pytest diff --git a/test/test_build_is_necessary.py b/test/test_build_is_necessary.py index 05500500..89512b95 100644 --- a/test/test_build_is_necessary.py +++ b/test/test_build_is_necessary.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import sys diff --git a/test/test_build_package.py b/test/test_build_package.py index 516c7596..b90c3946 100644 --- a/test/test_build_package.py +++ b/test/test_build_package.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Tests all functions from pmb.build._package """ import datetime diff --git a/test/test_chroot_interactive_shell.py b/test/test_chroot_interactive_shell.py index 584f4ac4..d5c50790 100644 --- a/test/test_chroot_interactive_shell.py +++ b/test/test_chroot_interactive_shell.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import subprocess import os diff --git a/test/test_config_init.py b/test/test_config_init.py index b7aa395b..fdbc5e3d 100644 --- a/test/test_config_init.py +++ b/test/test_config_init.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pytest diff --git a/test/test_config_pmaports.py b/test/test_config_pmaports.py index 057966f0..15d0b6cf 100644 --- a/test/test_config_pmaports.py +++ b/test/test_config_pmaports.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Test pmb/config/pmaports.py """ import pytest diff --git a/test/test_config_user.py b/test/test_config_user.py index 6ec44b37..d11899ac 100644 --- a/test/test_config_user.py +++ b/test/test_config_user.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import sys import pytest diff --git a/test/test_config_workdir.py b/test/test_config_workdir.py index b9c86308..b01b8f9b 100644 --- a/test/test_config_workdir.py +++ b/test/test_config_workdir.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Test pmb/config/workdir.py """ import os diff --git a/test/test_cross_compile_distcc.py b/test/test_cross_compile_distcc.py index e91584e8..737cbe28 100644 --- a/test/test_cross_compile_distcc.py +++ b/test/test_cross_compile_distcc.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import pytest diff --git a/test/test_crossdirect.py b/test/test_crossdirect.py index 4c1334d1..93992c0e 100644 --- a/test/test_crossdirect.py +++ b/test/test_crossdirect.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pytest import sys diff --git a/test/test_envkernel.py b/test/test_envkernel.py index ef4c79e8..ff5e15ba 100644 --- a/test/test_envkernel.py +++ b/test/test_envkernel.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import sys import pytest diff --git a/test/test_file.py b/test/test_file.py index 70b0a187..d59f1220 100644 --- a/test/test_file.py +++ b/test/test_file.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import sys diff --git a/test/test_folder_size.py b/test/test_folder_size.py index 70c28617..d68975bc 100644 --- a/test/test_folder_size.py +++ b/test/test_folder_size.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import sys import pytest diff --git a/test/test_frontend.py b/test/test_frontend.py index b5916c42..73f651fe 100644 --- a/test/test_frontend.py +++ b/test/test_frontend.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import sys import pytest diff --git a/test/test_helpers_git.py b/test/test_helpers_git.py index a3e7e48f..05a66738 100644 --- a/test/test_helpers_git.py +++ b/test/test_helpers_git.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import sys diff --git a/test/test_helpers_lint.py b/test/test_helpers_lint.py index 8c8fca19..8f110519 100644 --- a/test/test_helpers_lint.py +++ b/test/test_helpers_lint.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import pytest diff --git a/test/test_helpers_package.py b/test/test_helpers_package.py index 1f437591..f7317842 100644 --- a/test/test_helpers_package.py +++ b/test/test_helpers_package.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import sys import pytest diff --git a/test/test_helpers_pmaports.py b/test/test_helpers_pmaports.py index 11eccdfa..a22ad5c0 100644 --- a/test/test_helpers_pmaports.py +++ b/test/test_helpers_pmaports.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import pytest diff --git a/test/test_helpers_repo.py b/test/test_helpers_repo.py index 646a0b9d..1589378d 100644 --- a/test/test_helpers_repo.py +++ b/test/test_helpers_repo.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Test pmb.helpers.repo """ import pytest diff --git a/test/test_helpers_repo_missing.py b/test/test_helpers_repo_missing.py index 483a1a9f..0b457279 100644 --- a/test/test_helpers_repo_missing.py +++ b/test/test_helpers_repo_missing.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pytest import sys diff --git a/test/test_helpers_status.py b/test/test_helpers_status.py index 54fd27da..7dbd95f4 100644 --- a/test/test_helpers_status.py +++ b/test/test_helpers_status.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Test pmb/helpers/status.py """ import os diff --git a/test/test_helpers_ui.py b/test/test_helpers_ui.py index 277ff17f..f803e305 100644 --- a/test/test_helpers_ui.py +++ b/test/test_helpers_ui.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pytest import sys diff --git a/test/test_install.py b/test/test_install.py index 8b6d4b6a..7ead2670 100644 --- a/test/test_install.py +++ b/test/test_install.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pytest import sys diff --git a/test/test_kconfig_check.py b/test/test_kconfig_check.py index 91d034ff..839c2f02 100644 --- a/test/test_kconfig_check.py +++ b/test/test_kconfig_check.py @@ -1,5 +1,5 @@ -# Copyright 2022 Antoine Fontaine -# Copyright 2022 Oliver Smith +# Copyright 2023 Antoine Fontaine +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pytest import sys diff --git a/test/test_keys.py b/test/test_keys.py index addf0c23..6c4a15fa 100644 --- a/test/test_keys.py +++ b/test/test_keys.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import os import sys diff --git a/test/test_mount.py b/test/test_mount.py index 27100176..502a3473 100644 --- a/test/test_mount.py +++ b/test/test_mount.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb_test # noqa import pmb.helpers.mount diff --git a/test/test_newapkbuild.py b/test/test_newapkbuild.py index 1751a1c2..07256f91 100644 --- a/test/test_newapkbuild.py +++ b/test/test_newapkbuild.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import glob import os diff --git a/test/test_parse_apkbuild.py b/test/test_parse_apkbuild.py index f2dafb8b..d34072d5 100644 --- a/test/test_parse_apkbuild.py +++ b/test/test_parse_apkbuild.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pytest import sys diff --git a/test/test_parse_apkindex.py b/test/test_parse_apkindex.py index 7f62afe1..cb17be54 100644 --- a/test/test_parse_apkindex.py +++ b/test/test_parse_apkindex.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Test pmb.parse.apkindex """ import collections diff --git a/test/test_parse_depends.py b/test/test_parse_depends.py index 2b852f66..e13f7e64 100644 --- a/test/test_parse_depends.py +++ b/test/test_parse_depends.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Test pmb.parse.depends """ import collections diff --git a/test/test_parse_deviceinfo.py b/test/test_parse_deviceinfo.py index ead2938a..f1c3cdc2 100644 --- a/test/test_parse_deviceinfo.py +++ b/test/test_parse_deviceinfo.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pytest import sys diff --git a/test/test_pkgrel_bump.py b/test/test_pkgrel_bump.py index 8dd6d792..9fd4c735 100644 --- a/test/test_pkgrel_bump.py +++ b/test/test_pkgrel_bump.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Test pmb.helper.pkgrel_bump """ import glob diff --git a/test/test_qemu_running_processes.py b/test/test_qemu_running_processes.py index db7ddc97..6416508c 100644 --- a/test/test_qemu_running_processes.py +++ b/test/test_qemu_running_processes.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ This file runs various installations and boots into them with QEMU, then checks diff --git a/test/test_questions.py b/test/test_questions.py index 6cf3c059..30023352 100644 --- a/test/test_questions.py +++ b/test/test_questions.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import logging import os diff --git a/test/test_run_core.py b/test/test_run_core.py index c2d5b884..a4600fb8 100644 --- a/test/test_run_core.py +++ b/test/test_run_core.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later """ Test pmb.helpers.run_core """ import re diff --git a/test/test_shell_escape.py b/test/test_shell_escape.py index 61ffc649..22288d9b 100644 --- a/test/test_shell_escape.py +++ b/test/test_shell_escape.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import sys import pytest diff --git a/test/test_version.py b/test/test_version.py index 1d479db5..e09dd04e 100644 --- a/test/test_version.py +++ b/test/test_version.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import sys import pytest diff --git a/test/test_version_validate.py b/test/test_version_validate.py index db77d44d..5f5b9c6b 100644 --- a/test/test_version_validate.py +++ b/test/test_version_validate.py @@ -1,4 +1,4 @@ -# Copyright 2022 Oliver Smith +# Copyright 2023 Oliver Smith # SPDX-License-Identifier: GPL-3.0-or-later import pmb_test # noqa import pmb.parse.version