summaryrefslogtreecommitdiff
path: root/doc/bugs/error_compiling_network-info_when_compiling_git-annex
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:46:11 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:55:29 -0400
commitdbfc00e2a6ad99200da35f75f889174cd7bfd195 (patch)
tree9d8a9d1353ab10376183c1bda881fface04b6fcb /doc/bugs/error_compiling_network-info_when_compiling_git-annex
parent41b7950285ef1e91b80c441c2be68a1ef4d0d27c (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 Q3 2015. Command line used: for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --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=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done
Diffstat (limited to 'doc/bugs/error_compiling_network-info_when_compiling_git-annex')
-rw-r--r--doc/bugs/error_compiling_network-info_when_compiling_git-annex/comment_1_1b5d236567123300924427624e0e48c8._comment53
-rw-r--r--doc/bugs/error_compiling_network-info_when_compiling_git-annex/comment_2_4e5ffd0d5b965b9429b937610b7998d5._comment8
2 files changed, 0 insertions, 61 deletions
diff --git a/doc/bugs/error_compiling_network-info_when_compiling_git-annex/comment_1_1b5d236567123300924427624e0e48c8._comment b/doc/bugs/error_compiling_network-info_when_compiling_git-annex/comment_1_1b5d236567123300924427624e0e48c8._comment
deleted file mode 100644
index 8ee7885a6..000000000
--- a/doc/bugs/error_compiling_network-info_when_compiling_git-annex/comment_1_1b5d236567123300924427624e0e48c8._comment
+++ /dev/null
@@ -1,53 +0,0 @@
-[[!comment format=mdwn
- username="http://joeyh.name/"
- ip="108.236.230.124"
- subject="comment 1"
- date="2014-06-06T16:53:21Z"
- content="""
-http://packdeps.haskellers.com/reverse/network-info
-
-It's uuid which needs network-info -- but not for the parts of uuid which git-annex uses. (git-annex does not use the uuids that include the MAC address).
-
-It's not hard to avoid that dependency. The attached patch will do. I've forwarded this to the author of uuid.
-
-<pre>
-diff --git a/uuid.cabal b/uuid.cabal
-index 0a53059..f00e887 100644
---- a/uuid.cabal
-+++ b/uuid.cabal
-@@ -24,6 +24,9 @@ Extra-Source-Files:
- CHANGES
- CONTRIBUTORS
-
-+Flag NetworkInfo
-+ Description: Enable UUIDs that need network-info
-+ Default: True
-
- Library
- Build-Depends: base >=3 && < 5,
-@@ -32,17 +35,20 @@ Library
- cryptohash >= 0.7 && < 0.12,
- deepseq == 1.3.*,
- hashable (>= 1.1.1.0 && < 1.2.0) || (>= 1.2.1 && < 1.3),
-- network-info == 0.2.*,
- random >= 1.0.1 && < 1.1,
- time >= 1.1 && < 1.5
-+ if flag(NetworkInfo)
-+ Build-Depends: network-info == 0.2.*
-
- Exposed-Modules:
- Data.UUID
-- Data.UUID.Util
-- Data.UUID.V1
- Data.UUID.V3
- Data.UUID.V4
- Data.UUID.V5
-+ if flag(NetworkInfo)
-+ Exposed-Modules:
-+ Data.UUID.Util
-+ Data.UUID.V1
-
- Other-Modules:
- Data.UUID.Builder
-</pre>
-"""]]
diff --git a/doc/bugs/error_compiling_network-info_when_compiling_git-annex/comment_2_4e5ffd0d5b965b9429b937610b7998d5._comment b/doc/bugs/error_compiling_network-info_when_compiling_git-annex/comment_2_4e5ffd0d5b965b9429b937610b7998d5._comment
deleted file mode 100644
index 8e631a115..000000000
--- a/doc/bugs/error_compiling_network-info_when_compiling_git-annex/comment_2_4e5ffd0d5b965b9429b937610b7998d5._comment
+++ /dev/null
@@ -1,8 +0,0 @@
-[[!comment format=mdwn
- username="https://www.google.com/accounts/o8/id?id=AItOawm5WyknJirJJridJjiPNgrlYxGG9xrZBvA"
- nickname="Daniel"
- subject="a different fix"
- date="2014-06-07T04:27:47Z"
- content="""
-Thanks. I also went back and took a closer look at the error; it looks like fixing network-info is pretty easy as well. <https://github.com/jystic/network-info/pull/10>
-"""]]