commit
6f0b5698b1
@ -0,0 +1 @@
|
||||
SOURCES/mandoc-1.14.6.tar.gz
|
@ -0,0 +1 @@
|
||||
4033a504b005e43a0642e195c1ef49609c65f1c4 SOURCES/mandoc-1.14.6.tar.gz
|
@ -0,0 +1,311 @@
|
||||
Name: mandoc
|
||||
Version: 1.14.6
|
||||
Release: 10%{?dist}
|
||||
Summary: A suite of tools for compiling mdoc and man
|
||||
|
||||
License: ISC AND BSD-2-Clause AND BSD-3-Clause
|
||||
URL: https://mandoc.bsd.lv/
|
||||
Source0: https://mandoc.bsd.lv/snapshots/mandoc-%{version}.tar.gz
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: make
|
||||
BuildRequires: zlib-devel
|
||||
|
||||
# requirements for %%check
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(IPC::Open3)
|
||||
|
||||
Requires(post): %{_sbindir}/update-alternatives
|
||||
Requires(postun): %{_sbindir}/update-alternatives
|
||||
Requires(preun): %{_sbindir}/update-alternatives
|
||||
|
||||
# The shared library package has been removed per discussion with the
|
||||
# upstream maintainer. If using the library, the static library is
|
||||
# preferred because the API is not stable.
|
||||
Provides: libmandoc = %{version}-%{release}
|
||||
Obsoletes: libmandoc <= 1.14.5-10
|
||||
|
||||
%description
|
||||
mandoc is a suite of tools compiling mdoc, the roff macro language of choice
|
||||
for BSD manual pages, and man, the predominant historical language for UNIX
|
||||
manuals. It is small, ISO C, ISC-licensed, and quite fast. The main component
|
||||
of the toolset is the mandoc utility program, based on the libmandoc validating
|
||||
compiler, to format output for UTF-8 and ASCII UNIX terminals, HTML 5,
|
||||
PostScript, and PDF.
|
||||
|
||||
%package -n libmandoc-devel
|
||||
Summary: Development libraries and headers for libmandoc
|
||||
|
||||
%description -n libmandoc-devel
|
||||
The mandoc library parses a UNIX manual into an abstract syntax tree (AST).
|
||||
UNIX manuals are composed of mdoc(7) or man(7), and may be mixed with roff(7),
|
||||
tbl(7), and eqn(7) invocations.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
# NB: not an autoconf script
|
||||
# settings are read in through configure.local
|
||||
echo 'PREFIX=%{_prefix}' > configure.local
|
||||
echo 'BINDIR=%{_bindir}' >> configure.local
|
||||
echo 'SBINDIR=%{_sbindir}' >> configure.local
|
||||
echo 'MANDIR=%{_mandir}' >> configure.local
|
||||
echo 'INCLUDEDIR=%{_includedir}' >> configure.local
|
||||
echo 'LIBDIR=%{_libdir}' >> configure.local
|
||||
|
||||
# with default settings rpmlint complains about cross-directory hardlinks
|
||||
echo 'LN="ln -sf"' >> configure.local
|
||||
|
||||
echo 'MANM_MANCONF=mandoc.conf' >> configure.local
|
||||
|
||||
# override the install permissions so that owner-write bits are set,
|
||||
# so rpmbuild can do whatever modifications it does post-%%install
|
||||
echo 'INSTALL_PROGRAM="${INSTALL} -m 0755"' >> configure.local
|
||||
echo 'INSTALL_LIB="${INSTALL} -m 0755"' >> configure.local
|
||||
echo 'INSTALL_MAN="${INSTALL} -m 0644"' >> configure.local
|
||||
echo 'INSTALL_DATA="${INSTALL} -m 0644"' >> configure.local
|
||||
|
||||
echo 'INSTALL_LIBMANDOC=1' >> configure.local
|
||||
|
||||
echo 'CFLAGS="%{optflags} -fPIC"' >> configure.local
|
||||
./configure
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
# Ensure headers do not have the execute bit set
|
||||
chmod -x %{buildroot}%{_includedir}/*.h
|
||||
|
||||
# Rename files for alternative usage
|
||||
mv %{buildroot}%{_bindir}/man %{buildroot}%{_bindir}/man.mandoc
|
||||
mv %{buildroot}%{_bindir}/apropos %{buildroot}%{_bindir}/apropos.mandoc
|
||||
mv %{buildroot}%{_bindir}/whatis %{buildroot}%{_bindir}/whatis.mandoc
|
||||
mv %{buildroot}%{_bindir}/soelim %{buildroot}%{_bindir}/soelim.mandoc
|
||||
mv %{buildroot}%{_sbindir}/makewhatis %{buildroot}%{_sbindir}/makewhatis.mandoc
|
||||
mv %{buildroot}%{_mandir}/man1/apropos.1 %{buildroot}%{_mandir}/man1/apropos.mandoc.1
|
||||
mv %{buildroot}%{_mandir}/man1/man.1 %{buildroot}%{_mandir}/man1/man.mandoc.1
|
||||
mv %{buildroot}%{_mandir}/man1/soelim.1 %{buildroot}%{_mandir}/man1/soelim.mandoc.1
|
||||
mv %{buildroot}%{_mandir}/man1/whatis.1 %{buildroot}%{_mandir}/man1/whatis.mandoc.1
|
||||
mv %{buildroot}%{_mandir}/man7/man.7 %{buildroot}%{_mandir}/man7/man.mandoc.7
|
||||
mv %{buildroot}%{_mandir}/man7/roff.7 %{buildroot}%{_mandir}/man7/roff.mandoc.7
|
||||
mv %{buildroot}%{_mandir}/man7/eqn.7 %{buildroot}%{_mandir}/man7/eqn.mandoc.7
|
||||
mv %{buildroot}%{_mandir}/man7/tbl.7 %{buildroot}%{_mandir}/man7/tbl.mandoc.7
|
||||
mv %{buildroot}%{_mandir}/man8/makewhatis.8 %{buildroot}%{_mandir}/man8/makewhatis.mandoc.8
|
||||
|
||||
# Touch all the locations that update-alternatives will use
|
||||
touch %{buildroot}%{_bindir}/man
|
||||
touch %{buildroot}%{_bindir}/apropos
|
||||
touch %{buildroot}%{_bindir}/whatis
|
||||
touch %{buildroot}%{_bindir}/soelim
|
||||
touch %{buildroot}%{_sbindir}/makewhatis
|
||||
touch %{buildroot}%{_mandir}/man1/apropos.1
|
||||
touch %{buildroot}%{_mandir}/man1/man.1
|
||||
touch %{buildroot}%{_mandir}/man1/soelim.1
|
||||
touch %{buildroot}%{_mandir}/man1/whatis.1
|
||||
touch %{buildroot}%{_mandir}/man7/man.7
|
||||
touch %{buildroot}%{_mandir}/man7/roff.7
|
||||
touch %{buildroot}%{_mandir}/man7/eqn.7
|
||||
touch %{buildroot}%{_mandir}/man7/tbl.7
|
||||
touch %{buildroot}%{_mandir}/man8/makewhatis.8
|
||||
|
||||
%check
|
||||
env LD_LIBRARY_PATH="$PWD" %make_build regress
|
||||
|
||||
%postun
|
||||
if [ $1 -ge 1 ]; then
|
||||
if [ "$(readlink %{_sysconfdir}/alternatives/man)" = "%{_bindir}/man.mandoc" ]; then
|
||||
%{_sbindir}/alternatives --set man %{_bindir}/man.mandoc
|
||||
fi
|
||||
|
||||
if [ "$(readlink %{_sysconfdir}/alternatives/soelim)" = "%{_bindir}/soelim.mandoc" ]; then
|
||||
%{_sbindir}/alternatives --set soelim %{_bindir}/soelim.mandoc
|
||||
fi
|
||||
|
||||
if [ "$(readlink %{_sysconfdir}/alternatives/roff.7.gz)" = "%{_mandir}/man7/roff.mandoc.7.gz" ]; then
|
||||
%{_sbindir}/alternatives --set roff.7.gz %{_mandir}/man7/roff.mandoc.7.gz
|
||||
fi
|
||||
|
||||
if [ "$(readlink %{_sysconfdir}/alternatives/man.7.gz)" = "%{_mandir}/man7/man.mandoc.7.gz" ]; then
|
||||
%{_sbindir}/alternatives --set man.7.gz %{_mandir}/man7/man.mandoc.7.gz
|
||||
fi
|
||||
fi
|
||||
|
||||
%post
|
||||
%{_sbindir}/update-alternatives --install %{_bindir}/man man %{_bindir}/man.mandoc 200 \
|
||||
--slave %{_bindir}/apropos apropos %{_bindir}/apropos.mandoc \
|
||||
--slave %{_bindir}/whatis whatis %{_bindir}/whatis.mandoc \
|
||||
--slave %{_sbindir}/makewhatis makewhatis %{_sbindir}/makewhatis.mandoc \
|
||||
--slave %{_mandir}/man1/apropos.1.gz apropos.1.gz %{_mandir}/man1/apropos.mandoc.1.gz \
|
||||
--slave %{_mandir}/man1/man.1.gz man.1.gz %{_mandir}/man1/man.mandoc.1.gz \
|
||||
--slave %{_mandir}/man1/whatis.1.gz whatis.1.gz %{_mandir}/man1/whatis.mandoc.1.gz \
|
||||
--slave %{_mandir}/man8/makewhatis.8.gz makewhatis.8.gz %{_mandir}/man8/makewhatis.mandoc.8.gz
|
||||
|
||||
%{_sbindir}/update-alternatives --install %{_bindir}/soelim soelim %{_bindir}/soelim.mandoc 200 \
|
||||
--slave %{_mandir}/man1/soelim.1.gz soelim.1.gz %{_mandir}/man1/soelim.mandoc.1.gz
|
||||
|
||||
%{_sbindir}/update-alternatives --install %{_mandir}/man7/roff.7.gz roff.7.gz %{_mandir}/man7/roff.mandoc.7.gz 200 \
|
||||
--slave %{_mandir}/man7/eqn.7.gz eqn.7.gz %{_mandir}/man7/eqn.mandoc.7.gz \
|
||||
--slave %{_mandir}/man7/tbl.7.gz tbl.7.gz %{_mandir}/man7/tbl.mandoc.7.gz
|
||||
|
||||
%{_sbindir}/update-alternatives --install %{_mandir}/man7/man.7.gz man.7.gz %{_mandir}/man7/man.mandoc.7.gz 200
|
||||
|
||||
%preun
|
||||
if [ $1 -eq 0 ]; then
|
||||
%{_sbindir}/update-alternatives --remove man %{_bindir}/man.mandoc
|
||||
%{_sbindir}/update-alternatives --remove soelim %{_bindir}/soelim.mandoc
|
||||
%{_sbindir}/update-alternatives --remove roff.7.gz %{_mandir}/man7/roff.mandoc.7.gz
|
||||
%{_sbindir}/update-alternatives --remove man.7.gz %{_mandir}/man7/man.mandoc.7.gz
|
||||
fi
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%{_bindir}/demandoc
|
||||
%{_bindir}/mandoc
|
||||
%{_bindir}/apropos.mandoc
|
||||
%ghost %{_bindir}/apropos
|
||||
%{_bindir}/man.mandoc
|
||||
%ghost %{_bindir}/man
|
||||
%{_bindir}/soelim.mandoc
|
||||
%ghost %{_bindir}/soelim
|
||||
%{_bindir}/whatis.mandoc
|
||||
%ghost %{_bindir}/whatis
|
||||
%{_sbindir}/makewhatis.mandoc
|
||||
%ghost %{_sbindir}/makewhatis
|
||||
%{_mandir}/man1/demandoc.1.gz
|
||||
%{_mandir}/man1/mandoc.1.gz
|
||||
%{_mandir}/man1/apropos.mandoc.1.gz
|
||||
%ghost %{_mandir}/man1/apropos.1.gz
|
||||
%{_mandir}/man1/man.mandoc.1.gz
|
||||
%ghost %{_mandir}/man1/man.1.gz
|
||||
%{_mandir}/man1/soelim.mandoc.1.gz
|
||||
%ghost %{_mandir}/man1/soelim.1.gz
|
||||
%{_mandir}/man1/whatis.mandoc.1.gz
|
||||
%ghost %{_mandir}/man1/whatis.1.gz
|
||||
%{_mandir}/man5/mandoc.conf.5.gz
|
||||
%{_mandir}/man5/mandoc.db.5.gz
|
||||
%{_mandir}/man7/eqn.mandoc.7.gz
|
||||
%ghost %{_mandir}/man7/eqn.7.gz
|
||||
%{_mandir}/man7/mandoc_char.7.gz
|
||||
%{_mandir}/man7/man.mandoc.7.gz
|
||||
%ghost %{_mandir}/man7/man.7.gz
|
||||
%{_mandir}/man7/mdoc.7.gz
|
||||
%{_mandir}/man7/roff.mandoc.7.gz
|
||||
%ghost %{_mandir}/man7/roff.7.gz
|
||||
%{_mandir}/man7/tbl.mandoc.7.gz
|
||||
%ghost %{_mandir}/man7/tbl.7.gz
|
||||
%{_mandir}/man8/makewhatis.mandoc.8.gz
|
||||
%ghost %{_mandir}/man8/makewhatis.8.gz
|
||||
|
||||
%files -n libmandoc-devel
|
||||
%license LICENSE
|
||||
%{_libdir}/libmandoc.a
|
||||
%{_includedir}/eqn.h
|
||||
%{_includedir}/man.h
|
||||
%{_includedir}/mandoc.h
|
||||
%{_includedir}/mandoc_aux.h
|
||||
%{_includedir}/mandoc_parse.h
|
||||
%{_includedir}/mdoc.h
|
||||
%{_includedir}/roff.h
|
||||
%{_includedir}/tbl.h
|
||||
%{_mandir}/man3/mandoc.3*
|
||||
%{_mandir}/man3/mandoc_escape.3*
|
||||
%{_mandir}/man3/mandoc_malloc.3*
|
||||
%{_mandir}/man3/mansearch.3*
|
||||
%{_mandir}/man3/mchars_alloc.3*
|
||||
%{_mandir}/man3/tbl.3*
|
||||
|
||||
%changelog
|
||||
* Sat Dec 14 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 1.14.6-10
|
||||
- Rebuilt for MSVSphere 10
|
||||
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.14.6-10
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.14.6-9
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.6-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.6-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Thu Sep 21 2023 David Cantrell <dcantrell@redhat.com> - 1.14.6-6
|
||||
- Convert License tag to SPDX expression
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.6-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Mon Dec 20 2021 David Cantrell <dcantrell@redhat.com> - 1.14.6-1
|
||||
- Upgrade to mandoc-1.14.6 (#2005601)
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.5-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.5-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.5-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed May 20 2020 David Cantrell <dcantrell@redhat.com> - 1.14.5-12
|
||||
- Drop explicit Requires for libmandoc package (#1837690)
|
||||
|
||||
* Tue May 19 2020 David Cantrell <dcantrell@redhat.com> - 1.14.5-11
|
||||
- Per discussion with upstream, drop the shared library patch
|
||||
|
||||
* Tue Apr 14 2020 Björn Esser <besser82@fedoraproject.org> - 1.14.5-10
|
||||
- libmandoc.so must be linked with COMPAT_OBJS
|
||||
- Add patch to fix configure script
|
||||
- Replace plain make with %%make_build
|
||||
|
||||
* Mon Mar 09 2020 David Cantrell <dcantrell@redhat.com> - 1.14.5-9
|
||||
- BR perl-interpreter
|
||||
|
||||
* Mon Mar 09 2020 Nikola Forró <nforro@redhat.com> - 1.14.5-8
|
||||
- Do not use alternatives for mdoc.7
|
||||
|
||||
* Thu Mar 05 2020 David Cantrell <dcantrell@redhat.com> - 1.14.5-7
|
||||
- Build everything using -fPIC
|
||||
|
||||
* Thu Mar 05 2020 David Cantrell <dcantrell@redhat.com> - 1.14.5-6
|
||||
- Include libmandoc.a in libmandoc-devel
|
||||
|
||||
* Tue Feb 25 2020 David Cantrell <dcantrell@redhat.com> - 1.14.5-5
|
||||
- Split alternatives in to 4 sets (nforro)
|
||||
- Use default names for binaries and man pages (nforro)
|
||||
- Do not compress man pages (nforro)
|
||||
- Add missing %%preun requirement (nforro)
|
||||
|
||||
* Mon Feb 24 2020 David Cantrell <dcantrell@redhat.com> - 1.14.5-4
|
||||
- Install the user tools using alternatives (#1785308)
|
||||
|
||||
* Thu Feb 06 2020 David Cantrell <dcantrell@redhat.com> - 1.14.5-3
|
||||
- Simplify the compat preprocessor tests (#1799629)
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Oct 16 2019 David Cantrell <dcantrell@redhat.com> - 1.14.5-1
|
||||
- Update to mandoc-1.14.5
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Mar 25 2019 David Shea <dshea@redhat.com> - 1.14.4-2
|
||||
- Move mdoc.7 to mandoc_mdoc.7 (#1691793)
|
||||
|
||||
* Thu Feb 7 2019 David Shea <dshea@redhat.com> - 1.14.4-1
|
||||
- Initial package
|
Loading…
Reference in new issue