From owner-svn-ports-all@freebsd.org Thu Aug 4 18:25:06 2016 Return-Path: Delivered-To: svn-ports-all@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 4228BBAE688; Thu, 4 Aug 2016 18:25:06 +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 2006A1C0B; Thu, 4 Aug 2016 18:25:06 +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 u74IP5i3052043; Thu, 4 Aug 2016 18:25:05 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u74IP5tr052039; Thu, 4 Aug 2016 18:25:05 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201608041825.u74IP5tr052039@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:25:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419645 - in head/graphics: . py-traitsui X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Aug 2016 18:25:06 -0000 Author: pi Date: Thu Aug 4 18:25:04 2016 New Revision: 419645 URL: https://svnweb.freebsd.org/changeset/ports/419645 Log: New port: graphics/py-traitsui The traitsui 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 traitsui 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/traitsui PR: 204433 Submitted by: Vladimir Chukharev Added: head/graphics/py-traitsui/ head/graphics/py-traitsui/Makefile (contents, props changed) head/graphics/py-traitsui/distinfo (contents, props changed) head/graphics/py-traitsui/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Thu Aug 4 18:19:00 2016 (r419644) +++ head/graphics/Makefile Thu Aug 4 18:25:04 2016 (r419645) @@ -879,6 +879,7 @@ SUBDIR += py-soya3d SUBDIR += py-stltools SUBDIR += py-toyplot + SUBDIR += py-traitsui SUBDIR += py-wand SUBDIR += py-webcolors SUBDIR += py3-cairo Added: head/graphics/py-traitsui/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-traitsui/Makefile Thu Aug 4 18:25:04 2016 (r419645) @@ -0,0 +1,26 @@ +# Created by: Vladimir Chukharev +# $FreeBSD$ + +PORTNAME= traitsui +PORTVERSION= 5.1.0 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= Vladimir.Chukharev@gmail.com +COMMENT= Enthought traits-capable user interfaces + +LICENSE= BSD3CLAUSE LGPL21 EPL +LICENSE_COMB= multi +LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/LICENSE.txt +LICENSE_FILE_LGPL21= ${WRKSRC}/image_LICENSE_Nuvola.txt +LICENSE_FILE_EPL= ${WRKSRC}/image_LICENSE_Eclipse.txt +# See ${WRKSRC}/image_LICENSE.txt for per file license information + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}apptools>=4.3.0:devel/py-apptools + +USES= python:-2.7 +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/graphics/py-traitsui/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-traitsui/distinfo Thu Aug 4 18:25:04 2016 (r419645) @@ -0,0 +1,3 @@ +TIMESTAMP = 1470333921 +SHA256 (traitsui-5.1.0.tar.gz) = 8f68b4a4fcc23837fda89af66a0100fb23f0574204838b4790f5109a69924fb8 +SIZE (traitsui-5.1.0.tar.gz) = 5106303 Added: head/graphics/py-traitsui/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-traitsui/pkg-descr Thu Aug 4 18:25:04 2016 (r419645) @@ -0,0 +1,12 @@ +The traitsui 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 traitsui 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/traitsui