files were dropped (mostly entry_points.txt) or .egg-info files changed to directories. Small patches were needed where some other build systems were calling Python tools to install due to changes in setuptools. Messy patching needed for games/0ad which bundles a spidermonkey tar of a specific version and patches it using files in its own distribution. Been through a bulk on i386, plus I tested a few things separately on amd64 where fallout from the recent qscintilla update has broken some ports on !LP64 which was blocking them on i386.
31 lines
590 B
Makefile
31 lines
590 B
Makefile
COMMENT = jquery-like library for python
|
|
|
|
MODPY_EGG_VERSION = 1.4.3
|
|
DISTNAME = pyquery-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-query-${MODPY_EGG_VERSION}
|
|
REVISION = 1
|
|
|
|
CATEGORIES = www
|
|
|
|
HOMEPAGE = https://github.com/gawel/pyquery
|
|
|
|
MAINTAINER = Kurt Mosiejczuk <kmos@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_PYTEST = Yes
|
|
|
|
RUN_DEPENDS = textproc/py-cssselect${MODPY_FLAVOR} \
|
|
textproc/py-lxml${MODPY_FLAVOR}
|
|
TEST_DEPENDS = www/py-webtest${MODPY_FLAVOR}
|
|
|
|
FLAVORS = python3
|
|
FLAVOR = python3
|
|
|
|
.include <bsd.port.mk>
|