Date: Sat, 11 May 2019 18:54:34 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501289 - in head/x11-toolkits: . py-easygui Message-ID: <201905111854.x4BIsYCM021749@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Sat May 11 18:54:34 2019 New Revision: 501289 URL: https://svnweb.freebsd.org/changeset/ports/501289 Log: New port: x11-toolkits/py-easygui EasyGUI is a module for very simple, very easy GUI programming in Python. EasyGUI is different from other GUI generators in that EasyGUI is NOT event-driven. Instead, all GUI interactions are invoked by simple function calls. WWW: https://github.com/robertlugg/easygui Added: head/x11-toolkits/py-easygui/ head/x11-toolkits/py-easygui/Makefile (contents, props changed) head/x11-toolkits/py-easygui/distinfo (contents, props changed) head/x11-toolkits/py-easygui/pkg-descr (contents, props changed) Modified: head/x11-toolkits/Makefile Modified: head/x11-toolkits/Makefile ============================================================================== --- head/x11-toolkits/Makefile Sat May 11 18:53:19 2019 (r501288) +++ head/x11-toolkits/Makefile Sat May 11 18:54:34 2019 (r501289) @@ -184,6 +184,7 @@ SUBDIR += py-AnyQt SUBDIR += py-Pmw SUBDIR += py-SquareMap + SUBDIR += py-easygui SUBDIR += py-fltk SUBDIR += py-gnome2 SUBDIR += py-gtk2 Added: head/x11-toolkits/py-easygui/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/py-easygui/Makefile Sat May 11 18:54:34 2019 (r501289) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= easygui +PORTVERSION= 0.98.1 +CATEGORIES= x11-toolkits python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Easy GUI programming in python + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/x11-toolkits/py-easygui/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/py-easygui/distinfo Sat May 11 18:54:34 2019 (r501289) @@ -0,0 +1,3 @@ +TIMESTAMP = 1557574991 +SHA256 (easygui-0.98.1.tar.gz) = dbc89afbb1aca83830ea4af568eb2491654e16b2706a14d040757fdf1fafbbfe +SIZE (easygui-0.98.1.tar.gz) = 81024 Added: head/x11-toolkits/py-easygui/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/py-easygui/pkg-descr Sat May 11 18:54:34 2019 (r501289) @@ -0,0 +1,6 @@ +EasyGUI is a module for very simple, very easy GUI programming in Python. +EasyGUI is different from other GUI generators in that EasyGUI is NOT +event-driven. Instead, all GUI interactions are invoked by simple function +calls. + +WWW: https://github.com/robertlugg/easygui
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905111854.x4BIsYCM021749>