From a6f5b37cd22daa6069d8fbef8cba9dc60a6731f6 Mon Sep 17 00:00:00 2001 From: Philip McGrath Date: Sun, 24 Jul 2022 23:54:19 -0400 Subject: [PATCH] `AnyStyle::Data.setup()`: adjust for immutable install Don't override the default paths for `Dictionary::Marshal`, `Dictionary::GDBM`, and `Dictionary:LDBM` to point to this gem: we can't populate such files without the 'anystyle' gem (which depends on this one), and we won't be able to write to the directory where this gem is installed later, so the files will never exist at those locations. --- lib/anystyle/data/setup.rb | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lib/anystyle/data/setup.rb b/lib/anystyle/data/setup.rb index 17efdf8..08246fa 100644 --- a/lib/anystyle/data/setup.rb +++ b/lib/anystyle/data/setup.rb @@ -4,18 +4,6 @@ module AnyStyle def self.setup Dictionary.defaults[:source] = File.join(ROOT, 'dict.txt.gz') - - if defined? Dictionary::Marshal - Dictionary::Marshal.defaults[:path] = File.join(ROOT, 'dict.marshal') - end - - if defined? Dictionary::GDBM - Dictionary::GDBM.defaults[:path] = File.join(ROOT, 'dict.db') - end - - if defined? Dictionary::LDBM - Dictionary::LDBM.defaults[:path] = ROOT - end end end end -- 2.32.0 mon.cil.in?id=d1dd176af538e91d6d89e253f93ad24785c33d68'>commitdiff
path: root/etc/guix-daemon.cil.in
ps.scm (format-configuration, configuration->file): Cater for the Hurd. * gnu/system/hurd.scm (%desktop-services/hurd): New variable. * gnu/installer/tests.scm (choose-kernel): New procedure. * gnu/tests/install.scm (gui-test-program): Use it. Change-Id: Ifafb27b8a2f933944c77223a27ec151757237e36
AgeCommit message (Expand)Author
2023-05-25etc: SELinux: Update policy file....Tested on Rocky Linux 9, as discussed at <https://issues.guix.gnu.org/62487>. * etc/guix-daemon.cil.in: Add rules for /gnu/store remount and file creation in /tmp. Ludovic Courtès
2022-12-23etc: SELinux: Allow init process to setattr on profile directories....* etc/guix-daemon.cil.in: Add rule. Ricardo Wurmus
2022-12-23etc: SELinux: Allow daemon to search run state directories....* etc/guix-daemon.cil.in: Import types init_var_run_t and system_dbusd_var_run_t; add rules. Ricardo Wurmus
2022-12-23etc: SELinux: Label guix-daemon executable in profile....* etc/guix-daemon.cil.in: Add file rule for "guix-daemon" in current-guix profile. Ricardo Wurmus
2022-01-26etc: Remove redundant SELinux permissions block....* etc/guix-daemon.cil.in (guix_daemon): Consolidate two blocks adding sock_file permissions on guix_daemon_conf_t. Marius Bakke
2022-01-24etc: Add more SELinux permissions for the daemon....* etc/guix-daemon.cil.in (guix_daemon): Permit write on guix_daemon_conf_t sock_file, necessary for garbage collection. Marius Bakke
Janneke Nieuwenhuizen