[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/09: gnu: sssd: Import ensure-no-mtimes-pre-1980.
From: |
guix-commits |
Subject: |
04/09: gnu: sssd: Import ensure-no-mtimes-pre-1980. |
Date: |
Fri, 16 Feb 2024 07:27:15 -0500 (EST) |
lbraun pushed a commit to branch python-team
in repository guix.
commit ffa36037c05d7494cf4bc39f204962e981f45365
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Sat May 13 16:20:23 2023 +0200
gnu: sssd: Import ensure-no-mtimes-pre-1980.
* gnu/packages/sssd.scm (sssd)[arguments]: Add
python-build-system to #:modules and #:imported modules instead of using
@@ reference.
Change-Id: Id5217e4872a62323691b8976030a1768a6885942
---
gnu/packages/sssd.scm | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/sssd.scm b/gnu/packages/sssd.scm
index f0ca932e65..db52dc5912 100644
--- a/gnu/packages/sssd.scm
+++ b/gnu/packages/sssd.scm
@@ -31,6 +31,7 @@
#:use-module (guix utils)
#:use-module (guix build utils)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system python)
#:use-module (gnu packages)
#:use-module (gnu packages)
#:use-module (gnu packages adns)
@@ -186,10 +187,16 @@ fundamental object types for C.")
(string-append "--with-xml-catalog-path="
#$(this-package-native-input "docbook-xml")
"/xml/dtd/docbook/catalog.xml"))
+ #:modules '((guix build gnu-build-system)
+ (guix build utils)
+ ((guix build python-build-system)
+ #:select (ensure-no-mtimes-pre-1980)))
+ #:imported-modules (append %gnu-build-system-modules
+ %python-build-system-modules)
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'ensure-no-mtimes-pre-1980
- (@@ (guix build python-build-system) ensure-no-mtimes-pre-1980))
+ ensure-no-mtimes-pre-1980)
(add-after 'patch-source-shebangs 'patch-more-shebangs
(lambda _
(substitute* '("src/tools/analyzer/sss_analyze"
- branch python-team updated (26aee3be22 -> 6831dfc58b), guix-commits, 2024/02/16
- 02/09: build-system/python: Ignore symlinks when changing mtime., guix-commits, 2024/02/16
- 04/09: gnu: sssd: Import ensure-no-mtimes-pre-1980.,
guix-commits <=
- 01/09: build-system/pyproject: Use python-sans-pip-wrapper as default-python., guix-commits, 2024/02/16
- 03/09: gnu: criu: Remove temporary workaround., guix-commits, 2024/02/16
- 05/09: guix: toml: Add TOML parser., guix-commits, 2024/02/16
- 06/09: build-system/pyproject: Use TOML parser., guix-commits, 2024/02/16
- 07/09: gnu: python-pytest-xdist: Disable failing test., guix-commits, 2024/02/16
- 08/09: guix: pyproject-build-system: Default configure-flags to empty dictionary., guix-commits, 2024/02/16
- 09/09: doc: Document new options for pyproject-build-system., guix-commits, 2024/02/16