-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathhaskell-updater.cabal
91 lines (80 loc) · 2.14 KB
/
haskell-updater.cabal
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
cabal-version: 3.0
name: haskell-updater
homepage: https://github.com/gentoo-haskell/haskell-updater#readme
bug-reports: https://github.com/gentoo-haskell/haskell-updater/issues
version: 1.4.1.0
synopsis: Rebuild Haskell dependencies in Gentoo
description:
haskell-updater rebuilds Haskell packages on Gentoo
after a GHC upgrade or a dependency upgrade.
haskell-updater is written so as to use only
GHC's boot libraries so as to have no external
dependencies.
category: Distribution
license: GPL-3.0-or-later
license-file: LICENSE
copyright:
(c) Ivan Lazar Miljenovic,
Lennart Kolmodin,
Stephan Friedrichs,
Emil Karlson
author:
Ivan Lazar Miljenovic,
Lennart Kolmodin,
Stephan Friedrichs,
Emil Karlson
maintainer: [email protected]
build-type: Simple
extra-doc-files:
, CHANGELOG.md
, man/haskell-updater.1
, README.md
, TODO
tested-with:
, GHC ==9.0.2
, GHC ==9.2.8
, GHC ==9.4.8
, GHC ==9.6.5
, GHC ==9.8.2
, GHC ==9.10.1
source-repository head
type: git
location: https://github.com/gentoo-haskell/haskell-updater.git
flag pedantic
description: Enable -Werror
default: False
manual: True
common all
ghc-options: -Wall
if flag(pedantic)
ghc-options: -Werror
executable haskell-updater
import: all
main-is: Main.hs
other-modules:
Distribution.Gentoo.CmdLine
Distribution.Gentoo.CmdLine.Types
Distribution.Gentoo.GHC
Distribution.Gentoo.Packages
Distribution.Gentoo.PkgManager
Distribution.Gentoo.PkgManager.Types
Distribution.Gentoo.Types
Distribution.Gentoo.Types.HUMode
Distribution.Gentoo.Util
Output
Paths_haskell_updater
autogen-modules: Paths_haskell_updater
build-depends:
, base >=4.12 && <5
, bytestring
, Cabal >=1.8
, containers
, directory >=1.2.5.0
, filepath
, mtl
, process
-- Only force new bytestring on versions of GHC that come bundled with it
if impl(ghc >= 9.2.1)
build-depends:
, bytestring >=0.11.1.0
default-language: Haskell2010