1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Update devel/etcd33 to version 3.3.19; fix build on aarch64 (PR 245147).

PR:		245147
Submitted by:	mikael
This commit is contained in:
Jimmy Olgeni 2020-04-18 14:22:40 +00:00
parent baada29c81
commit 6d0a92f3b7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=532033
3 changed files with 28 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= etcd
PORTVERSION= 3.3.18
PORTVERSION= 3.3.19
DISTVERSIONPREFIX= v
CATEGORIES= devel
PKGNAMEPREFIX= coreos-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1574932969
SHA256 (coreos-etcd-v3.3.18_GH0.tar.gz) = df6bfbf29905b0cf348776c02db1427f4640a849e328dddba3b710cc0c3478ad
SIZE (coreos-etcd-v3.3.18_GH0.tar.gz) = 6508732
TIMESTAMP = 1587218943
SHA256 (coreos-etcd-v3.3.19_GH0.tar.gz) = 3346f428a8929e46a3b15507533da986dd3e4729133efd57b47317b3d98173b3
SIZE (coreos-etcd-v3.3.19_GH0.tar.gz) = 6509566

View File

@ -0,0 +1,24 @@
From 33540a1f603772f9d4b761f416f5c10dade23e96 Mon Sep 17 00:00:00 2001
From: Tobias Klauser <tklauser@distanz.ch>
Date: Fri, 25 Oct 2019 21:13:51 +0200
Subject: [PATCH] unix: don't use non-existing uint128 type on freebsd/arm64
CL 179099 introduced type FpReg on freebsd, on freebsd/arm64 using a
type uint128. This type doesn't exist in Go.
Change-Id: Ie7f065f38f2cc2c163abdfa7dddad886b8edbe3b
Reviewed-on: https://go-review.googlesource.com/c/sys/+/203419
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
--- vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go.orig 2019-08-18 13:42:05 UTC
+++ vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go
@@ -397,7 +397,7 @@ type Reg struct {
}
type FpReg struct {
- Fp_q [32]uint128
+ Fp_q [512]uint8
Fp_sr uint32
Fp_cr uint32
}