svn commit: r495100 - in head/devel: . py-ewmh

Tobias C. Berner tcberner at FreeBSD.org
Sat Mar 9 07:20:02 UTC 2019


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 at 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 at 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


More information about the svn-ports-all mailing list