From owner-svn-ports-all@freebsd.org Sat Apr 16 17:56:05 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0981AB10A51; Sat, 16 Apr 2016 17:56:05 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CEED41787; Sat, 16 Apr 2016 17:56:04 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3GHu4MK071446; Sat, 16 Apr 2016 17:56:04 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3GHu4xv071445; Sat, 16 Apr 2016 17:56:04 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201604161756.u3GHu4xv071445@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 16 Apr 2016 17:56:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413471 - head/archivers/py-borgbackup X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Apr 2016 17:56:05 -0000 Author: antoine Date: Sat Apr 16 17:56:03 2016 New Revision: 413471 URL: https://svnweb.freebsd.org/changeset/ports/413471 Log: - Remove obsolete ${PORTSDIR} from DEPENDS - Remove inapproriate NO_PACKAGE Modified: head/archivers/py-borgbackup/Makefile Modified: head/archivers/py-borgbackup/Makefile ============================================================================== --- head/archivers/py-borgbackup/Makefile Sat Apr 16 17:48:10 2016 (r413470) +++ head/archivers/py-borgbackup/Makefile Sat Apr 16 17:56:03 2016 (r413471) @@ -13,26 +13,26 @@ COMMENT= Deduplicating backup program LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.7:${PORTSDIR}/devel/py-setuptools_scm -LIB_DEPENDS= liblz4.so:${PORTSDIR}/archivers/liblz4 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack-python>=0.4.6:${PORTSDIR}/devel/py-msgpack-python +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.7:devel/py-setuptools_scm +LIB_DEPENDS= liblz4.so:archivers/liblz4 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack-python>=0.4.6:devel/py-msgpack-python OPTIONS_DEFINE= FUSE FUSE_DESC= Support to mount locally borg backup files OPTIONS_DEFAULT= -FUSE_RUN_DEPENDS= ${PYTHONPREFIX_SITELIBDIR}/llfuse.so:${PORTSDIR}/devel/py-llfuse +FUSE_RUN_DEPENDS= ${PYTHONPREFIX_SITELIBDIR}/llfuse.so:devel/py-llfuse USES= python:3.4+ USE_PYTHON= autoplist distutils USE_OPENSSL= yes -# Leave py3 only ports as manual port builds. -# See https://lists.freebsd.org/pipermail/freebsd-python/2016-April/010151.html -NO_PACKAGE= yes - .include +.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} +.endif + # borg requires openssl>=1.0.0 .if ${OSVERSION} < 1000015 WITH_OPENSSL_PORT=yes