Codebase list agda / c412b16
Agda: Upgrading from 2.5.3 to 2.5.4.1 Ilias Tsitsimpis 5 years ago
5 changed file(s) with 26 addition(s) and 38 deletion(s). Raw diff Collapse all Expand all
0 agda (2.5.3-6) UNRELEASED; urgency=medium
1
0 agda (2.5.4.1-1) unstable; urgency=medium
1
2 [ Clint Adams ]
23 * Set Rules-Requires-Root to no.
34
4 -- Clint Adams <clint@debian.org> Sun, 06 May 2018 22:09:09 -0400
5 [ Ilias Tsitsimpis ]
6 * New upstream release
7
8 -- Ilias Tsitsimpis <iliastsi@debian.org> Sun, 30 Sep 2018 11:01:07 +0300
59
610 agda (2.5.3-5) unstable; urgency=medium
711
1212 happy,
1313 haskell-devscripts (>= 0.13),
1414 ghc-prof,
15 libghc-async-dev (>= 2.0.2),
16 libghc-async-dev (<< 2.2),
15 libghc-edisoncore-dev,
16 libghc-edisoncore-prof,
17 libghc-async-dev (>= 2.2),
18 libghc-async-dev (<< 2.3),
1719 libghc-async-prof,
1820 libghc-blaze-html-dev (>= 0.8),
1921 libghc-blaze-html-dev (<< 0.10),
3335 libghc-filemanip-dev (<< 0.4),
3436 libghc-filemanip-dev (>= 0.3.6.3),
3537 libghc-geniplate-mirror-dev (<< 0.8),
36 libghc-geniplate-mirror-dev (>= 0.6.0.6),
38 libghc-geniplate-mirror-prof,
39 libghc-gitrev-dev (>= 1.3.1),
3740 libghc-gitrev-dev (<< 2.0),
3841 libghc-gitrev-dev (>= 1.2),
3942 libghc-hashable-dev (<< 1.3),
40 libghc-hashable-dev (>= 1.2.1.0),
41 libghc-hashtables-dev,
42 libghc-ieee754-dev (<< 0.9),
43 libghc-hashable-prof,
44 libghc-hashtables-dev (>= 1.2.0.2),
45 libghc-hashtables-dev (<< 1.3),
46 libghc-hashtables-prof,
4347 libghc-ieee754-dev (>= 0.7.8),
4448 libghc-ieee754-dev (<< 0.9),
4549 libghc-ieee754-prof,
46 libghc-monadplus-dev (>= 1.4),
47 libghc-monadplus-dev (<< 1.5),
48 libghc-monadplus-prof,
4950 libghc-mtl-dev (>= 2.2.1),
5051 libghc-mtl-dev (<< 2.3),
5152 libghc-mtl-prof,
5253 libghc-murmur-hash-dev (>= 0.1),
5354 libghc-murmur-hash-dev (<< 0.2),
54 libghc-murmur-hash-dev (>= 0.1),
55 libghc-mtl-dev,
56 libghc-parallel-dev (<< 3.3),
57 libghc-parallel-dev (>= 3.2.0.4),
55 libghc-murmur-hash-prof,
56 libghc-regex-tdfa-dev (>= 1.2.2),
5857 libghc-regex-tdfa-dev (<< 1.3),
5958 libghc-regex-tdfa-prof,
6059 libghc-stm-dev (>= 2.4.4),
9190 libghc-hashable-doc,
9291 libghc-hashtables-doc,
9392 libghc-ieee754-doc,
94 libghc-monadplus-doc,
9593 libghc-mtl-doc,
9694 libghc-murmur-hash-doc,
97 libghc-parallel-doc,
9895 libghc-regex-tdfa-doc,
9996 libghc-stm-doc,
10097 libghc-strict-doc,
+0
-11
p/agda/debian/patches/newer-deps less more
0 --- a/Agda.cabal
1 +++ b/Agda.cabal
2 @@ -132,7 +132,7 @@
3 , data-hash >= 0.2.0.0 && < 0.3
4 , deepseq >= 1.3.0.2 && < 1.5
5 , directory >= 1.2.0.1 && < 1.4
6 - , EdisonCore >= 1.3.1.1 && < 1.3.2
7 + , EdisonCore >= 1.3.2.1 && < 1.4
8 , edit-distance >= 0.2.1.2 && < 0.3
9 , equivalence >= 0.3.2 && < 0.4
10 , filepath >= 1.3.0.1 && < 1.5
00 var-lib-agda
1 newer-deps
00 See https://github.com/agda/agda/issues/2804
11
2 Index: agda/src/full/Agda/Interaction/Library.hs
2 Index: b/src/full/Agda/Interaction/Library.hs
33 ===================================================================
4 --- agda.orig/src/full/Agda/Interaction/Library.hs 2017-10-13 21:58:48.432139892 -0400
5 +++ agda/src/full/Agda/Interaction/Library.hs 2017-10-13 22:39:44.970695744 -0400
6 @@ -215,13 +215,20 @@
4 --- a/src/full/Agda/Interaction/Library.hs
5 +++ b/src/full/Agda/Interaction/Library.hs
6 @@ -225,13 +225,19 @@ getInstalledLibraries
77 -> LibM [AgdaLibFile] -- ^ Content of library files. (Might have empty @LibName@s.)
88 getInstalledLibraries overrideLibFile = mkLibM [] $ do
99 file <- lift $ getLibrariesFile overrideLibFile
10 - ifNotM (lift $ doesFileExist file) (return []) $ {-else-} do
11 + userlibs <- ifNotM (lift $ doesFileExist file) (return []) $ {-else-} do
12 ls <- lift $ stripCommentLines <$> readFile file
10 - if not (lfExists file) then return [] else do
11 + userlibs <- if not (lfExists file) then return [] else do
12 ls <- lift $ stripCommentLines <$> readFile (lfPath file)
1313 files <- lift $ sequence [ (i, ) <$> expandEnvironmentVariables s | (i, s) <- ls ]
1414 parseLibFiles (Just file) files
15 +
1615 + systemlibs <- ifNotM (lift $ doesDirectoryExist systemLibDir) (return []) $ do
1716 + files <- lift $ filter isLibFile <$> listDirectory systemLibDir
1817 + parseLibFiles Nothing $ zip [1..] $ map (systemLibDir </>) files