diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-12-30 06:30:40 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-12-30 06:30:40 +0000 |
commit | 7d7cc3f0fa58454952dec67b110b41d503bca422 (patch) | |
tree | 1a8f98c27530104edbec5993a3ae262b82a25823 /sys-fs/snapraid | |
parent | 0e12f8e53cdddba84b0eb27dca59153e2cf52309 (diff) |
gentoo auto-resync : 30:12:2024 - 06:30:40
Diffstat (limited to 'sys-fs/snapraid')
-rw-r--r-- | sys-fs/snapraid/Manifest | 1 | ||||
-rw-r--r-- | sys-fs/snapraid/snapraid-12.3-r1.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/sys-fs/snapraid/Manifest b/sys-fs/snapraid/Manifest index a00ea9ccccdf..b6b84fb30c48 100644 --- a/sys-fs/snapraid/Manifest +++ b/sys-fs/snapraid/Manifest @@ -1,3 +1,4 @@ DIST snapraid-12.3.tar.gz 746308 BLAKE2B b654861bd9d0b632af3c942e8b4403240c6e229df69bfe330add2f1250999d8f0ec3bae29a96d98b53f77f680108d4cff703131bd6e751d9ce24b9dfd52e9b99 SHA512 c1e364326354940abdb27c7d7528f8d2d324bfc926d134be5a7046b1e3ada7703c7c9e3bec3ba4120dcd717e6cb325f2cce4d9387576add4781f6122537a7f1b +EBUILD snapraid-12.3-r1.ebuild 796 BLAKE2B 6dd2365f75980acdeaf3368a79ba5a4d2ddfa74532c9b5a0d9e66f90f9b81d00e0794e35c4dca6c9f33fd23011c686070041c8a4393bc4619146b78e296fb115 SHA512 53fe64a7207a7a9bf38b21958cb471f712e0059833b46c6d68a68965a4583d3808e2276d7c19ac0a3a1c1a7efc2881bc7fd33a7444f4fa9e2a8e620152bc12c8 EBUILD snapraid-12.3.ebuild 518 BLAKE2B 71ce817b86022ad2d756c51f72437f3d6bc8e8a679cf3db5a62a461212da3e17106872dcd8c060bf4c2b81648b366a153698610eba83a11eb87bc3201f12f953 SHA512 b688079f923dfdb79ae6467eef46c7d09f681a7ed5c648a24dcfc523efd7834f67143b91d56f07601e25799eba3973ea6851c354ca474b8b55258251f9472dee MISC metadata.xml 304 BLAKE2B 7b9b89803c220914245900818045d963814287804bd8308ffd3743f4073152d595c64201115d35e688f0b91fd6ee82f606e55a28c0a04f7ecfc832a95e7d26b3 SHA512 2271ece2afc03e1f7b9e9bba98ef35f406bf446617a0d1a3a42b20d0bb13a8a133ae8068e472c302674d024ff8118c26b3fae4fc2d37e65ec8c45b8a6618790d diff --git a/sys-fs/snapraid/snapraid-12.3-r1.ebuild b/sys-fs/snapraid/snapraid-12.3-r1.ebuild new file mode 100644 index 000000000000..c42c6162f8ea --- /dev/null +++ b/sys-fs/snapraid/snapraid-12.3-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 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" +} |