update to 1.4.3

This commit is contained in:
Jens Petersen 2023-01-23 01:44:15 +08:00
parent 8c58503849
commit 4ab0fba6db
4 changed files with 20 additions and 107 deletions

1
.gitignore vendored
View File

@ -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

View File

@ -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 <petersen@redhat.com> - 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 <releng@fedoraproject.org> - 1.4.2.1-15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild

View File

@ -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

View File

@ -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 <roma@ro-che.info>
maintainer: Roman Cheplyaka <roma@ro-che.info>
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