[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/13: import: hackage: Use upstream-name property.
From: |
guix-commits |
Subject: |
08/13: import: hackage: Use upstream-name property. |
Date: |
Sat, 21 Jan 2023 06:55:20 -0500 (EST) |
lbraun pushed a commit to branch wip-haskell
in repository guix.
commit 1903cace0c6e83599ac72e523a11f2ae32dfabb1
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Wed Jan 4 09:37:26 2023 +0100
import: hackage: Use upstream-name property.
* guix/import/hackage.scm (guix-package->hackage-name): Removed.
(latest-release): Use package-upstream-name* instead.
* guix/import/stackage.scm (latest-lts-release): Ditto.
(stackage-lts-package?): Ditto.
---
guix/import/hackage.scm | 14 +-------------
guix/import/stackage.scm | 4 ++--
2 files changed, 3 insertions(+), 15 deletions(-)
diff --git a/guix/import/hackage.scm b/guix/import/hackage.scm
index 9e305cf080..2f901af47b 100644
--- a/guix/import/hackage.scm
+++ b/guix/import/hackage.scm
@@ -52,7 +52,6 @@
hackage-recursive-import
%hackage-updater
- guix-package->hackage-name
hackage-name->package-name
hackage-fetch
hackage-source-url
@@ -126,17 +125,6 @@ version is returned."
(string-downcase name)
(string-append package-name-prefix (string-downcase name))))
-(define guix-package->hackage-name
- (let ((uri-rx (make-regexp
"(https?://hackage.haskell.org|mirror://hackage)/package/([^/]+)/.*"))
- (name-rx (make-regexp "(.*)-[0-9\\.]+")))
- (lambda (package)
- "Given a Guix package name, return the corresponding Hackage name."
- (let* ((source-url (and=> (package-source package) origin-uri))
- (name (match:substring (regexp-exec uri-rx source-url) 2)))
- (match (regexp-exec name-rx name)
- (#f name)
- (m (match:substring m 1)))))))
-
(define (read-cabal-and-hash port)
"Read a Cabal file from PORT and return it and its hash in nix-base32
format as two values."
@@ -371,7 +359,7 @@ respectively."
(formatted-message
(G_ "~a updater doesn't support updating to a specific version, sorry.")
"hackage")))
- (let* ((hackage-name (guix-package->hackage-name package))
+ (let* ((hackage-name (package-upstream-name* package))
(cabal-meta (hackage-fetch hackage-name)))
(match cabal-meta
(#f
diff --git a/guix/import/stackage.scm b/guix/import/stackage.scm
index 9462e70791..735eeb75f7 100644
--- a/guix/import/stackage.scm
+++ b/guix/import/stackage.scm
@@ -149,7 +149,7 @@ PACKAGE or #f if the package is not included in the
Stackage LTS release."
(formatted-message
(G_ "~a updater doesn't support updating to a specific version,
sorry.")
"stackage")))
- (let* ((hackage-name (guix-package->hackage-name pkg))
+ (let* ((hackage-name (package-upstream-name* pkg))
(version (lts-package-version (packages) hackage-name))
(name-version (hackage-name-version hackage-name version)))
(match (and=> name-version hackage-fetch)
@@ -173,7 +173,7 @@ PACKAGE or #f if the package is not included in the
Stackage LTS release."
(false-if-networking-error
(let ((packages (stackage-lts-packages
(stackage-lts-info-fetch %default-lts-version)))
- (hackage-name (guix-package->hackage-name package)))
+ (hackage-name (package-upstream-name* package)))
(find (lambda (package)
(string=? (stackage-package-name package) hackage-name))
packages)))))
- branch wip-haskell created (now 6eb6c08706), guix-commits, 2023/01/21
- 03/13: build: haskell-build-system: Support multiple libraries., guix-commits, 2023/01/21
- 04/13: gnu: Switch default to GHC 9.2., guix-commits, 2023/01/21
- 06/13: import: hackage: Add upstream-name property., guix-commits, 2023/01/21
- 08/13: import: hackage: Use upstream-name property.,
guix-commits <=
- 10/13: import: haskell: Add new internal library for GHC 9.2., guix-commits, 2023/01/21
- 01/13: import: hackage: Allow version at the beginning of cabal file., guix-commits, 2023/01/21
- 12/13: build: haskell-build-system: Remove unused linker flags., guix-commits, 2023/01/21
- 02/13: build: haskell-build-system: Remove trailing #t., guix-commits, 2023/01/21
- 05/13: import: stackage: Update to release 20.5., guix-commits, 2023/01/21
- 07/13: gnu: Add upstream-name property to Haskell packages., guix-commits, 2023/01/21
- 09/13: gnu: Use HACKAGE-URI for packages from Hackage., guix-commits, 2023/01/21
- 13/13: Upgrade Haskell packages., guix-commits, 2023/01/21
- 11/13: build: haskell-build-system: Process all transitive dependencies., guix-commits, 2023/01/21