diff options
author | CoprDistGit <infra@openeuler.org> | 2023-10-30 09:02:25 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-10-30 09:02:25 +0000 |
commit | 758f61669c58331bed5af40311dfd19688705e3e (patch) | |
tree | 91ac0413ed50bebe74542f89002115d0db223331 | |
parent | bad7e74207a2d38d520a42caf01e4ddf564d86a2 (diff) |
automatic import of ghc-semialignopeneuler23.09
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | ghc-semialign.spec | 98 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 100 insertions, 0 deletions
@@ -0,0 +1 @@ +/semialign-1.3.tar.gz diff --git a/ghc-semialign.spec b/ghc-semialign.spec new file mode 100644 index 0000000..282f6ad --- /dev/null +++ b/ghc-semialign.spec @@ -0,0 +1,98 @@ +%global pkg_name semialign +%global pkgver %{pkg_name}-%{version} + +Name: ghc-%{pkg_name} +Version: 1.3 +Release: 1 +Summary: Align and Zip type-classes from the common Semialign ancestor +License: BSD-3-Clause +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-containers-devel +BuildRequires: ghc-containers-prof +BuildRequires: ghc-hashable-devel +BuildRequires: ghc-hashable-prof +BuildRequires: ghc-indexed-traversable-devel +BuildRequires: ghc-indexed-traversable-instances-devel +BuildRequires: ghc-indexed-traversable-instances-prof +BuildRequires: ghc-indexed-traversable-prof +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-semigroupoids-devel +BuildRequires: ghc-semigroupoids-prof +BuildRequires: ghc-tagged-devel +BuildRequires: ghc-tagged-prof +BuildRequires: ghc-these-devel +BuildRequires: ghc-these-prof +BuildRequires: ghc-transformers-devel +BuildRequires: ghc-transformers-prof +BuildRequires: ghc-unordered-containers-devel +BuildRequires: ghc-unordered-containers-prof +BuildRequires: ghc-vector-devel +BuildRequires: ghc-vector-prof +ExcludeArch: %{ix86} + +%description +The major use of 'These' of this is provided by the 'align' member of +'Semialign' class, representing a generalized notion of "zipping with padding" +that combines structures without truncating to the size of the smaller input. + +It turns out that 'zip' operation fits well the 'Semialign' class, forming +lattice-like structure. + +%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 + +%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 + +%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 Aug 22 2023 Lin Runze <lrzlin@163.com> 1.3-1 +- Initial packaging (Version 1.3) @@ -0,0 +1 @@ +fd40a23b0b42518449ca4f39a1bc94b8 semialign-1.3.tar.gz |