68d8874f51
1.0.1 Breaking changes: * Drop support for Python 2.6. * Remove utils/spider.py Features: * Improve documentation. * Add iframe seamless boolean attribute. * Add itemscope as a boolean attribute. * Support Python 3.6. * Add CI support for Windows using AppVeyor. * Improve testing and CI and add code coverage * Semver-compliant version number. Bug fixes: * Add support for setuptools < 18.5 to support environment markers. * Add explicit dependency for six >= 1.9. * Fix regexes to work with Python 3.7 regex adjustments. * Fix alphabeticalattributes filter namespace bug. * Include license file in generated wheel package. * Fix annotation-xml typo. * Allow uppercase hex chararcters in CSS colour check.
19 lines
552 B
Makefile
19 lines
552 B
Makefile
# $NetBSD: Makefile,v 1.12 2018/02/26 08:24:42 adam Exp $
|
|
|
|
DISTNAME= html5lib-1.0.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc www python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=h/html5lib/}
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= https://github.com/html5lib/html5lib-python
|
|
COMMENT= HTML5 parser and tokenizer
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.9:../../lang/py-six
|
|
DEPENDS+= ${PYPKGPREFIX}-webencodings-[0-9]*:../../textproc/py-webencodings
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|