ghc-generics-sop/ghc-generics-sop.spec

231 lines
6.7 KiB
RPMSpec
Raw Normal View History

# generated by cabal-rpm-2.1.0 --subpackage
2020-06-04 11:26:25 +00:00
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
2017-11-17 16:05:34 +00:00
%global pkg_name generics-sop
%global pkgver %{pkg_name}-%{version}
%global sopcore sop-core-0.5.0.2
2019-07-25 15:43:28 +00:00
%global subpkgs %{sopcore}
%bcond_without tests
2017-11-17 16:05:34 +00:00
Name: ghc-%{pkg_name}
2022-06-07 05:28:13 +00:00
Version: 0.5.1.2
2019-07-25 15:43:28 +00:00
# can only be reset when all subpkgs bumped
Release: 11%{?dist}
2017-11-17 16:05:34 +00:00
Summary: Generic Programming using True Sums of Products
License: BSD-3-Clause
2017-11-17 16:05:34 +00:00
Url: https://hackage.haskell.org/package/%{pkg_name}
2019-02-17 14:44:43 +00:00
# Begin cabal-rpm sources:
2017-11-17 16:05:34 +00:00
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
2019-07-25 15:43:28 +00:00
Source1: https://hackage.haskell.org/package/%{sopcore}/%{sopcore}.tar.gz
2019-02-17 14:44:43 +00:00
# End cabal-rpm sources
2017-11-17 16:05:34 +00:00
2019-02-17 14:44:43 +00:00
# Begin cabal-rpm deps:
2017-11-17 16:05:34 +00:00
BuildRequires: ghc-Cabal-devel
2019-07-25 15:43:28 +00:00
BuildRequires: ghc-rpm-macros-extra
BuildRequires: ghc-base-devel
#BuildRequires: ghc-sop-core-devel
BuildRequires: ghc-template-haskell-devel
BuildRequires: ghc-th-abstraction-devel
%if %{with ghc_prof}
BuildRequires: ghc-base-prof
#BuildRequires: ghc-sop-core-prof
BuildRequires: ghc-template-haskell-prof
2020-06-07 18:03:24 +00:00
BuildRequires: ghc-th-abstraction-prof
%endif
2020-02-07 06:17:05 +00:00
# for missing dep 'sop-core':
BuildRequires: ghc-deepseq-devel
%if %{with ghc_prof}
2020-02-07 06:17:05 +00:00
BuildRequires: ghc-deepseq-prof
%endif
2017-11-17 16:05:34 +00:00
# End cabal-rpm deps
%description
A library to support the definition of generic functions. Datatypes are viewed
in a uniform, structured way: the choice between constructors is represented
using an n-ary sum, and the arguments of each constructor are represented using
an n-ary product.
The module "Generics.SOP" is the main module of this library and contains more
detailed documentation.
2019-07-25 15:43:28 +00:00
Since version 0.4.0.0, this package is now based on
'<https://hackage.haskell.org/package/sop-core sop-core>'. The core package
contains all the functionality of n-ary sums and products, whereas this package
provides the datatype-generic programming support on top.
2017-11-17 16:05:34 +00:00
Examples of using this library are provided by the following packages:
* '<https://hackage.haskell.org/package/basic-sop basic-sop>' basic examples,
* '<https://hackage.haskell.org/package/pretty-sop pretty-sop>' generic pretty
printing,
* '<https://hackage.haskell.org/package/lens-sop lens-sop>' generically
computed lenses,
* '<https://hackage.haskell.org/package/json-sop json-sop>' generic JSON
conversions.
A detailed description of the ideas behind this library is provided by the
paper:
* Edsko de Vries and Andres Löh.
<http://www.andres-loeh.de/TrueSumsOfProducts True Sums of Products>.
2020-07-18 03:04:18 +00:00
Workshop on Generic Programming (WGP) 2014.
2017-11-17 16:05:34 +00:00
%package devel
Summary: Haskell %{pkg_name} library development files
Provides: %{name}-static = %{version}-%{release}
Provides: %{name}-static%{?_isa} = %{version}-%{release}
2018-01-24 13:11:09 +00:00
%if %{defined ghc_version}
2017-11-17 16:05:34 +00:00
Requires: ghc-compiler = %{ghc_version}
2018-01-24 13:11:09 +00:00
%endif
2017-11-17 16:05:34 +00:00
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
This package provides the Haskell %{pkg_name} library development files.
%if %{with haddock}
%package doc
Summary: Haskell %{pkg_name} library documentation
2020-02-07 06:17:05 +00:00
BuildArch: noarch
2021-07-07 16:30:11 +00:00
Requires: ghc-filesystem
%description doc
This package provides the Haskell %{pkg_name} library documentation.
%endif
%if %{with ghc_prof}
%package prof
Summary: Haskell %{pkg_name} profiling library
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
2020-02-07 06:17:05 +00:00
Supplements: (%{name}-devel and ghc-prof)
2017-11-17 16:05:34 +00:00
%description prof
This package provides the Haskell %{pkg_name} profiling library.
%endif
2017-11-17 16:05:34 +00:00
2019-07-25 15:43:28 +00:00
%global main_version %{version}
%if %{defined ghclibdir}
%ghc_lib_subpackage %{sopcore}
%endif
%global version %{main_version}
2017-11-17 16:05:34 +00:00
%prep
2019-02-17 14:44:43 +00:00
# Begin cabal-rpm setup:
2019-07-25 15:43:28 +00:00
%setup -q -n %{pkgver} -a1
2019-02-17 14:44:43 +00:00
# End cabal-rpm setup
2017-11-17 16:05:34 +00:00
%build
2019-02-17 14:44:43 +00:00
# Begin cabal-rpm build:
2019-07-25 15:43:28 +00:00
%ghc_libs_build %{subpkgs}
2017-11-17 16:05:34 +00:00
%ghc_lib_build
2019-02-17 14:44:43 +00:00
# End cabal-rpm build
2017-11-17 16:05:34 +00:00
%install
2019-02-17 14:44:43 +00:00
# Begin cabal-rpm install
2019-07-25 15:43:28 +00:00
%ghc_libs_install %{subpkgs}
2017-11-17 16:05:34 +00:00
%ghc_lib_install
2019-02-17 14:44:43 +00:00
# End cabal-rpm install
2017-11-17 16:05:34 +00:00
%check
2021-07-07 16:30:11 +00:00
%if %{with tests}
%cabal_test
2021-07-07 16:30:11 +00:00
%endif
2017-11-17 16:05:34 +00:00
%files -f %{name}.files
2019-02-17 14:44:43 +00:00
# Begin cabal-rpm files:
2017-11-17 16:05:34 +00:00
%license LICENSE
2019-02-17 14:44:43 +00:00
# End cabal-rpm files
2017-11-17 16:05:34 +00:00
%files devel -f %{name}-devel.files
2017-11-17 16:05:34 +00:00
%doc CHANGELOG.md
%if %{with haddock}
%files doc -f %{name}-doc.files
2020-02-07 06:17:05 +00:00
%license LICENSE
%endif
%if %{with ghc_prof}
%files prof -f %{name}-prof.files
2018-09-13 09:47:36 +00:00
%endif
2017-11-17 16:05:34 +00:00
%changelog
* Thu Feb 16 2023 Jens Petersen <petersen@redhat.com> - 0.5.1.2-11
- refresh to cabal-rpm-2.1.0 with SPDX migration
- update sop-core to 0.5.0.2
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1.2-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
2022-06-07 05:28:13 +00:00
* Tue Jun 07 2022 Jens Petersen <petersen@redhat.com> - 0.5.1.2-9
- https://hackage.haskell.org/package/generics-sop-0.5.1.2/changelog
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1.1-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2021-08-05 04:13:51 +00:00
* Thu Aug 5 2021 Jens Petersen <petersen@redhat.com> - 0.5.1.1-7
- update to 0.5.1.1
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2020-06-07 18:03:24 +00:00
* Sun Jun 07 2020 Jens Petersen <petersen@redhat.com> - 0.5.1.0-3
- update to 0.5.1.0
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2019-07-25 15:43:28 +00:00
* Thu Jul 25 2019 Jens Petersen <petersen@redhat.com> - 0.4.0.1-1
- update to 0.4.0.1
- subpackage sop-core
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-02-17 14:44:43 +00:00
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 0.3.2.0-3
- refresh to cabal-rpm-0.13
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2018-07-22 14:04:32 +00:00
* Sun Jul 22 2018 Jens Petersen <petersen@redhat.com> - 0.3.2.0-1
- update to 0.3.2.0
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2018-01-26 10:33:59 +00:00
* Fri Jan 26 2018 Jens Petersen <petersen@redhat.com> - 0.3.1.0-2
- rebuild
2017-11-17 16:05:34 +00:00
* Thu Nov 16 2017 David Shea <dshea@redhat.com> - 0.3.1.0-2
- Move the API docs to a separate package
- spec file generated by cabal-rpm-0.11.2