pkgsrc/textproc/py-textile/Makefile
adam f82f441643 py-textile: updated to 4.0.2
Version 4.0.2
* Bugfixes:
** Support non-http schemas in url refs
** pytest-runner is deprecated
*** other changes related to CI infrastructure

Version 4.0.1
* Bugfixes:
** SyntaxWarnings with Python 3.8
** testsuite: internal error with coverage 5.0.X
** DeprecationWarnings about invalid escape sequences

Version 4.0.0
* Drop support for Python 2, hence the version bump. Update list of PY3K versions to currently-supported versions. If you need to use textile on Python 2.7 or Python 3.3 or 3.4, please use textile Version 3.0.4.
* For use in PyPy environments, textile used to work well with the regex package. Lately, it's running into trouble. Please uninstall regex if this is the case for you.
2024-01-24 11:20:40 +00:00

28 lines
917 B
Makefile

# $NetBSD: Makefile,v 1.27 2024/01/24 11:20:40 adam Exp $
DISTNAME= textile-4.0.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= textproc python
MASTER_SITES= ${MASTER_SITE_PYPI:=t/textile/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/textile/python-textile
COMMENT= XHTML generator using a simple markup
LICENSE= modified-bsd
TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
DEPENDS+= ${PYPKGPREFIX}-html5lib>=1.0.1:../../textproc/py-html5lib
DEPENDS+= ${PYPKGPREFIX}-regex>=1.1:../../textproc/py-regex
TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
USE_LANGUAGES= # none
PYTHON_VERSIONS_INCOMPATIBLE= 27
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} pytextile pytextile-${PYVERSSUFFIX} || ${TRUE}
.include "../../lang/python/wheel.mk"
.include "../../mk/bsd.pkg.mk"