[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/18: build-system/python: Ignore symlinks when changing mtime.
From: |
guix-commits |
Subject: |
06/18: build-system/python: Ignore symlinks when changing mtime. |
Date: |
Mon, 26 Feb 2024 15:43:22 -0500 (EST) |
rekado pushed a commit to branch python-team
in repository guix.
commit 891980a19576baa0bc14a109e7cccb559ffa2ba8
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Sat May 13 15:31:06 2023 +0200
build-system/python: Ignore symlinks when changing mtime.
* guix/build/python-build-system.scm (ensure-no-mtimes-pre-1980): Ignore
'symlink.
---
guix/build/python-build-system.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/guix/build/python-build-system.scm
b/guix/build/python-build-system.scm
index aa04664b25..8e18d6d0df 100644
--- a/guix/build/python-build-system.scm
+++ b/guix/build/python-build-system.scm
@@ -37,6 +37,7 @@
#:use-module (srfi srfi-26)
#:export (%standard-phases
add-installed-pythonpath
+ ensure-no-mtimes-pre-1980
site-packages
python-version
python-build))
@@ -270,7 +271,8 @@ installed with setuptools."
;; timestamps before 1980.
(let ((early-1980 315619200)) ; 1980-01-02 UTC
(ftw "." (lambda (file stat flag)
- (unless (<= early-1980 (stat:mtime stat))
+ (unless (or (<= early-1980 (stat:mtime stat))
+ (eq? (stat:type stat) 'symlink))
(utime file early-1980 early-1980))
#t))))
- branch python-team created (now f9bbdb99cb), guix-commits, 2024/02/26
- 01/18: gnu: python-pygments: Update to 2.15.1., guix-commits, 2024/02/26
- 03/18: gnu: python-sphinx-alabaster-theme: Update to 0.7.13., guix-commits, 2024/02/26
- 06/18: build-system/python: Ignore symlinks when changing mtime.,
guix-commits <=
- 02/18: gnu: python-imagesize: Update to 1.4.1., guix-commits, 2024/02/26
- 07/18: gnu: criu: Remove temporary workaround., guix-commits, 2024/02/26
- 09/18: guix: toml: Add TOML parser., guix-commits, 2024/02/26
- 10/18: build-system/pyproject: Use TOML parser., guix-commits, 2024/02/26
- 11/18: gnu: python-pytest-xdist: Disable failing test., guix-commits, 2024/02/26
- 08/18: gnu: sssd: Import ensure-no-mtimes-pre-1980., guix-commits, 2024/02/26
- 04/18: gnu: python-sphinx: Update to 5.3.0., guix-commits, 2024/02/26
- 05/18: build-system/pyproject: Use python-sans-pip-wrapper as default-python., guix-commits, 2024/02/26
- 12/18: guix: pyproject-build-system: Default configure-flags to empty dictionary., guix-commits, 2024/02/26
- 15/18: gnu: Add missing import., guix-commits, 2024/02/26