commit
b3996f9fe7
@ -0,0 +1 @@
|
||||
bffae5600300802d131082f2ccc389f6b42ff1e3 SOURCES/assoc-1.0.2.tar.gz
|
@ -0,0 +1 @@
|
||||
SOURCES/assoc-1.0.2.tar.gz
|
@ -0,0 +1,53 @@
|
||||
cabal-version: 1.12
|
||||
name: assoc
|
||||
version: 1.0.2
|
||||
x-revision: 2
|
||||
license: BSD3
|
||||
license-file: LICENSE
|
||||
synopsis: swap and assoc: Symmetric and Semigroupy Bifunctors
|
||||
category: Data
|
||||
description:
|
||||
Provides generalisations of
|
||||
@swap :: (a,b) -> (b,a)@ and
|
||||
@assoc :: ((a,b),c) -> (a,(b,c))@
|
||||
to
|
||||
@Bifunctor@s supporting similar operations (e.g. @Either@, @These@).
|
||||
|
||||
author: Oleg Grenrus <oleg.grenrus@iki.fi>
|
||||
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
|
||||
build-type: Simple
|
||||
extra-source-files: CHANGELOG.md
|
||||
tested-with:
|
||||
GHC ==7.0.4
|
||||
|| ==7.2.2
|
||||
|| ==7.4.2
|
||||
|| ==7.6.3
|
||||
|| ==7.8.4
|
||||
|| ==7.10.3
|
||||
|| ==8.0.2
|
||||
|| ==8.2.2
|
||||
|| ==8.4.4
|
||||
|| ==8.6.5
|
||||
|| ==8.8.4
|
||||
|| ==8.10.4
|
||||
|| ==9.0.1
|
||||
|| ==9.2.1
|
||||
, GHCJS ==8.4
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/phadej/assoc.git
|
||||
|
||||
library
|
||||
default-language: Haskell2010
|
||||
hs-source-dirs: src
|
||||
build-depends:
|
||||
base >=4.3 && <4.17
|
||||
, bifunctors >=5.5.5 && <5.6
|
||||
, tagged >=0.8.6 && <0.9
|
||||
|
||||
exposed-modules:
|
||||
Data.Bifunctor.Assoc
|
||||
Data.Bifunctor.Swap
|
||||
|
||||
other-extensions: TypeFamilies
|
@ -0,0 +1,122 @@
|
||||
# generated by cabal-rpm-2.0.9
|
||||
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
||||
|
||||
%global pkg_name assoc
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 1.0.2
|
||||
Release: 4%{?dist}
|
||||
Summary: Swap and assoc: Symmetric and Semigroupy Bifunctors
|
||||
|
||||
License: BSD
|
||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||
# Begin cabal-rpm sources:
|
||||
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
||||
Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal
|
||||
# End cabal-rpm sources
|
||||
|
||||
# Begin cabal-rpm deps:
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-base-prof
|
||||
BuildRequires: ghc-bifunctors-prof
|
||||
BuildRequires: ghc-tagged-prof
|
||||
# End cabal-rpm deps
|
||||
|
||||
%description
|
||||
Provides generalizations of 'swap :: (a,b) -> (b,a)' and
|
||||
'assoc :: ((a,b),c) -> (a,(b,c))' to Bifunctor's supporting similar operations
|
||||
(e.g. Either, These).
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Haskell %{pkg_name} library development files
|
||||
Provides: %{name}-static = %{version}-%{release}
|
||||
Provides: %{name}-static%{?_isa} = %{version}-%{release}
|
||||
%if %{defined ghc_version}
|
||||
Requires: ghc-compiler = %{ghc_version}
|
||||
%endif
|
||||
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
|
||||
BuildArch: noarch
|
||||
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}
|
||||
Supplements: (%{name}-devel and ghc-prof)
|
||||
|
||||
%description prof
|
||||
This package provides the Haskell %{pkg_name} profiling library.
|
||||
%endif
|
||||
|
||||
|
||||
%prep
|
||||
# Begin cabal-rpm setup:
|
||||
%setup -q -n %{pkgver}
|
||||
cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||
# End cabal-rpm setup
|
||||
|
||||
|
||||
%build
|
||||
# Begin cabal-rpm build:
|
||||
%ghc_lib_build
|
||||
# End cabal-rpm build
|
||||
|
||||
|
||||
%install
|
||||
# Begin cabal-rpm install
|
||||
%ghc_lib_install
|
||||
# End cabal-rpm install
|
||||
|
||||
|
||||
%files -f %{name}.files
|
||||
# Begin cabal-rpm files:
|
||||
%license LICENSE
|
||||
# End cabal-rpm files
|
||||
|
||||
|
||||
%files devel -f %{name}-devel.files
|
||||
%doc CHANGELOG.md
|
||||
|
||||
|
||||
%if %{with haddock}
|
||||
%files doc -f %{name}-doc.files
|
||||
%license LICENSE
|
||||
%endif
|
||||
|
||||
|
||||
%if %{with ghc_prof}
|
||||
%files prof -f %{name}-prof.files
|
||||
%endif
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Aug 25 2023 Alexey Lyubimov <a.lyubimov@msvsphere.ru> - 1.0.2-4
|
||||
- Rebuilt for MSVSphere 9.2
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Aug 06 2021 Jens Petersen <petersen@redhat.com> - 1.0.2-3
|
||||
- rebuild
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Feb 2 2021 Jens Petersen <petersen@redhat.com> - 1.0.2-1
|
||||
- spec file generated by cabal-rpm-2.0.7
|
Loading…
Reference in new issue