GNU bug report logs -
#72350
[PATCH] gnu: skopeo: Update to 1.16.0.
Previous Next
Reported by: Tomas Volf <~@wolfsden.cz>
Date: Mon, 29 Jul 2024 09:45:01 UTC
Severity: normal
Tags: patch
Done: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 72350 in the body.
You can then email your comments to 72350 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#72350
; Package
guix-patches
.
(Mon, 29 Jul 2024 09:45:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Tomas Volf <~@wolfsden.cz>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Mon, 29 Jul 2024 09:45:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/virtualization.scm (skopeo): Update to 1.16.0.
[arguments]<#:phases>: Delete the `cc-to-gcc' phase.
Change-Id: I35a91219c3c920f37f496df6322ae1e40fa1ccc3
---
gnu/packages/virtualization.scm | 19 ++-----------------
1 file changed, 2 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index 061748bb4a..6932086b0d 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -2321,7 +2321,7 @@ (define-public umoci
(define-public skopeo
(package
(name "skopeo")
- (version "1.15.2")
+ (version "1.16.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -2330,7 +2330,7 @@ (define-public skopeo
(file-name (git-file-name name version))
(sha256
(base32
- "13y1fmv78hh5ycm7xlsg851y17s223q13b9srksnq6jcwgprqkm8"))))
+ "1vjhi4xvb3vdz9nm627bymih9nil1xm4m5zcmx088d76dnqm3l1k"))))
(build-system gnu-build-system)
(native-inputs
(list go-1.21
@@ -2370,22 +2370,7 @@ (define-public skopeo
;; Required for detecting btrfs in hack/btrfs* due to bug in GNU
;; Make <4.4 causing CC not to be propagated into $(shell ...)
;; calls. Can be removed once we update to >4.3.
- ;;
- ;; This techically does nothing *now*, but after upstream
- ;; issue[1] is solved and 'cc-to-gcc phase is removed, it will
- ;; start being required.
- ;; 1: https://github.com/containers/skopeo/issues/2278
(setenv "CC" #$(cc-for-target))))
- (add-after 'unpack 'cc-to-gcc
- (lambda _
- (for-each (lambda (file)
- (substitute* file
- (("^cc( -.*)" all rest)
- (string-append "\"$CC\"" rest))))
- '("hack/btrfs_tag.sh"
- "hack/btrfs_installed_tag.sh"
- "hack/libdm_tag.sh"
- "hack/libsubid_tag.sh"))))
(add-after 'install 'wrap-skopeo
(lambda _
(wrap-program (string-append #$output "/bin/skopeo")
base-commit: b45cfc2fac5a0a368f16b7f049a0a4ff3bfb2421
--
2.45.2
Reply sent
to
Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
:
You have taken responsibility.
(Tue, 30 Jul 2024 09:10:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Tomas Volf <~@wolfsden.cz>
:
bug acknowledged by developer.
(Tue, 30 Jul 2024 09:10:03 GMT)
Full text and
rfc822 format available.
Message #10 received at 72350-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Tomas Volf <~@wolfsden.cz> writes:
> * gnu/packages/virtualization.scm (skopeo): Update to 1.16.0.
> [arguments]<#:phases>: Delete the `cc-to-gcc' phase.
>
> Change-Id: I35a91219c3c920f37f496df6322ae1e40fa1ccc3
> ---
> gnu/packages/virtualization.scm | 19 ++-----------------
> 1 file changed, 2 insertions(+), 17 deletions(-)
>
> diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
> index 061748bb4a..6932086b0d 100644
> --- a/gnu/packages/virtualization.scm
> +++ b/gnu/packages/virtualization.scm
> @@ -2321,7 +2321,7 @@ (define-public umoci
> (define-public skopeo
> (package
> (name "skopeo")
> - (version "1.15.2")
> + (version "1.16.0")
> (source (origin
> (method git-fetch)
> (uri (git-reference
> @@ -2330,7 +2330,7 @@ (define-public skopeo
> (file-name (git-file-name name version))
> (sha256
> (base32
> - "13y1fmv78hh5ycm7xlsg851y17s223q13b9srksnq6jcwgprqkm8"))))
> + "1vjhi4xvb3vdz9nm627bymih9nil1xm4m5zcmx088d76dnqm3l1k"))))
> (build-system gnu-build-system)
> (native-inputs
> (list go-1.21
> @@ -2370,22 +2370,7 @@ (define-public skopeo
> ;; Required for detecting btrfs in hack/btrfs* due to bug in GNU
> ;; Make <4.4 causing CC not to be propagated into $(shell ...)
> ;; calls. Can be removed once we update to >4.3.
> - ;;
> - ;; This techically does nothing *now*, but after upstream
> - ;; issue[1] is solved and 'cc-to-gcc phase is removed, it will
> - ;; start being required.
> - ;; 1: https://github.com/containers/skopeo/issues/2278
> (setenv "CC" #$(cc-for-target))))
> - (add-after 'unpack 'cc-to-gcc
> - (lambda _
> - (for-each (lambda (file)
> - (substitute* file
> - (("^cc( -.*)" all rest)
> - (string-append "\"$CC\"" rest))))
> - '("hack/btrfs_tag.sh"
> - "hack/btrfs_installed_tag.sh"
> - "hack/libdm_tag.sh"
> - "hack/libsubid_tag.sh"))))
> (add-after 'install 'wrap-skopeo
> (lambda _
> (wrap-program (string-append #$output "/bin/skopeo")
>
> base-commit: b45cfc2fac5a0a368f16b7f049a0a4ff3bfb2421
push, close.
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 27 Aug 2024 11:24:08 GMT)
Full text and
rfc822 format available.
This bug report was last modified 291 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.