%global pkg_name auto-update
%global pkgver %{pkg_name}-%{version}
%bcond_with tests

Name:           ghc-%{pkg_name}
Version:        0.2.6
Release:        1
Summary:        Efficiently run periodic, on-demand actions
License:        MIT
URL:            https://hackage.haskell.org/package/%{pkg_name}
Source0:        https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
BuildRequires:  ghc-Cabal-devel
BuildRequires:  ghc-base-devel
BuildRequires:  ghc-base-prof
BuildRequires:  ghc-rpm-macros
BuildRequires:  ghc-stm-prof
ExcludeArch:    %{ix86}
%if %{with tests}
BuildRequires:  ghc-HUnit-devel
BuildRequires:  ghc-HUnit-prof
BuildRequires:  ghc-exceptions-devel
BuildRequires:  ghc-exceptions-prof
BuildRequires:  ghc-hspec-devel
BuildRequires:  ghc-hspec-prof
BuildRequires:  ghc-retry-devel
BuildRequires:  ghc-retry-prof
%endif

%description
API docs and the README are available at
<http://www.stackage.org/package/auto-update>.

%package devel
Summary:        Haskell %{pkg_name} library development files
Requires:       %{name} = %{version}-%{release}
Requires:       ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}

%description devel
This package provides the Haskell %{pkg_name} library development files.

%package -n ghc-%{pkg_name}-help
Summary:        Haskell %{pkg_name} library documentation
BuildArch:      noarch

%description -n ghc-%{pkg_name}-help
This package provides the Haskell %{pkg_name} library documentation.

%package -n ghc-%{pkg_name}-prof
Summary:        Haskell %{pkg_name} profiling library
Requires:       ghc-%{pkg_name}-devel = %{version}-%{release}
Supplements:    (ghc-%{pkg_name}-devel and ghc-prof)

%description -n ghc-%{pkg_name}-prof
This package provides the Haskell %{pkg_name} profiling library.

%prep
%autosetup -n %{pkg_name}-%{version}

%build
%ghc_lib_build

%install
%ghc_lib_install

%check
%cabal_test

%post devel
%ghc_pkg_recache

%postun devel
%ghc_pkg_recache

%files -f %{name}.files
%license LICENSE

%files devel -f %{name}-devel.files
%doc ChangeLog.md README.md

%files -n ghc-%{pkg_name}-help -f ghc-%{pkg_name}-help.files
%license LICENSE

%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files

%changelog
* Tue Jul 1 2025 zhangyuting <zhangyuting@kylinos.cn> 0.2.6-1
- Update version to 0.2.6
- Using the thread version of AutoUpdate for non-threaded RTS. 

* Mon Dec 02 2024 ZhaoYu Jiang <jiangzhaoyu@kylinos.cn> - 0.2.4-1
- Update Package to 0.2.4
- Refactored the Control.Debounce logic to not leak threads.
- Added extra DebounceEdge options for different types of debouncing.
-   LeadingMute: Action on first trigger, and ignore any triggers during cooldown
-   TrailingDelay: First trigger starts cooldown, and triggers during cooldown extend the cooldown. Action when cooldown expires.
- NewAPI: updateThreadName, reaperThreadName, debounceThreadName: Names can be given via this field to threads for GHC.Conc.Sync.listThreads.
- Creating Reaper.Internal to export Reaper constructor. Hiding Reaper constructor.
- Add reaperModify to the Reaper API, allowing workload modification outside of the main reaperAction loop.

* Thu Sep 28 2023 Lin Runze <lrzlin@163.com> 0.1.6-1
- Initial packaging (Version 0.1.6)