From 40e53d639d86337cf58be3a2b9750b6c97a3c740 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 21 Jul 2020 16:10:21 +0200 Subject: [PATCH 2/2] Disable ruby-rnp tests. Prevents cmake from cloning the ruby-rnp repository in order to run its tests. --- src/tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index d3c4fbe6..e7e1965e 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -125,7 +125,7 @@ gtest_discover_tests(rnp_tests # ruby-rnp # cruby does not currently play nice with ASaN et al. -if (NOT ENABLE_SANITIZERS AND BUILD_SHARED_LIBS AND NOT WIN32) +if (NOT ENABLE_SANITIZERS AND BUILD_SHARED_LIBS AND NOT WIN32 AND IGNORE) include(ExternalProject) set(_sourcedir "${CMAKE_BINARY_DIR}/ruby-rnp") if (DEFINED ENV{RUBY_RNP_INSTALL}) -- 2.20.1 tion> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/home/services/symlink-manager.scm
AgeCommit message (Collapse)Author
2022-04-11home: symlink-manager: Handle non-existing directory during cleanup.Andrew Tropin
* gnu/home/services/symlink-manager.scm (update-symlinks-script): Handle non-existing directory during cleanup. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-04-10home: symlink-manager: Use no-follow version of file-exists?.Andrew Tropin
* gnu/home/services/symlink-manager.scm (update-symlinks-script): Use no-follow version of file-exists?. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-04-08home: Add home-xdg-data-files-service-type.Andrew Tropin
* gnu/home/services.scm (home-xdg-data-files-service-type): New variable. * gnu/home/services/symlink-manager.scm (update-symlinks-script): Add a proper handling for XDG_DATA_HOME value. * gnu/home/services/xdg.scm (home-xdg-mime-applications-service-type): Use home-xdg-data-files service. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-04-08home: symlink-manager: Remove appending of leading dot.Andrew Tropin
* gnu/home/services.scm (xdg-configuration-files-directory): Add leading dot. * gnu/home/services.scm (xdg-configuration-files-service-type): Change name. * gnu/home/services/shells.scm (add-shell-profile-file, zsh-get-configuration-files, add-zsh-dot-configuration, add-zsh-xdg-configuration, add-bash-configuration): Add leading dots. * gnu/home/services/symlink-manager.scm (update-symlinks-script): Remove leading dot. Signed-off-by: Ludovic Courtès <ludo@gnu.org>