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

azote: update to 1.7.0 #16061

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions srcpkgs/azote/template
@@ -1,6 +1,6 @@
# Template file for 'azote'
pkgname=azote
version=1.5.1
version=1.7.0
revision=1
archs=noarch
build_style=python3-module
Expand All @@ -12,7 +12,7 @@ maintainer="Piotr Miller <nwg.piotr@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://github.com/nwg-piotr/azote"
distfiles="${homepage}/archive/v${version}.tar.gz"
checksum=1da35263cef47e7dd656de4b3f422a277db8c6b0d4d9b1256767a2446722cdb2
checksum=e121466d3ee3db700e78a379da4201885bdcf4375222e906ad47d22c5ed38e6e

post_install() {
vmkdir usr/bin
Expand All @@ -22,6 +22,8 @@ post_install() {
vcopy "dist/${pkgname}.svg" usr/share/${pkgname}
vcopy "dist/${pkgname}-void.sh" usr/share/${pkgname}
vcopy "dist/${pkgname}.desktop" usr/share/applications
vlicense LICENSE
Copy link
Contributor

Choose a reason for hiding this comment

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

You shouldn't vlicense the LICENSE file if it is GPL-3.0-or-later.

vlicense LICENSE-COLORTHIEF
Copy link
Contributor

Choose a reason for hiding this comment

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

This looks like a BSD license. You can add that to the license on line 12:

license="BSD-3-Clause, GPL-3.0-or-later"

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes, and it needs to be published, as I included the module directly into my python package. Thanks, I'll try what you wrote above.


ln -sf /usr/share/${pkgname}/${pkgname}-void.sh ${DESTDIR}/usr/bin/${pkgname}
}