dev-embedded/arduino-cli: add 1.3.1

Closes: https://bugs.gentoo.org/965752
Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
This commit is contained in:
Paul Zander
2025-11-06 19:14:04 +01:00
parent e6469eda5b
commit 2e8a0be114
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Next-generation arduino command line tool"
HOMEPAGE="https://arduino.github.io/arduino-cli/latest/"
SRC_URI="
https://github.com/arduino/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://github.com/gentoo-golang-dist/${PN}/releases/download/v${PV}/${P}-vendor.tar.xz
"
LICENSE="Apache-2.0 BSD BSD-2 GPL-2 GPL-3 LGPL-3 MIT MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
src_compile() {
ego build -tags xversion \
-ldflags "-X github.com/arduino/arduino-cli/version.versionString=${PV}"
}
src_install() {
dobin arduino-cli
}