pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-ruamel-yaml



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue May  7 09:29:38 UTC 2019

Modified Files:
        pkgsrc/devel/py-ruamel-yaml: Makefile PLIST distinfo

Log Message:
py-ruamel.yaml: updated to 0.15.94

0.15.94:
- fix missing line-break after end-of-file comments not ending in
  line-break

0.15.93:
- fix failure to parse empty implicit flow mapping key
- in YAML 1.1 plains scalars y, 'n', Y, and 'N' are now
  correctly recognised as booleans and such strings dumped quoted

0.15.92:
- fix failure to parse empty implicit block mapping key

0.15.91:
- allowing duplicate keys would not work for merge keys

0.15.90:
- fix issue with updating CommentedMap from list of tuples

0.15.89:
- fix for items with flow-mapping in block sequence output on single line
- fix for safe dumping erroring in creation of representereror when dumping namedtuple

0.15.88:
- fix inclusing of python code from the subpackage data

0.15.87:
- fix problem with empty lists and the code to reinsert merge keys

0.15.86:
- reinsert merge key in its old position
- fix for issue with non-ASCII anchor names
- fix for issue when parsing flow mapping value starting with colon (in pure Python only)

0.15.85:
- the types used by SafeConstructor for mappings and sequences can
  now by set by assigning to XXXConstructor.yaml_base_dict_type
  (and ..._list_type), preventing the need to copy two methods
  with 50+ lines that had var = {} hardcoded.

0.15.84:
- fix for CommentedMap.copy() not returning CommentedMap, let alone copying comments etc.

0.15.83:
- fix for bug in roundtripping aliases used as key

0.15.82:
- anchors and aliases on scalar int, float, string and bool are now preserved. Anchors
  do not need a referring alias for these
- anchors no longer lost on tagged objects when roundtripping

0.15.81:
 - fix issue saving methods of metaclass derived classes

0.15.80:
 - fix issue emitting BEL character when round-tripping invalid folded input

0.15.79:
- fix issue with anchors nested deeper than alias

0.15.78:
- fix setup issue for 3.8

0.15.77:
- setting yaml.sort_base_mapping_type_on_output = False, will prevent
  explicit sorting by keys in the base representer of mappings. Roundtrip
  already did not do this. Usage only makes real sense for Python 3.6+
- implement Python version check in YAML metadata in _test/test_z_data.py

0.15.76:
- fix issue with empty mapping and sequence loaded as flow-style

0.15.75:
- fix issue with single '?' scalar
- fix issue with duplicate merge keys

0.15.74:
- fix dropping of comment on rt before sequence item that is sequence item

0.15.73:
- fix irregular output on pre-comment in sequence within sequence
- allow non-compact (i.e. next line) dumping sequence/mapping within sequence.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-ruamel-yaml/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-ruamel-yaml/PLIST
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-ruamel-yaml/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-ruamel-yaml/Makefile
diff -u pkgsrc/devel/py-ruamel-yaml/Makefile:1.9 pkgsrc/devel/py-ruamel-yaml/Makefile:1.10
--- pkgsrc/devel/py-ruamel-yaml/Makefile:1.9    Sun Oct 14 16:26:51 2018
+++ pkgsrc/devel/py-ruamel-yaml/Makefile        Tue May  7 09:29:38 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2018/10/14 16:26:51 adam Exp $
+# $NetBSD: Makefile,v 1.10 2019/05/07 09:29:38 adam Exp $
 
-DISTNAME=      ruamel.yaml-0.15.72
+DISTNAME=      ruamel.yaml-0.15.94
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/./-/1}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=r/ruamel.yaml/}
@@ -11,10 +11,8 @@ COMMENT=     YAML parser/emitter
 LICENSE=       mit
 
 .include "../../lang/python/pyversion.mk"
-.if ${_PYTHON_VERSION} < 30
+.if ${_PYTHON_VERSION} == 27
 DEPENDS+=      ${PYPKGPREFIX}-ruamel-ordereddict>=0.4.9:../../devel/py-ruamel-ordereddict
-.endif
-.if ${_PYTHON_VERSION} < 35
 DEPENDS+=      ${PYPKGPREFIX}-typing-[0-9]*:../../devel/py-typing
 .endif
 

Index: pkgsrc/devel/py-ruamel-yaml/PLIST
diff -u pkgsrc/devel/py-ruamel-yaml/PLIST:1.5 pkgsrc/devel/py-ruamel-yaml/PLIST:1.6
--- pkgsrc/devel/py-ruamel-yaml/PLIST:1.5       Sun Oct 14 16:26:51 2018
+++ pkgsrc/devel/py-ruamel-yaml/PLIST   Tue May  7 09:29:38 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2018/10/14 16:26:51 adam Exp $
+@comment $NetBSD: PLIST,v 1.6 2019/05/07 09:29:38 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -10,6 +10,9 @@ ${PYSITELIB}/_ruamel_yaml.so
 ${PYSITELIB}/ruamel/yaml/__init__.py
 ${PYSITELIB}/ruamel/yaml/__init__.pyc
 ${PYSITELIB}/ruamel/yaml/__init__.pyo
+${PYSITELIB}/ruamel/yaml/anchor.py
+${PYSITELIB}/ruamel/yaml/anchor.pyc
+${PYSITELIB}/ruamel/yaml/anchor.pyo
 ${PYSITELIB}/ruamel/yaml/comments.py
 ${PYSITELIB}/ruamel/yaml/comments.pyc
 ${PYSITELIB}/ruamel/yaml/comments.pyo
@@ -28,18 +31,6 @@ ${PYSITELIB}/ruamel/yaml/constructor.pyo
 ${PYSITELIB}/ruamel/yaml/cyaml.py
 ${PYSITELIB}/ruamel/yaml/cyaml.pyc
 ${PYSITELIB}/ruamel/yaml/cyaml.pyo
-${PYSITELIB}/ruamel/yaml/data/__init__.py
-${PYSITELIB}/ruamel/yaml/data/__init__.pyc
-${PYSITELIB}/ruamel/yaml/data/__init__.pyo
-${PYSITELIB}/ruamel/yaml/data/__main__.py
-${PYSITELIB}/ruamel/yaml/data/__main__.pyc
-${PYSITELIB}/ruamel/yaml/data/__main__.pyo
-${PYSITELIB}/ruamel/yaml/data/data.py
-${PYSITELIB}/ruamel/yaml/data/data.pyc
-${PYSITELIB}/ruamel/yaml/data/data.pyo
-${PYSITELIB}/ruamel/yaml/data/setup.py
-${PYSITELIB}/ruamel/yaml/data/setup.pyc
-${PYSITELIB}/ruamel/yaml/data/setup.pyo
 ${PYSITELIB}/ruamel/yaml/dumper.py
 ${PYSITELIB}/ruamel/yaml/dumper.pyc
 ${PYSITELIB}/ruamel/yaml/dumper.pyo
@@ -73,6 +64,9 @@ ${PYSITELIB}/ruamel/yaml/representer.pyo
 ${PYSITELIB}/ruamel/yaml/resolver.py
 ${PYSITELIB}/ruamel/yaml/resolver.pyc
 ${PYSITELIB}/ruamel/yaml/resolver.pyo
+${PYSITELIB}/ruamel/yaml/scalarbool.py
+${PYSITELIB}/ruamel/yaml/scalarbool.pyc
+${PYSITELIB}/ruamel/yaml/scalarbool.pyo
 ${PYSITELIB}/ruamel/yaml/scalarfloat.py
 ${PYSITELIB}/ruamel/yaml/scalarfloat.pyc
 ${PYSITELIB}/ruamel/yaml/scalarfloat.pyo

Index: pkgsrc/devel/py-ruamel-yaml/distinfo
diff -u pkgsrc/devel/py-ruamel-yaml/distinfo:1.8 pkgsrc/devel/py-ruamel-yaml/distinfo:1.9
--- pkgsrc/devel/py-ruamel-yaml/distinfo:1.8    Sun Oct 14 16:26:51 2018
+++ pkgsrc/devel/py-ruamel-yaml/distinfo        Tue May  7 09:29:38 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.8 2018/10/14 16:26:51 adam Exp $
+$NetBSD: distinfo,v 1.9 2019/05/07 09:29:38 adam Exp $
 
-SHA1 (ruamel.yaml-0.15.72.tar.gz) = 7d8675c9a2cfbae50f01a66b1dd90601dd7c848a
-RMD160 (ruamel.yaml-0.15.72.tar.gz) = 93997d1d0e1d5e1810bf20ed33105869cccb202e
-SHA512 (ruamel.yaml-0.15.72.tar.gz) = d5bb6f07ac319da8fd5bd20b5967c256717604e3bc5bf73e660c287dc15eed74169ec20dfee67ef73ee2a32a7f839ec19e7cab30d666bf171475eb32ecba5ea8
-Size (ruamel.yaml-0.15.72.tar.gz) = 309859 bytes
+SHA1 (ruamel.yaml-0.15.94.tar.gz) = 7d698a164480b305a46c5939a566ab4d676a0cab
+RMD160 (ruamel.yaml-0.15.94.tar.gz) = 8d6142ebfadaac886678309ef23d97b0b1f70268
+SHA512 (ruamel.yaml-0.15.94.tar.gz) = 5b939658fbf6418789ea6ac0f38aefbaa927bae7457cc26ce701dc93abd5dc47df2a94717d795bafff92256cb10a9bbed079617d083a365de457c42f98e62dc3
+Size (ruamel.yaml-0.15.94.tar.gz) = 312571 bytes



Home | Main Index | Thread Index | Old Index