aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2017-12-10 15:45:13 +0800
committerTing-Wei Lan <lantw44@gmail.com>2017-12-10 15:45:13 +0800
commit1558fa7b5e3c23883082f6e9782a26a911c37cab (patch)
tree8d8e0f20c43c178bd9c767358830ce0d6bf183b3
parentebfa81e8a10908864df718154e19f84638592033 (diff)
downloadcopr-rpm-spec-1558fa7b5e3c23883082f6e9782a26a911c37cab.tar
copr-rpm-spec-1558fa7b5e3c23883082f6e9782a26a911c37cab.tar.gz
copr-rpm-spec-1558fa7b5e3c23883082f6e9782a26a911c37cab.tar.bz2
copr-rpm-spec-1558fa7b5e3c23883082f6e9782a26a911c37cab.tar.lz
copr-rpm-spec-1558fa7b5e3c23883082f6e9782a26a911c37cab.tar.xz
copr-rpm-spec-1558fa7b5e3c23883082f6e9782a26a911c37cab.tar.zst
copr-rpm-spec-1558fa7b5e3c23883082f6e9782a26a911c37cab.zip
guix: Make guile-git hard dependency and silence installation
-rw-r--r--guix/guix/guix.spec12
1 files changed, 8 insertions, 4 deletions
diff --git a/guix/guix/guix.spec b/guix/guix/guix.spec
index 539db54..e777ddd 100644
--- a/guix/guix/guix.spec
+++ b/guix/guix/guix.spec
@@ -3,7 +3,7 @@
Name: guix
Version: 0.14.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A purely functional package manager for the GNU system
License: GPLv3+
@@ -32,7 +32,7 @@ BuildRequires: systemd
%{?systemd_requires}
-Requires: gzip, bzip2, xz
+Requires: guile-git, gzip, bzip2, xz
Requires: %{_bindir}/dot
Requires: %{_libdir}/libgcrypt.so
Requires(post): /usr/sbin/useradd
@@ -43,7 +43,7 @@ Requires(post): /usr/bin/gpasswd
Requires(post): info
Requires(preun): info
-Recommends: guile-git, guile-json, guile-ssh, gnutls-guile
+Recommends: guile-json, guile-ssh, gnutls-guile
Suggests: emacs-guix
%description
@@ -127,7 +127,7 @@ mkdir -p %{buildroot}%{_sysconfdir}/guix
%post
-cat << EOF | ( cd "%{guile_source_dir}/gnu/packages/bootstrap" && sha256sum -c ) || exit 1
+cat << EOF | ( cd "%{guile_source_dir}/gnu/packages/bootstrap" && sha256sum -c >/dev/null ) || exit 1
e3bf6ffe357eebcc28221ffdbb5b00b4ed1237cb101aba4b1b8119b08c732387 aarch64-linux/bash
444c2af9fefd11d4fc20ee9281fa2c46cbe3cfb3df89cc30bcd50d20cdb6d6c0 aarch64-linux/mkdir
05273f978a072269193e3a09371c23d6d149f6d807f8e413a4f79aa5a1bb6f25 aarch64-linux/tar
@@ -355,6 +355,10 @@ fi
%changelog
+* Sun Dec 10 2017 Ting-Wei Lan <lantw44@gmail.com> - 0.14.0-2
+- Move guile-git to Requires because it is not optional
+- Do not show OK messages when validating bootstrap binraies
+
* Sat Dec 09 2017 Ting-Wei Lan <lantw44@gmail.com> - 0.14.0-1
- Update to 0.14.0
- Avoid running tests as root