Patch by Andreas Enge . Remedy the absence of ldconfig and explicitly create an additional symbolic link to the flint library, as discussed privately with upstream. diff -r -u flint-2.5.2.orig/configure flint-2.5.2/configure --- flint-2.5.2.orig/configure 2015-08-13 18:16:22.000000000 +0200 +++ flint-2.5.2/configure 2015-08-14 17:38:14.316284437 +0200 @@ -714,6 +714,7 @@ echo "FLINT_SHARED=$SHARED" >> Makefile echo "FLINT_LIB=$FLINT_LIB" >> Makefile echo "FLINT_LIBNAME=$FLINT_LIBNAME" >> Makefile +echo "FLINT_MAJOR=$FLINT_MAJOR" >> Makefile echo "FLINT_SOLIB=$FLINT_SOLIB" >> Makefile echo "EXEEXT=$EXEEXT" >> Makefile echo "PREFIX=$PREFIX" >> Makefile diff -r -u flint-2.5.2.orig/Makefile.in flint-2.5.2/Makefile.in --- flint-2.5.2.orig/Makefile.in 2015-08-13 18:16:22.000000000 +0200 +++ flint-2.5.2/Makefile.in 2015-08-14 17:38:50.584774817 +0200 @@ -118,6 +118,7 @@ $(LDCONFIG) -n "$(CURDIR)"; \ fi ln -sf "$(FLINT_LIB)" "$(FLINT_LIBNAME)"; \ + ln -sf "$(FLINT_LIB)" "$(FLINT_LIBNAME).$(FLINT_MAJOR)"; \ libflint.a: $(OBJS) $(LIB_SOURCES) $(EXT_SOURCES) $(HEADERS) $(EXT_HEADERS) | build build/interfaces $(AT)$(foreach ext, $(EXTENSIONS), $(foreach dir, $(filter-out %templates, $(patsubst $(ext)/%.h, %, $(wildcard $(ext)/*.h))), mkdir -p build/$(dir); BUILD_DIR=$(CURDIR)/build/$(dir); export BUILD_DIR; MOD_DIR=$(dir); export MOD_DIR; $(MAKE) -f $(CURDIR)/Makefile.subdirs -C $(ext)/$(dir) static || exit $$?;)) nu/services/backup.scm?id=a8f1f11d5b969f7731ba88a2c0e9ff00bb8646b4'>diff
path: root/gnu/services/backup.scm
ons, aliases] [environment-variables]: Likewise. * gnu/services/audio.scm (mpd-configuration)[music-dir, playlist-dir] [endpoints, address, inputs, archive-plugins, input-cache-size] [decoders, filters, playlist-plugins]: Likewise. * gnu/services/linux.scm (fstrim-configuration)[extra-arguments]: Likewise. * gnu/services/security.scm (fail2ban-jail-configuration)[backend] [log-encoding, extra-content]: Likewise. * tests/services/configuration.scm: Update tests. ("serialize-configuration [deprecated]"): New test. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
AgeCommit message (Expand)Author
2024-05-25services: Add restic-backup service....* gnu/services/backup.scm: New file. * gnu/local.mk: Add this. * doc/guix.texi: Document this. Change-Id: I9efd5559bb445b484107a7c27c2d0a65ccad1e66 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Giacomo Leidi
Bruno Victal
2023-01-10gnu: services: Fix fail2ban configuration serialization....This fixes a regression from 543d971ed2a1d9eb934af1f51930741d7cc4e7ef whereby match-lambda due to configuration field reordering. * gnu/services/security.scm: [serialize-fail2ban-ignore-cache-configuration]: Switch to match-record. [serialize-fail2ban-jail-filter-configuration]: Switch to match-record. [serialize-fail2ban-jail-action-configuration]: Switch to match-record. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> muradm
2022-12-06services: fail2ban: Start server in the foreground....Previously, we were passing '-b', thereby starting the server in the background. Consequently the 'start' method could complete before the server was ready to accept connections on its socket, leading to non-deterministic test failures. Reported by Mathieu Othacehe <othacehe@gnu.org>. * gnu/services/security.scm (fail2ban-shepherd-service): Change FAIL2BAN-ACTION to invoke 'fail2ban-client'. Change 'start' method to use 'make-forkexec-constructor'; start the server in the foreground with '-f' and pass '-x' to force execution of the server, as done upstream in 'fail2ban.service.in'. Ludovic Courtès
2022-12-06services: fail2ban: Remove unnecessary Shepherd 'modules' field....* gnu/services/security.scm (fail2ban-shepherd-service): Remove unnecessary 'modules' field. Ludovic Courtès
2022-12-06services: fail2ban: 'stop' returns #f when the dameon is stopped....* gnu/services/security.scm (fail2ban-shepherd-service): Change FAIL2BAN-ACTION to return an 'invoke' gexp. Adjust the shepherd 'start' and 'stop' fields accordingly. Have 'stop' return #f on success. Ludovic Courtès
2022-09-14gnu: fail2ban-service-type: Improve extra-content fields....* gnu/services/security.scm (fail2ban-jail-configuration)[extra-content]: Change to text-config. (fail2ban-configuration)[extra-content]: Change to text-config. * gnu/doc/guix.texi: Update type of extra-content fields. Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> muradm