[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/361: build-system/python: Ignore symlinks when changing mtime.
From: |
guix-commits |
Subject: |
06/361: build-system/python: Ignore symlinks when changing mtime. |
Date: |
Thu, 21 Nov 2024 06:28:36 -0500 (EST) |
sharlatan pushed a commit to branch python-team
in repository guix.
commit 39bf7d5c226191b0f5a16ce46aa1fd9f9f4c7d80
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 03305c465d), guix-commits, 2024/11/21
- 04/361: gnu: python-sphinx: Update to 5.3.0., guix-commits, 2024/11/21
- 01/361: gnu: python-pygments: Update to 2.15.1., guix-commits, 2024/11/21
- 03/361: gnu: python-sphinx-alabaster-theme: Update to 0.7.13., guix-commits, 2024/11/21
- 05/361: build-system/pyproject: Use python-sans-pip-wrapper as default-python., guix-commits, 2024/11/21
- 15/361: gnu: Add missing import., guix-commits, 2024/11/21
- 12/361: guix: pyproject-build-system: Default configure-flags to empty dictionary., guix-commits, 2024/11/21
- 19/361: gnu: Add setuptools/wheel to more Python packages., guix-commits, 2024/11/21
- 18/361: gnu: python-typing-extensions: Update to 4.10.0., guix-commits, 2024/11/21
- 02/361: gnu: python-imagesize: Update to 1.4.1., guix-commits, 2024/11/21
- 06/361: build-system/python: Ignore symlinks when changing mtime.,
guix-commits <=
- 09/361: guix: toml: Add TOML parser., guix-commits, 2024/11/21
- 16/361: gnu: Add missing import (again)., guix-commits, 2024/11/21
- 21/361: gnu: python-markdown-it-py: Update to 3.0.0., guix-commits, 2024/11/21
- 22/361: gnu: python-mdit-py-plugins: Update to 0.4.0., guix-commits, 2024/11/21
- 24/361: gnu: python-jupytext: Update to 1.15.0., guix-commits, 2024/11/21
- 25/361: gnu: python-textual: Update to 0.50.1., guix-commits, 2024/11/21
- 35/361: gnu: python-packaging-bootstrap: Update to 23.2., guix-commits, 2024/11/21
- 40/361: gnu: java-testng: Disable one test., guix-commits, 2024/11/21
- 11/361: gnu: python-pytest-xdist: Disable failing test., guix-commits, 2024/11/21
- 13/361: doc: Document new options for pyproject-build-system., guix-commits, 2024/11/21