Codebase list haskell-xss-sanitize / 3e9dbd0
haskell-gi: Upgrading from 0.21.5 to 0.23.1 Clint Adams 3 years ago
3 changed file(s) with 22 addition(s) and 20 deletion(s). Raw diff Collapse all Expand all
0 haskell-haskell-gi (0.23.1-1) unstable; urgency=medium
1
2 * New upstream version.
3
4 -- Clint Adams <clint@debian.org> Sun, 07 Jun 2020 20:11:41 -0400
5
06 haskell-haskell-gi (0.21.5-2) unstable; urgency=medium
17
28 * Don't run tests on s390x, they hang
77 cdbs,
88 ghc,
99 ghc-prof,
10 libghc-ansi-terminal-dev (>= 0.10),
11 libghc-ansi-terminal-dev (<< 0.11),
12 libghc-ansi-terminal-prof,
1013 libghc-attoparsec-dev (>= 0.13),
11 libghc-attoparsec-dev (<< 0.14),
12 libghc-attoparsec-prof (>= 0.13),
13 libghc-attoparsec-prof (<< 0.14),
14 libghc-haskell-gi-base-dev (>= 0.21),
15 libghc-haskell-gi-base-dev (<< 0.22),
16 libghc-haskell-gi-base-prof (>= 0.21),
17 libghc-haskell-gi-base-prof (<< 0.22),
18 libghc-mtl-dev (>= 2.2),
19 libghc-mtl-prof (>= 2.2),
14 libghc-attoparsec-prof,
15 libghc-haskell-gi-base-dev (>= 0.23.0),
16 libghc-haskell-gi-base-dev (<< 0.24),
17 libghc-haskell-gi-base-prof,
2018 libghc-pretty-show-dev,
2119 libghc-pretty-show-prof,
2220 libghc-regex-tdfa-dev (>= 1.2),
2725 libghc-text-prof (>= 1.0),
2826 libghc-xdg-basedir-dev,
2927 libghc-xdg-basedir-prof,
30 libghc-xml-conduit-dev (>= 1.3.0),
28 libghc-xml-conduit-dev (>= 1.3),
3129 libghc-xml-conduit-prof,
3230 libghc-doctest-dev (>= 0.8),
3331 libghc-doctest-prof (>= 0.8),
3432 libgirepository1.0-dev,
3533 Build-Depends-Indep: ghc-doc,
34 libghc-ansi-terminal-doc,
3635 libghc-attoparsec-doc,
3736 libghc-haskell-gi-base-doc,
3837 libghc-mtl-doc,
4241 libghc-text-doc,
4342 libghc-xdg-basedir-doc,
4443 libghc-xml-conduit-doc,
45 Standards-Version: 4.4.0
44 Standards-Version: 4.5.0
4645 Homepage: https://github.com/haskell-gi/haskell-gi
4746 X-Description: generate Haskell bindings for GI-capable libraries
4847 Generate Haskell bindings for GObject-Introspection-capable libraries.
00 --- a/lib/Data/GI/CodeGen/Code.hs
11 +++ b/lib/Data/GI/CodeGen/Code.hs
2 @@ -789,9 +789,9 @@
3
2 @@ -852,7 +852,7 @@
43 -- | Generate some convenience CPP macros.
54 cppMacros :: Text
6 -cppMacros = T.unlines ["#define ENABLE_OVERLOADING (MIN_VERSION_haskell_gi_overloading(1,0,0) \\"
7 +cppMacros = T.unlines ["#define ENABLE_OVERLOADING \\"
8 -- Haddocks look better without overloading
9 - , " && !defined(__HADDOCK_VERSION__))"
10 + , " (!defined(__HADDOCK_VERSION__))"
11 ]
5 cppMacros = T.unlines
6 - ["#if (MIN_VERSION_haskell_gi_overloading(1,0,0) && !defined(__HADDOCK_VERSION__))"
7 + ["#if !defined(__HADDOCK_VERSION__)"
8 , "#define ENABLE_OVERLOADING"
9 , "#endif"]
1210
13 -- | Standard fields for every module.