diff --git a/.gitignore b/.gitignore index d3c0d7e..83317dc 100644 --- a/.gitignore +++ b/.gitignore @@ -203,3 +203,4 @@ gtk+-2.90.5.tar.bz2 /gtk+-3.24.32.tar.xz /gtk+-3.24.33.tar.xz /gtk+-3.24.34.tar.xz +/gtk+-3.24.35.tar.xz diff --git a/gtk3.spec b/gtk3.spec index 62e0d4f..69a908e 100644 --- a/gtk3.spec +++ b/gtk3.spec @@ -18,13 +18,15 @@ %global __provides_exclude_from ^%{_libdir}/gtk-3.0 Name: gtk3 -Version: 3.24.34 -Release: 2%{?dist} +Version: 3.24.35 +Release: 1%{?dist} Summary: GTK+ graphical user interface library License: LGPLv2+ URL: https://gtk.org Source0: https://download.gnome.org/sources/gtk+/3.24/gtk+-%{version}.tar.xz +# Missing from the tarball for some reason. +Source1: wayland-cursor-meson.build BuildRequires: pkgconfig(atk) >= %{atk_version} BuildRequires: pkgconfig(atk-bridge-2.0) @@ -151,6 +153,7 @@ the functionality of the installed %{name} package. %prep %autosetup -n gtk+-%{version} -p1 +cp -p %{SOURCE1} gdk/wayland/cursor/meson.build %build export CFLAGS='-fno-strict-aliasing %optflags' @@ -291,6 +294,9 @@ gtk-query-immodules-3.0-%{__isa_bits} --update-cache &>/dev/null || : %{_datadir}/installed-tests/ %changelog +* Tue Nov 22 2022 David King - 3.24.35-1 +- Update to 3.24.35 + * Thu Jul 21 2022 Fedora Release Engineering - 3.24.34-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index bfc380e..6d58670 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gtk+-3.24.34.tar.xz) = 95af4441b53be175acf16121a90b1db7a152cbfb3e5ed2dffc59f622b2eb5a4d74720ae8e05dc1421b6b23588f28e09e0f153f0b92777c836f522881720fb0a2 +SHA512 (gtk+-3.24.35.tar.xz) = 3a1ec35756fe12f5be3cfe33ef332d583690458327572e69bffad8b4095059d2a744a4a53b2fd31bab5da2ca7b41a2a38fbbd8ba541a45fa8cc0d00eae005ade diff --git a/wayland-cursor-meson.build b/wayland-cursor-meson.build new file mode 100644 index 0000000..02d5f2b --- /dev/null +++ b/wayland-cursor-meson.build @@ -0,0 +1,12 @@ +wayland_cursor_sources = files([ + 'wayland-cursor.c', + 'xcursor.c', + 'os-compatibility.c' +]) + +libwayland_cursor = static_library('wayland+cursor', + sources: wayland_cursor_sources, + include_directories: [ confinc, ], + dependencies: [ glib_dep, wlclientdep, ], + c_args: common_cflags, +)