summaryrefslogtreecommitdiff
path: root/system/yaml/skip-trailing-doc-term-0.2.1.patch
diff options
context:
space:
mode:
authorzlg <zlg@zlg.space>2018-11-20 20:47:42 -0800
committerzlg <zlg@zlg.space>2018-11-20 20:54:33 -0800
commit78d40257bd969b58407a251d9746e8fcf0fe4879 (patch)
tree7e36bd1f80120f2043cf9357f0745ae7ececdae6 /system/yaml/skip-trailing-doc-term-0.2.1.patch
parent75c78e3366d98013cc1d0f897db658243cceb6c5 (diff)
downloadpackages-78d40257bd969b58407a251d9746e8fcf0fe4879.tar.gz
packages-78d40257bd969b58407a251d9746e8fcf0fe4879.tar.bz2
packages-78d40257bd969b58407a251d9746e8fcf0fe4879.tar.xz
packages-78d40257bd969b58407a251d9746e8fcf0fe4879.zip
system/yaml: Backport emitter fix from v0.2.2-pre1
These patches fix an emitter problem that prevents PyYAML 3.13's test suite from passing. They should not be necessary when libyaml v0.2.2 is released. Patch-Author: James Clarke <jrtc27@jrtc27.com> See-Also: https://github.com/yaml/pyyaml/issues/184 See-Also: https://github.com/yaml/libyaml/issues/60#issuecomment-311836709
Diffstat (limited to 'system/yaml/skip-trailing-doc-term-0.2.1.patch')
-rw-r--r--system/yaml/skip-trailing-doc-term-0.2.1.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/system/yaml/skip-trailing-doc-term-0.2.1.patch b/system/yaml/skip-trailing-doc-term-0.2.1.patch
new file mode 100644
index 000000000..7e10cd9ea
--- /dev/null
+++ b/system/yaml/skip-trailing-doc-term-0.2.1.patch
@@ -0,0 +1,30 @@
+Contributor Note: As with fix-emitter-0.2.1.patch, this patch should
+not be necessary when v0.2.2 is released.
+
+From 7c2e6f47e1b12ca3dfa9ea2f6c65e9bd8a02e8c8 Mon Sep 17 00:00:00 2001
+From: James Clarke <jrtc27@jrtc27.com>
+Date: Thu, 29 Jun 2017 02:24:53 +0100
+Subject: [PATCH 1/2] Revert "This code is not needed and breaks tests"
+
+This reverts commit 56400d976a1999156b1abfd674c3122843980260.
+---
+ src/emitter.c | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/src/emitter.c b/src/emitter.c
+index a5b7ff8..c593a7d 100644
+--- a/src/emitter.c
++++ b/src/emitter.c
+@@ -1946,6 +1946,10 @@ yaml_emitter_write_plain_scalar(yaml_emitter_t *emitter,
+
+ emitter->whitespace = 0;
+ emitter->indention = 0;
++ if (emitter->root_context)
++ {
++ emitter->open_ended = 1;
++ }
+
+ return 1;
+ }
+--
+2.13.2