public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/bind] rawhide: Fix ghost man pages suffix
@ 2026-07-15 10:01
0 siblings, 0 replies; only message in thread
From: @ 2026-07-15 10:01 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/bind
Branch : rawhide
Commit : 046122bd9e39a537b004b89517bbeb575c3fe7cd
Author : Petr Menšík <pemensik@redhat.com>
Date : 2026-07-08T20:43:09+02:00
Stats : +23/-23 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/bind/c/046122bd9e39a537b004b89517bbeb575c3fe7cd?branch=rawhide
Log:
Fix ghost man pages suffix
Classic shell glob star does not work on non-existing files. Use
explicit man page suffix. It needs to be defined for use in alternatives
anyway.
---
diff --git a/bind.spec b/bind.spec
index f8d0be2..f69351a 100644
--- a/bind.spec
+++ b/bind.spec
@@ -1048,17 +1048,17 @@ fi;
%{_mandir}/man8/named%{program_suffix}.8*
%{_mandir}/man8/rndc-confgen%{program_suffix}.8*
%{_mandir}/man8/filter-{a,aaaa}%{program_suffix}.8*
-%ghost %attr(0644,-,-) %{_mandir}/man1/mdig.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/named-checkconf.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/named-journalprint.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/named-rrchecker.1*
-%ghost %attr(0644,-,-) %{_mandir}/man5/named.conf.5*
-%ghost %attr(0644,-,-) %{_mandir}/man5/rndc.conf.5*
-%ghost %attr(0644,-,-) %{_mandir}/man8/rndc.8*
-%ghost %attr(0644,-,-) %{_mandir}/man8/named.8*
-%ghost %attr(0644,-,-) %{_mandir}/man8/rndc-confgen.8*
-%ghost %attr(0644,-,-) %{_mandir}/man8/filter-a.8*
-%ghost %attr(0644,-,-) %{_mandir}/man8/filter-aaaa.8*
+%ghost %attr(0644,-,-) %{_mandir}/man1/mdig.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/named-checkconf.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/named-journalprint.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/named-rrchecker.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man5/named.conf.5%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man5/rndc.conf.5%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man8/rndc.8%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man8/named.8%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man8/rndc-confgen.8%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man8/filter-a.8%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man8/filter-aaaa.8%{manext}
%doc README.md named.conf.default
%doc sample/
@@ -1150,24 +1150,24 @@ fi;
%{_mandir}/man1/named-compilezone%{program_suffix}.1*
%{_mandir}/man8/ddns-confgen%{program_suffix}.8*
%{_mandir}/man8/tsig-keygen%{program_suffix}.8*
-%ghost %attr(0644,-,-) %{_mandir}/man1/arpaname.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/delv.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/dig.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/host.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/nslookup.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/nsupdate.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/nsec3hash.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/named-checkzone.1*
-%ghost %attr(0644,-,-) %{_mandir}/man1/named-compilezone.1*
-%ghost %attr(0644,-,-) %{_mandir}/man8/ddns-confgen.8*
-%ghost %attr(0644,-,-) %{_mandir}/man8/tsig-keygen.8*
+%ghost %attr(0644,-,-) %{_mandir}/man1/arpaname.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/delv.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/dig.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/host.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/nslookup.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/nsupdate.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/nsec3hash.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/named-checkzone.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man1/named-compilezone.1%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man8/ddns-confgen.8%{manext}
+%ghost %attr(0644,-,-) %{_mandir}/man8/tsig-keygen.8%{manext}
%{_sysconfdir}/trusted-key.key
%files dnssec-utils
%{_bindir}/%{dnssec_utils_bin1}%{program_suffix}
%{_mandir}/man1/%{dnssec_utils_bin1}%{program_suffix}.1*
%ghost %attr(0755,-,-) %{_bindir}/%{dnssec_utils_bin1}
-%ghost %attr(0644,-,-) %{_mandir}/man1/%{dnssec_utils_bin1}.1*
+%ghost %attr(0644,-,-) %{_mandir}/man1/%{dnssec_utils_bin1}.1%{manext}
%files devel
%{_libdir}/libbind9-%{mver}.so
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-07-15 10:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-15 10:01 [rpms/bind] rawhide: Fix ghost man pages suffix
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox