summaryrefslogtreecommitdiff
path: root/sys-fs/snapraid
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
commitb590c8d7572b727d565cc0b8ff660d43569845de (patch)
tree06f7a4102ea4e845df8b66660f252920d52952f9 /sys-fs/snapraid
parent24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff)
downloadbaldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip
Adding metadata
Diffstat (limited to 'sys-fs/snapraid')
-rw-r--r--sys-fs/snapraid/Manifest1
-rw-r--r--sys-fs/snapraid/metadata.xml13
-rw-r--r--sys-fs/snapraid/snapraid-14.4.ebuild31
3 files changed, 45 insertions, 0 deletions
diff --git a/sys-fs/snapraid/Manifest b/sys-fs/snapraid/Manifest
new file mode 100644
index 000000000000..ecf60326ac4c
--- /dev/null
+++ b/sys-fs/snapraid/Manifest
@@ -0,0 +1 @@
+DIST snapraid-14.4.tar.gz 1837487 BLAKE2B 8a017b5678f92bc15b24fd86b05413fc5f80ef2006cf92f06d997e2e14e6b0ec080fa62af40bf2410e78681f2e3013870b98eddfc61a5fd253452f863759b9ee SHA512 22707d120dbb6e740eefc6b1288817076f463485588398c0e152edf8af70a7cbe2549b89557db4f8c65f52a248cb65cc440f0ca4bfba1b9b0c8fa3619be47e16
diff --git a/sys-fs/snapraid/metadata.xml b/sys-fs/snapraid/metadata.xml
new file mode 100644
index 000000000000..a274b986e8a3
--- /dev/null
+++ b/sys-fs/snapraid/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <email>lizl2023@ion.ac.cn</email>
+ <name>Li Ze-Lin</name>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
diff --git a/sys-fs/snapraid/snapraid-14.4.ebuild b/sys-fs/snapraid/snapraid-14.4.ebuild
new file mode 100644
index 000000000000..cf1949efc05d
--- /dev/null
+++ b/sys-fs/snapraid/snapraid-14.4.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=9
+
+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"
+ elog "For daemon, see amadvance/snapraid-daemon"
+}