Accepting request 629996 from home:iznogood:branches:GNOME:Factory
- Update to version 2.56.2:
+ Support version 2 of the NetworkMonitor portal interface.
+ Bugs fixed: bgo#740791, bgo#755721, bgo#773435, bgo#793727,
bgo#794380, bgo#794801, bgo#795138, bgo#795234, bgo#795406,
bgo#795429, bgo#795711, bgo#795735, bgo#795802,
glgo#GNOME/glib2#1240, glgo#GNOME/glib2#1401,
glgo#GNOME/glib2#1452, glgo#GNOME/glib2#1458.
+ Updated translations.
- Drop glib2-codegen-headers.patch: Fixed upstream.
- Refresh patches with quilt.
OBS-URL: https://build.opensuse.org/request/show/629996
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/glib2?expand=0&rev=365
2018-08-18 18:19:14 +02:00
|
|
|
Index: glib-2.56.2/gio/gdbus-2.0/codegen/codegen.py
|
2018-03-09 11:10:43 +01:00
|
|
|
===================================================================
|
Accepting request 629996 from home:iznogood:branches:GNOME:Factory
- Update to version 2.56.2:
+ Support version 2 of the NetworkMonitor portal interface.
+ Bugs fixed: bgo#740791, bgo#755721, bgo#773435, bgo#793727,
bgo#794380, bgo#794801, bgo#795138, bgo#795234, bgo#795406,
bgo#795429, bgo#795711, bgo#795735, bgo#795802,
glgo#GNOME/glib2#1240, glgo#GNOME/glib2#1401,
glgo#GNOME/glib2#1452, glgo#GNOME/glib2#1458.
+ Updated translations.
- Drop glib2-codegen-headers.patch: Fixed upstream.
- Refresh patches with quilt.
OBS-URL: https://build.opensuse.org/request/show/629996
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/glib2?expand=0&rev=365
2018-08-18 18:19:14 +02:00
|
|
|
--- glib-2.56.2.orig/gio/gdbus-2.0/codegen/codegen.py 2018-08-17 02:03:20.000000000 +0200
|
|
|
|
+++ glib-2.56.2/gio/gdbus-2.0/codegen/codegen.py 2018-08-17 10:46:31.576471772 +0200
|
2018-03-09 11:10:43 +01:00
|
|
|
@@ -29,7 +29,7 @@ from . import dbustypes
|
|
|
|
from .utils import print_error
|
2017-06-07 15:34:11 +02:00
|
|
|
|
2018-03-09 11:10:43 +01:00
|
|
|
LICENSE_STR = '''/*
|
2018-09-22 00:43:51 +02:00
|
|
|
- * Generated by gdbus-codegen {!s} from {!s}. DO NOT EDIT.
|
2018-03-09 11:10:43 +01:00
|
|
|
+ * Generated by gdbus-codegen. DO NOT EDIT.
|
|
|
|
*
|
|
|
|
* The license of this code is the same as for the D-Bus interface description
|
|
|
|
* it was derived from.
|
2018-09-22 00:43:51 +02:00
|
|
|
@@ -67,8 +67,7 @@ class HeaderCodeGenerator:
|
2018-03-09 11:10:43 +01:00
|
|
|
# ----------------------------------------------------------------------------------------------------
|
2017-06-07 15:34:11 +02:00
|
|
|
|
2018-03-09 11:10:43 +01:00
|
|
|
def generate_header_preamble(self):
|
2018-09-22 00:43:51 +02:00
|
|
|
- basenames = ', '.join(self.input_files_basenames)
|
|
|
|
- self.outfile.write(LICENSE_STR.format(config.VERSION, basenames))
|
2018-03-09 11:10:43 +01:00
|
|
|
+ self.outfile.write(LICENSE_STR)
|
|
|
|
self.outfile.write('\n')
|
|
|
|
|
|
|
|
if self.use_pragma:
|
2018-09-22 00:43:51 +02:00
|
|
|
@@ -627,8 +626,7 @@ class CodeGenerator:
|
2018-03-09 11:10:43 +01:00
|
|
|
# ----------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def generate_body_preamble(self):
|
2018-09-22 00:43:51 +02:00
|
|
|
- basenames = ', '.join(self.input_files_basenames)
|
|
|
|
- self.outfile.write(LICENSE_STR.format(config.VERSION, basenames))
|
2018-03-09 11:10:43 +01:00
|
|
|
+ self.outfile.write(LICENSE_STR)
|
|
|
|
self.outfile.write('\n')
|
|
|
|
self.outfile.write('#ifdef HAVE_CONFIG_H\n'
|
|
|
|
'# include "config.h"\n'
|