From owner-svn-ports-head@freebsd.org Thu Aug 4 18:02:48 2016 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 450B8BADD78; Thu, 4 Aug 2016 18:02:48 +0000 (UTC) (envelope-from pi@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 2146218B2; Thu, 4 Aug 2016 18:02:48 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u74I2l4C043857; Thu, 4 Aug 2016 18:02:47 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u74I2lbV043853; Thu, 4 Aug 2016 18:02:47 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201608041802.u74I2lbV043853@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 4 Aug 2016 18:02:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419640 - in head/devel: . py-pyface 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.22 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, 04 Aug 2016 18:02:48 -0000 Author: pi Date: Thu Aug 4 18:02:46 2016 New Revision: 419640 URL: https://svnweb.freebsd.org/changeset/ports/419640 Log: New port: devel/py-pyface The pyface project contains a toolkit-independent GUI abstraction layer, which is used to support the "visualization" features of the Traits package. Thus, you can write code in terms of the Traits API (views, items, editors, etc.), and let pyface and your selected toolkit and back-end take care of the details of displaying them. The following GUI backends are supported: * wxPython * PyQt * PySide WWW: https://docs.enthought.com/pyface PR: 204432 Submitted by: Vladimir Chukharev Added: head/devel/py-pyface/ head/devel/py-pyface/Makefile (contents, props changed) head/devel/py-pyface/distinfo (contents, props changed) head/devel/py-pyface/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Aug 4 17:52:36 2016 (r419639) +++ head/devel/Makefile Thu Aug 4 18:02:46 2016 (r419640) @@ -4324,6 +4324,7 @@ SUBDIR += py-pyee SUBDIR += py-pyelftools SUBDIR += py-pyev + SUBDIR += py-pyface SUBDIR += py-pyflakes SUBDIR += py-pygit2 SUBDIR += py-pygithub Added: head/devel/py-pyface/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyface/Makefile Thu Aug 4 18:02:46 2016 (r419640) @@ -0,0 +1,26 @@ +# Created by: Vladimir Chukharev +# $FreeBSD$ + +PORTNAME= pyface +PORTVERSION= 5.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= Vladimir.Chukharev@gmail.com +COMMENT= Enthought traits-capable windowing framework + +LICENSE= BSD3CLAUSE LGPL21 EPL LGPL3 +LICENSE_COMB= multi +LICENSE_FILE_LGPL21= ${WRKSRC}/image_LICENSE_Nuvola.txt +LICENSE_FILE_EPL= ${WRKSRC}/image_LICENSE_Eclipse.txt +LICENSE_FILE_LGPL3= ${WRKSRC}/image_LICENSE_OOo.txt +#See file ${WRKSRC}/image_LICENSE.txt for files with non BSD3CLAUSE licenses + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}traits>=4.5.0:devel/py-traits + +USES= python:-2.7 +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/devel/py-pyface/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyface/distinfo Thu Aug 4 18:02:46 2016 (r419640) @@ -0,0 +1,3 @@ +TIMESTAMP = 1470333170 +SHA256 (pyface-5.1.0.tar.gz) = d5951f51887e776d5b0ae0ce240c12ad350fe76af63ee96b7a07dda688ba68c4 +SIZE (pyface-5.1.0.tar.gz) = 5104649 Added: head/devel/py-pyface/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyface/pkg-descr Thu Aug 4 18:02:46 2016 (r419640) @@ -0,0 +1,13 @@ +The pyface project contains a toolkit-independent GUI abstraction +layer, which is used to support the "visualization" features of the +Traits package. Thus, you can write code in terms of the Traits API +(views, items, editors, etc.), and let pyface and your selected +toolkit and back-end take care of the details +of displaying them. + +The following GUI backends are supported: + * wxPython + * PyQt + * PySide + +WWW: https://docs.enthought.com/pyface