From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 26FC115800A for ; Tue, 8 Aug 2023 05:27:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C3E02BC013; Tue, 8 Aug 2023 05:27:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 527D32BC013 for ; Tue, 8 Aug 2023 05:27:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 94FAB335D43 for ; Tue, 8 Aug 2023 05:27:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 344D7F29 for ; Tue, 8 Aug 2023 05:27:28 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1691472403.00cfa1f2bd735773fac6f9b0cba820c0205e364c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-lfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-lfs/git-lfs-9999.ebuild X-VCS-Directories: dev-vcs/git-lfs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 00cfa1f2bd735773fac6f9b0cba820c0205e364c X-VCS-Branch: master Date: Tue, 8 Aug 2023 05:27:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 58f77a66-511d-44c3-a30f-e1e079d58387 X-Archives-Hash: 2d6cbfe68eca5315b2d973819c1f9593 commit: 00cfa1f2bd735773fac6f9b0cba820c0205e364c Author: Nils Freydank posteo de> AuthorDate: Sat Jul 29 12:20:56 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Aug 8 05:26:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00cfa1f2 dev-vcs/git-lfs: Update the live ebuild Update the SRC_URI archive in this file, too to allow renaming into the next version. (And add the other stuff from 3.4.0 aswell.) Signed-off-by: Nils Freydank posteo.de> Signed-off-by: Sam James gentoo.org> dev-vcs/git-lfs/git-lfs-9999.ebuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/dev-vcs/git-lfs/git-lfs-9999.ebuild b/dev-vcs/git-lfs/git-lfs-9999.ebuild index 7b98fd42b0f3..10b83717c479 100644 --- a/dev-vcs/git-lfs/git-lfs-9999.ebuild +++ b/dev-vcs/git-lfs/git-lfs-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 EGO_PN=github.com/git-lfs/git-lfs # Update the ID as it's included in each build. -COMMIT_ID="77deabdf9a18f8a07ecfd3e0f4aa572ffbbab8d4" +COMMIT_ID="d06d6e9efd78ff4f958b072146ce167d87f60285" inherit go-module @@ -18,9 +18,15 @@ if [[ "${PV}" = 9999* ]]; then EGIT_REPO_URI="https://${EGO_PN}" inherit git-r3 else - SRC_URI="https://${EGO_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://${EGO_PN}/releases/download/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz" # Add the manually vendored tarball. - # Compress the tarball with: xz -9kT0 --memlimit-decompress=256M + # 1) Create a tar archive optimized to reproduced by other users or devs. + # 2) Compress the archive using XZ limiting decompression memory for + # pretty constraint systems. + # Use something like: + # tar cf $P-deps.tar go-mod \ + # --mtime="1970-01-01" --sort=name --owner=portage --group=portage + # xz -k -9eT0 --memlimit-decompress=256M $P-deps.tar SRC_URI+=" https://files.holgersson.xyz/gentoo/distfiles/golang-pkg-deps/${P}-deps.tar.xz" KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" fi