Date: Mon, 25 Mar 2019 16:19:08 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r496837 - head/x11-toolkits/py-xlib Message-ID: <201903251619.x2PGJ8mS029130@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Mon Mar 25 16:19:08 2019 New Revision: 496837 URL: https://svnweb.freebsd.org/changeset/ports/496837 Log: x11-toolkits/py-xlib: Update to 0.25 While I'm here: * Fix license * Set MASTER_SITES to CHEESESHOP * Pet portlint Changelog since 0.23-4: * Fix increasing memory usage on display instantiation * Fix protocol handling: correctly support explicit Unix connections and fix support fox macOS * Fix xfixes example * Fix a bunch of typos in the code / documentation * Improve Python 3 support: fix events sub-code handling and possible crashes when unpacking text data * Add support for error handlers to the Composite extension NV-CONTROL extension * Add first implementation by Roberto Leinardi https://github.com/python-xlib/python-xlib/blob/0.25/CHANGELOG.md PR: 236418 Submitted by: Olivier Duchateau <duchateau.olivier@gmail.com> Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D19617 Modified: head/x11-toolkits/py-xlib/Makefile head/x11-toolkits/py-xlib/distinfo head/x11-toolkits/py-xlib/pkg-descr Modified: head/x11-toolkits/py-xlib/Makefile ============================================================================== --- head/x11-toolkits/py-xlib/Makefile Mon Mar 25 16:18:17 2019 (r496836) +++ head/x11-toolkits/py-xlib/Makefile Mon Mar 25 16:19:08 2019 (r496837) @@ -2,26 +2,25 @@ # $FreeBSD$ PORTNAME= xlib -DISTVERSION= 0.23-4 -DISTVERSIONSUFFIX= -g45e4b62 +DISTVERSION= 0.25 CATEGORIES= x11-toolkits python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= python-${PORTNAME}-${PORTVERSION} MAINTAINER= fax@nohik.ee COMMENT= X11 library for Python -LICENSE= GPLv2+ +LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.7:devel/py-setuptools_scm@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} -USES= python -USE_GITHUB= yes -GH_ACCOUNT= python-xlib -GH_PROJECT= python-xlib +USES= python tar:bz2 USE_PYTHON= autoplist concurrent distutils + NO_ARCH= yes .include <bsd.port.mk> Modified: head/x11-toolkits/py-xlib/distinfo ============================================================================== --- head/x11-toolkits/py-xlib/distinfo Mon Mar 25 16:18:17 2019 (r496836) +++ head/x11-toolkits/py-xlib/distinfo Mon Mar 25 16:19:08 2019 (r496837) @@ -1,3 +1,3 @@ -TIMESTAMP = 1531942908 -SHA256 (python-xlib-python-xlib-0.23-4-g45e4b62_GH0.tar.gz) = 19a00df7a7d47d32e4cfe136c625e6219bf08616d95270adf98ccc8ef795ad50 -SIZE (python-xlib-python-xlib-0.23-4-g45e4b62_GH0.tar.gz) = 217840 +TIMESTAMP = 1552129362 +SHA256 (python-xlib-0.25.tar.bz2) = 204f280b549352af6cbdaff43405186822ae05749518dd9be209bd88a0088f99 +SIZE (python-xlib-0.25.tar.bz2) = 204578 Modified: head/x11-toolkits/py-xlib/pkg-descr ============================================================================== --- head/x11-toolkits/py-xlib/pkg-descr Mon Mar 25 16:18:17 2019 (r496836) +++ head/x11-toolkits/py-xlib/pkg-descr Mon Mar 25 16:19:08 2019 (r496837) @@ -2,4 +2,4 @@ The Python X Library is a complete X11R6 client-side i written in pure Python. It can be used to write low-level X client applications in Python. -WWW: https://sourceforge.net/projects/python-xlib/ +WWW: https://github.com/python-xlib/python-xlib
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903251619.x2PGJ8mS029130>