mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 15:59:00 -04:00
fixes VariableScopeCheck for REPLACING_VERSIONS Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
64 lines
1.4 KiB
Bash
64 lines
1.4 KiB
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit optfeature
|
|
|
|
DESCRIPTION="Policy-driven snapshot management and replication tools for OpenZFS."
|
|
HOMEPAGE="https://github.com/jimsalterjrs/sanoid"
|
|
|
|
if [[ "${PV}" = *9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/jimsalterjrs/${PN^}.git"
|
|
else
|
|
SRC_URI="https://github.com/jimsalterjrs/${PN^}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
BDEPEND="
|
|
dev-lang/perl
|
|
sys-apps/groff
|
|
"
|
|
RDEPEND="
|
|
dev-lang/perl
|
|
dev-perl/Capture-Tiny
|
|
dev-perl/Config-IniFiles
|
|
sys-apps/pv
|
|
sys-block/mbuffer
|
|
sys-fs/zfs
|
|
virtual/perl-Data-Dumper
|
|
virtual/perl-Getopt-Long
|
|
virtual/ssh
|
|
"
|
|
|
|
src_compile() {
|
|
perldoc -onroff -dsanoid.1 sanoid || die "Failed to compile sanoid.1"
|
|
perldoc -onroff -dsyncoid.1 syncoid || die "Failed to compile syncoid.1"
|
|
}
|
|
|
|
src_install() {
|
|
dobin sanoid
|
|
dobin syncoid
|
|
|
|
doman sanoid.1 syncoid.1
|
|
|
|
insinto /etc/sanoid
|
|
doins "sanoid.defaults.conf"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
optfeature "lzop compression support" app-arch/lzop
|
|
optfeature "pigz compression support" app-arch/pigz
|
|
optfeature "zstd compression support" app-arch/zstd
|
|
|
|
if [[ -z ${REPLACING_VERSIONS} ]]; then
|
|
elog "You will need to set up your ${EROOT}/etc/sanoid/sanoid.conf file before"
|
|
elog "running sanoid for the first time. For details, please consult the"
|
|
elog "documentation on https://github.com/jimsalterjrs/sanoid."
|
|
fi
|
|
}
|