summaryrefslogtreecommitdiffstats
path: root/abs/core/libxcb/python-35x-fixes.patch
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2017-03-29 13:57:35 (GMT)
committerBritney Fransen <brfransen@gmail.com>2017-03-29 13:57:35 (GMT)
commit24706063e8d47a08f114ef946ffbdf490604767c (patch)
tree870ab9c1c8b2039a6c99181afd99bcef415d9f40 /abs/core/libxcb/python-35x-fixes.patch
parent5592c98d286137006d7f70988cab76b76c720ec0 (diff)
downloadlinhes_pkgbuild-24706063e8d47a08f114ef946ffbdf490604767c.zip
linhes_pkgbuild-24706063e8d47a08f114ef946ffbdf490604767c.tar.gz
linhes_pkgbuild-24706063e8d47a08f114ef946ffbdf490604767c.tar.bz2
libxcb: update to 1.12
Diffstat (limited to 'abs/core/libxcb/python-35x-fixes.patch')
-rw-r--r--abs/core/libxcb/python-35x-fixes.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/abs/core/libxcb/python-35x-fixes.patch b/abs/core/libxcb/python-35x-fixes.patch
new file mode 100644
index 0000000..88de252
--- /dev/null
+++ b/abs/core/libxcb/python-35x-fixes.patch
@@ -0,0 +1,42 @@
+diff --git a/src/c_client.py b/src/c_client.py
+index 57de3fb..043338d 100644
+--- a/src/c_client.py
++++ b/src/c_client.py
+@@ -1364,7 +1364,7 @@ def _c_serialize(context, self):
+ _c(' unsigned int xcb_align_to = 0;')
+ if self.is_switch:
+ _c(' unsigned int xcb_padding_offset = %d;',
+- self.get_align_offset() )
++ self.get_align_offset() )
+ prefix = [('_aux', '->', self)]
+ aux_ptr = 'xcb_out'
+
+@@ -1390,7 +1390,7 @@ def _c_serialize(context, self):
+ _c(' unsigned int xcb_align_to = 0;')
+ if self.is_switch:
+ _c(' unsigned int xcb_padding_offset = %d;',
+- self.get_align_offset() )
++ self.get_align_offset() )
+
+ elif 'sizeof' == context:
+ param_names = [p[2] for p in params]
+@@ -1930,14 +1930,14 @@ def _c_accessors_list(self, field):
+ # from the request size and divide that by the member size
+ return '(((R->length * 4) - sizeof('+ self.c_type + '))/'+'sizeof('+field.type.member.c_wiretype+'))'
+ else:
+- # use the accessor to get the start of the list, then
+- # compute the length of it by subtracting it from
++ # use the accessor to get the start of the list, then
++ # compute the length of it by subtracting it from
+ # the adress of the first byte after the end of the
+ # request
+- after_end_of_request = '(((char*)R) + R->length * 4)'
+- start_of_list = '%s(R)' % (field.c_accessor_name)
++ after_end_of_request = '(((char*)R) + R->length * 4)'
++ start_of_list = '%s(R)' % (field.c_accessor_name)
+ bytesize_of_list = '%s - (char*)(%s)' % (after_end_of_request, start_of_list)
+- return '(%s) / sizeof(%s)' % (bytesize_of_list, field.type.member.c_wiretype)
++ return '(%s) / sizeof(%s)' % (bytesize_of_list, field.type.member.c_wiretype)
+ else:
+ raise Exception(
+ "lengthless lists with varsized members are not supported. Fieldname '%s'"