diff options
Diffstat (limited to 'net')
29 files changed, 80 insertions, 572 deletions
diff --git a/net/Makefile b/net/Makefile index 54ac15598827..ce40b0d4c568 100644 --- a/net/Makefile +++ b/net/Makefile @@ -58,7 +58,6 @@ SUBDIR += beacon SUBDIR += beanstalkd SUBDIR += belle-sip - SUBDIR += benthos SUBDIR += bindtest SUBDIR += binkd SUBDIR += bird2 @@ -210,6 +209,7 @@ SUBDIR += gnu-radius SUBDIR += go-bapu SUBDIR += go-cs + SUBDIR += go-pkgsite SUBDIR += go-tcping SUBDIR += gobgp SUBDIR += gofish diff --git a/net/benthos/Makefile b/net/benthos/Makefile deleted file mode 100644 index 6891c88f971f..000000000000 --- a/net/benthos/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -PORTNAME= benthos -DISTVERSIONPREFIX= v -DISTVERSION= 4.27.0 -PORTREVISION= 12 -CATEGORIES= net - -MAINTAINER= olgeni@FreeBSD.org -COMMENT= Stream processor for a wide array of data sources and sinks -WWW= https://www.benthos.dev/ - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE - -DEPRECATED= Superseded by net/redpanda-connect -EXPIRATION_DATE= 2025-09-11 - -USES= go:modules -USE_RC_SUBR= benthos - -GO_MODULE= github.com/benthosdev/benthos/v4 -GO_TARGET= ./cmd/benthos - -USERS= benthos -GROUPS= benthos - -PLIST_FILES= bin/benthos \ - "@dir(,,755) %%ETCDIR%%" \ - "@sample %%ETCDIR%%/config.yaml.sample" - -post-install: - @${MKDIR} ${STAGEDIR}${ETCDIR} - ${INSTALL_DATA} ${FILESDIR}/config.yaml ${STAGEDIR}${ETCDIR}/config.yaml.sample - -.include <bsd.port.mk> diff --git a/net/benthos/distinfo b/net/benthos/distinfo deleted file mode 100644 index f011bc43a9b7..000000000000 --- a/net/benthos/distinfo +++ /dev/null @@ -1,5 +0,0 @@ -TIMESTAMP = 1714921213 -SHA256 (go/net_benthos/benthos-v4.27.0/v4.27.0.mod) = 8fbe69c73f2e5da6b0169269b175adfe0edb34b33b401162960d04ef455933eb -SIZE (go/net_benthos/benthos-v4.27.0/v4.27.0.mod) = 17442 -SHA256 (go/net_benthos/benthos-v4.27.0/v4.27.0.zip) = 94b8ad0e6f6feb7138391c96580e9a3482f1a5e0f8631d4839ebd182b935e21e -SIZE (go/net_benthos/benthos-v4.27.0/v4.27.0.zip) = 3980482 diff --git a/net/benthos/files/benthos.in b/net/benthos/files/benthos.in deleted file mode 100644 index e042c13e5896..000000000000 --- a/net/benthos/files/benthos.in +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh -# -# PROVIDE: benthos -# REQUIRE: DAEMON -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf to run NATS: -# -# benthos_enable (bool): Set it to "YES" to enable benthos. -# Default is "NO". -# benthos_user: User name to run as. default "benthos" -# benthos_group: Group name to run as. default "benthos" -# benthos_resources: Path to benthos resources files (glob). -# benthos_config: Path to benthos configuration file. -# benthos_watcher (bool): Set it to "YES" to enable benthos watcher mode. -# Default is "NO". -# benthos_options: Options to pass benthos -# (e.g. 'streams' for streams mode). -# - -. /etc/rc.subr - -name=benthos -rcvar=`set_rcvar` - -load_rc_config ${name} - -: ${benthos_enable:=NO} -: ${benthos_user:=benthos} -: ${benthos_group:=benthos} -: ${benthos_resources:=""} -: ${benthos_config:="%%PREFIX%%/etc/benthos/config.yaml"} -: ${benthos_watcher:=NO} -: ${benthos_options=""} - -if [ -n "${benthos_resources}" ]; then - benthos_options="--resources '${benthos_resources}' ${benthos_options}" -fi - -if [ -n "${benthos_config}" ]; then - benthos_options="--config ${benthos_config} ${benthos_options}" -fi - -if checkyesno benthos_watcher; then - benthos_options="--watcher ${benthos_options}" -fi - -start_precmd=benthos_start_precmd - -pidfile="/var/run/${name}.pid" -procname=%%PREFIX%%/bin/benthos -command=/usr/sbin/daemon -command_args="-p ${pidfile} ${procname} ${benthos_options}" - -benthos_start_precmd() -{ - install -o ${benthos_user} -g ${benthos_group} /dev/null ${pidfile} -} - -run_rc_command "$1" diff --git a/net/benthos/files/config.yaml b/net/benthos/files/config.yaml deleted file mode 100644 index 9cd7eb3128b1..000000000000 --- a/net/benthos/files/config.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Sample configuration file for Benthos. It saves all messages to a file (/tmp/benthos.txt). -http: - enabled: true - address: 127.0.0.1:4195 - root_path: / - debug_endpoints: false -input: - http_server: - path: /post - ws_path: /post/ws - ws_welcome_message: "Welcome to the Benthos Websocket API." - allowed_verbs: - - POST - timeout: 5s - cors: - enabled: false - allowed_origins: [] - sync_response: - status: "200" - headers: - Content-Type: application/octet-stream -output: - file: - path: /tmp/benthos.txt - codec: lines -shutdown_delay: 0s -shutdown_timeout: 20s diff --git a/net/benthos/files/patch-redis-port b/net/benthos/files/patch-redis-port deleted file mode 100644 index f5459772e9ba..000000000000 --- a/net/benthos/files/patch-redis-port +++ /dev/null @@ -1,387 +0,0 @@ -diff --git internal/impl/redis/client.go internal/impl/redis/client.go -index eeadf575b..a078c3a81 100644 ---- internal/impl/redis/client.go -+++ internal/impl/redis/client.go -@@ -21,7 +21,7 @@ Some cloud hosted instances of Redis (such as Azure Cache) might need some hand - return []*service.ConfigField{ - service.NewURLField("url"). - Description("The URL of the target Redis server. Database is optional and is supplied as the URL path."). -- Example("redis://:6397"). -+ Example("redis://:6379"). - Example("redis://localhost:6379"). - Example("redis://foousername:foopassword@redisplace:6379"). - Example("redis://:foopassword@redisplace:6379"). -diff --git website/docs/components/caches/redis.md website/docs/components/caches/redis.md -index 4ee3d8b74..eefed0bde 100644 ---- website/docs/components/caches/redis.md -+++ website/docs/components/caches/redis.md -@@ -28,7 +28,7 @@ Use a Redis instance as a cache. The expiration can be set to zero or an empty s - # Common config fields, showing default values - label: "" - redis: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - prefix: "" # No default (optional) - ``` - -@@ -39,7 +39,7 @@ redis: - # All config fields, showing default values - label: "" - redis: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -72,7 +72,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/inputs/redis_list.md website/docs/components/inputs/redis_list.md -index 8dd9aacff..456ecdf57 100644 ---- website/docs/components/inputs/redis_list.md -+++ website/docs/components/inputs/redis_list.md -@@ -30,7 +30,7 @@ Pops messages from the beginning of a Redis list using the BLPop command. - input: - label: "" - redis_list: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - key: "" # No default (required) - auto_replay_nacks: true - ``` -@@ -43,7 +43,7 @@ input: - input: - label: "" - redis_list: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -75,7 +75,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/inputs/redis_pubsub.md website/docs/components/inputs/redis_pubsub.md -index 2efe5dda5..87e490aa3 100644 ---- website/docs/components/inputs/redis_pubsub.md -+++ website/docs/components/inputs/redis_pubsub.md -@@ -30,7 +30,7 @@ Consume from a Redis publish/subscribe channel using either the SUBSCRIBE or PSU - input: - label: "" - redis_pubsub: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - channels: [] # No default (required) - use_patterns: false - auto_replay_nacks: true -@@ -44,7 +44,7 @@ input: - input: - label: "" - redis_pubsub: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -82,7 +82,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/inputs/redis_scan.md website/docs/components/inputs/redis_scan.md -index 5384f7893..43ecc08ee 100644 ---- website/docs/components/inputs/redis_scan.md -+++ website/docs/components/inputs/redis_scan.md -@@ -35,7 +35,7 @@ Introduced in version 4.27.0. - input: - label: "" - redis_scan: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - auto_replay_nacks: true - match: "" - ``` -@@ -48,7 +48,7 @@ input: - input: - label: "" - redis_scan: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -88,7 +88,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/inputs/redis_streams.md website/docs/components/inputs/redis_streams.md -index 9d72ea90d..d25b6223b 100644 ---- website/docs/components/inputs/redis_streams.md -+++ website/docs/components/inputs/redis_streams.md -@@ -30,7 +30,7 @@ Pulls messages from Redis (v5.0+) streams with the XREADGROUP command. The `clie - input: - label: "" - redis_streams: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - body_key: body - streams: [] # No default (required) - auto_replay_nacks: true -@@ -47,7 +47,7 @@ input: - input: - label: "" - redis_streams: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -86,7 +86,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/outputs/redis_hash.md website/docs/components/outputs/redis_hash.md -index 808dd5c60..3bf96bbea 100644 ---- website/docs/components/outputs/redis_hash.md -+++ website/docs/components/outputs/redis_hash.md -@@ -30,7 +30,7 @@ Sets Redis hash objects using the HMSET command. - output: - label: "" - redis_hash: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - key: ${! @.kafka_key )} # No default (required) - walk_metadata: false - walk_json_object: false -@@ -46,7 +46,7 @@ output: - output: - label: "" - redis_hash: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -111,7 +111,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/outputs/redis_list.md website/docs/components/outputs/redis_list.md -index c22103ca1..8663d4009 100644 ---- website/docs/components/outputs/redis_list.md -+++ website/docs/components/outputs/redis_list.md -@@ -30,7 +30,7 @@ Pushes messages onto the end of a Redis list (which is created if it doesn't alr - output: - label: "" - redis_list: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - key: some_list # No default (required) - max_in_flight: 64 - batching: -@@ -48,7 +48,7 @@ output: - output: - label: "" - redis_list: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -96,7 +96,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/outputs/redis_pubsub.md website/docs/components/outputs/redis_pubsub.md -index a3c671522..c8cbbc6ae 100644 ---- website/docs/components/outputs/redis_pubsub.md -+++ website/docs/components/outputs/redis_pubsub.md -@@ -30,7 +30,7 @@ Publishes messages through the Redis PubSub model. It is not possible to guarant - output: - label: "" - redis_pubsub: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - channel: "" # No default (required) - max_in_flight: 64 - batching: -@@ -48,7 +48,7 @@ output: - output: - label: "" - redis_pubsub: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -95,7 +95,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/outputs/redis_streams.md website/docs/components/outputs/redis_streams.md -index 282336be1..aa9b9688c 100644 ---- website/docs/components/outputs/redis_streams.md -+++ website/docs/components/outputs/redis_streams.md -@@ -30,7 +30,7 @@ Pushes messages to a Redis (v5.0+) Stream (which is created if it doesn't alread - output: - label: "" - redis_streams: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - stream: "" # No default (required) - body_key: body - max_length: 0 -@@ -52,7 +52,7 @@ output: - output: - label: "" - redis_streams: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -105,7 +105,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/processors/redis.md website/docs/components/processors/redis.md -index 814426078..e30b95b8e 100644 ---- website/docs/components/processors/redis.md -+++ website/docs/components/processors/redis.md -@@ -30,7 +30,7 @@ performed for each message and the message contents are replaced with the result - # Common config fields, showing default values - label: "" - redis: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - command: scard # No default (optional) - args_mapping: root = [ this.key ] # No default (optional) - ``` -@@ -42,7 +42,7 @@ redis: - # All config fields, showing default values - label: "" - redis: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -134,7 +134,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/processors/redis_script.md website/docs/components/processors/redis_script.md -index 3bb5665f5..10b1a05c7 100644 ---- website/docs/components/processors/redis_script.md -+++ website/docs/components/processors/redis_script.md -@@ -34,7 +34,7 @@ Introduced in version 4.11.0. - # Common config fields, showing default values - label: "" - redis_script: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - script: return redis.call('set', KEYS[1], ARGV[1]) # No default (required) - args_mapping: root = [ this.key ] # No default (required) - keys_mapping: root = [ this.key ] # No default (required) -@@ -47,7 +47,7 @@ redis_script: - # All config fields, showing default values - label: "" - redis_script: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -115,7 +115,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - -diff --git website/docs/components/rate_limits/redis.md website/docs/components/rate_limits/redis.md -index 36c611b5e..4ef3fa968 100644 ---- website/docs/components/rate_limits/redis.md -+++ website/docs/components/rate_limits/redis.md -@@ -33,7 +33,7 @@ Introduced in version 4.12.0. - # Common config fields, showing default values - label: "" - redis: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - count: 1000 - interval: 1s - key: "" # No default (required) -@@ -46,7 +46,7 @@ redis: - # All config fields, showing default values - label: "" - redis: -- url: redis://:6397 # No default (required) -+ url: redis://:6379 # No default (required) - kind: simple - master: "" - tls: -@@ -76,7 +76,7 @@ Type: `string` - ```yml - # Examples - --url: redis://:6397 -+url: redis://:6379 - - url: redis://localhost:6379 - --- -2.45.1 diff --git a/net/benthos/pkg-descr b/net/benthos/pkg-descr deleted file mode 100644 index 85ca5f5a8c02..000000000000 --- a/net/benthos/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -Benthos solves common data engineering tasks such as transformations, -integrations, and multiplexing with declarative and unit testable -configuration. This allows you to easily and incrementally adapt your data -pipelines as requirements change, letting you focus on the more exciting stuff. - -It comes armed with a wide range of processors, a lit mapping language, -stateless windowed processing capabilities and an industry leading mascot. - -Benthos is able to glue a wide range of sources and sinks together and hook -into a variety of databases, caches, HTTP APIs, lambdas and more, enabling you -to seamlessly drop it into your existing infrastructure. - -Working with disparate APIs and services can be a daunting task, doubly so in a -streaming data context. With Benthos it's possible to break these tasks down -and automatically parallelize them as a streaming workflow. diff --git a/net/bird2/Makefile b/net/bird2/Makefile index 308eb8a9324b..512c5c3de83e 100644 --- a/net/bird2/Makefile +++ b/net/bird2/Makefile @@ -1,5 +1,6 @@ PORTNAME= bird DISTVERSION= 2.17.2 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= https://bird.nic.cz/download/ PKGNAMESUFFIX= 2 diff --git a/net/bird2/files/bird.in b/net/bird2/files/bird.in index 91932c656db9..3dcf37f8cf31 100644 --- a/net/bird2/files/bird.in +++ b/net/bird2/files/bird.in @@ -1,7 +1,7 @@ #!/bin/sh # PROVIDE: bird dynamicrouting -# REQUIRE: DAEMONS +# REQUIRE: DAEMON # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf diff --git a/net/bird3/Makefile b/net/bird3/Makefile index 4ac5d93bd9e2..acc42e457cd8 100644 --- a/net/bird3/Makefile +++ b/net/bird3/Makefile @@ -1,6 +1,6 @@ PORTNAME= bird DISTVERSION= 3.1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= https://bird.nic.cz/download/ PKGNAMESUFFIX= 3 diff --git a/net/bird3/files/bird.in b/net/bird3/files/bird.in index 91932c656db9..3dcf37f8cf31 100644 --- a/net/bird3/files/bird.in +++ b/net/bird3/files/bird.in @@ -1,7 +1,7 @@ #!/bin/sh # PROVIDE: bird dynamicrouting -# REQUIRE: DAEMONS +# REQUIRE: DAEMON # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf diff --git a/net/gitlab-agent/distinfo b/net/gitlab-agent/distinfo index aea0647c6a30..fb56d6e5b963 100644 --- a/net/gitlab-agent/distinfo +++ b/net/gitlab-agent/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1756438001 -SHA256 (go/net_gitlab-agent/gitlab-agent-v18.3.1/v18.3.1.mod) = 2ec01cce9df32ed086dd50ebf5d7d120d6edffe83b9ea78dbfba19d1e92d77d2 -SIZE (go/net_gitlab-agent/gitlab-agent-v18.3.1/v18.3.1.mod) = 10172 -SHA256 (go/net_gitlab-agent/gitlab-agent-v18.3.1/v18.3.1.zip) = d10e44c56f6d9745cfba2c71af76fae4811423ec1020b057dd8a0fcb9ee6abf5 -SIZE (go/net_gitlab-agent/gitlab-agent-v18.3.1/v18.3.1.zip) = 1790288 +TIMESTAMP = 1757515079 +SHA256 (go/net_gitlab-agent/gitlab-agent-v18.3.2/v18.3.2.mod) = 2ec01cce9df32ed086dd50ebf5d7d120d6edffe83b9ea78dbfba19d1e92d77d2 +SIZE (go/net_gitlab-agent/gitlab-agent-v18.3.2/v18.3.2.mod) = 10172 +SHA256 (go/net_gitlab-agent/gitlab-agent-v18.3.2/v18.3.2.zip) = add7d43e69941630d57b3d531140ee001ab678633ec887ed7db9b681e1bf6356 +SIZE (go/net_gitlab-agent/gitlab-agent-v18.3.2/v18.3.2.zip) = 1790413 diff --git a/net/go-pkgsite/Makefile b/net/go-pkgsite/Makefile new file mode 100644 index 000000000000..b2b61f26b478 --- /dev/null +++ b/net/go-pkgsite/Makefile @@ -0,0 +1,20 @@ +PORTNAME= go-pkgsite +PORTVERSION= ${MODVERSION:S/-/./g:R} +DISTVERSIONPREFIX= v +CATEGORIES= net devel + +MAINTAINER= fuz@FreeBSD.org +COMMENT= Go documentation server +WWW= https://pkg.go.dev/golang.org/x/pkgsite/cmd/pkgsite + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go:modules +MODVERSION= 0.0.0-20250911091732-133263251ca1 +GO_MODULE= golang.org/x/pkgsite@v${MODVERSION} + +GO_TARGET= ./cmd/pkgsite +PLIST_FILES= ${GO_TARGET:T:S,^,bin/,} + +.include <bsd.port.mk> diff --git a/net/go-pkgsite/distinfo b/net/go-pkgsite/distinfo new file mode 100644 index 000000000000..2fc39fe9d221 --- /dev/null +++ b/net/go-pkgsite/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1757583687 +SHA256 (go/net_go-pkgsite/go-pkgsite-v0.0.0.20250911091732/v0.0.0-20250911091732-133263251ca1.mod) = 1b88b6c23acd887da7959fd300005054c6b4bfa27a3a2dbe94a3f64b83dbc44a +SIZE (go/net_go-pkgsite/go-pkgsite-v0.0.0.20250911091732/v0.0.0-20250911091732-133263251ca1.mod) = 4186 +SHA256 (go/net_go-pkgsite/go-pkgsite-v0.0.0.20250911091732/v0.0.0-20250911091732-133263251ca1.zip) = 03656cb8192c9f2737236b341eba49e97fdb110616ceced77a814c5829fc8762 +SIZE (go/net_go-pkgsite/go-pkgsite-v0.0.0.20250911091732/v0.0.0-20250911091732-133263251ca1.zip) = 22903231 diff --git a/net/go-pkgsite/pkg-descr b/net/go-pkgsite/pkg-descr new file mode 100644 index 000000000000..cb6b538f198d --- /dev/null +++ b/net/go-pkgsite/pkg-descr @@ -0,0 +1,9 @@ +The pkgsite program extracts and generates documentation for Go projects. + +Example usage: + +$ go install golang.org/x/pkgsite/cmd/pkgsite@latest +$ cd myproject +$ pkgsite -open . + +For more information, see the pkgsite documentation. diff --git a/net/google-cloud-sdk/Makefile b/net/google-cloud-sdk/Makefile index a614e12f96eb..656019e11b9b 100644 --- a/net/google-cloud-sdk/Makefile +++ b/net/google-cloud-sdk/Makefile @@ -1,5 +1,5 @@ PORTNAME= google-cloud-sdk -DISTVERSION= 537.0.0 +DISTVERSION= 538.0.0 CATEGORIES= net MASTER_SITES= https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/ DISTNAME= google-cloud-sdk-${PORTVERSION}-linux-x86_64 diff --git a/net/google-cloud-sdk/distinfo b/net/google-cloud-sdk/distinfo index f04b602fa40d..089885917eed 100644 --- a/net/google-cloud-sdk/distinfo +++ b/net/google-cloud-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756963201 -SHA256 (google-cloud-sdk-537.0.0-linux-x86_64.tar.gz) = 968ddb4ee4bd700a9d900fb6f8e72b81a2c4ce044336bc5dd1ba7caa820b4220 -SIZE (google-cloud-sdk-537.0.0-linux-x86_64.tar.gz) = 150058003 +TIMESTAMP = 1757500447 +SHA256 (google-cloud-sdk-538.0.0-linux-x86_64.tar.gz) = 534e21ea7c030682326be9079dfe4c83b02c253807500284dad5621947b54a4f +SIZE (google-cloud-sdk-538.0.0-linux-x86_64.tar.gz) = 150207442 diff --git a/net/k6/Makefile b/net/k6/Makefile index c89fc4c9a9f1..37417257d2f7 100644 --- a/net/k6/Makefile +++ b/net/k6/Makefile @@ -1,6 +1,6 @@ PORTNAME= k6 DISTVERSIONPREFIX= v -DISTVERSION= 1.1.0 +DISTVERSION= 1.2.3 CATEGORIES= net MAINTAINER= dutra@FreeBSD.org @@ -15,7 +15,7 @@ USES= go:1.23,modules NOT_FOR_ARCHS= armv6 armv7 i386 _BUILD_DATE= $$(date -u +"%FT%T%z") -_BUILD_HASH= 0e3fb95 +_BUILD_HASH= e4a5a88 GO_MODULE= github.com/grafana/${PORTNAME} GO_BUILDFLAGS= -ldflags "\ diff --git a/net/k6/distinfo b/net/k6/distinfo index bfd40ad730cd..2a05dd134e13 100644 --- a/net/k6/distinfo +++ b/net/k6/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1754462204 -SHA256 (go/net_k6/k6-v1.1.0/v1.1.0.mod) = 98bc87fe695d7ae9339140a3d69faf3b749157ba0e6dedff097524713c224783 -SIZE (go/net_k6/k6-v1.1.0/v1.1.0.mod) = 4783 -SHA256 (go/net_k6/k6-v1.1.0/v1.1.0.zip) = 6f899cba933e2b30834026fcc3d99d0d65400d824e08dd341f277a5fea332f67 -SIZE (go/net_k6/k6-v1.1.0/v1.1.0.zip) = 2489096 +TIMESTAMP = 1757541625 +SHA256 (go/net_k6/k6-v1.2.3/v1.2.3.mod) = 50935e629f9184ccc89cca5576744e7ac1cd5ad144fe6f3aa2f064b5715c81a7 +SIZE (go/net_k6/k6-v1.2.3/v1.2.3.mod) = 4835 +SHA256 (go/net_k6/k6-v1.2.3/v1.2.3.zip) = 7a151262814943519f4d1d659645f550cfce3b280dc056503708bdb07f0e0303 +SIZE (go/net_k6/k6-v1.2.3/v1.2.3.zip) = 2553294 diff --git a/net/ooni-probe-cli/Makefile b/net/ooni-probe-cli/Makefile index 828cd8b3bfe9..28f8f01075aa 100644 --- a/net/ooni-probe-cli/Makefile +++ b/net/ooni-probe-cli/Makefile @@ -1,7 +1,7 @@ -PORTNAME= ooni-probe-cli +PORTNAME= ooni-probe-cli DISTVERSIONPREFIX= v -DISTVERSION= 3.27.0 -CATEGORIES= net www benchmarks +DISTVERSION= 3.27.0 +CATEGORIES= net www benchmarks MAINTAINER= rene@FreeBSD.org COMMENT= Next generation OONI Probe CLI @@ -14,9 +14,11 @@ RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss USES= go:1.24,modules -GO_BUILDFLAGS= -ldflags '-s -w -extldflags "-static"' GO_MODULE= github.com/ooni/probe-cli/v3 GO_TARGET= ./cmd/ooniprobe +GO_BUILDFLAGS= -ldflags '-s -w -extldflags "-static"' + +PIE_UNSAFE= yes PLIST_FILES= bin/ooniprobe diff --git a/net/p5-Net-SIP/Makefile b/net/p5-Net-SIP/Makefile index 400a9e0eb35c..917a547c45b6 100644 --- a/net/p5-Net-SIP/Makefile +++ b/net/p5-Net-SIP/Makefile @@ -1,5 +1,5 @@ PORTNAME= Net-SIP -PORTVERSION= 0.838 +PORTVERSION= 0.839 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/net/p5-Net-SIP/distinfo b/net/p5-Net-SIP/distinfo index 54c8008b0381..34b75dc99387 100644 --- a/net/p5-Net-SIP/distinfo +++ b/net/p5-Net-SIP/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1722798895 -SHA256 (Net-SIP-0.838.tar.gz) = ab0f7a04c3643a46f4bca0f95dfaa6a2abdae1d02f9dfcf9232b11f02545c8e1 -SIZE (Net-SIP-0.838.tar.gz) = 226360 +TIMESTAMP = 1757519621 +SHA256 (Net-SIP-0.839.tar.gz) = db1c8ec7dd61a503ef570eb84adc88f5f77ea1bcd41461ca3147178c98858b9e +SIZE (Net-SIP-0.839.tar.gz) = 226488 diff --git a/net/py-trio/Makefile b/net/py-trio/Makefile index 763830adc7c2..51bc044d5ae2 100644 --- a/net/py-trio/Makefile +++ b/net/py-trio/Makefile @@ -1,5 +1,5 @@ PORTNAME= trio -DISTVERSION= 0.30.0 +DISTVERSION= 0.31.0 CATEGORIES= net python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net/py-trio/distinfo b/net/py-trio/distinfo index 4f362c072a8e..b72cb2c3c2c0 100644 --- a/net/py-trio/distinfo +++ b/net/py-trio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751099025 -SHA256 (trio-0.30.0.tar.gz) = 0781c857c0c81f8f51e0089929a26b5bb63d57f927728a5586f7e36171f064df -SIZE (trio-0.30.0.tar.gz) = 593776 +TIMESTAMP = 1757533083 +SHA256 (trio-0.31.0.tar.gz) = f71d551ccaa79d0cb73017a33ef3264fde8335728eb4c6391451fe5d253a9d5b +SIZE (trio-0.31.0.tar.gz) = 605825 diff --git a/net/rubygem-gitlab-kas-grpc/distinfo b/net/rubygem-gitlab-kas-grpc/distinfo index 60540f0318be..c95fb62ddfda 100644 --- a/net/rubygem-gitlab-kas-grpc/distinfo +++ b/net/rubygem-gitlab-kas-grpc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756438025 -SHA256 (rubygem/gitlab-kas-grpc-18.3.1.gem) = d8d1e3dc55a7f383184c76c5878adf49604b06411b95031128ac357a2a2b3e51 -SIZE (rubygem/gitlab-kas-grpc-18.3.1.gem) = 10752 +TIMESTAMP = 1757515093 +SHA256 (rubygem/gitlab-kas-grpc-18.3.2.gem) = a82f94ad62c789dcfb18ad19d675c4fbf2b090ec9fb7f650bd433ce6dd5d12cc +SIZE (rubygem/gitlab-kas-grpc-18.3.2.gem) = 10752 diff --git a/net/sslh/Makefile b/net/sslh/Makefile index d36a67944b15..3f91c755a15b 100644 --- a/net/sslh/Makefile +++ b/net/sslh/Makefile @@ -1,5 +1,5 @@ PORTNAME= sslh -PORTVERSION= 2.2.4 +PORTVERSION= 2.3.0 DISTVERSIONPREFIX= v CATEGORIES= net diff --git a/net/sslh/distinfo b/net/sslh/distinfo index 740173560392..d4f50e757931 100644 --- a/net/sslh/distinfo +++ b/net/sslh/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1748463189 -SHA256 (yrutschle-sslh-v2.2.4_GH0.tar.gz) = e8aa59b4f190a89087eac2ec4e0f44f75d19767bb879907df11c142fa6a7d0d1 -SIZE (yrutschle-sslh-v2.2.4_GH0.tar.gz) = 514918 +TIMESTAMP = 1757609334 +SHA256 (yrutschle-sslh-v2.3.0_GH0.tar.gz) = d9e1ca6a392ace2aad9e9b9df8a6391c9332c95df81790df944488b7011a37a0 +SIZE (yrutschle-sslh-v2.3.0_GH0.tar.gz) = 533138 diff --git a/net/traefik/Makefile b/net/traefik/Makefile index 204a9b4226ac..7e49c48a4e40 100644 --- a/net/traefik/Makefile +++ b/net/traefik/Makefile @@ -1,6 +1,5 @@ PORTNAME= traefik -PORTVERSION= 3.4.5 -PORTREVISION= 2 +PORTVERSION= 3.5.2 CATEGORIES= net MASTER_SITES= LOCAL/riggs/${PORTNAME} diff --git a/net/traefik/distinfo b/net/traefik/distinfo index 2aa96457bfc1..eeaa76ed17d2 100644 --- a/net/traefik/distinfo +++ b/net/traefik/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1753538104 -SHA256 (traefik-3.4.5.tar.xz) = 3754c36ac0cb29879407a9b80399a1cb4effd95627ef7fb76f9c7e83007094f5 -SIZE (traefik-3.4.5.tar.xz) = 28590920 +TIMESTAMP = 1757583418 +SHA256 (traefik-3.5.2.tar.xz) = e5752b805931e058842383e8c1c6bc08dbcebefdd1f9c1ab49b0657c5ebbcdf9 +SIZE (traefik-3.5.2.tar.xz) = 25123884 |