SHA256
1
0
forked from pool/libwnck

Compare commits

..

6 Commits

Author SHA256 Message Date
Ana Guerrero
12a4fe335a Accepting request 1238103 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/1238103
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libwnck?expand=0&rev=96
2025-01-16 17:31:20 +00:00
1c408d9006 New stable release
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libwnck?expand=0&rev=138
2025-01-15 17:11:06 +00:00
Ana Guerrero
cddfe5af24 Accepting request 1206269 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/1206269
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libwnck?expand=0&rev=95
2024-10-08 15:16:45 +00:00
2bc81b01d9 - Update to version 43.1:
+ Return correct number of application windows.
  + Avoid showing pointless tooltips.
  + Do not remove underscores form window titles.
  + Do not crash if XRes 1.2 is not available.
  + Do not crash if display is not available.
- Drop handle-avoid-segfault-in-invalidate-icons.patch: Fixed
  upstream.

OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libwnck?expand=0&rev=136
2024-10-08 09:00:34 +00:00
Ana Guerrero
26c0e6527f Accepting request 1204692 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/1204692
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libwnck?expand=0&rev=94
2024-09-30 13:34:52 +00:00
ea31417d13 Scripted push of GNOME 47
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libwnck?expand=0&rev=134
2024-09-30 07:52:11 +00:00
7 changed files with 56 additions and 34 deletions

18
_service Normal file
View File

@ -0,0 +1,18 @@
<?xml version="1.0"?>
<services>
<service name="obs_scm" mode="manual">
<param name="scm">git</param>
<param name="url">https://gitlab.gnome.org/GNOME/libwnck.git</param>
<param name="revision">43.2</param>
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
<param name="versionrewrite-pattern">v?(.*)\+0</param>
<param name="versionrewrite-replacement">\1</param>
<param name="changesgenerate">disable</param>
</service>
<service name="tar" mode="buildtime"/>
<service name="recompress" mode="buildtime">
<param name="file">*.tar</param>
<param name="compression">zst</param>
</service>
<service name="set_version" mode="manual" />
</services>

View File

@ -1,25 +0,0 @@
From: Alberts Muktupavels <alberts.muktupavels@gmail.com>
Date: 2022-09-20 15:40:22 +0300
Subject: Avoid segfault in invalidate_icons
References: boo#1204157 lp#1990263 glgo#GNOME/libwnck!46
Upstream: submitted
Screens variable won't be initialized if default icon sizes are
set/changed before using wnck_screen_get_default
---
libwnck/wnck-handle.c | 3 +++
1 file changed, 3 insertions(+)
--- a/libwnck/wnck-handle.c 2022-11-09 14:54:06.445579490 +0100
+++ b/libwnck/wnck-handle.c 2022-11-09 14:54:45.522267274 +0100
@@ -70,6 +70,9 @@
Display *xdisplay;
int i;
+ if (self->screens == NULL)
+ return;
+
xdisplay = _wnck_get_default_display ();
for (i = 0; i < ScreenCount (xdisplay); ++i)

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:905bcdb85847d6b8f8861e56b30cd6dc61eae67ecef4cd994a9f925a26a2c1fe
size 455464

3
libwnck-43.2.obscpio Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4364b3b7f2f24235e744546464b5f9e87984b098b42568d32864ec135665dc30
size 4480524

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Tue Jan 14 19:11:38 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 43.2:
+ Add WnckHandle to the docs.
+ Add missing build dependency.
+ Do not restore original event mask.
- Switch to source service for tarball/source.
-------------------------------------------------------------------
Sat Oct 5 12:07:44 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 43.1:
+ Return correct number of application windows.
+ Avoid showing pointless tooltips.
+ Do not remove underscores form window titles.
+ Do not crash if XRes 1.2 is not available.
+ Do not crash if display is not available.
- Drop handle-avoid-segfault-in-invalidate-icons.patch: Fixed
upstream.
-------------------------------------------------------------------
Mon Aug 19 11:33:54 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
- BuildRequire gettext-devel instead of gettext: allow OBS to
shortcut through gettext-runtime-mini.
-------------------------------------------------------------------
Fri Dec 16 15:23:18 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>

4
libwnck.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: libwnck
version: 43.2
mtime: 1736880507
commit: 17eb30d1a8180b7f5058da4e14d9647d9708c58d

View File

@ -1,7 +1,7 @@
#
# spec file for package libwnck
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,18 +17,16 @@
Name: libwnck
Version: 43.0
Version: 43.2
Release: 0
Summary: Window Navigator Construction Kit (Library Package)
License: LGPL-2.1-or-later
Group: Development/Libraries/GNOME
URL: https://git.gnome.org/browse/libwnck
Source0: https://download.gnome.org/sources/libwnck/43/%{name}-%{version}.tar.xz
# PATCH-FIX-UPSTREAM handle-avoid-segfault-in-invalidate-icons.patch glgo#GNOME/libwnck#46 -- avoid segfault in invalidate_icons
Patch0: handle-avoid-segfault-in-invalidate-icons.patch
Source0: %{name}-%{version}.tar.zst
BuildRequires: fdupes
BuildRequires: gettext
BuildRequires: gettext-devel
BuildRequires: gobject-introspection-devel
BuildRequires: meson
BuildRequires: pkgconfig