osc copypac from project:devel:languages:haskell:ghc-9.4.x package:ghc-unicode-transforms revision:8, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-unicode-transforms?expand=0&rev=62
This commit is contained in:
Peter Simons 2023-10-27 08:29:41 +00:00 committed by Git OBS Bridge
parent 7934171d69
commit af22328ae7
3 changed files with 228 additions and 221 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Oct 24 17:10:40 UTC 2023 - Peter Simons <psimons@suse.com>
- Update unicode-transforms to version 0.4.0.1 revision 4.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Thu Mar 30 17:08:47 UTC 2023 - Peter Simons <psimons@suse.com>

View File

@ -26,7 +26,7 @@ Summary: Unicode normalization
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/3.cabal#/%{pkg_name}.cabal
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/4.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-base-devel
BuildRequires: ghc-base-prof

View File

@ -2,7 +2,7 @@ cabal-version: 2.2
name: unicode-transforms
version: 0.4.0.1
x-revision: 3
x-revision: 4
synopsis: Unicode normalization
description: Fast Unicode 14.0.0 normalization in Haskell (NFC, NFKC, NFD, NFKD).
category: Data,Text,Unicode
@ -22,9 +22,10 @@ tested-with: GHC==8.0.2
, GHC==8.8.4
, GHC==8.10.7
, GHC==9.0.2
, GHC==9.2.7
, GHC==9.4.4
, GHC==9.6.1
, GHC==9.2.8
, GHC==9.4.7
, GHC==9.6.3
, GHC==9.8.1
build-type: Simple
extra-source-files:
Changelog.md
@ -85,14 +86,14 @@ library
hs-source-dirs: .
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
build-depends:
base >= 4.8 && < 4.19
base >= 4.8 && < 4.20
, unicode-data >= 0.2 && < 0.5
, bytestring >= 0.9 && < 0.12
, ghc-prim >= 0.2 && < 0.11
, bytestring >= 0.9 && < 0.13
, ghc-prim >= 0.2 && < 0.12
-- We depend on a lot of internal modules in text. We keep the upper bound
-- inclusive of the latest stable version.
, text >=1.1.1 && <=1.2.5.0 || >=2.0 && <2.1
, text >=1.1.1 && <=1.2.5.0 || >=2.0 && <2.2
if flag(dev)
ghc-options: -O0
else
@ -112,7 +113,7 @@ test-suite extras
build-depends:
QuickCheck >=2.1 && <2.15
, base
, deepseq >=1.1 && <1.5
, deepseq >=1.1 && <1.6
, text
, unicode-transforms
if flag(dev)
@ -181,8 +182,8 @@ benchmark bench
base
, deepseq
, filepath >=1.0 && <2
, path >=0.0.0 && <0.9
, path-io >=0.1.0 && <1.7
, path >=0.0.0 && <0.10
, path-io >=0.1.0 && <1.9
, text
, unicode-transforms
if flag(use-gauge)
@ -215,6 +216,6 @@ executable chart
base
, bench-show >= 0.3 && < 0.4
, split
, transformers >= 0.4 && < 0.6
, transformers >= 0.4 && < 0.7
else
buildable: False