forked from pool/ghc-time-manager
Compare commits
8 Commits
Author | SHA256 | Date | |
---|---|---|---|
850a1a8576 | |||
1a2aca8776 | |||
674a8b4d2b | |||
a7d4465008 | |||
3694d17d8e | |||
0337ba7dca | |||
5ae425a2fc | |||
663e55b4c2 |
@@ -1,3 +1,69 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun May 18 23:50:48 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Update time-manager to version 0.2.3.
|
||||||
|
## 0.2.3
|
||||||
|
|
||||||
|
* Exporting defaultManager.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 18 04:18:36 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Update time-manager to version 0.2.2.
|
||||||
|
## 0.2.2
|
||||||
|
|
||||||
|
* `initialize` with non positive integer creates a time manager
|
||||||
|
which does not maintain timeout.
|
||||||
|
[#1017](https://github.com/yesodweb/wai/pull/1017)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 6 05:11:19 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Update time-manager to version 0.2.1.
|
||||||
|
## 0.2.1
|
||||||
|
|
||||||
|
* Export KilledByThreadManager exception
|
||||||
|
[#1016](https://github.com/yesodweb/wai/pull/1016)
|
||||||
|
|
||||||
|
## 0.2.0
|
||||||
|
|
||||||
|
* Providing `System.ThreadManager`.
|
||||||
|
* `withHandle` catches `TimeoutThread` internally.
|
||||||
|
It returns `Nothing` on timeout.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 22 00:26:04 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Update time-manager to version 0.1.3.
|
||||||
|
## 0.1.3
|
||||||
|
|
||||||
|
* Providing `withHandle` and `withHandleKillThread`.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 19 21:02:53 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Update time-manager to version 0.1.2.
|
||||||
|
## 0.1.2
|
||||||
|
|
||||||
|
* Holding `Weak ThreadId` to prevent thread leak again
|
||||||
|
[#1013](https://github.com/yesodweb/wai/pull/1013)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 7 01:52:04 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Update time-manager to version 0.1.1.
|
||||||
|
## 0.1.1
|
||||||
|
|
||||||
|
* Removing `unliftio`.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Apr 27 10:30:55 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Update time-manager to version 0.1.0.
|
||||||
|
Upstream added a new change log file in this release. With no
|
||||||
|
previous version to compare against, the automatic updater cannot
|
||||||
|
reliable determine the relevante entries for this release.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 17 06:05:42 UTC 2023 - Peter Simons <psimons@suse.com>
|
Thu Aug 17 06:05:42 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-time-manager
|
# spec file for package ghc-time-manager
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
%global pkg_name time-manager
|
%global pkg_name time-manager
|
||||||
%global pkgver %{pkg_name}-%{version}
|
%global pkgver %{pkg_name}-%{version}
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.0.1
|
Version: 0.2.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Scalable timer
|
Summary: Scalable timer
|
||||||
License: MIT
|
License: MIT
|
||||||
@@ -30,13 +30,16 @@ BuildRequires: ghc-auto-update-devel
|
|||||||
BuildRequires: ghc-auto-update-prof
|
BuildRequires: ghc-auto-update-prof
|
||||||
BuildRequires: ghc-base-devel
|
BuildRequires: ghc-base-devel
|
||||||
BuildRequires: ghc-base-prof
|
BuildRequires: ghc-base-prof
|
||||||
|
BuildRequires: ghc-containers-devel
|
||||||
|
BuildRequires: ghc-containers-prof
|
||||||
BuildRequires: ghc-rpm-macros
|
BuildRequires: ghc-rpm-macros
|
||||||
BuildRequires: ghc-unliftio-devel
|
BuildRequires: ghc-stm-devel
|
||||||
BuildRequires: ghc-unliftio-prof
|
BuildRequires: ghc-stm-prof
|
||||||
ExcludeArch: %{ix86}
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Scalable timer functions provided by a timer manager.
|
Scalable timer functions provided by a timer manager and thread management
|
||||||
|
functions to prevent thread leak by a thread manager.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Haskell %{pkg_name} library development files
|
Summary: Haskell %{pkg_name} library development files
|
||||||
@@ -83,6 +86,7 @@ This package provides the Haskell %{pkg_name} profiling library.
|
|||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
|
||||||
%files devel -f %{name}-devel.files
|
%files devel -f %{name}-devel.files
|
||||||
|
%doc ChangeLog.md
|
||||||
|
|
||||||
%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files
|
%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:07492523fabc69b8ec308f6276cc93df3dd060c91f23df2ac8a1f56d331ea05b
|
|
||||||
size 2746
|
|
3
time-manager-0.2.3.tar.gz
Normal file
3
time-manager-0.2.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:eeb7c33d3b4492af771db0061222239a29727ee68a786a0488b1dba0a63d68e8
|
||||||
|
size 5840
|
Reference in New Issue
Block a user