Build of python-yaml with clang_glibc toolchain

The build took 00h 02m 04s and was SUCCESSFUL.

The program in this build is written in the following languages, according to sloccount:

SLOCLanguage
12,277 python
24 ansic
12,301 total

The process tree of the build process is here.

Several sub-process invocations were improper; see the process tree for details. Summary:

Log

To avoid scrolling, you may jump to the last line of the invocation of makepkg that was used to build this package.

Removed vanilla repositories from pacman.conf and added:
# [tuscan]
# Server = file:///var/cache/pacman/pkg/

CMD: pacman -Syy --noconfirm
# :: Synchronizing package databases...
# downloading tuscan.db...

Copied permanent toolchain into container-local sysroot
# /toolchain_root/sysroot --> /sysroot/sysroot
# /toolchain_root/lib --> /sysroot/lib
# /toolchain_root/sbin --> /sysroot/sbin
# /toolchain_root/lib64 --> /sysroot/lib64
# /toolchain_root/etc --> /sysroot/etc
# /toolchain_root/share --> /sysroot/share
# /toolchain_root/bin --> /sysroot/bin
# /toolchain_root/var --> /sysroot/var
# /toolchain_root/usr --> /sysroot/usr
# /toolchain_root/glibc-build --> /sysroot/glibc-build
# /toolchain_root/x86_64-pc-linux-gnu --> /sysroot/x86_64-pc-linux-gnu
# /toolchain_root/include --> /sysroot/include
# /toolchain_root/libexec --> /sysroot/libexec

CMD: sudo -u tuscan PATH=/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin CC=clang CXX=clang++ red makepkg --noextract --syncdeps --skipinteg --skippgpcheck --skipchecksums --noconfirm --nocolor --log --noprogressbar --nocheck
# ==> Making package: python-yaml 3.11-3 (Thu Apr 13 19:05:31 UTC 2017)
# ==> Checking runtime dependencies...
# ==> Checking buildtime dependencies...
# ==> WARNING: Using existing $srcdir/ tree
# ==> Starting build()...
# ==> Entering fakeroot environment...
# ==> Starting package_python2-yaml()...
# running install
# running build
# running build_py
# creating build
# creating build/lib.linux-x86_64-2.7
# creating build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/representer.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/constructor.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/nodes.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/reader.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/scanner.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/loader.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/parser.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/__init__.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/events.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/cyaml.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/error.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/emitter.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/dumper.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/composer.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/serializer.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/resolver.py -> build/lib.linux-x86_64-2.7/yaml
# copying lib/yaml/tokens.py -> build/lib.linux-x86_64-2.7/yaml
# running build_ext
# creating build/temp.linux-x86_64-2.7
# checking if libyaml is compilable
# clang -DNDEBUG -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fPIC -I/usr/include/python2.7 -c build/temp.linux-x86_64-2.7/check_libyaml.c -o build/temp.linux-x86_64-2.7/check_libyaml.o
# checking if libyaml is linkable
# clang build/temp.linux-x86_64-2.7/check_libyaml.o -L/usr/lib -lyaml -o build/temp.linux-x86_64-2.7/check_libyaml
# building '_yaml' extension
# creating build/temp.linux-x86_64-2.7/ext
# clang -DNDEBUG -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fPIC -I/usr/include/python2.7 -c ext/_yaml.c -o build/temp.linux-x86_64-2.7/ext/_yaml.o
# In file included from ext/_yaml.c:343:
# ext/_yaml.h:6:9: warning: 'PyUnicode_FromString' macro redefined [-Wmacro-redefined]
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/python2.7/unicodeobject.h:281:10: note: previous definition is here
# # define PyUnicode_FromString PyUnicodeUCS4_FromString
# ^
# ext/_yaml.c:1346:17: warning: assigning to 'char *' from 'const char *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
# __pyx_v_value = yaml_get_version_string();
# ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.c:2471:52: warning: incompatible pointer types passing 'int (void *, char *, int, int *)' to parameter of type 'yaml_read_handler_t *' (aka 'int (*)(void *, unsigned char *, unsigned long, unsigned long *)') [-Wincompatible-pointer-types]
# yaml_parser_set_input((&__pyx_v_self->parser), __pyx_f_5_yaml_input_handler, ((void *)__pyx_v_self));
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/yaml.h:1368:30: note: passing argument to parameter 'handler' here
# yaml_read_handler_t *handler, void *data);
# ^
# ext/_yaml.c:2664:59: warning: passing 'char [1]' to parameter of type 'const unsigned char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# yaml_parser_set_input_string((&__pyx_v_self->parser), PyString_AS_STRING(__pyx_v_stream), PyString_GET_SIZE(__pyx_v_stream));
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python2.7/stringobject.h:91:32: note: expanded from macro 'PyString_AS_STRING'
# #define PyString_AS_STRING(op) (((PyStringObject *)(op))->ob_sval)
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/yaml.h:1342:30: note: passing argument to parameter 'input' here
# const unsigned char *input, size_t size);
# ^
# ext/_yaml.c:4183:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag_directive.handle); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:4183:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag_directive.handle); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4195:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag_directive.prefix); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:4195:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag_directive.prefix); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4741:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.alias.value); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 448; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:4741:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.alias.value); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 448; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4792:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = PyUnicode_FromString(__pyx_v_token->data.anchor.value); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:4792:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = PyUnicode_FromString(__pyx_v_token->data.anchor.value); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4843:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag.handle); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 454; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:4843:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag.handle); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 454; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4855:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag.suffix); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:4855:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag.suffix); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4938:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_DecodeUTF8(__pyx_v_token->data.scalar.value, __pyx_v_token->data.scalar.length, __pyx_k_strict); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 460; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6435:42: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = PyUnicode_FromString(__pyx_v_tag_directive->handle); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 574; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:6435:21: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = PyUnicode_FromString(__pyx_v_tag_directive->handle); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 574; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6447:42: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = PyUnicode_FromString(__pyx_v_tag_directive->prefix); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 575; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:6447:21: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = PyUnicode_FromString(__pyx_v_tag_directive->prefix); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 575; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6616:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_event->data.alias.anchor); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 586; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:6616:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_event->data.alias.anchor); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 586; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6687:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_1 = PyUnicode_FromString(__pyx_v_event->data.scalar.anchor); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 591; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:6687:19: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_1 = PyUnicode_FromString(__pyx_v_event->data.scalar.anchor); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 591; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6722:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_1 = PyUnicode_FromString(__pyx_v_event->data.scalar.tag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 594; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:6722:19: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_1 = PyUnicode_FromString(__pyx_v_event->data.scalar.tag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 594; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6737:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_1 = PyUnicode_DecodeUTF8(__pyx_v_event->data.scalar.value, __pyx_v_event->data.scalar.length, __pyx_k_strict); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 595; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:7031:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_event->data.sequence_start.anchor); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 620; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:7031:19: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_event->data.sequence_start.anchor); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 620; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:7066:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_event->data.sequence_start.tag); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 623; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:7066:19: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_event->data.sequence_start.tag); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 623; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:7253:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_event->data.mapping_start.anchor); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 637; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:7253:19: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_event->data.mapping_start.anchor); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 637; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:7288:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_event->data.mapping_start.tag); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:7288:19: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_event->data.mapping_start.tag); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:8704:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.alias.anchor); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 734; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:8704:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.alias.anchor); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 734; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:8924:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.scalar.anchor); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 750; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:8924:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.scalar.anchor); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 750; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:8962:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.sequence_start.anchor); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:8962:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.sequence_start.anchor); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:9000:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.mapping_start.anchor); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 756; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:9000:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.mapping_start.anchor); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 756; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:9532:36: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_DecodeUTF8(__pyx_v_self->parsed_event.data.scalar.value, __pyx_v_self->parsed_event.data.scalar.length, __pyx_k_strict); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 791; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:9688:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_9 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.scalar.tag); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 804; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:9688:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_9 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.scalar.tag); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 804; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:10128:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.sequence_start.tag); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 837; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:10128:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.sequence_start.tag); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 837; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:10654:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.mapping_start.tag); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 876; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:66: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^
# /usr/include/string.h:394:35: note: passing argument to parameter '__s' here
# extern size_t strlen (const char *__s)
# ^
# ext/_yaml.c:10654:17: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.mapping_start.tag); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 876; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:6:54: note: expanded from macro 'PyUnicode_FromString'
# #define PyUnicode_FromString(s) PyUnicode_DecodeUTF8((s), strlen(s), "strict")
# ^~~
# /usr/include/python2.7/unicodeobject.h:751:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:11721:53: warning: incompatible pointer types passing 'int (void *, char *, int)' to parameter of type 'yaml_write_handler_t *' (aka 'int (*)(void *, unsigned char *, unsigned long)') [-Wincompatible-pointer-types]
# yaml_emitter_set_output((&__pyx_v_self->emitter), __pyx_f_5_yaml_output_handler, ((void *)__pyx_v_self));
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/yaml.h:1830:31: note: passing argument to parameter 'handler' here
# yaml_write_handler_t *handler, void *data);
# ^
# ext/_yaml.c:12898:44: warning: assigning to 'yaml_char_t *' (aka 'unsigned char *') from 'char [1]' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_v_tag_directives_end->handle = PyString_AS_STRING(__pyx_v_handle);
# ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.c:12991:44: warning: assigning to 'yaml_char_t *' (aka 'unsigned char *') from 'char [1]' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_v_tag_directives_end->prefix = PyString_AS_STRING(__pyx_v_prefix);
# ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.c:13248:62: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = ((yaml_alias_event_initialize(__pyx_v_event, __pyx_v_anchor) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:553:63: note: passing argument to parameter 'anchor' here
# yaml_alias_event_initialize(yaml_event_t *event, yaml_char_t *anchor);
# ^
# ext/_yaml.c:13824:63: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = ((yaml_scalar_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:579:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag,
# ^
# ext/_yaml.c:13824:79: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = ((yaml_scalar_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:579:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag,
# ^
# ext/_yaml.c:13824:92: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = ((yaml_scalar_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~~~
# /usr/include/yaml.h:580:22: note: passing argument to parameter 'value' here
# yaml_char_t *value, int length,
# ^
# ext/_yaml.c:14166:71: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = ((yaml_sequence_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:602:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:14166:87: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = ((yaml_sequence_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:602:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:14508:70: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = ((yaml_mapping_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:634:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:14508:86: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = ((yaml_mapping_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:634:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:15784:42: warning: assigning to 'yaml_char_t *' (aka 'unsigned char *') from 'char [1]' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_v_tag_directives_end->handle = PyString_AS_STRING(__pyx_v_handle);
# ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.c:15877:42: warning: assigning to 'yaml_char_t *' (aka 'unsigned char *') from 'char [1]' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_v_tag_directives_end->prefix = PyString_AS_STRING(__pyx_v_prefix);
# ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.c:16616:65: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = ((yaml_alias_event_initialize((&__pyx_v_event), __pyx_v_anchor) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:553:63: note: passing argument to parameter 'anchor' here
# yaml_alias_event_initialize(yaml_event_t *event, yaml_char_t *anchor);
# ^
# ext/_yaml.c:17195:68: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_scalar_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:579:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag,
# ^
# ext/_yaml.c:17195:84: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_scalar_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:579:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag,
# ^
# ext/_yaml.c:17195:97: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_scalar_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~~~
# /usr/include/yaml.h:580:22: note: passing argument to parameter 'value' here
# yaml_char_t *value, int length,
# ^
# ext/_yaml.c:17473:76: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_sequence_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:602:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:17473:92: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_sequence_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:602:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:17874:75: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_mapping_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:634:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:17874:91: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_mapping_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:634:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# 72 warnings generated.
# gcc -pthread -shared -Wl,-O1,--sort-common,--as-needed,-z,relro build/temp.linux-x86_64-2.7/ext/_yaml.o -L/usr/lib -lyaml -lpython2.7 -o build/lib.linux-x86_64-2.7/_yaml.so
# running install_lib
# creating /tmp/python-yaml/pkg/python2-yaml/usr
# creating /tmp/python-yaml/pkg/python2-yaml/usr/lib
# creating /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7
# creating /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages
# creating /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/representer.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/constructor.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/nodes.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/reader.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/scanner.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/loader.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/parser.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/__init__.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/events.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/cyaml.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/error.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/emitter.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/dumper.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/composer.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/serializer.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/resolver.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/yaml/tokens.py -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml
# copying build/lib.linux-x86_64-2.7/_yaml.so -> /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/representer.py to representer.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/constructor.py to constructor.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/nodes.py to nodes.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/reader.py to reader.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/scanner.py to scanner.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/loader.py to loader.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/parser.py to parser.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/__init__.py to __init__.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/events.py to events.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/cyaml.py to cyaml.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/error.py to error.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/emitter.py to emitter.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/dumper.py to dumper.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/composer.py to composer.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/serializer.py to serializer.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/resolver.py to resolver.pyc
# byte-compiling /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/yaml/tokens.py to tokens.pyc
# running install_egg_info
# Writing /tmp/python-yaml/pkg/python2-yaml/usr/lib/python2.7/site-packages/PyYAML-3.11-py2.7.egg-info
# ==> Tidying install...
# -> Removing doc files...
# -> Purging unwanted files...
# ==> Checking for packaging issue...
# ==> Creating package "python2-yaml"...
# -> Generating .PKGINFO file...
# -> Generating .BUILDINFO file...
# error: invalid option '--noprogressbar'
# -> Adding install file...
# -> Generating .MTREE file...
# -> Compressing package...
# ==> Starting package_python-yaml()...
# running install
# running build
# running build_py
# creating build/lib.linux-x86_64-3.5
# creating build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/representer.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/constructor.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/nodes.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/reader.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/scanner.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/loader.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/parser.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/__init__.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/events.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/cyaml.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/error.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/emitter.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/dumper.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/composer.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/serializer.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/resolver.py -> build/lib.linux-x86_64-3.5/yaml
# copying lib3/yaml/tokens.py -> build/lib.linux-x86_64-3.5/yaml
# running build_ext
# creating build/temp.linux-x86_64-3.5
# checking if libyaml is compilable
# clang -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python3.5m -c build/temp.linux-x86_64-3.5/check_libyaml.c -o build/temp.linux-x86_64-3.5/check_libyaml.o
# checking if libyaml is linkable
# clang build/temp.linux-x86_64-3.5/check_libyaml.o -L/usr/lib -lyaml -o build/temp.linux-x86_64-3.5/check_libyaml
# building '_yaml' extension
# creating build/temp.linux-x86_64-3.5/ext
# clang -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python3.5m -c ext/_yaml.c -o build/temp.linux-x86_64-3.5/ext/_yaml.o
# In file included from ext/_yaml.c:343:
# ext/_yaml.h:10:9: warning: 'PyString_CheckExact' macro redefined [-Wmacro-redefined]
# #define PyString_CheckExact PyBytes_CheckExact
# ^
# ext/_yaml.c:184:11: note: previous definition is here
# #define PyString_CheckExact PyUnicode_CheckExact
# ^
# ext/_yaml.c:1346:17: warning: assigning to 'char *' from 'const char *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
# __pyx_v_value = yaml_get_version_string();
# ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.c:2471:52: warning: incompatible pointer types passing 'int (void *, char *, int, int *)' to parameter of type 'yaml_read_handler_t *' (aka 'int (*)(void *, unsigned char *, unsigned long, unsigned long *)') [-Wincompatible-pointer-types]
# yaml_parser_set_input((&__pyx_v_self->parser), __pyx_f_5_yaml_input_handler, ((void *)__pyx_v_self));
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/yaml.h:1368:30: note: passing argument to parameter 'handler' here
# yaml_read_handler_t *handler, void *data);
# ^
# ext/_yaml.c:2664:59: warning: passing 'char *' to parameter of type 'const unsigned char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# yaml_parser_set_input_string((&__pyx_v_self->parser), PyString_AS_STRING(__pyx_v_stream), PyString_GET_SIZE(__pyx_v_stream));
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.h:11:29: note: expanded from macro 'PyString_AS_STRING'
# #define PyString_AS_STRING PyBytes_AS_STRING
# ^
# /usr/include/python3.5m/bytesobject.h:73:31: note: expanded from macro 'PyBytes_AS_STRING'
# #define PyBytes_AS_STRING(op) (assert(PyBytes_Check(op)), \
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/yaml.h:1342:30: note: passing argument to parameter 'input' here
# const unsigned char *input, size_t size);
# ^
# ext/_yaml.c:4183:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag_directive.handle); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4195:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag_directive.prefix); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4741:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.alias.value); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 448; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4792:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = PyUnicode_FromString(__pyx_v_token->data.anchor.value); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 451; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4843:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag.handle); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 454; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4855:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_token->data.tag.suffix); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:4938:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_DecodeUTF8(__pyx_v_token->data.scalar.value, __pyx_v_token->data.scalar.length, __pyx_k_strict); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 460; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:1269:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6435:42: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = PyUnicode_FromString(__pyx_v_tag_directive->handle); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 574; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6447:42: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = PyUnicode_FromString(__pyx_v_tag_directive->prefix); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 575; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6616:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_event->data.alias.anchor); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 586; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6687:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_1 = PyUnicode_FromString(__pyx_v_event->data.scalar.anchor); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 591; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6722:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_1 = PyUnicode_FromString(__pyx_v_event->data.scalar.tag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 594; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:6737:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_1 = PyUnicode_DecodeUTF8(__pyx_v_event->data.scalar.value, __pyx_v_event->data.scalar.length, __pyx_k_strict); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 595; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:1269:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:7031:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_event->data.sequence_start.anchor); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 620; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:7066:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_event->data.sequence_start.tag); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 623; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:7253:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_event->data.mapping_start.anchor); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 637; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:7288:40: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_event->data.mapping_start.tag); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:8704:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.alias.anchor); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 734; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:8924:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.scalar.anchor); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 750; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:8962:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.sequence_start.anchor); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:9000:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.mapping_start.anchor); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 756; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:9532:36: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_DecodeUTF8(__pyx_v_self->parsed_event.data.scalar.value, __pyx_v_self->parsed_event.data.scalar.length, __pyx_k_strict); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 791; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:1269:17: note: passing argument to parameter 'string' here
# const char *string, /* UTF-8 encoded string */
# ^
# ext/_yaml.c:9688:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_9 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.scalar.tag); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 804; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:10128:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.sequence_start.tag); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 837; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:10654:38: warning: passing 'yaml_char_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.mapping_start.tag); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 876; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/python3.5m/unicodeobject.h:719:17: note: passing argument to parameter 'u' here
# const char *u /* UTF-8 encoded string */
# ^
# ext/_yaml.c:11721:53: warning: incompatible pointer types passing 'int (void *, char *, int)' to parameter of type 'yaml_write_handler_t *' (aka 'int (*)(void *, unsigned char *, unsigned long)') [-Wincompatible-pointer-types]
# yaml_emitter_set_output((&__pyx_v_self->emitter), __pyx_f_5_yaml_output_handler, ((void *)__pyx_v_self));
# ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# /usr/include/yaml.h:1830:31: note: passing argument to parameter 'handler' here
# yaml_write_handler_t *handler, void *data);
# ^
# ext/_yaml.c:12898:44: warning: assigning to 'yaml_char_t *' (aka 'unsigned char *') from 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_v_tag_directives_end->handle = PyString_AS_STRING(__pyx_v_handle);
# ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.c:12991:44: warning: assigning to 'yaml_char_t *' (aka 'unsigned char *') from 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_v_tag_directives_end->prefix = PyString_AS_STRING(__pyx_v_prefix);
# ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.c:13248:62: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = ((yaml_alias_event_initialize(__pyx_v_event, __pyx_v_anchor) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:553:63: note: passing argument to parameter 'anchor' here
# yaml_alias_event_initialize(yaml_event_t *event, yaml_char_t *anchor);
# ^
# ext/_yaml.c:13824:63: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = ((yaml_scalar_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:579:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag,
# ^
# ext/_yaml.c:13824:79: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = ((yaml_scalar_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:579:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag,
# ^
# ext/_yaml.c:13824:92: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = ((yaml_scalar_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~~~
# /usr/include/yaml.h:580:22: note: passing argument to parameter 'value' here
# yaml_char_t *value, int length,
# ^
# ext/_yaml.c:14166:71: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = ((yaml_sequence_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:602:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:14166:87: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_4 = ((yaml_sequence_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:602:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:14508:70: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = ((yaml_mapping_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:634:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:14508:86: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_3 = ((yaml_mapping_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:634:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:15784:42: warning: assigning to 'yaml_char_t *' (aka 'unsigned char *') from 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_v_tag_directives_end->handle = PyString_AS_STRING(__pyx_v_handle);
# ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.c:15877:42: warning: assigning to 'yaml_char_t *' (aka 'unsigned char *') from 'char *' converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_v_tag_directives_end->prefix = PyString_AS_STRING(__pyx_v_prefix);
# ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ext/_yaml.c:16616:65: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_2 = ((yaml_alias_event_initialize((&__pyx_v_event), __pyx_v_anchor) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:553:63: note: passing argument to parameter 'anchor' here
# yaml_alias_event_initialize(yaml_event_t *event, yaml_char_t *anchor);
# ^
# ext/_yaml.c:17195:68: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_scalar_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:579:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag,
# ^
# ext/_yaml.c:17195:84: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_scalar_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:579:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag,
# ^
# ext/_yaml.c:17195:97: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_scalar_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0);
# ^~~~~~~~~~~~~
# /usr/include/yaml.h:580:22: note: passing argument to parameter 'value' here
# yaml_char_t *value, int length,
# ^
# ext/_yaml.c:17473:76: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_sequence_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:602:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:17473:92: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_sequence_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:602:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:17874:75: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_mapping_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0);
# ^~~~~~~~~~~~~~
# /usr/include/yaml.h:634:22: note: passing argument to parameter 'anchor' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:17874:91: warning: passing 'char *' to parameter of type 'yaml_char_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
# __pyx_t_8 = ((yaml_mapping_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0);
# ^~~~~~~~~~~
# /usr/include/yaml.h:634:43: note: passing argument to parameter 'tag' here
# yaml_char_t *anchor, yaml_char_t *tag, int implicit,
# ^
# ext/_yaml.c:22027:28: warning: unused function '__Pyx_PyObject_AsString' [-Wunused-function]
# static CYTHON_INLINE char* __Pyx_PyObject_AsString(PyObject* o) {
# ^
# ext/_yaml.c:22024:32: warning: unused function '__Pyx_PyUnicode_FromString' [-Wunused-function]
# static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(char* c_str) {
# ^
# ext/_yaml.c:22146:33: warning: unused function '__Pyx_PyIndex_AsSsize_t' [-Wunused-function]
# static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) {
# ^
# ext/_yaml.c:22175:33: warning: unused function '__Pyx_PyInt_FromSize_t' [-Wunused-function]
# static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) {
# ^
# ext/_yaml.c:20908:27: warning: unused function '__Pyx_ErrRestore' [-Wunused-function]
# static CYTHON_INLINE void __Pyx_ErrRestore(PyObject *type, PyObject *value, PyObject *tb) {
# ^
# ext/_yaml.c:20925:27: warning: unused function '__Pyx_ErrFetch' [-Wunused-function]
# static CYTHON_INLINE void __Pyx_ErrFetch(PyObject **type, PyObject **value, PyObject **tb) {
# ^
# ext/_yaml.c:21190:26: warning: unused function '__Pyx_PyBytes_Equals' [-Wunused-function]
# static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) {
# ^
# ext/_yaml.c:21319:32: warning: unused function '__Pyx_GetItemInt_List_Fast' [-Wunused-function]
# static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i,
# ^
# ext/_yaml.c:21333:32: warning: unused function '__Pyx_GetItemInt_Tuple_Fast' [-Wunused-function]
# static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i,
# ^
# ext/_yaml.c:21718:27: warning: function '__Pyx_PyInt_As_long' is not needed and will not be emitted [-Wunneeded-internal-declaration]
# static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) {
# ^
# 60 warnings generated.
# gcc -pthread -shared -Wl,-O1,--sort-common,--as-needed,-z,relro build/temp.linux-x86_64-3.5/ext/_yaml.o -L/usr/lib -lyaml -lpython3.5m -o build/lib.linux-x86_64-3.5/_yaml.cpython-35m-x86_64-linux-gnu.so
# running install_lib
# creating /tmp/python-yaml/pkg/python-yaml/usr
# creating /tmp/python-yaml/pkg/python-yaml/usr/lib
# creating /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5
# creating /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages
# creating /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/representer.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/constructor.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/nodes.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/reader.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/scanner.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/loader.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/parser.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/__init__.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/events.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/cyaml.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/error.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/emitter.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/dumper.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/composer.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/serializer.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/resolver.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/yaml/tokens.py -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml
# copying build/lib.linux-x86_64-3.5/_yaml.cpython-35m-x86_64-linux-gnu.so -> /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/representer.py to representer.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/constructor.py to constructor.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/nodes.py to nodes.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/reader.py to reader.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/scanner.py to scanner.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/loader.py to loader.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/parser.py to parser.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/__init__.py to __init__.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/events.py to events.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/cyaml.py to cyaml.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/error.py to error.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/emitter.py to emitter.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/dumper.py to dumper.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/composer.py to composer.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/serializer.py to serializer.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/resolver.py to resolver.cpython-35.pyc
# byte-compiling /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/yaml/tokens.py to tokens.cpython-35.pyc
# running install_egg_info
# Writing /tmp/python-yaml/pkg/python-yaml/usr/lib/python3.5/site-packages/PyYAML-3.11-py3.5.egg-info
# ==> Tidying install...
# -> Removing doc files...
# -> Purging unwanted files...
# ==> Checking for packaging issue...
# ==> Creating package "python-yaml"...
# -> Generating .PKGINFO file...
# -> Generating .BUILDINFO file...
# error: invalid option '--noprogressbar'
# -> Adding install file...
# -> Generating .MTREE file...
# -> Compressing package...
# ==> Leaving fakeroot environment.
# ==> Finished making: python-yaml 3.11-3 (Thu Apr 13 19:05:58 UTC 2017)

CMD: pacman --query --file python2-yaml-3.11-3-x86_64.pkg.tar.xz
# python2-yaml 3.11-3

Creating hybrid package for 'python2-yaml'

Trying to find vanilla package 'python2-yaml'...

CMD: pacman --query --file /mirror/python2-yaml-3.11-3.pkg.tar.xz
# python2-yaml 3.11-3

Package file has the following structure:
# /.PKGINFO
# /.INSTALL
# /.MTREE
# /usr/lib/python2.7/site-packages/PyYAML-3.11-py2.7.egg-info
# /usr/lib/python2.7/site-packages/_yaml.so
# /usr/lib/python2.7/site-packages/yaml/cyaml.py
# /usr/lib/python2.7/site-packages/yaml/serializer.py
# /usr/lib/python2.7/site-packages/yaml/scanner.py
# /usr/lib/python2.7/site-packages/yaml/loader.py
# /usr/lib/python2.7/site-packages/yaml/emitter.py
# /usr/lib/python2.7/site-packages/yaml/events.py
# /usr/lib/python2.7/site-packages/yaml/composer.py
# /usr/lib/python2.7/site-packages/yaml/resolver.py
# /usr/lib/python2.7/site-packages/yaml/nodes.py
# /usr/lib/python2.7/site-packages/yaml/__init__.py
# /usr/lib/python2.7/site-packages/yaml/parser.py
# /usr/lib/python2.7/site-packages/yaml/reader.py
# /usr/lib/python2.7/site-packages/yaml/dumper.py
# /usr/lib/python2.7/site-packages/yaml/tokens.py
# /usr/lib/python2.7/site-packages/yaml/error.py
# /usr/lib/python2.7/site-packages/yaml/constructor.py
# /usr/lib/python2.7/site-packages/yaml/representer.py
# /usr/lib/python2.7/site-packages/yaml/cyaml.pyc
# /usr/lib/python2.7/site-packages/yaml/serializer.pyc
# /usr/lib/python2.7/site-packages/yaml/scanner.pyc
# /usr/lib/python2.7/site-packages/yaml/loader.pyc
# /usr/lib/python2.7/site-packages/yaml/emitter.pyc
# /usr/lib/python2.7/site-packages/yaml/events.pyc
# /usr/lib/python2.7/site-packages/yaml/composer.pyc
# /usr/lib/python2.7/site-packages/yaml/resolver.pyc
# /usr/lib/python2.7/site-packages/yaml/nodes.pyc
# /usr/lib/python2.7/site-packages/yaml/__init__.pyc
# /usr/lib/python2.7/site-packages/yaml/parser.pyc
# /usr/lib/python2.7/site-packages/yaml/reader.pyc
# /usr/lib/python2.7/site-packages/yaml/dumper.pyc
# /usr/lib/python2.7/site-packages/yaml/tokens.pyc
# /usr/lib/python2.7/site-packages/yaml/error.pyc
# /usr/lib/python2.7/site-packages/yaml/constructor.pyc
# /usr/lib/python2.7/site-packages/yaml/representer.pyc
# /usr/share/licenses/python2-yaml/LICENSE
# /sysroot/usr/lib/python2.7/site-packages/_yaml.so
# /sysroot/usr/lib/python2.7/site-packages/PyYAML-3.11-py2.7.egg-info
# /sysroot/usr/lib/python2.7/site-packages/yaml/representer.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/constructor.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/nodes.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/reader.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/scanner.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/loader.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/parser.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/__init__.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/events.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/cyaml.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/error.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/emitter.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/dumper.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/composer.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/serializer.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/resolver.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/tokens.py
# /sysroot/usr/lib/python2.7/site-packages/yaml/representer.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/constructor.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/nodes.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/reader.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/scanner.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/loader.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/parser.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/__init__.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/events.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/cyaml.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/error.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/emitter.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/dumper.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/composer.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/serializer.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/resolver.pyc
# /sysroot/usr/lib/python2.7/site-packages/yaml/tokens.pyc

Generating .MTREE

CMD: bsdtar -czf .MTREE --format=mtree --options=!all,use-set,type,uid,mode,time,size,md5,sha256,link .PKGINFO .INSTALL usr sysroot

Tar-ing up files

CMD: bsdtar -cf - .PKGINFO .INSTALL usr sysroot .MTREE

CMD: xz -c -z

Successfully ran bsdtar -cf - .PKGINFO .INSTALL usr sysroot .MTREE | xz -c -z

CMD: bsdtar -tqf python2-yaml.pkg.tar.xz .PKGINFO
# .PKGINFO

Created package at path /var/cache/pacman/pkg/python2-yaml.pkg.tar.xz

CMD: pacman --query --file python-yaml-3.11-3-x86_64.pkg.tar.xz
# python-yaml 3.11-3

Creating hybrid package for 'python-yaml'

Trying to find vanilla package 'python-yaml'...

CMD: pacman --query --file /mirror/python-yaml-3.11-3.pkg.tar.xz
# python-yaml 3.11-3

Package file has the following structure:
# /.PKGINFO
# /.INSTALL
# /.MTREE
# /usr/lib/python3.5/site-packages/PyYAML-3.11-py3.5.egg-info
# /usr/lib/python3.5/site-packages/_yaml.cpython-35m-x86_64-linux-gnu.so
# /usr/lib/python3.5/site-packages/yaml/cyaml.py
# /usr/lib/python3.5/site-packages/yaml/serializer.py
# /usr/lib/python3.5/site-packages/yaml/scanner.py
# /usr/lib/python3.5/site-packages/yaml/loader.py
# /usr/lib/python3.5/site-packages/yaml/emitter.py
# /usr/lib/python3.5/site-packages/yaml/events.py
# /usr/lib/python3.5/site-packages/yaml/composer.py
# /usr/lib/python3.5/site-packages/yaml/resolver.py
# /usr/lib/python3.5/site-packages/yaml/nodes.py
# /usr/lib/python3.5/site-packages/yaml/__init__.py
# /usr/lib/python3.5/site-packages/yaml/parser.py
# /usr/lib/python3.5/site-packages/yaml/reader.py
# /usr/lib/python3.5/site-packages/yaml/dumper.py
# /usr/lib/python3.5/site-packages/yaml/tokens.py
# /usr/lib/python3.5/site-packages/yaml/error.py
# /usr/lib/python3.5/site-packages/yaml/constructor.py
# /usr/lib/python3.5/site-packages/yaml/representer.py
# /usr/lib/python3.5/site-packages/yaml/__pycache__/cyaml.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/serializer.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/scanner.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/loader.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/emitter.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/events.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/composer.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/resolver.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/nodes.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/__init__.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/parser.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/reader.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/dumper.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/tokens.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/error.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/constructor.cpython-35.pyc
# /usr/lib/python3.5/site-packages/yaml/__pycache__/representer.cpython-35.pyc
# /usr/share/licenses/python-yaml/LICENSE
# /sysroot/usr/lib/python3.5/site-packages/_yaml.cpython-35m-x86_64-linux-gnu.so
# /sysroot/usr/lib/python3.5/site-packages/PyYAML-3.11-py3.5.egg-info
# /sysroot/usr/lib/python3.5/site-packages/yaml/representer.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/constructor.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/nodes.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/reader.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/scanner.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/loader.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/parser.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/__init__.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/events.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/cyaml.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/error.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/emitter.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/dumper.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/composer.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/serializer.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/resolver.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/tokens.py
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/representer.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/constructor.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/nodes.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/reader.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/scanner.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/loader.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/parser.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/__init__.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/events.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/cyaml.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/error.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/emitter.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/dumper.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/composer.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/serializer.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/resolver.cpython-35.pyc
# /sysroot/usr/lib/python3.5/site-packages/yaml/__pycache__/tokens.cpython-35.pyc

Generating .MTREE

CMD: bsdtar -czf .MTREE --format=mtree --options=!all,use-set,type,uid,mode,time,size,md5,sha256,link .PKGINFO .INSTALL usr sysroot

Tar-ing up files

CMD: bsdtar -cf - .PKGINFO .INSTALL usr sysroot .MTREE

CMD: xz -c -z

Successfully ran bsdtar -cf - .PKGINFO .INSTALL usr sysroot .MTREE | xz -c -z

CMD: bsdtar -tqf python-yaml.pkg.tar.xz .PKGINFO
# .PKGINFO

Created package at path /var/cache/pacman/pkg/python-yaml.pkg.tar.xz

Attempting to access local repository, attempt 1

CMD: repo-add /var/cache/pacman/pkg/tuscan.db.tar /var/cache/pacman/pkg/python2-yaml.pkg.tar.xz
# ==> Extracting database to a temporary location...
# ==> Extracting database to a temporary location...
# ==> Adding package '/var/cache/pacman/pkg/python2-yaml.pkg.tar.xz'
# -> Computing checksums...
# -> Creating 'desc' db entry...
# -> Creating 'files' db entry...
# ==> Creating updated database file '/var/cache/pacman/pkg/tuscan.db.tar'

Attempting to access local repository, attempt 1

CMD: repo-add /var/cache/pacman/pkg/tuscan.db.tar /var/cache/pacman/pkg/python-yaml.pkg.tar.xz
# ==> Extracting database to a temporary location...
# ==> Extracting database to a temporary location...
# ==> Adding package '/var/cache/pacman/pkg/python-yaml.pkg.tar.xz'
# -> Computing checksums...
# -> Creating 'desc' db entry...
# -> Creating 'files' db entry...
# ==> Creating updated database file '/var/cache/pacman/pkg/tuscan.db.tar'