This patch allows the Haskell daemons to locate Python libraries installed to a non-standard pythondir. It is necessary because Guix does not use versionedsharedir (see related patch that disables it). diff --git a/Makefile.am b/Makefile.am --- a/Makefile.am +++ b/Makefile.am @@ -83,6 +83,7 @@ myexeclibdir = $(pkglibdir) bindir = $(versiondir)/$(BINDIR) sbindir = $(versiondir)$(SBINDIR) mandir = $(versionedsharedir)/root$(MANDIR) +pythondir = $(versionedsharedir) pkgpythondir = $(versionedsharedir)/ganeti pkgpython_rpc_stubdir = $(versionedsharedir)/ganeti/rpc/stub gntpythondir = $(versionedsharedir) @@ -2386,6 +2387,7 @@ src/AutoConf.hs: Makefile src/AutoConf.hs.in $(PRINT_PY_CONSTANTS) \ -DPKGLIBDIR="$(libdir)/ganeti" \ -DSHAREDIR="$(prefix)/share/ganeti" \ -DVERSIONEDSHAREDIR="$(versionedsharedir)" \ + -DPYTHONDIR="$(pythondir)" \ -DDRBD_BARRIERS="$(DRBD_BARRIERS)" \ -DDRBD_NO_META_FLUSH="$(DRBD_NO_META_FLUSH)" \ -DSYSLOG_USAGE="$(SYSLOG_USAGE)" \ diff --git a/src/AutoConf.hs.in b/src/AutoConf.hs.in --- a/src/AutoConf.hs.in +++ b/src/AutoConf.hs.in @@ -157,6 +157,9 @@ sharedir = "SHAREDIR" versionedsharedir :: String versionedsharedir = "VERSIONEDSHAREDIR" +pythondir :: String +pythondir = "PYTHONDIR" + drbdBarriers :: String drbdBarriers = "DRBD_BARRIERS" diff --git a/src/Ganeti/Path.hs b/src/Ganeti/Path.hs --- a/src/Ganeti/Path.hs +++ b/src/Ganeti/Path.hs @@ -188,5 +188,5 @@ getInstReasonFilename instName = instanceReasonDir `pjoin` instName -- | The path to the Python executable for starting jobs. jqueueExecutorPy :: IO FilePath -jqueueExecutorPy = return $ versionedsharedir - "ganeti" "jqueue" "exec.py" +jqueueExecutorPy = return $ pythondir + "ganeti" "jqueue" "exec.py" diff --git a/src/Ganeti/Query/Exec.hs b/src/Ganeti/Query/Exec.hs --- a/src/Ganeti/Query/Exec.hs +++ b/src/Ganeti/Query/Exec.hs @@ -99,12 +99,12 @@ spawnJobProcess jid = withErrorLogAt CRITICAL (show jid) $ do use_debug <- isDebugMode env_ <- (M.toList . M.insert "GNT_DEBUG" (if use_debug then "1" else "0") - . M.insert "PYTHONPATH" AC.versionedsharedir + . M.insert "PYTHONPATH" AC.pythondir . M.fromList) `liftM` getEnvironment execPy <- P.jqueueExecutorPy logDebug $ "Executing " ++ AC.pythonPath ++ " " ++ execPy - ++ " with PYTHONPATH=" ++ AC.versionedsharedir + ++ " with PYTHONPATH=" ++ AC.pythondir (master, child) <- pipeClient connectConfig let (rh, wh) = clientToHandle child >)Author 2023-08-15gnu: nimf: Build with librsvg-for-system....* gnu/packages/language.scm (nimf)[inputs]: Replace librsvg with librsvg-for-system. Efraim Flashner 2023-08-07gnu: praat: Honor #:tests?....* gnu/packages/language.scm (praat)[arguments]: Check #:tests? in 'check phase. Ludovic Courtès 2023-08-07gnu: praat: Update style....* gnu/packages/language.scm (praat): [arguments]: Use g-exps. [#:phases]: Drop trailing #t. [inputs]: Use new format. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Preston M. Firestone 2023-08-07gnu: praat: Add tests to praat....* gnu/packages/language.scm (praat): Run non-graphical tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Preston M. Firestone 2023-08-07gnu: praat: Update to 6.3.10....* gnu/packages/language.scm (praat): Update to 6.3.10. [make-flags]: Use (cc-for-target). Signed-off-by: Ludovic Courtès <ludo@gnu.org> Preston M. Firestone 2023-08-07gnu: praat: Update to 6.1.49....Version 6.1.30 of praat can't be built with GCC. Version 6.1.49 patches this. See https://github.com/praat/praat/pull/1622 for more information. -- >8 -- * gnu/packages/language.scm (praat): Update to 6.1.49. [inputs]: Replace gtk+-2 with gtk+. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Preston M. Firestone