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

Align SPDX header for Python files #100

Merged
merged 1 commit into from
May 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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