uncrustify_vendor package from uncrustify_vendor repo

uncrustify_vendor

Package Summary

Tags No category tags.
Version 2.0.2
License Apache License 2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/uncrustify_vendor.git
VCS Type git
VCS Version humble
Last Updated 2022-03-28
Dev Status MAINTAINED
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

Wrapper around uncrustify, providing nothing but a dependency on uncrustify, on some systems. On others, it provides an ExternalProject build of uncrustify.

Additional Links

Maintainers

  • Audrow Nash

Authors

  • Michel Hidalgo
  • Steven! Ragnarök

uncrustify_vendor

CMake shim over the uncrustify library: https://github.com/uncrustify/uncrustify

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

Deps Name
1 ament_cmake

System Dependencies

Dependant Packages

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged uncrustify_vendor at Robotics Stack Exchange

uncrustify_vendor package from uncrustify_vendor repo

uncrustify_vendor

Package Summary

Tags No category tags.
Version 2.1.2
License Apache License 2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/uncrustify_vendor.git
VCS Type git
VCS Version iron
Last Updated 2023-02-14
Dev Status MAINTAINED
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

Wrapper around uncrustify, providing nothing but a dependency on uncrustify, on some systems. On others, it provides an ExternalProject build of uncrustify.

Additional Links

Maintainers

  • Scott K Logan

Authors

  • Audrow Nash
  • Michel Hidalgo
  • Steven! Ragnarök

uncrustify_vendor

CMake shim over the uncrustify library: https://github.com/uncrustify/uncrustify

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

Deps Name
1 ament_cmake

System Dependencies

Dependant Packages

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged uncrustify_vendor at Robotics Stack Exchange

uncrustify_vendor package from uncrustify_vendor repo

uncrustify_vendor

Package Summary

Tags No category tags.
Version 3.0.0
License Apache License 2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/uncrustify_vendor.git
VCS Type git
VCS Version rolling
Last Updated 2024-04-16
Dev Status MAINTAINED
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

Wrapper around uncrustify, providing nothing but a dependency on uncrustify, on some systems. On others, it provides an ExternalProject build of uncrustify.

Additional Links

Maintainers

  • Scott K Logan

Authors

  • Audrow Nash
  • Michel Hidalgo
  • Steven! Ragnarök

uncrustify_vendor

CMake shim over the uncrustify library: https://github.com/uncrustify/uncrustify

CHANGELOG

Changelog for package uncrustify_vendor

3.0.0 (2024-04-16)

  • Update to uncrustify 0.78.1 (#37)

    • Update to uncrustify 0.78.1

    * Fix the uncrustify version detection logic. And make sure we are at least 0.78.

  • Contributors: Chris Lalancette

2.2.1 (2023-07-11)

  • Switch to ament_cmake_vendor_package (#34)
  • Contributors: Scott K Logan

2.2.0 (2023-04-28)

2.1.2 (2023-02-14)

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

2.1.1 (2022-09-13)

  • Mirror rolling to master
  • Contributors: Audrow Nash

2.1.0 (2022-04-29)

  • 2.1.0
  • Contributors: Audrow Nash

2.0.2 (2022-03-28)

2.0.1 (2022-03-01)

  • Quiet down build warning on Windows. (#29) When building on Windows, uncrustify doesn\'t seem to use the CMAKE_BUILD_TYPE variable and thus prints a warning about it. Quiet that down with --no-warn-unused-cli.
  • Contributors: Chris Lalancette

2.0.0 (2021-12-17)

  • Update to uncrustify 0.72 (#27)
    • Update to uncrustify 0.72
  • Update maintainers to Audrow Nash (#25)
  • Contributors: Audrow Nash, Chris Lalancette

1.5.3 (2021-03-18)

  • Add an override flag to force vendored build (#23)
  • Contributors: Scott K Logan

1.5.2 (2021-02-01 14:42)

  • Revert \"Add git checkout before patching.\" This reverts commit c61408170a84ed6bc31e641fc8a2467ca5830884. This is no longer necessary because of UDPATE_DISCONNECTED, which will make the download step act more like using a URL instead of a GIT_REPOSITORY.
  • Make git upstream act more like tar (#22) Some of our problems with using GIT_REPOSITORY with a GIT_TAG stem from CMake trying to \"update\" the repository each time the target is evaluated. This would be important if not for the fact that we\'re targeting a specific REF, so the repository will never be out-of-date unless we change the ref, which would invalidate the target anyway. We can safely use UPDATE_DISCONNECTED to block the update step from invalidating the source target, which should prevent downstream targets like patch, build, and install from being re-triggered unnecessarily. The one caveat to this is that a change to GIT_TAG doesn\'t invalidate the target like a change to GIT_REPOSITORY or URL would. To work around this, I updated the target name to contain the ref instead of the supposed version number, which will then force a new build if we change the ref in the future. This is also more correct, since it would be easy for the ref and target name to get out of sync.
  • Revert \"Use explicit INSTALL_COMMAND to suppress DESTDIR\" This reverts commit ca32b1eb8f77b982be9d82fc186bd7d98ce2c45a. Evidently this wasn\'t working correctly on Windows.
  • Contributors: Scott K Logan

1.5.1 (2021-02-01 11:26)

  • Use explicit INSTALL_COMMAND to suppress DESTDIR (#21) The DESTDIR environment variable is used on UNIX systems during an invocation of \'make install\' to specify an alternate directory prefix for installation paths. Since this isn\'t a cross-platform mechanism, the CMAKE_INSTALL_PREFIX CMake variable can also be used. Unfortunately, if both of these are specified, they will both be applied. This isn\'t typically a problem, but can cause problems for the installation phase of ExternalProject_Add if the external project is built during an invocation of \'make install\' with DESTDIR set. Since the CMAKE_INSTALL_PREFIX method is employed by the call to ExternalProject_Add instead of DESTDIR, we should specifically suppress DESTDIR if it is set so that it doesn\'t interfere with the installation of the external project to the staging directory.
  • Add git checkout before patching. (#20) This ensures that on subsequent runs, if the patch step is run again it will successfully repatch.
  • Contributors: Chris Lalancette, Scott K Logan

1.5.0 (2021-01-25)

  • Declare missing dependency on \'git\' (#18) Follow-up to f0c78e9e47516589eb2945569031d001341abb90
  • Use Git to fetch upstream uncrustify source code (#16) This is somewhat of a lateral move in general, but the patching solution implemented in ec709bb8838f193dc1c90ccf95ecc1e28ba6bd08 can fail under certain circumstances if the target directory is not a git repository. Since the patching solution requires git anyway, and we\'re downloading what should be the exact same files, there should be no reason that this wouldn\'t work in largely the same way the current tarball-based solution does.
  • Switch to applying patch with git apply. (#15) This gets us closer to being able to build without Administrator on Windows, since the \"patch\" command required Administrator.
  • Update package maintainers. (#12)
  • Contributors: Chris Lalancette, Michel Hidalgo, Scott K Logan

1.4.0 (2020-04-10)

  • Switch to CMake Patch package (#7) As of CMake 3.10, there is a [FindPatch.cmake]{.title-ref} module built in. Note that, on Windows, this prefers [patch]{.title-ref} distributed with Git instead of via the \"GNU Patch for Windows\" Chocolatey package, so UAC is not required to build this package anymore.
  • Contributors: Dan Rose

1.3.0 (2019-09-17)

  • Update uncrustify version to fix warnings on armhf (#5)
    • Patch md5 algorithm in uncrustify source to fix warnings on armhf
    • Update to latest uncrustify instead of cherry picking patch
  • Contributors: Emerson Knapp

1.2.0 (2019-04-11)

  • Merge pull request #4 from ament/update-maintainer Update package maintainer.
  • Update package maintainer.
  • Contributors: Steven! Ragnar

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

System Dependencies

Name
uncrustify

Dependant Packages

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged uncrustify_vendor at Robotics Stack Exchange

uncrustify_vendor package from uncrustify_vendor repo

uncrustify_vendor

Package Summary

Tags No category tags.
Version 1.1.0
License Apache License 2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/uncrustify_vendor.git
VCS Type git
VCS Version crystal
Last Updated 2019-01-12
Dev Status MAINTAINED
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

Wrapper around uncrustify, providing nothing but a dependency on uncrustify, on some systems. On others, it provides an ExternalProject build of uncrustify.

Additional Links

Maintainers

  • Mikael Arguedas

Authors

No additional authors.

uncrustify_vendor

CMake shim over the uncrustify library: https://github.com/uncrustify/uncrustify

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

Deps Name
1 ament_cmake

System Dependencies

Name
uncrustify

Dependant Packages

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged uncrustify_vendor at Robotics Stack Exchange

uncrustify_vendor package from uncrustify_vendor repo

uncrustify_vendor

Package Summary

Tags No category tags.
Version 1.3.0
License Apache License 2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/uncrustify_vendor.git
VCS Type git
VCS Version eloquent
Last Updated 2019-09-17
Dev Status MAINTAINED
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

Wrapper around uncrustify, providing nothing but a dependency on uncrustify, on some systems. On others, it provides an ExternalProject build of uncrustify.

Additional Links

Maintainers

  • Steven! Ragnarök

Authors

No additional authors.

uncrustify_vendor

CMake shim over the uncrustify library: https://github.com/uncrustify/uncrustify

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

Deps Name
1 ament_cmake

System Dependencies

Name
uncrustify

Dependant Packages

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged uncrustify_vendor at Robotics Stack Exchange

uncrustify_vendor package from uncrustify_vendor repo

uncrustify_vendor

Package Summary

Tags No category tags.
Version 1.2.0
License Apache License 2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/uncrustify_vendor.git
VCS Type git
VCS Version dashing
Last Updated 2019-04-11
Dev Status MAINTAINED
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

Wrapper around uncrustify, providing nothing but a dependency on uncrustify, on some systems. On others, it provides an ExternalProject build of uncrustify.

Additional Links

Maintainers

  • Steven! Ragnarök

Authors

No additional authors.

uncrustify_vendor

CMake shim over the uncrustify library: https://github.com/uncrustify/uncrustify

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

Deps Name
1 ament_cmake

System Dependencies

Name
uncrustify

Dependant Packages

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged uncrustify_vendor at Robotics Stack Exchange

uncrustify_vendor package from uncrustify_vendor repo

uncrustify_vendor

Package Summary

Tags No category tags.
Version 1.5.3
License Apache License 2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/uncrustify_vendor.git
VCS Type git
VCS Version galactic
Last Updated 2021-03-18
Dev Status MAINTAINED
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

Wrapper around uncrustify, providing nothing but a dependency on uncrustify, on some systems. On others, it provides an ExternalProject build of uncrustify.

Additional Links

Maintainers

  • Michel Hidalgo

Authors

  • Steven! Ragnarök

uncrustify_vendor

CMake shim over the uncrustify library: https://github.com/uncrustify/uncrustify

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

Deps Name
1 ament_cmake

System Dependencies

Dependant Packages

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged uncrustify_vendor at Robotics Stack Exchange

uncrustify_vendor package from uncrustify_vendor repo

uncrustify_vendor

Package Summary

Tags No category tags.
Version 1.4.0
License Apache License 2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ament/uncrustify_vendor.git
VCS Type git
VCS Version foxy
Last Updated 2020-04-10
Dev Status MAINTAINED
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

Wrapper around uncrustify, providing nothing but a dependency on uncrustify, on some systems. On others, it provides an ExternalProject build of uncrustify.

Additional Links

Maintainers

  • Steven! Ragnarök

Authors

No additional authors.

uncrustify_vendor

CMake shim over the uncrustify library: https://github.com/uncrustify/uncrustify

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

Deps Name
1 ament_cmake

System Dependencies

Name
uncrustify

Dependant Packages

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged uncrustify_vendor at Robotics Stack Exchange