]> dgit.raspbian.org Git - git-annex.git/blob
b2eb56843d3d028d53c76693cf0981111aad2fa9
[git-annex.git] /
1 [[!comment format=mdwn
2  username="account@dc612ad075297e574ebc3eb9a5b8ab6e753510dc"
3  nickname="account"
4  avatar="http://cdn.libravatar.org/avatar/6a2e457685ce943a3d85b0a6d1ffb11a"
5  subject="Further fix attempts"
6  date="2021-12-01T03:25:35Z"
7  content="""
8 I made another attempt at a fix by porting whatever changes you made to stack.yaml on 2739adc to git-annex.cabal using the following patch.
9 [[!format sh \"\"\"
10 From 05030463daca2582f2512cf14515393971263a40 Mon Sep 17 00:00:00 2001
11 From: \"build@apk-groulx\" <build@apk-groulx.praxis>
12 Date: Tue, 30 Nov 2021 06:48:09 +0000
13 Subject: [PATCH 1/1] Added dependency for ghc 9.0.1 for cabal
14
15 ---
16  git-annex.cabal | 6 ++++--
17  1 file changed, 4 insertions(+), 2 deletions(-)
18
19 diff --git a/git-annex.cabal b/git-annex.cabal
20 index 9285858cd..1a3ee52ff 100644
21 --- a/git-annex.cabal
22 +++ b/git-annex.cabal
23 @@ -330,7 +330,9 @@ Executable git-annex
24     directory (>= 1.2),
25     disk-free-space,
26     filepath,
27 -   filepath-bytestring (>= 1.4.2.1.1),
28 +   filepath-bytestring (>= 1.4.2.1.8),
29 +   base16-bytestring (>=0.1.1.7),
30 +   base64-bytestring (>=0.0.3),
31     IfElse,
32     monad-logger (>= 0.3.10),
33     free,
34 @@ -425,7 +427,7 @@ Executable git-annex
35      Other-Modules: Utility.GitLFS
36    
37    if flag(HttpClientRestricted)
38 -    Build-Depends: http-client-restricted (>= 0.0.2)
39 +    Build-Depends: http-client-restricted (>= 0.0.4)
40      CPP-Options: -DWITH_HTTP_CLIENT_RESTRICTED
41    else
42      Other-Modules: Utility.HttpManagerRestricted
43 -- 
44 2.34.0
45 \"\"\"]]
46
47 The same error occurs, unfortunately.
48 """]]