update to 0.8.6.1
This commit is contained in:
parent
03ae0c5dfb
commit
36c10ade48
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,3 +9,4 @@
|
||||
/tagged-0.8.4.tar.gz
|
||||
/tagged-0.8.5.tar.gz
|
||||
/tagged-0.8.6.tar.gz
|
||||
/tagged-0.8.6.1.tar.gz
|
||||
|
||||
@ -5,15 +5,14 @@
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.8.6
|
||||
Release: 11%{?dist}
|
||||
Version: 0.8.6.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Haskell 98 phantom types to avoid unsafely passing dummy arguments
|
||||
|
||||
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:
|
||||
@ -66,7 +65,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
|
||||
|
||||
|
||||
@ -104,6 +102,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Aug 5 2021 Jens Petersen <petersen@redhat.com> - 0.8.6.1-1
|
||||
- update to 0.8.6.1
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.6-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
|
||||
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (tagged-0.8.6.tar.gz) = 8cec49ea6f54ba84109ec6068cce209321bfa4662d5acdf75e4019087e2890e3056bf13a237cb5caf3fec597b05b710ebbfb74e06b736b7fb2f87941defeb814
|
||||
SHA512 (tagged-0.8.6.1.tar.gz) = 289be845821aada538caf3fd0fc85b8ed115c657dc5beb0408816e43cf72153881ad305a982effa572a46e5b1842d2772af44313674cb0a252db8aeb6953f345
|
||||
|
||||
@ -1,83 +0,0 @@
|
||||
name: tagged
|
||||
version: 0.8.6
|
||||
x-revision: 2
|
||||
license: BSD3
|
||||
license-file: LICENSE
|
||||
author: Edward A. Kmett
|
||||
maintainer: Edward A. Kmett <ekmett@gmail.com>
|
||||
stability: experimental
|
||||
category: Data, Phantom Types
|
||||
synopsis: Haskell 98 phantom types to avoid unsafely passing dummy arguments
|
||||
homepage: http://github.com/ekmett/tagged
|
||||
bug-reports: http://github.com/ekmett/tagged/issues
|
||||
copyright: 2009-2015 Edward A. Kmett
|
||||
description: Haskell 98 phantom types to avoid unsafely passing dummy arguments.
|
||||
build-type: Simple
|
||||
cabal-version: >= 1.10
|
||||
extra-source-files: .travis.yml CHANGELOG.markdown README.markdown HLint.hs
|
||||
tested-with: GHC == 7.0.4
|
||||
, GHC == 7.2.2
|
||||
, GHC == 7.4.2
|
||||
, GHC == 7.6.3
|
||||
, GHC == 7.8.4
|
||||
, GHC == 7.10.3
|
||||
, GHC == 8.0.2
|
||||
, GHC == 8.2.2
|
||||
, GHC == 8.4.3
|
||||
, GHC == 8.6.1
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: git://github.com/ekmett/tagged.git
|
||||
|
||||
flag deepseq
|
||||
description:
|
||||
You can disable the use of the `deepseq` package using `-f-deepseq`.
|
||||
.
|
||||
Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
|
||||
default: True
|
||||
manual: True
|
||||
|
||||
flag transformers
|
||||
description:
|
||||
You can disable the use of the `transformers` and `transformers-compat` packages using `-f-transformers`.
|
||||
.
|
||||
Disable this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
|
||||
default: True
|
||||
manual: True
|
||||
|
||||
library
|
||||
default-language: Haskell98
|
||||
other-extensions: CPP
|
||||
build-depends: base >= 2 && < 5
|
||||
ghc-options: -Wall
|
||||
hs-source-dirs: src
|
||||
exposed-modules: Data.Tagged
|
||||
|
||||
if !impl(hugs)
|
||||
cpp-options: -DLANGUAGE_DeriveDataTypeable
|
||||
other-extensions: DeriveDataTypeable
|
||||
|
||||
if impl(ghc<7.7)
|
||||
hs-source-dirs: old
|
||||
exposed-modules: Data.Proxy
|
||||
other-modules: Paths_tagged
|
||||
|
||||
if impl(ghc>=7.2 && <7.5)
|
||||
build-depends: ghc-prim
|
||||
|
||||
if impl(ghc>=7.6)
|
||||
exposed-modules: Data.Proxy.TH
|
||||
build-depends: template-haskell >= 2.8 && < 2.17
|
||||
|
||||
if flag(deepseq)
|
||||
build-depends: deepseq >= 1.1 && < 1.5
|
||||
|
||||
if flag(transformers)
|
||||
build-depends: transformers >= 0.2 && < 0.6
|
||||
|
||||
-- Ensure Data.Functor.Classes is always available
|
||||
if impl(ghc >= 7.10) || impl(ghcjs)
|
||||
build-depends: transformers >= 0.4.2.0
|
||||
else
|
||||
build-depends: transformers-compat >= 0.5 && < 1
|
||||
Loading…
Reference in New Issue
Block a user