[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/09: gnu: b4: Update to 0.13.0.
From: |
guix-commits |
Subject: |
02/09: gnu: b4: Update to 0.13.0. |
Date: |
Fri, 1 Mar 2024 01:19:17 -0500 (EST) |
hako pushed a commit to branch master
in repository guix.
commit 2d861fd8f0cbe5e615f296b9439103cfb395b7db
Author: Hilton Chain <hako@ultrarare.space>
AuthorDate: Sun Feb 25 01:31:36 2024 +0800
gnu: b4: Update to 0.13.0.
* gnu/packages/version-control.scm (b4): Update to 0.13.0.
[source]: Switch to git source for tests.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Enable.
[propagated-inputs]: Move patatt to…
[inputs]: …here. Add git-filter-repo.
[native-inputs]: Add python-pytest.
Change-Id: I2b24db0f72fc180ea6b12a5829d79ad0be7719a5
---
gnu/packages/version-control.scm | 28 +++++++++++++++++++---------
1 file changed, 19 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 084346f5b6..cbdd1a89a2 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -83,6 +83,7 @@
#:use-module (guix build-system gnu)
#:use-module (guix build-system go)
#:use-module (guix build-system perl)
+ #:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module (guix build-system qt)
#:use-module (guix build-system trivial)
@@ -2921,16 +2922,20 @@ email header.")
(define-public b4
(package
(name "b4")
- (version "0.12.3")
+ (version "0.13.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "b4" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.kernel.org/pub/scm/utils/b4/b4.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0qpa0ahw1d86mdgs09ykq5pd0lm8083ds6j0knalw757yh31akmn"))))
- (build-system python-build-system)
+ (base32
+ "1dijszinn00r6d0lxii3jz36h2c23zavbgz1m8finp5v6kaiafcg"))))
+ (build-system pyproject-build-system)
(arguments
- (list #:tests? #f ;no tests
+ (list #:tests? (not (%current-target-system)) ;git path hardcoded.
#:phases
#~(modify-phases %standard-phases
;; XXX: dnspython attempts to read /etc/resolv.conf when loading
@@ -2945,9 +2950,14 @@ email header.")
(string-append
"['" (search-input-file inputs "bin/git") "'"))))))))
(inputs
- (list git-minimal python-dkimpy python-dnspython python-requests))
- (propagated-inputs
- (list patatt))
+ (list git-filter-repo
+ git-minimal
+ patatt
+ python-dkimpy
+ python-dnspython
+ python-requests))
+ (native-inputs
+ (list python-pytest))
(home-page "https://git.kernel.org/pub/scm/utils/b4/b4.git")
(synopsis "Tool for working with patches in public-inbox archives")
(description
- branch master updated (956f44b931 -> 9a47afb3de), guix-commits, 2024/03/01
- 04/09: gnu: reproc: Enable reproc++., guix-commits, 2024/03/01
- 01/09: gnu: qtwayland: Add search path for QT_PLUGIN_PATH., guix-commits, 2024/03/01
- 06/09: gnu: gmid: Update to 2.0.1., guix-commits, 2024/03/01
- 08/09: gnu: go-github-com-signintech-gopdf: Update to 0.22.1., guix-commits, 2024/03/01
- 09/09: gnu: go-github-com-signintech-gopdf: Remove examples., guix-commits, 2024/03/01
- 02/09: gnu: b4: Update to 0.13.0.,
guix-commits <=
- 03/09: gnu: pipewire: Update to 1.0.3., guix-commits, 2024/03/01
- 05/09: gnu: reproc: Improve package style., guix-commits, 2024/03/01
- 07/09: gnu: cage: Fix cross-compilation., guix-commits, 2024/03/01