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 CB9BE1581D3 for ; Mon, 27 May 2024 13:24:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12D80E2A32; Mon, 27 May 2024 13:24:43 +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 E64B0E2A21 for ; Mon, 27 May 2024 13:24:42 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 27ADA34069F for ; Mon, 27 May 2024 13:24:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5794E1AFB for ; Mon, 27 May 2024 13:24:40 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1716816275.0079c90de7cc812c22fe712054b864ce53af59c7.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/backuppc/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/backuppc/backuppc-4.4.0-r1.ebuild X-VCS-Directories: app-backup/backuppc/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 0079c90de7cc812c22fe712054b864ce53af59c7 X-VCS-Branch: master Date: Mon, 27 May 2024 13:24:40 +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: d522b680-47d6-48ae-a7e7-93d47ce58855 X-Archives-Hash: 979be6be936231bda1c8ba5bab85e1ab commit: 0079c90de7cc812c22fe712054b864ce53af59c7 Author: Dennis Eisele dennis-eisele de> AuthorDate: Wed Apr 3 19:18:51 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon May 27 13:24:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0079c90d app-backup/backuppc: add warning message Signed-off-by: Dennis Eisele dennis-eisele.de> Bug: https://bugs.gentoo.org/878973 Closes: https://github.com/gentoo/gentoo/pull/36083 Signed-off-by: Joonas Niilola gentoo.org> app-backup/backuppc/backuppc-4.4.0-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app-backup/backuppc/backuppc-4.4.0-r1.ebuild b/app-backup/backuppc/backuppc-4.4.0-r1.ebuild index 3d1f23482625..3e0e0aebb803 100644 --- a/app-backup/backuppc/backuppc-4.4.0-r1.ebuild +++ b/app-backup/backuppc/backuppc-4.4.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -64,7 +64,6 @@ need_apache2_4 src_prepare() { default - # Fix docs location using the marker that we've patched in. sed "s+__DOCDIR__+${DOCDIR}+" -i lib/BackupPC/CGI/View.pm || die } @@ -145,6 +144,10 @@ src_install() { } pkg_postinst() { + ewarn "WARNING: The --one-file-system option was added to RsyncArgs." + ewarn "If you update from a prior version keep in mind that" + ewarn "this prevents data of mounted partitions from being updated." + ewarn elog "Installation finished, you may now start using BackupPC." elog elog "- Read the documentation in ${EROOT}/usr/share/doc/${PF}/BackupPC.html"