From 7650b8366771b0cab4d9380d5e1b56ae69350f49 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 16:22:57 +0000 Subject: [PATCH] update to 4.3.10 --- .gitignore | 1 + ghc-pipes.spec | 9 ++-- pipes-4.3.9.cabal | 112 ---------------------------------------------- sources | 2 +- 4 files changed, 7 insertions(+), 117 deletions(-) delete mode 100644 pipes-4.3.9.cabal diff --git a/.gitignore b/.gitignore index fd90e70..31d7949 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /pipes-4.3.2.tar.gz /pipes-4.3.7.tar.gz /pipes-4.3.9.tar.gz +/pipes-4.3.10.tar.gz diff --git a/ghc-pipes.spec b/ghc-pipes.spec index d972d06..4a13702 100644 --- a/ghc-pipes.spec +++ b/ghc-pipes.spec @@ -7,15 +7,14 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 4.3.9 -Release: 4%{?dist} +Version: 4.3.10 +Release: 1%{?dist} Summary: Compositional pipelines 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: @@ -92,7 +91,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup @@ -133,6 +131,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Jul 25 2019 Jens Petersen - 4.3.10-1 +- update to 4.3.10 + * Thu Jul 25 2019 Fedora Release Engineering - 4.3.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/pipes-4.3.9.cabal b/pipes-4.3.9.cabal deleted file mode 100644 index a00bf29..0000000 --- a/pipes-4.3.9.cabal +++ /dev/null @@ -1,112 +0,0 @@ -Name: pipes -Version: 4.3.9 -x-revision: 1 -Cabal-Version: >= 1.10 -Build-Type: Simple -Tested-With: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.1 -License: BSD3 -License-File: LICENSE -Copyright: 2012-2016 Gabriel Gonzalez -Author: Gabriel Gonzalez -Maintainer: Gabriel439@gmail.com -Bug-Reports: https://github.com/Gabriel439/Haskell-Pipes-Library/issues -Synopsis: Compositional pipelines -Description: - `pipes` is a clean and powerful stream processing library that lets you build - and connect reusable streaming components - . - Advantages over traditional streaming libraries: - . - * /Concise API/: Use simple commands like 'for', ('>->'), 'await', and 'yield' - . - * /Blazing fast/: Implementation tuned for speed, including shortcut fusion - . - * /Lightweight Dependency/: @pipes@ is small and compiles very rapidly, - including dependencies - . - * /Elegant semantics/: Use practical category theory - . - * /ListT/: Correct implementation of 'ListT' that interconverts with pipes - . - * /Bidirectionality/: Implement duplex channels - . - * /Extensive Documentation/: Second to none! - . - Import "Pipes" to use the library. - . - Read "Pipes.Tutorial" for an extensive tutorial. -Category: Control, Pipes -Extra-Source-Files: - CHANGELOG.md -Source-Repository head - Type: git - Location: https://github.com/Gabriel439/Haskell-Pipes-Library - -Library - Default-Language: Haskell2010 - - HS-Source-Dirs: src - Build-Depends: - base >= 4.4 && < 5 , - transformers >= 0.2.0.0 && < 0.6 , - exceptions >= 0.4 && < 0.11, - mmorph >= 1.0.4 && < 1.2 , - mtl >= 2.2.1 && < 2.3 , - void >= 0.4 && < 0.8 , - semigroups >= 0.17 && < 0.19 - - Exposed-Modules: - Pipes, - Pipes.Core, - Pipes.Internal, - Pipes.Lift, - Pipes.Prelude, - Pipes.Tutorial - GHC-Options: -O2 -Wall - -Benchmark prelude-benchmarks - Default-Language: Haskell2010 - Type: exitcode-stdio-1.0 - HS-Source-Dirs: benchmarks - Main-Is: PreludeBench.hs - Other-Modules: Common - GHC-Options: -O2 -Wall -rtsopts -fno-warn-unused-do-bind - - Build-Depends: - base >= 4.4 && < 5 , - criterion >= 1.1.1.0 && < 1.2, - optparse-applicative >= 0.12 && < 0.14, - mtl >= 2.1 && < 2.3, - pipes - -test-suite tests - Default-Language: Haskell2010 - Type: exitcode-stdio-1.0 - HS-Source-Dirs: tests - Main-Is: Main.hs - GHC-Options: -Wall -rtsopts -fno-warn-missing-signatures -fno-enable-rewrite-rules - - Build-Depends: - base >= 4.4 && < 5 , - pipes , - QuickCheck >= 2.4 && < 3 , - mtl >= 2.1 && < 2.3 , - test-framework >= 0.4 && < 1 , - test-framework-quickcheck2 >= 0.2.0 && < 0.4 , - transformers >= 0.2.0.0 && < 0.6 - -Benchmark lift-benchmarks - Default-Language: Haskell2010 - Type: exitcode-stdio-1.0 - HS-Source-Dirs: benchmarks - Main-Is: LiftBench.hs - Other-Modules: Common - GHC-Options: -O2 -Wall -rtsopts -fno-warn-unused-do-bind - - Build-Depends: - base >= 4.4 && < 5 , - criterion >= 1.1.1.0 && < 1.2 , - optparse-applicative >= 0.12 && < 0.14, - mtl >= 2.1 && < 2.3 , - pipes , - transformers >= 0.2.0.0 && < 0.6 diff --git a/sources b/sources index f51f18f..b91e40a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (pipes-4.3.9.tar.gz) = ed59ba7f3b51a91c9e348c80727c21211ce80d7c9164f86376a567ba56849d07687afb3c6ce3b956c6c0207b07b0eb1743bac30cb87d32aa8f76020e30eebcd5 +SHA512 (pipes-4.3.10.tar.gz) = 3382287fe994776a566f2847e48329ac8931216eafc81e5d8392600b9d628d0e148624e9b433bae35433041f68baafae81fabe5f05b2763f6a8cd944ea48ff63