forked from pool/texinfo
- Update to version 6.5:
* info: + some bugs fixed: a bug where a segfault could happen in the regex search, for example when the user entered a single \ as the search string + another bug which could make nodes inaccessible in long "split" info files + a bug where it was not possible to follow a cross-reference that was split across more than one line has been fixed + do not fall back to a man page if following a cross-reference in an info file failed + if looking for a file failed, do not convert the name of a file to lower-case and look for it again * texinfo.tex + some faulty definitions for Unicode characters have been changed or removed + fix indentation in table of contents for entries that are split across multiple lines * texi2dvi + a bug that broke the processing of LaTeX files that did not use BibTeX has been fixed * texi2any + output the encoding declaration of a HTML file earlier so it will always occur within first 1024 bytes of file + `INLINE_INSERTCOPYING' removed as a customization variable OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/texinfo?expand=0&rev=49
This commit is contained in:
parent
050af47ea4
commit
ebd8970604
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6ae2e61d87c6310f9af7c6f2426bd0470f251d1a6deb61fba83a3b3baff32c3a
|
|
||||||
size 4497624
|
|
@ -1,7 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
Version: GnuPG v1
|
|
||||||
|
|
||||||
iF4EABEIAAYFAllNTUoACgkQ3bxXnas3+6mbHgD/Up8qPYIhjUJ6MlwdreXAGE3a
|
|
||||||
8cYxYQPac7sZr4JdNh0BAK9Be9fz/e4eF/tbKUYNwwlrh9VGXIslXidnwFxJ/ugE
|
|
||||||
=uZzy
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
texinfo-6.5.tar.xz
Normal file
3
texinfo-6.5.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:77774b3f4a06c20705cc2ef1c804864422e3cf95235e965b1f00a46df7da5f62
|
||||||
|
size 4503048
|
7
texinfo-6.5.tar.xz.sig
Normal file
7
texinfo-6.5.tar.xz.sig
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
Version: GnuPG v1
|
||||||
|
|
||||||
|
iF4EABEIAAYFAlm4QBsACgkQ3bxXnas3+6mlNwD/Tzn0IxHxWCII18A72dLZ0rDB
|
||||||
|
0GtvrWV4c/wtYHSGSNEA/3iIAv2qbGreDAXAzLHKsWm5vKzFvRPeDS7GBJQg018q
|
||||||
|
=EUkI
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -1,8 +1,8 @@
|
|||||||
Index: texinfo-6.4/install-info/Makefile.in
|
Index: texinfo-6.5/install-info/Makefile.in
|
||||||
===================================================================
|
===================================================================
|
||||||
--- texinfo-6.4.orig/install-info/Makefile.in
|
--- texinfo-6.5.orig/install-info/Makefile.in
|
||||||
+++ texinfo-6.4/install-info/Makefile.in
|
+++ texinfo-6.5/install-info/Makefile.in
|
||||||
@@ -221,7 +221,7 @@ am__installdirs = "$(DESTDIR)$(bindir)"
|
@@ -222,7 +222,7 @@ am__installdirs = "$(DESTDIR)$(bindir)"
|
||||||
PROGRAMS = $(bin_PROGRAMS)
|
PROGRAMS = $(bin_PROGRAMS)
|
||||||
am_ginstall_info_OBJECTS = install-info.$(OBJEXT)
|
am_ginstall_info_OBJECTS = install-info.$(OBJEXT)
|
||||||
ginstall_info_OBJECTS = $(am_ginstall_info_OBJECTS)
|
ginstall_info_OBJECTS = $(am_ginstall_info_OBJECTS)
|
||||||
@ -11,10 +11,10 @@ Index: texinfo-6.4/install-info/Makefile.in
|
|||||||
am__DEPENDENCIES_1 =
|
am__DEPENDENCIES_1 =
|
||||||
ginstall_info_DEPENDENCIES = $(top_builddir)/gnulib/lib/libgnu.a \
|
ginstall_info_DEPENDENCIES = $(top_builddir)/gnulib/lib/libgnu.a \
|
||||||
$(am__DEPENDENCIES_1)
|
$(am__DEPENDENCIES_1)
|
||||||
Index: texinfo-6.4/install-info/install-info.c
|
Index: texinfo-6.5/install-info/install-info.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- texinfo-6.4.orig/install-info/install-info.c
|
--- texinfo-6.5.orig/install-info/install-info.c
|
||||||
+++ texinfo-6.4/install-info/install-info.c
|
+++ texinfo-6.5/install-info/install-info.c
|
||||||
@@ -22,6 +22,7 @@
|
@@ -22,6 +22,7 @@
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
|
@ -1,3 +1,32 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 4 14:18:03 UTC 2018 - mpluskal@suse.com
|
||||||
|
|
||||||
|
- Update to version 6.5:
|
||||||
|
* info:
|
||||||
|
+ some bugs fixed:
|
||||||
|
a bug where a segfault could happen in the regex search, for
|
||||||
|
example when the user entered a single \ as the search string
|
||||||
|
+ another bug which could make nodes inaccessible in long
|
||||||
|
"split" info files
|
||||||
|
+ a bug where it was not possible to follow a cross-reference
|
||||||
|
that was split across more than one line has been fixed
|
||||||
|
+ do not fall back to a man page if following a cross-reference
|
||||||
|
in an info file failed
|
||||||
|
+ if looking for a file failed, do not convert the name of a
|
||||||
|
file to lower-case and look for it again
|
||||||
|
* texinfo.tex
|
||||||
|
+ some faulty definitions for Unicode characters have been
|
||||||
|
changed or removed
|
||||||
|
+ fix indentation in table of contents for entries that are
|
||||||
|
split across multiple lines
|
||||||
|
* texi2dvi
|
||||||
|
+ a bug that broke the processing of LaTeX files that did not
|
||||||
|
use BibTeX has been fixed
|
||||||
|
* texi2any
|
||||||
|
+ output the encoding declaration of a HTML file earlier so it
|
||||||
|
will always occur within first 1024 bytes of file
|
||||||
|
+ `INLINE_INSERTCOPYING' removed as a customization variable
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 9 07:20:30 UTC 2017 - werner@suse.de
|
Mon Oct 9 07:20:30 UTC 2017 - werner@suse.de
|
||||||
|
|
||||||
|
13
texinfo.spec
13
texinfo.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package texinfo
|
# spec file for package texinfo
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,13 +16,15 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
# perl modules are not installed in global path
|
||||||
|
%global __provides_exclude ^(libtool|perl)\\(
|
||||||
Name: texinfo
|
Name: texinfo
|
||||||
Version: 6.4
|
Version: 6.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tools Needed to Create Documentation from Texinfo Sources
|
Summary: Tools Needed to Create Documentation from Texinfo Sources
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
Group: Productivity/Publishing/Texinfo
|
Group: Productivity/Publishing/Texinfo
|
||||||
Url: https://www.gnu.org/software/texinfo/
|
URL: https://www.gnu.org/software/texinfo/
|
||||||
Source0: https://ftp.gnu.org/pub/gnu/texinfo/texinfo-%{version}.tar.xz
|
Source0: https://ftp.gnu.org/pub/gnu/texinfo/texinfo-%{version}.tar.xz
|
||||||
Source1: https://ftp.gnu.org/pub/gnu/texinfo/texinfo-%{version}.tar.xz.sig
|
Source1: https://ftp.gnu.org/pub/gnu/texinfo/texinfo-%{version}.tar.xz.sig
|
||||||
Source2: %{name}.keyring
|
Source2: %{name}.keyring
|
||||||
@ -53,9 +55,6 @@ Requires(preun): %{install_info_prereq}
|
|||||||
Recommends: texi2html
|
Recommends: texi2html
|
||||||
Recommends: texi2roff
|
Recommends: texi2roff
|
||||||
|
|
||||||
# perl modules are not installed in global path
|
|
||||||
%global __provides_exclude ^(libtool|perl)\\(
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Texinfo is a documentation system that uses a single source file to
|
Texinfo is a documentation system that uses a single source file to
|
||||||
produce both online information and printed output. Using Texinfo, you
|
produce both online information and printed output. Using Texinfo, you
|
||||||
@ -79,9 +78,9 @@ reader" to read the manuals.
|
|||||||
%package -n makeinfo
|
%package -n makeinfo
|
||||||
Summary: Translate Texinfo documents to info format
|
Summary: Translate Texinfo documents to info format
|
||||||
Group: Productivity/Publishing/Texinfo
|
Group: Productivity/Publishing/Texinfo
|
||||||
%requires_eq perl
|
|
||||||
# /usr/share/texinfo/Texinfo/Convert/NodeNameNormalization.pm uses Text::Unidecode
|
# /usr/share/texinfo/Texinfo/Convert/NodeNameNormalization.pm uses Text::Unidecode
|
||||||
Requires: perl(Text::Unidecode)
|
Requires: perl(Text::Unidecode)
|
||||||
|
%requires_eq perl
|
||||||
Suggests: texinfo
|
Suggests: texinfo
|
||||||
Provides: texinfo:%{_bindir}/makeinfo
|
Provides: texinfo:%{_bindir}/makeinfo
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user