diff options
author | takefu <takefu@airport.fm> | 2024-01-09 22:55:36 +0100 |
---|---|---|
committer | Florian Smeets <flo@FreeBSD.org> | 2024-01-09 23:09:41 +0100 |
commit | bef3d029ced8886868ead2b490615b606cfb8265 (patch) | |
tree | 9ea94806b87e8e57b020862d638c28e2bb87d5f3 /sysutils/munin-common/files/patch-getversion | |
parent | mail/nextcloud-mail: Update to 3.5.1 (diff) |
sysutils/munin-{common,master,node}: update to 2.0.75
add
LICENSE_FILE
fix
Change distribution source sourceforge -> github
Fixed version reference bug when generating man
portlint(1) portclippy(1) compliant
Changes: https://github.com/munin-monitoring/munin/blob/2.0.75/ChangeLog
PR: 276218
Diffstat (limited to 'sysutils/munin-common/files/patch-getversion')
-rw-r--r-- | sysutils/munin-common/files/patch-getversion | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sysutils/munin-common/files/patch-getversion b/sysutils/munin-common/files/patch-getversion new file mode 100644 index 000000000000..7cc33d5dceea --- /dev/null +++ b/sysutils/munin-common/files/patch-getversion @@ -0,0 +1,13 @@ +--- getversion.orig 2023-10-25 08:03:45 UTC ++++ getversion +@@ -74,8 +74,8 @@ generate_version_string_from_dir() { + + if [ -s "RELEASE" ]; then + cat RELEASE +-elif [ "`git rev-parse --is-inside-work-tree 2>/dev/null`" = "true" ]; then +- generate_version_string ++#elif [ "`git rev-parse --is-inside-work-tree 2>/dev/null`" = "true" ]; then ++# generate_version_string + elif [ -n "`generate_version_string_from_dir`" ]; then + generate_version_string_from_dir + else |