Codebase list texinfo / 78c458c
update patches, remove upstream applied ones Norbert Preining 6 years ago
4 changed file(s) with 2 addition(s) and 35 deletion(s). Raw diff Collapse all Expand all
44
55 --- texinfo.orig/doc/Makefile.in
66 +++ texinfo/doc/Makefile.in
7 @@ -258,14 +258,16 @@
7 @@ -259,14 +259,16 @@
88 am__v_texidevnull_ = $(am__v_texidevnull_@AM_DEFAULT_V@)
99 am__v_texidevnull_0 = > /dev/null
1010 am__v_texidevnull_1 =
2323 TEXI2DVI = texi2dvi
2424 TEXI2PDF = $(TEXI2DVI) --pdf --batch
2525 MAKEINFOHTML = $(MAKEINFO) --html
26 @@ -1136,8 +1138,10 @@
26 @@ -1138,8 +1140,10 @@
2727 top_builddir = @top_builddir@
2828 top_srcdir = @top_srcdir@
2929 SUBDIRS = tp_api
+0
-17
debian/patches/reproducible-makeinfo less more
0 make makeinfo honor S_D_E
1 patch by Alexis Bienvenüe (Closes: #826158)
2 ---
3 tp/Texinfo/Common.pm | 2 +-
4 1 file changed, 1 insertion(+), 1 deletion(-)
5
6 --- texinfo.orig/tp/Texinfo/Common.pm
7 +++ texinfo/tp/Texinfo/Common.pm
8 @@ -1209,7 +1209,7 @@
9 return {'text' => 'a sunny day'};
10 }
11 my($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst)
12 - = localtime(time);
13 + = ($ENV{SOURCE_DATE_EPOCH} ? gmtime($ENV{SOURCE_DATE_EPOCH}) : localtime(time));
14 $year += ($year < 70) ? 2000 : 1900;
15 return $self->gdt('{month} {day}, {year}',
16 { 'month' => $self->gdt($MONTH_NAMES[$mon]),
11 numerical-signal-names
22 dont_build_info
33 info-manpage-mentiones-nonfree
4 reproducible-makeinfo
5 upstream-fix-info-links
+0
-14
debian/patches/upstream-fix-info-links less more
0 ---
1 info/info-utils.c | 1 +
2 1 file changed, 1 insertion(+)
3
4 --- texinfo.orig/info/info-utils.c
5 +++ texinfo/info/info-utils.c
6 @@ -1281,6 +1281,7 @@
7 canonicalize_whitespace (entry->nodename);
8 if (!len)
9 return 0; /* Input invalid. */
10 + canonicalize_whitespace (entry->nodename);
11 label_len += len;
12 }
13 else