svn commit: r513197 - in head/devel: . py-yamlordereddictloader

Kurt Jaeger pi at FreeBSD.org
Sun Sep 29 07:25:57 UTC 2019


Author: pi
Date: Sun Sep 29 07:25:55 2019
New Revision: 513197
URL: https://svnweb.freebsd.org/changeset/ports/513197

Log:
  New port: devel/py-yamlordereddictloader
  
  This module provide a loader and a dumper for PyYAML allowing to keep items
  order when loading a file (by putting them in OrderedDict objects) and to
  manage OrderedDict objects when dumping to a file.
  
  WWW: https://pypi.python.org/pypi/yamlordereddictloader
  
  PR:		240895
  Submitted by:	Sergey Akhmatov <sergey at akhmatov.ru>

Added:
  head/devel/py-yamlordereddictloader/
  head/devel/py-yamlordereddictloader/Makefile   (contents, props changed)
  head/devel/py-yamlordereddictloader/distinfo   (contents, props changed)
  head/devel/py-yamlordereddictloader/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Sep 29 07:25:04 2019	(r513196)
+++ head/devel/Makefile	Sun Sep 29 07:25:55 2019	(r513197)
@@ -5207,6 +5207,7 @@
     SUBDIR += py-xxhash
     SUBDIR += py-yaml
     SUBDIR += py-yamllint
+    SUBDIR += py-yamlordereddictloader
     SUBDIR += py-yandex-money-sdk
     SUBDIR += py-yappi
     SUBDIR += py-yapps2

Added: head/devel/py-yamlordereddictloader/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-yamlordereddictloader/Makefile	Sun Sep 29 07:25:55 2019	(r513197)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	yamlordereddictloader
+DISTVERSION=	0.4.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sergey at akhmatov.ru
+COMMENT=	Loader and a dumper for PyYAML allowing to keep items order
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}yaml>=5.1:devel/py-yaml@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-yamlordereddictloader/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-yamlordereddictloader/distinfo	Sun Sep 29 07:25:55 2019	(r513197)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1569667073
+SHA256 (yamlordereddictloader-0.4.0.tar.gz) = 7f30f0b99ea3f877f7cb340c570921fa9d639b7f69cba18be051e27f8de2080e
+SIZE (yamlordereddictloader-0.4.0.tar.gz) = 3322

Added: head/devel/py-yamlordereddictloader/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-yamlordereddictloader/pkg-descr	Sun Sep 29 07:25:55 2019	(r513197)
@@ -0,0 +1,5 @@
+This module provide a loader and a dumper for PyYAML allowing to keep items
+order when loading a file (by putting them in OrderedDict objects) and to
+manage OrderedDict objects when dumping to a file.
+
+WWW: https://pypi.python.org/pypi/yamlordereddictloader


More information about the svn-ports-head mailing list