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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 28B32138330 for ; Thu, 25 Aug 2016 08:12:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90430E0B39; Thu, 25 Aug 2016 08:12:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DC85E0B39 for ; Thu, 25 Aug 2016 08:12:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B322B3408F9 for ; Thu, 25 Aug 2016 08:12:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 050C12460 for ; Thu, 25 Aug 2016 08:12:52 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1472112762.7ee1cd869cd00b87d9efffe5a36872647191e4ba.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/rsnapshot/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/rsnapshot/rsnapshot-1.4.2.ebuild X-VCS-Directories: app-backup/rsnapshot/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 7ee1cd869cd00b87d9efffe5a36872647191e4ba X-VCS-Branch: master Date: Thu, 25 Aug 2016 08:12:52 +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-Archives-Salt: 610aebee-15be-4aa0-918d-b8ffa3928330 X-Archives-Hash: 9a42813c5f27fd57cb0221b156a6f14a commit: 7ee1cd869cd00b87d9efffe5a36872647191e4ba Author: Sergiy Borodych gmail com> AuthorDate: Mon Aug 22 12:53:17 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Aug 25 08:12:42 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ee1cd86 app-backup/rsnapshot: do not compress rsnapshot.conf.default. Courtesy of Louis Sautier gmail.com>. Gentoo-Bug: https://bugs.gentoo.org/551762 Closes: https://github.com/gentoo/gentoo/pull/2120 Signed-off-by: Patrice Clement gentoo.org> app-backup/rsnapshot/rsnapshot-1.4.2.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app-backup/rsnapshot/rsnapshot-1.4.2.ebuild b/app-backup/rsnapshot/rsnapshot-1.4.2.ebuild index ecdbbf3..1836d88 100644 --- a/app-backup/rsnapshot/rsnapshot-1.4.2.ebuild +++ b/app-backup/rsnapshot/rsnapshot-1.4.2.ebuild @@ -21,6 +21,8 @@ RDEPEND=">=dev-lang/perl-5.8.2 DEPEND="${RDEPEND}" src_install() { + docompress -x "/usr/share/doc/${PF}/rsnapshot.conf.default" + # Change sysconfdir to install the template file as documentation # rather than in /etc. emake install DESTDIR="${D}" \ @@ -37,7 +39,7 @@ src_install() { } pkg_postinst() { - elog "The template configuration file has been compressed and installed as" - elog " /usr/share/doc/${PF}/rsnapshot.conf.default.[gz|bz2|etc]" + elog "The template configuration file has been installed as" + elog " /usr/share/doc/${PF}/rsnapshot.conf.default" elog "Copy and edit the the above file as /etc/rsnapshot.conf" }