Date: Sun, 24 Jun 2018 20:05:48 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473215 - in head/textproc: . py-pyaml Message-ID: <201806242005.w5OK5mhJ042933@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Jun 24 20:05:48 2018 New Revision: 473215 URL: https://svnweb.freebsd.org/changeset/ports/473215 Log: Add py-pyaml 17.12.1 PyYAML-based python module to produce pretty and readable YAML-serialized data. This module is for serialization only, see ruamel.yaml module for literate YAML parsing (keeping track of comments, spacing, line/column numbers of values, etc). WWW: https://github.com/mk-fg/pretty-yaml Added: head/textproc/py-pyaml/ head/textproc/py-pyaml/Makefile (contents, props changed) head/textproc/py-pyaml/distinfo (contents, props changed) head/textproc/py-pyaml/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Jun 24 20:05:42 2018 (r473214) +++ head/textproc/Makefile Sun Jun 24 20:05:48 2018 (r473215) @@ -1341,6 +1341,7 @@ SUBDIR += py-pdfrw SUBDIR += py-pss SUBDIR += py-pyPEG2 + SUBDIR += py-pyaml SUBDIR += py-pyctpp2 SUBDIR += py-pyes SUBDIR += py-pygments Added: head/textproc/py-pyaml/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pyaml/Makefile Sun Jun 24 20:05:48 2018 (r473215) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pyaml +PORTVERSION= 17.12.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Produce pretty and readable YAML-serialized data + +LICENSE= WTFPL +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include <bsd.port.mk> Added: head/textproc/py-pyaml/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pyaml/distinfo Sun Jun 24 20:05:48 2018 (r473215) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529727949 +SHA256 (pyaml-17.12.1.tar.gz) = 66623c52f34d83a2c0fc963e08e8b9d0c13d88404e3b43b1852ef71eda19afa3 +SIZE (pyaml-17.12.1.tar.gz) = 15780 Added: head/textproc/py-pyaml/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pyaml/pkg-descr Sun Jun 24 20:05:48 2018 (r473215) @@ -0,0 +1,7 @@ +PyYAML-based python module to produce pretty and readable YAML-serialized data. + +This module is for serialization only, see ruamel.yaml module for literate YAML +parsing (keeping track of comments, spacing, line/column numbers of values, +etc). + +WWW: https://github.com/mk-fg/pretty-yaml
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806242005.w5OK5mhJ042933>