From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Mar 5 13:40:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EEB05106567C for ; Mon, 5 Mar 2012 13:40:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DE2538FC21 for ; Mon, 5 Mar 2012 13:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q25DeDXn081712 for ; Mon, 5 Mar 2012 13:40:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q25DeD0V081711; Mon, 5 Mar 2012 13:40:13 GMT (envelope-from gnats) Date: Mon, 5 Mar 2012 13:40:13 GMT Message-Id: <201203051340.q25DeD0V081711@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jase Thew Cc: Subject: Re: ports/165705: sysutils/duplicity needs paramiko module X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jase Thew List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2012 13:40:14 -0000 The following reply was made to PR ports/165705; it has been noted by GNATS. From: Jase Thew To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/165705: sysutils/duplicity needs paramiko module Date: Mon, 05 Mar 2012 13:30:47 +0000 This is a multi-part message in MIME format. --------------000508070601050905040307 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, Please find attached a patch which resolves the issue: - Add run dependency on security/py-paramiko to fix new and undocumented dependency added to duplicity's ssh backend in last upstream release. - Add run dependency on devel/py-boto to enable use of duplicity's S3 backend. Regards, Jase Thew. --------------000508070601050905040307 Content-Type: text/plain; name="duplicity-0.6.18_1.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="duplicity-0.6.18_1.patch" diff -ruN --exclude=CVS /usr/ports/sysutils/duplicity.orig/Makefile /usr/ports/sysutils/duplicity/Makefile --- /usr/ports/sysutils/duplicity.orig/Makefile 2012-03-03 19:54:37.000000000 +0000 +++ /usr/ports/sysutils/duplicity/Makefile 2012-03-05 13:21:55.030869553 +0000 @@ -7,6 +7,7 @@ PORTNAME= duplicity PORTVERSION= 0.6.18 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://launchpad.net/duplicity/0.6-series/${PORTVERSION}/+download/ @@ -16,7 +17,9 @@ LIB_DEPENDS= rsync.1:${PORTSDIR}/net/librsync RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg \ ncftp>=3.2.2:${PORTSDIR}/ftp/ncftp3 \ - lftp>=3.7.15:${PORTSDIR}/ftp/lftp + lftp>=3.7.15:${PORTSDIR}/ftp/lftp \ + ${PYTHON_PKGNAMEPREFIX}paramiko>=1.7.7.1:${PORTSDIR}/security/py-paramiko \ + ${PYTHON_PKGNAMEPREFIX}boto>=1.6b:${PORTSDIR}/devel/py-boto OPTIONS= NLS "National Language Support" on --------------000508070601050905040307--