From owner-svn-ports-head@freebsd.org Thu Nov 9 21:33:22 2017 Return-Path: Delivered-To: svn-ports-head@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 8E0F3E5CE9B; Thu, 9 Nov 2017 21:33:22 +0000 (UTC) (envelope-from ehaupt@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 4CAC579CCC; Thu, 9 Nov 2017 21:33:22 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vA9LXLZl001715; Thu, 9 Nov 2017 21:33:21 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vA9LXLBv001714; Thu, 9 Nov 2017 21:33:21 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201711092133.vA9LXLBv001714@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Thu, 9 Nov 2017 21:33:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453872 - head/finance/electrum X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: head/finance/electrum X-SVN-Commit-Revision: 453872 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Nov 2017 21:33:22 -0000 Author: ehaupt Date: Thu Nov 9 21:33:21 2017 New Revision: 453872 URL: https://svnweb.freebsd.org/changeset/ports/453872 Log: Ignore on the package builders when default version of python is not 3.6+ Suggested by: bdrewery Reported by: pkg-fallout Modified: head/finance/electrum/Makefile Modified: head/finance/electrum/Makefile ============================================================================== --- head/finance/electrum/Makefile Thu Nov 9 21:26:22 2017 (r453871) +++ head/finance/electrum/Makefile Thu Nov 9 21:33:21 2017 (r453872) @@ -33,7 +33,14 @@ USE_PYTHON= autoplist distutils PYDISTUTILS_PKGNAME= Electrum NO_ARCH= yes +.include + +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} +IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} +.endif + post-patch: @${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' ${WRKSRC}/setup.py -.include +.include