mirror of
https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git
synced 2025-07-12 19:09:56 +03:00
docs, pmb: Add missing copyright headers (MR 2516)
I tried my best to get the right author based on git commit history, but in the case of code being moved from one file to make another I might have gotten something wrong.
This commit is contained in:
parent
7f7af62697
commit
871a3128d8
18 changed files with 54 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Robert Eckelmann
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# Configuration file for the Sphinx documentation builder.
|
||||
#
|
||||
# For the full list of built-in configuration values, see the documentation:
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from pmb.types import Bootimg
|
||||
import pytest
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import enum
|
||||
from pathlib import Path
|
||||
from pmb.core.pkgrepo import pkgrepo_name, pkgrepo_paths
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
import pytest
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import pmb.config
|
||||
from pmb.core.config import SystemdConfig
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import os
|
||||
from pathlib import Path
|
||||
import pytest
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from copy import deepcopy
|
||||
import enum
|
||||
import multiprocessing
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import os
|
||||
import glob
|
||||
from pathlib import Path
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import os
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import pytest
|
||||
|
||||
from .arch import Arch
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import pytest
|
||||
|
||||
import pmb.helpers.git
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2017 Oliver Smith
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from pmb.core.context import get_context
|
||||
from pmb.helpers import logging
|
||||
import os
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Anri Dellal
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from pmb.helpers import logging
|
||||
|
||||
"""
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Anri Dellal
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from pmb.helpers.locale import XkbLayout, get_xkb_layout
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from . import Cache, Wrapper
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from pathlib import Path
|
||||
from pmb.core.arch import Arch
|
||||
import pytest
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from pathlib import Path
|
||||
from collections.abc import Callable
|
||||
import pytest
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# Copyright 2024 Caleb Connolly
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from pathlib import Path
|
||||
from .deviceinfo import Deviceinfo
|
||||
from pmb.config import deviceinfo_chassis_types
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue