Package: guix-patches;
Reported by: Matthias Riße <matrss <at> 0px.xyz>
Date: Thu, 28 Nov 2024 18:57:02 UTC
Severity: normal
Tags: patch
Done: Lars-Dominik Braun <lars <at> 6xq.net>
Bug is archived. No further changes may be made.
View this message in rfc822 format
From: help-debbugs <at> gnu.org (GNU bug Tracking System) To: Matthias Riße <matrss <at> 0px.xyz> Subject: bug#74595: closed (Re: [bug#74595] [PATCH] gnu: git-annex: Update to 10.20241031.) Date: Sat, 30 Nov 2024 13:28:03 +0000
[Message part 1 (text/plain, inline)]
Your bug report #74595: [PATCH] gnu: git-annex: Update to 10.20241031. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 74595 <at> debbugs.gnu.org. -- 74595: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=74595 GNU Bug Tracking System Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Lars-Dominik Braun <lars <at> 6xq.net> To: Matthias Riße <matrss <at> 0px.xyz> Cc: 74595-done <at> debbugs.gnu.org Subject: Re: [bug#74595] [PATCH] gnu: git-annex: Update to 10.20241031. Date: Sat, 30 Nov 2024 14:27:10 +0100Hi, > * gnu/packages/haskell-apps.scm (git-annex): Update to 10.20241031. > [inputs]: Add ghc-servant-client and ghc-servant-server. > * gnu/packages/haskell-xyz.scm (ghc-servant-client, > ghc-servant-client-core, ghc-tdigest): New variables. I split these into several commits and merged them as 813accee3fd88c8cf9ff67432964fcfc9957f4a0 gnu: git-annex: Update to 10.20241031 179e45badae2b9598f64f2e8d392985e783a09bb gnu: Add ghc-servant-client. 5fd105bf285250af02670b0a9a4615e2b458861d gnu: Add ghc-servant-client-core. 0fe87722697fd83527e1e8c134d13ac8e44246fb gnu: Add ghc-tdigest. Cheers, Lars
[Message part 3 (message/rfc822, inline)]
From: Matthias Riße <matrss <at> 0px.xyz> To: guix-patches <at> gnu.org Cc: Matthias Riße <matrss <at> 0px.xyz> Subject: [PATCH] gnu: git-annex: Update to 10.20241031. Date: Thu, 28 Nov 2024 16:22:27 +0100* gnu/packages/haskell-apps.scm (git-annex): Update to 10.20241031. [inputs]: Add ghc-servant-client and ghc-servant-server. * gnu/packages/haskell-xyz.scm (ghc-servant-client, ghc-servant-client-core, ghc-tdigest): New variables. Change-Id: Ibf172e3199b2c0cae051f5b4543395fc0ef1b6c0 --- Hey, this patch updates git-annex to its as-of-now latest release. A simple version bump failed to build at some p2phttp related file, but since that is a feature I would want anyway I've also added the necessary dependencies on servant for it. The new package definitions in haskell-xyz.scm are taken verbatim from guix import, apart from adding ghc-hspec-discover to the native-inputs of the two servant-client packages, to make them build. gnu/packages/haskell-apps.scm | 6 +- gnu/packages/haskell-xyz.scm | 114 ++++++++++++++++++++++++++++++++++ 2 files changed, 118 insertions(+), 2 deletions(-) diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm index 843681f311..1f5d1d74d3 100644 --- a/gnu/packages/haskell-apps.scm +++ b/gnu/packages/haskell-apps.scm @@ -297,7 +297,7 @@ (define-public ghcid (define-public git-annex (package (name "git-annex") - (version "10.20240831") + (version "10.20241031") (source (origin ;; hackage release doesn't include everything needed for extra bits. @@ -307,7 +307,7 @@ (define-public git-annex (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1g6paxjpdjmzr623p7cf6chh42g5azwlzlnxgljhyhdmz6bxj5fr")))) + (base32 "0x05mgxwn8a1czc98bp242828khw94f232slfbzvx86xx0z3c3d9")))) (build-system haskell-build-system) (properties '((upstream-name . "git-annex"))) (arguments @@ -460,6 +460,8 @@ (define-public git-annex ghc-safesemaphore ghc-sandi ghc-securemem + ghc-servant-client + ghc-servant-server ghc-socks ghc-split ghc-stm-chans diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 9c3b990275..ae1aa2d334 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -16683,6 +16683,92 @@ (define-public ghc-servant CHANGELOG>") (license license:bsd-3))) +(define-public ghc-servant-client + (package + (name "ghc-servant-client") + (version "0.19") + (source + (origin + (method url-fetch) + (uri (hackage-uri "servant-client" version)) + (sha256 + (base32 "1bdapsr6il0f019ss8wsxndpc8cd5czj40xczay5qhl7fqnxg5pa")))) + (build-system haskell-build-system) + (properties '((upstream-name . "servant-client"))) + (inputs (list ghc-servant + ghc-servant-client-core + ghc-base-compat + ghc-http-client + ghc-http-media + ghc-http-types + ghc-kan-extensions + ghc-monad-control + ghc-semigroupoids + ghc-transformers-base + ghc-transformers-compat)) + (native-inputs (list ghc-aeson + ghc-http-api-data + ghc-sop-core + ghc-wai + ghc-warp + ghc-entropy + ghc-hspec + ghc-hspec-discover + ghc-hunit + ghc-network + ghc-quickcheck + ghc-servant-server + ghc-tdigest + ghc-markdown-unlit)) + (arguments + `(#:cabal-revision ("6" + "0lakjnpvsiai08c5nddgzrnr0a139rr37cyq31hqcbwnsy553l1y"))) + (home-page "http://docs.servant.dev/") + (synopsis "Automatic derivation of querying functions for servant") + (description + "This library lets you derive automatically Haskell functions that let you query +each endpoint of a <http://hackage.haskell.org/package/servant servant> +webservice. . See <http://docs.servant.dev/en/stable/tutorial/Client.html the +client section of the tutorial>. . +<https://github.com/haskell-servant/servant/blob/master/servant-client/CHANGELOG.md +CHANGELOG>.") + (license license:bsd-3))) + +(define-public ghc-servant-client-core + (package + (name "ghc-servant-client-core") + (version "0.19") + (source + (origin + (method url-fetch) + (uri (hackage-uri "servant-client-core" version)) + (sha256 + (base32 "0cisc5cyl367cwrch1gr812aspd36a21hkwi6mwj708rpspwvrmc")))) + (build-system haskell-build-system) + (properties '((upstream-name . "servant-client-core"))) + (inputs (list ghc-constraints + ghc-servant + ghc-aeson + ghc-base-compat + ghc-base64-bytestring + ghc-free + ghc-http-media + ghc-http-types + ghc-network-uri + ghc-safe + ghc-sop-core)) + (native-inputs (list ghc-hspec ghc-hspec-discover ghc-quickcheck)) + (arguments + `(#:cabal-revision ("5" + "147ws71hwp8zck7ph8kcyh18524s8g0b7qvxjsvsm1yvw77c60gh"))) + (home-page "http://docs.servant.dev/") + (synopsis + "Core functionality and class for client function generation for servant APIs") + (description + "This library provides backend-agnostic generation of client functions. For more +information, see the README.") + (license license:bsd-3))) + (define-public ghc-servant-server (package (name "ghc-servant-server") @@ -17051,6 +17137,34 @@ (define-public ghc-validation-selective "Lighweight pure data validation based on Applicative and Selective functors.") (license license:mpl2.0))) +(define-public ghc-tdigest + (package + (name "ghc-tdigest") + (version "0.2.1.1") + (source + (origin + (method url-fetch) + (uri (hackage-uri "tdigest" version)) + (sha256 + (base32 "1dvkf7cs8dcr13wza5iyq2qgvz75r33mzgfmhdihw62xzxsqb6d3")))) + (build-system haskell-build-system) + (properties '((upstream-name . "tdigest"))) + (inputs (list ghc-base-compat ghc-reducers ghc-semigroupoids ghc-vector + ghc-vector-algorithms)) + (native-inputs (list ghc-semigroups ghc-tasty ghc-tasty-quickcheck)) + (arguments + `(#:cabal-revision ("3" + "0a39vwf37hkh06rn79blr3bw7ij05pgpxrkc9cldgdd5p4gvn1qn"))) + (home-page "https://github.com/phadej/haskell-tdigest#readme") + (synopsis "On-line accumulation of rank-based statistics") + (description + "This package provides a new data structure for accurate on-line accumulation of +rank-based statistics such as quantiles and trimmed means. . See original +paper: \"Computing extremely accurate quantiles using t-digest\" by Ted Dunning +and Otmar Ertl for more details +<https://github.com/tdunning/t-digest/blob/07b8f2ca2be8d0a9f04df2feadad5ddc1bb73c88/docs/t-digest-paper/histo.pdf>.") + (license license:bsd-3))) + (define-public ghc-tomland (package (name "ghc-tomland") base-commit: cf74986eec8ffdcc12506870fb807a1ebb43e6e3 -- 2.46.0
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.