Search Criteria
Package Details: monitorix-git 3.14.0.r131.g842cf2c-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/monitorix-git.git (read-only, click to copy) |
---|---|
Package Base: | monitorix-git |
Description: | A lightweight system monitoring tool that uses rrd databases. |
Upstream URL: | http://www.monitorix.org |
Licenses: | GPLv2 |
Conflicts: | monitorix |
Replaces: | monitorix |
Submitter: | graysky |
Maintainer: | jose1711 |
Last Packager: | jose1711 |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2016-10-05 18:34 (UTC) |
Last Updated: | 2022-11-01 13:06 (UTC) |
Dependencies (19)
- perl (perl-gitAUR)
- perl-cgi
- perl-config-general
- perl-config-simple
- perl-dbi
- perl-http-server-simple
- perl-libwww
- perl-mailtools
- perl-mime-lite
- perl-xml-simple
- rrdtool
- anything-sync-daemon (optional) – offload your databases to tmpfs to save i/o to your disk.
- hddtemp (hddtemp-gitAUR) (optional) – enable support for hdd temp monitoring.
- lm_sensors (lm_sensors-gitAUR) (optional) – enable support for system temp monitoring.
- net-tools (net-tools-gitAUR) (optional) – for netstat monitoring
- nvidia (nvidia-vulkanAUR, nvidia-vulkan-dkmsAUR, nvidia-535xx-dkmsAUR, nvidia-525xxAUR, nvidia-550xx-dkmsAUR, nvidia-tesla-dkmsAUR, nvidia-betaAUR, nvidia-beta-dkmsAUR, nvidia-525xx-dkmsAUR, nvidia-dkms) (optional) – enable support for nVidia card temp and usage monitoring.
- perl-dbd-mysql (optional) – for mysql monitoring
- smartmontools (smartmontools-svnAUR) (optional) – enable support for hdd bad sector monitoring.
- terminus-font (terminus-font-ll2-td1AUR, terminus-font-ll2AUR, terminus-font-ll2-td1-dv1-ij1AUR, terminus-font-gq2-ll2-td1AUR, terminus-cyrillicAUR, terminus-font-td1AUR) (optional) – if graphs do not contain characters, you may need this font package.
Latest Comments
kyak commented on 2018-05-04 17:44 (UTC)
@graysky: thanks! It works as expected now.
graysky commented on 2018-05-02 20:32 (UTC)
@kyak - updated for you AUR helper junkies
kyak commented on 2018-05-02 14:09 (UTC)
@Wild_Penguin: AUR ate my escapes, thanks for noticing :)
Wild_Penguin commented on 2018-05-02 12:57 (UTC) (edited on 2018-05-02 13:00 (UTC) by Wild_Penguin)
I second kyaks idea. Current Monitorix has a few annoying bugs and I too, use AUR helpers (specifically because I use several PKGBUILDS from AUR).
This example should work and is more in line with VCS package guidelines (which are not official AFAIK nor binding):
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
see: https://wiki.archlinux.org/index.php/VCS_package_guidelines
(Btw. seems this commenting system removes \ before ( or ) !)
Thanks for your work in any case!
kyak commented on 2018-03-25 04:19 (UTC)
The root cause of the problem is that you are using
git describe --always | sed 's|-|.|g'
to report package version. This returns something like f260e1c, and pacaur gets confused when checking if this git package version has increased or not.
If you were using something like
git describe --long --tags | sed 's/([^-]*-g)/r\1/;s/-/./g'
which returns v3.10.0.r48.gf260e1c, then it would make pacaur happy.
Is it possible that you change it in PKGBUILD?
graysky commented on 2018-03-22 18:18 (UTC)
I don't use AUR helpers so no idea. By definition a VCS package like *-git will update very frequently.
kyak commented on 2018-03-22 16:58 (UTC)
@graysky - I'm bound to using monitorix git version for a while. Is it expected that pacaur reports monitorix-git package as outdated every time and tries to install it? I don't see this behaviour with other *-git packages.