Compare commits
No commits in common. "factory" and "factory" have entirely different histories.
18
_service
18
_service
@ -1,18 +0,0 @@
|
||||
<?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>
|
25
handle-avoid-segfault-in-invalidate-icons.patch
Normal file
25
handle-avoid-segfault-in-invalidate-icons.patch
Normal file
@ -0,0 +1,25 @@
|
||||
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)
|
3
libwnck-43.0.tar.xz
Normal file
3
libwnck-43.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:905bcdb85847d6b8f8861e56b30cd6dc61eae67ecef4cd994a9f925a26a2c1fe
|
||||
size 455464
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4364b3b7f2f24235e744546464b5f9e87984b098b42568d32864ec135665dc30
|
||||
size 4480524
|
@ -1,30 +1,3 @@
|
||||
-------------------------------------------------------------------
|
||||
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>
|
||||
|
||||
|
@ -1,4 +0,0 @@
|
||||
name: libwnck
|
||||
version: 43.2
|
||||
mtime: 1736880507
|
||||
commit: 17eb30d1a8180b7f5058da4e14d9647d9708c58d
|
10
libwnck.spec
10
libwnck.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libwnck
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,16 +17,18 @@
|
||||
|
||||
|
||||
Name: libwnck
|
||||
Version: 43.2
|
||||
Version: 43.0
|
||||
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: %{name}-%{version}.tar.zst
|
||||
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
|
||||
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gettext-devel
|
||||
BuildRequires: gettext
|
||||
BuildRequires: gobject-introspection-devel
|
||||
BuildRequires: meson
|
||||
BuildRequires: pkgconfig
|
||||
|
Loading…
Reference in New Issue
Block a user