From f243bd7d43aea14993d8664f0e25d95d9cb51705 Mon Sep 17 00:00:00 2001 From: Tristan McGinnis Date: Tue, 18 Feb 2025 13:02:46 -0600 Subject: [PATCH] Removed headless_pkg --- src/headless_pkg/headless_pkg/__init__.py | 0 src/headless_pkg/package.xml | 21 ------------------ src/headless_pkg/resource/headless_pkg | 0 src/headless_pkg/setup.cfg | 4 ---- src/headless_pkg/setup.py | 26 ----------------------- src/headless_pkg/test/test_copyright.py | 25 ---------------------- src/headless_pkg/test/test_flake8.py | 25 ---------------------- src/headless_pkg/test/test_pep257.py | 23 -------------------- 8 files changed, 124 deletions(-) delete mode 100644 src/headless_pkg/headless_pkg/__init__.py delete mode 100644 src/headless_pkg/package.xml delete mode 100644 src/headless_pkg/resource/headless_pkg delete mode 100644 src/headless_pkg/setup.cfg delete mode 100644 src/headless_pkg/setup.py delete mode 100644 src/headless_pkg/test/test_copyright.py delete mode 100644 src/headless_pkg/test/test_flake8.py delete mode 100644 src/headless_pkg/test/test_pep257.py diff --git a/src/headless_pkg/headless_pkg/__init__.py b/src/headless_pkg/headless_pkg/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/headless_pkg/package.xml b/src/headless_pkg/package.xml deleted file mode 100644 index 615e36b..0000000 --- a/src/headless_pkg/package.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - headless_pkg - 1.0.0 - Package used for headless rover control with a controller - tristan - All Rights Reserved - - rclpy - ros2_interfaces_pkg - - ament_copyright - ament_flake8 - ament_pep257 - python3-pytest - - - ament_python - - diff --git a/src/headless_pkg/resource/headless_pkg b/src/headless_pkg/resource/headless_pkg deleted file mode 100644 index e69de29..0000000 diff --git a/src/headless_pkg/setup.cfg b/src/headless_pkg/setup.cfg deleted file mode 100644 index b9bc220..0000000 --- a/src/headless_pkg/setup.cfg +++ /dev/null @@ -1,4 +0,0 @@ -[develop] -script_dir=$base/lib/headless_pkg -[install] -install_scripts=$base/lib/headless_pkg diff --git a/src/headless_pkg/setup.py b/src/headless_pkg/setup.py deleted file mode 100644 index 8ec70e0..0000000 --- a/src/headless_pkg/setup.py +++ /dev/null @@ -1,26 +0,0 @@ -from setuptools import find_packages, setup - -package_name = 'headless_pkg' - -setup( - name=package_name, - version='0.0.0', - packages=find_packages(exclude=['test']), - data_files=[ - ('share/ament_index/resource_index/packages', - ['resource/' + package_name]), - ('share/' + package_name, ['package.xml']), - ], - install_requires=['setuptools'], - zip_safe=True, - maintainer='tristan', - maintainer_email='tristanmcginnis26@gmail.com', - description='Package used for headless rover control with a controller', - license='All Rights Reserved', - tests_require=['pytest'], - entry_points={ - 'console_scripts': [ - 'headless = headless_pkg.headless_ctrl_node:main' - ], - }, -) diff --git a/src/headless_pkg/test/test_copyright.py b/src/headless_pkg/test/test_copyright.py deleted file mode 100644 index 97a3919..0000000 --- a/src/headless_pkg/test/test_copyright.py +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2015 Open Source Robotics Foundation, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from ament_copyright.main import main -import pytest - - -# Remove the `skip` decorator once the source file(s) have a copyright header -@pytest.mark.skip(reason='No copyright header has been placed in the generated source file.') -@pytest.mark.copyright -@pytest.mark.linter -def test_copyright(): - rc = main(argv=['.', 'test']) - assert rc == 0, 'Found errors' diff --git a/src/headless_pkg/test/test_flake8.py b/src/headless_pkg/test/test_flake8.py deleted file mode 100644 index 27ee107..0000000 --- a/src/headless_pkg/test/test_flake8.py +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2017 Open Source Robotics Foundation, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from ament_flake8.main import main_with_errors -import pytest - - -@pytest.mark.flake8 -@pytest.mark.linter -def test_flake8(): - rc, errors = main_with_errors(argv=[]) - assert rc == 0, \ - 'Found %d code style errors / warnings:\n' % len(errors) + \ - '\n'.join(errors) diff --git a/src/headless_pkg/test/test_pep257.py b/src/headless_pkg/test/test_pep257.py deleted file mode 100644 index b234a38..0000000 --- a/src/headless_pkg/test/test_pep257.py +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 2015 Open Source Robotics Foundation, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from ament_pep257.main import main -import pytest - - -@pytest.mark.linter -@pytest.mark.pep257 -def test_pep257(): - rc = main(argv=['.', 'test']) - assert rc == 0, 'Found code style errors / warnings'