From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/packer/
Date: Mon, 31 Mar 2025 12:58:05 +0000 (UTC) [thread overview]
Message-ID: <1743425859.9ff2b299dc86af5abd34c8b1a792e0c8dd2fd402.juippis@gentoo> (raw)
commit: 9ff2b299dc86af5abd34c8b1a792e0c8dd2fd402
Author: Marcos Rodrigues Gonzalez <neutroniak <AT> gmail <DOT> com>
AuthorDate: Tue Jan 28 02:54:27 2025 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Mar 31 12:57:39 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ff2b299
dev-util/packer: add 1.12.0
Signed-off-by: Marcos Rodrigues Gonzalez <neutroniak <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/40339
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-util/packer/Manifest | 2 ++
dev-util/packer/packer-1.12.0.ebuild | 35 +++++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
diff --git a/dev-util/packer/Manifest b/dev-util/packer/Manifest
index 6e5c6af3b327..cec30a659ac4 100644
--- a/dev-util/packer/Manifest
+++ b/dev-util/packer/Manifest
@@ -1,4 +1,6 @@
DIST packer-1.11.0-deps.tar.xz 274685472 BLAKE2B 211e076e5032c5199597bda8d05a4f13d15db321d78f58ac3e5775f8ba16b0bd7dd348a396bb6bed41c039924d288e5ea6abd5a140558f25d1edbc75d39c4ba0 SHA512 200d2aa56b834202bd3b1506991f6ea4686e95345fed09eea923fbf00577d8ac2454cfd567c89926b9e99f777203b3ee908c30a4d9f7e71f2370061f09d53603
DIST packer-1.11.0.tar.gz 2296683 BLAKE2B 8b8eee2294109d305b94186829995f881d1b8a1a0db4a57e117e4473705f3a8e7e589ec7bb3d7efa10acbecc967623404902aeecdcd1474e266bc9c43410604c SHA512 304dbacfaf59fcc35876754f6a6766cc89e052b64970f42aa315c1141f349d6437538195512dc8cd7626d467faaf0bd68575cc8310f9fc8e7606faabd7cf748d
+DIST packer-1.12.0-deps.tar.xz 291033108 BLAKE2B 94681b4eb341e8d7083ae598854841d3252649ec3c672a6fbdb8cf99f9fb330305613d3d572540c087f5a8fb6c7054ddb959f1b3383927e1cbce5a46005d68e9 SHA512 05d77be70679500e87702be902e02eca6a7e00e2b4e4d3e805e7df522f381fb9ab8039d07e30f175164b1c58d92fc452c510ca2be1bd82e21fd3e7eccdde3b92
+DIST packer-1.12.0.tar.gz 2385746 BLAKE2B 0141dcb3a1f2424fd9cc1732b35ca7b500e98b6622582721d738d33ce77f259f5f1852b552624b3fb4b657cd9b9dd6a6ebee2fcfc80aaadab01c683dce9902ec SHA512 c539955105ffeebdb18978b12724224416386f61125b1f46d631c980caf7d9c4270752f39d23bfa6e42b43005aecd5814a89dffebe5bf8aaf265ccf6afaa7c20
DIST packer-1.9.5-deps.tar.xz 373922748 BLAKE2B 793b0e5501bca56849a2471fbe2892c4775c3aa2d3ad6346e65f3d0cf1e3d86339a64371a35e4fddb0053082e98e2ec527b4f052b901bf8d35bd5db08a577ee4 SHA512 1f49b45841308dba95fcce2139d21931708e099102cc0870be00f2142cfb0d0e8ce9e2c729c9556ca68c1036e224f120fe0cd8833715a62cc212eead2448a6e3
DIST packer-1.9.5.tar.gz 2302965 BLAKE2B dc0b8fedd83a477594c7235ffe6ca2052ba389e105bd451ad6c3987cea68c37f9c3153957012339f2a09045f20ac81ff6a59ed33834247408a3539643d9ecedf SHA512 7df1a85d0746e400c42f2b2a52b14ef5a806bcd2dc346eceaf5f8928b42a8b046ff8da7b45e5af0486bd444d8325e1cabdcd15f7b28711241a46034c9781a279
diff --git a/dev-util/packer/packer-1.12.0.ebuild b/dev-util/packer/packer-1.12.0.ebuild
new file mode 100644
index 000000000000..a0dddc98fa6d
--- /dev/null
+++ b/dev-util/packer/packer-1.12.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="A tool to create identical machine images for multiple platforms"
+HOMEPAGE="https://www.packer.io"
+SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
+ https://gentoo.neutroniak.com/${P}-deps.tar.xz"
+
+LICENSE="Apache-2.0 BSD MIT MPL-2.0 unicode Unicode-DFS-2016 ISC BUSL-1.1 CC-BY-4.0 GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv"
+
+DOCS=( {README,CHANGELOG}.md )
+
+RESTRICT+=" test"
+
+src_compile() {
+ ego build \
+ -mod=readonly \
+ -ldflags "${go_ldflags}" \
+ -work -o "bin/${PN}" ./ || die
+}
+
+src_install() {
+ dobin bin/packer
+
+ einstalldocs
+
+ insinto /usr/share/zsh/site-functions
+ doins contrib/zsh-completion/_packer
+}
next reply other threads:[~2025-03-31 12:58 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-31 12:58 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-08-31 18:05 [gentoo-commits] repo/gentoo:master commit in: dev-util/packer/ Dennis Lamm
2025-08-31 18:05 Dennis Lamm
2024-06-13 14:44 Arthur Zamarin
2024-06-02 8:09 Joonas Niilola
2024-04-20 7:40 Joonas Niilola
2023-10-28 10:16 Yixun Lan
2023-10-17 14:02 Yixun Lan
2023-05-02 13:19 Joonas Niilola
2023-01-27 7:33 Joonas Niilola
2023-01-27 7:33 Joonas Niilola
2022-06-14 6:09 Jakov Smolić
2022-04-21 6:54 Jakov Smolić
2022-03-24 7:55 Joonas Niilola
2022-03-24 7:55 Joonas Niilola
2022-01-28 7:53 Sam James
2022-01-28 7:53 Sam James
2021-10-31 8:38 Sam James
2021-10-31 8:38 Sam James
2021-10-31 3:06 Sam James
2021-04-29 16:49 Rick Farina
2020-11-12 21:28 Patrice Clement
2020-09-16 12:33 Joonas Niilola
2020-09-15 14:11 Joonas Niilola
2020-09-15 14:11 Joonas Niilola
2020-03-21 22:12 William Hubbs
2020-03-21 22:12 William Hubbs
2019-11-16 9:45 Joonas Niilola
2019-10-23 13:19 Manuel Rüger
2019-07-18 7:14 Michał Górny
2019-07-18 7:14 Michał Górny
2019-04-16 18:14 Georgy Yakovlev
2019-03-18 22:53 Patrice Clement
2019-03-18 22:53 Patrice Clement
2019-02-02 0:40 Georgy Yakovlev
2019-02-02 0:40 Georgy Yakovlev
2019-01-06 22:48 Georgy Yakovlev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1743425859.9ff2b299dc86af5abd34c8b1a792e0c8dd2fd402.juippis@gentoo \
--to=juippis@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox