Update to 3.24.35

This commit is contained in:
David King 2022-11-22 23:43:16 +00:00
parent d7da4f6adc
commit c91bf93747
4 changed files with 22 additions and 3 deletions

1
.gitignore vendored
View File

@ -203,3 +203,4 @@ gtk+-2.90.5.tar.bz2
/gtk+-3.24.32.tar.xz /gtk+-3.24.32.tar.xz
/gtk+-3.24.33.tar.xz /gtk+-3.24.33.tar.xz
/gtk+-3.24.34.tar.xz /gtk+-3.24.34.tar.xz
/gtk+-3.24.35.tar.xz

View File

@ -18,13 +18,15 @@
%global __provides_exclude_from ^%{_libdir}/gtk-3.0 %global __provides_exclude_from ^%{_libdir}/gtk-3.0
Name: gtk3 Name: gtk3
Version: 3.24.34 Version: 3.24.35
Release: 2%{?dist} Release: 1%{?dist}
Summary: GTK+ graphical user interface library Summary: GTK+ graphical user interface library
License: LGPLv2+ License: LGPLv2+
URL: https://gtk.org URL: https://gtk.org
Source0: https://download.gnome.org/sources/gtk+/3.24/gtk+-%{version}.tar.xz 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) >= %{atk_version}
BuildRequires: pkgconfig(atk-bridge-2.0) BuildRequires: pkgconfig(atk-bridge-2.0)
@ -151,6 +153,7 @@ the functionality of the installed %{name} package.
%prep %prep
%autosetup -n gtk+-%{version} -p1 %autosetup -n gtk+-%{version} -p1
cp -p %{SOURCE1} gdk/wayland/cursor/meson.build
%build %build
export CFLAGS='-fno-strict-aliasing %optflags' export CFLAGS='-fno-strict-aliasing %optflags'
@ -291,6 +294,9 @@ gtk-query-immodules-3.0-%{__isa_bits} --update-cache &>/dev/null || :
%{_datadir}/installed-tests/ %{_datadir}/installed-tests/
%changelog %changelog
* Tue Nov 22 2022 David King <amigadave@amigadave.com> - 3.24.35-1
- Update to 3.24.35
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.24.34-2 * Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.24.34-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild

View File

@ -1 +1 @@
SHA512 (gtk+-3.24.34.tar.xz) = 95af4441b53be175acf16121a90b1db7a152cbfb3e5ed2dffc59f622b2eb5a4d74720ae8e05dc1421b6b23588f28e09e0f153f0b92777c836f522881720fb0a2 SHA512 (gtk+-3.24.35.tar.xz) = 3a1ec35756fe12f5be3cfe33ef332d583690458327572e69bffad8b4095059d2a744a4a53b2fd31bab5da2ca7b41a2a38fbbd8ba541a45fa8cc0d00eae005ade

View File

@ -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,
)