GNU bug report logs -
#67874
[PATCH] gnu: distrobox: Update to 1.6.0.1.
Previous Next
Reported by: Csepp <raingloom <at> riseup.net>
Date: Mon, 18 Dec 2023 01:50:02 UTC
Severity: normal
Tags: patch
Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Wed, 24 Jul 2024 20:43:51 +0100
with message-id <87frryo9s8.fsf <at> gmail.com>
and subject line [PATCH] gnu: distrobox: Update to 1.6.0.1.
has caused the debbugs.gnu.org bug report #67874,
regarding [PATCH] gnu: distrobox: Update to 1.6.0.1.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
67874: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67874
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/containers.scm (distrobox): Update to 1.6.0.1.
Change-Id: I9f0e5f6bc3ba29918b10e8790a5a9da098c73285
---
Also the package actually works now.
gnu/packages/containers.scm | 35 ++++++++++++++++++++++-------------
1 file changed, 22 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/containers.scm b/gnu/packages/containers.scm
index a3aa9ac1db..ac9de070de 100644
--- a/gnu/packages/containers.scm
+++ b/gnu/packages/containers.scm
@@ -42,6 +42,7 @@ (define-module (gnu packages containers)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages golang)
+ #:use-module (gnu packages guile)
#:use-module (gnu packages linux)
#:use-module (gnu packages python)
#:use-module (gnu packages networking)
@@ -160,7 +161,7 @@ (define-public conmon
(define-public distrobox
(package
(name "distrobox")
- (version "1.5.0.2")
+ (version "1.6.0.1")
(source
(origin
(method git-fetch)
@@ -168,23 +169,31 @@ (define-public distrobox
(url "https://github.com/89luca89/distrobox")
(commit version)))
(sha256
- (base32 "0h6rpgbcmg33vriyzh9nkdxj8yhfn0y35i1wh1zmb7zss3ik9kxj"))
+ (base32 "0kj02phzikz9rddcx2apq3a8zwwfaawc3sfkd4q7f85lpnjxfsji"))
(file-name (git-file-name name version))))
(build-system copy-build-system)
(inputs
(list podman wget))
(arguments
- (list #:phases
- #~(modify-phases %standard-phases
- (add-before 'install 'refer-to-inputs
- (lambda* (#:key inputs #:allow-other-keys)
- (substitute* (find-files "." "^distrobox[^.]*[^1]$")
- (("podman") (search-input-file inputs "/bin/podman"))
- (("wget") (search-input-file inputs "/bin/wget"))
- (("command -v") "test -x"))))
- (replace 'install
- (lambda _
- (invoke "./install" "--prefix" #$output))))))
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'wrap-scripts
+ (lambda _
+ (let ((path (search-path-as-list
+ '("bin")
+ (map cadr
+ '#$(package-inputs this-package))))
+ (guile #$(file-append guile-3.0 "/bin/guile")))
+ (for-each
+ (lambda (file)
+ (wrap-script file
+ #:guile guile
+ `("PATH" ":" prefix
+ ,path)))
+ (find-files (string-append #$output "/bin")))))))
+ #:install-plan ''(("./" "bin/" #:include-regexp ("\\./distrobox[^/]*$"))
+ ("completions/" "share/bash-completion/completions/"))))
(home-page "https://distrobox.privatedns.org/")
(synopsis "Create and start containers highly integrated with the hosts")
(description
base-commit: fe86819d8bde674766659c22b215d3a689a8026e
--
2.41.0
[Message part 3 (message/rfc822, inline)]
[Message part 4 (application/pgp-encrypted, inline)]
[Message part 5 (application/octet-stream, inline)]
This bug report was last modified 330 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.