gentoo/app-backup/restic/restic-0.18.1.ebuild
David Roman d111a3ef38
app-backup/restic: add 0.18.1
Signed-off-by: David Roman <droman@ifae.es>
Part-of: https://github.com/gentoo/gentoo/pull/43892
Closes: https://github.com/gentoo/gentoo/pull/43892
Signed-off-by: Sam James <sam@gentoo.org>
2025-09-23 14:43:39 +01:00

62 lines
1.5 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/alexanderneumann.asc
inherit go-module shell-completion verify-sig
DESCRIPTION="A backup program that is fast, efficient and secure"
HOMEPAGE="https://restic.net/"
SRC_URI="
https://github.com/restic/restic/archive/v${PV}.tar.gz -> ${P}.tar.gz
verify-sig? ( https://github.com/restic/restic/releases/download/v${PV}/${P}.tar.gz.asc )
"
SRC_URI+=" https://gentoo.kropotkin.rocks/go-pkgs/${P}-deps.tar.xz"
LICENSE="Apache-2.0 BSD BSD-2 LGPL-3-with-linking-exception MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
RDEPEND="sys-fs/fuse:0"
DEPEND="${RDEPEND}"
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-alexanderneumann )"
src_unpack() {
if use verify-sig; then
verify-sig_verify_detached "${DISTDIR}"/${P}.tar.gz "${DISTDIR}"/${P}.tar.gz.asc
fi
default
}
src_compile() {
local mygoargs=(
-tags release
-ldflags "-X main.version=${PV}"
-asmflags "-trimpath=${S}"
-gcflags "-trimpath=${S}"
)
ego build "${mygoargs[@]}" -o restic ./cmd/restic
}
src_test() {
addwrite /dev/fuse
# a number of the ./cmd/... tests fail
# ego test -timeout 30m ./cmd/... ./internal/...
RESTIC_TEST_FUSE=0 ego test -timeout 30m ./internal/...
}
src_install() {
dobin restic
newbashcomp doc/bash-completion.sh "${PN}"
newzshcomp doc/zsh-completion.zsh _restic
newfishcomp doc/fish-completion.fish "${PN}.fish"
doman doc/man/*
dodoc doc/*.rst
}