Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Apr 2019 16:36:20 +0000 (UTC)
From:      Kai Knoblich <kai@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r498290 - in head/devel: . py-saneyaml
Message-ID:  <201904071636.x37GaK35037848@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kai
Date: Sun Apr  7 16:36:20 2019
New Revision: 498290
URL: https://svnweb.freebsd.org/changeset/ports/498290

Log:
  New port: devel/py-saneyaml
  
  Dump readable YAML and load safely any YAML preserving ordering and avoiding
  surprises of type conversions.
  
  This library is a PyYaml wrapper with sane behaviour to read and write readable
  YAML safely, typically when used for configuration.
  
  WWW: https://github.com/nexB/saneyaml
  
  Approved by:	mentors (implicit)

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Apr  7 16:34:21 2019	(r498289)
+++ head/devel/Makefile	Sun Apr  7 16:36:20 2019	(r498290)
@@ -5100,6 +5100,7 @@
     SUBDIR += py-rwt
     SUBDIR += py-rx
     SUBDIR += py-sanetime
+    SUBDIR += py-saneyaml
     SUBDIR += py-sarge
     SUBDIR += py-schedule
     SUBDIR += py-schema

Added: head/devel/py-saneyaml/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-saneyaml/Makefile	Sun Apr  7 16:36:20 2019	(r498290)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	saneyaml
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.1
+CATEGORIES=	devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	kai@FreeBSD.org
+COMMENT=	Dump readable YAML and load safely any YAML data
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/apache-2.0.LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pip>=0:devel/py-pip@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+USE_GITHUB=	yes
+GH_ACCOUNT=	nexB
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-saneyaml/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-saneyaml/distinfo	Sun Apr  7 16:36:20 2019	(r498290)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1544915286
+SHA256 (nexB-saneyaml-v0.1_GH0.tar.gz) = 72a0807532d870945daf5cb7f15e2926072e06e6f3f8d7b8eb6107dd9c78f409
+SIZE (nexB-saneyaml-v0.1_GH0.tar.gz) = 22597

Added: head/devel/py-saneyaml/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-saneyaml/pkg-descr	Sun Apr  7 16:36:20 2019	(r498290)
@@ -0,0 +1,7 @@
+Dump readable YAML and load safely any YAML preserving ordering and avoiding
+surprises of type conversions.
+
+This library is a PyYaml wrapper with sane behaviour to read and write readable
+YAML safely, typically when used for configuration.
+
+WWW: https://github.com/nexB/saneyaml



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904071636.x37GaK35037848>