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 2897F138359 for ; Wed, 7 Oct 2020 20:56:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A648E0855; Wed, 7 Oct 2020 20:56:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0D994E0855 for ; Wed, 7 Oct 2020 20:56:20 +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 C43AD33BE69 for ; Wed, 7 Oct 2020 20:56:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 440BE332 for ; Wed, 7 Oct 2020 20:56:17 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1602104172.755c03956fe32aa73cca3f467de0fbb07e82ff78.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/rdiff-backup/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/rdiff-backup/rdiff-backup-2.0.5-r1.ebuild X-VCS-Directories: app-backup/rdiff-backup/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 755c03956fe32aa73cca3f467de0fbb07e82ff78 X-VCS-Branch: master Date: Wed, 7 Oct 2020 20:56:17 +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: 7113dd12-2c4d-4100-a630-edfd4e9881c8 X-Archives-Hash: 611a45701a06fa8d046dddb7ce3b95df commit: 755c03956fe32aa73cca3f467de0fbb07e82ff78 Author: Bernard Cafarelli gentoo org> AuthorDate: Wed Oct 7 20:56:03 2020 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Wed Oct 7 20:56:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=755c0395 app-backup/rdiff-backup: set DISTUTILS_USE_SETUPTOOLS It explicitely depends on setuptools Closes: https://bugs.gentoo.org/745903 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Bernard Cafarelli gentoo.org> .../rdiff-backup/rdiff-backup-2.0.5-r1.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/app-backup/rdiff-backup/rdiff-backup-2.0.5-r1.ebuild b/app-backup/rdiff-backup/rdiff-backup-2.0.5-r1.ebuild new file mode 100644 index 00000000000..cfb5bf43938 --- /dev/null +++ b/app-backup/rdiff-backup/rdiff-backup-2.0.5-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 + +DESCRIPTION="Local/remote mirroring+incremental backup" +HOMEPAGE="https://github.com/rdiff-backup/rdiff-backup" +SRC_URI="https://github.com/rdiff-backup/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +IUSE="examples" + +DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}] + >=net-libs/librsync-1.0:0=" +RDEPEND="dev-python/pylibacl[${PYTHON_USEDEP}] + dev-python/pyxattr[${PYTHON_USEDEP}] + >=net-libs/librsync-1.0:0=" + +PATCHES=( + "${FILESDIR}/${PN}-2.0.3-no-docs.patch" +) + +python_install_all() { + local DOCS=( docs/FAQ.md ) + use examples && DOCS+=( docs/examples.md ) + distutils-r1_python_install_all +}