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 432E8138334 for ; Sat, 16 Jun 2018 16:43:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D61EE0729; Sat, 16 Jun 2018 16:43:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D53FEE0729 for ; Sat, 16 Jun 2018 16:42:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1BF47335C80 for ; Sat, 16 Jun 2018 16:42:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 741822D7 for ; Sat, 16 Jun 2018 16:42:55 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1529167365.15f27c48b53638abd775e5455bc1385095a214e1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/rdiff-backup/files/, app-backup/rdiff-backup/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/rdiff-backup/files/rdiff-backup-1.3.3-no-docs.patch app-backup/rdiff-backup/rdiff-backup-1.3.3-r3.ebuild X-VCS-Directories: app-backup/rdiff-backup/ app-backup/rdiff-backup/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 15f27c48b53638abd775e5455bc1385095a214e1 X-VCS-Branch: master Date: Sat, 16 Jun 2018 16:42:55 +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: 5e3976e5-7225-4874-bc9a-6044923874cd X-Archives-Hash: ccacda194d2a4104a93556a80e61c07a commit: 15f27c48b53638abd775e5455bc1385095a214e1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 16 16:42:02 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 16 16:42:45 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15f27c48 app-backup/rdiff-backup: Fix DOCS, HTML_DOCS install paths Package-Manager: Portage-2.3.40, Repoman-2.3.9 .../rdiff-backup/files/rdiff-backup-1.3.3-no-docs.patch | 13 +++++++++++++ app-backup/rdiff-backup/rdiff-backup-1.3.3-r3.ebuild | 7 +++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/app-backup/rdiff-backup/files/rdiff-backup-1.3.3-no-docs.patch b/app-backup/rdiff-backup/files/rdiff-backup-1.3.3-no-docs.patch new file mode 100644 index 00000000000..9d69bba9ea2 --- /dev/null +++ b/app-backup/rdiff-backup/files/rdiff-backup-1.3.3-no-docs.patch @@ -0,0 +1,13 @@ +--- a/setup.py 2009-03-16 15:45:54.000000000 +0100 ++++ b/setup.py 2018-06-16 18:23:29.689677175 +0200 +@@ -73,9 +73,6 @@ + libraries=libname, + extra_link_args=lflags_arg)], + scripts = ['rdiff-backup', 'rdiff-backup-statistics'], +- data_files = [('share/man/man1', ['rdiff-backup.1', +- 'rdiff-backup-statistics.1']), +- ('share/doc/rdiff-backup-%s' % (version_string,), +- ['CHANGELOG', 'COPYING', 'README', 'FAQ.html'])], ++ data_files = [('share/man/man1', ['rdiff-backup.1','rdiff-backup-statistics.1'])], + **extra_options) + diff --git a/app-backup/rdiff-backup/rdiff-backup-1.3.3-r3.ebuild b/app-backup/rdiff-backup/rdiff-backup-1.3.3-r3.ebuild index 2233c2d12fa..62b2ece86a0 100644 --- a/app-backup/rdiff-backup/rdiff-backup-1.3.3-r3.ebuild +++ b/app-backup/rdiff-backup/rdiff-backup-1.3.3-r3.ebuild @@ -25,10 +25,13 @@ RDEPEND="${DEPEND} dev-python/pyxattr[${PYTHON_USEDEP}] " -PATCHES=( "${FILESDIR}/${P}-librsync-1.0.0.patch" ) +PATCHES=( + "${FILESDIR}/${P}-librsync-1.0.0.patch" + "${FILESDIR}/${P}-no-docs.patch" +) python_install_all() { + local HTML_DOCS=( FAQ.html ) use examples && local EXAMPLES=( examples.html ) - distutils-r1_python_install_all }