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

git-team: update to 1.6.0. #30936

Merged
merged 1 commit into from
May 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions srcpkgs/git-team/template
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
# Template file for 'git-team'
pkgname=git-team
version=1.5.5
version=1.6.0
revision=1
build_style=go
go_import_path=github.com/hekmekk/git-team
go_package="${go_import_path}/cmd/git-team ${go_import_path}/cmd/prepare-commit-msg"
short_desc="Manage and enhance git commit messages with co-authors"
maintainer="Frank Steinborn <steinex@nognu.de>"
license="MIT"
homepage="https://github.com/hekmekk/git-team"
distfiles="${homepage}/archive/v${version}.tar.gz"
checksum=bc88552e78ad67327b153cdc5aeb01ddcb5a99579787a68177fae7aa1a20c27b
checksum=d474d759b81a458519c47059990d12808df28d4b313a69234aaa9574a70da723

post_install() {
vlicense LICENSE
mv ${DESTDIR}/usr/bin/prepare-commit-msg ${DESTDIR}/usr/bin/prepare-commit-msg-git-team
vinstall bash_completion/git-team.bash 0644 usr/share/bash-completion/completions git-team
Comment on lines -17 to -18
Copy link
Member

Choose a reason for hiding this comment

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

Can you explain these removals in the commit message? (were the files removed? did something change how they work? ...)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

  • The mv isn't necessary anymore, because prepare-commit-msg isn't shipped anymore as a seperate script, instead it get's created on demand in ~/.git-team/hooks by the main git-team binary.
  • The bash completion file indeed is gone, instead there is the git-team completion command now which one can use in their bash startup scripts to source completion for git-team.

Copy link
Member

Choose a reason for hiding this comment

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

Can you just copy your comment comment into the commit message, then?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

reworded a bit but done.

}