diff options
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/icingadb/Makefile | 5 | ||||
-rw-r--r-- | net-mgmt/icingadb/distinfo | 14 | ||||
-rw-r--r-- | net-mgmt/icingadb/files/patch-internal_config_config.go | 11 | ||||
-rw-r--r-- | net-mgmt/icingadb/files/patch-pkg_config_config.go | 11 | ||||
-rw-r--r-- | net-mgmt/kf6-networkmanager-qt/distinfo | 6 | ||||
-rw-r--r-- | net-mgmt/prometheus3/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/prometheus3/distinfo | 14 |
7 files changed, 31 insertions, 32 deletions
diff --git a/net-mgmt/icingadb/Makefile b/net-mgmt/icingadb/Makefile index eb0452038bf2..93e83b0e2dcf 100644 --- a/net-mgmt/icingadb/Makefile +++ b/net-mgmt/icingadb/Makefile @@ -1,7 +1,6 @@ PORTNAME= icingadb DISTVERSIONPREFIX= v -DISTVERSION= 1.2.0 -PORTREVISION= 7 +DISTVERSION= 1.4.0 CATEGORIES= net-mgmt MAINTAINER= dvl@FreeBSD.org @@ -39,7 +38,7 @@ SUB_LIST+= ICINGA2USER=${ICINGA2USER} \ PREFIX=${PREFIX} post-patch: - @${REINPLACE_CMD} -e 's|%%PREFIX|${PREFIX}|g' ${WRKSRC}/pkg/config/config.go + @${REINPLACE_CMD} -e 's|%%PREFIX|${PREFIX}|g' ${WRKSRC}/internal/config/config.go post-install: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} diff --git a/net-mgmt/icingadb/distinfo b/net-mgmt/icingadb/distinfo index b692bebb072e..d169b14713ee 100644 --- a/net-mgmt/icingadb/distinfo +++ b/net-mgmt/icingadb/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1722340400 -SHA256 (go/net-mgmt_icingadb/Icinga-icingadb-v1.2.0_GH0/v1.2.0.mod) = 7ae965983fb00d3e058aad4e8d38d15eeac66c314cc8b6830a4b3b2983dbfe12 -SIZE (go/net-mgmt_icingadb/Icinga-icingadb-v1.2.0_GH0/v1.2.0.mod) = 1502 -SHA256 (go/net-mgmt_icingadb/Icinga-icingadb-v1.2.0_GH0/v1.2.0.zip) = a7ff457bad4ef78a5c65d3fc06571541bec5deee6f0fabbfd88a888e263dcc6d -SIZE (go/net-mgmt_icingadb/Icinga-icingadb-v1.2.0_GH0/v1.2.0.zip) = 3379031 -SHA256 (go/net-mgmt_icingadb/Icinga-icingadb-v1.2.0_GH0/Icinga-icingadb-v1.2.0_GH0.tar.gz) = f3452f796a471e848c2e51d2820444df8907be7f972cdd139e2abcd6f66a4890 -SIZE (go/net-mgmt_icingadb/Icinga-icingadb-v1.2.0_GH0/Icinga-icingadb-v1.2.0_GH0.tar.gz) = 3345811 +TIMESTAMP = 1752491323 +SHA256 (go/net-mgmt_icingadb/Icinga-icingadb-v1.4.0_GH0/v1.4.0.mod) = af22816190cdd4935f3dd696a4e98f6b2246d8580460173f126c408299258d3c +SIZE (go/net-mgmt_icingadb/Icinga-icingadb-v1.4.0_GH0/v1.4.0.mod) = 1625 +SHA256 (go/net-mgmt_icingadb/Icinga-icingadb-v1.4.0_GH0/v1.4.0.zip) = eb065d6314499169207e9d47b04714cb5afa858a3fe7b4ce5a5c943295bdf930 +SIZE (go/net-mgmt_icingadb/Icinga-icingadb-v1.4.0_GH0/v1.4.0.zip) = 3354764 +SHA256 (go/net-mgmt_icingadb/Icinga-icingadb-v1.4.0_GH0/Icinga-icingadb-v1.4.0_GH0.tar.gz) = e244998da7c6f817fc590ca0852451a12fee4bc8fda8d3183c4f6c4df1ab38bd +SIZE (go/net-mgmt_icingadb/Icinga-icingadb-v1.4.0_GH0/Icinga-icingadb-v1.4.0_GH0.tar.gz) = 3343081 diff --git a/net-mgmt/icingadb/files/patch-internal_config_config.go b/net-mgmt/icingadb/files/patch-internal_config_config.go new file mode 100644 index 000000000000..418f02d52e51 --- /dev/null +++ b/net-mgmt/icingadb/files/patch-internal_config_config.go @@ -0,0 +1,11 @@ +--- internal/config/config.go.orig 2025-07-14 11:25:55 UTC ++++ internal/config/config.go +@@ -56,7 +56,7 @@ type Flags struct { + Version bool `long:"version" description:"print version and exit"` + + // Config is the path to the config file. If not provided, it defaults to DefaultConfigPath. +- Config string `short:"c" long:"config" description:"path to config file (default: /etc/icingadb/config.yml)"` ++ Config string `short:"c" long:"config" description:"path to config file (default: %%PREFIX%%/etc/icingadb/config.yml)"` + // default must be kept in sync with DefaultConfigPath. + + // DatabaseAutoImport results in an initial schema check and update; mostly for containerized setups. diff --git a/net-mgmt/icingadb/files/patch-pkg_config_config.go b/net-mgmt/icingadb/files/patch-pkg_config_config.go deleted file mode 100644 index 1b5b0066118c..000000000000 --- a/net-mgmt/icingadb/files/patch-pkg_config_config.go +++ /dev/null @@ -1,11 +0,0 @@ ---- pkg/config/config.go.orig 2023-09-08 17:19:58 UTC -+++ pkg/config/config.go -@@ -46,7 +46,7 @@ type Flags struct { - // Version decides whether to just print the version and exit. - Version bool `long:"version" description:"print version and exit"` - // Config is the path to the config file -- Config string `short:"c" long:"config" description:"path to config file" required:"true" default:"/etc/icingadb/config.yml"` -+ Config string `short:"c" long:"config" description:"path to config file" required:"true" default:"%%PREFIX%%/etc/icinga2/icingadb.yml"` - } - - // FromYAMLFile returns a new Config value created from the given YAML config file. diff --git a/net-mgmt/kf6-networkmanager-qt/distinfo b/net-mgmt/kf6-networkmanager-qt/distinfo index 358ec5ca90b5..5bc3d271f506 100644 --- a/net-mgmt/kf6-networkmanager-qt/distinfo +++ b/net-mgmt/kf6-networkmanager-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749476629 -SHA256 (KDE/frameworks/6.15/networkmanager-qt-6.15.0.tar.xz) = ac41786342b106fe7457d414e2d79289c6d720dcfaa58c271c50c8e4a754b39b -SIZE (KDE/frameworks/6.15/networkmanager-qt-6.15.0.tar.xz) = 184072 +TIMESTAMP = 1752529519 +SHA256 (KDE/frameworks/6.16/networkmanager-qt-6.16.0.tar.xz) = b9ed0baa9159cc5aac7651be48a980cc7cb583933c412cef838596128cbd6645 +SIZE (KDE/frameworks/6.16/networkmanager-qt-6.16.0.tar.xz) = 183988 diff --git a/net-mgmt/prometheus3/Makefile b/net-mgmt/prometheus3/Makefile index 12ee3b641d7b..4fe916c8a848 100644 --- a/net-mgmt/prometheus3/Makefile +++ b/net-mgmt/prometheus3/Makefile @@ -1,6 +1,6 @@ PORTNAME= prometheus DISTVERSIONPREFIX= v -DISTVERSION= 3.4.2 +DISTVERSION= 3.5.0 CATEGORIES= net-mgmt MASTER_SITES= https://raw.githubusercontent.com/${GH_ACCOUNT}/${GH_PROJECT}/${DISTVERSIONFULL}/:gomod \ https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/releases/download/${DISTVERSIONFULL}/:ui diff --git a/net-mgmt/prometheus3/distinfo b/net-mgmt/prometheus3/distinfo index d85fef6f523f..6bbba81e5c7f 100644 --- a/net-mgmt/prometheus3/distinfo +++ b/net-mgmt/prometheus3/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1751801683 -SHA256 (go/net-mgmt_prometheus3/prometheus-prometheus-v3.4.2_GH0/go.mod) = 3ed91ee289b2fb7afbfa04428fe90901fb3cd66335335fd92ce33f97f7abcd1b -SIZE (go/net-mgmt_prometheus3/prometheus-prometheus-v3.4.2_GH0/go.mod) = 11087 -SHA256 (go/net-mgmt_prometheus3/prometheus-prometheus-v3.4.2_GH0/prometheus-web-ui-3.4.2.tar.gz) = dda5cfefd69e03fa9ef7db15b099f49cd46082bcc559399a44eddd073391e945 -SIZE (go/net-mgmt_prometheus3/prometheus-prometheus-v3.4.2_GH0/prometheus-web-ui-3.4.2.tar.gz) = 3488170 -SHA256 (go/net-mgmt_prometheus3/prometheus-prometheus-v3.4.2_GH0/prometheus-prometheus-v3.4.2_GH0.tar.gz) = 242fa5c91f41edf6cd68fea1c6cd896f0bf3ae577a45c33ea9af3643dcc71766 -SIZE (go/net-mgmt_prometheus3/prometheus-prometheus-v3.4.2_GH0/prometheus-prometheus-v3.4.2_GH0.tar.gz) = 5078495 +TIMESTAMP = 1752571020 +SHA256 (go/net-mgmt_prometheus3/prometheus-prometheus-v3.5.0_GH0/go.mod) = 6233234ceea2031a75041930e0931abf3e1123194a0ce3ca44c6468782611ba6 +SIZE (go/net-mgmt_prometheus3/prometheus-prometheus-v3.5.0_GH0/go.mod) = 12136 +SHA256 (go/net-mgmt_prometheus3/prometheus-prometheus-v3.5.0_GH0/prometheus-web-ui-3.5.0.tar.gz) = 8fec0e43c9b68e85d9dff0ba6cef29c6ba0cfe19ed54b3ff421a1656674b8abe +SIZE (go/net-mgmt_prometheus3/prometheus-prometheus-v3.5.0_GH0/prometheus-web-ui-3.5.0.tar.gz) = 3488940 +SHA256 (go/net-mgmt_prometheus3/prometheus-prometheus-v3.5.0_GH0/prometheus-prometheus-v3.5.0_GH0.tar.gz) = fadb33c398026e190f9335e90e214065b012b9cb454da121e072697ad307cb47 +SIZE (go/net-mgmt_prometheus3/prometheus-prometheus-v3.5.0_GH0/prometheus-prometheus-v3.5.0_GH0.tar.gz) = 5129940 |