python-kitchen: add missing depends (noarch)

Remove unnecessary vlicense for LGPL.
This commit is contained in:
Alessio Sergi 2018-10-18 19:16:21 +02:00
parent 20cb37ece7
commit f2346f31b7
1 changed files with 5 additions and 8 deletions

View File

@ -1,29 +1,26 @@
# Template file for 'python-kitchen' # Template file for 'python-kitchen'
pkgname=python-kitchen pkgname=python-kitchen
version=1.2.5 version=1.2.5
revision=1 revision=2
noarch=yes noarch=yes
wrksrc="${pkgname#*-}-${version}" wrksrc="${pkgname#*-}-${version}"
build_style=python-module build_style=python-module
pycompile_module="kitchen" pycompile_module="kitchen"
hostmakedepends="python-setuptools python3-setuptools" hostmakedepends="python-setuptools python3-setuptools"
short_desc="Python2 useful snippets" depends="python"
short_desc="Useful snippets for Python2"
maintainer="dleeram <dleeram@protonmail.com>" maintainer="dleeram <dleeram@protonmail.com>"
license="LGPL-2" license="LGPL-2.1-or-later"
homepage="https://github.com/fedora-infra/kitchen" homepage="https://github.com/fedora-infra/kitchen"
distfiles="${homepage}/archive/v${version}.tar.gz" distfiles="${homepage}/archive/v${version}.tar.gz"
checksum=1258af80868fc8c30170a43040b1eb5434bc5ffa5ff4ab98ffb9ee3d3c1e2f76 checksum=1258af80868fc8c30170a43040b1eb5434bc5ffa5ff4ab98ffb9ee3d3c1e2f76
post_install() {
vlicense COPYING LICENSE
}
python3-kitchen_package() { python3-kitchen_package() {
noarch=yes noarch=yes
depends="python3"
pycompile_module="kitchen" pycompile_module="kitchen"
short_desc="${short_desc/Python2/Python3}" short_desc="${short_desc/Python2/Python3}"
pkg_install() { pkg_install() {
vmove usr/lib/python3* vmove usr/lib/python3*
vlicense COPYING LICENSE
} }
} }