From nobody Wed Nov 16 23:02:36 2022 X-Original-To: ports@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4NCJVJ5LHdz4hKMK for ; Wed, 16 Nov 2022 23:02:48 +0000 (UTC) (envelope-from freebsd@funzi.org) Received: from mx.funzi.org (mx.funzi.org [195.201.94.23]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4NCJVJ2djMz485K for ; Wed, 16 Nov 2022 23:02:48 +0000 (UTC) (envelope-from freebsd@funzi.org) Authentication-Results: mx1.freebsd.org; none Received: from mx.funzi.org (mx.funzi.org [192.168.0.2]) by mx.funzi.org (Postfix) with ESMTP id 4NCJV81hV1z2dWd for ; Thu, 17 Nov 2022 00:02:40 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=funzi.org; h= content-transfer-encoding:content-type:in-reply-to:from :references:to:subject:user-agent:mime-version:date:message-id; s=dkim; t=1668639757; x=1669503758; bh=FCJni2rvj1KFr294APQE5+PS AttLi6Zh8ezLHA5NtEU=; b=XOLrn+xWM3i/qAQPc6+YUylDRynLAx5UpckItAYF 0N409A8OSQnIzjPGt+xi/XvrbHtOoeRqXTEqymFpG+18AQeACZmRwP12lAVD3N9M v3qoDVlVkV6Mq6UdiNb/L1nT72ioNq7LDtbDc5mB/Bp7/j/11ZRHK2tagHNV0x6h nlU= Received: from mx.funzi.org ([192.168.0.2]) by mx.funzi.org (mx.funzi.org [192.168.0.2]) (amavisd-new, port 10026) with ESMTP id fK6tKOI67CuO for ; Thu, 17 Nov 2022 00:02:37 +0100 (CET) Received: from [IPV6:2003:de:4f05:6900:7818:28a2:7246:af6c] (p200300De4F056900781828A27246Af6c.dip0.t-ipconnect.de [IPv6:2003:de:4f05:6900:7818:28a2:7246:af6c]) by mx.funzi.org (Postfix) with ESMTPSA id 4NCJV532C2z2dWT; Thu, 17 Nov 2022 00:02:37 +0100 (CET) Message-ID: Date: Thu, 17 Nov 2022 00:02:36 +0100 List-Id: Porting software to FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-ports List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: go modules2tuple confusion - phab https://reviews.freebsd.org/D37414 To: Dave Cottlehuber , FreeBSD Ports References: <2b52b896-7129-47f5-83e2-3571e3940012@app.fastmail.com> From: Christopher Beppler In-Reply-To: <2b52b896-7129-47f5-83e2-3571e3940012@app.fastmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4NCJVJ2djMz485K X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:24940, ipnet:195.201.0.0/16, country:DE] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N Am 16.11.22 um 23:56 schrieb Dave Cottlehuber: > [...] > > I tried bumping go.{mod,sum} to latest commits, without success. > > sysutils/loki has the same module as dependency, but seems to have no trouble > fetching, albeit slightly different patch and paths resulting. > [...] go4org is a bit special. I had the same issue in the loki port as you noticed already. I manually adjusted the line in GH_TUPLE to go4org:go4:d4a079459e60:go4org_go4/vendor/go4.org/intern \ go4org:unsafe-assume-no-moving-gc:928513b29760:go4org_go4_1/vendor/go4.org/unsafe/assume-no-moving-gc 928513b29760 is actually from https://github.com/go4org/unsafe-assume-no-moving-gc but somehow in go.mod referenced as go4org/go4... (maybe gomod-vendor ignores GitHub's redirects but go get doesn't?). Maybe that helps. Best, Christopher