forked from pool/libdex
Compare commits
11 Commits
Author | SHA256 | Date | |
---|---|---|---|
17a9e6a2c2 | |||
aaa74555bc | |||
55fd93b3fe | |||
874cfdc205 | |||
9ee686347f | |||
e2f6d9eae7 | |||
9c9325b254 | |||
d84f796a23 | |||
e0f9cbe565 | |||
30c99b447a | |||
9f9f006a5b |
2
_service
2
_service
@@ -3,7 +3,7 @@
|
||||
<service name="obs_scm" mode="manual">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://gitlab.gnome.org/GNOME/libdex.git</param>
|
||||
<param name="revision">0.6.1</param>
|
||||
<param name="revision">0.10.1</param>
|
||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
||||
<param name="versionrewrite-pattern">v?(.*)\+0</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
|
12
disable-test-semaphore.patch
Normal file
12
disable-test-semaphore.patch
Normal file
@@ -0,0 +1,12 @@
|
||||
Index: libdex-0.10.0/testsuite/meson.build
|
||||
===================================================================
|
||||
--- libdex-0.10.0.orig/testsuite/meson.build
|
||||
+++ libdex-0.10.0/testsuite/meson.build
|
||||
@@ -23,7 +23,6 @@ testsuite = {
|
||||
'test-fiber': {},
|
||||
'test-future': {},
|
||||
'test-scheduler': {},
|
||||
- 'test-semaphore': {},
|
||||
'test-stream': {},
|
||||
}
|
||||
|
3
libdex-0.10.1.obscpio
Normal file
3
libdex-0.10.1.obscpio
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:771579d83ff5c2d7fc301b1415837c69e33e892d7e542546641be66d2a94fd33
|
||||
size 711180
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3517dc48efb413ee15066709b745d65f3832efe18b3868dbb010ccb0fce525ae
|
||||
size 690188
|
@@ -1,3 +1,72 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Jun 28 07:28:45 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 0.10.1:
|
||||
+ Fix autoptr usage
|
||||
+ Raise critical on finalization of thread-pool-scheduler which
|
||||
should not happen in proper usage of libdex
|
||||
+ Avoid extra pointer chase when dispatching to thread pool
|
||||
workers
|
||||
+ Don't dispatch blocks while on fibers, wait for scheduler
|
||||
+ Fix leak of unix signal futures
|
||||
+ Improve management of fiber run queues
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 27 08:10:42 UTC 2025 - Yifan Jiang <yfjiang@suse.com>
|
||||
|
||||
- Add disable-test-semaphore.patch to temporarily disable the unit
|
||||
test. It could be hardware related since the same package in the
|
||||
branch built successfully on local hardware (bsc#1242053).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 16 08:43:27 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 0.10.0:
|
||||
+ Discard dependent futures if fiber was cancelled during await.
|
||||
+ Discard dependent futures when finalizing DexBlock.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 25 10:13:14 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 0.9.1 (Unstable):
|
||||
+ Improve build checks for libatommic
|
||||
+ Add dex_promise_resolve_boxed()
|
||||
+ Improve cancellation of fibers
|
||||
+ Use libucontext when necessary
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 25 07:52:23 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 0.9.0 (Unstable):
|
||||
+ Support for OpenBSD
|
||||
+ Raise default mmap stack size to 128kb for fibers
|
||||
+ Add await/resolve API for file-descriptors
|
||||
+ New dex_return_error_if_fail() precondition macro similar to
|
||||
g_return_val_if_fail().
|
||||
+ Additional GIO wrapper functions including dex_file_delete()
|
||||
and dex_file_replace_contents_bytes()
|
||||
+ Build system improvements
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 19 10:17:15 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 0.8.1:
|
||||
+ Fix disabling of assertions in production builds
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 17 06:35:24 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 0.8.0:
|
||||
+ Various build system improvements to help catch correctness
|
||||
issues.
|
||||
+ Increased assertions in fibers to help Coverity discover usage
|
||||
patterns.
|
||||
+ Avoid releasing discarded future until chained future is
|
||||
released.
|
||||
+ Fix overflow in extremely large timeout calculation.
|
||||
+ Various introspection fixes.
|
||||
+ Fix inclusion from C++.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 3 09:53:11 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
name: libdex
|
||||
version: 0.6.1
|
||||
mtime: 1717105437
|
||||
commit: 76c7da206eeaf0ce9d32bde1b1b3fea5ddab27c9
|
||||
version: 0.10.1
|
||||
mtime: 1751062793
|
||||
commit: ac2ac4508a3e4b2be821ee2fb559fc3697d57cfc
|
||||
|
12
libdex.spec
12
libdex.spec
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libdex
|
||||
#
|
||||
# Copyright (c) 2024 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
|
||||
@@ -20,12 +20,14 @@
|
||||
%bcond_with profiling
|
||||
|
||||
Name: libdex
|
||||
Version: 0.6.1
|
||||
Version: 0.10.1
|
||||
Release: 0
|
||||
Summary: Library supporting "Deferred Execution" for GNOME and GTK
|
||||
License: LGPL-2.1-or-later
|
||||
URL: https://gitlab.gnome.org/chergert/libdex
|
||||
Source0: %{name}-%{version}.tar.zst
|
||||
# PATCH-FIX-SLE disable-test-semaphore.patch bsc#1242053 -- temporarily disable the unit test on IBS
|
||||
Patch1000: disable-test-semaphore.patch
|
||||
|
||||
BuildRequires: c_compiler
|
||||
BuildRequires: meson
|
||||
@@ -89,7 +91,11 @@ This package contains developer documentation for writing
|
||||
applications with libdex.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
%autosetup -N
|
||||
%autopatch -p1 -M 999
|
||||
%if !0%{?is_opensuse} || 0%{?suse_version} <= 1600
|
||||
%autopatch -p1 -m 1000
|
||||
%endif
|
||||
|
||||
%build
|
||||
%meson \
|
||||
|
Reference in New Issue
Block a user