68dd32482d
pkgsrc changes: - Remove dependency to py-typing, no longer needed since version 0.14.9 - Reset USE_LANGUAGES, C parts were splitted in py-ruamel-yaml-clib and a C compiler is no longer needed Changes: [0, 16, 5]: 2019-08-18 - allow for ``YAML(typ=['unsafe', 'pytypes'])`` [0, 16, 4]: 2019-08-16 - fix output of TAG directives with # (reported by `Thomas Smith <https://bitbucket.org/%7Bd4c57a72-f041-4843-8217-b4d48b6ece2f%7D/>`__) [0, 16, 3]: 2019-08-15 - move setting of version based on YAML directive to scanner, allowing to check for file version during TAG directive scanning [0, 16, 2]: 2019-08-15 - preserve YAML and TAG directives on roundtrip, correctly output # in URL for YAML 1.2 (both reported by `Thomas Smith <https://bitbucket.org/%7Bd4c57a72-f041-4843-8217-b4d48b6ece2f%7D/>`__) [0, 16, 1]: 2019-08-08 - Force the use of new version of ruamel.yaml.clib (reported by `Alex Joz <https://bitbucket.org/%7B9af55900-2534-4212-976c-61339b6ffe14%7D/>`__) - Allow '#' in tag URI as these are allowed in YAML 1.2 (reported by `Thomas Smith <https://bitbucket.org/%7Bd4c57a72-f041-4843-8217-b4d48b6ece2f%7D/>`__) [0, 16, 0]: 2019-07-25 - split of C source that generates .so file to ruamel.yaml.clib - duplicate keys are now an error when working with the old API as well
23 lines
667 B
Makefile
23 lines
667 B
Makefile
# $NetBSD: Makefile,v 1.13 2019/12/17 10:11:28 leot Exp $
|
|
|
|
DISTNAME= ruamel.yaml-0.16.5
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/./-/1}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=r/ruamel.yaml/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://bitbucket.org/ruamel/yaml
|
|
COMMENT= YAML parser/emitter
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
.if ${_PYTHON_VERSION} == 27
|
|
DEPENDS+= ${PYPKGPREFIX}-ruamel-ordereddict>=0.4.9:../../devel/py-ruamel-ordereddict
|
|
.endif
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-ruamel-yaml-clib>=0.1.2:../../devel/py-ruamel-yaml-clib
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|