update project version 4.5.0

This commit is contained in:
Gene C 2023-09-27 15:25:12 -04:00
parent beda45192e
commit a338f8da03
2 changed files with 13 additions and 4 deletions

View file

@ -1,6 +1,6 @@
pkgbase = kea_config
pkgdesc = Manage kea dhcp4 configs from single source config
pkgver = 4.4.3
pkgver = 4.5.0
pkgrel = 1
url = https://github.com/gene-git/kea_config
arch = any
@ -17,7 +17,7 @@ pkgbase = kea_config
depends = python-tomli-w
depends = python-qrcode
depends = python-tomli
source = git+https://github.com/gene-git/kea_config#tag=4.4.3
source = git+https://github.com/gene-git/kea_config#tag=4.5.0
sha512sums = SKIP
pkgname = kea_config

View file

@ -10,7 +10,7 @@ pkgname='kea_config'
pkgdesc='Manage kea dhcp4 configs from single source config'
_gitname='kea_config'
pkgver=4.4.3
pkgver=4.5.0
pkgrel=1
url="https://github.com/gene-git/kea_config"
@ -20,7 +20,10 @@ license=(MIT)
depends=('python>3.9' 'python-packaging' 'python-netaddr'
'python-tomli-w' 'python-qrcode' 'python-tomli'
)
makedepends=('git' 'python-build' 'python-installer' 'python-wheel' 'python-poetry' 'rsync')
# To build docs uncommont sphinx/texlive
makedepends=('git' 'python-build' 'python-installer' 'python-wheel' 'python-poetry' 'rsync'
#'python-sphinx' 'texlive-latexextra' # Docs
)
# See mkpkg https://github.com/gene-git/Arch-mkpkg
_mkpkg_depends=('python>minor')
source=("git+https://github.com/gene-git/${_gitname}#tag=${pkgver}")
@ -30,6 +33,12 @@ build() {
cd "${_gitname}"
/usr/bin/rm -f dist/*
python -m build --wheel --no-isolation
# To build Docs - uncomment these and sphinx makedepends above
# echo "Build docs"
# cd ./Docs
# make html
# make latexpdf
}
package() {