Forwarded here: https://lists.gnu.org/archive/html/jami/2024-01/msg00003.html From 20a1702d881b381979d31c456f1b8cf5e0f728ad Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 7 Jan 2024 16:40:41 -0500 Subject: [PATCH] configure.ac: Expand AC_CONFIG_FILES to fix a race. The commands apparently run for each file listed, or something similar, leading to: configure: creating ./config.status config.status: creating test/agent/Makefile chmod: cannot access 'test/agent/pre-inst-env': No such file or directory chmod: cannot access 'test/agent/scenarios/bulk-calls/run-scenario': No such file or directory config.status: creating test/agent/pre-inst-env chmod: cannot access 'test/agent/scenarios/bulk-calls/run-scenario': No such file or directory * configure.ac [ENABLE_AGENT]: Separate AC_CONFIG_FILES uses per file. Series-to: jami@gnu.org Series-postfix: daemon Change-Id: Ib283955b73540248e09bf31ef44ef3d178b216fa --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index cdea5ff1c..2ab96d817 100644 --- a/configure.ac +++ b/configure.ac @@ -61,11 +61,11 @@ AC_ARG_ENABLE([agent], [Build agent])) AM_CONDITIONAL([ENABLE_AGENT], [test "x$enable_agent" = "xyes"]) AM_COND_IF([ENABLE_AGENT], - [AC_CONFIG_FILES([test/agent/Makefile - test/agent/pre-inst-env:test/agent/build-aux/pre-inst-env.in - test/agent/scenarios/bulk-calls/run-scenario], - [chmod +x test/agent/pre-inst-env - chmod +x test/agent/scenarios/bulk-calls/run-scenario])]) + [AC_CONFIG_FILES([test/agent/Makefile]) + AC_CONFIG_FILES([test/agent/pre-inst-env:test/agent/build-aux/pre-inst-env.in], + [chmod +x test/agent/pre-inst-env]) + AC_CONFIG_FILES([test/agent/scenarios/bulk-calls/run-scenario], + [chmod +x test/agent/scenarios/bulk-calls/run-scenario])]) AC_ARG_ENABLE([tracepoints], AS_HELP_STRING([--enable-tracepoints], [Enable tracepoints])) base-commit: e246fb2e090c9b3de55e2d455eee5a6f05a5b286 -- 2.41.0 b40fd901efe1675e5602bb393734b51&showmsg=1'>root/gnu/packages/python.scm
AgeCommit message (Collapse)Author
2024-08-31gnu: python-3.10: Ungraft removing bundled cacert.pem.Josselin Poiret
* gnu/packages/python.scm (python-3.10): Rename phase "remove-windows-binaries" to "remove-vendored-wheel-content", and use it to also remove "cacert.pem". Ungraft. (python-3.10/fixed): Remove variable. Change-Id: I0a1a5c7f597ef6e14ea165ccded9aa473c6d9122
2024-08-31gnu: python: Add libxcrypt dependency.Josselin Poiret
* gnu/packages/python.scm (python-2.7): Add libxcrypt dependency. Change-Id: I23d99900fd6bbd2f9a88a3efe0c8deac01ef160f
2024-08-31gnu: python: Make the build reproducible.Tomas Volf
While Python build was reproducible on a single machine, once multiple file systems entered the picture, it was no longer true. The solution adopted by the upstream (and Debian) was cherry-picked. More info: <https://github.com/python/cpython/pull/8226>. * gnu/packages/python.scm (python-3.10) [source]: Apply reproducibility patch. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I0273dc0f8511a7acdcc2b462a26cc29a9756c801
2024-04-26gnu: python-3.12: Enable loadable sqlite extensions.Felix Gruber
This change makes it possible to load sqlite extensions with import sqlite3 con = sqlite3.connect(":memory:") con.enable_load_extension(True) con.load_extension(path_to_extension) * gnu/packages/python.scm (python-3.12)[arguments]: Add --enable-loadable-sqlite-extensions to configure-flags. Change-Id: I4fb0a5482c96a12a71c88bc48fffc4c3abe78544 Signed-off-by: Lars-Dominik Braun <lars@6xq.net>
2024-04-07gnu: python: Use system SSL certificates.Efraim Flashner
* gnu/packages/python.scm (python)[replacement]: New field. (python/fixed): Provide a python with a patched python-certifi which only offers to use the system's SSL certificates. Change-Id: Ic5bcfb6b32282a7e0628232b1dc4cd60f3f2da52
2024-03-10gnu: python-next: Skip another test.Efraim Flashner
* gnu/packages/python.scm (python-next)[arguments]: Skip another test which fails on slow machines. Change-Id: I777aa346c674604a22dc0be0b319f5df02e0ab3b
2024-03-09gnu: Add python-3.12 and python-next.Tanguy Le Carrour
* gnu/packages/python.scm (python-3.12, python-next): New variables. * gnu/packages/patches/python-3.12-fix-tests.patch: New file. Change-Id: Ie393b732a8863569578e72e62603b75a1655a34e Signed-off-by: Tanguy Le Carrour <tanguy@bioneland.org> Signed-off-by: Lars-Dominik Braun <lars@6xq.net>