Accepting request 1231472 from devel:languages:haskell
version update for ghc-9.10.1 OBS-URL: https://build.opensuse.org/request/show/1231472 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-tagged?expand=0&rev=27
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 3 12:15:57 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update tagged to version 0.8.9.
|
||||
0.8.9 [2024.12.03]
|
||||
------------------
|
||||
* Allow building with GHC 9.12.
|
||||
* Drop support for GHC 7.10 and earlier.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 16 15:19:10 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
|
@@ -19,13 +19,12 @@
|
||||
%global pkg_name tagged
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.8.8
|
||||
Version: 0.8.9
|
||||
Release: 0
|
||||
Summary: Haskell 98 phantom types to avoid unsafely passing dummy arguments
|
||||
License: BSD-3-Clause
|
||||
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-base-prof
|
||||
@@ -69,7 +68,6 @@ This package provides the Haskell %{pkg_name} profiling library.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{pkg_name}-%{version}
|
||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||
|
||||
%build
|
||||
%ghc_lib_build
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a083fa7835516203c168433a1c8dfc0290a94b05fedab566ad0640fc9137a6a7
|
||||
size 10094
|
3
tagged-0.8.9.tar.gz
Normal file
3
tagged-0.8.9.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6daad88ebb414ba6a556d2898d2cbe7650e4276010e3a6eed939daf54b956784
|
||||
size 8151
|
97
tagged.cabal
97
tagged.cabal
@@ -1,97 +0,0 @@
|
||||
name: tagged
|
||||
version: 0.8.8
|
||||
x-revision: 1
|
||||
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: .hlint.yaml CHANGELOG.markdown README.markdown
|
||||
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.4
|
||||
GHC == 8.10.7
|
||||
GHC == 9.0.2
|
||||
GHC == 9.2.8
|
||||
GHC == 9.4.8
|
||||
GHC == 9.6.4
|
||||
GHC == 9.8.2
|
||||
GHC == 9.10.0
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://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(ghc >= 9.0)
|
||||
-- these flags may abort compilation with GHC-8.10
|
||||
-- https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3295
|
||||
ghc-options: -Winferred-safe-imports -Wmissing-safe-haskell-mode
|
||||
|
||||
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.23
|
||||
|
||||
if flag(deepseq)
|
||||
build-depends: deepseq >= 1.1 && < 1.6
|
||||
|
||||
if flag(transformers)
|
||||
build-depends: transformers >= 0.2 && < 0.7
|
||||
|
||||
-- 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
|
Reference in New Issue
Block a user