summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGene C2023-09-27 15:25:12 -0400
committerGene C2023-09-27 15:25:12 -0400
commita338f8da03fffe985e8f804fcf77140503845dfc (patch)
tree9046505ee810ed73cd1c67919a197b72a6c378cd
parentbeda45192e601fd999f9f007757f292e6f070208 (diff)
downloadaur-a338f8da03fffe985e8f804fcf77140503845dfc.tar.gz
update project version 4.5.0
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD13
2 files changed, 13 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e50a7c21e48e..f544868dc21e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -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
diff --git a/PKGBUILD b/PKGBUILD
index 5471dbdaa34a..a767b95bad4b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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() {