From owner-svn-ports-all@freebsd.org Sat Jun 2 01:57:00 2018 Return-Path: Delivered-To: svn-ports-all@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 DB3AEF7FF39; Sat, 2 Jun 2018 01:56:59 +0000 (UTC) (envelope-from yuri@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 79DDA8380C; Sat, 2 Jun 2018 01:56:59 +0000 (UTC) (envelope-from yuri@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 562211051; Sat, 2 Jun 2018 01:56:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w521ux5E003038; Sat, 2 Jun 2018 01:56:59 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w521uwUL003034; Sat, 2 Jun 2018 01:56:58 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806020156.w521uwUL003034@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 2 Jun 2018 01:56:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471339 - in head/misc: . py-PyUserInput X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-PyUserInput X-SVN-Commit-Revision: 471339 X-SVN-Commit-Repository: ports 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.26 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: Sat, 02 Jun 2018 01:57:00 -0000 Author: yuri Date: Sat Jun 2 01:56:58 2018 New Revision: 471339 URL: https://svnweb.freebsd.org/changeset/ports/471339 Log: New port: misc/py-PyUserInput: Module for mouse and keyboard control Added: head/misc/py-PyUserInput/ head/misc/py-PyUserInput/Makefile (contents, props changed) head/misc/py-PyUserInput/distinfo (contents, props changed) head/misc/py-PyUserInput/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sat Jun 2 01:18:11 2018 (r471338) +++ head/misc/Makefile Sat Jun 2 01:56:58 2018 (r471339) @@ -399,6 +399,7 @@ SUBDIR += pspresent SUBDIR += ptsort SUBDIR += pubs + SUBDIR += py-PyUserInput SUBDIR += py-YABT SUBDIR += py-cinder SUBDIR += py-colorbrewer Added: head/misc/py-PyUserInput/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-PyUserInput/Makefile Sat Jun 2 01:56:58 2018 (r471339) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= PyUserInput +DISTVERSION= 0.1.11 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Module for mouse and keyboard control + +LICENSE= GPLv3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xlib>0:x11-toolkits/py-xlib@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/misc/py-PyUserInput/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-PyUserInput/distinfo Sat Jun 2 01:56:58 2018 (r471339) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527903895 +SHA256 (PyUserInput-0.1.11.tar.gz) = 006b5ed06cf740eeeb2c7221e1cb8dc5ae35f16267e41262bfb0e7cfdca7fb2b +SIZE (PyUserInput-0.1.11.tar.gz) = 28664 Added: head/misc/py-PyUserInput/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-PyUserInput/pkg-descr Sat Jun 2 01:56:58 2018 (r471339) @@ -0,0 +1,4 @@ +A module for cross-platform control of the mouse and keyboard in python that is +simple to use. + +WWW: https://github.com/PyUserInput/PyUserInput