Source: https://src.fedoraproject.org/rpms/rng-tools/blob/aaca5d6d9c9a50e0d0eed74c67b09863ac37149a/f/2-rt-revert-build-randstat.patch From de2ee0d8b7e8ad2915165ef941a6ec37442a2fdc Mon Sep 17 00:00:00 2001 From: Vladis Dronov Date: Tue, 6 Jul 2021 14:36:46 +0200 Subject: [PATCH] Revert "Build randstat binary" We do not want new and mostly useless randstat binary. This reverts commit 2ce93190cb0111fcab2f622a539689d70960643a. Signed-off-by: Vladis Dronov --- .gitignore | 3 +-- contrib/Makefile.am | 5 +++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git .gitignore .gitignore index 943fa2b..5dc334d 100644 --- .gitignore +++ .gitignore @@ -1,6 +1,6 @@ *.a *.o -.deps/ +/.deps/ /aclocal.m4 /ar-lib /autom4te.cache/ @@ -10,7 +10,6 @@ /config.status /config.sub /configure -/contrib/randstat /depcomp /install-sh /missing diff --git contrib/Makefile.am contrib/Makefile.am index a81fb0e..18c4fbc 100644 --- contrib/Makefile.am +++ contrib/Makefile.am @@ -1,2 +1,3 @@ -bin_PROGRAMS = randstat -randstat_SOURCES = randstat.c + +EXTRA_DIST = randstat.c + -- 2.26.3 d2dc155d'>refslogtreecommitdiff
97&showmsg=1'>Expand)
AgeCommit message (Expand)Author
Author
2024-04-18system: Remove nss-certs from OS templates, adjust doc....This is a follow-up to commit 86afaadb51 ("system: Add 'nss-certs' to %base-packages-networking.") * doc/guix-cookbook.texi (Running Guix on a Linode Server): Remove nss-certs from operating system's packages field. (Running Guix on a Kimsufi Server): Likewise. * doc/guix.texi (Using the Configuration System): Likewise. (X.509 Certificates): Adjust to mention nss-certs *is* part of %base-packages. * gnu/installer/services.scm (%system-services): Remove recommendation to install nss-certs. * gnu/system/examples/bare-bones.tmpl (host-name): Remove obsolete comments. * gnu/system/examples/desktop.tmpl (packages): Remove nss-certs. * gnu/system/examples/lightweight-desktop.tmpl (packages): Likewise. * gnu/system/examples/plasma.tmpl (packages): Likewise. * gnu/system/examples/raspberry-pi-64-nfs-root.tmpl (packages): Likewise. * gnu/system/examples/raspberry-pi-64.tmpl (packages): Likewise. * gnu/system/examples/vm-image.tmpl (packages): Likewise. * gnu/system/images/orangepi-r1-plus-lts-rk3328.scm (packages): Likewise. * gnu/system/images/pine64.scm (packages): Likewise. * gnu/system/install.scm (installation-os) [packages]: Likewise. Change-Id: If09123a69b987178bcb0aab61c4570c14fc1286f Maxim Cournoyer
2023-08-22examples: Avoid duplicate SDDM service for Plasma on aarch64-linux....This is a followup to cf28f46930f1ea4087d84c162cfacfcdff842b1f. * gnu/system/examples/plasma.tmpl (services): Remove both 'gdm-service-type' and 'sddm-service-type' from %DESKTOP-SERVICES. Ludovic Courtès
2023-08-21examples: Avoid 'modify-services' to remove GDM....This led to a 'tests/guix-system.sh' failure on aarch64-linux: …/plasma.tmpl:60:13: error: modify-services: service 'gdm' not found in service list This is because 'gdm-service-type' is not among %DESKTOP-SERVICES on that architecture. * gnu/system/examples/plasma.tmpl (services): Use 'remove' rather 'modify-services' + 'delete'. Ludovic Courtès
2023-08-03examples: Add plasma operating-system example template....* gnu/system/examples/plasma.tmpl: New file. * Makefile.am (EXAMPLES): register it. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Zheng Junjie