Sync from SUSE:SLFO:Main texlive revision 4dfba7e6dc4145ac98c3851a9202e1b3
This commit is contained in:
parent
7462a00e95
commit
09712165d2
BIN
biblatex-biber-ms.tar.gz
(Stored with Git LFS)
BIN
biblatex-biber-ms.tar.gz
(Stored with Git LFS)
Binary file not shown.
@ -5,7 +5,7 @@
|
||||
|
||||
--- configure
|
||||
+++ configure 2018-04-10 08:58:00.463820598 +0000
|
||||
@@ -22157,6 +22157,10 @@ fi
|
||||
@@ -22834,6 +22834,10 @@ fi
|
||||
# most powerpc-linux boxes support dynamic linking these days and
|
||||
# people can always --disable-shared, the test was removed, and we
|
||||
# assume the GNU/Linux dynamic linker is in use.
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
--- m4/libtool.m4
|
||||
+++ m4/libtool.m4 2018-04-10 08:58:00.463820598 +0000
|
||||
@@ -2884,6 +2884,10 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu
|
||||
@@ -2904,6 +2904,10 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu
|
||||
# most powerpc-linux boxes support dynamic linking these days and
|
||||
# people can always --disable-shared, the test was removed, and we
|
||||
# assume the GNU/Linux dynamic linker is in use.
|
||||
|
@ -1,118 +0,0 @@
|
||||
---
|
||||
texk/dvipsk/writet1.c | 15 ++++++++++++---
|
||||
texk/web2c/luatexdir/font/writet1.c | 15 ++++++++++++---
|
||||
texk/web2c/pdftexdir/writet1.c | 15 ++++++++++++---
|
||||
3 files changed, 36 insertions(+), 9 deletions(-)
|
||||
|
||||
--- texk/dvipsk/writet1.c
|
||||
+++ texk/dvipsk/writet1.c 2024-04-02 00:00:00.000000000 +0000
|
||||
@@ -769,7 +769,10 @@ static char **t1_builtin_enc(void)
|
||||
*t1_buf_array == '/' && valid_code(i)) {
|
||||
if (strcmp(t1_buf_array + 1, notdef) != 0)
|
||||
glyph_names[i] = xstrdup(t1_buf_array + 1);
|
||||
- p = strstr(p, " put") + strlen(" put");
|
||||
+ p = strstr(p, " put");
|
||||
+ if (!p)
|
||||
+ pdftex_fail("invalid pfb, no put found in dup");
|
||||
+ p += strlen(" put");
|
||||
skip(p, ' ');
|
||||
}
|
||||
/*
|
||||
@@ -778,7 +781,10 @@ static char **t1_builtin_enc(void)
|
||||
else if (sscanf(p, "dup dup %i exch %i get put", &b, &a) == 2
|
||||
&& valid_code(a) && valid_code(b)) {
|
||||
copy_glyph_names(glyph_names, a, b);
|
||||
- p = strstr(p, " get put") + strlen(" get put");
|
||||
+ p = strstr(p, " get put");
|
||||
+ if (!p)
|
||||
+ pdftex_fail("invalid pfb, no get put found in dup dup");
|
||||
+ p += strlen(" get put");
|
||||
skip(p, ' ');
|
||||
}
|
||||
/*
|
||||
@@ -789,7 +795,10 @@ static char **t1_builtin_enc(void)
|
||||
&& valid_code(a) && valid_code(b) && valid_code(c)) {
|
||||
for (i = 0; i < c; i++)
|
||||
copy_glyph_names(glyph_names, a + i, b + i);
|
||||
- p = strstr(p, " putinterval") + strlen(" putinterval");
|
||||
+ p = strstr(p, " putinterval");
|
||||
+ if (!p)
|
||||
+ pdftex_fail("invalid pfb, no putinterval found in dup dup");
|
||||
+ p += strlen(" putinterval");
|
||||
skip(p, ' ');
|
||||
}
|
||||
/*
|
||||
--- texk/web2c/luatexdir/font/writet1.c
|
||||
+++ texk/web2c/luatexdir/font/writet1.c 2024-04-02 12:52:03.939492105 +0000
|
||||
@@ -814,13 +814,19 @@ static char **t1_builtin_enc(void)
|
||||
*t1_buf_array == '/' && valid_code(i)) {
|
||||
if (strcmp(t1_buf_array + 1, notdef) != 0)
|
||||
glyph_names[i] = xstrdup(t1_buf_array + 1);
|
||||
- p = strstr(p, " put") + strlen(" put");
|
||||
+ p = strstr(p, " put");
|
||||
+ if (!p)
|
||||
+ formatted_error("type 1","invalid pfb, no put found in dup");
|
||||
+ p += strlen(" put");
|
||||
skip_char(p, ' ');
|
||||
}
|
||||
/*tex Check for |dup dup <to> exch <from> get put|. */
|
||||
else if (sscanf(p, "dup dup %i exch %i get put", &b, &a) == 2 && valid_code(a) && valid_code(b)) {
|
||||
copy_glyph_names(glyph_names, a, b);
|
||||
- p = strstr(p, " get put") + strlen(" get put");
|
||||
+ p = strstr(p, " get put");
|
||||
+ if (!p)
|
||||
+ formatted_error("type 1","invalid pfb, no get put found in dup dupp");
|
||||
+ p += strlen(" get put");
|
||||
skip_char(p, ' ');
|
||||
}
|
||||
/*tex Check for |dup dup <from> <size> getinterval <to> exch putinterval|. */
|
||||
@@ -828,7 +834,10 @@ static char **t1_builtin_enc(void)
|
||||
&a, &c, &b) == 3 && valid_code(a) && valid_code(b) && valid_code(c)) {
|
||||
for (i = 0; i < c; i++)
|
||||
copy_glyph_names(glyph_names, a + i, b + i);
|
||||
- p = strstr(p, " putinterval") + strlen(" putinterval");
|
||||
+ p = strstr(p, " putinterval");
|
||||
+ if (!p)
|
||||
+ formatted_error("type 1","invalid pfb, no putinterval found in dup dup");
|
||||
+ p += strlen(" putinterval");
|
||||
skip_char(p, ' ');
|
||||
}
|
||||
/*tex Check for |def or |readonly def|. */
|
||||
--- texk/web2c/pdftexdir/writet1.c
|
||||
+++ texk/web2c/pdftexdir/writet1.c 2024-04-02 00:00:00.000000000 +0000
|
||||
@@ -841,7 +841,10 @@ static char **t1_builtin_enc(void)
|
||||
*t1_buf_array == '/' && valid_code(i)) {
|
||||
if (strcmp(t1_buf_array + 1, notdef) != 0)
|
||||
glyph_names[i] = xstrdup(t1_buf_array + 1);
|
||||
- p = strstr(p, " put") + strlen(" put");
|
||||
+ p = strstr(p, " put");
|
||||
+ if (!p)
|
||||
+ pdftex_fail("invalid pfb, no put found in dup");
|
||||
+ p += strlen(" put");
|
||||
skip(p, ' ');
|
||||
}
|
||||
/*
|
||||
@@ -850,7 +853,10 @@ static char **t1_builtin_enc(void)
|
||||
else if (sscanf(p, "dup dup %i exch %i get put", &b, &a) == 2
|
||||
&& valid_code(a) && valid_code(b)) {
|
||||
copy_glyph_names(glyph_names, a, b);
|
||||
- p = strstr(p, " get put") + strlen(" get put");
|
||||
+ p = strstr(p, " get put");
|
||||
+ if (!p)
|
||||
+ pdftex_fail("invalid pfb, no get put found in dup dup");
|
||||
+ p += strlen(" get put");
|
||||
skip(p, ' ');
|
||||
}
|
||||
/*
|
||||
@@ -861,7 +867,10 @@ static char **t1_builtin_enc(void)
|
||||
&& valid_code(a) && valid_code(b) && valid_code(c)) {
|
||||
for (i = 0; i < c; i++)
|
||||
copy_glyph_names(glyph_names, a + i, b + i);
|
||||
- p = strstr(p, " putinterval") + strlen(" putinterval");
|
||||
+ p = strstr(p, " putinterval");
|
||||
+ if (!p)
|
||||
+ pdftex_fail("invalid pfb, no putinterval found in dup dup");
|
||||
+ p += strlen(" putinterval");
|
||||
skip(p, ' ');
|
||||
}
|
||||
/*
|
@ -1,25 +0,0 @@
|
||||
---
|
||||
texk/web2c/pdftexdir/tounicode.c | 9 ++++++++-
|
||||
1 file changed, 8 insertions(+), 1 deletion(-)
|
||||
|
||||
--- texk/web2c/pdftexdir/tounicode.c
|
||||
+++ texk/web2c/pdftexdir/tounicode.c 2024-04-02 00:00:00.000000000 +0000
|
||||
@@ -535,10 +535,17 @@ void undumptounicode(void)
|
||||
void **result;
|
||||
glyph_unicode_entry *gu = new_glyph_unicode_entry();
|
||||
undumpcharptr(gu->name);
|
||||
+ if (gu->name == NULL) {
|
||||
+ pdftex_fail("undumpcharptr(gu->name) got NULL");
|
||||
+ }
|
||||
generic_undump(gu->code);
|
||||
|
||||
- if (gu->code == UNI_STRING)
|
||||
+ if (gu->code == UNI_STRING) {
|
||||
undumpcharptr(gu->unicode_seq);
|
||||
+ if (gu->unicode_seq == NULL) {
|
||||
+ pdftex_fail("undumpcharptr(gu->unicode_seq) got NULL");
|
||||
+ }
|
||||
+ }
|
||||
|
||||
result = avl_probe(glyph_unicode_tree, gu);
|
||||
assert(*result == gu);
|
@ -30,19 +30,19 @@
|
||||
ac_configure_args="$ac_configure_args '--enable-native-texlive-build'"])
|
||||
AS_CASE([$enable_largefile],
|
||||
--- texk/dvipdfm-x/configure.ac
|
||||
+++ texk/dvipdfm-x/configure.ac 2022-04-05 13:26:16.097900669 +0000
|
||||
+++ texk/dvipdfm-x/configure.ac 2024-03-14 13:33:50.007973975 +0000
|
||||
@@ -8,7 +8,7 @@ dnl This file is free software; the co
|
||||
dnl gives unlimited permission to copy and/or distribute it,
|
||||
dnl with or without modifications, as long as this notice is preserved.
|
||||
dnl
|
||||
-AC_INIT([dvipdfm-x (TeX Live)], [20220710], [dvipdfmx@tug.org])
|
||||
+AC_INIT([dvipdfm (TeX Live)], [20220710], [dvipdfmx@tug.org])
|
||||
-AC_INIT([dvipdfm-x (TeX Live)], [20240305], [dvipdfmx@tug.org])
|
||||
+AC_INIT([dvipdfm (TeX Live)], [20240305], [dvipdfmx@tug.org])
|
||||
AC_PREREQ([2.65])
|
||||
AC_CONFIG_SRCDIR([agl.c])
|
||||
AC_CONFIG_AUX_DIR([../../build-aux])
|
||||
--- texk/dvisvgm/configure.ac
|
||||
+++ texk/dvisvgm/configure.ac 2022-04-05 13:23:04.449415706 +0000
|
||||
@@ -61,6 +61,7 @@ if test "x$enable_native_texlive_build"
|
||||
@@ -58,6 +58,7 @@ if test "x$enable_native_texlive_build"
|
||||
HAVE_LIBGS=0
|
||||
else
|
||||
have_libgs=yes
|
||||
|
@ -20,7 +20,7 @@
|
||||
/* DECNUMDIGITS is the default number of digits that can be held in */
|
||||
/* the structure. If undefined, 1 is assumed and it is assumed */
|
||||
--- texk/web2c/mplibdir/decNumber.h
|
||||
+++ texk/web2c/mplibdir/decNumber.h 2023-03-28 09:46:33.962871087 +0000
|
||||
+++ texk/web2c/mplibdir/decNumber.h 2024-03-14 13:37:48.247593063 +0000
|
||||
@@ -40,8 +40,10 @@
|
||||
/* constant. This must not be changed without recompiling the */
|
||||
/* decNumber library modules. */
|
||||
|
55
source-dvipdfm-x.dif
Normal file
55
source-dvipdfm-x.dif
Normal file
@ -0,0 +1,55 @@
|
||||
2024-04-07 Yukimasa Morimi <h20y6m@yahoo.co.jp>
|
||||
* pdfximage.c: fix an issue where the PDF becomes large when
|
||||
inserting the same image multiple times.
|
||||
https://github.com/texjporg/tex-jp-build/pull/169
|
||||
|
||||
---
|
||||
texk/dvipdfm-x/pdfximage.c | 29 ++++++++++++++++-------------
|
||||
1 file changed, 16 insertions(+), 13 deletions(-)
|
||||
|
||||
--- texk/dvipdfm-x/pdfximage.c 2024-03-05 00:40:55.000000000 +0100
|
||||
+++ texk/dvipdfm-x/pdfximage.c 2024-04-12 14:22:48.800914761 +0200
|
||||
@@ -396,6 +396,8 @@ load_image (const char *ident, const cha
|
||||
int utf8name_failed = 0;
|
||||
#endif /* WIN32 */
|
||||
|
||||
+#define dpx_streq(a, b) ((a) == (b) || (a) && (b) && strcmp(a, b) == 0)
|
||||
+
|
||||
int
|
||||
pdf_ximage_load_image (const char *ident, const char *filename, load_options options)
|
||||
{
|
||||
@@ -408,20 +410,21 @@ pdf_ximage_load_image (const char *ident
|
||||
|
||||
for (i = 0; i < ic->count; i++) {
|
||||
I = &ic->ximages[i];
|
||||
- if (I->filename && !strcmp(filename, I->filename)) {
|
||||
- id = i;
|
||||
- break;
|
||||
- }
|
||||
- }
|
||||
- if (id >= 0) {
|
||||
- if (I->attr.page_no == options.page_no &&
|
||||
- (I->attr.page_name && options.page_name &&
|
||||
- strcmp(I->attr.page_name, options.page_name) == 0) &&
|
||||
- !pdf_compare_object(I->attr.dict, options.dict) && /* ????? */
|
||||
- I->attr.bbox_type == options.bbox_type) {
|
||||
- return id;
|
||||
- }
|
||||
+ if (I->filename == NULL || strcmp(filename, I->filename) != 0)
|
||||
+ continue;
|
||||
+ id = i;
|
||||
f = I->fullname;
|
||||
+
|
||||
+ if (I->attr.page_no != options.page_no)
|
||||
+ continue;
|
||||
+ if (!dpx_streq(I->attr.page_name, options.page_name))
|
||||
+ continue;
|
||||
+ if (pdf_compare_object(I->attr.dict, options.dict) != 0) /* ????? */
|
||||
+ continue;
|
||||
+ if (I->attr.bbox_type != options.bbox_type)
|
||||
+ continue;
|
||||
+
|
||||
+ return id;
|
||||
}
|
||||
if (f) {
|
||||
/* we already have converted this file; f is the temporary file name */
|
@ -60,7 +60,7 @@
|
||||
+exec dvitodvi -q '2:707@0(-5.5mm,-10mm)+1(190mm,-10mm)' $1 $2
|
||||
--- texk/seetexk/configure
|
||||
+++ texk/seetexk/configure 2021-04-07 09:56:20.322745677 +0000
|
||||
@@ -15586,7 +15586,7 @@ elif test "x$need_kpathsea:$with_system_
|
||||
@@ -16075,7 +16075,7 @@ elif test "x$need_kpathsea:$with_system_
|
||||
as_fn_error $? "did not find kpathsea" "$LINENO" 5
|
||||
fi
|
||||
else
|
||||
@ -71,15 +71,15 @@
|
||||
KPATHSEA_RULE='# Rebuild libkpathsea
|
||||
--- texk/seetexk/dvibook.c
|
||||
+++ texk/seetexk/dvibook.c 2021-04-07 09:59:15.141300494 +0000
|
||||
@@ -46,6 +46,7 @@ extern char *optarg;
|
||||
extern int optind;
|
||||
@@ -49,6 +49,7 @@ extern int optind;
|
||||
#include <sys/stat.h>
|
||||
#endif
|
||||
|
||||
+#include <stdlib.h>
|
||||
#include "types.h"
|
||||
#include "dviclass.h"
|
||||
#include "dvicodes.h"
|
||||
@@ -54,6 +55,8 @@ extern int optind;
|
||||
@@ -57,6 +58,8 @@ extern int optind;
|
||||
#include "gripes.h"
|
||||
#include "search.h"
|
||||
#include <stdio.h>
|
||||
@ -88,7 +88,7 @@
|
||||
#include <ctype.h>
|
||||
#include "seek.h"
|
||||
#include "common.h"
|
||||
@@ -123,10 +126,6 @@ i32 Count[10]; /* the 10 \count variabl
|
||||
@@ -126,10 +129,6 @@ i32 Count[10]; /* the 10 \count variabl
|
||||
/* save some string space: we use this a lot */
|
||||
char writeerr[] = "error writing DVI file";
|
||||
|
||||
@ -101,8 +101,8 @@
|
||||
* Older versions of 4BSD have `char *sprintf()'. ANSI and
|
||||
--- texk/seetexk/dviconcat.c
|
||||
+++ texk/seetexk/dviconcat.c 2021-04-07 09:56:20.322745677 +0000
|
||||
@@ -43,6 +43,8 @@ extern char *optarg;
|
||||
extern int optind;
|
||||
@@ -46,6 +46,8 @@ extern int optind;
|
||||
#include <sys/stat.h>
|
||||
#endif
|
||||
|
||||
+#include <stdlib.h>
|
||||
@ -110,7 +110,7 @@
|
||||
#include "types.h"
|
||||
#include "dviclass.h"
|
||||
#include "dvicodes.h"
|
||||
@@ -110,10 +112,6 @@ char writeerr[] = "error writing DVI fil
|
||||
@@ -113,10 +115,6 @@ char writeerr[] = "error writing DVI fil
|
||||
|
||||
static void HandleDVIFile(void);
|
||||
|
||||
@ -143,7 +143,7 @@
|
||||
/*
|
||||
* You may get lint warnings about sprintf's return value.
|
||||
* Older versions of 4BSD have `char *sprintf()'. ANSI and
|
||||
@@ -633,7 +631,7 @@ Usage: %s [-s] [-i infile] [-o outfile]
|
||||
@@ -635,7 +633,7 @@ Usage: %s [-s] [-i infile] [-o outfile]
|
||||
static struct pagelist *
|
||||
InstallPL(struct pagesel *ps, int n, int absolute)
|
||||
{
|
||||
@ -243,7 +243,7 @@
|
||||
putbyte(outf, DVI_PRE);
|
||||
putbyte(outf, DVI_VERSION);
|
||||
PutLong(outf, Numerator);
|
||||
@@ -639,6 +657,7 @@ main(int argc, char **argv)
|
||||
@@ -641,6 +659,7 @@ main(int argc, char **argv)
|
||||
Width = 0;
|
||||
Height = 0;
|
||||
Magnification = 1000;
|
||||
@ -251,7 +251,7 @@
|
||||
Modulo = 1;
|
||||
|
||||
ProgName = *argv;
|
||||
@@ -750,12 +769,16 @@ Usage: %s [-q] [-i infile] [-o outfile]
|
||||
@@ -752,12 +771,16 @@ Usage: %s [-q] [-i infile] [-o outfile]
|
||||
if (fseek(inf, 16L, 1) == -1)
|
||||
error(1, -1, "can't seek postamble");
|
||||
if (Height == 0) /* get height from postamble */
|
||||
|
41
source-luacore.dif
Normal file
41
source-luacore.dif
Normal file
@ -0,0 +1,41 @@
|
||||
---
|
||||
texk/kpathsea/tex-file.c | 14 +++++++++++++-
|
||||
1 file changed, 13 insertions(+), 1 deletion(-)
|
||||
|
||||
--- texk/kpathsea/tex-file.c
|
||||
+++ texk/kpathsea/tex-file.c 2024-03-22 10:05:55.034645098 +0000
|
||||
@@ -21,7 +21,9 @@
|
||||
|
||||
#include <kpathsea/c-fopen.h>
|
||||
#include <kpathsea/c-pathch.h>
|
||||
+#include <errno.h>
|
||||
#include <stdarg.h>
|
||||
+#include <unistd.h>
|
||||
#include <kpathsea/cnf.h>
|
||||
#include <kpathsea/absolute.h>
|
||||
#include <kpathsea/concatn.h>
|
||||
@@ -1316,13 +1318,23 @@ kpathsea_name_ok (kpathsea kpse, const_s
|
||||
TEXMFSYSVAR. */
|
||||
if (extended) {
|
||||
const_string texmfvar = kpathsea_var_value (kpse, "TEXMFVAR");
|
||||
+ string cache = kpathsea_var_value (kpse, "VARTEXFONTS");
|
||||
+ int fa = access(cache, W_OK);
|
||||
+ if (fa != 0) {
|
||||
+ string home = getenv ("HOME");
|
||||
+ cache = concat3 (home, "/", ".cache/texmf/fonts");
|
||||
+ }
|
||||
if (!abs_fname_ok (expanded_fname, texmfvar)) {
|
||||
const_string texmfsysvar
|
||||
= kpathsea_var_value (kpse, "TEXMFSYSVAR");
|
||||
if (!abs_fname_ok (expanded_fname, texmfsysvar)) {
|
||||
- goto not_ok; /* nothing left to check. */
|
||||
+ if (!abs_fname_ok (expanded_fname, cache)) {
|
||||
+ goto not_ok; /* nothing left to check. */
|
||||
+ }
|
||||
}
|
||||
}
|
||||
+ if (fa != 0)
|
||||
+ free (cache);
|
||||
} else {
|
||||
goto not_ok; /* not extended */
|
||||
}
|
32
source-mesa24.dif
Normal file
32
source-mesa24.dif
Normal file
@ -0,0 +1,32 @@
|
||||
---
|
||||
utils/asymptote/GL/glew.h | 2 ++
|
||||
utils/asymptote/glrender.h | 5 ++++-
|
||||
2 files changed, 6 insertions(+), 1 deletion(-)
|
||||
|
||||
--- utils/asymptote/glrender.h
|
||||
+++ utils/asymptote/glrender.h 2024-03-20 13:23:12.655945047 +0000
|
||||
@@ -29,7 +29,10 @@
|
||||
#define _WIN32
|
||||
#endif
|
||||
|
||||
-#include "GL/glew.h"
|
||||
+#include <GL/glew.h>
|
||||
+#ifndef APIENTRY
|
||||
+#define APIENTRY GLAPIENTRY
|
||||
+#endif
|
||||
|
||||
#ifdef __APPLE__
|
||||
#define GL_SILENCE_DEPRECATION
|
||||
--- utils/asymptote/GL/glew.h
|
||||
+++ utils/asymptote/GL/glew.h 2024-03-20 14:07:14.155520573 +0000
|
||||
@@ -23667,8 +23667,10 @@ GLEWAPI const GLubyte * GLEWAPIENTRY gle
|
||||
|
||||
#ifdef GLEW_APIENTRY_DEFINED
|
||||
#undef GLEW_APIENTRY_DEFINED
|
||||
+#ifndef GLAPIENTRY
|
||||
#undef APIENTRY
|
||||
#endif
|
||||
+#endif
|
||||
|
||||
#ifdef GLEW_CALLBACK_DEFINED
|
||||
#undef GLEW_CALLBACK_DEFINED
|
38
source-pdftex-gcc14.patch
Normal file
38
source-pdftex-gcc14.patch
Normal file
@ -0,0 +1,38 @@
|
||||
Revision 71901 - (view) (download) (annotate) - [selected]
|
||||
Modified Fri Jul 26 09:55:07 2024 UTC (3 weeks ago) by ascherer
|
||||
File length: 15439 byte(s)
|
||||
Diff to previous 65870
|
||||
|
||||
[PDFTEX] Prepare for compilation with gcc-14.
|
||||
|
||||
There's a type mismatch (probably copy-paste-error) for
|
||||
'pdf_font_has_space_char', defined as '^boolean' in section 821,
|
||||
in sections 1502 and 1518.
|
||||
|
||||
See https://tug.org/pipermail/tex-live/2024-July/050773.html for the
|
||||
initial bug report.
|
||||
|
||||
---
|
||||
texk/web2c/pdftexdir/pdftex.ch | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
--- texk/web2c/pdftexdir/pdftex.ch
|
||||
+++ texk/web2c/pdftexdir/pdftex.ch 2024-08-16 11:29:11.854819548 +0000
|
||||
@@ -179,7 +179,7 @@ pdf_font_type:=xmalloc_array(eight_bits,
|
||||
pdf_font_attr:=xmalloc_array(str_number, font_max);
|
||||
pdf_font_blink:=xmalloc_array(internal_font_number, font_max);
|
||||
pdf_font_elink:=xmalloc_array(internal_font_number, font_max);
|
||||
-pdf_font_has_space_char:=xmalloc_array(internal_font_number, font_max);
|
||||
+pdf_font_has_space_char:=xmalloc_array(boolean, font_max);
|
||||
pdf_font_stretch:=xmalloc_array(integer, font_max);
|
||||
pdf_font_shrink:=xmalloc_array(integer, font_max);
|
||||
pdf_font_step:=xmalloc_array(integer, font_max);
|
||||
@@ -298,7 +298,7 @@ pdf_font_type:=xmalloc_array(eight_bits,
|
||||
pdf_font_attr:=xmalloc_array(str_number,font_max);
|
||||
pdf_font_blink:=xmalloc_array(internal_font_number,font_max);
|
||||
pdf_font_elink:=xmalloc_array(internal_font_number,font_max);
|
||||
-pdf_font_has_space_char:=xmalloc_array(internal_font_number,font_max);
|
||||
+pdf_font_has_space_char:=xmalloc_array(boolean,font_max);
|
||||
pdf_font_stretch:=xmalloc_array(integer,font_max);
|
||||
pdf_font_shrink:=xmalloc_array(integer,font_max);
|
||||
pdf_font_step:=xmalloc_array(integer,font_max);
|
@ -6,7 +6,7 @@
|
||||
|
||||
--- libs/luajit/configure
|
||||
+++ libs/luajit/configure 2020-04-30 15:42:15.998038368 +0000
|
||||
@@ -15205,6 +15205,15 @@ fi
|
||||
@@ -15602,6 +15602,15 @@ fi
|
||||
if test "x$LJHOST" = xPS3
|
||||
then :
|
||||
echo '-D PPE -D TOC' >>dynasm_flags
|
||||
@ -39,32 +39,32 @@
|
||||
|
||||
AS_IF([test "x$build" != "x$host"],
|
||||
[AS_CASE([$LJHOST],
|
||||
--- texk/dvisvgm/dvisvgm-src/libs/xxHash/xxhash.h
|
||||
+++ texk/dvisvgm/dvisvgm-src/libs/xxHash/xxhash.h 2022-10-28 08:55:05.465324386 +0000
|
||||
@@ -4128,7 +4128,7 @@ XXH3_accumulate_512_vsx( void* XXH_REST
|
||||
const void* XXH_RESTRICT secret)
|
||||
{
|
||||
/* presumed aligned */
|
||||
- unsigned long long* const xacc = (unsigned long long*) acc;
|
||||
+ unsigned int* const xacc = (unsigned int*) acc;
|
||||
xxh_u64x2 const* const xinput = (xxh_u64x2 const*) input; /* no alignment restriction */
|
||||
xxh_u64x2 const* const xsecret = (xxh_u64x2 const*) secret; /* no alignment restriction */
|
||||
xxh_u64x2 const v32 = { 32, 32 };
|
||||
@@ -4144,7 +4144,7 @@ XXH3_accumulate_512_vsx( void* XXH_REST
|
||||
/* product = ((xxh_u64x2)data_key & 0xFFFFFFFF) * ((xxh_u64x2)shuffled & 0xFFFFFFFF); */
|
||||
xxh_u64x2 const product = XXH_vec_mulo((xxh_u32x4)data_key, shuffled);
|
||||
/* acc_vec = xacc[i]; */
|
||||
- xxh_u64x2 acc_vec = vec_xl(0, xacc + 2 * i);
|
||||
+ xxh_u64x2 acc_vec = (xxh_u64x2)vec_xl(0, xacc + 2 * i);
|
||||
acc_vec += product;
|
||||
|
||||
/* swap high and low halves */
|
||||
@@ -4154,7 +4154,7 @@ XXH3_accumulate_512_vsx( void* XXH_REST
|
||||
acc_vec += vec_xxpermdi(data_vec, data_vec, 2);
|
||||
#endif
|
||||
/* xacc[i] = acc_vec; */
|
||||
- vec_xst(acc_vec, 0, xacc + 2 * i);
|
||||
+ vec_xst((xxh_u32x4)acc_vec, 0, xacc + 2 * i);
|
||||
}
|
||||
}
|
||||
|
||||
| --- texk/dvisvgm/dvisvgm-src/libs/xxHash/xxhash.h
|
||||
| +++ texk/dvisvgm/dvisvgm-src/libs/xxHash/xxhash.h 2022-10-28 08:55:05.465324386 +0000
|
||||
| @@ -4128,7 +4128,7 @@ XXH3_accumulate_512_vsx( void* XXH_REST
|
||||
| const void* XXH_RESTRICT secret)
|
||||
| {
|
||||
| /* presumed aligned */
|
||||
| - unsigned long long* const xacc = (unsigned long long*) acc;
|
||||
| + unsigned int* const xacc = (unsigned int*) acc;
|
||||
| xxh_u64x2 const* const xinput = (xxh_u64x2 const*) input; /* no alignment restriction */
|
||||
| xxh_u64x2 const* const xsecret = (xxh_u64x2 const*) secret; /* no alignment restriction */
|
||||
| xxh_u64x2 const v32 = { 32, 32 };
|
||||
| @@ -4144,7 +4144,7 @@ XXH3_accumulate_512_vsx( void* XXH_REST
|
||||
| /* product = ((xxh_u64x2)data_key & 0xFFFFFFFF) * ((xxh_u64x2)shuffled & 0xFFFFFFFF); */
|
||||
| xxh_u64x2 const product = XXH_vec_mulo((xxh_u32x4)data_key, shuffled);
|
||||
| /* acc_vec = xacc[i]; */
|
||||
| - xxh_u64x2 acc_vec = vec_xl(0, xacc + 2 * i);
|
||||
| + xxh_u64x2 acc_vec = (xxh_u64x2)vec_xl(0, xacc + 2 * i);
|
||||
| acc_vec += product;
|
||||
|
|
||||
| /* swap high and low halves */
|
||||
| @@ -4154,7 +4154,7 @@ XXH3_accumulate_512_vsx( void* XXH_REST
|
||||
| acc_vec += vec_xxpermdi(data_vec, data_vec, 2);
|
||||
| #endif
|
||||
| /* xacc[i] = acc_vec; */
|
||||
| - vec_xst(acc_vec, 0, xacc + 2 * i);
|
||||
| + vec_xst((xxh_u32x4)acc_vec, 0, xacc + 2 * i);
|
||||
| }
|
||||
| }
|
||||
|
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
--- libs/gmp/Makefile.in
|
||||
+++ libs/gmp/Makefile.in 2016-06-07 13:29:33.925651292 +0000
|
||||
@@ -485,7 +485,7 @@ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
||||
@@ -495,7 +495,7 @@ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
||||
am__v_lt_0 = --silent
|
||||
am__v_lt_1 =
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
@ -38,7 +38,7 @@
|
||||
am__v_CC_0 = @echo " CC " $@;
|
||||
--- libs/mpfr/Makefile.in
|
||||
+++ libs/mpfr/Makefile.in 2016-06-07 13:29:33.925651292 +0000
|
||||
@@ -345,7 +345,7 @@ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
||||
@@ -349,7 +349,7 @@ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
||||
am__v_lt_0 = --silent
|
||||
am__v_lt_1 =
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
|
64
source.dif
64
source.dif
@ -25,16 +25,16 @@
|
||||
23 files changed, 225 insertions(+), 84 deletions(-)
|
||||
|
||||
--- reautoconf
|
||||
+++ reautoconf 2022-04-05 13:46:43.207504121 +0000
|
||||
@@ -94,7 +94,7 @@ echo "$0: TL_AUTOHEADER, T
|
||||
+++ reautoconf 2024-03-14 14:04:02.738624277 +0000
|
||||
@@ -88,7 +88,7 @@ echo "$0: using `aclocal --version | sed
|
||||
echo "$0: if you want to use different versions, set PATH."
|
||||
|
||||
# Give users a chance to quit here
|
||||
# and set TL_AUTOCONF, TL_AUTOHEADER, TL_AUTOMAKE, and/or TL_ACLOCAL
|
||||
# Give users a chance to quit here.
|
||||
-$do_cmd sleep 4
|
||||
+# $do_cmd sleep 4
|
||||
$do_say "$0: starting at `date`."
|
||||
|
||||
AUTOCONF=$TL_AUTOCONF
|
||||
do_it () {
|
||||
--- libs/icu/icu-src/source/common/Makefile.in
|
||||
+++ libs/icu/icu-src/source/common/Makefile.in 2021-04-07 10:14:44.202880715 +0000
|
||||
@@ -69,7 +69,7 @@ DEFS += -DU_COMMON_IMPLEMENTATION
|
||||
@ -173,9 +173,9 @@
|
||||
sdir_greatgrandparent = xdirname (sdir_grandparent);
|
||||
kpathsea_xputenv (kpse, "SELFAUTOGRANDPARENT", fix_selfdir (sdir_greatgrandparent));
|
||||
--- texk/kpathsea/texmf.cnf
|
||||
+++ texk/kpathsea/texmf.cnf 2022-04-05 13:47:33.158601044 +0000
|
||||
@@ -62,20 +62,20 @@
|
||||
TEXMFROOT = $SELFAUTOPARENT
|
||||
+++ texk/kpathsea/texmf.cnf 2024-03-14 14:04:50.821739351 +0000
|
||||
@@ -65,20 +65,20 @@ TEXMFROOT = $SELFAUTOPARENT
|
||||
% They must must all have the TDS directory structure (https://tug.org/tds).
|
||||
|
||||
% The main tree of distributed packages and programs:
|
||||
-TEXMFDIST = $TEXMFROOT/texmf-dist
|
||||
@ -199,31 +199,31 @@
|
||||
|
||||
% Per-user texmf tree(s) -- organized per the TDS, as usual. To define
|
||||
% more than one per-user tree, set this to a list of directories in
|
||||
@@ -84,10 +84,10 @@ TEXMFSYSCONFIG = $TEXMFROOT/texmf-config
|
||||
@@ -87,10 +87,10 @@ TEXMFSYSCONFIG = $TEXMFROOT/texmf-config
|
||||
TEXMFHOME = ~/texmf
|
||||
|
||||
% TEXMFVAR, where texconfig/updmap/fmtutil store cached runtime data.
|
||||
-TEXMFVAR = ~/.texlive2023/texmf-var
|
||||
-TEXMFVAR = ~/.texlive2024/texmf-var
|
||||
+TEXMFVAR = ${TEXMFSYSVAR}
|
||||
|
||||
% TEXMFCONFIG, where texconfig/updmap/fmtutil store configuration data.
|
||||
-TEXMFCONFIG = ~/.texlive2023/texmf-config
|
||||
-TEXMFCONFIG = ~/.texlive2024/texmf-config
|
||||
+TEXMFCONFIG = ${TEXMFSYSCONFIG}
|
||||
|
||||
% This is the value manipulated by tlmgr's auxtrees subcommand in the
|
||||
% root texmf.cnf. Kpathsea warns about a literally empty string for a
|
||||
@@ -108,7 +108,7 @@ TEXMFAUXTREES = {}
|
||||
% The odd-looking $TEXMFAUXTREES$TEXMF... construct is so that if no auxtree is
|
||||
% ever defined (the 99% common case), no extra elements will be added to
|
||||
@@ -111,7 +111,7 @@ TEXMFAUXTREES = {}
|
||||
% The odd-looking $TEXMFAUXTREES$TEXMF... construct is so that if no auxtree
|
||||
% is defined (99% common case), no extra elements will be added to
|
||||
% the search paths. tlmgr takes care to end any value with a trailing comma.
|
||||
-TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST}
|
||||
+TEXMF = {$TEXMFHOME,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFLOCAL,!!$TEXMFDIST}
|
||||
|
||||
% Where to look for, and where mktexlsr creates, ls-R files. By default,
|
||||
% this is all and only the !! elements of TEXMF, so that mktexlsr does not
|
||||
@@ -116,24 +116,23 @@ TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEX
|
||||
@@ -119,24 +119,23 @@ TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEX
|
||||
% present, it will be used, and the disk will not (usually) be searched,
|
||||
% regardless of !!. Although in principle a directory listed here need
|
||||
% regardless of !!. Although in theory a directory listed here need
|
||||
% not contain an ls-R file, in practice they all should.
|
||||
-TEXMFDBS = {!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST}
|
||||
+TEXMFDBS = $TEXMF;$VARTEXFONTS;$HOMECACHE
|
||||
@ -249,7 +249,7 @@
|
||||
|
||||
% On some systems, there will be a system tree which contains all the font
|
||||
% files that may be created as well as the formats. For example
|
||||
@@ -144,7 +143,8 @@ VARTEXFONTS = $TEXMFVAR/fonts
|
||||
@@ -147,7 +146,8 @@ VARTEXFONTS = $TEXMFVAR/fonts
|
||||
%
|
||||
% Remove $VARTEXFONTS from TEXMFDBS if the VARTEXFONTS directory is below
|
||||
% one of the TEXMF directories (avoids overlapping ls-R files).
|
||||
@ -259,7 +259,7 @@
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Usually you will not need to edit any of the following variables.
|
||||
@@ -152,7 +152,7 @@ VARTEXFONTS = $TEXMFVAR/fonts
|
||||
@@ -155,7 +155,7 @@ VARTEXFONTS = $TEXMFVAR/fonts
|
||||
|
||||
% WEB2C is for Web2C specific files. The current directory may not be
|
||||
% a good place to look for them.
|
||||
@ -268,7 +268,7 @@
|
||||
|
||||
% This variable exists only to be redefined; it is used in nearly all
|
||||
% search paths. If a document has source files not only in the current
|
||||
@@ -304,7 +304,7 @@ TEXINPUTS.frpdftex = $TEXMFDOTDIR;$
|
||||
@@ -309,7 +309,7 @@ TEXINPUTS.frpdftex = $TEXMFDOTDIR;$
|
||||
TEXINPUTS = $TEXMFDOTDIR;$TEXMF/tex/{$progname,generic,latex,}//
|
||||
|
||||
% Metafont, MetaPost inputs.
|
||||
@ -277,7 +277,7 @@
|
||||
MPINPUTS = $TEXMFDOTDIR;$TEXMF/metapost//
|
||||
|
||||
% Dump files (fmt/base/mem) for vir{tex,mf,mp} to read.
|
||||
@@ -314,31 +314,31 @@ MPINPUTS = $TEXMFDOTDIR;$TEXMF/metapost/
|
||||
@@ -319,31 +319,31 @@ MPINPUTS = $TEXMFDOTDIR;$TEXMF/metapost/
|
||||
% We repeat the same definition three times because of the way fmtutil
|
||||
% is implemented; if we use ${TEXFORMATS}, the mpost/mf/etc. formats
|
||||
% will not be found.
|
||||
@ -316,7 +316,7 @@
|
||||
|
||||
% Similarly for the GF format, which only remains in existence because
|
||||
% Metafont outputs it (and MF isn't going to change).
|
||||
@@ -446,8 +446,8 @@ MPSUPPORT = $TEXMFDOTDIR;$TEXMF/metapost
|
||||
@@ -451,8 +451,8 @@ MPSUPPORT = $TEXMFDOTDIR;$TEXMF/metapost
|
||||
% For xdvi to find mime.types and .mailcap, if they do not exist in
|
||||
% ~. These are single directories, not paths.
|
||||
% (But the default mime.types, at least, may well suffice.)
|
||||
@ -326,8 +326,8 @@
|
||||
+MAILCAPLIBDIR = /etc
|
||||
|
||||
% Default settings for the fontconfig library as used by the Windows
|
||||
% versions of xetex/xdvipdfmx. Not used by xetex on Unixish systems.
|
||||
@@ -471,10 +471,10 @@ WEBINPUTS = $TEXMFDOTDIR;$TEXMF/web//
|
||||
% versions of xetex/xdvipdfmx. Not used by xetex itself on Unixish systems,
|
||||
@@ -476,10 +476,10 @@ WEBINPUTS = $TEXMFDOTDIR;$TEXMF/web//
|
||||
CWEBINPUTS = $TEXMFDOTDIR;$TEXMF/cweb//
|
||||
|
||||
% Omega-related fonts and other files.
|
||||
@ -342,7 +342,7 @@
|
||||
OTPINPUTS = $TEXMFDOTDIR;$TEXMF/omega/otp//
|
||||
OCPINPUTS = $TEXMFDOTDIR;$TEXMF/omega/ocp//
|
||||
|
||||
@@ -570,32 +570,38 @@ RUBYINPUTS = $TEXMFDOTDIR;$TEXMF/scrip
|
||||
@@ -575,32 +575,38 @@ RUBYINPUTS = $TEXMFDOTDIR;$TEXMF/scrip
|
||||
% explicitly list every directory. Arguably more understandable anyway.
|
||||
%
|
||||
TEXMFCNF = {\
|
||||
@ -406,7 +406,7 @@
|
||||
%
|
||||
% For reference, here is the old brace-using definition:
|
||||
%TEXMFCNF = {$SELFAUTOLOC,$SELFAUTODIR,$SELFAUTOPARENT}{,{/share,}/texmf{-local,}/web2c}
|
||||
@@ -921,3 +927,33 @@ guess_input_kanji_encoding = 1
|
||||
@@ -940,3 +946,33 @@ guess_input_kanji_encoding.mendex = 1
|
||||
% command_line_encoding = none
|
||||
% in a texmf.cnf prefered, for example $TEXMFLOCAL/web2c/texmf.cnf.
|
||||
command_line_encoding = utf-8
|
||||
@ -442,8 +442,8 @@
|
||||
+save_size.jadetex = 15000
|
||||
--- texk/lcdf-typetools/lcdf-typetools-src/otftotfm/otftotfm.cc
|
||||
+++ texk/lcdf-typetools/lcdf-typetools-src/otftotfm/otftotfm.cc 2021-04-07 10:14:44.206880772 +0000
|
||||
@@ -67,6 +67,9 @@
|
||||
# include <io.h>
|
||||
@@ -65,6 +65,9 @@
|
||||
# include <fcntl.h>
|
||||
#endif
|
||||
|
||||
+#undef SHAREDIR
|
||||
@ -537,7 +537,7 @@
|
||||
chomp(our $TEXMFVAR = `kpsewhich -var-value=TEXMFVAR`);
|
||||
chomp(our $TEXMFSYSVAR = `kpsewhich -var-value=TEXMFSYSVAR`);
|
||||
chomp(our $TEXMFCONFIG = `kpsewhich -var-value=TEXMFCONFIG`);
|
||||
@@ -413,7 +413,14 @@ sub callback_build_formats {
|
||||
@@ -418,7 +418,14 @@ sub callback_build_formats {
|
||||
TeXLive::TLWinGoo::maybe_make_ro ($tmpdir);
|
||||
}
|
||||
} else {
|
||||
@ -552,7 +552,7 @@
|
||||
}
|
||||
}
|
||||
# set up destination directory
|
||||
@@ -726,6 +733,7 @@ sub rebuild_one_format {
|
||||
@@ -731,6 +738,7 @@ sub rebuild_one_format {
|
||||
# check for existence of ini file before doing anything else
|
||||
if (system("kpsewhich -progname=$fmt -format=$kpsefmt $inifile >$nul 2>&1") != 0) {
|
||||
# we didn't find the ini file, skip
|
||||
@ -560,7 +560,7 @@
|
||||
print_deferred_warning("inifile $inifile for $fmt/$eng not found.\n");
|
||||
# The original script just skipped it but in TeX Live we expect that
|
||||
# all activated formats are also buildable, thus return failure.
|
||||
@@ -785,11 +793,15 @@ sub rebuild_one_format {
|
||||
@@ -790,11 +798,15 @@ sub rebuild_one_format {
|
||||
",$opts{'no-error-if-no-engine'}," =~ m/,$eng,/) {
|
||||
return $FMT_NOTAVAIL;
|
||||
} else {
|
||||
@ -586,7 +586,7 @@
|
||||
exec updmap --sys ${1+"$@"}
|
||||
--- texk/web2c/Makefile.in
|
||||
+++ texk/web2c/Makefile.in 2021-04-07 10:14:44.210880832 +0000
|
||||
@@ -5597,7 +5597,7 @@ libmd5_a_SOURCES = libmd5/md5.c libmd5/m
|
||||
@@ -5662,7 +5662,7 @@ libmd5_a_SOURCES = libmd5/md5.c libmd5/m
|
||||
md5main_CPPFLAGS = -I$(srcdir)/libmd5
|
||||
md5main_SOURCES = libmd5/md5main.c
|
||||
md5main_LDADD = libmd5.a
|
||||
@ -595,7 +595,7 @@
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
@@ -5644,6 +5644,11 @@ w2c/c-auto.h: w2c/stamp-h1
|
||||
@@ -5709,6 +5709,11 @@ w2c/c-auto.h: w2c/stamp-h1
|
||||
w2c/stamp-h1: $(srcdir)/c-auto.in $(top_builddir)/config.status
|
||||
@rm -f w2c/stamp-h1
|
||||
cd $(top_builddir) && $(SHELL) ./config.status w2c/c-auto.h
|
||||
|
BIN
texlive-20230311-source.tar.xz
(Stored with Git LFS)
BIN
texlive-20230311-source.tar.xz
(Stored with Git LFS)
Binary file not shown.
BIN
texlive-20240311-source.tar.xz
(Stored with Git LFS)
Normal file
BIN
texlive-20240311-source.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,26 +1,6 @@
|
||||
addFilter(".*texlive-(collection|scheme)-.*\.noarch:.*suse-filelist-empty.*")
|
||||
addFilter(".*texlive-(extratools|devel)\..*:.*suse-filelist-empty.*")
|
||||
addFilter(".*texlive-bin-devel\..*:.*suse-filelist-empty.*")
|
||||
addFilter(".*texlive.src:.*:.*macro-in-comment.*")
|
||||
addFilter(".*texlive-scheme-.*.noarch:.*:-*summary-not-capitalized.*")
|
||||
addFilter(".*texlive-.*noarch:.*:.*filename-too-long-for-joliet.*")
|
||||
addFilter(".*texlive-.*:.*:.*description-shorter-than-summary.*")
|
||||
addFilter(".*texlive-.*-devel\..*:.*:.*no-dependency-on.*")
|
||||
addFilter(".*texlive\..*no-manual-page-for-binary.*nobody.*")
|
||||
addFilter(".*texlive-.*-bin\..*no-manual-page-for-binary.*")
|
||||
addFilter(".*world-writable.*/var/lib/texmf/ls-R.*")
|
||||
addFilter(".*world-writable.*/var/lib/texmf/db/ls-R.*")
|
||||
addFilter(".*world-writable.*/var/cache/fonts/ls-R.*")
|
||||
addFilter(".*world-writable.*/var/lib/texmf/.*/ls-R.*")
|
||||
addFilter(".*incorrect-fsf-address.*")
|
||||
addFilter(".*name-repeated-in-summary.*")
|
||||
addFilter(".*non-conffile-in-etc.*/etc/texmf/ls-R.*")
|
||||
addFilter(".*rpm-buildroot-usage.*")
|
||||
addFilter(".*binary-or-shlib-calls-gethostbyname.*")
|
||||
addFilter(".*zero-length.*")
|
||||
addFilter(".*dangling-symlink.*/usr/lib/mktex/public.*")
|
||||
addFilter(".*dangling-symlink.*/usr/libexec/mktex/public.*")
|
||||
addFilter(".*devel-dependency.*texlive-lua-visual-debug.*")
|
||||
addFilter(".*obsolete-not-provided.*")
|
||||
addFilter(".*position-independent-executable-suggested.*")
|
||||
addFilter(".*shared-lib-calls-exit.*")
|
||||
addFilter(".*macro-in-comment.*")
|
||||
addFilter(".*no-binary.*")
|
||||
|
120
texlive.changes
120
texlive.changes
@ -1,12 +1,118 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 3 13:17:43 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||
Tue Feb 18 12:28:00 UTC 2025 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Add patch source-CVE-2023-46048.patch
|
||||
* Fix for bsc#1222126 (CVE-2023-46048)
|
||||
NULL pointer dereference in texk/web2c/pdftexdir/writet1.c
|
||||
- Add patch source-CVE-2023-46051.patch
|
||||
* Fix for bsc#1222127 (CVE-2023-46051)q
|
||||
NULL pointer dereference in texk/web2c/pdftexdir/tounicode.c
|
||||
- Use zlib-ng-compat only for opensuse builds
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 21 14:20:10 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Use zlib-ng-compat-devel
|
||||
- Let texlive-pdfjam-bin depend on /usr/bin/pdflatex (boo#1231783)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 16 11:34:24 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Add patch source-pdftex-gcc14.patch
|
||||
* Add fix in change file pdftex.ch to really fix boo#1228342
|
||||
(Thanks goes to Andreas Scherer)
|
||||
- Remove former work around
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 26 14:15:55 UTC 2024 - Martin Jambor <mjambor@suse.com>
|
||||
|
||||
- Added -Wno-error=incompatible-pointer-types to optflags to work
|
||||
around boo#1228342 and enable build with GCC 14 on 32bit
|
||||
architectures.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 12 13:10:45 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Add patch source-dvipdfm-x.dif
|
||||
* dvipdfmx: repeated inclusion of the same image did not share
|
||||
the image data, but had separate copies for each inclusion.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 21 13:47:14 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Add patch source-luacore.dif
|
||||
* Allow file access for cache directories like defined
|
||||
VARTEXFONTS and $HOME/.cache/texmf/fonts (boo#1221762)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 20 10:01:34 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Do not use --disable-offscreen for asymptote configuration
|
||||
but define missed cpp macro instead
|
||||
- Add patch source-mesa24.dif
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 20 09:38:45 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Make asymptote build with mesa 24 with --disable-offscreen
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 14 12:35:01 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Update to TeXLive 2024
|
||||
- Remove patch source-luatex.dif now upstream
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 29 16:46:59 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- Use %patch -P N instead of deprecated %patchN.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 15 07:34:20 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Fix wrong sys link target name for context.lua (Jianhua Lu)
|
||||
- Use gzip -n9 for bit-reproducible man-pages (Bernhard Wiedemann)
|
||||
- Re-run spec file generator to include the changes above
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 17 14:23:06 UTC 2023 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Silent some rpmlint errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 17 12:39:29 UTC 2023 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Catch all lua based binaries for boo#1216650
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 30 14:15:53 UTC 2023 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- texlive-latex-bin-bin: Ensure the same version of libz1 is
|
||||
installed in system as against what texlive was compiled
|
||||
(boo#1216650).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 14 09:41:00 UTC 2023 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- The rungs lua script belongs to texlive-scripts(-bin) only
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 13 13:02:15 UTC 2023 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Skip obsolete suse_version 1230 as well as superfluous defattr
|
||||
in file sections of spec files
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 13 07:06:38 UTC 2023 - Ana Guerrero <ana.guerrero@suse.com>
|
||||
|
||||
- Update rpmlintrc filters
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 1 06:15:53 UTC 2023 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Move the provides of pdfjam to its usecase (boo#1211877)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 15 12:31:32 UTC 2023 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Add patch source-luatex.dif
|
||||
* Update to luatex 1.17.0 with the fixes for CVE-2023-32668 and
|
||||
CVE-2023-32700 (bsc#1211389) VUL-0: TeXLive: Arbitrary code
|
||||
execution in LuaTeX
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 5 07:02:45 UTC 2023 - Dr. Werner Fink <werner@suse.de>
|
||||
|
731
texlive.spec
731
texlive.spec
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user