Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
Align SPDX header for Python files
Browse files Browse the repository at this point in the history
Adding copyright and SPDX to all *.py files
  • Loading branch information
erikbosch authored and SebastianSchildt committed May 11, 2023
1 parent 7046c2c commit b5c183f
Show file tree
Hide file tree
Showing 9 changed files with 104 additions and 2 deletions.
15 changes: 15 additions & 0 deletions csv_provider/provider.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
#! /usr/bin/env python3

########################################################################
# Copyright (c) 2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
########################################################################

import asyncio
import csv
import argparse
Expand Down
12 changes: 12 additions & 0 deletions dbc2val/dbcfeederlib/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
########################################################################
# Copyright (c) 2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
########################################################################
12 changes: 12 additions & 0 deletions dbc2val/test/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
########################################################################
# Copyright (c) 2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
########################################################################
15 changes: 15 additions & 0 deletions dds2val/ddsprovider.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
#! /usr/bin/env python3

########################################################################
# Copyright (c) 2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
########################################################################

import logging
import os
import signal
Expand Down
12 changes: 12 additions & 0 deletions dds2val/ddsproviderlib/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
########################################################################
# Copyright (c) 2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
########################################################################
13 changes: 12 additions & 1 deletion dds2val/ddsproviderlib/idls/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# Copyright (c) 2022 Robert Bosch GmbH
########################################################################
# Copyright (c) 2022 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
########################################################################

from setuptools import setup

Expand Down
13 changes: 13 additions & 0 deletions dds2val/ddsproviderlib/idls/vss/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
########################################################################
# Copyright (c) 2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
########################################################################

import setuptools
from setuptools import find_packages

Expand Down
12 changes: 12 additions & 0 deletions dds2val/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
########################################################################
# Copyright (c) 2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
########################################################################
2 changes: 1 addition & 1 deletion gps2val/gpsd_feeder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3

########################################################################
# Copyright (c) 2020-2023 Contributors to the Eclipse Foundation
Expand Down

0 comments on commit b5c183f

Please sign in to comment.