aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/cabal_constraints_for_aws_and_esqueleto.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
commit0dfc1d4e6eb37aadaba47a210539b2438fba97f5 (patch)
treee0beee12909c581f06829060a93a72d6686ca730 /doc/bugs/cabal_constraints_for_aws_and_esqueleto.mdwn
parentbd2a9fb40ef0bbe812e8ea375a5caabd6e628ef2 (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were last edited or commented before 2017. Command line used: for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done
Diffstat (limited to 'doc/bugs/cabal_constraints_for_aws_and_esqueleto.mdwn')
-rw-r--r--doc/bugs/cabal_constraints_for_aws_and_esqueleto.mdwn28
1 files changed, 0 insertions, 28 deletions
diff --git a/doc/bugs/cabal_constraints_for_aws_and_esqueleto.mdwn b/doc/bugs/cabal_constraints_for_aws_and_esqueleto.mdwn
deleted file mode 100644
index 4b4780326..000000000
--- a/doc/bugs/cabal_constraints_for_aws_and_esqueleto.mdwn
+++ /dev/null
@@ -1,28 +0,0 @@
-See https://github.com/joeyh/git-annex/pull/55.
-
-### Please describe the problem.
-Solver needs some help when building with +S3 and +Webapp for Homebrew.
-
-### What steps will reproduce the problem?
-Build git-annex with GHC 8.0.1 and cabal install 1.24.0.0 with --flags=s3\ webapp
-
-### What version of git-annex are you using? On what operating system?
-6.20160719
-macOS 10.11.5
-
-### Please provide any additional information below.
-git-annex.cabal needs a couple of tweaks to reflect the following known issues:
-
-
-1.
-aws 0.14.0 is incompatible with http-conduit 2.2.0
-https://github.com/aristidb/aws/issues/206
-
-2.
-esqueleto 2.4.3 is incompatible with persistent 2.5
-https://github.com/prowdsponsor/esqueleto/issues/137
-https://github.com/prowdsponsor/esqueleto/pull/141
-https://github.com/prowdsponsor/esqueleto/pull/139
-
-> I assume this will be sorted out upstream, but I don't mind temporarily
-> adding the constraints. [[done]] --[[Joey]]