From 4ab0fba6db72f4c8b93ad8e8e4d8b07b3e63b531 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 23 Jan 2023 01:44:15 +0800 Subject: [PATCH] update to 1.4.3 --- .gitignore | 1 + ghc-tasty.spec | 28 ++++++++----- sources | 2 +- tasty-1.4.2.1.cabal | 96 --------------------------------------------- 4 files changed, 20 insertions(+), 107 deletions(-) delete mode 100644 tasty-1.4.2.1.cabal diff --git a/.gitignore b/.gitignore index a9c2411..477531a 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /tasty-1.2.3.tar.gz /tasty-1.4.1.tar.gz /tasty-1.4.2.1.tar.gz +/tasty-1.4.3.tar.gz diff --git a/ghc-tasty.spec b/ghc-tasty.spec index 0f07184..4b1b1c5 100644 --- a/ghc-tasty.spec +++ b/ghc-tasty.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-2.0.12 --subpackage +# generated by cabal-rpm-2.1.0 --subpackage # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name tasty @@ -8,9 +8,9 @@ %global subpkgs %{wcwidth} Name: ghc-%{pkg_name} -Version: 1.4.2.1 +Version: 1.4.3 # can only be reset when all subpkgs bumped -Release: 15%{?dist} +Release: 16%{?dist} Summary: Modern and extensible testing framework License: MIT @@ -18,24 +18,29 @@ 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/%{wcwidth}/%{wcwidth}.tar.gz -Source2: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal # End cabal-rpm sources # Begin cabal-rpm deps: -BuildRequires: dos2unix BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros-extra +BuildRequires: ghc-ansi-terminal-devel +BuildRequires: ghc-base-devel +BuildRequires: ghc-containers-devel +BuildRequires: ghc-optparse-applicative-devel +BuildRequires: ghc-stm-devel +BuildRequires: ghc-tagged-devel +BuildRequires: ghc-transformers-devel +BuildRequires: ghc-unix-devel +%if %{with ghc_prof} BuildRequires: ghc-ansi-terminal-prof BuildRequires: ghc-base-prof -BuildRequires: ghc-clock-prof BuildRequires: ghc-containers-prof -BuildRequires: ghc-mtl-prof BuildRequires: ghc-optparse-applicative-prof BuildRequires: ghc-stm-prof BuildRequires: ghc-tagged-prof -BuildRequires: ghc-unbounded-delays-prof +BuildRequires: ghc-transformers-prof BuildRequires: ghc-unix-prof -#BuildRequires: ghc-wcwidth-prof +%endif # End cabal-rpm deps %description @@ -91,7 +96,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -a1 -dos2unix -k -n %{SOURCE2} %{pkg_name}.cabal # End cabal-rpm setup @@ -131,6 +135,10 @@ dos2unix -k -n %{SOURCE2} %{pkg_name}.cabal %changelog +* Sun Jan 22 2023 Jens Petersen - 1.4.3-16 +- https://hackage.haskell.org/package/tasty-1.4.3/changelog +- refresh to cabal-rpm-2.1.0 with SPDX migration + * Thu Jul 21 2022 Fedora Release Engineering - 1.4.2.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index c915449..8e84879 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ SHA512 (wcwidth-0.0.2.tar.gz) = 555c38183c7c402a66c151e52bbac9e6c501528cd661ad1708576444b6dc4daa19e0d75c9b79f8590843e0e40b3758d9bea08e426e754688cd32070dfce5a649 -SHA512 (tasty-1.4.2.1.tar.gz) = 71a0b995fa9b7f02d25a62cb161a6af8421731fd1484f129d893869f3439498b1bf71c74863e34f1f50073d3a503b4ca088e784234b8758a788e5df05baee90f +SHA512 (tasty-1.4.3.tar.gz) = 88d4e13bdc6e70a865d9779c9c990b2ce98bb495dd8aa7893254d99ae87e37a696ad6930323d3c213f804bc5b18063f261cdc2f8332054fc4112068a458fa466 diff --git a/tasty-1.4.2.1.cabal b/tasty-1.4.2.1.cabal deleted file mode 100644 index 74bbd3c..0000000 --- a/tasty-1.4.2.1.cabal +++ /dev/null @@ -1,96 +0,0 @@ --- Initial tasty.cabal generated by cabal init. For further documentation, --- see http://haskell.org/cabal/users-guide/ - -name: tasty -version: 1.4.2.1 -x-revision: 2 -synopsis: Modern and extensible testing framework -description: Tasty is a modern testing framework for Haskell. - It lets you combine your unit tests, golden - tests, QuickCheck/SmallCheck properties, and any - other types of tests into a single test suite. -license: MIT -license-file: LICENSE -author: Roman Cheplyaka -maintainer: Roman Cheplyaka -homepage: https://github.com/UnkindPartition/tasty -bug-reports: https://github.com/UnkindPartition/tasty/issues --- copyright: -category: Testing -build-type: Simple -extra-source-files: CHANGELOG.md, README.md -cabal-version: >=1.10 - -Source-repository head - type: git - location: git://github.com/UnkindPartition/tasty.git - subdir: core - -flag clock - description: - Depend on the clock package for more accurate time measurement - default: True - -flag unix - description: - Depend on the unix package to install signal handlers - default: True - -library - build-depends: mtl <2.3 - - exposed-modules: - Test.Tasty, - Test.Tasty.Options, - Test.Tasty.Providers, - Test.Tasty.Providers.ConsoleFormat, - Test.Tasty.Runners - Test.Tasty.Ingredients, - Test.Tasty.Ingredients.Basic - Test.Tasty.Ingredients.ConsoleReporter - - -- for testing only - Test.Tasty.Patterns.Types - Test.Tasty.Patterns.Parser - Test.Tasty.Patterns.Printer - Test.Tasty.Patterns.Eval - other-modules: - Control.Concurrent.Async - Test.Tasty.Parallel, - Test.Tasty.Core, - Test.Tasty.Options.Core, - Test.Tasty.Options.Env, - Test.Tasty.Patterns, - Test.Tasty.Patterns.Expr, - Test.Tasty.Run, - Test.Tasty.Runners.Reducers, - Test.Tasty.Runners.Utils, - Test.Tasty.CmdLine, - Test.Tasty.Ingredients.ListTests - Test.Tasty.Ingredients.IncludingOptions - build-depends: - base >= 4.9 && < 5, - stm >= 2.3, - containers, - mtl >= 2.1.3.1, - tagged >= 0.5, - optparse-applicative >= 0.14, - unbounded-delays >= 0.1, - ansi-terminal >= 0.9 - if(!impl(ghc >= 8.0)) - build-depends: semigroups - - if flag(clock) && !impl(ghcjs) - build-depends: clock >= 0.4.4.0 - else - build-depends: time >= 1.4 - - if !os(windows) && !impl(ghcjs) - build-depends: wcwidth - if flag(unix) - build-depends: unix - - -- hs-source-dirs: - default-language: Haskell2010 - default-extensions: CPP, ScopedTypeVariables, DeriveDataTypeable - ghc-options: -Wall -Wno-incomplete-uni-patterns