Date: Sat, 9 Mar 2019 07:20:00 +0000 (UTC) From: "Tobias C. Berner" <tcberner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r495100 - in head/devel: . py-ewmh Message-ID: <201903090720.x297K0Qs048420@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tcberner Date: Sat Mar 9 07:20:00 2019 New Revision: 495100 URL: https://svnweb.freebsd.org/changeset/ports/495100 Log: New port: devel/py-ewmh An implementation of EWMH (Extended Window Manager Hints) for python 2 and 3, based on Xlib. It allows EWMH-compliant window managers (most modern WMs) to be queried and controlled. WWW: https://github.com/parkouss/pyewmh PR: 235638 Submitted by: Hiroki Tagato <tagattie@yandex.com> Added: head/devel/py-ewmh/ head/devel/py-ewmh/Makefile (contents, props changed) head/devel/py-ewmh/distinfo (contents, props changed) head/devel/py-ewmh/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Mar 9 07:19:48 2019 (r495099) +++ head/devel/Makefile Sat Mar 9 07:20:00 2019 (r495100) @@ -4571,6 +4571,7 @@ SUBDIR += py-epsilon SUBDIR += py-evdev SUBDIR += py-eventlib + SUBDIR += py-ewmh SUBDIR += py-exam SUBDIR += py-expiringdict SUBDIR += py-extras Added: head/devel/py-ewmh/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ewmh/Makefile Sat Mar 9 07:20:00 2019 (r495100) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= ewmh +DISTVERSION= 0.1.6 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= tagattie@yandex.com +COMMENT= Python implementation of Extended Window Manager Hints, based on Xlib + +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xlib>0:x11-toolkits/py-xlib@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-ewmh/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ewmh/distinfo Sat Mar 9 07:20:00 2019 (r495100) @@ -0,0 +1,3 @@ +TIMESTAMP = 1548230184 +SHA256 (ewmh-0.1.6.tar.gz) = c56b093f7d575181e979bb3a7d15c34065755f811c351ff0a31fede12b09343d +SIZE (ewmh-0.1.6.tar.gz) = 13065 Added: head/devel/py-ewmh/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ewmh/pkg-descr Sat Mar 9 07:20:00 2019 (r495100) @@ -0,0 +1,5 @@ +An implementation of EWMH (Extended Window Manager Hints) for python 2 +and 3, based on Xlib. It allows EWMH-compliant window managers (most +modern WMs) to be queried and controlled. + +WWW: https://github.com/parkouss/pyewmh
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903090720.x297K0Qs048420>