unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#63149] [PATCH] gnu: criu: Fix build
@ 2023-04-28 14:04 Brian Cully via Guix-patches via
  2023-04-28 14:05 ` Brian Cully via Guix-patches via
  2023-05-12 22:36 ` [bug#63149] [PATCH v2] " Brian Cully via Guix-patches via
  0 siblings, 2 replies; 5+ messages in thread
From: Brian Cully via Guix-patches via @ 2023-04-28 14:04 UTC (permalink / raw)
  To: 63149; +Cc: Brian Cully

Use python-toolchain explicitly in order to pull in our patched ZipFile
creation which ignores timestamp.

* gnu/packages/virtualization.scm (criu) [native-inputs]: Add python-toolchain.
---
 gnu/packages/virtualization.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index 4a0d6b0096..d9fc8108dc 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -1748,7 +1748,6 @@ (define-public criu
                (for-each delete-file (find-files out "\\.a$"))))))))
     (inputs
      `(("protobuf" ,protobuf)
-       ("python" ,python)
        ("python-protobuf" ,python-protobuf)
        ("iproute" ,iproute)
        ("libaio" ,libaio)
@@ -1763,7 +1762,8 @@ (define-public criu
            asciidoc
            xmlto
            docbook-xml
-           docbook-xsl))
+           docbook-xsl
+           python-toolchain))
     (propagated-inputs
      ;; included by 'rpc.pb-c.h'
      (list protobuf-c))
-- 
2.39.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#63149] [PATCH] gnu: criu: Fix build
  2023-04-28 14:04 [bug#63149] [PATCH] gnu: criu: Fix build Brian Cully via Guix-patches via
@ 2023-04-28 14:05 ` Brian Cully via Guix-patches via
  2023-05-12 22:36 ` [bug#63149] [PATCH v2] " Brian Cully via Guix-patches via
  1 sibling, 0 replies; 5+ messages in thread
From: Brian Cully via Guix-patches via @ 2023-04-28 14:05 UTC (permalink / raw)
  To: Brian Cully; +Cc: 63149


Note that the complete fix for criu requires patch #63044, or 
something similar to fix the ZipFile issue.

-bjc




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#63149] [PATCH v2] gnu: criu: Fix build
  2023-04-28 14:04 [bug#63149] [PATCH] gnu: criu: Fix build Brian Cully via Guix-patches via
  2023-04-28 14:05 ` Brian Cully via Guix-patches via
@ 2023-05-12 22:36 ` Brian Cully via Guix-patches via
  2023-05-12 23:00   ` [bug#63149] [PATCH] " Brian Cully via Guix-patches via
  2023-05-19 14:02   ` bug#63149: " Ludovic Courtès
  1 sibling, 2 replies; 5+ messages in thread
From: Brian Cully via Guix-patches via @ 2023-05-12 22:36 UTC (permalink / raw)
  To: 63149; +Cc: Brian Cully

Ensure all files being built are dated no earlier than 1980 by copying in a
modified (@@ (guix build python-build-system) ensure-no-mtimes-pre-1980) which
is symlink-aware. This copy should be removed when the original procedure is
modified to avoid calling UTIME on symlinks.

* gnu/packages/virtualization.scm (criu) [ensure-no-mtimes-pre-1980]: new
phase.
* gnu/packages/virtualization.scm (criu) [inputs]: Remove python.
* gnu/packages/virtualization.scm (criu) [native-inputs]: Add
python-toolchain.
---
 gnu/packages/virtualization.scm | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index 4a0d6b0096..c88fd31146 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -1697,6 +1697,8 @@ (define-public criu
              (string-append "XMLTO="
                             (search-input-file %build-inputs
                                                "/bin/xmlto")))
+       #:modules ((ice-9 ftw)
+                  ,@%gnu-build-system-modules)
        #:phases
        (modify-phases %standard-phases
          (delete 'configure)            ; no configure script
@@ -1719,6 +1721,17 @@ (define-public criu
              (substitute* "criu/include/plugin.h"
                (("/var") (string-append (assoc-ref outputs "out"))))
              ))
+         ;; TODO: use
+         ;; (@@ (guix build python-build-system) ensure-no-mtimes-pre-1980)
+         ;; when it no longer throws due to trying to call UTIME on symlinks.
+         (add-after 'unpack 'ensure-no-mtimes-pre-1980
+           (lambda _
+             (let ((early-1980 315619200))  ; 1980-01-02 UTC
+               (ftw "." (lambda (file stat flag)
+                          (unless (or (<= early-1980 (stat:mtime stat))
+                                      (eq? (stat:type stat) 'symlink))
+                            (utime file early-1980 early-1980))
+                          #t)))))
          (add-before 'build 'fix-symlink
            (lambda* (#:key inputs #:allow-other-keys)
              ;; The file 'images/google/protobuf/descriptor.proto' points to
@@ -1748,7 +1761,6 @@ (define-public criu
                (for-each delete-file (find-files out "\\.a$"))))))))
     (inputs
      `(("protobuf" ,protobuf)
-       ("python" ,python)
        ("python-protobuf" ,python-protobuf)
        ("iproute" ,iproute)
        ("libaio" ,libaio)
@@ -1763,7 +1775,8 @@ (define-public criu
            asciidoc
            xmlto
            docbook-xml
-           docbook-xsl))
+           docbook-xsl
+           python-toolchain))
     (propagated-inputs
      ;; included by 'rpc.pb-c.h'
      (list protobuf-c))

base-commit: b363fab46f5af42b3f653e2fee1834477bd5aacd
prerequisite-patch-id: 8a03c5e8bcd4c526b93c558d550725887f932e41
prerequisite-patch-id: 89400c29b4c30dfbe8492aff1751ca583397b4f0
prerequisite-patch-id: a1963f772e753239b80e6a7b0d9f55e0ab4d662b
-- 
2.40.1





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#63149] [PATCH] gnu: criu: Fix build
  2023-05-12 22:36 ` [bug#63149] [PATCH v2] " Brian Cully via Guix-patches via
@ 2023-05-12 23:00   ` Brian Cully via Guix-patches via
  2023-05-19 14:02   ` bug#63149: " Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: Brian Cully via Guix-patches via @ 2023-05-12 23:00 UTC (permalink / raw)
  To: 63149


I've decided to just patch the mtime conversion directly into criu,
rather than trying to factor it out. This is mainly because the original
version of ‘ensure-no-mtimes-pre-1980’ throws an error when it attempts
to change timestamps of symlinks. Ideally, that will be fixed someday,
but that will cause huge downstream changes.

In the mean-time, we can use this, and delete it after fixing
‘ensure-no-mtimes-pre-1980’.

-bjc




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#63149: [PATCH] gnu: criu: Fix build
  2023-05-12 22:36 ` [bug#63149] [PATCH v2] " Brian Cully via Guix-patches via
  2023-05-12 23:00   ` [bug#63149] [PATCH] " Brian Cully via Guix-patches via
@ 2023-05-19 14:02   ` Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2023-05-19 14:02 UTC (permalink / raw)
  To: Brian Cully; +Cc: 63149-done

Hi,

Brian Cully <bjc@spork.org> skribis:

> Ensure all files being built are dated no earlier than 1980 by copying in a
> modified (@@ (guix build python-build-system) ensure-no-mtimes-pre-1980) which
> is symlink-aware. This copy should be removed when the original procedure is
> modified to avoid calling UTIME on symlinks.
>
> * gnu/packages/virtualization.scm (criu) [ensure-no-mtimes-pre-1980]: new
> phase.
> * gnu/packages/virtualization.scm (criu) [inputs]: Remove python.
> * gnu/packages/virtualization.scm (criu) [native-inputs]: Add
> python-toolchain.

Tweaked the commit log and applied.

Thank you, and apologies for the delay!

Ludo’.




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-05-19 14:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-28 14:04 [bug#63149] [PATCH] gnu: criu: Fix build Brian Cully via Guix-patches via
2023-04-28 14:05 ` Brian Cully via Guix-patches via
2023-05-12 22:36 ` [bug#63149] [PATCH v2] " Brian Cully via Guix-patches via
2023-05-12 23:00   ` [bug#63149] [PATCH] " Brian Cully via Guix-patches via
2023-05-19 14:02   ` bug#63149: " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).