From b3996f9fe720a61c2b4ae787e708e543a8379b98 Mon Sep 17 00:00:00 2001 From: Alexey Lyubimov Date: Fri, 25 Aug 2023 15:17:16 +0300 Subject: [PATCH] import ghc-assoc-1.0.2-4.el9 --- .ghc-assoc.metadata | 1 + .gitignore | 1 + SOURCES/assoc-1.0.2.cabal | 53 +++++++++++++++++ SPECS/ghc-assoc.spec | 122 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 177 insertions(+) create mode 100644 .ghc-assoc.metadata create mode 100644 .gitignore create mode 100644 SOURCES/assoc-1.0.2.cabal create mode 100644 SPECS/ghc-assoc.spec diff --git a/.ghc-assoc.metadata b/.ghc-assoc.metadata new file mode 100644 index 0000000..15b8fd0 --- /dev/null +++ b/.ghc-assoc.metadata @@ -0,0 +1 @@ +bffae5600300802d131082f2ccc389f6b42ff1e3 SOURCES/assoc-1.0.2.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..78c4d5a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/assoc-1.0.2.tar.gz diff --git a/SOURCES/assoc-1.0.2.cabal b/SOURCES/assoc-1.0.2.cabal new file mode 100644 index 0000000..c9d1584 --- /dev/null +++ b/SOURCES/assoc-1.0.2.cabal @@ -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 +maintainer: Oleg Grenrus +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 diff --git a/SPECS/ghc-assoc.spec b/SPECS/ghc-assoc.spec new file mode 100644 index 0000000..2fbfd5e --- /dev/null +++ b/SPECS/ghc-assoc.spec @@ -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 - 1.0.2-4 +- Rebuilt for MSVSphere 9.2 + +* Thu Jan 20 2022 Fedora Release Engineering - 1.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Aug 06 2021 Jens Petersen - 1.0.2-3 +- rebuild + +* Thu Jul 22 2021 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Feb 2 2021 Jens Petersen - 1.0.2-1 +- spec file generated by cabal-rpm-2.0.7