From owner-svn-ports-head@freebsd.org Mon Oct 1 19:11:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8506A10A7F46; Mon, 1 Oct 2018 19:11:23 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3B7D788E54; Mon, 1 Oct 2018 19:11:23 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 366BC25042; Mon, 1 Oct 2018 19:11:23 +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 w91JBN0A034564; Mon, 1 Oct 2018 19:11:23 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w91JBMNQ034562; Mon, 1 Oct 2018 19:11:22 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201810011911.w91JBMNQ034562@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 1 Oct 2018 19:11:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481054 - head/graphics/py-cairo X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/graphics/py-cairo X-SVN-Commit-Revision: 481054 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.27 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: Mon, 01 Oct 2018 19:11:23 -0000 Author: antoine Date: Mon Oct 1 19:11:22 2018 New Revision: 481054 URL: https://svnweb.freebsd.org/changeset/ports/481054 Log: Cleanup plist handling Deleted: head/graphics/py-cairo/pkg-plist-py3 Modified: head/graphics/py-cairo/Makefile head/graphics/py-cairo/pkg-plist Modified: head/graphics/py-cairo/Makefile ============================================================================== --- head/graphics/py-cairo/Makefile Mon Oct 1 19:04:03 2018 (r481053) +++ head/graphics/py-cairo/Makefile Mon Oct 1 19:11:22 2018 (r481054) @@ -19,11 +19,8 @@ LICENSE_FILE_MPL11= ${WRKSRC}/COPYING-MPL-1.1 PORTSCOUT= limitw:1,even USES= gnome pkgconfig python -USE_PYTHON= distutils +USE_PYTHON= distutils py3kplist USE_GNOME= cairo -py34_PLIST= ${.CURDIR}/pkg-plist-py3 -py35_PLIST= ${.CURDIR}/pkg-plist-py3 -py36_PLIST= ${.CURDIR}/pkg-plist-py3 PLIST_SUB= PORTVER=${PORTVERSION} Modified: head/graphics/py-cairo/pkg-plist ============================================================================== --- head/graphics/py-cairo/pkg-plist Mon Oct 1 19:04:03 2018 (r481053) +++ head/graphics/py-cairo/pkg-plist Mon Oct 1 19:11:22 2018 (r481054) @@ -1,4 +1,5 @@ -include/pycairo/pycairo.h +%%PYTHON2%%include/pycairo/pycairo.h +%%PYTHON3%%include/pycairo/py3cairo.h %%PYTHON_SITELIBDIR%%/cairo/__init__.py %%PYTHON_SITELIBDIR%%/cairo/__init__.pyc %%PYTHON_SITELIBDIR%%/cairo/__init__.pyo @@ -7,4 +8,5 @@ include/pycairo/pycairo.h %%PYTHON_SITELIBDIR%%/pycairo-%%PORTVER%%-py%%PYTHON_VER%%.egg-info/SOURCES.txt %%PYTHON_SITELIBDIR%%/pycairo-%%PORTVER%%-py%%PYTHON_VER%%.egg-info/dependency_links.txt %%PYTHON_SITELIBDIR%%/pycairo-%%PORTVER%%-py%%PYTHON_VER%%.egg-info/top_level.txt -libdata/pkgconfig/pycairo.pc +%%PYTHON2%%libdata/pkgconfig/pycairo.pc +%%PYTHON3%%libdata/pkgconfig/py3cairo.pc