* [bug#44425] Add git-annex assistant and dependencies
@ 2020-11-03 19:24 Christopher Lemmer Webber
2020-11-03 19:33 ` Christopher Lemmer Webber
0 siblings, 1 reply; 10+ messages in thread
From: Christopher Lemmer Webber @ 2020-11-03 19:24 UTC (permalink / raw)
To: 44425
[-- Attachment #1: Type: text/plain, Size: 2004 bytes --]
Attached is a highly WIP patch for the git-annex assistant (sloppily
includes the two dependencies that also need to be added, will separate
once I get it all working). However, it doesn't work... here's the
point at which it stopped working:
[601 of 607] Compiling Assistant ( Assistant.hs, dist/build/git-annex/git-annex-tmp/Assistant.dyn_o )
Assistant.hs:73:55: warning: [-Wunused-matches]
Defined but not used: ‘listenhost’
|
73 | startDaemon assistant foreground startdelay cannotrun listenhost startbrowser = do
| ^^^^^^^^^^
[602 of 607] Compiling Command.Watch ( Command/Watch.hs, dist/build/git-annex/git-annex-tmp/Command/Watch.dyn_o )
[603 of 607] Compiling Command.Assistant ( Command/Assistant.hs, dist/build/git-annex/git-annex-tmp/Command/Assistant.dyn_o )
[604 of 607] Compiling CmdLine.GitAnnex ( CmdLine/GitAnnex.hs, dist/build/git-annex/git-annex-tmp/CmdLine/GitAnnex.dyn_o )
[605 of 607] Compiling Main ( git-annex.hs, dist/build/git-annex/git-annex-tmp/Main.dyn_o )
[606 of 607] Compiling Assistant.Pairing.Network ( Assistant/Pairing/Network.hs, dist/build/git-annex/git-annex-tmp/Assistant/Pairing/Network.dyn_o )
Assistant/Pairing/Network.hs:20:1: error:
Could not find module ‘Network.Multicast’
Use -v to see a list of the files searched for.
|
20 | import Network.Multicast
| ^^^^^^^^^^^^^^^^^^^^^^^^
Assistant/Pairing/Network.hs:21:1: error:
Could not load module ‘Network.Info’
It is a member of the hidden package ‘network-info-0.2.0.10’.
Perhaps you need to add ‘network-info’ to the build-depends in your .cabal file.
Use -v to see a list of the files searched for.
|
21 | import Network.Info
| ^^^^^^^^^^^^^^^^^^^
command "runhaskell" "Setup.hs" "build" "--ghc-option=-j8" failed with status 1
I'm unsure why it would be failing since I did add network-info to the
inputs. Any ideas?
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Git-annex-assistant-wip.patch --]
[-- Type: text/x-patch, Size: 3114 bytes --]
From 092183597b503ef349401a99ce1e981f4b3d29ba Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 3 Nov 2020 14:21:51 -0500
Subject: [PATCH] Git annex assistant wip
---
gnu/packages/haskell-apps.scm | 6 +++++-
gnu/packages/haskell-xyz.scm | 21 +++++++++++++++++++++
2 files changed, 26 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm
index 1de8b040f1..e3f0ed01f5 100644
--- a/gnu/packages/haskell-apps.scm
+++ b/gnu/packages/haskell-apps.scm
@@ -350,7 +350,7 @@ to @code{cabal repl}).")
(build-system haskell-build-system)
(arguments
`(#:configure-flags
- '("--flags=-Android -Assistant -Pairing -Webapp")
+ '("--flags=-Android -Pairing -Webapp")
#:phases
(modify-phases %standard-phases
(add-before 'configure 'patch-shell-for-tests
@@ -449,6 +449,7 @@ to @code{cabal repl}).")
("ghc-cryptonite" ,ghc-cryptonite)
("ghc-data-default" ,ghc-data-default)
("ghc-dav" ,ghc-dav)
+ ("ghc-dbus" ,ghc-dbus)
("ghc-disk-free-space" ,ghc-disk-free-space)
("ghc-dlist" ,ghc-dlist)
("ghc-edit-distance" ,ghc-edit-distance)
@@ -457,6 +458,7 @@ to @code{cabal repl}).")
("ghc-feed" ,ghc-feed)
("ghc-filepath-bytestring" ,ghc-filepath-bytestring)
("ghc-free" ,ghc-free)
+ ("ghc-hinotify" ,ghc-hinotify)
("ghc-hslogger" ,ghc-hslogger)
("ghc-http-client" ,ghc-http-client)
("ghc-http-conduit" ,ghc-http-conduit)
@@ -466,7 +468,9 @@ to @code{cabal repl}).")
("ghc-memory" ,ghc-memory)
("ghc-monad-control" ,ghc-monad-control)
("ghc-monad-logger" ,ghc-monad-logger)
+ ("ghc-mountpoints" ,ghc-mountpoints)
("ghc-network" ,ghc-network)
+ ("ghc-network-info" ,ghc-network-info)
("ghc-old-locale" ,ghc-old-locale)
("ghc-optparse-applicative" ,ghc-optparse-applicative)
("ghc-persistent" ,ghc-persistent)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 43dc7d5bbf..24be3ce5bc 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -15416,3 +15416,24 @@ Zstandard compression algorithm, a fast lossless compression algorithm
targeting real-time compression scenarios at zlib-level and better
compression ratios.")
(license license:bsd-3)))
+
+(define-public ghc-mountpoints
+ (package
+ (name "ghc-mountpoints")
+ (version "1.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/mountpoints/mountpoints-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1hnm31pqcffphyc463wf0vbik9fzm5lb2r4wjdc1y4dqzmjdzz37"))))
+ (build-system haskell-build-system)
+ (home-page
+ "http://hackage.haskell.org/package/mountpoints")
+ (synopsis "list mount points")
+ (description "Lists currently mounted filesystems. . Works on: Linux, BSD, Mac OS X, Android")
+ (license license:lgpl2.1+)))
--
2.29.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#44425] Add git-annex assistant and dependencies
2020-11-03 19:24 [bug#44425] Add git-annex assistant and dependencies Christopher Lemmer Webber
@ 2020-11-03 19:33 ` Christopher Lemmer Webber
2020-11-03 22:08 ` [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints Christopher Lemmer Webber
2020-11-04 17:12 ` bug#44425: Add git-annex assistant and dependencies Christopher Lemmer Webber
0 siblings, 2 replies; 10+ messages in thread
From: Christopher Lemmer Webber @ 2020-11-03 19:33 UTC (permalink / raw)
Cc: 44425
Just figured out that I also needed ghc-network-multicast. Trying with
that.
Christopher Lemmer Webber writes:
> Attached is a highly WIP patch for the git-annex assistant (sloppily
> includes the two dependencies that also need to be added, will separate
> once I get it all working). However, it doesn't work... here's the
> point at which it stopped working:
>
> [601 of 607] Compiling Assistant ( Assistant.hs, dist/build/git-annex/git-annex-tmp/Assistant.dyn_o )
>
> Assistant.hs:73:55: warning: [-Wunused-matches]
> Defined but not used: ‘listenhost’
> |
> 73 | startDaemon assistant foreground startdelay cannotrun listenhost startbrowser = do
> | ^^^^^^^^^^
> [602 of 607] Compiling Command.Watch ( Command/Watch.hs, dist/build/git-annex/git-annex-tmp/Command/Watch.dyn_o )
> [603 of 607] Compiling Command.Assistant ( Command/Assistant.hs, dist/build/git-annex/git-annex-tmp/Command/Assistant.dyn_o )
> [604 of 607] Compiling CmdLine.GitAnnex ( CmdLine/GitAnnex.hs, dist/build/git-annex/git-annex-tmp/CmdLine/GitAnnex.dyn_o )
> [605 of 607] Compiling Main ( git-annex.hs, dist/build/git-annex/git-annex-tmp/Main.dyn_o )
> [606 of 607] Compiling Assistant.Pairing.Network ( Assistant/Pairing/Network.hs, dist/build/git-annex/git-annex-tmp/Assistant/Pairing/Network.dyn_o )
>
> Assistant/Pairing/Network.hs:20:1: error:
> Could not find module ‘Network.Multicast’
> Use -v to see a list of the files searched for.
> |
> 20 | import Network.Multicast
> | ^^^^^^^^^^^^^^^^^^^^^^^^
>
> Assistant/Pairing/Network.hs:21:1: error:
> Could not load module ‘Network.Info’
> It is a member of the hidden package ‘network-info-0.2.0.10’.
> Perhaps you need to add ‘network-info’ to the build-depends in your .cabal file.
> Use -v to see a list of the files searched for.
> |
> 21 | import Network.Info
> | ^^^^^^^^^^^^^^^^^^^
> command "runhaskell" "Setup.hs" "build" "--ghc-option=-j8" failed with status 1
>
> I'm unsure why it would be failing since I did add network-info to the
> inputs. Any ideas?
>
>>From 092183597b503ef349401a99ce1e981f4b3d29ba Mon Sep 17 00:00:00 2001
> From: Christopher Lemmer Webber <cwebber@dustycloud.org>
> Date: Tue, 3 Nov 2020 14:21:51 -0500
> Subject: [PATCH] Git annex assistant wip
>
> ---
> gnu/packages/haskell-apps.scm | 6 +++++-
> gnu/packages/haskell-xyz.scm | 21 +++++++++++++++++++++
> 2 files changed, 26 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm
> index 1de8b040f1..e3f0ed01f5 100644
> --- a/gnu/packages/haskell-apps.scm
> +++ b/gnu/packages/haskell-apps.scm
> @@ -350,7 +350,7 @@ to @code{cabal repl}).")
> (build-system haskell-build-system)
> (arguments
> `(#:configure-flags
> - '("--flags=-Android -Assistant -Pairing -Webapp")
> + '("--flags=-Android -Pairing -Webapp")
> #:phases
> (modify-phases %standard-phases
> (add-before 'configure 'patch-shell-for-tests
> @@ -449,6 +449,7 @@ to @code{cabal repl}).")
> ("ghc-cryptonite" ,ghc-cryptonite)
> ("ghc-data-default" ,ghc-data-default)
> ("ghc-dav" ,ghc-dav)
> + ("ghc-dbus" ,ghc-dbus)
> ("ghc-disk-free-space" ,ghc-disk-free-space)
> ("ghc-dlist" ,ghc-dlist)
> ("ghc-edit-distance" ,ghc-edit-distance)
> @@ -457,6 +458,7 @@ to @code{cabal repl}).")
> ("ghc-feed" ,ghc-feed)
> ("ghc-filepath-bytestring" ,ghc-filepath-bytestring)
> ("ghc-free" ,ghc-free)
> + ("ghc-hinotify" ,ghc-hinotify)
> ("ghc-hslogger" ,ghc-hslogger)
> ("ghc-http-client" ,ghc-http-client)
> ("ghc-http-conduit" ,ghc-http-conduit)
> @@ -466,7 +468,9 @@ to @code{cabal repl}).")
> ("ghc-memory" ,ghc-memory)
> ("ghc-monad-control" ,ghc-monad-control)
> ("ghc-monad-logger" ,ghc-monad-logger)
> + ("ghc-mountpoints" ,ghc-mountpoints)
> ("ghc-network" ,ghc-network)
> + ("ghc-network-info" ,ghc-network-info)
> ("ghc-old-locale" ,ghc-old-locale)
> ("ghc-optparse-applicative" ,ghc-optparse-applicative)
> ("ghc-persistent" ,ghc-persistent)
> diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
> index 43dc7d5bbf..24be3ce5bc 100644
> --- a/gnu/packages/haskell-xyz.scm
> +++ b/gnu/packages/haskell-xyz.scm
> @@ -15416,3 +15416,24 @@ Zstandard compression algorithm, a fast lossless compression algorithm
> targeting real-time compression scenarios at zlib-level and better
> compression ratios.")
> (license license:bsd-3)))
> +
> +(define-public ghc-mountpoints
> + (package
> + (name "ghc-mountpoints")
> + (version "1.0.2")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append
> + "https://hackage.haskell.org/package/mountpoints/mountpoints-"
> + version
> + ".tar.gz"))
> + (sha256
> + (base32
> + "1hnm31pqcffphyc463wf0vbik9fzm5lb2r4wjdc1y4dqzmjdzz37"))))
> + (build-system haskell-build-system)
> + (home-page
> + "http://hackage.haskell.org/package/mountpoints")
> + (synopsis "list mount points")
> + (description "Lists currently mounted filesystems. . Works on: Linux, BSD, Mac OS X, Android")
> + (license license:lgpl2.1+)))
^ permalink raw reply [flat|nested] 10+ messages in thread
* [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints.
2020-11-03 19:33 ` Christopher Lemmer Webber
@ 2020-11-03 22:08 ` Christopher Lemmer Webber
2020-11-03 22:09 ` [bug#44425] [PATCH 2/3] gnu: Add ghc-network-multicast Christopher Lemmer Webber
2020-11-04 4:41 ` [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints Timothy Sample
2020-11-04 17:12 ` bug#44425: Add git-annex assistant and dependencies Christopher Lemmer Webber
1 sibling, 2 replies; 10+ messages in thread
From: Christopher Lemmer Webber @ 2020-11-03 22:08 UTC (permalink / raw)
Cc: 44425
[-- Attachment #1: Type: text/plain, Size: 190 bytes --]
Here we go... this actually works now. Working git-annex assistant!
For whatever reason I also seemed to enable pairing to get this to
function (there was a compilation error otherwise).
[-- Attachment #2: 0001-gnu-Add-ghc-mountpoints.patch --]
[-- Type: text/x-patch, Size: 1888 bytes --]
From 1c11f5e8141691e3540cc451c3c4d213fdd38067 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 3 Nov 2020 17:00:02 -0500
Subject: [PATCH 1/3] gnu: Add ghc-mountpoints.
* gnu/packages/haskell-xyz.scm (ghc-mountpoints): New variable.
---
gnu/packages/haskell-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 43dc7d5bbf..f9da8f573a 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -27,6 +27,7 @@
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2020 Alexandru-Sergiu Marton <brown121407@member.fsf.org>
;;; Copyright © 2020 Carlo Holl <carloholl@gmail.com>
+;;; Copyright © 2020 Christopher Lemmer Webber <cwebber@dustycloud.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -15416,3 +15417,25 @@ Zstandard compression algorithm, a fast lossless compression algorithm
targeting real-time compression scenarios at zlib-level and better
compression ratios.")
(license license:bsd-3)))
+
+(define-public ghc-mountpoints
+ (package
+ (name "ghc-mountpoints")
+ (version "1.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/mountpoints/mountpoints-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1hnm31pqcffphyc463wf0vbik9fzm5lb2r4wjdc1y4dqzmjdzz37"))))
+ (build-system haskell-build-system)
+ (home-page
+ "http://hackage.haskell.org/package/mountpoints")
+ (synopsis "Haskell library for listing mount points")
+ (description "This library provides Haskell bindings for checking
+currently mounted filesystems.")
+ (license license:lgpl2.1+)))
--
2.29.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#44425] [PATCH 2/3] gnu: Add ghc-network-multicast.
2020-11-03 22:08 ` [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints Christopher Lemmer Webber
@ 2020-11-03 22:09 ` Christopher Lemmer Webber
2020-11-03 22:10 ` Christopher Lemmer Webber
2020-11-04 4:41 ` [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints Timothy Sample
1 sibling, 1 reply; 10+ messages in thread
From: Christopher Lemmer Webber @ 2020-11-03 22:09 UTC (permalink / raw)
Cc: 44425
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0002-gnu-Add-ghc-network-multicast.patch --]
[-- Type: text/x-patch, Size: 1653 bytes --]
From 3b0f21df17b9265e6366da0611e7441e66015f0d Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 3 Nov 2020 17:02:50 -0500
Subject: [PATCH 2/3] gnu: Add ghc-network-multicast.
* gnu/packages/haskell-xyz.scm (ghc-network-multicast): New variable.
---
gnu/packages/haskell-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index f9da8f573a..a10299d48e 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -15439,3 +15439,29 @@ compression ratios.")
(description "This library provides Haskell bindings for checking
currently mounted filesystems.")
(license license:lgpl2.1+)))
+
+(define-public ghc-network-multicast
+ (package
+ (name "ghc-network-multicast")
+ (version "0.3.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/network-multicast/network-multicast-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0whvi0pbwjy6dbwfdf9rv1j3yr3lcmfp3q7a8pwq63g537l4l2l3"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-network" ,ghc-network)
+ ("ghc-network-bsd" ,ghc-network-bsd)))
+ (home-page
+ "http://hackage.haskell.org/package/network-multicast")
+ (synopsis "Simple multicast library for Haskell")
+ (description
+ "This package provides the Network.Multicast Haskell module for
+sending UDP datagrams over multicast (class D) addresses.")
+ (license license:expat)))
--
2.29.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#44425] [PATCH 2/3] gnu: Add ghc-network-multicast.
2020-11-03 22:09 ` [bug#44425] [PATCH 2/3] gnu: Add ghc-network-multicast Christopher Lemmer Webber
@ 2020-11-03 22:10 ` Christopher Lemmer Webber
2020-11-03 22:19 ` [bug#44426] That last one had the wrong subject, was for git-annex Christopher Lemmer Webber
0 siblings, 1 reply; 10+ messages in thread
From: Christopher Lemmer Webber @ 2020-11-03 22:10 UTC (permalink / raw)
Cc: 44425
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0003-git-annex-Enable-pairing-and-assistant-features.patch --]
[-- Type: text/x-patch, Size: 1858 bytes --]
From db08ffd29e48961c1192be623b13ff272c87e5c5 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 3 Nov 2020 17:04:09 -0500
Subject: [PATCH 3/3] git-annex: Enable pairing and assistant features.
* gnu/packages/haskell-apps.scm (git-annex): Add appropriate
dependencies and adjust flags to enable "assistant" and "pairing"
features.
---
gnu/packages/haskell-apps.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm
index 1de8b040f1..da1bd2128c 100644
--- a/gnu/packages/haskell-apps.scm
+++ b/gnu/packages/haskell-apps.scm
@@ -350,7 +350,7 @@ to @code{cabal repl}).")
(build-system haskell-build-system)
(arguments
`(#:configure-flags
- '("--flags=-Android -Assistant -Pairing -Webapp")
+ '("--flags=-Android -Webapp")
#:phases
(modify-phases %standard-phases
(add-before 'configure 'patch-shell-for-tests
@@ -457,6 +457,7 @@ to @code{cabal repl}).")
("ghc-feed" ,ghc-feed)
("ghc-filepath-bytestring" ,ghc-filepath-bytestring)
("ghc-free" ,ghc-free)
+ ("ghc-hinotify" ,ghc-hinotify)
("ghc-hslogger" ,ghc-hslogger)
("ghc-http-client" ,ghc-http-client)
("ghc-http-conduit" ,ghc-http-conduit)
@@ -466,7 +467,10 @@ to @code{cabal repl}).")
("ghc-memory" ,ghc-memory)
("ghc-monad-control" ,ghc-monad-control)
("ghc-monad-logger" ,ghc-monad-logger)
+ ("ghc-mountpoints" ,ghc-mountpoints)
("ghc-network" ,ghc-network)
+ ("ghc-network-info" ,ghc-network-info)
+ ("ghc-network-multicast" ,ghc-network-multicast)
("ghc-old-locale" ,ghc-old-locale)
("ghc-optparse-applicative" ,ghc-optparse-applicative)
("ghc-persistent" ,ghc-persistent)
--
2.29.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints.
2020-11-03 22:08 ` [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints Christopher Lemmer Webber
2020-11-03 22:09 ` [bug#44425] [PATCH 2/3] gnu: Add ghc-network-multicast Christopher Lemmer Webber
@ 2020-11-04 4:41 ` Timothy Sample
2020-11-04 16:03 ` Christopher Lemmer Webber
1 sibling, 1 reply; 10+ messages in thread
From: Timothy Sample @ 2020-11-04 4:41 UTC (permalink / raw)
To: Christopher Lemmer Webber; +Cc: 44425
Hi Christopher,
Christopher Lemmer Webber <cwebber@dustycloud.org> writes:
> Here we go... this actually works now. Working git-annex assistant!
That was fast!
I have two little notes. (1) Packages in “haskell-xyz.scm” are sorted
alphabetically, so the new packages shouldn’t go at the end (that file
is something of an outlier there). (2) The license of
ghc-network-multicast is not really clear. According to “LICENSE” and
“network-multicast.cabal”, it is CC0. However, at the top of the only
source file, “src/Network/Multicast.hsc”, it has “License: MIT License”
as a comment. I don’t think there’s a right answer for us, and I think
your choice of the Expat license is reasonable, but maybe it deserves a
comment?
Otherwise, it all lints, builds, runs fine, and LGTM!
-- Tim
^ permalink raw reply [flat|nested] 10+ messages in thread
* [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints.
2020-11-04 4:41 ` [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints Timothy Sample
@ 2020-11-04 16:03 ` Christopher Lemmer Webber
0 siblings, 0 replies; 10+ messages in thread
From: Christopher Lemmer Webber @ 2020-11-04 16:03 UTC (permalink / raw)
To: Timothy Sample; +Cc: 44425
Timothy Sample writes:
> Hi Christopher,
>
> Christopher Lemmer Webber <cwebber@dustycloud.org> writes:
>
>> Here we go... this actually works now. Working git-annex assistant!
>
> That was fast!
>
> I have two little notes. (1) Packages in “haskell-xyz.scm” are sorted
> alphabetically, so the new packages shouldn’t go at the end (that file
> is something of an outlier there).
Okay, I'll fix that.
> (2) The license of ghc-network-multicast is not really clear.
> According to “LICENSE” and “network-multicast.cabal”, it is CC0.
> However, at the top of the only source file,
> “src/Network/Multicast.hsc”, it has “License: MIT License” as a
> comment. I don’t think there’s a right answer for us, and I think
> your choice of the Expat license is reasonable, but maybe it deserves
> a comment?
Yes, I observed that also. Both are listed. Functionally I think that
makes it effectively Expat/MIT, though notably CC0 has a nontrivial
"fallback license" associated with it in the cases where public domain
is not recognized in a jurisdiction, so it's probably more both. I'll
leave a comment, I think that'll be sufficient.
> Otherwise, it all lints, builds, runs fine, and LGTM!
Woo woo! Will make the changes you suggested and then push.
> -- Tim
^ permalink raw reply [flat|nested] 10+ messages in thread
* bug#44425: Add git-annex assistant and dependencies
2020-11-03 19:33 ` Christopher Lemmer Webber
2020-11-03 22:08 ` [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints Christopher Lemmer Webber
@ 2020-11-04 17:12 ` Christopher Lemmer Webber
1 sibling, 0 replies; 10+ messages in thread
From: Christopher Lemmer Webber @ 2020-11-04 17:12 UTC (permalink / raw)
Cc: 44425-done
Committed in 7401f71aec. Everyone enjoy your fresh new git-annex assistant!
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2020-11-04 17:14 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-03 19:24 [bug#44425] Add git-annex assistant and dependencies Christopher Lemmer Webber
2020-11-03 19:33 ` Christopher Lemmer Webber
2020-11-03 22:08 ` [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints Christopher Lemmer Webber
2020-11-03 22:09 ` [bug#44425] [PATCH 2/3] gnu: Add ghc-network-multicast Christopher Lemmer Webber
2020-11-03 22:10 ` Christopher Lemmer Webber
2020-11-03 22:19 ` [bug#44426] That last one had the wrong subject, was for git-annex Christopher Lemmer Webber
[not found] ` <handler.44426.B.16044420125364.ack@debbugs.gnu.org>
2020-11-03 23:33 ` bug#44426: Acknowledgement (That last one had the wrong subject, was for git-annex) Christopher Lemmer Webber
2020-11-04 4:41 ` [bug#44425] [PATCH 1/3] gnu: Add ghc-mountpoints Timothy Sample
2020-11-04 16:03 ` Christopher Lemmer Webber
2020-11-04 17:12 ` bug#44425: Add git-annex assistant and dependencies Christopher Lemmer Webber
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.