Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 02 May 2026 00:56:46 +0000
From:      Robert Clausecker <fuz@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 4731beeec6f8 - main - www/gitlab-workhorse: fix build on armv7
Message-ID:  <69f54bce.38611.1ef08caf@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=4731beeec6f8dad167fa3b3ff8d4848aea26c2fc

commit 4731beeec6f8dad167fa3b3ff8d4848aea26c2fc
Author:     Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2026-05-02 00:25:23 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2026-05-02 00:32:42 +0000

    www/gitlab-workhorse: fix build on armv7
    
    This cast is a no-op on 64 bit platforms and prevents a type error
    on 32-bit platforms.
    
    Approved by:    portmgr (build fix blanket)
    PR:             2026Q2
---
 www/gitlab-workhorse/files/patch-internal_gitaly_blob.go | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/www/gitlab-workhorse/files/patch-internal_gitaly_blob.go b/www/gitlab-workhorse/files/patch-internal_gitaly_blob.go
new file mode 100644
index 000000000000..e9bfdc1cbe6a
--- /dev/null
+++ b/www/gitlab-workhorse/files/patch-internal_gitaly_blob.go
@@ -0,0 +1,11 @@
+--- internal/gitaly/blob.go.orig	2026-05-02 00:22:07 UTC
++++ internal/gitaly/blob.go
+@@ -70,7 +70,7 @@ func (client *BlobClient) SendListBlobs(ctx context.Co
+ 			return fmt.Errorf("marshal list blobs response: %v", err)
+ 		}
+ 
+-		if len(frame) > math.MaxUint32 {
++		if int64(len(frame)) > math.MaxUint32 {
+ 			return fmt.Errorf("frame too large: %d bytes", len(frame))
+ 		}
+ 


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69f54bce.38611.1ef08caf>