de261ff8ad
2017.10.4 * Fix 157: Fix images link with div wrap * Fix 55: Fix error when empty title tags * Fix 160: The html2text tests are failing on Windows and on Cygwin due to differences in eol handling between windows/*nix * Feature 164: Housekeeping: Add flake8 to the travis build, cleanup existing flake8 violations, add py3.6 and pypy3 to the travis build * Fix 109: Fix for unexpanded < > & * Fix 143: Fix line wrapping for the lines starting with bold * Adds support for numeric bold text indication in `font-weight`, as used by Google (and presumably others.) * Fix 173 and 142: Stripping whitespace in crucial markdown and adding whitespace as necessary * Don't drop any cell data on tables uneven row lengths (e.g. colspan in use)
22 lines
642 B
Makefile
22 lines
642 B
Makefile
# $NetBSD: Makefile,v 1.51 2017/10/25 04:09:46 adam Exp $
|
|
|
|
DISTNAME= html2text-2017.10.4
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc converters python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=h/html2text/}
|
|
|
|
MAINTAINER= schmonz@NetBSD.org
|
|
HOMEPAGE= https://github.com/Alir3z4/html2text
|
|
COMMENT= Convert HTML into easy-to-read plain ASCII text
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
REPLACE_PYTHON= html2text/__init__.py
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && ${MV} html2text html2text-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|