texinfo/texinfo.spec

207 lines
6.1 KiB
RPMSpec
Raw Normal View History

2019-09-30 11:18:22 -04:00
%global tex_texinfo %{_datadir}/texmf/tex/texinfo
2019-11-06 19:54:11 +08:00
%global __provides_exclude ^perl\\(.*Texinfo.*\\)$
%global __requires_exclude ^perl\\(.*Texinfo.*\\)$
2019-09-30 11:18:22 -04:00
Name: texinfo
2023-07-21 14:48:49 +08:00
Version: 7.0.3
Release: 4
2019-11-06 19:54:11 +08:00
Summary: The GNU Documentation System
2019-09-30 11:18:22 -04:00
License: GPLv3+
Url: http://www.gnu.org/software/texinfo/
2020-12-16 14:02:09 +08:00
Source0: https://ftp.gnu.org/gnu/texinfo/texinfo-%{version}.tar.xz
Source1: https://ftp.gnu.org/gnu/texinfo/texinfo-%{version}.tar.xz.sig
#https://git.savannah.gnu.org/cgit/texinfo.git/tree/contrib/fix-info-dir
Source2: fix-info-dir
2019-09-30 11:18:22 -04:00
2023-08-02 09:18:00 +00:00
#patch from :https://src.fedoraproject.org/rpms/texinfo/tee/rawhide
Patch6000: texinfo-6.1-install-info-use-create-tmp-then-rename-pattern.patch
Patch6001: texinfo-6.5-covscan-fixes.patch
Patch6002: texinfo-7.0.2-undef-val-array-ref.patch
Patch6003: info-6.5-sync-fix-info-dir.patch
Patch6004: texinfo-6.5-fix-info-dir.patch
Patch6005: add-support-sw_64.patch
2019-09-30 11:18:22 -04:00
BuildRequires: gcc perl-generators zlib-devel ncurses-devel help2man
BuildRequires: perl(Data::Dumper) perl(Locale::Messages) perl(Unicode::EastAsianWidth) perl(Text::Unidecode) perl(Storable) perl(Unicode::Normalize)
2022-10-26 16:58:33 +08:00
BuildRequires: perl(File::Copy)
2019-09-30 11:18:22 -04:00
%description
2019-11-06 19:54:11 +08:00
Texinfo is a documentation system that uses a single source file to produce
both online information and printed output. Instead of writing different documents
for online presentation and another for printed work, you need have only one document.
2019-09-30 11:18:22 -04:00
2019-11-06 19:54:11 +08:00
Texinfo can produce output in plain ASCII, HTML, its own hypertext format called Info,
and (using TeX) DVI format. It includes the makeinfo program.
2019-09-30 11:18:22 -04:00
%package tex
2019-11-06 19:54:11 +08:00
Summary: Tools for formatting Texinfo documents
2019-09-30 11:18:22 -04:00
Requires: texinfo = %{version}-%{release} tex(tex) tex(epsf.tex)
%ifnarch i686
2022-10-26 16:58:33 +08:00
Requires(post): %{_bindir}/texconfig-sys
Requires(postun): %{_bindir}/texconfig-sys
%endif
Provides: tex-texinfo = %{version}-%{release}
Obsoletes: tex-texinfo < %{version}-%{release}
Provides: texlive-texinfo > 9:2019-15
Obsoletes: texlive-texinfo <= 9:2019-15
2019-09-30 11:18:22 -04:00
%description tex
2019-11-06 19:54:11 +08:00
This package provides tools for format most of the documents
which produced by texinfo documentation system.
2019-09-30 11:18:22 -04:00
%package -n info
2019-11-06 19:54:11 +08:00
Summary: TTY-based reader of the GNU texinfo documentation
2019-09-30 11:18:22 -04:00
%description -n info
2019-11-06 19:54:11 +08:00
This package provides a standalone TTY-based browser program for viewing texinfo files.
2019-09-30 11:18:22 -04:00
%package help
2019-11-06 19:54:11 +08:00
Summary: Documentation for texinfo
2019-09-30 11:18:22 -04:00
%description help
2019-11-06 19:54:11 +08:00
This package contains help documentation for texinfo.
2019-09-30 11:18:22 -04:00
%prep
%setup -q
mkdir contrib
install -Dpm0755 -t contrib %{SOURCE2}
%autopatch -p1
2019-09-30 11:18:22 -04:00
%build
%configure --with-external-Text-Unidecode --with-external-libintl-perl --with-external-Unicode-EastAsianWidth --disable-perl-xs
%make_build
%install
mkdir -p ${RPM_BUILD_ROOT}/sbin
%make_install
mkdir -p $RPM_BUILD_ROOT%{tex_texinfo}
install -p -m644 doc/texinfo.tex doc/txi-??.tex $RPM_BUILD_ROOT%{tex_texinfo}
mv $RPM_BUILD_ROOT%{_bindir}/install-info $RPM_BUILD_ROOT/sbin
install -Dpm0755 -t %{buildroot}%{_sbindir} contrib/fix-info-dir
2019-09-30 11:18:22 -04:00
%find_lang %{name}
%find_lang %{name}_document
%check
export ALL_TESTS=yes
%make_build check
2019-11-06 19:54:11 +08:00
%post
2019-09-30 11:18:22 -04:00
%{_bindir}/texconfig-sys rehash 2> /dev/null || :
2019-11-06 19:54:11 +08:00
%postun
2019-09-30 11:18:22 -04:00
%{_bindir}/texconfig-sys rehash 2> /dev/null || :
%transfiletriggerin help -- %{_infodir}
[ -f %{_infodir}/dir ] && create_arg="" || create_arg="--create"
%{_sbindir}/fix-info-dir $create_arg %{_infodir}/dir &>/dev/null
%transfiletriggerpostun help -- %{_infodir}
[ -f %{_infodir}/dir ] && %{_sbindir}/fix-info-dir --delete %{_infodir}/dir &>/dev/null
%files -f %{name}.lang -f %{name}_document.lang
%doc AUTHORS ChangeLog NEWS README TODO
%license COPYING
%{_bindir}/makeinfo
%{_bindir}/pod2texi
2019-11-06 19:54:11 +08:00
%{_bindir}/texi2any
2019-09-30 11:18:22 -04:00
%{_datadir}/texinfo
%files tex
2019-11-06 19:54:11 +08:00
%{tex_texinfo}/
%{_bindir}/pdftexi2dvi
2019-09-30 11:18:22 -04:00
%{_bindir}/texindex
%{_bindir}/texi2dvi
%{_bindir}/texi2pdf
%files -n info
%license COPYING
%{_bindir}/info
%{_sbindir}/fix-info-dir
2019-11-06 19:54:11 +08:00
/sbin/install-info
%ghost %{_infodir}/dir
%ghost %{_infodir}/dir.old
2023-07-21 14:48:49 +08:00
%{_infodir}/texi2any_api.info.gz
%{_infodir}/texi2any_internals.info.gz
2019-09-30 11:18:22 -04:00
%files help
%license COPYING
%{_infodir}/info-stnd.info*
2019-11-06 19:54:11 +08:00
%{_infodir}/texinfo*
%{_mandir}/man1/makeinfo.1*
%{_mandir}/man1/pdftexi2dvi.1*
%{_mandir}/man1/pod2texi.1*
2019-09-30 11:18:22 -04:00
%{_mandir}/man1/info.1*
%{_mandir}/man1/install-info.1*
%{_mandir}/man1/texi2dvi.1*
%{_mandir}/man1/texi2pdf.1*
2019-11-06 19:54:11 +08:00
%{_mandir}/man1/texindex.1*
2019-09-30 11:18:22 -04:00
%{_mandir}/man1/texi2any.1*
2019-11-06 19:54:11 +08:00
%{_mandir}/man5/info.5*
%{_mandir}/man5/texinfo.5*
2019-09-30 11:18:22 -04:00
%changelog
* Fri Mar 28 2025 yueyaoqiang <yueyaoqiang@kylinos.cn> - 7.0.3-4
- add support sw_64
* Tue Aug 29 2023 zhouwenpei <zhouwenpei1@h-partners.com> - 7.0.3-3
- add fix-info-dir command
2023-08-02 09:18:00 +00:00
* Wed Aug 02 2023 zhouwenpei <zhouwenpei1@h-partners.com> - 7.0.3-2
- fix undefined value error
2023-07-21 14:48:49 +08:00
* Fri Jul 21 2023 zhangchenglin <zhanchenglin@kylinos.cn> - 7.0.3-1
- update to 7.0.3
2023-02-13 11:14:35 +00:00
* Mon Feb 13 2023 zhouwenpei <zhouwenpei1@h-partners.com> - 6.8-5
- revent "update to 7.0.2"
2023-02-07 08:17:36 +00:00
* Tue Feb 07 2023 zhouwenpei <zhouwenpei1@h-partners.com> - 7.0.2-1
- update to 7.0.2
2022-10-26 16:58:33 +08:00
* Wed Oct 26 2022 misaka00251 <liuxin@iscas.ac.cn> - 6.8-4
- Upgrade texlive version to 2021
* Sat Feb 19 2022 yangcheng <yangcheng87@h-partners.com> - 6.8-3
- add i686 options,fix build failure on i686
* Fri Feb 18 2022 yangcheng <yangcheng87@h-partners.com> - 6.8-2
- Move files to info subpackage to solve uninstall error
* Sat Dec 04 2021 wuchaochao <wuchaochao4@huawei.com> - 6.8-1
- update version to 6.8
2020-12-16 14:02:09 +08:00
* Wed Dec 16 2020 zhanzhimin <zhanzhimin@huawei.com> - 6.7-2
- Update Source0
* Fri Jul 17 2020 chengguipeng <chengguipeng1@huawei.com> - 6.7-1
- upgrade to 6.7-1
2020-01-10 11:34:59 +08:00
* Fri Jan 10 2020 openEuler Buildteam <buildteam@openeuler.org> - 6.6-2
- update to 6.6-2
2019-11-06 19:54:11 +08:00
* Tue Oct 29 2019 openEuler Buildteam <buildteam@openeuler.org> - 6.5-17
- Move tex_texinfo from help to tex package
* Sat Oct 26 2019 openEuler Buildteam <buildteam@openeuler.org> - 6.5-16
- Adjust the format and description
* Fri Oct 25 2019 openEuler Buildteam <buildteam@openeuler.org> - 6.5-15
- Type:bugfix
- Id:NA
- SUG:NA
- DESC: Restore previous version of 6.5-13
* Mon Oct 21 2019 openEuler Buildteam <buildteam@openeuler.org> - 6.5-14
- remove rpm texinfo-tex, info
2019-09-30 11:18:22 -04:00
* Wed Sep 26 2019 openEuler Buildteam <buildteam@openeuler.org> - 6.5-13
2019-11-06 19:54:11 +08:00
- Add rpm texinfo-tex, info
2019-09-30 11:18:22 -04:00
* Tue Sep 17 2019 openEuler Buildteam <buildteam@openeuler.org> - 6.5-12
- Package init