svn commit: r487802 - in head/devel: . py-pyudev

Niclas Zeising zeising at FreeBSD.org
Wed Dec 19 15:34:29 UTC 2018


Author: zeising
Date: Wed Dec 19 15:34:27 2018
New Revision: 487802
URL: https://svnweb.freebsd.org/changeset/ports/487802

Log:
  Add new port: devel/py-pyudev
  
  Add new port devel/py-pyudev, python bindnings to libudev.
  This is needed for updated libinput
  
  More info here: https://pyudev.readthedocs.io/en/latest/
  Obtained from:  https://github.com/myfreeweb/freebsd-ports-dank/tree/master/devel/py-pyudev
  
  PR:		222905 (based on)
  Submitted by:	wulf, Greg V
  Obtained from:	FreeBSD Graphics Team development repo
  		https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/input
  		https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/input-ports

Added:
  head/devel/py-pyudev/
  head/devel/py-pyudev/Makefile   (contents, props changed)
  head/devel/py-pyudev/distinfo   (contents, props changed)
  head/devel/py-pyudev/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Dec 19 14:57:33 2018	(r487801)
+++ head/devel/Makefile	Wed Dec 19 15:34:27 2018	(r487802)
@@ -5018,6 +5018,7 @@
     SUBDIR += py-pytrie
     SUBDIR += py-pytvmaze
     SUBDIR += py-pytz
+    SUBDIR += py-pyudev
     SUBDIR += py-pyutil
     SUBDIR += py-pyvalid
     SUBDIR += py-pyvisa

Added: head/devel/py-pyudev/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyudev/Makefile	Wed Dec 19 15:34:27 2018	(r487802)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	pyudev
+PORTVERSION=	0.21.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	x11 at FreeBSD.org
+COMMENT=	Pure Python libudev binding
+
+LICENSE=	LGPL21
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+LIB_DEPENDS=	libudev.so:devel/libudev-devd
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pyudev/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyudev/distinfo	Wed Dec 19 15:34:27 2018	(r487802)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1527799557
+SHA256 (pyudev-0.21.0.tar.gz) = 094b7a100150114748aaa3b70663485dd360457a709bfaaafe5a977371033f2b
+SIZE (pyudev-0.21.0.tar.gz) = 89469

Added: head/devel/py-pyudev/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyudev/pkg-descr	Wed Dec 19 15:34:27 2018	(r487802)
@@ -0,0 +1,8 @@
+pyudev is a LGPL licensed, pure Python binding for libudev, the device
+and hardware management and information library for Linux. It supports
+almost all libudev functionality. You can enumerate devices, query
+device properties and attributes or monitor devices, including
+asynchronous monitoring with threads, or within the event loops of Qt,
+Glib or wxPython.
+
+WWW: https://pyudev.readthedocs.org


More information about the svn-ports-all mailing list