update to 0.13.10
This commit is contained in:
parent
22ae547515
commit
141263d681
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
/th-orphans-0.13.6.tar.gz
|
||||
/th-orphans-0.13.7.tar.gz
|
||||
/th-orphans-0.13.9.tar.gz
|
||||
/th-orphans-0.13.10.tar.gz
|
||||
|
@ -7,7 +7,7 @@
|
||||
%bcond_with tests
|
||||
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.13.9
|
||||
Version: 0.13.10
|
||||
Release: 1%{?dist}
|
||||
Summary: Orphan instances for TH datatypes
|
||||
|
||||
@ -15,7 +15,6 @@ 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:
|
||||
@ -76,7 +75,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
|
||||
|
||||
|
||||
@ -89,7 +87,6 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||
%install
|
||||
# Begin cabal-rpm install
|
||||
%ghc_lib_install
|
||||
chmod a-x CHANGELOG.md README.md
|
||||
# End cabal-rpm install
|
||||
|
||||
|
||||
@ -129,6 +126,9 @@ chmod a-x CHANGELOG.md README.md
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Jun 10 2020 Jens Petersen <petersen@redhat.com> - 0.13.10-1
|
||||
- update to 0.13.10
|
||||
|
||||
* Fri Feb 14 2020 Jens Petersen <petersen@redhat.com> - 0.13.9-1
|
||||
- update to 0.13.9
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (th-orphans-0.13.9.tar.gz) = 90ee9f24e1f30df7d01ba9196ec723e47b3c238bfac0a683d62f7e4515274993a4adb1f2f2834aace6e8d0c7a79d89400b68cb07ba24bf45e716ec2e0b6a1304
|
||||
SHA512 (th-orphans-0.13.10.tar.gz) = bdf9cc69f57b97772f2ef38dcda61ca352069ac07e45c85efdcabec9dd3a538f33b3d65cfdff77185c737b8050139e232c4ecf677d89fd79aa5b74238b8af651
|
||||
|
@ -1,75 +0,0 @@
|
||||
name: th-orphans
|
||||
version: 0.13.9
|
||||
x-revision: 1
|
||||
cabal-version: >= 1.10
|
||||
build-type: Simple
|
||||
license: BSD3
|
||||
license-file: LICENSE
|
||||
category: Template Haskell
|
||||
author: Matt Morrow, Michael Sloan, Ryan Scott
|
||||
copyright: (c) Matt Morrow, Michael Sloan, Ryan Scott
|
||||
maintainer: Ryan Scott <ryan.gl.scott@gmail.com>
|
||||
bug-reports: https://github.com/mgsloan/th-orphans/issues
|
||||
stability: experimental
|
||||
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.4
|
||||
, GHC == 8.6.5
|
||||
, GHC == 8.8.1
|
||||
synopsis: Orphan instances for TH datatypes
|
||||
description: Orphan instances for TH datatypes. In particular, instances
|
||||
for Ord and Lift, as well as a few missing Show / Eq. These
|
||||
instances used to live in haskell-src-meta, and that's where
|
||||
the version number started.
|
||||
extra-source-files: CHANGELOG.md, README.md
|
||||
|
||||
library
|
||||
build-depends: base >= 4.3 && < 5,
|
||||
template-haskell < 2.17,
|
||||
-- https://github.com/mboes/th-lift/issues/14
|
||||
th-lift >= 0.7.1,
|
||||
th-reify-many >= 0.1 && < 0.2,
|
||||
th-lift-instances,
|
||||
mtl
|
||||
|
||||
if !impl(ghc >= 8.0)
|
||||
build-depends: fail == 4.9.*
|
||||
|
||||
-- Use TH to derive Generics instances instead of DeriveGeneric, for < 7.10
|
||||
if impl(ghc < 7.10)
|
||||
build-depends: generic-deriving >= 1.9
|
||||
|
||||
-- Prior to GHC 7.6, GHC generics lived in ghc-prim
|
||||
if impl(ghc >= 7.2) && impl(ghc < 7.6)
|
||||
build-depends: ghc-prim
|
||||
|
||||
hs-source-dirs: src
|
||||
ghc-options: -Wall
|
||||
exposed-modules: Language.Haskell.TH.Instances
|
||||
other-modules: Language.Haskell.TH.Instances.Internal
|
||||
default-language: Haskell2010
|
||||
|
||||
test-suite test
|
||||
type: exitcode-stdio-1.0
|
||||
hs-source-dirs: test
|
||||
main-is: Spec.hs
|
||||
other-modules: TestUtil
|
||||
build-depends: base,
|
||||
bytestring,
|
||||
ghc-prim,
|
||||
hspec,
|
||||
template-haskell,
|
||||
th-lift,
|
||||
th-orphans
|
||||
build-tool-depends: hspec-discover:hspec-discover
|
||||
default-language: Haskell2010
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/mgsloan/th-orphans
|
Loading…
Reference in New Issue
Block a user