mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
02f6229d3f
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
27 lines
674 B
Makefile
27 lines
674 B
Makefile
# Created by: Mike Meyer <mwm@mired.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xlib
|
|
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= 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 tar:bz2
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|