SHA256
1
0
forked from pool/libdex

11 Commits

Author SHA256 Message Date
17a9e6a2c2 Accepting request 1289801 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/1289801
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libdex?expand=0&rev=11
2025-07-02 16:17:14 +00:00
aaa74555bc - 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

OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libdex?expand=0&rev=24
2025-07-02 09:07:33 +00:00
55fd93b3fe Accepting request 1280745 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/1280745
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libdex?expand=0&rev=10
2025-05-30 12:32:31 +00:00
874cfdc205 - 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).

OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libdex?expand=0&rev=22
2025-05-28 05:56:44 +00:00
9ee686347f Accepting request 1253708 from GNOME:Factory
New stable rel (forwarded request 1253460 from iznogood)

OBS-URL: https://build.opensuse.org/request/show/1253708
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libdex?expand=0&rev=9
2025-03-18 16:41:01 +00:00
e2f6d9eae7 New stable rel
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libdex?expand=0&rev=20
2025-03-17 10:43:28 +00:00
9c9325b254 Scripted push of GNOME:Next, RC release
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libdex?expand=0&rev=19
2025-03-06 13:58:03 +00:00
d84f796a23 Accepting request 1216792 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/1216792
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libdex?expand=0&rev=8
2024-10-22 12:52:18 +00:00
e0f9cbe565 New release
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libdex?expand=0&rev=17
2024-10-21 18:06:35 +00:00
30c99b447a Accepting request 1205474 from GNOME:Factory
SCripted push of GNOME 47

OBS-URL: https://build.opensuse.org/request/show/1205474
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libdex?expand=0&rev=7
2024-10-08 15:23:43 +00:00
9f9f006a5b Scripted push of GNOME 47
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libdex?expand=0&rev=15
2024-09-30 07:55:15 +00:00
7 changed files with 97 additions and 10 deletions

View File

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

View 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
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:771579d83ff5c2d7fc301b1415837c69e33e892d7e542546641be66d2a94fd33
size 711180

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3517dc48efb413ee15066709b745d65f3832efe18b3868dbb010ccb0fce525ae
size 690188

View File

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

View File

@@ -1,4 +1,4 @@
name: libdex
version: 0.6.1
mtime: 1717105437
commit: 76c7da206eeaf0ce9d32bde1b1b3fea5ddab27c9
version: 0.10.1
mtime: 1751062793
commit: ac2ac4508a3e4b2be821ee2fb559fc3697d57cfc

View File

@@ -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 \