diff options
author | obache <obache@pkgsrc.org> | 2010-08-07 05:06:33 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-08-07 05:06:33 +0000 |
commit | 77df003fbe38001db40c784463d07625b94270de (patch) | |
tree | eaef73e5d0e33a707dc8ba96a49dd16d96f7025f /x11/py-Xlib | |
parent | 3d2e5df7b4d04735ab21b85658069cb10365154d (diff) | |
download | pkgsrc-77df003fbe38001db40c784463d07625b94270de.tar.gz |
Update py-Xlib to 0.14.
* Version 0.14 1 Oct 2007 (trialed as 0.14rc1 on 10 Jun 2007)
A couple of new extensions, a Python 2.5 fix and a couple of aliases
(Display.get_atom() now uses the internal cache and added
Window.raise_window()). Tabs converted to spaces (SF id: 1559082).
** RECORD extension (SF id: 1538663)
Alex Badea contributed a RECORD extension module, allowing Python Xlib
programs to capture mouse and keyboard events (or all other core or
extension events) easily. A demo is in the examples directory. See
http://refspecs.freestandards.org/X11/recordlib.pdf for more information.
** XINERAMA extension
Mike Meyer contributed a Xinerama extension module, allowing Python Xlib
programs to interrogate the X server about positions and sizes of
multiple screens. Specifications are a bit tricky to find -
http://sourceforge.net/projects/xinerama/ has some older specs and the
source code of the xorg project (libs & server code) has "definitive"
information.
** Python 2.5 fix (SF id: 1623900)
Bugfix to correct handling of XAuthority file parsing under Python 2.5
causing failed authentication.
* Version 0.13 6 Aug 2006 (trialed as 0.13pre1 on 22 Jul 2006)
A small release to incorporate a number of minor corrections and bug
fixes, including small changes to keysym handling, .Xauthority parsing,
several fixes to sending/receiving/flushing data, addition of
WithdrawnState to WMHints. petli completed documentation for Display
objects.
Diffstat (limited to 'x11/py-Xlib')
-rw-r--r-- | x11/py-Xlib/Makefile | 12 | ||||
-rw-r--r-- | x11/py-Xlib/PLIST | 12 | ||||
-rw-r--r-- | x11/py-Xlib/distinfo | 8 |
3 files changed, 21 insertions, 11 deletions
diff --git a/x11/py-Xlib/Makefile b/x11/py-Xlib/Makefile index 846b3114bfd..e489df9a1ef 100644 --- a/x11/py-Xlib/Makefile +++ b/x11/py-Xlib/Makefile @@ -1,18 +1,18 @@ -# $NetBSD: Makefile,v 1.4 2008/06/12 02:14:57 joerg Exp $ +# $NetBSD: Makefile,v 1.5 2010/08/07 05:06:33 obache Exp $ -DISTNAME= python-xlib-0.12 -PKGNAME= ${PYPKGPREFIX}-Xlib-0.12 -PKGREVISION= 1 +DISTNAME= python-xlib-0.14 +PKGNAME= ${PYPKGPREFIX}-Xlib-0.14 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=python-xlib/} MAINTAINER= ccatrian@eml.cc HOMEPAGE= http://python-xlib.sourceforge.net/ COMMENT= Functional X client library for Python +LICENSE= gnu-gpl-v2 PKG_DESTDIR_SUPPORT= user-destdir -PYDISTUTILSPKG= yes +EGG_NAME= python_xlib-0.12 -.include "../../lang/python/extension.mk" +.include "../../lang/python/distutils.mk" .include "../../mk/bsd.pkg.mk" diff --git a/x11/py-Xlib/PLIST b/x11/py-Xlib/PLIST index 06f028db2b8..aada6a31bf3 100644 --- a/x11/py-Xlib/PLIST +++ b/x11/py-Xlib/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2009/06/14 18:25:03 joerg Exp $ +@comment $NetBSD: PLIST,v 1.3 2010/08/07 05:06:33 obache Exp $ ${PYSITELIB}/Xlib/X.py ${PYSITELIB}/Xlib/X.pyc ${PYSITELIB}/Xlib/X.pyo @@ -26,9 +26,15 @@ ${PYSITELIB}/Xlib/error.pyo ${PYSITELIB}/Xlib/ext/__init__.py ${PYSITELIB}/Xlib/ext/__init__.pyc ${PYSITELIB}/Xlib/ext/__init__.pyo +${PYSITELIB}/Xlib/ext/record.py +${PYSITELIB}/Xlib/ext/record.pyc +${PYSITELIB}/Xlib/ext/record.pyo ${PYSITELIB}/Xlib/ext/shape.py ${PYSITELIB}/Xlib/ext/shape.pyc ${PYSITELIB}/Xlib/ext/shape.pyo +${PYSITELIB}/Xlib/ext/xinerama.py +${PYSITELIB}/Xlib/ext/xinerama.pyc +${PYSITELIB}/Xlib/ext/xinerama.pyo ${PYSITELIB}/Xlib/ext/xtest.py ${PYSITELIB}/Xlib/ext/xtest.pyc ${PYSITELIB}/Xlib/ext/xtest.pyo @@ -128,6 +134,9 @@ ${PYSITELIB}/Xlib/support/vms_connect.pyo ${PYSITELIB}/Xlib/threaded.py ${PYSITELIB}/Xlib/threaded.pyc ${PYSITELIB}/Xlib/threaded.pyo +${PYSITELIB}/Xlib/xauth.py +${PYSITELIB}/Xlib/xauth.pyc +${PYSITELIB}/Xlib/xauth.pyo ${PYSITELIB}/Xlib/xobject/__init__.py ${PYSITELIB}/Xlib/xobject/__init__.pyc ${PYSITELIB}/Xlib/xobject/__init__.pyo @@ -149,3 +158,4 @@ ${PYSITELIB}/Xlib/xobject/icccm.pyo ${PYSITELIB}/Xlib/xobject/resource.py ${PYSITELIB}/Xlib/xobject/resource.pyc ${PYSITELIB}/Xlib/xobject/resource.pyo +${PLIST.eggfile}${PYSITELIB}/${EGG_FILE} diff --git a/x11/py-Xlib/distinfo b/x11/py-Xlib/distinfo index 54c66a856d9..f3facd3178a 100644 --- a/x11/py-Xlib/distinfo +++ b/x11/py-Xlib/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2005/02/23 17:36:18 wiz Exp $ +$NetBSD: distinfo,v 1.3 2010/08/07 05:06:33 obache Exp $ -SHA1 (python-xlib-0.12.tar.gz) = d3fb68e8e71d745d907b12812808f3a8bdd85c90 -RMD160 (python-xlib-0.12.tar.gz) = 1f16fcb6ebea0b91bfed5deb6085565814f33b26 -Size (python-xlib-0.12.tar.gz) = 299665 bytes +SHA1 (python-xlib-0.14.tar.gz) = e25e3c1284e768d3f84eaebbea4ed3e647c2a05b +RMD160 (python-xlib-0.14.tar.gz) = be5610035fb1aee36a55e3e276582e3e31ba1cfc +Size (python-xlib-0.14.tar.gz) = 200223 bytes |