Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / 
glances


Commits:
b634831c by Robin Candau at 2024-12-28T17:33:55+01:00
upgpkg: 4.3.0.5-1: New upstream release

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=====================================
.SRCINFO
=====================================
@@ -1,8 +1,8 @@
 pkgbase = glances
        pkgdesc = CLI curses-based monitoring tool
-       pkgver = 4.3.0.4
+       pkgver = 4.3.0.5
        pkgrel = 1
-       url = https://nicolargo.github.io/glances/
+       url = https://nicolargo.github.io/glances
        arch = any
        license = LGPL-3.0-or-later
        makedepends = python-setuptools
@@ -25,11 +25,11 @@ pkgbase = glances
        optdepends = python-zeroconf: for the autodiscover mode
        optdepends = python-pystache: templating engine
        optdepends = python-prometheus_client: for the Prometheus export module
-       source = 
glances-4.3.0.4-1.tar.gz::https://github.com/nicolargo/glances/archive/v4.3.0.4.tar.gz
+       source = 
glances-4.3.0.5.tar.gz::https://github.com/nicolargo/glances/archive/v4.3.0.5.tar.gz
        source = glances.service
-       sha512sums = 
88d6881f2db4fa6c067c9717a6157973b17c50b61df9e8525660664dfb887cb28e252e6cff3240fdb806096e01f2ed5e2d4f8f0759520054dae3155ba8329f0a
+       sha512sums = 
5ba281c79f73b81debd959523ff813c2c39a49259d04d64b50d918910d9451f46799b76b5e4b9857cc03352b73828516e5f1fd98cf0261437829ec44fc03d125
        sha512sums = 
49f0d185a37a5c5837e5beb463770c943ede40b2f1b8405e338129e897e97d9fc58373a8586fabc506266e6343cfea3c91b9787ac6832cc97a1ab63d6ad058d4
-       b2sums = 
d41274bf400d5434986825a74670e31705a0d1a9508e7d42d07b24fc9a72365a4ea93ea5cfa3fc33b6468df88bd957c2b11ff811c9ba204ffa5b7b0991f1e53e
+       b2sums = 
39c940be53ac839c025c67f8823146ba4720a862efc9f1231f9166f4bfec4f9cb348abe8e0ca29677864aa77874326046fdbefa8763a7373a459890b19cc3178
        b2sums = 
ecc44f8c06b1e8624cec92e41422a65d11e024b9fc23bae09b4e52fbedeb172a5034e5b612bbff7ba93d45189fb25eda0d54bc47b22b7f3f0acba984391e4017
 
 pkgname = glances


=====================================
PKGBUILD
=====================================
@@ -5,14 +5,14 @@
 # Contributor: Francois Boulogne <fboulogne at april dot org>
 
 pkgname=glances
-pkgver=4.3.0.4
+pkgver=4.3.0.5
 pkgrel=1
-pkgdesc='CLI curses-based monitoring tool'
+pkgdesc="CLI curses-based monitoring tool"
+url="https://nicolargo.github.io/glances";
 arch=('any')
-url='https://nicolargo.github.io/glances/'
 license=('LGPL-3.0-or-later')
-makedepends=('python-setuptools' 'python-build' 'python-installer' 
'python-wheel')
 depends=('python' 'python-psutil' 'python-defusedxml' 'python-orjson' 
'python-pydantic' 'python-packaging')
+makedepends=('python-setuptools' 'python-build' 'python-installer' 
'python-wheel')
 optdepends=('hddtemp: HDD temperature monitoring support'
             'uvicorn: for WebUI / RestFull API'
             'python-jinja: for WebUI / RestFull API'
@@ -23,23 +23,22 @@ optdepends=('hddtemp: HDD temperature monitoring support'
             'python-zeroconf: for the autodiscover mode'
             'python-pystache: templating engine'
             'python-prometheus_client: for the Prometheus export module')
-source=("${pkgname}-${pkgver}-${pkgrel}.tar.gz::https://github.com/nicolargo/glances/archive/v${pkgver}.tar.gz";
-        'glances.service')
-sha512sums=('88d6881f2db4fa6c067c9717a6157973b17c50b61df9e8525660664dfb887cb28e252e6cff3240fdb806096e01f2ed5e2d4f8f0759520054dae3155ba8329f0a'
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/nicolargo/glances/archive/v${pkgver}.tar.gz";
+        "${pkgname}.service")
+sha512sums=('5ba281c79f73b81debd959523ff813c2c39a49259d04d64b50d918910d9451f46799b76b5e4b9857cc03352b73828516e5f1fd98cf0261437829ec44fc03d125'
             
'49f0d185a37a5c5837e5beb463770c943ede40b2f1b8405e338129e897e97d9fc58373a8586fabc506266e6343cfea3c91b9787ac6832cc97a1ab63d6ad058d4')
-b2sums=('d41274bf400d5434986825a74670e31705a0d1a9508e7d42d07b24fc9a72365a4ea93ea5cfa3fc33b6468df88bd957c2b11ff811c9ba204ffa5b7b0991f1e53e'
+b2sums=('39c940be53ac839c025c67f8823146ba4720a862efc9f1231f9166f4bfec4f9cb348abe8e0ca29677864aa77874326046fdbefa8763a7373a459890b19cc3178'
         
'ecc44f8c06b1e8624cec92e41422a65d11e024b9fc23bae09b4e52fbedeb172a5034e5b612bbff7ba93d45189fb25eda0d54bc47b22b7f3f0acba984391e4017')
 
 build() {
-  cd "glances-${pkgver}"
-  python -m build --wheel --no-isolation
+       cd "${pkgname}-${pkgver}"
+       python -m build --wheel --no-isolation
 }
 
 package() {
-  cd "glances-${pkgver}"
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -Dm644 "${srcdir}"/glances.service \
-    "${pkgdir}"/usr/lib/systemd/system/glances.service
+       cd "${pkgname}-${pkgver}"
+       python -m installer --destdir="${pkgdir}" dist/*.whl
+
+       install -Dm 644 "${srcdir}/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
 }
 
-# vim:set ts=2 sw=2 et:



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/glances/-/commit/b634831cb3bac6531499d428d5f538941f8d6793

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/glances/-/commit/b634831cb3bac6531499d428d5f538941f8d6793
You're receiving this email because of your account on gitlab.archlinux.org.


Reply via email to