From owner-svn-ports-head@freebsd.org Thu Nov 23 07:45:10 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 2518DDE2A97; Thu, 23 Nov 2017 07:45:10 +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 E3C8880FEF; Thu, 23 Nov 2017 07:45:09 +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 vAN7j9T8068839; Thu, 23 Nov 2017 07:45:09 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAN7j92X068838; Thu, 23 Nov 2017 07:45:09 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201711230745.vAN7j92X068838@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Thu, 23 Nov 2017 07:45:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454742 - head/www/py-buku X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: head/www/py-buku X-SVN-Commit-Revision: 454742 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.25 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, 23 Nov 2017 07:45:10 -0000 Author: ehaupt Date: Thu Nov 23 07:45:08 2017 New Revision: 454742 URL: https://svnweb.freebsd.org/changeset/ports/454742 Log: Ignore on the package builders when default version of python is not 3.6+ Note: This port passed tier-1 builds with ports-mgmt/poudriere and ports-mgmt/poudriere-devel without this measurement. Once the package builders are updated this should not be needed anymore. Reported by: pkg-fallout Modified: head/www/py-buku/Makefile Modified: head/www/py-buku/Makefile ============================================================================== --- head/www/py-buku/Makefile Thu Nov 23 06:32:43 2017 (r454741) +++ head/www/py-buku/Makefile Thu Nov 23 07:45:08 2017 (r454742) @@ -28,7 +28,14 @@ GH_PROJECT= Buku PLIST_FILES= man/man1/buku.1.gz +.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-install: ${INSTALL_MAN} ${WRKSRC}/buku.1 ${STAGEDIR}${MANPREFIX}/man/man1 -.include +.include