Skip to content

Commit

Permalink
Merge pull request #875 from p12tic/spdx-identifiers
Browse files Browse the repository at this point in the history
Add SPDX license identifiers to each source file
  • Loading branch information
p12tic authored Mar 8, 2024
2 parents 3d68d24 + b34f699 commit ac50340
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions podman_compose.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: GPL-2.0
# https://docs.docker.com/compose/compose-file/#service-configuration-reference
# https://docs.docker.com/samples/
# https://docs.docker.com/compose/gettingstarted/
Expand Down
2 changes: 2 additions & 0 deletions pytests/test_can_merge_build.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0

import copy
import os
import argparse
Expand Down
2 changes: 2 additions & 0 deletions pytests/test_can_merge_cmd_ent.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0

import copy
import os
import argparse
Expand Down
1 change: 1 addition & 0 deletions pytests/test_normalize_final_build.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-2.0
# pylint: disable=protected-access

import argparse
Expand Down
1 change: 1 addition & 0 deletions pytests/test_volumes.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: GPL-2.0
# pylint: disable=redefined-outer-name
import unittest

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0

import os
from setuptools import setup

Expand Down
2 changes: 2 additions & 0 deletions tests/test_podman_compose.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0

from pathlib import Path
import subprocess
import os
Expand Down
2 changes: 2 additions & 0 deletions tests/test_podman_compose_config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0

"""
test_podman_compose_config.py
Expand Down
2 changes: 2 additions & 0 deletions tests/test_podman_compose_include.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0

from pathlib import Path
import subprocess
import unittest
Expand Down
2 changes: 2 additions & 0 deletions tests/test_podman_compose_tests.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0

"""
test_podman_compose_up_down.py
Expand Down
2 changes: 2 additions & 0 deletions tests/test_podman_compose_up_down.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0

"""
test_podman_compose_up_down.py
Expand Down

0 comments on commit ac50340

Please sign in to comment.