From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 408E1158089 for ; Tue, 10 Oct 2023 03:04:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A1E32BC032; Tue, 10 Oct 2023 03:04:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4F70A2BC032 for ; Tue, 10 Oct 2023 03:04:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 77134335C52 for ; Tue, 10 Oct 2023 03:04:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01E4C10CF for ; Tue, 10 Oct 2023 03:04:09 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1696906987.d507fc92d38e9ddd3d7b81d53d8c040cfed5811c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/sarab/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/sarab/sarab-1.0.0-r1.ebuild X-VCS-Directories: app-backup/sarab/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d507fc92d38e9ddd3d7b81d53d8c040cfed5811c X-VCS-Branch: master Date: Tue, 10 Oct 2023 03:04:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a5d7cb61-8855-417c-a3f3-71af2aab96ff X-Archives-Hash: 2f248beb2c1e9dc5d27ea9bd7aacb492 commit: d507fc92d38e9ddd3d7b81d53d8c040cfed5811c Author: Leonardo Hernández Hernández proton me> AuthorDate: Sun Oct 1 22:20:50 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Oct 10 03:03:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d507fc92 app-backup/sarab: update EAPI 6 -> 8 Signed-off-by: Leonardo Hernández Hernández proton.me> Signed-off-by: Sam James gentoo.org> app-backup/sarab/sarab-1.0.0-r1.ebuild | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/app-backup/sarab/sarab-1.0.0-r1.ebuild b/app-backup/sarab/sarab-1.0.0-r1.ebuild new file mode 100644 index 000000000000..2d5d59b51048 --- /dev/null +++ b/app-backup/sarab/sarab-1.0.0-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit prefix readme.gentoo-r1 + +DESCRIPTION="SaraB is a powerful and automated backup scheduling system based on DAR" +HOMEPAGE="https://sarab.sourceforge.net/" +SRC_URI="mirror://sourceforge/sarab/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + app-backup/dar + virtual/mailx +" + +PATCHES=( "${FILESDIR}"/${PV}-better-defaults-gentoo.patch ) + +src_install() { + hprefixify sarab.sh + dobin sarab.sh + einstalldocs + + insinto /etc/sarab + doins -r etc/. + # sarab.conf could contain passphrase information + fperms 600 /etc/sarab/sarab.conf + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog + + ewarn "The configuration format for DAR encryption has changed in Sarab 0.2.4." + ewarn "Replace DAR_ENCRYPTION_OPTIONS=\"--key blowfish:PASSPHRASE\"" + ewarn "by SARAB_KEY=\"blowfish:PASSPHRASE\" in /etc/sarab/sarab.conf" +}