From 5a174dd3ecf217208c5c95b9d5606f573c8482e2 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 23:08:15 +0100 Subject: [PATCH] update to 2.3.0 [release 2.3.0-1mamba;Wed Nov 03 2021] --- glibd-2.3.0-glib-2.68.patch | 59 +++++++++++++++++++++++++++++++++++++ glibd-2.3.0-glib-2.70.patch | 29 ++++++++++++++++++ glibd.spec | 15 ++++++---- 3 files changed, 98 insertions(+), 5 deletions(-) create mode 100644 glibd-2.3.0-glib-2.68.patch create mode 100644 glibd-2.3.0-glib-2.70.patch diff --git a/glibd-2.3.0-glib-2.68.patch b/glibd-2.3.0-glib-2.68.patch new file mode 100644 index 0000000..8418de7 --- /dev/null +++ b/glibd-2.3.0-glib-2.68.patch @@ -0,0 +1,59 @@ +From b22a87ee6f42806aff5f9173a24cd05995db6cb0 Mon Sep 17 00:00:00 2001 +From: Mike Wey +Date: Sat, 3 Apr 2021 14:37:12 +0200 +Subject: [PATCH] Fix building for GLib 2.68 / Fedora 34 + +See Also: #11 +--- + src/APILookupGLib.txt | 6 ++++-- + src/APILookupGio.txt | 6 ++++++ + 2 files changed, 10 insertions(+), 2 deletions(-) + +diff --git a/src/APILookupGLib.txt b/src/APILookupGLib.txt +index 6e10e20..d0d0bfc 100644 +--- a/src/APILookupGLib.txt ++++ b/src/APILookupGLib.txt +@@ -320,7 +320,7 @@ code: start + if ( date is null ) + return false; + +- return equal(this, date) != 0; ++ return g_date_time_compare(gDateTime, date.getDateTimeStruct()) != 0; + } + + /** */ +@@ -331,7 +331,7 @@ code: start + if ( date is null ) + return int.min; + +- return compare(this, date); ++ return g_date_time_compare(gDateTime, date.getDateTimeStruct()); + } + + /** */ +@@ -1489,6 +1489,8 @@ code: end + struct: TimeZone + noCode: new_local + noCode: new_utc ++#TODO: Proper solution ++version 2.68: noCode: new_identifier + + struct: Tree + class: BBTree +diff --git a/src/APILookupGio.txt b/src/APILookupGio.txt +index 8b285f2..87c6780 100644 +--- a/src/APILookupGio.txt ++++ b/src/APILookupGio.txt +@@ -401,6 +401,12 @@ array: set_environ env + struct: ThemedIcon + noCode: new + ++version 2.68: start ++ struct: TlsCertificate ++ #TODO: Proper solution ++ noCode: new_from_pkcs11_uris ++version: end ++ + struct: TlsPassword + out: get_value length + array: get_value Return length diff --git a/glibd-2.3.0-glib-2.70.patch b/glibd-2.3.0-glib-2.70.patch new file mode 100644 index 0000000..05a50cd --- /dev/null +++ b/glibd-2.3.0-glib-2.70.patch @@ -0,0 +1,29 @@ +From 31cc330d1502084f25b207ba0f6c9a26126b5f20 Mon Sep 17 00:00:00 2001 +From: Mike Wey +Date: Sun, 31 Oct 2021 21:53:17 +0100 +Subject: [PATCH] Make sure GlibD builds for Glib 2.70. + +Fixes #12 +--- + src/APILookupGLib.txt | 8 +++++--- + 1 file changed, 5 insertions(+), 3 deletions(-) + +diff --git a/src/APILookupGLib.txt b/src/APILookupGLib.txt +index d0d0bfc..36e1cb2 100644 +--- a/src/APILookupGLib.txt ++++ b/src/APILookupGLib.txt +@@ -1985,9 +1985,11 @@ version: end + + version 2.60: move: strv_equal Str + +-move: string_new String +-move: string_new_len String +-move: string_sized_new String ++version <2.70: start ++ move: string_new String ++ move: string_new_len String ++ move: string_sized_new String ++version: end + + move: bit_lock Thread + move: bit_trylock Thread diff --git a/glibd.spec b/glibd.spec index e1e5d28..dcb84ff 100644 --- a/glibd.spec +++ b/glibd.spec @@ -1,6 +1,6 @@ Name: glibd -Version: 2.2.0 -Release: 3mamba +Version: 2.3.0 +Release: 1mamba Summary: D bindings for the GLib C Utility Library Group: System/Libraries Vendor: openmamba @@ -8,19 +8,19 @@ Distribution: openmamba Packager: Silvan Calarco URL: https://github.com/gtkd-developers/GlibD Source: https://github.com/gtkd-developers/GlibD.git/v%{version}/GlibD-%{version}.tar.bz2 +Patch0: glibd-2.3.0-glib-2.68.patch +Patch1: glibd-2.3.0-glib-2.70.patch License: LGPL ## AUTOBUILDREQ-BEGIN BuildRequires: glibc-devel -BuildRequires: ldconfig BuildRequires: libgcc BuildRequires: libglib-devel BuildRequires: libldc-devel ## AUTOBUILDREQ-END -BuildRequires: libldc-devel >= 1.23.0 +BuildRequires: libldc-devel >= 1.28.0 BuildRequires: girtod BuildRequires: ldc Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} -BuildRoot: %{_tmppath}/%{name}-%{version}-root %description D bindings for the GLib C Utility Library. @@ -47,6 +47,8 @@ This package contains libraries and header files for developing applications tha %prep %setup -q -n GlibD-%{version} +%patch0 -p1 -b .glib-2.68 +%patch1 -p1 -b .glib-2.70 %build %meson @@ -90,6 +92,9 @@ This package contains libraries and header files for developing applications tha %doc README.md %changelog +* Wed Nov 03 2021 Silvan Calarco 2.3.0-1mamba +- update to 2.3.0 + * Thu Oct 22 2020 Silvan Calarco 2.2.0-3mamba - rebuilt with ldc 1.23.0