1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
diff -rupN old-locale-1.0.0.7/old-locale.cabal new-old-locale-1.0.0.7/old-locale.cabal
--- old-locale-1.0.0.7/old-locale.cabal 2014-11-21 11:45:10.000000000 +0100
+++ new-old-locale-1.0.0.7/old-locale.cabal 2025-08-01 17:44:38.946864154 +0200
@@ -31,5 +31,5 @@ Library
exposed-modules:
System.Locale
- build-depends: base >= 4.2 && < 4.9
+ build-depends: base >= 4.2 && < 5
ghc-options: -Wall
diff -rupN old-locale-1.0.0.7/old-locale.cabal~ new-old-locale-1.0.0.7/old-locale.cabal~
--- old-locale-1.0.0.7/old-locale.cabal~ 1970-01-01 01:00:00.000000000 +0100
+++ new-old-locale-1.0.0.7/old-locale.cabal~ 2025-08-01 17:44:27.052920678 +0200
@@ -0,0 +1,35 @@
+name: old-locale
+version: 1.0.0.7
+-- NOTE: Don't forget to update ./changelog.md
+license: BSD3
+license-file: LICENSE
+maintainer: libraries@haskell.org
+bug-reports: https://github.com/haskell/old-locale/issues
+synopsis: locale library
+category: System
+build-type: Simple
+Cabal-Version:>=1.10
+tested-with: GHC==7.8.3, GHC==7.8.2, GHC==7.8.1, GHC==7.6.3, GHC==7.6.2, GHC==7.6.1, GHC==7.4.2, GHC==7.4.1, GHC==7.2.2, GHC==7.2.1, GHC==7.0.4, GHC==7.0.3, GHC==7.0.2, GHC==7.0.1, GHC==6.12.3
+description:
+ This package provides the ability to adapt to
+ locale conventions such as date and time formats.
+
+extra-source-files:
+ changelog.md
+
+source-repository head
+ type: git
+ location: https://github.com/haskell/old-locale.git
+
+Library
+ default-language: Haskell98
+ other-extensions: CPP
+ if impl(ghc>=7.2)
+ -- && base>=4.4.1
+ other-extensions: Safe
+
+ exposed-modules:
+ System.Locale
+
+ build-depends: base >= 4.2 && < 4.9
+ ghc-options: -Wall
|