unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#70494] [PATCH 00/23] Groundwork for the Guile guix-daemon
@ 2024-04-21  9:35 Christopher Baines
  2024-04-21  9:42 ` [bug#70494] [PATCH 01/23] store: database: Register derivation outputs Christopher Baines
                   ` (22 more replies)
  0 siblings, 23 replies; 45+ messages in thread
From: Christopher Baines @ 2024-04-21  9:35 UTC (permalink / raw)
  To: 70494

[-- Attachment #1: Type: text/plain, Size: 2829 bytes --]

Here's another series of patches working towards being able to have a
Guile guix-daemon.

Most importantly I've taken what I think are the key changes from the
guile-daemon branch, and tweaked them based on my current thinking for
how to structure the code.

Additionally, there are some further changes to move functionality
(download-nar) out of the substitute script and in to the module. This
allows the Guile guix-daemon to work with substitutes directly, rather
than spawning the substitute script.

Also included are some smaller store changes, exporting some existing
things, adding a few new procedures and tweaking the database code.


Caleb Ristvedt (5):
  store: database: Register derivation outputs.
  gnu: linux-container: Make it more suitable for derivation-building.
  syscalls: Add missing pieces for derivation build environment.
  guix: store: environment: New module.
  store: build-derivations: New module.

Christopher Baines (18):
  store: Export protocol related constants.
  serialization: Export read-byte-string.
  store: Add text-output-path and text-output-path-from-hash.
  store: Add validate-store-name.
  store: database: Add procedures for querying valid paths.
  scripts: substitute: Untangle selecting fast vs small compressions.
  scripts: substitute: Extract script specific output from download-nar.
  syscalls: Add unshare.
  scripts: perform-download: Support configuring the %store-prefix.
  store: Export operation-id.
  store: database: Log when aborting transactions.
  store: database: Export transaction helpers.
  guix: http-client: Add network-error?.
  http-client: Include EPIPE in network-error?.
  scripts: substitute: Simplify with-timeout usage.
  scripts: substitute: Don't enforce cached connections in download-nar.
  substitutes: Move download-nar from substitutes script to here.
  substitutes: Add #:keep-alive? keyword argument to download-nar.

 Makefile.am                       |   4 +-
 gnu/build/linux-container.scm     |   9 +-
 guix/build/syscalls.scm           |  60 +++-
 guix/http-client.scm              |  23 ++
 guix/scripts/perform-download.scm |   6 +-
 guix/scripts/substitute.scm       | 456 +++++++++-------------------
 guix/serialization.scm            |   3 +-
 guix/store.scm                    |  56 +++-
 guix/store/build-derivations.scm  | 412 +++++++++++++++++++++++++
 guix/store/database.scm           | 240 ++++++++++++++-
 guix/store/environment.scm        | 484 ++++++++++++++++++++++++++++++
 guix/substitutes.scm              | 213 ++++++++++++-
 12 files changed, 1620 insertions(+), 346 deletions(-)
 create mode 100644 guix/store/build-derivations.scm
 create mode 100644 guix/store/environment.scm


base-commit: 92af4ea17f70207fbbf2513f677f3171d4eafd41
-- 
2.41.0

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

end of thread, other threads:[~2024-05-16 16:31 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-21  9:35 [bug#70494] [PATCH 00/23] Groundwork for the Guile guix-daemon Christopher Baines
2024-04-21  9:42 ` [bug#70494] [PATCH 01/23] store: database: Register derivation outputs Christopher Baines
2024-05-07 14:30   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 02/23] gnu: linux-container: Make it more suitable for derivation-building Christopher Baines
2024-05-07 14:28   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 03/23] syscalls: Add missing pieces for derivation build environment Christopher Baines
2024-05-07 14:27   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 04/23] guix: store: environment: New module Christopher Baines
2024-05-13 15:10   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 05/23] store: build-derivations: " Christopher Baines
2024-05-13 15:22   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 06/23] store: Export protocol related constants Christopher Baines
2024-05-13 15:58   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 07/23] serialization: Export read-byte-string Christopher Baines
2024-05-13 15:58   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 08/23] store: Add text-output-path and text-output-path-from-hash Christopher Baines
2024-05-13 15:59   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 09/23] store: Add validate-store-name Christopher Baines
2024-05-13 16:04   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 10/23] store: database: Add procedures for querying valid paths Christopher Baines
2024-05-16 16:04   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 11/23] scripts: substitute: Untangle selecting fast vs small compressions Christopher Baines
2024-05-16 16:08   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 12/23] scripts: substitute: Extract script specific output from download-nar Christopher Baines
2024-05-16 16:13   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 13/23] syscalls: Add unshare Christopher Baines
2024-05-16 16:14   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 14/23] scripts: perform-download: Support configuring the %store-prefix Christopher Baines
2024-05-16 16:17   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 15/23] store: Export operation-id Christopher Baines
2024-05-16 16:18   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 16/23] store: database: Log when aborting transactions Christopher Baines
2024-05-16 16:20   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 17/23] store: database: Export transaction helpers Christopher Baines
2024-05-16 16:21   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 18/23] guix: http-client: Add network-error? Christopher Baines
2024-05-16 16:23   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 19/23] http-client: Include EPIPE in network-error? Christopher Baines
2024-05-16 16:23   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 20/23] scripts: substitute: Simplify with-timeout usage Christopher Baines
2024-05-16 16:27   ` Ludovic Courtès
2024-04-21  9:42 ` [bug#70494] [PATCH 21/23] scripts: substitute: Don't enforce cached connections in download-nar Christopher Baines
2024-04-21  9:42 ` [bug#70494] [PATCH 22/23] substitutes: Move download-nar from substitutes script to here Christopher Baines
2024-04-21  9:42 ` [bug#70494] [PATCH 23/23] substitutes: Add #:keep-alive? keyword argument to download-nar Christopher Baines
2024-05-16 16:29   ` 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).