QtPy(pronounced 'cutie pie') is a small abstraction layer that lets you write applications using a single api call to either PyQt or PySide. It provides support for PyQt5, PyQt4 and PySide using the PyQt5 layout (where the QtGui module has been split into QtGui and QtWidgets).
28 lines
526 B
Makefile
28 lines
526 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2017/02/19 19:30:54 shadchin Exp $
|
|
|
|
COMMENT = provides an abstraction layer of various Qt bindings
|
|
|
|
MODPY_EGG_VERSION = 1.1.2
|
|
DISTNAME = QtPy-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-qtpy-${MODPY_EGG_VERSION}
|
|
CATEGORIES = x11
|
|
|
|
HOMEPAGE = https://github.com/spyder-ide/qtpy
|
|
|
|
MAINTAINER = Alexandr Shadchin <shadchin@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|