mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
EmeraldTree is a fork of ElementTree - the main differences are: - It has a slightly different API for handling of text: it uses unicode objects as children (not as "tail" attributes of the elements) - API cleanups, removing backward compatibility - Better unicode support - PolyglotWriter (for writing html5 that is also well-formed xml) - Other improvements / optimizations WWW: https://github.com/moinwiki/emeraldtree
23 lines
602 B
Makefile
23 lines
602 B
Makefile
PORTNAME= emeraldtree
|
|
DISTVERSION= 0.11.0
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Light-weight toolkit for XML processing
|
|
WWW= https://github.com/moinwiki/emeraldtree
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= ${PY_SETUPTOOLS} \
|
|
${PYTHON_PKGNAMEPREFIX}setuptools-scm>0:devel/py-setuptools-scm@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tox>0:devel/py-tox@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist pep517 pytest
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|