Package Summary

Tags No category tags.
Version 0.12.10
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/ament_lint.git
VCS Type git
VCS Version humble
Last Updated 2024-01-24
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The ability to check source files for copyright and license information.

Additional Links

No additional links.

Maintainers

  • Michael Jeronimo
  • Michel Hidalgo

Authors

  • Audrow Nash
  • Claire Wang
  • Dirk Thomas
README
No README found. No README in repository either.
CHANGELOG

Changelog for package ament_copyright

0.12.10 (2024-01-24)

0.12.9 (2023-11-13)

0.12.8 (2023-09-19)

0.12.7 (2023-07-17)

0.12.6 (2023-04-25)

0.12.5 (2023-01-12)

0.12.4 (2022-05-09)

0.12.3 (2022-04-08)

  • Fix importlib_metadata warning on Python 3.10. (#365)
  • Contributors: Chris Lalancette

0.12.2 (2022-03-28)

0.12.1 (2022-03-01)

0.12.0 (2022-02-18)

0.11.4 (2022-01-14)

  • Update forthcoming version in changelogs
  • Contributors: Audrow Nash

0.11.3 (2022-01-14)

  • Update maintainers to Michael Jeronimo and Michel Hidalgo (#340)
  • [ament_copyright] Fix file exclusion behavior (#327) * [ament_copyright] Fix file exclusion behavior This commit fixes the faulty file exclusion behavior reported in https://github.com/ament/ament_lint/issues/326. Specifically, the exclusion list is matched against traversed files in the [crawler]{.title-ref} module. Changes inspired by https://github.com/ament/ament_lint/pull/299/. * Update excluded file path in copyright tests Since file names are not indiscriminately matched throughout the search tree anymore, the excluded files listed in the copyright tests need to be updated relative to the root of the package. * Add test cases to check exclusion behavior Specifically, these tests check for:

    • Incorrect exclusion of single filenames.
    • Correct exclusion of relatively/absolutely addressed filenames.
    • Correct exclusion of wildcarded paths.

    * Add unit tests for crawler module These unit tests make sure both search and exclusion behaviors are correctly demonstrated by the [ament_copyright.crawler]{.title-ref} module.

  • Contributors: Abrar Rahman Protyasha, Audrow Nash

0.11.2 (2021-06-18)

0.11.1 (2021-06-18)

0.11.0 (2021-06-18)

  • Add SPDX identifiers to the licenses. (#315)
  • Contributors: Chris Lalancette

0.10.6 (2021-05-06)

0.10.5 (2021-04-14)

  • Remove Claire as a maintainer. (#312)
    • Remove Claire as a maintainer.
    • Remove dead email addresses.
    • Remove more dead email addresses.
    • Switch setup.py maintainer to Audrow.
  • Contributors: Chris Lalancette

0.10.4 (2021-03-18)

  • Use non-blind except for open() (#307)
  • Add optional file header style (#304)
    • Add optional file header style
    • Fix test on ament_copyright
  • Contributors: Alfi Maulana, Christophe Bedard

0.10.3 (2021-03-03)

  • 0.10.3
  • Contributors: Audrow Nash

0.10.2 (2021-02-12)

  • Add Audrow as a maintainer (#294)
  • Drop trailing tab from package manifests (#291) Follow-up to 8bf194aa1ac282db5483dd0d3fefff8f325b0db8
  • Contributors: Audrow Nash, Scott K Logan

0.10.1 (2021-01-25)

  • add mit-0 as a valid license to ament_copyright (#284)
  • Support Python 3.8-provided importlib.metadata (#290) The importlib_metadata package is a backport of the importlib.metadata module from Python 3.8. Fedora (and possibly others) no longer package importlib_metadata because they ship Python versions which have the functionality built-in.
  • Update maintainer (#274)
    • update maintainer
    • add authors
  • Contributors: Claire Wang, M. Mei, Scott K Logan

0.10.0 (2020-09-18)

  • added bsd 2 clause simplified license to ament_copyright (#267)
    • added bsd 2 clause simplified license to ament_copyright
  • Remove use of pkg_resources from ament_lint. (#260) Replace it with the use of the more modern importlib_metadata library. There are a couple of reasons to do this: 1. pkg_resources is quite slow to import; on my machine, just firing up the python interpreter takes ~35ms, while firing up the python interpreter and importing pkg_resources takes ~175ms. Firing up the python interpreter and importing importlib_metadata takes ~70ms. Removing 100ms per invocation of the command-line both makes it speedier for users, and will speed up our tests (which call out to the command-line quite a lot). 2. pkg_resources is somewhat deprecated and being replaced by importlib. https://importlib-metadata.readthedocs.io/en/latest/using.html describes some of it Note: By itself, this change is not enough to completely remove our dependence on pkg_resources. We\'ll also have to do something about the console_scripts that setup.py generates. That will be a separate effort.

  • Add pytest.ini so local tests don\'t display warning. (#259)

  • Contributors: Chris Lalancette, Evan Flynn

0.9.4 (2020-05-26)

0.9.3 (2020-05-18)

  • Remove output on stderr for case that is not an error (#248)
    • Remove output on stderr for case that is not an error
    • Remove early return to generate xml result file
  • Contributors: Jorge Perez

0.9.2 (2020-05-08)

  • Allow AMENT_IGNORE markers to be directories (#232)
  • Contributors: Dan Rose

0.9.1 (2020-04-10)

  • 0.9.0
  • more verbose test_flake8 error messages (same as ros2/launch_ros#135)
  • Generate xunit files valid for the junit10.xsd (#220)
  • remove status attribute from result XML (#212)
  • Add test case for Apache 2 (#208)
  • Add support for Boost Software License in ament_copyright package (#207)
    • Add support for the Boost Software License v1
    • Add tests for boost1 license
  • Add support for the 3-Clause BSD license (#205)
    • Add support for the 3-Clause BSD license
    • Add missing entry setup.py file for the added license
    • Add test cases for .cpp and .py files
    • Add a newline to increase readability
    • Fix missing addition needed to use 3-clause bsd tests
    • Remove line not usable
  • Fix bug, allows using ament_copyright with bsd3 (#206) * Fix bug, allows using ament_copyright with bsd3 In the bs2 headers, exists a \"{copyright_holder}\" text that causes a problem when using the command ament_copyright to add headers to a source file. This fix adds a default value for that key, to match the original 3-Clause BSD text, and allowing to use the tool.

    • Add copyright_name if template includes copyright_holder reference
    • Revert comma addition
  • Contributors: Chris Lalancette, Dirk Thomas, Jacob Perron, Jorge Perez, Jose Luis Rivero

0.8.1 (2019-10-23)

  • install resource marker file for packages (#193)
  • Contributors: Dirk Thomas

0.8.0 (2019-09-17)

  • install manifest files in Python packages (#185)
  • Convert list comprehension to generator (#179) Addresses flake8 C412 errors introduced by flake8-comprehension 2.2.0
  • Contributors: Dirk Thomas, Scott K Logan

0.7.4 (2019-07-31)

  • declare pytest markers (#164)
    • declare pytest markers
    • add markers to ament_xmllint tests
  • Match copyright templates with differing whitespace (#160) This change makes the template matching tolerant to more whitespace differences. In particular, it makes it tolerant in the presence of tabs, consecutive spaces (such as indentation) and EOL differences.
  • Contributors: Dirk Thomas, Scott K Logan

0.7.3 (2019-05-09 14:08)

  • handle BOM properly (#142)
  • Contributors: Dirk Thomas

0.7.2 (2019-05-09 09:30)

0.7.1 (2019-05-07)

  • fix encoding of copyright result file (#139)
  • use explicit encoding when reading files (#138)
  • update phrase of status messages (#137)
  • Contributors: Dirk Thomas

0.7.0 (2019-04-11)

  • Adding GPL (and LGPL) (#126) Tested with: ros2 pkg create foobargpl --license GPLv3 --cpp-library-name foobargpl ament_copyright ./foobargpl/ foobargpl/include/foobargpl/foobargpl.hpp: could not find copyright notice foobargpl/include/foobargpl/visibility_control.h: could not find copyright notice foobargpl/src/foobargpl.cpp: could not find copyright notice 3 errors, checked 3 files Manually copied header to [foobargpl/include/foobargpl/foobargpl.hpp]{.title-ref}. foobargpl/include/foobargpl/visibility_control.h: could not find copyright notice foobargpl/src/foobargpl.cpp: could not find copyright notice 2 errors, checked 3 files ament_copyright ./foobargpl/ --add-missing \"Copyright 2019, FooBar, Ltd.\" gplv3 ament_copyright ./foobargpl/ No errors, checked 3 files
  • Contributors: Joshua Whitley

0.6.3 (2019-01-14)

0.6.2 (2018-12-06)

0.6.1 (2018-11-15)

0.6.0 (2018-11-14)

  • Fix lint warnings from invalid escape sequences (#111) Use raw strings for regex patterns to avoid warnings.
  • Extend copyright checker to allow for doxygen-style copyright (#108)
  • Bsd clause3 fixup (#106)
    • relax clause 3 matching by removing \'the\' in front og the copyright holding entity
    • copyright holder doesn\'t have to be a company
  • Adding MIT license templates. (#105)
    • Adding MIT license templates.
    • Ommitting \'All Rights Reserved\' not in actual license.
  • Contributors: Jacob Perron, Joshua Whitley, Mikael Arguedas, jpsamper2009

0.5.2 (2018-06-27)

0.5.1 (2018-06-18 13:47)

  • level setup.py versions to 0.5.1
  • Contributors: Mikael Arguedas

0.5.0 (2018-06-18 10:09)

  • add pytest markers to linter tests
  • fix flake8 warning (#99)
  • Avoid use of builtin \'license\' as variable name (#97)
  • set zip_safe to avoid warning during installation (#96)
  • Contributors: Dirk Thomas, dhood

0.4.0 (2017-12-08)

  • remove test_suite, add pytest as test_requires
  • 0.0.3
  • Merge pull request #84 from ament/flake8_plugins update style to satisfy new flake8 plugins
  • update style to satisfy new flake8 plugins
  • implicitly inherit from object (only in files not copied from somewhe... (#83)
    • implicitly inherit from object (only in files not copied from somewhere else)
    • don\'t modify file copied from elsewhere
  • Merge pull request #81 from ament/ignore_build_spaces ignore folders with an AMENT_IGNORE file, e.g. build spaces
  • ignore folders with an AMENT_IGNORE file, e.g. build spaces
  • 0.0.2
  • use OSI website as reference for license (#80)
  • Merge pull request #78 from ament/use_flake8 use flake8 instead of pep8 and pyflakes
  • use flake8 instead of pep8 and pyflakes
  • Add in support for the BSD2 license. This allows ament_copyright to properly support the BSD2 license when doing copyright checking.
  • Change the copyright regex to allow a (c) after the \"Copyright\" word. This is what is recommended by the BSD license.
  • Change the copyright regex to allow a comma after the year(s).
  • remove __future_ imports
  • Merge pull request #66 from ament/multiple_copyrights support multiple copyright lines
  • support multiple copyright lines
  • update schema url
  • add schema to manifest files
  • Merge pull request #42 from ament/remove_second_extension remove result type extension from testsuite name
  • remove result type extension from testsuite name
  • Merge pull request #28 from ament/pep257 add packages to check pep257 compliance
  • use ament_pep257
  • remove debug output
  • apply normpath to prevent \'./\' prefix (fix #24)
  • Merge pull request #19 from ament/split_linter_packages_in_python_and_cmake split linter packages in python and cmake
  • make use of python linter packages
  • support excluding filenames from copyright, pep8, pyflakes check
  • fix variable name
  • Merge pull request #15 from ament/ament_copyright_reloaded add support for licenses
  • update doc
  • move apache2 snippets into separate files
  • add support for licenses
  • add trailing newline to generated test result files
  • Merge pull request #9 from ament/docs add docs for linters
  • add docs for linters
  • Merge pull request #8 from ament/ament_copyright add more options to ament_copyright
  • also handle rn newline
  • remove python3 dependencies
  • update url
  • update package description
  • add more options to ament_copyright
  • modify generated unit test files for a better hierarchy in Jenkins
  • make testname argument optional for all linters
  • use other linters for the linter packages where possible
  • Merge pull request #3 from ament/copyright_headers adding copyright headers, which are failing this module
  • adding copyright headers, which are failing this module
  • run ament_copyright and ament_pyflakes with Python 3
  • Merge pull request #2 from ament/ament_lint_auto allow linting based on test dependencies only
  • add ament_lint_auto and ament_lint_common, update all linter packages to implement extension point of ament_lint_auto
  • use project(.. NONE)
  • update to latest refactoring of ament_cmake
  • add dependency on ament_cmake_environment
  • add ament_copyright
  • Contributors: Chris Lalancette, Dirk Thomas, Mikael Arguedas, Tully Foote

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
bondpy github-ros-bond_core
flexbe_core github-flexbe-flexbe_behavior_engine
flexbe_input github-flexbe-flexbe_behavior_engine
flexbe_mirror github-flexbe-flexbe_behavior_engine
flexbe_onboard github-flexbe-flexbe_behavior_engine
flexbe_states github-flexbe-flexbe_behavior_engine
flexbe_testing github-flexbe-flexbe_behavior_engine
flexbe_widget github-flexbe-flexbe_behavior_engine
flexbe_app github-flexbe-flexbe_app
examples_tf2_py github-ros2-geometry2
turtle_tf2_py github-ros-geometry_tutorials
camera_calibration github-ros-perception-image_pipeline
joint_state_publisher github-ros-joint_state_publisher
swri_cli_tools github-swri-robotics-marti_common
rc_reason_clients github-roboception-rc_reason_clients_ros2
robot_upstart github-clearpathrobotics-robot_upstart
rclpy_message_converter github-DFKI-NI-rospy_message_converter
rqt_reconfigure github-ros-visualization-rqt_reconfigure
rqt_runtime_monitor github-ros-visualization-rqt_runtime_monitor
rtabmap_python github-introlab-rtabmap_ros
joy_teleop github-ros-teleop-teleop_tools
key_teleop github-ros-teleop-teleop_tools
mouse_teleop github-ros-teleop-teleop_tools
teleop_twist_keyboard github-ros2-teleop_twist_keyboard
wireless_watcher github-clearpathrobotics-wireless
domain_coordinator github-ros2-ament_cmake_ros
ament_index_python github-ament-ament_index
ament_clang_format github-ament-ament_lint
ament_clang_tidy github-ament-ament_lint
ament_cmake_copyright github-ament-ament_lint
ament_cpplint github-ament-ament_lint
ament_lint_cmake github-ament-ament_lint
ament_pclint github-ament-ament_lint
ament_uncrustify github-ament-ament_lint
ament_xmllint github-ament-ament_lint
bno055 github-flynneva-bno055
sensor_msgs_py github-ros2-common_interfaces
demo_nodes_py github-ros2-demos
quality_of_service_demo_py github-ros2-demos
launch_testing_examples github-ros2-examples
examples_rclpy_minimal_action_client github-ros2-examples
examples_rclpy_minimal_action_server github-ros2-examples
examples_rclpy_executors github-ros2-examples
examples_rclpy_guard_conditions github-ros2-examples
examples_rclpy_minimal_client github-ros2-examples
examples_rclpy_minimal_service github-ros2-examples
examples_rclpy_minimal_publisher github-ros2-examples
examples_rclpy_minimal_subscriber github-ros2-examples
examples_rclpy_pointcloud_publisher github-ros2-examples
game_controller_spl github-ros-sports-gc_spl
gc_spl github-ros-sports-gc_spl
gc_spl_2022 github-ros-sports-gc_spl
rcgcd_spl_14_conversion github-ros-sports-gc_spl
rcgcrd_spl_4_conversion github-ros-sports-gc_spl
grbl_ros github-flynneva-grbl_ros
joy_tester github-joshnewans-joy_tester
launch github-ros2-launch
launch_pytest github-ros2-launch
launch_testing github-ros2-launch
launch_xml github-ros2-launch
launch_yaml github-ros2-launch
launch_pal github-pal-robotics-launch_pal
launch_param_builder github-PickNikRobotics-launch_param_builder
launch_ros github-ros2-launch_ros
launch_testing_ros github-ros2-launch_ros
ros2launch github-ros2-launch_ros
test_launch_ros github-ros2-launch_ros
nav2_simple_commander github-ros-planning-navigation2
performance_report gitlab-ApexAI-performance_test
picknik_ament_copyright github-PickNikRobotics-picknik_ament_copyright
r2r_spl github-ros-sports-r2r_spl
r2r_spl_7 github-ros-sports-r2r_spl
r2r_spl_8 github-ros-sports-r2r_spl
splsm_7_conversion github-ros-sports-r2r_spl
splsm_8_conversion github-ros-sports-r2r_spl
rmf_demos_fleet_adapter github-open-rmf-rmf_demos
rmf_demos_tasks github-open-rmf-rmf_demos
rmf_visualization_building_systems github-open-rmf-rmf_visualization
ros2controlcli github-ros-controls-ros2_control
ros2trace github-ros2-ros2_tracing
test_tracetools_launch github-ros2-ros2_tracing
tracetools_launch github-ros2-ros2_tracing
tracetools_read github-ros2-ros2_tracing
tracetools_test github-ros2-ros2_tracing
tracetools_trace github-ros2-ros2_tracing
ros2action github-ros2-ros2cli
ros2cli github-ros2-ros2cli
ros2component github-ros2-ros2cli
ros2doctor github-ros2-ros2cli
ros2interface github-ros2-ros2cli
ros2lifecycle github-ros2-ros2cli
ros2multicast github-ros2-ros2cli
ros2node github-ros2-ros2cli
ros2param github-ros2-ros2cli
ros2pkg github-ros2-ros2cli
ros2run github-ros2-ros2cli
ros2service github-ros2-ros2cli
ros2topic github-ros2-ros2cli
ros2test github-ros2-ros_testing
ros2bag github-ros2-rosbag2
rosidl_cli github-ros2-rosidl
rosidl_runtime_py github-ros2-rosidl_runtime_py
rpyutils github-ros2-rpyutils
sros2 github-ros2-sros2
launch_system_modes github-micro-ROS-system_modes
ros2trace_analysis gitlab-ros-tracing-tracetools_analysis
tracetools_analysis gitlab-ros-tracing-tracetools_analysis
twist_stamper github-joshnewans-twist_stamper
webots_ros2 github-cyberbotics-webots_ros2
webots_ros2_epuck github-cyberbotics-webots_ros2
webots_ros2_importer github-cyberbotics-webots_ros2
webots_ros2_mavic github-cyberbotics-webots_ros2
webots_ros2_tesla github-cyberbotics-webots_ros2
webots_ros2_tests github-cyberbotics-webots_ros2
webots_ros2_tiago github-cyberbotics-webots_ros2
webots_ros2_turtlebot github-cyberbotics-webots_ros2
webots_ros2_universal_robot github-cyberbotics-webots_ros2
ament_black github-botsandus-ament_black
nao_button_sim github-ijnek-nao_button_sim
neo_simulation2 github-neobotix-neo_simulation2
nodl_to_policy github-osrf-nodl_to_policy
ros2launch_security github-osrf-ros2launch_security
turtlebot4_diagnostics github-turtlebot-turtlebot4_robot
turtlebot4_tests github-turtlebot-turtlebot4_robot
turtlebot4_openai_tutorials github-turtlebot-turtlebot4_tutorials
turtlebot4_python_tutorials github-turtlebot-turtlebot4_tutorials
generate_parameter_module_example github-PickNikRobotics-generate_parameter_library
generate_parameter_library_py github-PickNikRobotics-generate_parameter_library
ros2acceleration github-ros-acceleration-ros2acceleration
aandd_ekew_driver_py github-TechMagicKK-aandd_ekew_driver_py
as2_python_api github-aerostack2-aerostack2
as2_gazebo_assets github-aerostack2-aerostack2
as2_keyboard_teleoperation github-aerostack2-aerostack2
caret_analyze github-tier4-caret_analyze
clearpath_config github-clearpathrobotics-clearpath_config
fogros2 github-BerkeleyAutomation-FogROS2
fogros2_examples github-BerkeleyAutomation-FogROS2
ros2caret github-tier4-ros2caret

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ament_copyright at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.14.3
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/ament_lint.git
VCS Type git
VCS Version iron
Last Updated 2024-02-07
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The ability to check source files for copyright and license information.

Additional Links

No additional links.

Maintainers

  • Michael Jeronimo

Authors

  • Audrow Nash
  • Brandon Ong
  • Claire Wang
  • Dirk Thomas
  • Michel Hidalgo
README
No README found. No README in repository either.
CHANGELOG

Changelog for package ament_copyright

0.14.3 (2024-02-07)

0.14.2 (2023-09-08)

0.14.1 (2023-04-11)

0.14.0 (2023-02-14)

  • [rolling] Update maintainers - 2022-11-07 (#421)
  • Contributors: Audrow Nash

0.13.2 (2022-09-13)

  • Support for matching license header within multiline comment block (#361)
  • Improved licencse matching (#358)
  • Updated regex and adding test cases for copyright search (#363)
  • Update maintainers (#379)
  • Contributors: Will, methylDragon

0.13.1 (2022-05-09)

0.13.0 (2022-04-29)

0.12.3 (2022-04-08)

  • Fix importlib_metadata warning on Python 3.10. (#365)
  • Contributors: Chris Lalancette

0.12.2 (2022-03-28)

0.12.1 (2022-03-01)

0.12.0 (2022-02-18)

0.11.4 (2022-01-14)

  • Update forthcoming version in changelogs
  • Contributors: Audrow Nash

0.11.3 (2022-01-14)

  • Update maintainers to Michael Jeronimo and Michel Hidalgo (#340)
  • [ament_copyright] Fix file exclusion behavior (#327) * [ament_copyright] Fix file exclusion behavior This commit fixes the faulty file exclusion behavior reported in https://github.com/ament/ament_lint/issues/326. Specifically, the exclusion list is matched against traversed files in the [crawler]{.title-ref} module. Changes inspired by https://github.com/ament/ament_lint/pull/299/. * Update excluded file path in copyright tests Since file names are not indiscriminately matched throughout the search tree anymore, the excluded files listed in the copyright tests need to be updated relative to the root of the package. * Add test cases to check exclusion behavior Specifically, these tests check for:

    • Incorrect exclusion of single filenames.
    • Correct exclusion of relatively/absolutely addressed filenames.
    • Correct exclusion of wildcarded paths.

    * Add unit tests for crawler module These unit tests make sure both search and exclusion behaviors are correctly demonstrated by the [ament_copyright.crawler]{.title-ref} module.

  • Contributors: Abrar Rahman Protyasha, Audrow Nash

0.11.2 (2021-06-18)

0.11.1 (2021-06-18)

0.11.0 (2021-06-18)

  • Add SPDX identifiers to the licenses. (#315)
  • Contributors: Chris Lalancette

0.10.6 (2021-05-06)

0.10.5 (2021-04-14)

  • Remove Claire as a maintainer. (#312)
    • Remove Claire as a maintainer.
    • Remove dead email addresses.
    • Remove more dead email addresses.
    • Switch setup.py maintainer to Audrow.
  • Contributors: Chris Lalancette

0.10.4 (2021-03-18)

  • Use non-blind except for open() (#307)
  • Add optional file header style (#304)
    • Add optional file header style
    • Fix test on ament_copyright
  • Contributors: Alfi Maulana, Christophe Bedard

0.10.3 (2021-03-03)

  • 0.10.3
  • Contributors: Audrow Nash

0.10.2 (2021-02-12)

  • Add Audrow as a maintainer (#294)
  • Drop trailing tab from package manifests (#291) Follow-up to 8bf194aa1ac282db5483dd0d3fefff8f325b0db8
  • Contributors: Audrow Nash, Scott K Logan

0.10.1 (2021-01-25)

  • add mit-0 as a valid license to ament_copyright (#284)
  • Support Python 3.8-provided importlib.metadata (#290) The importlib_metadata package is a backport of the importlib.metadata module from Python 3.8. Fedora (and possibly others) no longer package importlib_metadata because they ship Python versions which have the functionality built-in.
  • Update maintainer (#274)
    • update maintainer
    • add authors
  • Contributors: Claire Wang, M. Mei, Scott K Logan

0.10.0 (2020-09-18)

  • added bsd 2 clause simplified license to ament_copyright (#267)
    • added bsd 2 clause simplified license to ament_copyright
  • Remove use of pkg_resources from ament_lint. (#260) Replace it with the use of the more modern importlib_metadata library. There are a couple of reasons to do this: 1. pkg_resources is quite slow to import; on my machine, just firing up the python interpreter takes ~35ms, while firing up the python interpreter and importing pkg_resources takes ~175ms. Firing up the python interpreter and importing importlib_metadata takes ~70ms. Removing 100ms per invocation of the command-line both makes it speedier for users, and will speed up our tests (which call out to the command-line quite a lot). 2. pkg_resources is somewhat deprecated and being replaced by importlib. https://importlib-metadata.readthedocs.io/en/latest/using.html describes some of it Note: By itself, this change is not enough to completely remove our dependence on pkg_resources. We\'ll also have to do something about the console_scripts that setup.py generates. That will be a separate effort.

  • Add pytest.ini so local tests don\'t display warning. (#259)

  • Contributors: Chris Lalancette, Evan Flynn

0.9.4 (2020-05-26)

0.9.3 (2020-05-18)

  • Remove output on stderr for case that is not an error (#248)
    • Remove output on stderr for case that is not an error
    • Remove early return to generate xml result file
  • Contributors: Jorge Perez

0.9.2 (2020-05-08)

  • Allow AMENT_IGNORE markers to be directories (#232)
  • Contributors: Dan Rose

0.9.1 (2020-04-10)

  • 0.9.0
  • more verbose test_flake8 error messages (same as ros2/launch_ros#135)
  • Generate xunit files valid for the junit10.xsd (#220)
  • remove status attribute from result XML (#212)
  • Add test case for Apache 2 (#208)
  • Add support for Boost Software License in ament_copyright package (#207)
    • Add support for the Boost Software License v1
    • Add tests for boost1 license
  • Add support for the 3-Clause BSD license (#205)
    • Add support for the 3-Clause BSD license
    • Add missing entry setup.py file for the added license
    • Add test cases for .cpp and .py files
    • Add a newline to increase readability
    • Fix missing addition needed to use 3-clause bsd tests
    • Remove line not usable
  • Fix bug, allows using ament_copyright with bsd3 (#206) * Fix bug, allows using ament_copyright with bsd3 In the bs2 headers, exists a \"{copyright_holder}\" text that causes a problem when using the command ament_copyright to add headers to a source file. This fix adds a default value for that key, to match the original 3-Clause BSD text, and allowing to use the tool.

    • Add copyright_name if template includes copyright_holder reference
    • Revert comma addition
  • Contributors: Chris Lalancette, Dirk Thomas, Jacob Perron, Jorge Perez, Jose Luis Rivero

0.8.1 (2019-10-23)

  • install resource marker file for packages (#193)
  • Contributors: Dirk Thomas

0.8.0 (2019-09-17)

  • install manifest files in Python packages (#185)
  • Convert list comprehension to generator (#179) Addresses flake8 C412 errors introduced by flake8-comprehension 2.2.0
  • Contributors: Dirk Thomas, Scott K Logan

0.7.4 (2019-07-31)

  • declare pytest markers (#164)
    • declare pytest markers
    • add markers to ament_xmllint tests
  • Match copyright templates with differing whitespace (#160) This change makes the template matching tolerant to more whitespace differences. In particular, it makes it tolerant in the presence of tabs, consecutive spaces (such as indentation) and EOL differences.
  • Contributors: Dirk Thomas, Scott K Logan

0.7.3 (2019-05-09 14:08)

  • handle BOM properly (#142)
  • Contributors: Dirk Thomas

0.7.2 (2019-05-09 09:30)

0.7.1 (2019-05-07)

  • fix encoding of copyright result file (#139)
  • use explicit encoding when reading files (#138)
  • update phrase of status messages (#137)
  • Contributors: Dirk Thomas

0.7.0 (2019-04-11)

  • Adding GPL (and LGPL) (#126) Tested with: ros2 pkg create foobargpl --license GPLv3 --cpp-library-name foobargpl ament_copyright ./foobargpl/ foobargpl/include/foobargpl/foobargpl.hpp: could not find copyright notice foobargpl/include/foobargpl/visibility_control.h: could not find copyright notice foobargpl/src/foobargpl.cpp: could not find copyright notice 3 errors, checked 3 files Manually copied header to [foobargpl/include/foobargpl/foobargpl.hpp]{.title-ref}. foobargpl/include/foobargpl/visibility_control.h: could not find copyright notice foobargpl/src/foobargpl.cpp: could not find copyright notice 2 errors, checked 3 files ament_copyright ./foobargpl/ --add-missing \"Copyright 2019, FooBar, Ltd.\" gplv3 ament_copyright ./foobargpl/ No errors, checked 3 files
  • Contributors: Joshua Whitley

0.6.3 (2019-01-14)

0.6.2 (2018-12-06)

0.6.1 (2018-11-15)

0.6.0 (2018-11-14)

  • Fix lint warnings from invalid escape sequences (#111) Use raw strings for regex patterns to avoid warnings.
  • Extend copyright checker to allow for doxygen-style copyright (#108)
  • Bsd clause3 fixup (#106)
    • relax clause 3 matching by removing \'the\' in front og the copyright holding entity
    • copyright holder doesn\'t have to be a company
  • Adding MIT license templates. (#105)
    • Adding MIT license templates.
    • Ommitting \'All Rights Reserved\' not in actual license.
  • Contributors: Jacob Perron, Joshua Whitley, Mikael Arguedas, jpsamper2009

0.5.2 (2018-06-27)

0.5.1 (2018-06-18 13:47)

  • level setup.py versions to 0.5.1
  • Contributors: Mikael Arguedas

0.5.0 (2018-06-18 10:09)

  • add pytest markers to linter tests
  • fix flake8 warning (#99)
  • Avoid use of builtin \'license\' as variable name (#97)
  • set zip_safe to avoid warning during installation (#96)
  • Contributors: Dirk Thomas, dhood

0.4.0 (2017-12-08)

  • remove test_suite, add pytest as test_requires
  • 0.0.3
  • Merge pull request #84 from ament/flake8_plugins update style to satisfy new flake8 plugins
  • update style to satisfy new flake8 plugins
  • implicitly inherit from object (only in files not copied from somewhe... (#83)
    • implicitly inherit from object (only in files not copied from somewhere else)
    • don\'t modify file copied from elsewhere
  • Merge pull request #81 from ament/ignore_build_spaces ignore folders with an AMENT_IGNORE file, e.g. build spaces
  • ignore folders with an AMENT_IGNORE file, e.g. build spaces
  • 0.0.2
  • use OSI website as reference for license (#80)
  • Merge pull request #78 from ament/use_flake8 use flake8 instead of pep8 and pyflakes
  • use flake8 instead of pep8 and pyflakes
  • Add in support for the BSD2 license. This allows ament_copyright to properly support the BSD2 license when doing copyright checking.
  • Change the copyright regex to allow a (c) after the \"Copyright\" word. This is what is recommended by the BSD license.
  • Change the copyright regex to allow a comma after the year(s).
  • remove __future_ imports
  • Merge pull request #66 from ament/multiple_copyrights support multiple copyright lines
  • support multiple copyright lines
  • update schema url
  • add schema to manifest files
  • Merge pull request #42 from ament/remove_second_extension remove result type extension from testsuite name
  • remove result type extension from testsuite name
  • Merge pull request #28 from ament/pep257 add packages to check pep257 compliance
  • use ament_pep257
  • remove debug output
  • apply normpath to prevent \'./\' prefix (fix #24)
  • Merge pull request #19 from ament/split_linter_packages_in_python_and_cmake split linter packages in python and cmake
  • make use of python linter packages
  • support excluding filenames from copyright, pep8, pyflakes check
  • fix variable name
  • Merge pull request #15 from ament/ament_copyright_reloaded add support for licenses
  • update doc
  • move apache2 snippets into separate files
  • add support for licenses
  • add trailing newline to generated test result files
  • Merge pull request #9 from ament/docs add docs for linters
  • add docs for linters
  • Merge pull request #8 from ament/ament_copyright add more options to ament_copyright
  • also handle rn newline
  • remove python3 dependencies
  • update url
  • update package description
  • add more options to ament_copyright
  • modify generated unit test files for a better hierarchy in Jenkins
  • make testname argument optional for all linters
  • use other linters for the linter packages where possible
  • Merge pull request #3 from ament/copyright_headers adding copyright headers, which are failing this module
  • adding copyright headers, which are failing this module
  • run ament_copyright and ament_pyflakes with Python 3
  • Merge pull request #2 from ament/ament_lint_auto allow linting based on test dependencies only
  • add ament_lint_auto and ament_lint_common, update all linter packages to implement extension point of ament_lint_auto
  • use project(.. NONE)
  • update to latest refactoring of ament_cmake
  • add dependency on ament_cmake_environment
  • add ament_copyright
  • Contributors: Chris Lalancette, Dirk Thomas, Mikael Arguedas, Tully Foote

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
bondpy github-ros-bond_core
flexbe_core github-flexbe-flexbe_behavior_engine
flexbe_input github-flexbe-flexbe_behavior_engine
flexbe_mirror github-flexbe-flexbe_behavior_engine
flexbe_onboard github-flexbe-flexbe_behavior_engine
flexbe_states github-flexbe-flexbe_behavior_engine
flexbe_testing github-flexbe-flexbe_behavior_engine
flexbe_widget github-flexbe-flexbe_behavior_engine
examples_tf2_py github-ros2-geometry2
turtle_tf2_py github-ros-geometry_tutorials
camera_calibration github-ros-perception-image_pipeline
joint_state_publisher github-ros-joint_state_publisher
swri_cli_tools github-swri-robotics-marti_common
rc_reason_clients github-roboception-rc_reason_clients_ros2
rclpy_message_converter github-DFKI-NI-rospy_message_converter
rqt_reconfigure github-ros-visualization-rqt_reconfigure
rqt_runtime_monitor github-ros-visualization-rqt_runtime_monitor
rtabmap_python github-introlab-rtabmap_ros
joy_teleop github-ros-teleop-teleop_tools
key_teleop github-ros-teleop-teleop_tools
mouse_teleop github-ros-teleop-teleop_tools
teleop_twist_keyboard github-ros2-teleop_twist_keyboard
domain_coordinator github-ros2-ament_cmake_ros
ament_index_python github-ament-ament_index
ament_clang_format github-ament-ament_lint
ament_clang_tidy github-ament-ament_lint
ament_cmake_copyright github-ament-ament_lint
ament_cpplint github-ament-ament_lint
ament_lint_cmake github-ament-ament_lint
ament_pclint github-ament-ament_lint
ament_uncrustify github-ament-ament_lint
ament_xmllint github-ament-ament_lint
bno055 github-flynneva-bno055
sensor_msgs_py github-ros2-common_interfaces
demo_nodes_py github-ros2-demos
quality_of_service_demo_py github-ros2-demos
launch_testing_examples github-ros2-examples
examples_rclpy_minimal_action_client github-ros2-examples
examples_rclpy_minimal_action_server github-ros2-examples
examples_rclpy_executors github-ros2-examples
examples_rclpy_guard_conditions github-ros2-examples
examples_rclpy_minimal_client github-ros2-examples
examples_rclpy_minimal_service github-ros2-examples
examples_rclpy_minimal_publisher github-ros2-examples
examples_rclpy_minimal_subscriber github-ros2-examples
examples_rclpy_pointcloud_publisher github-ros2-examples
game_controller_spl github-ros-sports-gc_spl
gc_spl github-ros-sports-gc_spl
gc_spl_2022 github-ros-sports-gc_spl
rcgcd_spl_14_conversion github-ros-sports-gc_spl
rcgcrd_spl_4_conversion github-ros-sports-gc_spl
grbl_ros github-flynneva-grbl_ros
joy_tester github-joshnewans-joy_tester
launch github-ros2-launch
launch_pytest github-ros2-launch
launch_testing github-ros2-launch
launch_xml github-ros2-launch
launch_yaml github-ros2-launch
launch_param_builder github-PickNikRobotics-launch_param_builder
launch_ros github-ros2-launch_ros
launch_testing_ros github-ros2-launch_ros
ros2launch github-ros2-launch_ros
test_launch_ros github-ros2-launch_ros
nav2_simple_commander github-ros-planning-navigation2
performance_report gitlab-ApexAI-performance_test
picknik_ament_copyright github-PickNikRobotics-picknik_ament_copyright
r2r_spl github-ros-sports-r2r_spl
r2r_spl_7 github-ros-sports-r2r_spl
r2r_spl_8 github-ros-sports-r2r_spl
splsm_7_conversion github-ros-sports-r2r_spl
splsm_8_conversion github-ros-sports-r2r_spl
rmf_demos_fleet_adapter github-open-rmf-rmf_demos
rmf_demos_tasks github-open-rmf-rmf_demos
rmf_visualization_building_systems github-open-rmf-rmf_visualization
ros2controlcli github-ros-controls-ros2_control
ros2trace github-ros2-ros2_tracing
test_ros2trace github-ros2-ros2_tracing
test_tracetools_launch github-ros2-ros2_tracing
tracetools_launch github-ros2-ros2_tracing
tracetools_read github-ros2-ros2_tracing
tracetools_test github-ros2-ros2_tracing
tracetools_trace github-ros2-ros2_tracing
ros2action github-ros2-ros2cli
ros2cli github-ros2-ros2cli
ros2component github-ros2-ros2cli
ros2doctor github-ros2-ros2cli
ros2interface github-ros2-ros2cli
ros2lifecycle github-ros2-ros2cli
ros2multicast github-ros2-ros2cli
ros2node github-ros2-ros2cli
ros2param github-ros2-ros2cli
ros2pkg github-ros2-ros2cli
ros2run github-ros2-ros2cli
ros2service github-ros2-ros2cli
ros2topic github-ros2-ros2cli
ros2test github-ros2-ros_testing
ros2bag github-ros2-rosbag2
rosbag2_examples_py github-ros2-rosbag2
rosidl_cli github-ros2-rosidl
rosidl_pycommon github-ros2-rosidl
rosidl_runtime_py github-ros2-rosidl_runtime_py
rpyutils github-ros2-rpyutils
sros2 github-ros2-sros2
launch_system_modes github-micro-ROS-system_modes
ros2trace_analysis gitlab-ros-tracing-tracetools_analysis
tracetools_analysis gitlab-ros-tracing-tracetools_analysis
twist_stamper github-joshnewans-twist_stamper
webots_ros2 github-cyberbotics-webots_ros2
webots_ros2_epuck github-cyberbotics-webots_ros2
webots_ros2_importer github-cyberbotics-webots_ros2
webots_ros2_mavic github-cyberbotics-webots_ros2
webots_ros2_tesla github-cyberbotics-webots_ros2
webots_ros2_tests github-cyberbotics-webots_ros2
webots_ros2_tiago github-cyberbotics-webots_ros2
webots_ros2_turtlebot github-cyberbotics-webots_ros2
webots_ros2_universal_robot github-cyberbotics-webots_ros2
ament_black github-botsandus-ament_black
nao_button_sim github-ijnek-nao_button_sim
neo_simulation2 github-neobotix-neo_simulation2
nodl_to_policy github-osrf-nodl_to_policy
ros2launch_security github-osrf-ros2launch_security
generate_parameter_module_example github-PickNikRobotics-generate_parameter_library
generate_parameter_library_py github-PickNikRobotics-generate_parameter_library
ros2acceleration github-ros-acceleration-ros2acceleration
soccer_vision_3d_rviz_markers github-ros-sports-soccer_vision_3d_rviz_markers
rrt_planner github-daviddorf2023-multidim_rrt_planner

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ament_copyright at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.16.3
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/ament_lint.git
VCS Type git
VCS Version rolling
Last Updated 2024-03-03
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The ability to check source files for copyright and license information.

Additional Links

No additional links.

Maintainers

  • Chris Lalancette

Authors

  • Audrow Nash
  • Brandon Ong
  • Claire Wang
  • Dirk Thomas
  • Michel Hidalgo
README
No README found. No README in repository either.
CHANGELOG

Changelog for package ament_copyright

0.16.3 (2024-02-07)

0.16.2 (2023-12-26)

0.16.1 (2023-11-06)

0.16.0 (2023-10-04)

0.15.2 (2023-07-11)

0.15.1 (2023-06-07)

0.15.0 (2023-04-27)

0.14.1 (2023-04-11)

0.14.0 (2023-02-14)

  • [rolling] Update maintainers - 2022-11-07 (#421)
  • Contributors: Audrow Nash

0.13.2 (2022-09-13)

  • Support for matching license header within multiline comment block (#361)
  • Improved licencse matching (#358)
  • Updated regex and adding test cases for copyright search (#363)
  • Update maintainers (#379)
  • Contributors: Will, methylDragon

0.13.1 (2022-05-09)

0.13.0 (2022-04-29)

0.12.3 (2022-04-08)

  • Fix importlib_metadata warning on Python 3.10. (#365)
  • Contributors: Chris Lalancette

0.12.2 (2022-03-28)

0.12.1 (2022-03-01)

0.12.0 (2022-02-18)

0.11.4 (2022-01-14)

  • Update forthcoming version in changelogs
  • Contributors: Audrow Nash

0.11.3 (2022-01-14)

  • Update maintainers to Michael Jeronimo and Michel Hidalgo (#340)
  • [ament_copyright] Fix file exclusion behavior (#327) * [ament_copyright] Fix file exclusion behavior This commit fixes the faulty file exclusion behavior reported in https://github.com/ament/ament_lint/issues/326. Specifically, the exclusion list is matched against traversed files in the [crawler]{.title-ref} module. Changes inspired by https://github.com/ament/ament_lint/pull/299/. * Update excluded file path in copyright tests Since file names are not indiscriminately matched throughout the search tree anymore, the excluded files listed in the copyright tests need to be updated relative to the root of the package. * Add test cases to check exclusion behavior Specifically, these tests check for:

    • Incorrect exclusion of single filenames.
    • Correct exclusion of relatively/absolutely addressed filenames.
    • Correct exclusion of wildcarded paths.

    * Add unit tests for crawler module These unit tests make sure both search and exclusion behaviors are correctly demonstrated by the [ament_copyright.crawler]{.title-ref} module.

  • Contributors: Abrar Rahman Protyasha, Audrow Nash

0.11.2 (2021-06-18)

0.11.1 (2021-06-18)

0.11.0 (2021-06-18)

  • Add SPDX identifiers to the licenses. (#315)
  • Contributors: Chris Lalancette

0.10.6 (2021-05-06)

0.10.5 (2021-04-14)

  • Remove Claire as a maintainer. (#312)
    • Remove Claire as a maintainer.
    • Remove dead email addresses.
    • Remove more dead email addresses.
    • Switch setup.py maintainer to Audrow.
  • Contributors: Chris Lalancette

0.10.4 (2021-03-18)

  • Use non-blind except for open() (#307)
  • Add optional file header style (#304)
    • Add optional file header style
    • Fix test on ament_copyright
  • Contributors: Alfi Maulana, Christophe Bedard

0.10.3 (2021-03-03)

  • 0.10.3
  • Contributors: Audrow Nash

0.10.2 (2021-02-12)

  • Add Audrow as a maintainer (#294)
  • Drop trailing tab from package manifests (#291) Follow-up to 8bf194aa1ac282db5483dd0d3fefff8f325b0db8
  • Contributors: Audrow Nash, Scott K Logan

0.10.1 (2021-01-25)

  • add mit-0 as a valid license to ament_copyright (#284)
  • Support Python 3.8-provided importlib.metadata (#290) The importlib_metadata package is a backport of the importlib.metadata module from Python 3.8. Fedora (and possibly others) no longer package importlib_metadata because they ship Python versions which have the functionality built-in.
  • Update maintainer (#274)
    • update maintainer
    • add authors
  • Contributors: Claire Wang, M. Mei, Scott K Logan

0.10.0 (2020-09-18)

  • added bsd 2 clause simplified license to ament_copyright (#267)
    • added bsd 2 clause simplified license to ament_copyright
  • Remove use of pkg_resources from ament_lint. (#260) Replace it with the use of the more modern importlib_metadata library. There are a couple of reasons to do this: 1. pkg_resources is quite slow to import; on my machine, just firing up the python interpreter takes ~35ms, while firing up the python interpreter and importing pkg_resources takes ~175ms. Firing up the python interpreter and importing importlib_metadata takes ~70ms. Removing 100ms per invocation of the command-line both makes it speedier for users, and will speed up our tests (which call out to the command-line quite a lot). 2. pkg_resources is somewhat deprecated and being replaced by importlib. https://importlib-metadata.readthedocs.io/en/latest/using.html describes some of it Note: By itself, this change is not enough to completely remove our dependence on pkg_resources. We\'ll also have to do something about the console_scripts that setup.py generates. That will be a separate effort.

  • Add pytest.ini so local tests don\'t display warning. (#259)

  • Contributors: Chris Lalancette, Evan Flynn

0.9.4 (2020-05-26)

0.9.3 (2020-05-18)

  • Remove output on stderr for case that is not an error (#248)
    • Remove output on stderr for case that is not an error
    • Remove early return to generate xml result file
  • Contributors: Jorge Perez

0.9.2 (2020-05-08)

  • Allow AMENT_IGNORE markers to be directories (#232)
  • Contributors: Dan Rose

0.9.1 (2020-04-10)

  • 0.9.0
  • more verbose test_flake8 error messages (same as ros2/launch_ros#135)
  • Generate xunit files valid for the junit10.xsd (#220)
  • remove status attribute from result XML (#212)
  • Add test case for Apache 2 (#208)
  • Add support for Boost Software License in ament_copyright package (#207)
    • Add support for the Boost Software License v1
    • Add tests for boost1 license
  • Add support for the 3-Clause BSD license (#205)
    • Add support for the 3-Clause BSD license
    • Add missing entry setup.py file for the added license
    • Add test cases for .cpp and .py files
    • Add a newline to increase readability
    • Fix missing addition needed to use 3-clause bsd tests
    • Remove line not usable
  • Fix bug, allows using ament_copyright with bsd3 (#206) * Fix bug, allows using ament_copyright with bsd3 In the bs2 headers, exists a \"{copyright_holder}\" text that causes a problem when using the command ament_copyright to add headers to a source file. This fix adds a default value for that key, to match the original 3-Clause BSD text, and allowing to use the tool.

    • Add copyright_name if template includes copyright_holder reference
    • Revert comma addition
  • Contributors: Chris Lalancette, Dirk Thomas, Jacob Perron, Jorge Perez, Jose Luis Rivero

0.8.1 (2019-10-23)

  • install resource marker file for packages (#193)
  • Contributors: Dirk Thomas

0.8.0 (2019-09-17)

  • install manifest files in Python packages (#185)
  • Convert list comprehension to generator (#179) Addresses flake8 C412 errors introduced by flake8-comprehension 2.2.0
  • Contributors: Dirk Thomas, Scott K Logan

0.7.4 (2019-07-31)

  • declare pytest markers (#164)
    • declare pytest markers
    • add markers to ament_xmllint tests
  • Match copyright templates with differing whitespace (#160) This change makes the template matching tolerant to more whitespace differences. In particular, it makes it tolerant in the presence of tabs, consecutive spaces (such as indentation) and EOL differences.
  • Contributors: Dirk Thomas, Scott K Logan

0.7.3 (2019-05-09 14:08)

  • handle BOM properly (#142)
  • Contributors: Dirk Thomas

0.7.2 (2019-05-09 09:30)

0.7.1 (2019-05-07)

  • fix encoding of copyright result file (#139)
  • use explicit encoding when reading files (#138)
  • update phrase of status messages (#137)
  • Contributors: Dirk Thomas

0.7.0 (2019-04-11)

  • Adding GPL (and LGPL) (#126) Tested with: ros2 pkg create foobargpl --license GPLv3 --cpp-library-name foobargpl ament_copyright ./foobargpl/ foobargpl/include/foobargpl/foobargpl.hpp: could not find copyright notice foobargpl/include/foobargpl/visibility_control.h: could not find copyright notice foobargpl/src/foobargpl.cpp: could not find copyright notice 3 errors, checked 3 files Manually copied header to [foobargpl/include/foobargpl/foobargpl.hpp]{.title-ref}. foobargpl/include/foobargpl/visibility_control.h: could not find copyright notice foobargpl/src/foobargpl.cpp: could not find copyright notice 2 errors, checked 3 files ament_copyright ./foobargpl/ --add-missing \"Copyright 2019, FooBar, Ltd.\" gplv3 ament_copyright ./foobargpl/ No errors, checked 3 files
  • Contributors: Joshua Whitley

0.6.3 (2019-01-14)

0.6.2 (2018-12-06)

0.6.1 (2018-11-15)

0.6.0 (2018-11-14)

  • Fix lint warnings from invalid escape sequences (#111) Use raw strings for regex patterns to avoid warnings.
  • Extend copyright checker to allow for doxygen-style copyright (#108)
  • Bsd clause3 fixup (#106)
    • relax clause 3 matching by removing \'the\' in front og the copyright holding entity
    • copyright holder doesn\'t have to be a company
  • Adding MIT license templates. (#105)
    • Adding MIT license templates.
    • Ommitting \'All Rights Reserved\' not in actual license.
  • Contributors: Jacob Perron, Joshua Whitley, Mikael Arguedas, jpsamper2009

0.5.2 (2018-06-27)

0.5.1 (2018-06-18 13:47)

  • level setup.py versions to 0.5.1
  • Contributors: Mikael Arguedas

0.5.0 (2018-06-18 10:09)

  • add pytest markers to linter tests
  • fix flake8 warning (#99)
  • Avoid use of builtin \'license\' as variable name (#97)
  • set zip_safe to avoid warning during installation (#96)
  • Contributors: Dirk Thomas, dhood

0.4.0 (2017-12-08)

  • remove test_suite, add pytest as test_requires
  • 0.0.3
  • Merge pull request #84 from ament/flake8_plugins update style to satisfy new flake8 plugins
  • update style to satisfy new flake8 plugins
  • implicitly inherit from object (only in files not copied from somewhe... (#83)
    • implicitly inherit from object (only in files not copied from somewhere else)
    • don\'t modify file copied from elsewhere
  • Merge pull request #81 from ament/ignore_build_spaces ignore folders with an AMENT_IGNORE file, e.g. build spaces
  • ignore folders with an AMENT_IGNORE file, e.g. build spaces
  • 0.0.2
  • use OSI website as reference for license (#80)
  • Merge pull request #78 from ament/use_flake8 use flake8 instead of pep8 and pyflakes
  • use flake8 instead of pep8 and pyflakes
  • Add in support for the BSD2 license. This allows ament_copyright to properly support the BSD2 license when doing copyright checking.
  • Change the copyright regex to allow a (c) after the \"Copyright\" word. This is what is recommended by the BSD license.
  • Change the copyright regex to allow a comma after the year(s).
  • remove __future_ imports
  • Merge pull request #66 from ament/multiple_copyrights support multiple copyright lines
  • support multiple copyright lines
  • update schema url
  • add schema to manifest files
  • Merge pull request #42 from ament/remove_second_extension remove result type extension from testsuite name
  • remove result type extension from testsuite name
  • Merge pull request #28 from ament/pep257 add packages to check pep257 compliance
  • use ament_pep257
  • remove debug output
  • apply normpath to prevent \'./\' prefix (fix #24)
  • Merge pull request #19 from ament/split_linter_packages_in_python_and_cmake split linter packages in python and cmake
  • make use of python linter packages
  • support excluding filenames from copyright, pep8, pyflakes check
  • fix variable name
  • Merge pull request #15 from ament/ament_copyright_reloaded add support for licenses
  • update doc
  • move apache2 snippets into separate files
  • add support for licenses
  • add trailing newline to generated test result files
  • Merge pull request #9 from ament/docs add docs for linters
  • add docs for linters
  • Merge pull request #8 from ament/ament_copyright add more options to ament_copyright
  • also handle rn newline
  • remove python3 dependencies
  • update url
  • update package description
  • add more options to ament_copyright
  • modify generated unit test files for a better hierarchy in Jenkins
  • make testname argument optional for all linters
  • use other linters for the linter packages where possible
  • Merge pull request #3 from ament/copyright_headers adding copyright headers, which are failing this module
  • adding copyright headers, which are failing this module
  • run ament_copyright and ament_pyflakes with Python 3
  • Merge pull request #2 from ament/ament_lint_auto allow linting based on test dependencies only
  • add ament_lint_auto and ament_lint_common, update all linter packages to implement extension point of ament_lint_auto
  • use project(.. NONE)
  • update to latest refactoring of ament_cmake
  • add dependency on ament_cmake_environment
  • add ament_copyright
  • Contributors: Chris Lalancette, Dirk Thomas, Mikael Arguedas, Tully Foote

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
bondpy github-ros-bond_core
flexbe_core github-flexbe-flexbe_behavior_engine
flexbe_input github-flexbe-flexbe_behavior_engine
flexbe_mirror github-flexbe-flexbe_behavior_engine
flexbe_onboard github-flexbe-flexbe_behavior_engine
flexbe_states github-flexbe-flexbe_behavior_engine
flexbe_testing github-flexbe-flexbe_behavior_engine
flexbe_widget github-flexbe-flexbe_behavior_engine
examples_tf2_py github-ros2-geometry2
tf2_tools github-ros2-geometry2
turtle_tf2_py github-ros-geometry_tutorials
camera_calibration github-ros-perception-image_pipeline
joint_state_publisher github-ros-joint_state_publisher
swri_cli_tools github-swri-robotics-marti_common
rc_reason_clients github-roboception-rc_reason_clients_ros2
rclpy_message_converter github-DFKI-NI-rospy_message_converter
rqt_reconfigure github-ros-visualization-rqt_reconfigure
rqt_runtime_monitor github-ros-visualization-rqt_runtime_monitor
joy_teleop github-ros-teleop-teleop_tools
key_teleop github-ros-teleop-teleop_tools
mouse_teleop github-ros-teleop-teleop_tools
teleop_twist_keyboard github-ros2-teleop_twist_keyboard
domain_coordinator github-ros2-ament_cmake_ros
ament_index_python github-ament-ament_index
ament_clang_format github-ament-ament_lint
ament_clang_tidy github-ament-ament_lint
ament_cmake_copyright github-ament-ament_lint
ament_cppcheck github-ament-ament_lint
ament_cpplint github-ament-ament_lint
ament_lint_cmake github-ament-ament_lint
ament_pclint github-ament-ament_lint
ament_uncrustify github-ament-ament_lint
ament_xmllint github-ament-ament_lint
bno055 github-flynneva-bno055
sensor_msgs_py github-ros2-common_interfaces
action_tutorials_py github-ros2-demos
demo_nodes_py github-ros2-demos
quality_of_service_demo_py github-ros2-demos
launch_testing_examples github-ros2-examples
examples_rclpy_minimal_action_client github-ros2-examples
examples_rclpy_minimal_action_server github-ros2-examples
examples_rclpy_executors github-ros2-examples
examples_rclpy_guard_conditions github-ros2-examples
examples_rclpy_minimal_client github-ros2-examples
examples_rclpy_minimal_service github-ros2-examples
examples_rclpy_minimal_publisher github-ros2-examples
examples_rclpy_minimal_subscriber github-ros2-examples
examples_rclpy_pointcloud_publisher github-ros2-examples
game_controller_spl github-ros-sports-gc_spl
gc_spl github-ros-sports-gc_spl
gc_spl_2022 github-ros-sports-gc_spl
rcgcd_spl_14_conversion github-ros-sports-gc_spl
rcgcrd_spl_4_conversion github-ros-sports-gc_spl
grbl_ros github-flynneva-grbl_ros
joy_tester github-joshnewans-joy_tester
launch github-ros2-launch
launch_pytest github-ros2-launch
launch_testing github-ros2-launch
launch_xml github-ros2-launch
launch_yaml github-ros2-launch
launch_param_builder github-PickNikRobotics-launch_param_builder
launch_ros github-ros2-launch_ros
launch_testing_ros github-ros2-launch_ros
ros2launch github-ros2-launch_ros
test_launch_ros github-ros2-launch_ros
performance_report gitlab-ApexAI-performance_test
picknik_ament_copyright github-PickNikRobotics-picknik_ament_copyright
r2r_spl github-ros-sports-r2r_spl
r2r_spl_7 github-ros-sports-r2r_spl
r2r_spl_8 github-ros-sports-r2r_spl
splsm_7_conversion github-ros-sports-r2r_spl
splsm_8_conversion github-ros-sports-r2r_spl
rmf_demos_fleet_adapter github-open-rmf-rmf_demos
rmf_demos_tasks github-open-rmf-rmf_demos
rmf_visualization_building_systems github-open-rmf-rmf_visualization
ros2controlcli github-ros-controls-ros2_control
ros2trace github-ros2-ros2_tracing
test_ros2trace github-ros2-ros2_tracing
test_tracetools_launch github-ros2-ros2_tracing
tracetools_launch github-ros2-ros2_tracing
tracetools_read github-ros2-ros2_tracing
tracetools_test github-ros2-ros2_tracing
tracetools_trace github-ros2-ros2_tracing
ros2action github-ros2-ros2cli
ros2cli github-ros2-ros2cli
ros2component github-ros2-ros2cli
ros2doctor github-ros2-ros2cli
ros2interface github-ros2-ros2cli
ros2lifecycle github-ros2-ros2cli
ros2multicast github-ros2-ros2cli
ros2node github-ros2-ros2cli
ros2param github-ros2-ros2cli
ros2pkg github-ros2-ros2cli
ros2run github-ros2-ros2cli
ros2service github-ros2-ros2cli
ros2topic github-ros2-ros2cli
ros2test github-ros2-ros_testing
ros2bag github-ros2-rosbag2
rosbag2_examples_py github-ros2-rosbag2
rosidl_cli github-ros2-rosidl
rosidl_pycommon github-ros2-rosidl
rosidl_runtime_py github-ros2-rosidl_runtime_py
rpyutils github-ros2-rpyutils
sros2 github-ros2-sros2
launch_system_modes github-micro-ROS-system_modes
ros2trace_analysis gitlab-ros-tracing-tracetools_analysis
tracetools_analysis gitlab-ros-tracing-tracetools_analysis
twist_stamper github-joshnewans-twist_stamper
webots_ros2 github-cyberbotics-webots_ros2
webots_ros2_epuck github-cyberbotics-webots_ros2
webots_ros2_importer github-cyberbotics-webots_ros2
webots_ros2_mavic github-cyberbotics-webots_ros2
webots_ros2_tesla github-cyberbotics-webots_ros2
webots_ros2_tests github-cyberbotics-webots_ros2
webots_ros2_tiago github-cyberbotics-webots_ros2
webots_ros2_turtlebot github-cyberbotics-webots_ros2
webots_ros2_universal_robot github-cyberbotics-webots_ros2
ament_black github-botsandus-ament_black
nao_button_sim github-ijnek-nao_button_sim
neo_simulation2 github-neobotix-neo_simulation2
nodl_to_policy github-osrf-nodl_to_policy
ros2launch_security github-osrf-ros2launch_security
generate_parameter_module_example github-PickNikRobotics-generate_parameter_library
generate_parameter_library_py github-PickNikRobotics-generate_parameter_library
linux_isolate_process github-adityapande-1995-linux_isolate_process
ros2acceleration github-ros-acceleration-ros2acceleration
soccer_vision_3d_rviz_markers github-ros-sports-soccer_vision_3d_rviz_markers

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ament_copyright at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.4.0
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/ament_lint.git
VCS Type git
VCS Version ardent
Last Updated 2017-12-09
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The ability to check source files for copyright and license information.

Additional Links

No additional links.

Maintainers

  • Dirk Thomas

Authors

No additional authors.
README
No README found. No README in repository either.
CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ament_copyright at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.5.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/ament_lint.git
VCS Type git
VCS Version bouncy
Last Updated 2018-06-28
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The ability to check source files for copyright and license information.

Additional Links

No additional links.

Maintainers

  • Dirk Thomas

Authors

No additional authors.
README
No README found. No README in repository either.
CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ament_copyright at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.6.4
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/ament_lint.git
VCS Type git
VCS Version crystal
Last Updated 2019-03-10
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The ability to check source files for copyright and license information.

Additional Links

No additional links.

Maintainers

  • Dirk Thomas

Authors

No additional authors.
README
No README found. No README in repository either.
CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ament_copyright at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.8.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/ament_lint.git
VCS Type git
VCS Version eloquent
Last Updated 2020-12-04
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The ability to check source files for copyright and license information.

Additional Links

No additional links.

Maintainers

  • Dirk Thomas

Authors

No additional authors.
README
No README found. No README in repository either.
CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

System Dependencies

Dependant Packages

Name Repo Deps
examples_tf2_py github-ros2-geometry2
joint_state_publisher github-ros-joint_state_publisher
rqt_reconfigure github-ros-visualization-rqt_reconfigure
joy_teleop github-ros-teleop-teleop_tools
key_teleop github-ros-teleop-teleop_tools
mouse_teleop github-ros-teleop-teleop_tools
teleop_twist_keyboard github-ros2-teleop_twist_keyboard
domain_coordinator github-ros2-ament_cmake_ros
ament_clang_format github-ament-ament_lint
ament_clang_tidy github-ament-ament_lint
ament_cmake_copyright github-ament-ament_lint
ament_cpplint github-ament-ament_lint
ament_lint_cmake github-ament-ament_lint
ament_pclint github-ament-ament_lint
ament_xmllint github-ament-ament_lint
demo_nodes_py github-ros2-demos
quality_of_service_demo_py github-ros2-demos
examples_rclpy_minimal_action_client github-ros2-examples
examples_rclpy_minimal_action_server github-ros2-examples
examples_rclpy_executors github-ros2-examples
examples_rclpy_minimal_client github-ros2-examples
examples_rclpy_minimal_service github-ros2-examples
examples_rclpy_minimal_publisher github-ros2-examples
examples_rclpy_minimal_subscriber github-ros2-examples
grbl_ros github-flynneva-grbl_ros
launch github-ros2-launch
launch_testing github-ros2-launch
launch_xml github-ros2-launch
launch_yaml github-ros2-launch
launch_ros github-ros2-launch_ros
launch_testing_ros github-ros2-launch_ros
ros2launch github-ros2-launch_ros
test_launch_ros github-ros2-launch_ros
nav2_gazebo_spawner github-ros-planning-navigation2
nav2_turtlebot3_rl github-ros-planning-navigation2
ros2trace gitlab-ros-tracing-ros2_tracing
tracetools_launch gitlab-ros-tracing-ros2_tracing
tracetools_read gitlab-ros-tracing-ros2_tracing
tracetools_trace gitlab-ros-tracing-ros2_tracing
ros2action github-ros2-ros2cli
ros2cli github-ros2-ros2cli
ros2component github-ros2-ros2cli
ros2doctor github-ros2-ros2cli
ros2interface github-ros2-ros2cli
ros2lifecycle github-ros2-ros2cli
ros2msg github-ros2-ros2cli
ros2multicast github-ros2-ros2cli
ros2node github-ros2-ros2cli
ros2param github-ros2-ros2cli
ros2pkg github-ros2-ros2cli
ros2run github-ros2-ros2cli
ros2service github-ros2-ros2cli
ros2srv github-ros2-ros2cli
ros2topic github-ros2-ros2cli
ros2test github-ros2-ros_testing
ros2bag github-ros2-rosbag2
rosidl_runtime_py github-ros2-rosidl_runtime_py
sros2 github-ros2-sros2
ros2trace_analysis gitlab-ros-tracing-tracetools_analysis
tracetools_analysis gitlab-ros-tracing-tracetools_analysis
ament_virtualenv github-esol-community-ament_virtualenv
slide_show github-ros2-slide_show

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ament_copyright at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.7.12
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/ament_lint.git
VCS Type git
VCS Version dashing
Last Updated 2020-07-11
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The ability to check source files for copyright and license information.

Additional Links

No additional links.

Maintainers

  • Dirk Thomas

Authors

No additional authors.
README
No README found. No README in repository either.
CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

System Dependencies

Dependant Packages

Name Repo Deps
camera_calibration github-ros-perception-image_pipeline
joint_state_publisher github-ros-joint_state_publisher
rc_reason_clients github-roboception-rc_reason_clients_ros2
rqt_reconfigure github-ros-visualization-rqt_reconfigure
joy_teleop github-ros-teleop-teleop_tools
key_teleop github-ros-teleop-teleop_tools
mouse_teleop github-ros-teleop-teleop_tools
teleop_twist_keyboard github-ros2-teleop_twist_keyboard
ament_clang_format github-ament-ament_lint
ament_clang_tidy github-ament-ament_lint
ament_cmake_copyright github-ament-ament_lint
ament_cpplint github-ament-ament_lint
ament_lint_cmake github-ament-ament_lint
ament_pclint github-ament-ament_lint
ament_xmllint github-ament-ament_lint
demo_nodes_py github-ros2-demos
quality_of_service_demo_py github-ros2-demos
examples_rclpy_minimal_action_client github-ros2-examples
examples_rclpy_minimal_action_server github-ros2-examples
examples_rclpy_executors github-ros2-examples
examples_rclpy_minimal_client github-ros2-examples
examples_rclpy_minimal_service github-ros2-examples
examples_rclpy_minimal_publisher github-ros2-examples
examples_rclpy_minimal_subscriber github-ros2-examples
grbl_ros github-flynneva-grbl_ros
launch github-ros2-launch
launch_testing github-ros2-launch
launch_testing_ament_cmake github-ros2-launch
launch_ros github-ros2-launch_ros
launch_testing_ros github-ros2-launch_ros
ros2launch github-ros2-launch_ros
test_launch_ros github-ros2-launch_ros
nav2_turtlebot3_rl github-ros-planning-navigation2
ros2trace gitlab-ros-tracing-ros2_tracing
tracetools_launch gitlab-ros-tracing-ros2_tracing
tracetools_read gitlab-ros-tracing-ros2_tracing
tracetools_trace gitlab-ros-tracing-ros2_tracing
ros2action github-ros2-ros2cli
ros2cli github-ros2-ros2cli
ros2component github-ros2-ros2cli
ros2lifecycle github-ros2-ros2cli
ros2msg github-ros2-ros2cli
ros2multicast github-ros2-ros2cli
ros2node github-ros2-ros2cli
ros2param github-ros2-ros2cli
ros2pkg github-ros2-ros2cli
ros2run github-ros2-ros2cli
ros2service github-ros2-ros2cli
ros2srv github-ros2-ros2cli
ros2topic github-ros2-ros2cli
ros2test github-ros2-ros_testing
ros2bag github-ros2-rosbag2
rosidl_runtime_py github-ros2-rosidl_python
sros2 github-ros2-sros2
ros2trace_analysis gitlab-ros-tracing-tracetools_analysis
tracetools_analysis gitlab-ros-tracing-tracetools_analysis
ament_virtualenv github-esol-community-ament_virtualenv
launch_ros_sandbox github-ros-security-launch_ros_sandbox
slide_show github-ros2-slide_show

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ament_copyright at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.10.7
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/ament_lint.git
VCS Type git
VCS Version galactic
Last Updated 2022-04-28
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The ability to check source files for copyright and license information.

Additional Links

No additional links.

Maintainers

  • Audrow Nash

Authors

  • Dirk Thomas
  • Claire Wang
README
No README found. No README in repository either.
CHANGELOG

Changelog for package ament_copyright

0.10.7 (2022-04-28)

0.10.6 (2021-05-06)

0.10.5 (2021-04-14)

  • Remove Claire as a maintainer. (#312)
    • Remove Claire as a maintainer.
    • Remove dead email addresses.
    • Remove more dead email addresses.
    • Switch setup.py maintainer to Audrow.
  • Contributors: Chris Lalancette

0.10.4 (2021-03-18)

  • Use non-blind except for open() (#307)
  • Add optional file header style (#304)
    • Add optional file header style
    • Fix test on ament_copyright
  • Contributors: Alfi Maulana, Christophe Bedard

0.10.3 (2021-03-03)

  • 0.10.3
  • Contributors: Audrow Nash

0.10.2 (2021-02-12)

  • Add Audrow as a maintainer (#294)
  • Drop trailing tab from package manifests (#291) Follow-up to 8bf194aa1ac282db5483dd0d3fefff8f325b0db8
  • Contributors: Audrow Nash, Scott K Logan

0.10.1 (2021-01-25)

  • add mit-0 as a valid license to ament_copyright (#284)
  • Support Python 3.8-provided importlib.metadata (#290) The importlib_metadata package is a backport of the importlib.metadata module from Python 3.8. Fedora (and possibly others) no longer package importlib_metadata because they ship Python versions which have the functionality built-in.
  • Update maintainer (#274)
    • update maintainer
    • add authors
  • Contributors: Claire Wang, M. Mei, Scott K Logan

0.10.0 (2020-09-18)

  • added bsd 2 clause simplified license to ament_copyright (#267)
    • added bsd 2 clause simplified license to ament_copyright
  • Remove use of pkg_resources from ament_lint. (#260) Replace it with the use of the more modern importlib_metadata library. There are a couple of reasons to do this: 1. pkg_resources is quite slow to import; on my machine, just firing up the python interpreter takes ~35ms, while firing up the python interpreter and importing pkg_resources takes ~175ms. Firing up the python interpreter and importing importlib_metadata takes ~70ms. Removing 100ms per invocation of the command-line both makes it speedier for users, and will speed up our tests (which call out to the command-line quite a lot). 2. pkg_resources is somewhat deprecated and being replaced by importlib. https://importlib-metadata.readthedocs.io/en/latest/using.html describes some of it Note: By itself, this change is not enough to completely remove our dependence on pkg_resources. We\'ll also have to do something about the console_scripts that setup.py generates. That will be a separate effort.

  • Add pytest.ini so local tests don\'t display warning. (#259)

  • Contributors: Chris Lalancette, Evan Flynn

0.9.4 (2020-05-26)

0.9.3 (2020-05-18)

  • Remove output on stderr for case that is not an error (#248)
    • Remove output on stderr for case that is not an error
    • Remove early return to generate xml result file
  • Contributors: Jorge Perez

0.9.2 (2020-05-08)

  • Allow AMENT_IGNORE markers to be directories (#232)
  • Contributors: Dan Rose

0.9.1 (2020-04-10)

  • 0.9.0
  • more verbose test_flake8 error messages (same as ros2/launch_ros#135)
  • Generate xunit files valid for the junit10.xsd (#220)
  • remove status attribute from result XML (#212)
  • Add test case for Apache 2 (#208)
  • Add support for Boost Software License in ament_copyright package (#207)
    • Add support for the Boost Software License v1
    • Add tests for boost1 license
  • Add support for the 3-Clause BSD license (#205)
    • Add support for the 3-Clause BSD license
    • Add missing entry setup.py file for the added license
    • Add test cases for .cpp and .py files
    • Add a newline to increase readability
    • Fix missing addition needed to use 3-clause bsd tests
    • Remove line not usable
  • Fix bug, allows using ament_copyright with bsd3 (#206) * Fix bug, allows using ament_copyright with bsd3 In the bs2 headers, exists a \"{copyright_holder}\" text that causes a problem when using the command ament_copyright to add headers to a source file. This fix adds a default value for that key, to match the original 3-Clause BSD text, and allowing to use the tool.

    • Add copyright_name if template includes copyright_holder reference
    • Revert comma addition
  • Contributors: Chris Lalancette, Dirk Thomas, Jacob Perron, Jorge Perez, Jose Luis Rivero

0.8.1 (2019-10-23)

  • install resource marker file for packages (#193)
  • Contributors: Dirk Thomas

0.8.0 (2019-09-17)

  • install manifest files in Python packages (#185)
  • Convert list comprehension to generator (#179) Addresses flake8 C412 errors introduced by flake8-comprehension 2.2.0
  • Contributors: Dirk Thomas, Scott K Logan

0.7.4 (2019-07-31)

  • declare pytest markers (#164)
    • declare pytest markers
    • add markers to ament_xmllint tests
  • Match copyright templates with differing whitespace (#160) This change makes the template matching tolerant to more whitespace differences. In particular, it makes it tolerant in the presence of tabs, consecutive spaces (such as indentation) and EOL differences.
  • Contributors: Dirk Thomas, Scott K Logan

0.7.3 (2019-05-09 14:08)

  • handle BOM properly (#142)
  • Contributors: Dirk Thomas

0.7.2 (2019-05-09 09:30)

0.7.1 (2019-05-07)

  • fix encoding of copyright result file (#139)
  • use explicit encoding when reading files (#138)
  • update phrase of status messages (#137)
  • Contributors: Dirk Thomas

0.7.0 (2019-04-11)

  • Adding GPL (and LGPL) (#126) Tested with: ros2 pkg create foobargpl --license GPLv3 --cpp-library-name foobargpl ament_copyright ./foobargpl/ foobargpl/include/foobargpl/foobargpl.hpp: could not find copyright notice foobargpl/include/foobargpl/visibility_control.h: could not find copyright notice foobargpl/src/foobargpl.cpp: could not find copyright notice 3 errors, checked 3 files Manually copied header to [foobargpl/include/foobargpl/foobargpl.hpp]{.title-ref}. foobargpl/include/foobargpl/visibility_control.h: could not find copyright notice foobargpl/src/foobargpl.cpp: could not find copyright notice 2 errors, checked 3 files ament_copyright ./foobargpl/ --add-missing \"Copyright 2019, FooBar, Ltd.\" gplv3 ament_copyright ./foobargpl/ No errors, checked 3 files
  • Contributors: Joshua Whitley

0.6.3 (2019-01-14)

0.6.2 (2018-12-06)

0.6.1 (2018-11-15)

0.6.0 (2018-11-14)

  • Fix lint warnings from invalid escape sequences (#111) Use raw strings for regex patterns to avoid warnings.
  • Extend copyright checker to allow for doxygen-style copyright (#108)
  • Bsd clause3 fixup (#106)
    • relax clause 3 matching by removing \'the\' in front og the copyright holding entity
    • copyright holder doesn\'t have to be a company
  • Adding MIT license templates. (#105)
    • Adding MIT license templates.
    • Ommitting \'All Rights Reserved\' not in actual license.
  • Contributors: Jacob Perron, Joshua Whitley, Mikael Arguedas, jpsamper2009

0.5.2 (2018-06-27)

0.5.1 (2018-06-18 13:47)

  • level setup.py versions to 0.5.1
  • Contributors: Mikael Arguedas

0.5.0 (2018-06-18 10:09)

  • add pytest markers to linter tests
  • fix flake8 warning (#99)
  • Avoid use of builtin \'license\' as variable name (#97)
  • set zip_safe to avoid warning during installation (#96)
  • Contributors: Dirk Thomas, dhood

0.4.0 (2017-12-08)

  • remove test_suite, add pytest as test_requires
  • 0.0.3
  • Merge pull request #84 from ament/flake8_plugins update style to satisfy new flake8 plugins
  • update style to satisfy new flake8 plugins
  • implicitly inherit from object (only in files not copied from somewhe... (#83)
    • implicitly inherit from object (only in files not copied from somewhere else)
    • don\'t modify file copied from elsewhere
  • Merge pull request #81 from ament/ignore_build_spaces ignore folders with an AMENT_IGNORE file, e.g. build spaces
  • ignore folders with an AMENT_IGNORE file, e.g. build spaces
  • 0.0.2
  • use OSI website as reference for license (#80)
  • Merge pull request #78 from ament/use_flake8 use flake8 instead of pep8 and pyflakes
  • use flake8 instead of pep8 and pyflakes
  • Add in support for the BSD2 license. This allows ament_copyright to properly support the BSD2 license when doing copyright checking.
  • Change the copyright regex to allow a (c) after the \"Copyright\" word. This is what is recommended by the BSD license.
  • Change the copyright regex to allow a comma after the year(s).
  • remove __future_ imports
  • Merge pull request #66 from ament/multiple_copyrights support multiple copyright lines
  • support multiple copyright lines
  • update schema url
  • add schema to manifest files
  • Merge pull request #42 from ament/remove_second_extension remove result type extension from testsuite name
  • remove result type extension from testsuite name
  • Merge pull request #28 from ament/pep257 add packages to check pep257 compliance
  • use ament_pep257
  • remove debug output
  • apply normpath to prevent \'./\' prefix (fix #24)
  • Merge pull request #19 from ament/split_linter_packages_in_python_and_cmake split linter packages in python and cmake
  • make use of python linter packages
  • support excluding filenames from copyright, pep8, pyflakes check
  • fix variable name
  • Merge pull request #15 from ament/ament_copyright_reloaded add support for licenses
  • update doc
  • move apache2 snippets into separate files
  • add support for licenses
  • add trailing newline to generated test result files
  • Merge pull request #9 from ament/docs add docs for linters
  • add docs for linters
  • Merge pull request #8 from ament/ament_copyright add more options to ament_copyright
  • also handle rn newline
  • remove python3 dependencies
  • update url
  • update package description
  • add more options to ament_copyright
  • modify generated unit test files for a better hierarchy in Jenkins
  • make testname argument optional for all linters
  • use other linters for the linter packages where possible
  • Merge pull request #3 from ament/copyright_headers adding copyright headers, which are failing this module
  • adding copyright headers, which are failing this module
  • run ament_copyright and ament_pyflakes with Python 3
  • Merge pull request #2 from ament/ament_lint_auto allow linting based on test dependencies only
  • add ament_lint_auto and ament_lint_common, update all linter packages to implement extension point of ament_lint_auto
  • use project(.. NONE)
  • update to latest refactoring of ament_cmake
  • add dependency on ament_cmake_environment
  • add ament_copyright
  • Contributors: Chris Lalancette, Dirk Thomas, Mikael Arguedas, Tully Foote

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

Name Repo Deps
examples_tf2_py github-ros2-geometry2
turtle_tf2_py github-ros-geometry_tutorials
camera_calibration github-ros-perception-image_pipeline
joint_state_publisher github-ros-joint_state_publisher
rc_reason_clients github-roboception-rc_reason_clients_ros2
robot_upstart github-clearpathrobotics-robot_upstart
rclpy_message_converter github-uos-rospy_message_converter
rqt_reconfigure github-ros-visualization-rqt_reconfigure
rqt_runtime_monitor github-ros-visualization-rqt_runtime_monitor
joy_teleop github-ros-teleop-teleop_tools
key_teleop github-ros-teleop-teleop_tools
mouse_teleop github-ros-teleop-teleop_tools
teleop_twist_keyboard github-ros2-teleop_twist_keyboard
domain_coordinator github-ros2-ament_cmake_ros
ament_index_python github-ament-ament_index
ament_clang_format github-ament-ament_lint
ament_clang_tidy github-ament-ament_lint
ament_cmake_copyright github-ament-ament_lint
ament_cpplint github-ament-ament_lint
ament_lint_cmake github-ament-ament_lint
ament_pclint github-ament-ament_lint
ament_xmllint github-ament-ament_lint
sensor_msgs_py github-ros2-common_interfaces
demo_nodes_py github-ros2-demos
quality_of_service_demo_py github-ros2-demos
examples_rclpy_minimal_action_client github-ros2-examples
examples_rclpy_minimal_action_server github-ros2-examples
examples_rclpy_executors github-ros2-examples
examples_rclpy_guard_conditions github-ros2-examples
examples_rclpy_minimal_client github-ros2-examples
examples_rclpy_minimal_service github-ros2-examples
examples_rclpy_minimal_publisher github-ros2-examples
examples_rclpy_minimal_subscriber github-ros2-examples
examples_rclpy_pointcloud_publisher github-ros2-examples
gc_spl_2022 github-ros-sports-gc_spl
rcgcd_spl_14_conversion github-ros-sports-gc_spl
rcgcrd_spl_4_conversion github-ros-sports-gc_spl
launch github-ros2-launch
launch_testing github-ros2-launch
launch_xml github-ros2-launch
launch_yaml github-ros2-launch
launch_param_builder github-PickNikRobotics-launch_param_builder
launch_ros github-ros2-launch_ros
launch_testing_ros github-ros2-launch_ros
ros2launch github-ros2-launch_ros
test_launch_ros github-ros2-launch_ros
nav2_gazebo_spawner github-ros-planning-navigation2
nav2_simple_commander github-ros-planning-navigation2
performance_report gitlab-ApexAI-performance_test
picknik_ament_copyright github-PickNikRobotics-picknik_ament_copyright
r2r_spl_7 github-ros-sports-r2r_spl
splsm_7_conversion github-ros-sports-r2r_spl
rmf_visualization_building_systems github-open-rmf-rmf_visualization
ros2controlcli github-ros-controls-ros2_control
ros2trace github-ros2-ros2_tracing
tracetools_launch github-ros2-ros2_tracing
tracetools_read github-ros2-ros2_tracing
tracetools_trace github-ros2-ros2_tracing
ros2action github-ros2-ros2cli
ros2cli github-ros2-ros2cli
ros2component github-ros2-ros2cli
ros2doctor github-ros2-ros2cli
ros2interface github-ros2-ros2cli
ros2lifecycle github-ros2-ros2cli
ros2multicast github-ros2-ros2cli
ros2node github-ros2-ros2cli
ros2param github-ros2-ros2cli
ros2pkg github-ros2-ros2cli
ros2run github-ros2-ros2cli
ros2service github-ros2-ros2cli
ros2topic github-ros2-ros2cli
massrobotics_amr_sender github-inorbit-ai-ros_amr_interop
vda5050_connector github-inorbit-ai-ros_amr_interop
vda5050_serializer github-inorbit-ai-ros_amr_interop
ros2test github-ros2-ros_testing
ros2bag github-ros2-rosbag2
rosidl_cli github-ros2-rosidl
rosidl_runtime_py github-ros2-rosidl_runtime_py
rpyutils github-ros2-rpyutils
sros2 github-ros2-sros2
launch_system_modes github-micro-ROS-system_modes
ros2trace_analysis gitlab-ros-tracing-tracetools_analysis
tracetools_analysis gitlab-ros-tracing-tracetools_analysis
twist_stamper github-joshnewans-twist_stamper
webots_ros2 github-cyberbotics-webots_ros2
webots_ros2_epuck github-cyberbotics-webots_ros2
webots_ros2_importer github-cyberbotics-webots_ros2
webots_ros2_mavic github-cyberbotics-webots_ros2
webots_ros2_tesla github-cyberbotics-webots_ros2
webots_ros2_tests github-cyberbotics-webots_ros2
webots_ros2_tiago github-cyberbotics-webots_ros2
webots_ros2_turtlebot github-cyberbotics-webots_ros2
webots_ros2_universal_robot github-cyberbotics-webots_ros2
ament_black github-Timple-ament_black
nao_button_sim github-ijnek-nao_button_sim
neo_simulation2 github-neobotix-neo_simulation2
nodl_to_policy github-osrf-nodl_to_policy
ros2launch_security github-osrf-ros2launch_security
example_subscriber_pkg github-peter-nebe-stair-step-detector
stair_step_detector_pkg github-peter-nebe-stair-step-detector
stairs_visualizer_pkg github-peter-nebe-stair-step-detector
turtlebot4_python_examples github-turtlebot-turtlebot4_examples
turtlebot4_diagnostics github-turtlebot-turtlebot4_robot
turtlebot4_tests github-turtlebot-turtlebot4_robot
turtlebot4_openai_tutorials github-turtlebot-turtlebot4_tutorials
turtlebot4_python_tutorials github-turtlebot-turtlebot4_tutorials

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ament_copyright at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.9.8
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/ament_lint.git
VCS Type git
VCS Version foxy
Last Updated 2023-03-06
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The ability to check source files for copyright and license information.

Additional Links

No additional links.

Maintainers

  • Dirk Thomas

Authors

No additional authors.
README
No README found. No README in repository either.
CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

System Dependencies

Dependant Packages

Name Repo Deps
examples_tf2_py github-ros2-geometry2
turtle_tf2_py github-ros-geometry_tutorials
camera_calibration github-ros-perception-image_pipeline
joint_state_publisher github-ros-joint_state_publisher
swri_cli_tools github-swri-robotics-marti_common
rc_reason_clients github-roboception-rc_reason_clients_ros2
robot_upstart github-clearpathrobotics-robot_upstart
rclpy_message_converter github-DFKI-NI-rospy_message_converter
rqt_reconfigure github-ros-visualization-rqt_reconfigure
rqt_runtime_monitor github-ros-visualization-rqt_runtime_monitor
rtabmap_python github-introlab-rtabmap_ros
joy_teleop github-ros-teleop-teleop_tools
key_teleop github-ros-teleop-teleop_tools
mouse_teleop github-ros-teleop-teleop_tools
teleop_twist_keyboard github-ros2-teleop_twist_keyboard
wireless_watcher github-clearpathrobotics-wireless
domain_coordinator github-ros2-ament_cmake_ros
ament_index_python github-ament-ament_index
ament_clang_format github-ament-ament_lint
ament_clang_tidy github-ament-ament_lint
ament_cmake_copyright github-ament-ament_lint
ament_cpplint github-ament-ament_lint
ament_lint_cmake github-ament-ament_lint
ament_pclint github-ament-ament_lint
ament_xmllint github-ament-ament_lint
bno055 github-flynneva-bno055
sensor_msgs_py github-ros2-common_interfaces
demo_nodes_py github-ros2-demos
quality_of_service_demo_py github-ros2-demos
espeak_ros gitlab-espeak-ros2-espeak-ros2
examples_rclpy_minimal_action_client github-ros2-examples
examples_rclpy_minimal_action_server github-ros2-examples
examples_rclpy_executors github-ros2-examples
examples_rclpy_minimal_client github-ros2-examples
examples_rclpy_minimal_service github-ros2-examples
examples_rclpy_minimal_publisher github-ros2-examples
examples_rclpy_minimal_subscriber github-ros2-examples
gc_spl_2022 github-ros-sports-gc_spl
rcgcd_spl_14_conversion github-ros-sports-gc_spl
rcgcrd_spl_4_conversion github-ros-sports-gc_spl
grbl_ros github-flynneva-grbl_ros
joy_tester github-joshnewans-joy_tester
launch github-ros2-launch
launch_testing github-ros2-launch
launch_xml github-ros2-launch
launch_yaml github-ros2-launch
launch_pal github-pal-robotics-launch_pal
launch_param_builder github-PickNikRobotics-launch_param_builder
launch_ros github-ros2-launch_ros
launch_testing_ros github-ros2-launch_ros
ros2launch github-ros2-launch_ros
test_launch_ros github-ros2-launch_ros
nav2_gazebo_spawner github-ros-planning-navigation2
performance_report gitlab-ApexAI-performance_test
picknik_ament_copyright github-PickNikRobotics-picknik_ament_copyright
r2r_spl_7 github-ros-sports-r2r_spl
splsm_7_conversion github-ros-sports-r2r_spl
rmf_visualization_building_systems github-open-rmf-rmf_visualization
ros2controlcli github-ros-controls-ros2_control
ros2trace github-ros2-ros2_tracing
tracetools_launch github-ros2-ros2_tracing
tracetools_read github-ros2-ros2_tracing
tracetools_trace github-ros2-ros2_tracing
ros2action github-ros2-ros2cli
ros2cli github-ros2-ros2cli
ros2component github-ros2-ros2cli
ros2doctor github-ros2-ros2cli
ros2interface github-ros2-ros2cli
ros2lifecycle github-ros2-ros2cli
ros2multicast github-ros2-ros2cli
ros2node github-ros2-ros2cli
ros2param github-ros2-ros2cli
ros2pkg github-ros2-ros2cli
ros2run github-ros2-ros2cli
ros2service github-ros2-ros2cli
ros2topic github-ros2-ros2cli
massrobotics_amr_sender github-inorbit-ai-ros_amr_interop
ros2test github-ros2-ros_testing
ros2bag github-ros2-rosbag2
rosidl_runtime_py github-ros2-rosidl_runtime_py
rosxbeepy github-Sudharsan10-ROSXBee
rpyutils github-ros2-rpyutils
sros2 github-ros2-sros2
launch_system_modes github-micro-ROS-system_modes
ros2trace_analysis gitlab-ros-tracing-tracetools_analysis
tracetools_analysis gitlab-ros-tracing-tracetools_analysis
twist_stamper github-joshnewans-twist_stamper
webots_ros2 github-cyberbotics-webots_ros2
webots_ros2_epuck github-cyberbotics-webots_ros2
webots_ros2_importer github-cyberbotics-webots_ros2
webots_ros2_mavic github-cyberbotics-webots_ros2
webots_ros2_tesla github-cyberbotics-webots_ros2
webots_ros2_tests github-cyberbotics-webots_ros2
webots_ros2_tiago github-cyberbotics-webots_ros2
webots_ros2_turtlebot github-cyberbotics-webots_ros2
webots_ros2_universal_robot github-cyberbotics-webots_ros2
xacro_live github-orise-robotics-xacro_live

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ament_copyright at Robotics Stack Exchange