Move documentation from bind-doc subdir to bind

Subpackage is there just as shared documentation for main package.
I want to stay in original directory, even most of paths have changed
since move to sphinx generated documentation.
This commit is contained in:
Petr Menšík 2020-06-19 20:10:55 +02:00
parent 2a2d2faeae
commit 9a4be75094
2 changed files with 44 additions and 11 deletions

View File

@ -36,6 +36,7 @@
%{?!bind_uid: %global bind_uid 25} %{?!bind_uid: %global bind_uid 25}
%{?!bind_gid: %global bind_gid 25} %{?!bind_gid: %global bind_gid 25}
%{!?_pkgdocdir:%global _pkgdocdir %{_docdir}/%{name}-%{version}}
%global bind_dir /var/named %global bind_dir /var/named
%global chroot_prefix %{bind_dir}/chroot %global chroot_prefix %{bind_dir}/chroot
%global chroot_create_directories /dev /run/named %{_localstatedir}/{log,named,tmp} \\\ %global chroot_create_directories /dev /run/named %{_localstatedir}/{log,named,tmp} \\\
@ -66,7 +67,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
Name: bind Name: bind
License: MPLv2.0 License: MPLv2.0
Version: 9.16.4 Version: 9.16.4
Release: 1%{?PATCHVER:.%{PATCHVER}}%{?PREVER:.%{PREVER}}%{?dist} Release: 2%{?PATCHVER:.%{PATCHVER}}%{?PREVER:.%{PREVER}}%{?dist}
Epoch: 32 Epoch: 32
Url: https://www.isc.org/downloads/bind/ Url: https://www.isc.org/downloads/bind/
# #
@ -800,6 +801,13 @@ ln -s ddns-confgen.8.gz tsig-keygen.8.gz
ln -s named-checkzone.8.gz named-compilezone.8.gz ln -s named-checkzone.8.gz named-compilezone.8.gz
popd popd
%if %{with DOC}
mkdir -p ${RPM_BUILD_ROOT}%{_pkgdocdir}
cp -a build/doc/arm/{Bv9ARM.pdf,_build/html} build/doc/man/_build/html ${RPM_BUILD_ROOT}%{_pkgdocdir}
cp -a build/doc/man/_build/html ${RPM_BUILD_ROOT}%{_pkgdocdir}/html/man
rm -rf ${RPM_BUILD_ROOT}%{_pkgdocdir}/{html,html/man}/.{buildinfo,doctrees}
%endif
# Ghost config files: # Ghost config files:
touch ${RPM_BUILD_ROOT}%{_localstatedir}/log/named.log touch ${RPM_BUILD_ROOT}%{_localstatedir}/log/named.log
@ -1195,11 +1203,15 @@ fi;
%if %{with DOC} %if %{with DOC}
%files doc %files doc
%doc build/doc/arm/_build/html %dir %{_pkgdocdir}
%doc build/doc/arm/Bv9ARM.pdf %doc %{_pkgdocdir}/html
%doc %{_pkgdocdir}/Bv9ARM.pdf
%endif %endif
%changelog %changelog
* Fri Jun 19 2020 Petr Menšík <pemensik@redhat.com> - 32:9.16.4-2
- Move html into doc/bind
* Thu Jun 18 2020 Petr Menšík <pemensik@redhat.com> - 32:9.16.4-1 * Thu Jun 18 2020 Petr Menšík <pemensik@redhat.com> - 32:9.16.4-1
- Update to 9.16.4 - Update to 9.16.4
- Create separate bind-doc package with ARM - Create separate bind-doc package with ARM

View File

@ -1,22 +1,43 @@
From 8b0a284d551d24ec2323713a5641b783b6e1baaa Mon Sep 17 00:00:00 2001
From: Petr Mensik <pemensik@redhat.com>
Date: Fri, 19 Jun 2020 18:48:23 +0200
Subject: [PATCH] .rh640538
---
bin/dig/dig.rst | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/bin/dig/dig.rst b/bin/dig/dig.rst diff --git a/bin/dig/dig.rst b/bin/dig/dig.rst
index 3c899ce..3e9957b 100644 index 3c899ce..46c9885 100644
--- a/bin/dig/dig.rst --- a/bin/dig/dig.rst
+++ b/bin/dig/dig.rst +++ b/bin/dig/dig.rst
@@ -616,6 +616,17 @@ like to turn off the IDN support for some reason, use parameters @@ -616,6 +616,26 @@ like to turn off the IDN support for some reason, use parameters
``+noidnin`` and ``+noidnout`` or define the IDN_DISABLE environment ``+noidnin`` and ``+noidnout`` or define the IDN_DISABLE environment
variable. variable.
+Return codes +Return Codes
+~~~~~~~~~~~~ +~~~~~~~~~~~~
+ +
+``dig`` return codes are: +``dig`` return codes are:
+ +
+ 0: Everything went well, including things like NXDOMAIN +``0``
+ 1: Usage error + Response received, including NXDOMAIN status
+ 8: Couldn't open batch file +
+ 9: No reply from server +``1``
+ 10: Internal error + Usage error
+
+``8``
+ Couldn't open batch file
+
+``9``
+ No reply from server
+
+``10``
+ Internal error
+ +
Files Files
~~~~~ ~~~~~
--
2.26.2