View | Details | Raw Unified | Return to bug 252668
Collapse All | Expand All

(-)UPDATING (+20 lines)
Lines 5-10 Link Here
5
You should get into the habit of checking this file for changes each time
5
You should get into the habit of checking this file for changes each time
6
you update your ports collection, before attempting any port upgrades.
6
you update your ports collection, before attempting any port upgrades.
7
7
8
20210114:
9
  AFFECTS: users of net-im/matterircd
10
  AUTHOR: norrland@nullbyte.se
11
12
  Commandline switches
13
14
  Switched to viper for cmdline parsing, which does not support "short" flags.
15
  You'll need to use --flag instead of -flag. Eg ./matterircd --debug
16
  Bridge specific configuration is now only in configuration file. This means
17
  the following flags have been removed: -restrict,-mmteam,-mmserver,
18
  -mminsecure,-mmskiptlsverify.
19
  You can set those in matterircd.toml, see the example file.
20
21
  Config changes
22
23
  BlacklistUser feature for slack has been renamed to DenyUsers.
24
  JoinMpImOnTalk feature has been renamed to JoinDM and is available for
25
  slack/mattermost
26
  JoinInclude, JoinExclude now support regexp (see matterircd.toml.example)
27
8
20210113:
28
20210113:
9
  AFFECTS: users of databases/redis[-devel]
29
  AFFECTS: users of databases/redis[-devel]
10
  AUTHOR: osa@FreeBSD.org
30
  AUTHOR: osa@FreeBSD.org
(-)net-im/matterircd/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
2
3
PORTNAME=	matterircd
3
PORTNAME=	matterircd
4
DISTVERSIONPREFIX=	v
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	0.19.4
5
DISTVERSION=	0.22.0
6
CATEGORIES=	net-im irc
6
CATEGORIES=	net-im irc
7
7
8
MAINTAINER=	norrland@nullbyte.se
8
MAINTAINER=	norrland@nullbyte.se
(-)net-im/matterircd/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1585674650
1
TIMESTAMP = 1610626865
2
SHA256 (42wim-matterircd-v0.19.4_GH0.tar.gz) = 5175b8970e22f218a9aff16f0ec5677efb9d13f7af5d895c1a079d09c29809c4
2
SHA256 (42wim-matterircd-v0.22.0_GH0.tar.gz) = f3bdb5aa9904a63fd6c52fa35ab4e8e916d54ac8c5bea5ceb3e49168e677c61e
3
SIZE (42wim-matterircd-v0.19.4_GH0.tar.gz) = 2234367
3
SIZE (42wim-matterircd-v0.22.0_GH0.tar.gz) = 2580639
(-)net-im/matterircd/files/patch-vendor_golang.org_x_sys_unix_ztypes__freebsd__arm64.go (-24 lines)
Lines 1-24 Link Here
1
From 33540a1f603772f9d4b761f416f5c10dade23e96 Mon Sep 17 00:00:00 2001
2
From: Tobias Klauser <tklauser@distanz.ch>
3
Date: Fri, 25 Oct 2019 21:13:51 +0200
4
Subject: [PATCH] unix: don't use non-existing uint128 type on freebsd/arm64
5
6
CL 179099 introduced type FpReg on freebsd, on freebsd/arm64 using a
7
type uint128. This type doesn't exist in Go.
8
9
Change-Id: Ie7f065f38f2cc2c163abdfa7dddad886b8edbe3b
10
Reviewed-on: https://go-review.googlesource.com/c/sys/+/203419
11
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
12
TryBot-Result: Gobot Gobot <gobot@golang.org>
13
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
14
--- vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go.orig	2019-08-18 13:42:05 UTC
15
+++ vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go
16
@@ -397,7 +397,7 @@ type Reg struct {
17
 }
18
 
19
 type FpReg struct {
20
-	Fp_q  [32]uint128
21
+	Fp_q  [512]uint8
22
 	Fp_sr uint32
23
 	Fp_cr uint32
24
 }

Return to bug 252668