From owner-svn-ports-head@freebsd.org Sat Mar 4 22:23: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 156DACF9A41; Sat, 4 Mar 2017 22:23:22 +0000 (UTC) (envelope-from kmoore@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 D65811B04; Sat, 4 Mar 2017 22:23:21 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v24MNKsS004746; Sat, 4 Mar 2017 22:23:20 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v24MNKG8004743; Sat, 4 Mar 2017 22:23:20 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201703042223.v24MNKG8004743@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Sat, 4 Mar 2017 22:23:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435433 - in head/graphics: . py-imagesize py3-imagesize X-SVN-Group: ports-head 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: Sat, 04 Mar 2017 22:23:22 -0000 Author: kmoore Date: Sat Mar 4 22:23:20 2017 New Revision: 435433 URL: https://svnweb.freebsd.org/changeset/ports/435433 Log: - Create python3 version of graphics/py-imagesize - Set architecture neutral PR: 217470 Submitted by: Danilo Baio Added: head/graphics/py3-imagesize/ head/graphics/py3-imagesize/Makefile (contents, props changed) Modified: head/graphics/Makefile head/graphics/py-imagesize/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sat Mar 4 22:19:33 2017 (r435432) +++ head/graphics/Makefile Sat Mar 4 22:23:20 2017 (r435433) @@ -892,6 +892,7 @@ SUBDIR += py-wand SUBDIR += py-webcolors SUBDIR += py3-cairo + SUBDIR += py3-imagesize SUBDIR += py3-pillow SUBDIR += py3-pygraphviz SUBDIR += pygts Modified: head/graphics/py-imagesize/Makefile ============================================================================== --- head/graphics/py-imagesize/Makefile Sat Mar 4 22:19:33 2017 (r435432) +++ head/graphics/py-imagesize/Makefile Sat Mar 4 22:23:20 2017 (r435433) @@ -12,7 +12,8 @@ COMMENT= Python image size library LICENSE= MIT -USES= python +NO_ARCH= yes +USES?= python USE_PYTHON= autoplist distutils .include Added: head/graphics/py3-imagesize/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py3-imagesize/Makefile Sat Mar 4 22:23:20 2017 (r435433) @@ -0,0 +1,8 @@ +# Created by: Danilo G. Baio +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-imagesize + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"