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 B616113997D for ; Mon, 11 Nov 2019 04:55:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EF4FE085A; Mon, 11 Nov 2019 04:55:12 +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 20AC4E085A for ; Mon, 11 Nov 2019 04:55:11 +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 8FBB134CB5F for ; Mon, 11 Nov 2019 04:55:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 05E048A2 for ; Mon, 11 Nov 2019 04:55:08 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1573447959.8320914c11d4d3d0c0db052be19b9108562b9dfe.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/duplicity/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/duplicity/duplicity-0.7.10.ebuild app-backup/duplicity/duplicity-0.7.12.ebuild app-backup/duplicity/duplicity-0.7.19.ebuild X-VCS-Directories: app-backup/duplicity/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 8320914c11d4d3d0c0db052be19b9108562b9dfe X-VCS-Branch: master Date: Mon, 11 Nov 2019 04:55:08 +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: 6758dd5b-59ee-49b2-83f7-69b757f4626c X-Archives-Hash: 790c0b7a66564a0a023f25ec72a7bdac commit: 8320914c11d4d3d0c0db052be19b9108562b9dfe Author: Tim Harder gentoo org> AuthorDate: Mon Nov 11 04:52:07 2019 +0000 Commit: Tim Harder gentoo org> CommitDate: Mon Nov 11 04:52:39 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8320914c app-backup/duplicity: add missing conditional test restrict Signed-off-by: Tim Harder gentoo.org> app-backup/duplicity/duplicity-0.7.10.ebuild | 4 +++- app-backup/duplicity/duplicity-0.7.12.ebuild | 2 ++ app-backup/duplicity/duplicity-0.7.19.ebuild | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/app-backup/duplicity/duplicity-0.7.10.ebuild b/app-backup/duplicity/duplicity-0.7.10.ebuild index 084f5757635..d686f7ae3a5 100644 --- a/app-backup/duplicity/duplicity-0.7.10.ebuild +++ b/app-backup/duplicity/duplicity-0.7.10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -32,6 +32,8 @@ RDEPEND="${CDEPEND} s3? ( dev-python/boto[${PYTHON_USEDEP}] ) " +RESTRICT="!test? ( test )" + python_prepare_all() { # workaround until failing test is fixed local PATCHES=( "${FILESDIR}"/${PN}-0.6.24-skip-test.patch ) diff --git a/app-backup/duplicity/duplicity-0.7.12.ebuild b/app-backup/duplicity/duplicity-0.7.12.ebuild index c4137e57f2f..f23738bd29b 100644 --- a/app-backup/duplicity/duplicity-0.7.12.ebuild +++ b/app-backup/duplicity/duplicity-0.7.12.ebuild @@ -32,6 +32,8 @@ RDEPEND="${CDEPEND} s3? ( dev-python/boto[${PYTHON_USEDEP}] ) " +RESTRICT="!test? ( test )" + python_prepare_all() { # workaround until failing test is fixed local PATCHES=( "${FILESDIR}"/${PN}-0.6.24-skip-test.patch ) diff --git a/app-backup/duplicity/duplicity-0.7.19.ebuild b/app-backup/duplicity/duplicity-0.7.19.ebuild index 96eaf610187..ba996e73ba7 100644 --- a/app-backup/duplicity/duplicity-0.7.19.ebuild +++ b/app-backup/duplicity/duplicity-0.7.19.ebuild @@ -33,6 +33,8 @@ RDEPEND="${CDEPEND} s3? ( dev-python/boto[${PYTHON_USEDEP}] ) " +RESTRICT="!test? ( test )" + python_prepare_all() { # workaround until failing test is fixed local PATCHES=( "${FILESDIR}"/${PN}-0.6.24-skip-test.patch )