Date: Friday, April 7, 2023 @ 07:11:52
Author: felixonmars
Revision: 1440794
archrelease: copy trunk to community-staging-any
Added:
glances/repos/community-staging-any/
glances/repos/community-staging-any/PKGBUILD
(from rev 1440793, glances/trunk/PKGBUILD)
glances/repos/community-staging-any/glances.service
(from rev 1440793, glances/trunk/glances.service)
-----------------+
PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++
glances.service | 8 ++++++++
2 files changed, 45 insertions(+)
Copied: glances/repos/community-staging-any/PKGBUILD (from rev 1440793,
glances/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-07 07:11:52 UTC (rev 1440794)
@@ -0,0 +1,37 @@
+# Maintainer: Christian Rebischke <[email protected]>
+# Maintainer: Robin Candau <[email protected]>
+# Contributor: Sébastien Luttringer <[email protected]>
+# Contributor: Bartłomiej Piotrowski <[email protected]>
+# Contributor: Francois Boulogne <fboulogne at april dot org>
+
+pkgname=glances
+pkgver=3.3.1.1
+pkgrel=3
+pkgdesc='CLI curses-based monitoring tool'
+arch=('any')
+url='https://nicolargo.github.io/glances/'
+license=('LGPL')
+makedepends=('python-setuptools')
+depends=('python' 'python-psutil' 'python-future' 'python-defusedxml'
'python-ujson')
+optdepends=('hddtemp: HDD temperature monitoring support'
+ 'python-bottle: web server support'
+ 'python-docker: for the Docker monitoring support'
+ 'python-matplotlib: for graphical/chart support'
+ 'python-netifaces: for the IP plugin'
+ 'python-zeroconf: for the autodiscover mode'
+ 'python-pystache: templating engine')
+source=("${pkgname}-${pkgver}-${pkgrel}.tar.gz::https://github.com/nicolargo/glances/archive/v${pkgver}.tar.gz"
+ 'glances.service')
+sha512sums=('c8aab6b7140eabfcbe3488fe18f5e8a19f5c5ec822b0f13bbafe312f58f55126fb61d78ab117466a5e479cf7517e11ffc2c19269de51830f28025a2b0ed68285'
+
'49f0d185a37a5c5837e5beb463770c943ede40b2f1b8405e338129e897e97d9fc58373a8586fabc506266e6343cfea3c91b9787ac6832cc97a1ab63d6ad058d4')
+b2sums=('9956ded1c4b5fd1ade9f658a612c2a208bbe933eb759fab9e62eac9b380575019c7bd18bfb70d60caa958fe40642f09ca537c352ccff2d92a99e79507cd5f4d8'
+
'ecc44f8c06b1e8624cec92e41422a65d11e024b9fc23bae09b4e52fbedeb172a5034e5b612bbff7ba93d45189fb25eda0d54bc47b22b7f3f0acba984391e4017')
+
+package() {
+ cd "glances-${pkgver}"
+ python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+ install -Dm644 "${srcdir}"/glances.service \
+ "${pkgdir}"/usr/lib/systemd/system/glances.service
+}
+
+# vim:set ts=2 sw=2 et:
Copied: glances/repos/community-staging-any/glances.service (from rev 1440793,
glances/trunk/glances.service)
===================================================================
--- community-staging-any/glances.service (rev 0)
+++ community-staging-any/glances.service 2023-04-07 07:11:52 UTC (rev
1440794)
@@ -0,0 +1,8 @@
+[Unit]
+Description=Glances Server
+
+[Service]
+ExecStart=/usr/bin/glances -s
+
+[Install]
+WantedBy=multi-user.target