Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Collected small changes for the next patch release #1361

Merged
merged 8 commits into from Mar 8, 2019

Conversation

akohlmey
Copy link
Member

@akohlmey akohlmey commented Mar 6, 2019

Summary

This pull request combines multiple small changes and bugfixes

Related Issues

implements a suggestion from the discussion of #1357
fixes #1362

Author(s)

Axel Kohlmeyer (Temple U)

Licensing

By submitting this pull request, I agree, that my contribution will be included in LAMMPS and redistributed under either the GNU General Public License version 2 (GPL v2) or the GNU Lesser General Public License version 2.1 (LGPL v2.1).

Backward Compatibility

yes.

Implementation Notes

The following individual changes are implemented:

  • fix a formatting issue in the pull request template
  • use a simpler detection heuristic for whether the sources are a local git checkout
  • fix a memory leak in fix bocs
  • stop with an error message instead of a segmentation fault when using group command options that access unavailable atom attributes.

Post Submission Checklist

Please check the fields below as they are completed after the pull request has been submitted

  • The feature or features in this pull request is complete
  • Licensing information is complete
  • Corresponding author information is complete
  • The source code follows the LAMMPS formatting guidelines
  • Suitable new documentation files and/or updates to the existing docs are included
  • The added/updated documentation is integrated and tested with the documentation build system
  • The feature has been verified to work with the conventional build system
  • The feature has been verified to work with the CMake based build system
  • A package specific README file has been included or updated
  • One or more example input decks are included

Further Information, Files, and Links

Put any additional information here, attach relevant text or image files, and URLs to external sites (e.g. DOIs or webpages)

if(GIT_FOUND)
execute_process(COMMAND ${GIT_EXECUTABLE} describe HEAD
RESULT_VARIABLE temp_in_git_checkout
if(GIT_FOUND AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../.git)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The other option and maybe the safer one would be to do ${GIT_EXECUTABLE} -C ${CMAKE_CURRENT_SOURCE_DIR}/../.git everywhere.

Copy link
Member

@junghans junghans Mar 6, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In case you were wondering of using IS_DIRECTORY instead of EXISTS, this was on purpose, as git submodules only have .git file not a directory. And lammps is used as a submodule e.g. in: https://gitlab.com/exaalt/exaalt

Copy link
Contributor

@stanmoore1 stanmoore1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK

@akohlmey akohlmey merged commit c3acb3e into lammps:master Mar 8, 2019
@akohlmey akohlmey deleted the collected-small-changes branch March 8, 2019 17:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[BUG] 'group id include molecule' leads to segfault for atom_styles without molecule
3 participants