svn commit: r518974 - head/devel/py-yaml

Josh Paetzel jpaetzel at FreeBSD.org
Tue Dec 3 23:35:17 UTC 2019


Author: jpaetzel
Date: Tue Dec  3 23:35:16 2019
New Revision: 518974
URL: https://svnweb.freebsd.org/changeset/ports/518974

Log:
  Update to 5.2
  
  Repair incompatibilities introduced with 5.1. The default Loader was changed, but
    several methods like add_constructor still used the old default
    A more flexible fix for custom tag constructors
    Change default loader for yaml.add_constructor
    Change default loader for add_implicit_resolver, add_path_resolver
  Make FullLoader safer by removing python/object/apply from the default FullLoader
    Move constructor for object/apply to UnsafeConstructor
  Fix bug introduced in 5.1 where quoting went wrong on systems with
    sys.maxunicode <= 0xffff
  Fix logic for quoting special characters

Modified:
  head/devel/py-yaml/Makefile
  head/devel/py-yaml/distinfo

Modified: head/devel/py-yaml/Makefile
==============================================================================
--- head/devel/py-yaml/Makefile	Tue Dec  3 23:22:23 2019	(r518973)
+++ head/devel/py-yaml/Makefile	Tue Dec  3 23:35:16 2019	(r518974)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	yaml
-PORTVERSION=	5.1
+PORTVERSION=	5.2
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

Modified: head/devel/py-yaml/distinfo
==============================================================================
--- head/devel/py-yaml/distinfo	Tue Dec  3 23:22:23 2019	(r518973)
+++ head/devel/py-yaml/distinfo	Tue Dec  3 23:35:16 2019	(r518974)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1556018048
-SHA256 (PyYAML-5.1.tar.gz) = 436bc774ecf7c103814098159fbb84c2715d25980175292c648f2da143909f95
-SIZE (PyYAML-5.1.tar.gz) = 274244
+TIMESTAMP = 1575414761
+SHA256 (PyYAML-5.2.tar.gz) = c0ee8eca2c582d29c3c2ec6e2c4f703d1b7f1fb10bc72317355a746057e7346c
+SIZE (PyYAML-5.2.tar.gz) = 265687


More information about the svn-ports-head mailing list