commit: 6438863dd927e8ebeaa8458381956064a275f9a7 Author: Zelin2001 <lizl2023 <AT> ion <DOT> ac <DOT> cn> AuthorDate: Thu Oct 30 01:57:14 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Oct 30 07:44:31 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6438863d
sys-fs/snapraid: bump to 13.0 Signed-off-by: Li Ze-Lin <lizl2023 <AT> ion.ac.cn> Part-of: https://github.com/gentoo/gentoo/pull/44379 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-fs/snapraid/Manifest | 1 + sys-fs/snapraid/snapraid-13.0.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/sys-fs/snapraid/Manifest b/sys-fs/snapraid/Manifest index d1e176a7b86a..c8a173573959 100644 --- a/sys-fs/snapraid/Manifest +++ b/sys-fs/snapraid/Manifest @@ -1 +1,2 @@ DIST snapraid-12.4.tar.gz 746522 BLAKE2B 415816cbaefd2bcb225d994627f999d59aba158822fea24beac70d08afa505ef01440ef4f2af5b26747fd1873e77fe1f00506da965da7f11bd517b10e4079421 SHA512 98841d236769302ed3f7ed3271b9b757d806f70b50c108cc48771cf3753b713b82803402db17ebc45d2b669cb19e3675bbb2bd02d87f8c1fe941d83f87662a09 +DIST snapraid-13.0.tar.gz 839940 BLAKE2B 6341686b51c5d018a5e08ed3da90805177f9f4e729f34cd5d085fb9f11823962274a99c0b329f3fb77f85035435536e2fe7f1d7051d8668113f71707f9ba32c8 SHA512 cb407ec599e3e1c511662e2bd0f153d877512521a3b1f345ee41e2b6d0bbe4ccea148fe69a97f588d70ef4ff66a941e2ffee1937c9355c7e734e603f9456a808 diff --git a/sys-fs/snapraid/snapraid-13.0.ebuild b/sys-fs/snapraid/snapraid-13.0.ebuild new file mode 100644 index 000000000000..a5b446008b0d --- /dev/null +++ b/sys-fs/snapraid/snapraid-13.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Backup program with disk array for cold data on existing filesystems" +HOMEPAGE="https://www.snapraid.it/" +SRC_URI="https://github.com/amadvance/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" +BDEPEND="test? ( sys-apps/smartmontools )" + +DOCS=( "AUTHORS" "HISTORY" "README" "TODO" "snapraid.conf.example" ) + +src_prepare() { + default + eautoreconf +} + +pkg_postinst() { + elog "To start using SnapRAID, change the example configuration" + elog "${EPREFIX}/usr/share/doc/${PF}/snapraid.conf.example.bz2" + elog "to fit your needs and copy it to ${EPREFIX}/etc/snapraid.conf" +}
