Compare commits

...

11 Commits

Author SHA1 Message Date
openeuler-ci-bot
f95611d0e3
!81 fix build error on sw_64 mips64el
From: @hailianguniontech 
Reviewed-by: @wk333 
Signed-off-by: @wk333
2025-03-11 02:16:34 +00:00
openeuler-ci-bot
cdc7d8af05
!81 fix build error on sw_64 mips64el
From: @hailianguniontech 
Reviewed-by: @wk333 
Signed-off-by: @wk333
2025-03-11 02:16:34 +00:00
Hailiang
35a5dfe74c fix build error on sw_64 mips64el 2025-03-10 17:39:09 +08:00
openeuler-ci-bot
239e0c7f4e
!77 [sync] PR-72: License compliance rectification.
From: @openeuler-sync-bot 
Reviewed-by: @wk333, @starlet-dx 
Signed-off-by: @wk333, @starlet-dx
2024-12-11 00:47:00 +00:00
cherry530
fa67ce2c29 License compliance rectification.
Signed-off-by: cherry530 <707078654@qq.com>
(cherry picked from commit 38a92b58407eeafdd84a07eb37d2a4c976bf9a28)
2024-11-19 10:14:52 +08:00
openeuler-ci-bot
d389ff4be4
!69 [sync] PR-60: Fix CVE-2023-46048, CVE-2023-46051
From: @openeuler-sync-bot 
Reviewed-by: @wk333 
Signed-off-by: @wk333
2024-08-08 01:07:28 +00:00
wk333
4e9725d9b8 Fix CVE-2023-46048, CVE-2023-46051
(cherry picked from commit 72d43e6e3296323ebe672edf2300787ba5256555)
2024-08-07 15:17:21 +08:00
openeuler-ci-bot
6e6456ba82
!56 Init support for ppc64le
From: @jiahua-yu 
Reviewed-by: @wk333 
Signed-off-by: @wk333
2024-01-11 09:16:57 +00:00
jiahua.yu
3d9be8e605 Init support for ppc64le 2023-12-01 16:24:14 +08:00
openeuler-ci-bot
a2f90adfb5
!50 Fix CVE-2023-32700
From: @starlet-dx 
Reviewed-by: @caodongxia 
Signed-off-by: @caodongxia
2023-07-04 03:29:02 +00:00
starlet-dx
dffc2eca90 Fix CVE-2023-32700 2023-07-03 17:17:54 +08:00
6 changed files with 1492 additions and 180 deletions

1316
CVE-2023-32700.patch Normal file

File diff suppressed because it is too large Load Diff

54
CVE-2023-46048.patch Normal file
View File

@ -0,0 +1,54 @@
Origin:
https://github.com/TeX-Live/texlive-source/commit/33b330bc48ed2df69daf80a81be3cde8bf794816
https://tug.org/pipermail/tex-live/2023-August/049402.html
From 33b330bc48ed2df69daf80a81be3cde8bf794816 Mon Sep 17 00:00:00 2001
From: Karl Berry <karl@freefriends.org>
Date: Sat, 26 Aug 2023 17:50:10 +0000
Subject: [PATCH] guard against corrupt pfb in dup tests, pdftex r910
git-svn-id: svn://tug.org/texlive/trunk/Build/source@68069 c570f23f-e606-0410-a88d-b1316a301751
---
texlive-20210325-source/texk/web2c/pdftexdir/writet1.c | 15 ++++++++++++---
1 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c b/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c
index 0444d46be0..f2a8386cab 100644
--- a/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c
+++ b/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c
@@ -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, ' ');
}
/*

37
CVE-2023-46051.patch Normal file
View File

@ -0,0 +1,37 @@
Origin:
https://github.com/TeX-Live/texlive-source/commit/8215ee325f74405f795a02d247fbd99302810261
https://tug.org/pipermail/tex-live/2023-August/049415.html
From 8215ee325f74405f795a02d247fbd99302810261 Mon Sep 17 00:00:00 2001
From: Karl Berry <karl@freefriends.org>
Date: Mon, 28 Aug 2023 22:32:09 +0000
Subject: [PATCH] guard against undump of corrupt .fmt
git-svn-id: svn://tug.org/texlive/trunk/Build/source@68100 c570f23f-e606-0410-a88d-b1316a301751
---
texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c b/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c
index e658064abb..e57c36f6be 100644
--- a/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c
+++ b/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c
@@ -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);

View File

@ -1,47 +0,0 @@
From 28fe90a530c055abce7af362512b81a70d296e7d Mon Sep 17 00:00:00 2001
From: Akira Kakuto <kakuto@fuk.kindai.ac.jp>
Date: Mon, 23 Jul 2018 21:21:12 +0000
Subject: [PATCH] add synctex_version.h (report from Johannes)
git-svn-id: svn://tug.org/texlive/trunk/Build/source@48260 c570f23f-e606-0410-a88d-b1316a301751
---
texk/web2c/Makefile.in | 3 ++-
texk/web2c/synctexdir/am/synctex.am | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/texk/web2c/Makefile.in b/texk/web2c/Makefile.in
index abdd6dfef..4872c68f2 100644
--- a/texlive-20210325-source/texk/web2c/Makefile.in
+++ b/texlive-20210325-source/texk/web2c/Makefile.in
@@ -2420,7 +2420,7 @@ NROFF = nroff
MANS = $(dist_man_MANS) $(nodist_man_MANS)
DATA = $(pkgconfig_DATA)
am__syncinclude_HEADERS_DIST = synctexdir/synctex_parser.h \
- synctexdir/synctex_parser_utils.h
+ synctexdir/synctex_version.h synctexdir/synctex_parser_utils.h
HEADERS = $(syncinclude_HEADERS)
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
@@ -4687,6 +4687,7 @@ syncincludedir = ${includedir}/synctex
pkgconfigdir = ${libdir}/pkgconfig
@SYNCTEX_TRUE@syncinclude_HEADERS = \
@SYNCTEX_TRUE@ synctexdir/synctex_parser.h \
+@SYNCTEX_TRUE@ synctexdir/synctex_version.h \
@SYNCTEX_TRUE@ synctexdir/synctex_parser_utils.h
@SYNCTEX_TRUE@pkgconfig_DATA = synctexdir/synctex.pc
diff --git a/texk/web2c/synctexdir/am/synctex.am b/texk/web2c/synctexdir/am/synctex.am
index 316ffbbae..b69cb260a 100644
--- a/texlive-20210325-source/texk/web2c/synctexdir/am/synctex.am
+++ b/texlive-20210325-source/texk/web2c/synctexdir/am/synctex.am
@@ -55,6 +55,7 @@ pkgconfigdir = ${libdir}/pkgconfig
if SYNCTEX
syncinclude_HEADERS = \
synctexdir/synctex_parser.h \
+ synctexdir/synctex_version.h \
synctexdir/synctex_parser_utils.h
pkgconfig_DATA = synctexdir/synctex.pc
--
2.17.1

View File

@ -1,39 +0,0 @@
diff -up a/texlive-20210325-source/texk/dvipsk/writet1.c.CVE-2018-17407 a/texlive-20210325-source/texk/dvipsk/writet1.c
--- a/texlive-20210325-source/texk/dvipsk/writet1.c.CVE-2018-17407 2018-10-01 11:03:50.140899732 -0400
+++ a/texlive-20210325-source/texk/dvipsk/writet1.c 2018-10-01 11:04:31.425999765 -0400
@@ -1449,7 +1449,9 @@ static void t1_check_unusual_charstring(
*(strend(t1_buf_array) - 1) = ' ';
t1_getline();
+ alloc_array(t1_buf, strlen(t1_line_array) + strlen(t1_buf_array) + 1, T1_BUF_SIZE);
strcat(t1_buf_array, t1_line_array);
+ alloc_array(t1_line, strlen(t1_buf_array) + 1, T1_BUF_SIZE);
strcpy(t1_line_array, t1_buf_array);
t1_line_ptr = eol(t1_line_array);
}
diff -up a/texlive-20210325-source/texk/web2c/luatexdir/font/writet1.w.CVE-2018-17407 a/texlive-20210325-source/texk/web2c/luatexdir/font/writet1.w
--- a/texlive-20210325-source/texk/web2c/luatexdir/font/writet1.w.CVE-2018-17407 2018-10-01 11:05:54.404187837 -0400
+++ a/texlive-20210325-source/texk/web2c/luatexdir/font/writet1.w 2018-10-01 11:06:33.537335758 -0400
@@ -1625,7 +1625,9 @@ static void t1_check_unusual_charstring(
if (sscanf(p, "%i", &i) != 1) {
strcpy(t1_buf_array, t1_line_array);
t1_getline();
+ alloc_array(t1_buf, strlen(t1_line_array) + strlen(t1_buf_array) + 1, T1_BUF_SIZE);
strcat(t1_buf_array, t1_line_array);
+ alloc_array(t1_line, strlen(t1_buf_array) + 1, T1_BUF_SIZE);
strcpy(t1_line_array, t1_buf_array);
t1_line_ptr = eol(t1_line_array);
}
diff -up a/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c.CVE-2018-17407 a/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c
--- a/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c.CVE-2018-17407 2018-10-01 11:06:57.881806099 -0400
+++ a/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c 2018-10-01 11:08:06.424314628 -0400
@@ -1598,7 +1598,9 @@ static void t1_check_unusual_charstring(
*(strend(t1_buf_array) - 1) = ' ';
t1_getline();
+ alloc_array(t1_buf, strlen(t1_line_array) + strlen(t1_buf_array) + 1, T1_BUF_SIZE);
strcat(t1_buf_array, t1_line_array);
+ alloc_array(t1_line, strlen(t1_buf_array) + 1, T1_BUF_SIZE);
strcpy(t1_line_array, t1_buf_array);
t1_line_ptr = eol(t1_line_array);
}

View File

@ -4,7 +4,7 @@
Name: texlive-base Name: texlive-base
Version: 20210325 Version: 20210325
Release: 5 Release: 10
Epoch: 9 Epoch: 9
Summary: TeX formatting system Summary: TeX formatting system
License: ASL 2.0 and LGPL-2.1-only and Zlib and OFL-1.1 and Public Domain and LGPL-2.0-only and GPLv2+ and MPL-1.1 and Libpng and LGPL-3.0-only and BSL-1.0 and GPLv2 and GPLv3 and CPL-1.0 and IJG and MIT and LPPL-1.3c and ICU and psutils License: ASL 2.0 and LGPL-2.1-only and Zlib and OFL-1.1 and Public Domain and LGPL-2.0-only and GPLv2+ and MPL-1.1 and Libpng and LGPL-3.0-only and BSL-1.0 and GPLv2 and GPLv3 and CPL-1.0 and IJG and MIT and LPPL-1.3c and ICU and psutils
@ -427,6 +427,9 @@ Patch0030: texlive-base-20200327-out-of-memory.patch
Patch0032: texlive-base-20210325-mendex-weird-arch-fixes.patch Patch0032: texlive-base-20210325-mendex-weird-arch-fixes.patch
Patch0033: texlive-base-20210325-no-setpdfwrite.patch Patch0033: texlive-base-20210325-no-setpdfwrite.patch
Patch0034: CVE-2023-32700.patch
Patch0035: CVE-2023-46048.patch
Patch0036: CVE-2023-46051.patch
BuildRequires: xz libXaw-devel libXi-devel ncurses-devel bison flex file perl(Digest::MD5) texinfo gcc-c++ BuildRequires: xz libXaw-devel libXi-devel ncurses-devel bison flex file perl(Digest::MD5) texinfo gcc-c++
BuildRequires: gd-devel freetype-devel libpng-devel zlib-devel potrace-devel BuildRequires: gd-devel freetype-devel libpng-devel zlib-devel potrace-devel
@ -515,13 +518,13 @@ poor resolutions. The programs are written in Perl.
%package -n texlive-adhocfilelist %package -n texlive-adhocfilelist
Provides: tex-adhocfilelist = %{epoch}:20210325-%{release} Provides: tex-adhocfilelist = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-adhocfilelist-bin = %{epoch}:20210325-%{release} Provides: texlive-adhocfilelist-bin = %{epoch}:20210325-%{release}
Provides: tex-adhocfilelist-bin = %{epoch}:20210325-%{release} Provides: tex-adhocfilelist-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-adhocfilelist-bin < 7:20180414 Obsoletes: texlive-adhocfilelist-bin < 7:20180414
Provides: tex-adhocfilelist-doc = %{epoch}:20210325-%{release} Provides: tex-adhocfilelist-doc = %{epoch}:20210325-%{release}
Provides: texlive-adhocfilelist-doc = %{epoch}:20210325-%{release} Provides: texlive-adhocfilelist-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-adhocfilelist-doc < 7:20180414 Obsoletes: texlive-adhocfilelist-doc < 7:20180414
License: LPPL
Summary: '\listfiles' entries from the command line Summary: '\listfiles' entries from the command line
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -538,7 +541,6 @@ Provides: tex-afm2pl = %{epoch}:20210325-%{release}
Provides: texlive-afm2pl-bin = %{epoch}:20210325-%{release} Provides: texlive-afm2pl-bin = %{epoch}:20210325-%{release}
Provides: tex-afm2pl-bin = %{epoch}:20210325-%{release} Provides: tex-afm2pl-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-afm2pl-bin < 7:20180414 Obsoletes: texlive-afm2pl-bin < 7:20180414
License: LPPL
Summary: afm2pl package Summary: afm2pl package
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(afm2pl-ot1.enc) = %{epoch}:20210325-%{release} Provides: tex(afm2pl-ot1.enc) = %{epoch}:20210325-%{release}
@ -586,7 +588,6 @@ Obsoletes: texlive-amstex-bin < 7:20180414
Provides: tex-amstex-doc = %{epoch}:20210325-%{release} Provides: tex-amstex-doc = %{epoch}:20210325-%{release}
Provides: texlive-amstex-doc = %{epoch}:20210325-%{release} Provides: texlive-amstex-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-amstex-doc < 7:20180414 Obsoletes: texlive-amstex-doc < 7:20180414
License: LPPL
Summary: American Mathematical Society plain TeX macros Summary: American Mathematical Society plain TeX macros
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires(post,postun): coreutils Requires(post,postun): coreutils
@ -635,7 +636,7 @@ than relying on indirect resources, such as log file analysis.
Provides: tex-attachfile2 = %{epoch}:20210325-%{release} Provides: tex-attachfile2 = %{epoch}:20210325-%{release}
Provides: tex-attachfile2-bin = %{epoch}:20210325-%{release} Provides: tex-attachfile2-bin = %{epoch}:20210325-%{release}
Provides: texlive-attachfile2-bin = %{epoch}:20210325-%{release} Provides: texlive-attachfile2-bin = %{epoch}:20210325-%{release}
License: LPPL License: LPPL-1.3c
Summary: Attach files into PDF Summary: Attach files into PDF
Requires: texlive-base Requires: texlive-base
Requires: texlive-kpathsea Requires: texlive-kpathsea
@ -657,7 +658,6 @@ Obsoletes: texlive-authorindex-bin < 7:20180414
Provides: tex-authorindex-doc = %{epoch}:20210325-%{release} Provides: tex-authorindex-doc = %{epoch}:20210325-%{release}
Provides: texlive-authorindex-doc = %{epoch}:20210325-%{release} Provides: texlive-authorindex-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-authorindex-doc < 7:20180414 Obsoletes: texlive-authorindex-doc < 7:20180414
License: LPPL
Summary: Index citations by author names Summary: Index citations by author names
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(authorindex.sty) = %{epoch}:20210325-%{release} Provides: tex(authorindex.sty) = %{epoch}:20210325-%{release}
@ -743,13 +743,13 @@ format required by bib2gls.
%package -n texlive-bibexport %package -n texlive-bibexport
Provides: tex-bibexport = %{epoch}:20210325-%{release} Provides: tex-bibexport = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-bibexport-bin = %{epoch}:20210325-%{release} Provides: texlive-bibexport-bin = %{epoch}:20210325-%{release}
Provides: tex-bibexport-bin = %{epoch}:20210325-%{release} Provides: tex-bibexport-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-bibexport-bin < 7:20180414 Obsoletes: texlive-bibexport-bin < 7:20180414
Provides: tex-bibexport-doc = %{epoch}:20210325-%{release} Provides: tex-bibexport-doc = %{epoch}:20210325-%{release}
Provides: texlive-bibexport-doc = %{epoch}:20210325-%{release} Provides: texlive-bibexport-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-bibexport-doc < 7:20180414 Obsoletes: texlive-bibexport-doc < 7:20180414
License: LPPL 1.3
Summary: Extract a BibTeX file based on a .aux file Summary: Extract a BibTeX file based on a .aux file
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -768,7 +768,6 @@ Obsoletes: texlive-bibtex-bin < 7:20180414
Provides: tex-bibtex-doc = %{epoch}:20210325-%{release} Provides: tex-bibtex-doc = %{epoch}:20210325-%{release}
Provides: texlive-bibtex-doc = %{epoch}:20210325-%{release} Provides: texlive-bibtex-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-bibtex-doc < 7:20180414 Obsoletes: texlive-bibtex-doc < 7:20180414
License: Knuth
Summary: Process bibliographies for LaTeX, etc Summary: Process bibliographies for LaTeX, etc
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(apalike.sty) = %{epoch}:20210325-%{release} Provides: tex(apalike.sty) = %{epoch}:20210325-%{release}
@ -797,7 +796,6 @@ Obsoletes: texlive-bibtexu-bin < 7:20180414
Provides: tex-bibtexu-doc = %{epoch}:20210325-%{release} Provides: tex-bibtexu-doc = %{epoch}:20210325-%{release}
Provides: texlive-bibtexu-doc = %{epoch}:20210325-%{release} Provides: texlive-bibtexu-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-bibtexu-doc < 7:20180414 Obsoletes: texlive-bibtexu-doc < 7:20180414
License: LPPL
Summary: bibtexu package Summary: bibtexu package
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -831,7 +829,6 @@ Obsoletes: texlive-bundledoc-bin < 7:20180414
Provides: tex-bundledoc-doc = %{epoch}:20210325-%{release} Provides: tex-bundledoc-doc = %{epoch}:20210325-%{release}
Provides: texlive-bundledoc-doc = %{epoch}:20210325-%{release} Provides: texlive-bundledoc-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-bundledoc-doc < 7:20180414 Obsoletes: texlive-bundledoc-doc < 7:20180414
License: LPPL
Summary: Bundle together all the files needed to build a LaTeX document Summary: Bundle together all the files needed to build a LaTeX document
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(miktex.cfg) = %{epoch}:20210325-%{release} Provides: tex(miktex.cfg) = %{epoch}:20210325-%{release}
@ -860,7 +857,6 @@ Obsoletes: texlive-cachepic-bin < 7:20180414
Provides: tex-cachepic-doc = %{epoch}:20210325-%{release} Provides: tex-cachepic-doc = %{epoch}:20210325-%{release}
Provides: texlive-cachepic-doc = %{epoch}:20210325-%{release} Provides: texlive-cachepic-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-cachepic-doc < 7:20180414 Obsoletes: texlive-cachepic-doc < 7:20180414
License: LPPL 1.3
Summary: Convert document fragments into graphics Summary: Convert document fragments into graphics
Requires: texlive-base texlive-kpathsea tex(graphicx.sty) tex(verbatim.sty) Requires: texlive-base texlive-kpathsea tex(graphicx.sty) tex(verbatim.sty)
Provides: tex(cachepic.sty) = %{epoch}:20210325-%{release} Provides: tex(cachepic.sty) = %{epoch}:20210325-%{release}
@ -876,13 +872,13 @@ generates the external graphics.
%package -n texlive-checkcites %package -n texlive-checkcites
Provides: tex-checkcites = %{epoch}:20210325-%{release} Provides: tex-checkcites = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-checkcites-bin = %{epoch}:20210325-%{release} Provides: texlive-checkcites-bin = %{epoch}:20210325-%{release}
Provides: tex-checkcites-bin = %{epoch}:20210325-%{release} Provides: tex-checkcites-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-checkcites-bin < 7:20180414 Obsoletes: texlive-checkcites-bin < 7:20180414
Provides: tex-checkcites-doc = %{epoch}:20210325-%{release} Provides: tex-checkcites-doc = %{epoch}:20210325-%{release}
Provides: texlive-checkcites-doc = %{epoch}:20210325-%{release} Provides: texlive-checkcites-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-checkcites-doc < 7:20180414 Obsoletes: texlive-checkcites-doc < 7:20180414
License: LPPL 1.3
Summary: Check citation commands in a document Summary: Check citation commands in a document
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -900,7 +896,6 @@ Obsoletes: texlive-checklistings-bin < 7:20180414
Provides: tex-checklistings-doc = %{epoch}:20210325-%{release} Provides: tex-checklistings-doc = %{epoch}:20210325-%{release}
Provides: texlive-checklistings-doc = %{epoch}:20210325-%{release} Provides: texlive-checklistings-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-checklistings-doc < 7:20180414 Obsoletes: texlive-checklistings-doc < 7:20180414
License: LPPL 1.2
Summary: Pass verbatim contents through a compiler and reincorporate the resulting output Summary: Pass verbatim contents through a compiler and reincorporate the resulting output
Requires: texlive-base texlive-kpathsea tex(keyval.sty) tex(kvoptions.sty) tex(fancyvrb.sty) Requires: texlive-base texlive-kpathsea tex(keyval.sty) tex(kvoptions.sty) tex(fancyvrb.sty)
Requires: tex(color.sty) tex(listings.sty) Requires: tex(color.sty) tex(listings.sty)
@ -956,7 +951,7 @@ Provides: tex-cjkutils = %{epoch}:20210325-%{release}
Provides: texlive-cjkutils-bin = %{epoch}:20210325-%{release} Provides: texlive-cjkutils-bin = %{epoch}:20210325-%{release}
Provides: tex-cjkutils-bin = %{epoch}:20210325-%{release} Provides: tex-cjkutils-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-cjkutils-bin < 7:20180414 Obsoletes: texlive-cjkutils-bin < 7:20180414
License: LPPL License: GPL-1.0-or-later
Summary: cjkutils package Summary: cjkutils package
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(b5ka12.cfg) = %{epoch}:20210325-%{release} Provides: tex(b5ka12.cfg) = %{epoch}:20210325-%{release}
@ -1024,13 +1019,13 @@ set. Furthermore, cluttex can watch input files for changes
%package -n texlive-context %package -n texlive-context
Provides: tex-context = %{epoch}:20210325-%{release} Provides: tex-context = %{epoch}:20210325-%{release}
License: Public Domain and LPPL-1.3c and GPL-1.0-or-later and MIT and BSD-2-Clause
Provides: texlive-context-bin = %{epoch}:20210325-%{release} Provides: texlive-context-bin = %{epoch}:20210325-%{release}
Provides: tex-context-bin = %{epoch}:20210325-%{release} Provides: tex-context-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-context-bin < 7:20180414 Obsoletes: texlive-context-bin < 7:20180414
Provides: tex-context-doc = %{epoch}:20210325-%{release} Provides: tex-context-doc = %{epoch}:20210325-%{release}
Provides: texlive-context-doc = %{epoch}:20210325-%{release} Provides: texlive-context-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-context-doc < 7:20180414 Obsoletes: texlive-context-doc < 7:20180414
License: GPL+ or LPPL
Summary: The ConTeXt macro package Summary: The ConTeXt macro package
Requires: texlive-base texlive-kpathsea texlive-metapost Requires: texlive-base texlive-kpathsea texlive-metapost
Requires(post,postun): coreutils Requires(post,postun): coreutils
@ -1231,9 +1226,9 @@ for a wealth of support information.
%package -n texlive-context-doc %package -n texlive-context-doc
Requires: texlive-context Requires: texlive-context
License: CC-BY-SA-4.0 and GPL-1.0-or-later and GPL-2.0-only and CC-BY-NC-SA-3.0 and CC-BY-NC-4.0 and gust-font-1.0 and BSD-3-Clause
Provides: tex-context-doc = %{epoch}:20210325-%{release} Provides: tex-context-doc = %{epoch}:20210325-%{release}
Summary: Documentation for context Summary: Documentation for context
License: GPL+ or LPPL
%description -n texlive-context-doc %description -n texlive-context-doc
Documentation for context. Documentation for context.
@ -1450,7 +1445,7 @@ constraints from the server.
Provides: tex-ctanbib = %{epoch}:20210325-%{release} Provides: tex-ctanbib = %{epoch}:20210325-%{release}
Provides: texlive-ctanbib-bin = %{epoch}:20210325-%{release} Provides: texlive-ctanbib-bin = %{epoch}:20210325-%{release}
Provides: tex-ctanbib-bin = %{epoch}:20210325-%{release} Provides: tex-ctanbib-bin = %{epoch}:20210325-%{release}
License: LPPL License: LPPL-1.3c
Summary: Export ctan entries to bib format Summary: Export ctan entries to bib format
Requires: texlive-base Requires: texlive-base
Requires: texlive-kpathsea Requires: texlive-kpathsea
@ -1461,13 +1456,13 @@ This script can generate BibTeX records for LaTeX packages hosted on CTAN.
%package -n texlive-ctanify %package -n texlive-ctanify
Provides: tex-ctanify = %{epoch}:20210325-%{release} Provides: tex-ctanify = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-ctanify-bin = %{epoch}:20210325-%{release} Provides: texlive-ctanify-bin = %{epoch}:20210325-%{release}
Provides: tex-ctanify-bin = %{epoch}:20210325-%{release} Provides: tex-ctanify-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-ctanify-bin < 7:20180414 Obsoletes: texlive-ctanify-bin < 7:20180414
Provides: tex-ctanify-doc = %{epoch}:20210325-%{release} Provides: tex-ctanify-doc = %{epoch}:20210325-%{release}
Provides: texlive-ctanify-doc = %{epoch}:20210325-%{release} Provides: texlive-ctanify-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-ctanify-doc < 7:20180414 Obsoletes: texlive-ctanify-doc < 7:20180414
License: LPPL 1.3
Summary: Prepare a package for upload to CTAN Summary: Prepare a package for upload to CTAN
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -1513,12 +1508,12 @@ This is a version of tie converted for use with cweb.
%package -n texlive-cweb %package -n texlive-cweb
Provides: tex-cweb = %{epoch}:20210325-%{release} texlive-cweb-bin = %{epoch}:20210325-%{release} Provides: tex-cweb = %{epoch}:20210325-%{release} texlive-cweb-bin = %{epoch}:20210325-%{release}
License: MIT and LPPL-1.3c
Provides: tex-cweb-bin = %{epoch}:20210325-%{release} Provides: tex-cweb-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-cweb-bin < 7:20180414 Obsoletes: texlive-cweb-bin < 7:20180414
Provides: tex-cweb-doc = %{epoch}:20210325-%{release} Provides: tex-cweb-doc = %{epoch}:20210325-%{release}
Provides: texlive-cweb-doc = %{epoch}:20210325-%{release} Provides: texlive-cweb-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-cweb-doc < 7:20180414 Obsoletes: texlive-cweb-doc < 7:20180414
License: Knuth
Summary: A Web system in C Summary: A Web system in C
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(cwebmac.tex) = %{epoch}:20210325-%{release} Provides: tex(cwebmac.tex) = %{epoch}:20210325-%{release}
@ -1536,6 +1531,7 @@ programming language C.
%package -n texlive-cyrillic %package -n texlive-cyrillic
Provides: tex-cyrillic = %{epoch}:20210325-%{release} Provides: tex-cyrillic = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-cyrillic-bin = %{epoch}:20210325-%{release} Provides: texlive-cyrillic-bin = %{epoch}:20210325-%{release}
Provides: tex-cyrillic-bin = %{epoch}:20210325-%{release} Provides: tex-cyrillic-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-cyrillic-bin < 7:20180414 Obsoletes: texlive-cyrillic-bin < 7:20180414
@ -1545,7 +1541,6 @@ Obsoletes: texlive-cyrillic-doc < 7:20180414
Provides: texlive-cyrillic-bin-bin = %{epoch}:20210325-%{release} Provides: texlive-cyrillic-bin-bin = %{epoch}:20210325-%{release}
Provides: tex-cyrillic-bin-bin = %{epoch}:20210325-%{release} Provides: tex-cyrillic-bin-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-cyrillic-bin-bin < 7:20180414 Obsoletes: texlive-cyrillic-bin-bin < 7:20180414
License: LPPL 1.3
Summary: Support for Cyrillic fonts in LaTeX Summary: Support for Cyrillic fonts in LaTeX
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(fontenc.sty) Requires: tex(fontenc.sty)
@ -1705,13 +1700,13 @@ in the text. In this case, it also recognizes the \include and
%package -n texlive-diadia %package -n texlive-diadia
Provides: tex-diadia = %{epoch}:20210325-%{release} Provides: tex-diadia = %{epoch}:20210325-%{release}
License: LPPL-1.3a
Provides: texlive-diadia-bin = %{epoch}:20210325-%{release} Provides: texlive-diadia-bin = %{epoch}:20210325-%{release}
Provides: tex-diadia-bin = %{epoch}:20210325-%{release} Provides: tex-diadia-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-diadia-bin < 7:20180414 Obsoletes: texlive-diadia-bin < 7:20180414
Provides: tex-diadia-doc = %{epoch}:20210325-%{release} Provides: tex-diadia-doc = %{epoch}:20210325-%{release}
Provides: texlive-diadia-doc = %{epoch}:20210325-%{release} Provides: texlive-diadia-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-diadia-doc < 7:20180414 Obsoletes: texlive-diadia-doc < 7:20180414
License: LPPL
Summary: Package to keep a diabetes diary Summary: Package to keep a diabetes diary
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(xkeyval.sty) tex(pgfplots.sty) Requires: tex(xkeyval.sty) tex(pgfplots.sty)
@ -1962,7 +1957,6 @@ Provides: tex-dvipos = %{epoch}:20210325-%{release}
Provides: texlive-dvipos-bin = %{epoch}:20210325-%{release} Provides: texlive-dvipos-bin = %{epoch}:20210325-%{release}
Provides: tex-dvipos-bin = %{epoch}:20210325-%{release} Provides: tex-dvipos-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-dvipos-bin < 7:20180414 Obsoletes: texlive-dvipos-bin < 7:20180414
License: LPPL
Summary: dvipos package Summary: dvipos package
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -2228,13 +2222,13 @@ word that's being referenced.
%package -n texlive-fontinst %package -n texlive-fontinst
Provides: tex-fontinst = %{epoch}:20210325-%{release} Provides: tex-fontinst = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-fontinst-bin = %{epoch}:20210325-%{release} Provides: texlive-fontinst-bin = %{epoch}:20210325-%{release}
Provides: tex-fontinst-bin = %{epoch}:20210325-%{release} Provides: tex-fontinst-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-fontinst-bin < 7:20180414 Obsoletes: texlive-fontinst-bin < 7:20180414
Provides: tex-fontinst-doc = %{epoch}:20210325-%{release} Provides: tex-fontinst-doc = %{epoch}:20210325-%{release}
Provides: texlive-fontinst-doc = %{epoch}:20210325-%{release} Provides: texlive-fontinst-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-fontinst-doc < 7:20180414 Obsoletes: texlive-fontinst-doc < 7:20180414
License: LPPL
Summary: Help with installing fonts for TeX and LaTeX Summary: Help with installing fonts for TeX and LaTeX
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(color.sty) tex(amstext.sty) Requires: tex(color.sty) tex(amstext.sty)
@ -2297,7 +2291,6 @@ Provides: tex-fontware = %{epoch}:20210325-%{release}
Provides: texlive-fontware-bin = %{epoch}:20210325-%{release} Provides: texlive-fontware-bin = %{epoch}:20210325-%{release}
Provides: tex-fontware-bin = %{epoch}:20210325-%{release} Provides: tex-fontware-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-fontware-bin < 7:20180414 Obsoletes: texlive-fontware-bin < 7:20180414
License: LPPL
Summary: fontware package Summary: fontware package
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -2324,13 +2317,13 @@ produces PDF and EPS files with the substitutions included.
%package -n texlive-getmap %package -n texlive-getmap
Provides: tex-getmap = %{epoch}:20210325-%{release} Provides: tex-getmap = %{epoch}:20210325-%{release}
License: LPPL-1.3a
Provides: texlive-getmap-bin = %{epoch}:20210325-%{release} Provides: texlive-getmap-bin = %{epoch}:20210325-%{release}
Provides: tex-getmap-bin = %{epoch}:20210325-%{release} Provides: tex-getmap-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-getmap-bin < 7:20180414 Obsoletes: texlive-getmap-bin < 7:20180414
Provides: tex-getmap-doc = %{epoch}:20210325-%{release} Provides: tex-getmap-doc = %{epoch}:20210325-%{release}
Provides: texlive-getmap-doc = %{epoch}:20210325-%{release} Provides: texlive-getmap-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-getmap-doc < 7:20180414 Obsoletes: texlive-getmap-doc < 7:20180414
License: LPPL
Summary: Download OpenStreetMap maps for use in documents Summary: Download OpenStreetMap maps for use in documents
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(xkeyval.sty) tex(stringenc.sty) Requires: tex(xkeyval.sty) tex(stringenc.sty)
@ -2362,13 +2355,13 @@ a wrapper around git and latexdiff.
%package -n texlive-glossaries %package -n texlive-glossaries
Provides: tex-glossaries = %{epoch}:20210325-%{release} Provides: tex-glossaries = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-glossaries-bin = %{epoch}:20210325-%{release} Provides: texlive-glossaries-bin = %{epoch}:20210325-%{release}
Provides: tex-glossaries-bin = %{epoch}:20210325-%{release} Provides: tex-glossaries-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-glossaries-bin < 7:20180414 Obsoletes: texlive-glossaries-bin < 7:20180414
Provides: tex-glossaries-doc = %{epoch}:20210325-%{release} Provides: tex-glossaries-doc = %{epoch}:20210325-%{release}
Provides: texlive-glossaries-doc = %{epoch}:20210325-%{release} Provides: texlive-glossaries-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-glossaries-doc < 7:20180414 Obsoletes: texlive-glossaries-doc < 7:20180414
License: LPPL 1.3
Summary: Create glossaries and lists of acronyms Summary: Create glossaries and lists of acronyms
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(tracklang.sty) tex(ifthen.sty) Requires: tex(tracklang.sty) tex(ifthen.sty)
@ -2433,7 +2426,7 @@ obsolete), and a conversion tool is provided.
%package -n texlive-glyphlist %package -n texlive-glyphlist
Provides: tex-glyphlist = %{epoch}:20210325-%{release} Provides: tex-glyphlist = %{epoch}:20210325-%{release}
License: LPPL License: Apache-2.0
Summary: glyphlist package Summary: glyphlist package
BuildArch: noarch BuildArch: noarch
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -2489,7 +2482,7 @@ direct.
%package -n texlive-hyperxmp %package -n texlive-hyperxmp
Summary: Embed XMP metadata within a LaTeX document Summary: Embed XMP metadata within a LaTeX document
License: LPPL 1.3 License: LPPL-1.3c
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(atenddvi.sty) Requires: tex(atenddvi.sty)
Requires: tex(kvoptions.sty) Requires: tex(kvoptions.sty)
@ -2530,7 +2523,6 @@ Obsoletes: texlive-installfont-bin < 7:20180414
Provides: tex-installfont-doc = %{epoch}:20210325-%{release} Provides: tex-installfont-doc = %{epoch}:20210325-%{release}
Provides: texlive-installfont-doc = %{epoch}:20210325-%{release} Provides: texlive-installfont-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-installfont-doc < 7:20180414 Obsoletes: texlive-installfont-doc < 7:20180414
License: LPPL
Summary: A bash script for installing a LaTeX font family Summary: A bash script for installing a LaTeX font family
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -2662,13 +2654,13 @@ can be included in any LaTeX document.
%package -n texlive-kotex-utils %package -n texlive-kotex-utils
Provides: tex-kotex-utils = %{epoch}:20210325-%{release} Provides: tex-kotex-utils = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-kotex-utils-bin = %{epoch}:20210325-%{release} Provides: texlive-kotex-utils-bin = %{epoch}:20210325-%{release}
Provides: tex-kotex-utils-bin = %{epoch}:20210325-%{release} Provides: tex-kotex-utils-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-kotex-utils-bin < 7:20180414 Obsoletes: texlive-kotex-utils-bin < 7:20180414
Provides: tex-kotex-utils-doc = %{epoch}:20210325-%{release} Provides: tex-kotex-utils-doc = %{epoch}:20210325-%{release}
Provides: texlive-kotex-utils-doc = %{epoch}:20210325-%{release} Provides: texlive-kotex-utils-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-kotex-utils-doc < 7:20180414 Obsoletes: texlive-kotex-utils-doc < 7:20180414
License: LPPL
Summary: Utility scripts and support files for typesetting Korean Summary: Utility scripts and support files for typesetting Korean
Requires: texlive-base texlive-kotex-utf Requires: texlive-base texlive-kotex-utf
Requires: texlive-kpathsea Requires: texlive-kpathsea
@ -2709,7 +2701,7 @@ Provides: texlive-l3build-bin = %{epoch}:20210325-%{release}
Provides: tex-l3build-doc = %{epoch}:20210325-%{release} Provides: tex-l3build-doc = %{epoch}:20210325-%{release}
Provides: texlive-l3build-doc = %{epoch}:20210325-%{release} Provides: texlive-l3build-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-l3build-doc < 7:20210325 Obsoletes: texlive-l3build-doc < 7:20210325
License: LPPL License: MIT
Summary: A testing and building system for (La)TeX Summary: A testing and building system for (La)TeX
Provides: tex(regression-test.tex) = %{epoch}:20210325-%{release} Provides: tex(regression-test.tex) = %{epoch}:20210325-%{release}
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -2739,6 +2731,7 @@ for OS/2 and Win32 environments.
%package -n texlive-latex %package -n texlive-latex
Provides: tex-latex = %{epoch}:20210325-%{release} Provides: tex-latex = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: tetex-latex = %{epoch}:20210325-%{release} Provides: tetex-latex = %{epoch}:20210325-%{release}
Provides: texlive-latex-bin = %{epoch}:20210325-%{release} Provides: texlive-latex-bin = %{epoch}:20210325-%{release}
Provides: tex-latex-bin = %{epoch}:20210325-%{release} Provides: tex-latex-bin = %{epoch}:20210325-%{release}
@ -2752,7 +2745,6 @@ Obsoletes: texlive-latex-doc < 7:20180414
# texlive-latex-base-dev is a development package of texlive-latex # texlive-latex-base-dev is a development package of texlive-latex
# for stability we don't use this. # for stability we don't use this.
#!BuildIgnore: texlive-latex-base-dev #!BuildIgnore: texlive-latex-base-dev
License: LPPL 1.3
Summary: A TeX macro package that defines LaTeX Summary: A TeX macro package that defines LaTeX
Requires: texlive-base Requires: texlive-base
Requires: tex(expl3.sty) Requires: tex(expl3.sty)
@ -2976,7 +2968,6 @@ Obsoletes: texlive-latex2man-bin < 7:20180414
Provides: tex-latex2man-doc = %{epoch}:20210325-%{release} Provides: tex-latex2man-doc = %{epoch}:20210325-%{release}
Provides: texlive-latex2man-doc = %{epoch}:20210325-%{release} Provides: texlive-latex2man-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-latex2man-doc < 7:20180414 Obsoletes: texlive-latex2man-doc < 7:20180414
License: LPPL
Summary: Translate LaTeX-based manual pages into Unix man format Summary: Translate LaTeX-based manual pages into Unix man format
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(fancyheadings.sty) tex(fancyhdr.sty) Requires: tex(fancyheadings.sty) tex(fancyhdr.sty)
@ -3047,13 +3038,13 @@ selected changes only.
%package -n texlive-latexfileversion %package -n texlive-latexfileversion
Provides: tex-latexfileversion = %{epoch}:20210325-%{release} Provides: tex-latexfileversion = %{epoch}:20210325-%{release}
License: LPPL-1.2
Provides: texlive-latexfileversion-bin = %{epoch}:20210325-%{release} Provides: texlive-latexfileversion-bin = %{epoch}:20210325-%{release}
Provides: tex-latexfileversion-bin = %{epoch}:20210325-%{release} Provides: tex-latexfileversion-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-latexfileversion-bin < 7:20180414 Obsoletes: texlive-latexfileversion-bin < 7:20180414
Provides: tex-latexfileversion-doc = %{epoch}:20210325-%{release} Provides: tex-latexfileversion-doc = %{epoch}:20210325-%{release}
Provides: texlive-latexfileversion-doc = %{epoch}:20210325-%{release} Provides: texlive-latexfileversion-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-latexfileversion-doc < 7:20180414 Obsoletes: texlive-latexfileversion-doc < 7:20180414
License: LPPL
Summary: Prints the version and date of a LaTeX class or style file Summary: Prints the version and date of a LaTeX class or style file
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -3152,13 +3143,13 @@ Development files for TeX specific shared libraries.
%package -n texlive-lilyglyphs %package -n texlive-lilyglyphs
Provides: tex-lilyglyphs = %{epoch}:20210325-%{release} Provides: tex-lilyglyphs = %{epoch}:20210325-%{release}
License: GPL-1.0-or-later and OFL-1.1
Provides: texlive-lilyglyphs-bin = %{epoch}:20210325-%{release} Provides: texlive-lilyglyphs-bin = %{epoch}:20210325-%{release}
Provides: tex-lilyglyphs-bin = %{epoch}:20210325-%{release} Provides: tex-lilyglyphs-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-lilyglyphs-bin < 7:20180414 Obsoletes: texlive-lilyglyphs-bin < 7:20180414
Provides: tex-lilyglyphs-doc = %{epoch}:20210325-%{release} Provides: tex-lilyglyphs-doc = %{epoch}:20210325-%{release}
Provides: texlive-lilyglyphs-doc = %{epoch}:20210325-%{release} Provides: texlive-lilyglyphs-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-lilyglyphs-doc < 7:20180414 Obsoletes: texlive-lilyglyphs-doc < 7:20180414
License: LPPL 1.3
Summary: Access lilypond fragments and glyphs, in LaTeX Summary: Access lilypond fragments and glyphs, in LaTeX
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(keyval.sty) tex(pgf.sty) Requires: tex(keyval.sty) tex(pgf.sty)
@ -3211,7 +3202,6 @@ Obsoletes: texlive-listings-ext-bin < 7:20180414
Provides: tex-listings-ext-doc = %{epoch}:20210325-%{release} Provides: tex-listings-ext-doc = %{epoch}:20210325-%{release}
Provides: texlive-listings-ext-doc = %{epoch}:20210325-%{release} Provides: texlive-listings-ext-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-listings-ext-doc < 7:20180414 Obsoletes: texlive-listings-ext-doc < 7:20180414
License: LPPL 1.2
Summary: Automated input of source Summary: Automated input of source
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(listings.sty) tex(xkeyval.sty) Requires: tex(listings.sty) tex(xkeyval.sty)
@ -3429,13 +3419,13 @@ absolute stability may not in practice be assumed.
%package -n texlive-lwarp %package -n texlive-lwarp
Provides: tex-lwarp = %{epoch}:20210325-%{release} Provides: tex-lwarp = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-lwarp-bin = %{epoch}:20210325-%{release} Provides: texlive-lwarp-bin = %{epoch}:20210325-%{release}
Provides: tex-lwarp-bin = %{epoch}:20210325-%{release} Provides: tex-lwarp-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-lwarp-bin < 7:20180414 Obsoletes: texlive-lwarp-bin < 7:20180414
Provides: tex-lwarp-doc = %{epoch}:20210325-%{release} Provides: tex-lwarp-doc = %{epoch}:20210325-%{release}
Provides: texlive-lwarp-doc = %{epoch}:20210325-%{release} Provides: texlive-lwarp-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-lwarp-doc < 7:20180414 Obsoletes: texlive-lwarp-doc < 7:20180414
License: LPPL
Summary: Converts LaTeX to HTML Summary: Converts LaTeX to HTML
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -3484,7 +3474,6 @@ Obsoletes: texlive-make4ht-bin < 7:20180414
Provides: tex-make4ht-doc = %{epoch}:20210325-%{release} Provides: tex-make4ht-doc = %{epoch}:20210325-%{release}
Provides: texlive-make4ht-doc = %{epoch}:20210325-%{release} Provides: texlive-make4ht-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-make4ht-doc < 7:20180414 Obsoletes: texlive-make4ht-doc < 7:20180414
License: LPPL 1.3
Summary: A build system for tex4ht Summary: A build system for tex4ht
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -3496,13 +3485,13 @@ which can be used to create customized conversion programs.
%package -n texlive-makedtx %package -n texlive-makedtx
Provides: tex-makedtx = %{epoch}:20210325-%{release} Provides: tex-makedtx = %{epoch}:20210325-%{release}
License: LPPL-1.3c and BSD-3-Clause and GPL-2.0-or-later
Provides: texlive-makedtx-bin = %{epoch}:20210325-%{release} Provides: texlive-makedtx-bin = %{epoch}:20210325-%{release}
Provides: tex-makedtx-bin = %{epoch}:20210325-%{release} Provides: tex-makedtx-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-makedtx-bin < 7:20180414 Obsoletes: texlive-makedtx-bin < 7:20180414
Provides: tex-makedtx-doc = %{epoch}:20210325-%{release} Provides: tex-makedtx-doc = %{epoch}:20210325-%{release}
Provides: texlive-makedtx-doc = %{epoch}:20210325-%{release} Provides: texlive-makedtx-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-makedtx-doc < 7:20180414 Obsoletes: texlive-makedtx-doc < 7:20180414
License: LPPL
Summary: Perl script to help generate dtx and ins files Summary: Perl script to help generate dtx and ins files
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(creatdtx.sty) = %{epoch}:20210325-%{release} Provides: tex(creatdtx.sty) = %{epoch}:20210325-%{release}
@ -3565,7 +3554,6 @@ Obsoletes: texlive-mathspic-bin < 7:20180414
Provides: tex-mathspic-doc = %{epoch}:20210325-%{release} Provides: tex-mathspic-doc = %{epoch}:20210325-%{release}
Provides: texlive-mathspic-doc = %{epoch}:20210325-%{release} Provides: texlive-mathspic-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-mathspic-doc < 7:20180414 Obsoletes: texlive-mathspic-doc < 7:20180414
License: LPPL
Summary: A Perl filter program for use with PiCTeX Summary: A Perl filter program for use with PiCTeX
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(prepictex.tex) tex(pictexwd.tex) Requires: tex(prepictex.tex) tex(pictexwd.tex)
@ -3592,7 +3580,6 @@ Provides: tex-metafont = %{epoch}:20210325-%{release}
Provides: texlive-metafont-bin = %{epoch}:20210325-%{release} Provides: texlive-metafont-bin = %{epoch}:20210325-%{release}
Provides: tex-metafont-bin = %{epoch}:20210325-%{release} Provides: tex-metafont-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-metafont-bin < 7:20180414 Obsoletes: texlive-metafont-bin < 7:20180414
License: Knuth
Summary: A system for specifying fonts Summary: A system for specifying fonts
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: texlive-modes Requires: texlive-modes
@ -3733,7 +3720,7 @@ Provides: tex-mfware = %{epoch}:20210325-%{release}
Provides: texlive-mfware-bin = %{epoch}:20210325-%{release} Provides: texlive-mfware-bin = %{epoch}:20210325-%{release}
Provides: tex-mfware-bin = %{epoch}:20210325-%{release} Provides: tex-mfware-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-mfware-bin < 7:20180414 Obsoletes: texlive-mfware-bin < 7:20180414
License: Knuth License: Public Domain
Summary: Supporting tools for use with Metafont Summary: Supporting tools for use with Metafont
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -3749,7 +3736,6 @@ Obsoletes: texlive-mf2pt1-bin < 7:20180414
Provides: tex-mf2pt1-doc = %{epoch}:20210325-%{release} Provides: tex-mf2pt1-doc = %{epoch}:20210325-%{release}
Provides: texlive-mf2pt1-doc = %{epoch}:20210325-%{release} Provides: texlive-mf2pt1-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-mf2pt1-doc < 7:20180414 Obsoletes: texlive-mf2pt1-doc < 7:20180414
License: LPPL
Summary: Produce PostScript Type 1 fonts from Metafont source Summary: Produce PostScript Type 1 fonts from Metafont source
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -3766,13 +3752,13 @@ which convert bitmaps to outline fonts.
%package -n texlive-mkgrkindex %package -n texlive-mkgrkindex
Provides: tex-mkgrkindex = %{epoch}:20210325-%{release} Provides: tex-mkgrkindex = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-mkgrkindex-bin = %{epoch}:20210325-%{release} Provides: texlive-mkgrkindex-bin = %{epoch}:20210325-%{release}
Provides: tex-mkgrkindex-bin = %{epoch}:20210325-%{release} Provides: tex-mkgrkindex-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-mkgrkindex-bin < 7:20180414 Obsoletes: texlive-mkgrkindex-bin < 7:20180414
Provides: tex-mkgrkindex-doc = %{epoch}:20210325-%{release} Provides: tex-mkgrkindex-doc = %{epoch}:20210325-%{release}
Provides: texlive-mkgrkindex-doc = %{epoch}:20210325-%{release} Provides: texlive-mkgrkindex-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-mkgrkindex-doc < 7:20180414 Obsoletes: texlive-mkgrkindex-doc < 7:20180414
License: LPPL
Summary: Makeindex working with Greek Summary: Makeindex working with Greek
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -3835,7 +3821,7 @@ Obsoletes: texlive-mltex-bin < 7:20180414
Provides: tex-mltex-doc = %{epoch}:20210325-%{release} Provides: tex-mltex-doc = %{epoch}:20210325-%{release}
Provides: texlive-mltex-doc = %{epoch}:20210325-%{release} Provides: texlive-mltex-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-mltex-doc < 7:20180414 Obsoletes: texlive-mltex-doc < 7:20180414
License: Knuth License: LPPL-1.3c
Summary: The MLTeX system Summary: The MLTeX system
Requires: texlive-base Requires: texlive-base
Requires: texlive-kpathsea Requires: texlive-kpathsea
@ -3872,7 +3858,6 @@ Obsoletes: texlive-mptopdf-bin < 7:20180414
Provides: tex-mptopdf-doc = %{epoch}:20210325-%{release} Provides: tex-mptopdf-doc = %{epoch}:20210325-%{release}
Provides: texlive-mptopdf-doc = %{epoch}:20210325-%{release} Provides: texlive-mptopdf-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-mptopdf-doc < 7:20180414 Obsoletes: texlive-mptopdf-doc < 7:20180414
License: LPPL
Summary: mpost to PDF, native MetaPost graphics inclusion Summary: mpost to PDF, native MetaPost graphics inclusion
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires(post,postun): coreutils Requires(post,postun): coreutils
@ -3891,13 +3876,13 @@ found on CTAN in macros/pdftex/graphics.
%package -n texlive-multibibliography %package -n texlive-multibibliography
Provides: tex-multibibliography = %{epoch}:20210325-%{release} Provides: tex-multibibliography = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-multibibliography-bin = %{epoch}:20210325-%{release} Provides: texlive-multibibliography-bin = %{epoch}:20210325-%{release}
Provides: tex-multibibliography-bin = %{epoch}:20210325-%{release} Provides: tex-multibibliography-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-multibibliography-bin < 7:20180414 Obsoletes: texlive-multibibliography-bin < 7:20180414
Provides: tex-multibibliography-doc = %{epoch}:20210325-%{release} Provides: tex-multibibliography-doc = %{epoch}:20210325-%{release}
Provides: texlive-multibibliography-doc = %{epoch}:20210325-%{release} Provides: texlive-multibibliography-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-multibibliography-doc < 7:20180414 Obsoletes: texlive-multibibliography-doc < 7:20180414
License: LPPL 1.3
Summary: Multiple versions of a bibliography, with different sort orders Summary: Multiple versions of a bibliography, with different sort orders
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(multibibliography.sty) = %{epoch}:20210325-%{release} Provides: tex(multibibliography.sty) = %{epoch}:20210325-%{release}
@ -4039,7 +4024,7 @@ Provides: tex-oberdiek = %{epoch}:20210325-%{release}
Provides: tex-oberdiek-doc = %{epoch}:20210325-%{release} Provides: tex-oberdiek-doc = %{epoch}:20210325-%{release}
Provides: texlive-oberdiek-doc = %{epoch}:20210325-%{release} Provides: texlive-oberdiek-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-oberdiek-doc < 7:20180414 Obsoletes: texlive-oberdiek-doc < 7:20180414
License: LPPL License: LPPL-1.3c
Summary: A bundle of packages submitted by Heiko Oberdiek Summary: A bundle of packages submitted by Heiko Oberdiek
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(ifluatex.sty) tex(intcalc.sty) Requires: tex(ifluatex.sty) tex(intcalc.sty)
@ -4163,7 +4148,6 @@ Obsoletes: texlive-omegaware-bin < 7:20180414
Provides: tex-omegaware-doc = %{epoch}:20210325-%{release} Provides: tex-omegaware-doc = %{epoch}:20210325-%{release}
Provides: texlive-omegaware-doc = %{epoch}:20210325-%{release} Provides: texlive-omegaware-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-omegaware-doc < 7:20180414 Obsoletes: texlive-omegaware-doc < 7:20180414
License: LPPL
Summary: Omegaware package Summary: Omegaware package
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -4193,7 +4177,7 @@ Provides: tex-patgen = %{epoch}:20210325-%{release}
Provides: texlive-patgen-bin = %{epoch}:20210325-%{release} Provides: texlive-patgen-bin = %{epoch}:20210325-%{release}
Provides: tex-patgen-bin = %{epoch}:20210325-%{release} Provides: tex-patgen-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-patgen-bin < 7:20180414 Obsoletes: texlive-patgen-bin < 7:20180414
License: Knuth License: Public Domain
Summary: Generate hyphenation patterns Summary: Generate hyphenation patterns
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -4267,7 +4251,6 @@ Obsoletes: texlive-pdfcrop-bin < 7:20180414
Provides: tex-pdfcrop-doc = %{epoch}:20210325-%{release} Provides: tex-pdfcrop-doc = %{epoch}:20210325-%{release}
Provides: texlive-pdfcrop-doc = %{epoch}:20210325-%{release} Provides: texlive-pdfcrop-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-pdfcrop-doc < 7:20180414 Obsoletes: texlive-pdfcrop-doc < 7:20180414
License: LPPL
Summary: Crop PDF graphics Summary: Crop PDF graphics
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -4299,13 +4282,13 @@ and so on.
%package -n texlive-pdflatexpicscale %package -n texlive-pdflatexpicscale
Provides: tex-pdflatexpicscale = %{epoch}:20210325-%{release} Provides: tex-pdflatexpicscale = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-pdflatexpicscale-bin = %{epoch}:20210325-%{release} Provides: texlive-pdflatexpicscale-bin = %{epoch}:20210325-%{release}
Provides: tex-pdflatexpicscale-bin = %{epoch}:20210325-%{release} Provides: tex-pdflatexpicscale-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-pdflatexpicscale-bin < 7:20180414 Obsoletes: texlive-pdflatexpicscale-bin < 7:20180414
Provides: tex-pdflatexpicscale-doc = %{epoch}:20210325-%{release} Provides: tex-pdflatexpicscale-doc = %{epoch}:20210325-%{release}
Provides: texlive-pdflatexpicscale-doc = %{epoch}:20210325-%{release} Provides: texlive-pdflatexpicscale-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-pdflatexpicscale-doc < 7:20180414 Obsoletes: texlive-pdflatexpicscale-doc < 7:20180414
License: LPPL
Summary: Support software for downscaling graphics to be included by pdfLaTeX Summary: Support software for downscaling graphics to be included by pdfLaTeX
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -4377,13 +4360,13 @@ pdfTeX source tree.
%package -n texlive-pdfxup %package -n texlive-pdfxup
Provides: tex-pdfxup = %{epoch}:20210325-%{release} Provides: tex-pdfxup = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-pdfxup-bin = %{epoch}:20210325-%{release} Provides: texlive-pdfxup-bin = %{epoch}:20210325-%{release}
Provides: tex-pdfxup-bin = %{epoch}:20210325-%{release} Provides: tex-pdfxup-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-pdfxup-bin < 7:20180414 Obsoletes: texlive-pdfxup-bin < 7:20180414
Provides: tex-pdfxup-doc = %{epoch}:20210325-%{release} Provides: tex-pdfxup-doc = %{epoch}:20210325-%{release}
Provides: texlive-pdfxup-doc = %{epoch}:20210325-%{release} Provides: texlive-pdfxup-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-pdfxup-doc < 7:20180414 Obsoletes: texlive-pdfxup-doc < 7:20180414
License: LPPL
Summary: Create n-up PDF pages with minimal margins Summary: Create n-up PDF pages with minimal margins
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -4415,13 +4398,13 @@ Russian languages are supported).
%package -n texlive-perltex %package -n texlive-perltex
Provides: tex-perltex = %{epoch}:20210325-%{release} Provides: tex-perltex = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-perltex-bin = %{epoch}:20210325-%{release} Provides: texlive-perltex-bin = %{epoch}:20210325-%{release}
Provides: tex-perltex-bin = %{epoch}:20210325-%{release} Provides: tex-perltex-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-perltex-bin < 7:20180414 Obsoletes: texlive-perltex-bin < 7:20180414
Provides: tex-perltex-doc = %{epoch}:20210325-%{release} Provides: tex-perltex-doc = %{epoch}:20210325-%{release}
Provides: texlive-perltex-doc = %{epoch}:20210325-%{release} Provides: texlive-perltex-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-perltex-doc < 7:20180414 Obsoletes: texlive-perltex-doc < 7:20180414
License: LPPL
Summary: Define LaTeX macros in terms of Perl code Summary: Define LaTeX macros in terms of Perl code
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(perltex.sty) = %{epoch}:20210325-%{release} Provides: tex(perltex.sty) = %{epoch}:20210325-%{release}
@ -4469,13 +4452,13 @@ and a third that combines the other two.
%package -n texlive-pfarrei %package -n texlive-pfarrei
Provides: tex-pfarrei = %{epoch}:20210325-%{release} Provides: tex-pfarrei = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-pfarrei-bin = %{epoch}:20210325-%{release} Provides: texlive-pfarrei-bin = %{epoch}:20210325-%{release}
Provides: tex-pfarrei-bin = %{epoch}:20210325-%{release} Provides: tex-pfarrei-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-pfarrei-bin < 7:20180414 Obsoletes: texlive-pfarrei-bin < 7:20180414
Provides: tex-pfarrei-doc = %{epoch}:20210325-%{release} Provides: tex-pfarrei-doc = %{epoch}:20210325-%{release}
Provides: texlive-pfarrei-doc = %{epoch}:20210325-%{release} Provides: texlive-pfarrei-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-pfarrei-doc < 7:20180414 Obsoletes: texlive-pfarrei-doc < 7:20180414
License: LPPL 1.3
Summary: LaTeX support of pastors' and priests' work Summary: LaTeX support of pastors' and priests' work
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(ifpdf.sty) tex(pdfpages.sty) Requires: tex(ifpdf.sty) tex(pdfpages.sty)
@ -4495,13 +4478,13 @@ one texlua script for both requirements.
%package -n texlive-pkfix %package -n texlive-pkfix
Provides: tex-pkfix = %{epoch}:20210325-%{release} Provides: tex-pkfix = %{epoch}:20210325-%{release}
License: LPPL-1.3a
Provides: tex-pkfix-bin = %{epoch}:20210325-%{release} Provides: tex-pkfix-bin = %{epoch}:20210325-%{release}
Provides: texlive-pkfix-bin = %{epoch}:20210325-%{release} Provides: texlive-pkfix-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-pkfix-bin < 7:20180414 Obsoletes: texlive-pkfix-bin < 7:20180414
Provides: tex-pkfix-doc = %{epoch}:20210325-%{release} Provides: tex-pkfix-doc = %{epoch}:20210325-%{release}
Provides: texlive-pkfix-doc = %{epoch}:20210325-%{release} Provides: texlive-pkfix-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-pkfix-doc < 7:20180414 Obsoletes: texlive-pkfix-doc < 7:20180414
License: LPPL 1.3
Summary: Replace pk fonts in PostScript with Type 1 fonts Summary: Replace pk fonts in PostScript with Type 1 fonts
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -4519,7 +4502,6 @@ Obsoletes: texlive-pkfix-helper-bin < 7:20180414
Provides: tex-pkfix-helper-doc = %{epoch}:20210325-%{release} Provides: tex-pkfix-helper-doc = %{epoch}:20210325-%{release}
Provides: texlive-pkfix-helper-doc = %{epoch}:20210325-%{release} Provides: texlive-pkfix-helper-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-pkfix-helper-doc < 7:20180414 Obsoletes: texlive-pkfix-helper-doc < 7:20180414
License: LPPL
Summary: Make PostScript files accessible to pkfix Summary: Make PostScript files accessible to pkfix
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -4632,7 +4614,6 @@ Obsoletes: texlive-pst-pdf-bin < 7:20180414
Provides: tex-pst-pdf-doc = %{epoch}:20210325-%{release} Provides: tex-pst-pdf-doc = %{epoch}:20210325-%{release}
Provides: texlive-pst-pdf-doc = %{epoch}:20210325-%{release} Provides: texlive-pst-pdf-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-pst-pdf-doc < 7:20180414 Obsoletes: texlive-pst-pdf-doc < 7:20180414
License: LPPL
Summary: Make PDF versions of graphics by processing between runs Summary: Make PDF versions of graphics by processing between runs
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(graphicx.sty) tex(pstricks.sty) Requires: tex(graphicx.sty) tex(pstricks.sty)
@ -4780,7 +4761,6 @@ Obsoletes: texlive-purifyeps-bin < 7:20180414
Provides: tex-purifyeps-doc = %{epoch}:20210325-%{release} Provides: tex-purifyeps-doc = %{epoch}:20210325-%{release}
Provides: texlive-purifyeps-doc = %{epoch}:20210325-%{release} Provides: texlive-purifyeps-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-purifyeps-doc < 7:20180414 Obsoletes: texlive-purifyeps-doc < 7:20180414
License: LPPL
Summary: Make EPS work with both LaTeX/dvips and pdfLaTeX Summary: Make EPS work with both LaTeX/dvips and pdfLaTeX
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -4798,13 +4778,13 @@ file into the same stylized format that MetaPost outputs.
%package -n texlive-pygmentex %package -n texlive-pygmentex
Provides: tex-pygmentex = %{epoch}:20210325-%{release} Provides: tex-pygmentex = %{epoch}:20210325-%{release}
License: BSD-3-Clause
Provides: tex-pygmentex-bin = %{epoch}:20210325-%{release} Provides: tex-pygmentex-bin = %{epoch}:20210325-%{release}
Provides: texlive-pygmentex-bin = %{epoch}:20210325-%{release} Provides: texlive-pygmentex-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-pygmentex-bin < 7:20180414 Obsoletes: texlive-pygmentex-bin < 7:20180414
Provides: tex-pygmentex-doc = %{epoch}:20210325-%{release} Provides: tex-pygmentex-doc = %{epoch}:20210325-%{release}
Provides: texlive-pygmentex-doc = %{epoch}:20210325-%{release} Provides: texlive-pygmentex-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-pythontex-doc < 7:20180414 Obsoletes: texlive-pythontex-doc < 7:20180414
License: LPPL 1.3
Summary: Use Pygments to format code listings in documents Summary: Use Pygments to format code listings in documents
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(fancyvrb.sty) tex(color.sty) Requires: tex(fancyvrb.sty) tex(color.sty)
@ -4823,13 +4803,13 @@ applications that need to prettify source code.
%package -n texlive-pythontex %package -n texlive-pythontex
Provides: tex-pythontex = %{epoch}:20210325-%{release} Provides: tex-pythontex = %{epoch}:20210325-%{release}
License: BSD-3-Clause and LPPL-1.3c
Provides: tex-pythontex-bin = %{epoch}:20210325-%{release} Provides: tex-pythontex-bin = %{epoch}:20210325-%{release}
Provides: texlive-pythontex-bin = %{epoch}:20210325-%{release} Provides: texlive-pythontex-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-pythontex-bin < 7:20180414 Obsoletes: texlive-pythontex-bin < 7:20180414
Provides: tex-pythontex-doc = %{epoch}:20210325-%{release} Provides: tex-pythontex-doc = %{epoch}:20210325-%{release}
Provides: texlive-pythontex-doc = %{epoch}:20210325-%{release} Provides: texlive-pythontex-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-pythontex-doc < 7:20180414 Obsoletes: texlive-pythontex-doc < 7:20180414
License: LPPL 1.3
Summary: Run Python from within a document, typesetting the results Summary: Run Python from within a document, typesetting the results
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(fancyvrb.sty) tex(etex.sty) Requires: tex(fancyvrb.sty) tex(etex.sty)
@ -4859,13 +4839,13 @@ conversion to other formats.
%package -n texlive-rubik %package -n texlive-rubik
Provides: tex-rubik = %{epoch}:20210325-%{release} Provides: tex-rubik = %{epoch}:20210325-%{release}
License: LPPL-1.3c and GPL-1.0-or-later
Provides: tex-rubik-bin = %{epoch}:20210325-%{release} Provides: tex-rubik-bin = %{epoch}:20210325-%{release}
Provides: texlive-rubik-bin = %{epoch}:20210325-%{release} Provides: texlive-rubik-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-rubik-bin < 7:20180414 Obsoletes: texlive-rubik-bin < 7:20180414
Provides: tex-rubik-doc = %{epoch}:20210325-%{release} Provides: tex-rubik-doc = %{epoch}:20210325-%{release}
Provides: texlive-rubik-doc = %{epoch}:20210325-%{release} Provides: texlive-rubik-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-rubik-doc < 7:20180414 Obsoletes: texlive-rubik-doc < 7:20180414
License: LPPL 1.3
Summary: Document Rubik cube configurations and rotation sequences Summary: Document Rubik cube configurations and rotation sequences
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(tikz.sty) tex(fancyvrb.sty) Requires: tex(tikz.sty) tex(fancyvrb.sty)
@ -4916,13 +4896,13 @@ need to know SpiX to understand it).
%package -n texlive-splitindex %package -n texlive-splitindex
Provides: tex-splitindex = %{epoch}:20210325-%{release} Provides: tex-splitindex = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: tex-splitindex-bin = %{epoch}:20210325-%{release} Provides: tex-splitindex-bin = %{epoch}:20210325-%{release}
Provides: texlive-splitindex-bin = %{epoch}:20210325-%{release} Provides: texlive-splitindex-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-splitindex-bin < 7:20180414 Obsoletes: texlive-splitindex-bin < 7:20180414
Provides: tex-splitindex-doc = %{epoch}:20210325-%{release} Provides: tex-splitindex-doc = %{epoch}:20210325-%{release}
Provides: texlive-splitindex-doc = %{epoch}:20210325-%{release} Provides: texlive-splitindex-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-splitindex-doc < 7:20180414 Obsoletes: texlive-splitindex-doc < 7:20180414
License: LPPL
Summary: Unlimited number of indexes Summary: Unlimited number of indexes
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(splitindex.tex) = %{epoch}:20210325-%{release} Provides: tex(splitindex.tex) = %{epoch}:20210325-%{release}
@ -4992,13 +4972,13 @@ corresponding .ins file can be generated as well.
%package -n texlive-svn-multi %package -n texlive-svn-multi
Provides: tex-svn-multi = %{epoch}:20210325-%{release} Provides: tex-svn-multi = %{epoch}:20210325-%{release}
License: LPPL-1.3c and GPL-3.0-or-later and GPL-3.0-only
Provides: tex-svn-multi-bin = %{epoch}:20210325-%{release} Provides: tex-svn-multi-bin = %{epoch}:20210325-%{release}
Provides: texlive-svn-multi-bin = %{epoch}:20210325-%{release} Provides: texlive-svn-multi-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-svn-multi-bin < 7:20180414 Obsoletes: texlive-svn-multi-bin < 7:20180414
Provides: tex-svn-multi-doc = %{epoch}:20210325-%{release} Provides: tex-svn-multi-doc = %{epoch}:20210325-%{release}
Provides: texlive-svn-multi-doc = %{epoch}:20210325-%{release} Provides: texlive-svn-multi-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-svn-multi-doc < 7:20180414 Obsoletes: texlive-svn-multi-doc < 7:20180414
License: LPPL
Summary: Subversion keywords in multi-file LaTeX documents Summary: Subversion keywords in multi-file LaTeX documents
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(kvoptions.sty) tex(filehook.sty) Requires: tex(kvoptions.sty) tex(filehook.sty)
@ -5022,7 +5002,6 @@ Provides: tex-synctex = %{epoch}:20210325-%{release}
Provides: tex-synctex-bin = %{epoch}:20210325-%{release} Provides: tex-synctex-bin = %{epoch}:20210325-%{release}
Provides: texlive-synctex-bin = %{epoch}:20210325-%{release} Provides: texlive-synctex-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-synctex-bin < 7:20180414 Obsoletes: texlive-synctex-bin < 7:20180414
License: LPPL
Summary: synctex package Summary: synctex package
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -5033,7 +5012,7 @@ synctex package.
Provides: tex-tex = %{epoch}:20210325-%{release} tex-tex-bin = %{epoch}:20210325-%{release} Provides: tex-tex = %{epoch}:20210325-%{release} tex-tex-bin = %{epoch}:20210325-%{release}
Provides: texlive-tex-bin = %{epoch}:20210325-%{release} Provides: texlive-tex-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-tex-bin < 7:20180414 Obsoletes: texlive-tex-bin < 7:20180414
License: Knuth License: GPL-3.0-or-later and GPL-3.0-only and OFL-1.1 and LPPL-1.3c and GPL-2.0-or-later
Summary: A sophisticated typesetting engine Summary: A sophisticated typesetting engine
Requires: texlive-base texlive-cm Requires: texlive-base texlive-cm
Requires: texlive-hyphen-base texlive-knuth-lib Requires: texlive-hyphen-base texlive-knuth-lib
@ -5059,7 +5038,6 @@ Obsoletes: texlive-tex4ebook-bin < 7:20180414
Provides: tex-tex4ebook-doc = %{epoch}:20210325-%{release} Provides: tex-tex4ebook-doc = %{epoch}:20210325-%{release}
Provides: texlive-tex4ebook-doc = %{epoch}:20210325-%{release} Provides: texlive-tex4ebook-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-tex4ebook-doc < 7:20180414 Obsoletes: texlive-tex4ebook-doc < 7:20180414
License: LPPL 1.3
Summary: Convertor from LaTeX to ebook formats Summary: Convertor from LaTeX to ebook formats
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(etoolbox.sty) tex(kvoptions.sty) Requires: tex(etoolbox.sty) tex(kvoptions.sty)
@ -5074,13 +5052,13 @@ and epub3. tex4ht is used as conversion engine.
%package -n texlive-tex4ht %package -n texlive-tex4ht
Provides: tex-tex4ht = %{epoch}:20210325-%{release} Provides: tex-tex4ht = %{epoch}:20210325-%{release}
License: LPPL-1.3a and LPPL-1.3c
Provides: tex-tex4ht-bin = %{epoch}:20210325-%{release} Provides: tex-tex4ht-bin = %{epoch}:20210325-%{release}
Provides: texlive-tex4ht-bin = %{epoch}:20210325-%{release} Provides: texlive-tex4ht-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-tex4ht-bin < 7:20180414 Obsoletes: texlive-tex4ht-bin < 7:20180414
Provides: tex-tex4ht-doc = %{epoch}:20210325-%{release} Provides: tex-tex4ht-doc = %{epoch}:20210325-%{release}
Provides: texlive-tex4ht-doc = %{epoch}:20210325-%{release} Provides: texlive-tex4ht-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-tex4ht-doc < 7:20180414 Obsoletes: texlive-tex4ht-doc < 7:20180414
License: LPPL
Summary: Convert (La)TeX to HTML/XML Summary: Convert (La)TeX to HTML/XML
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(m-tex4ht.tex) = %{epoch}:20210325-%{release} Provides: tex(m-tex4ht.tex) = %{epoch}:20210325-%{release}
@ -5100,13 +5078,13 @@ restricted-syntax systems such as hyperlatex and gellmu.
%package -n texlive-texcount %package -n texlive-texcount
Provides: tex-texcount = %{epoch}:20210325-%{release} Provides: tex-texcount = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: tex-texcount-bin = %{epoch}:20210325-%{release} Provides: tex-texcount-bin = %{epoch}:20210325-%{release}
Provides: texlive-texcount-bin = %{epoch}:20210325-%{release} Provides: texlive-texcount-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-texcount-bin < 7:20180414 Obsoletes: texlive-texcount-bin < 7:20180414
Provides: tex-texcount-doc = %{epoch}:20210325-%{release} Provides: tex-texcount-doc = %{epoch}:20210325-%{release}
Provides: texlive-texcount-doc = %{epoch}:20210325-%{release} Provides: texlive-texcount-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-texcount-doc < 7:20180414 Obsoletes: texlive-texcount-doc < 7:20180414
License: LPPL
Summary: Count words in a LaTeX document Summary: Count words in a LaTeX document
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -5275,7 +5253,6 @@ Provides: tex-texlive-en = %{epoch}:20210325-%{release}
Provides: tex-texlive-en-doc = %{epoch}:20210325-%{release} Provides: tex-texlive-en-doc = %{epoch}:20210325-%{release}
Provides: texlive-texlive-en-doc = %{epoch}:20210325-%{release} Provides: texlive-texlive-en-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-texlive-en-doc < 7:20180414 Obsoletes: texlive-texlive-en-doc < 7:20180414
License: LPPL
Summary: TeX Live manual (English) Summary: TeX Live manual (English)
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -5287,7 +5264,7 @@ TeX Live manual (English).
Provides: tex-texlive-scripts = %{epoch}:20210325-%{release} Provides: tex-texlive-scripts = %{epoch}:20210325-%{release}
Provides: texlive-texlive-scripts-bin = %{epoch}:20210325-%{release} Provides: texlive-texlive-scripts-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-texlive-scripts-bin < 7:20180414 Obsoletes: texlive-texlive-scripts-bin < 7:20180414
License: LPPL License: GPL-2.0-only and GPL-2.0-or-later
Summary: TeX Live infrastructure programs Summary: TeX Live infrastructure programs
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: texlive-texlive.infra Requires: texlive-texlive.infra
@ -5304,7 +5281,7 @@ tlmgr to run but still ours. Not included in tlcritical.
%package -n texlive-texlive-scripts-extra %package -n texlive-texlive-scripts-extra
Provides: tex-texlive-scripts-extra = %{epoch}:20210325-%{release} Provides: tex-texlive-scripts-extra = %{epoch}:20210325-%{release}
Provides: texlive-texlive-scripts-extra-bin = %{epoch}:20210325-%{release} Provides: texlive-texlive-scripts-extra-bin = %{epoch}:20210325-%{release}
License: GPL+ and LPPL and Public Domain License: GPL-1.0-or-later
Summary: TeX Live scripts Summary: TeX Live scripts
Requires: texlive-base Requires: texlive-base
Requires: texlive-kpathsea Requires: texlive-kpathsea
@ -5321,13 +5298,13 @@ just a normal package.
%package -n texlive-texlive.infra %package -n texlive-texlive.infra
Provides: tex-texlive.infra = %{epoch}:20210325-%{release} Provides: tex-texlive.infra = %{epoch}:20210325-%{release}
License: GPL-2.0-only and GPL-2.0-or-later and Artistic-1.0-Perl OR GPL-1.0-or-later
Provides: tex-texlive.infra-bin = %{epoch}:20210325-%{release} Provides: tex-texlive.infra-bin = %{epoch}:20210325-%{release}
Provides: texlive-texlive.infra-bin = %{epoch}:20210325-%{release} Provides: texlive-texlive.infra-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-texlive.infra-bin < 7:20180414 Obsoletes: texlive-texlive.infra-bin < 7:20180414
Provides: tex-texlive.infra-doc = %{epoch}:20210325-%{release} Provides: tex-texlive.infra-doc = %{epoch}:20210325-%{release}
Provides: texlive-texlive.infra-doc = %{epoch}:20210325-%{release} Provides: texlive-texlive.infra-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-texlive.infra-doc < 7:20180414 Obsoletes: texlive-texlive.infra-doc < 7:20180414
License: LPPL
Summary: Basic TeX Live infrastructure Summary: Basic TeX Live infrastructure
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(fmtutil-hdr.cnf) = %{epoch}:20210325-%{release} Provides: tex(fmtutil-hdr.cnf) = %{epoch}:20210325-%{release}
@ -5359,13 +5336,13 @@ elements of the log file.
%package -n texlive-texosquery %package -n texlive-texosquery
Provides: tex-texosquery = %{epoch}:20210325-%{release} Provides: tex-texosquery = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: tex-texosquery-bin = %{epoch}:20210325-%{release} Provides: tex-texosquery-bin = %{epoch}:20210325-%{release}
Provides: texlive-texosquery-bin = %{epoch}:20210325-%{release} Provides: texlive-texosquery-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-texosquery-bin < 7:20180414 Obsoletes: texlive-texosquery-bin < 7:20180414
Provides: tex-texosquery-doc = %{epoch}:20210325-%{release} Provides: tex-texosquery-doc = %{epoch}:20210325-%{release}
Provides: texlive-texosquery-doc = %{epoch}:20210325-%{release} Provides: texlive-texosquery-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-texosquery-doc < 7:20180414 Obsoletes: texlive-texosquery-doc < 7:20180414
License: LPPL
Summary: Cross-platform Java application to query OS information Summary: Cross-platform Java application to query OS information
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: java-headless Requires: java-headless
@ -5418,13 +5395,13 @@ exists.
%package -n texlive-texsis %package -n texlive-texsis
Provides: tex-texsis = %{epoch}:20210325-%{release} Provides: tex-texsis = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: tex-texsis-bin = %{epoch}:20210325-%{release} Provides: tex-texsis-bin = %{epoch}:20210325-%{release}
Provides: texlive-texsis-bin = %{epoch}:20210325-%{release} Provides: texlive-texsis-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-texsis-bin < 7:20180414 Obsoletes: texlive-texsis-bin < 7:20180414
Provides: tex-texsis-doc = %{epoch}:20210325-%{release} Provides: tex-texsis-doc = %{epoch}:20210325-%{release}
Provides: texlive-texsis-doc = %{epoch}:20210325-%{release} Provides: texlive-texsis-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-texsis-doc < 7:20180414 Obsoletes: texlive-texsis-doc < 7:20180414
License: LPPL
Summary: Plain TeX macros for Physicist Summary: Plain TeX macros for Physicist
Requires: texlive-base Requires: texlive-base
Requires: texlive-kpathsea texlive-pdftex Requires: texlive-kpathsea texlive-pdftex
@ -5480,7 +5457,7 @@ Provides: tex-texware = %{epoch}:20210325-%{release}
Provides: tex-texware-bin = %{epoch}:20210325-%{release} Provides: tex-texware-bin = %{epoch}:20210325-%{release}
Provides: texlive-texware-bin = %{epoch}:20210325-%{release} Provides: texlive-texware-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-texware-bin < 7:20180414 Obsoletes: texlive-texware-bin < 7:20180414
License: Knuth License: Public domain
Summary: Utility programs for use with TeX Summary: Utility programs for use with TeX
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -5494,13 +5471,13 @@ human readable Property List (PL) files and vice versa.
%package -n texlive-thumbpdf %package -n texlive-thumbpdf
Provides: tex-thumbpdf = %{epoch}:20210325-%{release} Provides: tex-thumbpdf = %{epoch}:20210325-%{release}
License: LPPL-1.3a
Provides: tex-thumbpdf-bin = %{epoch}:20210325-%{release} Provides: tex-thumbpdf-bin = %{epoch}:20210325-%{release}
Provides: texlive-thumbpdf-bin = %{epoch}:20210325-%{release} Provides: texlive-thumbpdf-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-thumbpdf-bin < 7:20180414 Obsoletes: texlive-thumbpdf-bin < 7:20180414
Provides: tex-thumbpdf-doc = %{epoch}:20210325-%{release} Provides: tex-thumbpdf-doc = %{epoch}:20210325-%{release}
Provides: texlive-thumbpdf-doc = %{epoch}:20210325-%{release} Provides: texlive-thumbpdf-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-thumbpdf-doc < 7:20180414 Obsoletes: texlive-thumbpdf-doc < 7:20180414
License: LPPL
Summary: Thumbnails for pdfTeX and dvips/ps2pdf Summary: Thumbnails for pdfTeX and dvips/ps2pdf
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(ifluatex.sty) ghostscript Requires: tex(ifluatex.sty) ghostscript
@ -5520,7 +5497,6 @@ LaTeX.
Provides: tex-tie = %{epoch}:20210325-%{release} tex-tie-bin = %{epoch}:20210325-%{release} Provides: tex-tie = %{epoch}:20210325-%{release} tex-tie-bin = %{epoch}:20210325-%{release}
Provides: texlive-tie-bin = %{epoch}:20210325-%{release} Provides: texlive-tie-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-tie-bin < 7:20180414 Obsoletes: texlive-tie-bin < 7:20180414
License: Latex2e
Summary: Allow multiple web change files Summary: Allow multiple web change files
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -5564,7 +5540,6 @@ Obsoletes: texlive-ttfutils-bin < 7:20180414
Provides: tex-ttfutils-doc = %{epoch}:20210325-%{release} Provides: tex-ttfutils-doc = %{epoch}:20210325-%{release}
Provides: texlive-ttfutils-doc = %{epoch}:20210325-%{release} Provides: texlive-ttfutils-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-ttfutils-doc < 7:20180414 Obsoletes: texlive-ttfutils-doc < 7:20180414
License: LPPL
Summary: Linux TrueType utilities Summary: Linux TrueType utilities
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Provides: tex(T1-WGL4.enc) = %{epoch}:20210325-%{release} Provides: tex(T1-WGL4.enc) = %{epoch}:20210325-%{release}
@ -5581,7 +5556,6 @@ Obsoletes: texlive-typeoutfileinfo-bin < 7:20180414
Provides: tex-typeoutfileinfo-doc = %{epoch}:20210325-%{release} Provides: tex-typeoutfileinfo-doc = %{epoch}:20210325-%{release}
Provides: texlive-typeoutfileinfo-doc = %{epoch}:20210325-%{release} Provides: texlive-typeoutfileinfo-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-typeoutfileinfo-doc < 7:20180414 Obsoletes: texlive-typeoutfileinfo-doc < 7:20180414
License: LPPL 1.3
Summary: Display class/package/file information Summary: Display class/package/file information
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(readprov.sty) Requires: tex(readprov.sty)
@ -5602,7 +5576,6 @@ Obsoletes: texlive-ulqda-bin < 7:20180414
Provides: tex-ulqda-doc = %{epoch}:20210325-%{release} Provides: tex-ulqda-doc = %{epoch}:20210325-%{release}
Provides: texlive-ulqda-doc = %{epoch}:20210325-%{release} Provides: texlive-ulqda-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-ulqda-doc < 7:20180414 Obsoletes: texlive-ulqda-doc < 7:20180414
License: LPPL
Summary: Support of Qualitative Data Analysis Summary: Support of Qualitative Data Analysis
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(multicol.sty) tex(tikz.sty) Requires: tex(multicol.sty) tex(tikz.sty)
@ -5843,7 +5816,6 @@ Obsoletes: texlive-vlna-bin < 7:20180414
Provides: tex-vlna-doc = %{epoch}:20210325-%{release} Provides: tex-vlna-doc = %{epoch}:20210325-%{release}
Provides: texlive-vlna-doc = %{epoch}:20210325-%{release} Provides: texlive-vlna-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-vlna-doc < 7:20180414 Obsoletes: texlive-vlna-doc < 7:20180414
License: LPPL
Summary: Adds tilde after each non-syllabic preposition Summary: Adds tilde after each non-syllabic preposition
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -5866,7 +5838,6 @@ Obsoletes: texlive-vpe-bin < 7:20180414
Provides: tex-vpe-doc = %{epoch}:20210325-%{release} Provides: tex-vpe-doc = %{epoch}:20210325-%{release}
Provides: texlive-vpe-doc = %{epoch}:20210325-%{release} Provides: texlive-vpe-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-vpe-doc < 7:20180414 Obsoletes: texlive-vpe-doc < 7:20180414
License: LPPL
Summary: Source specials for PDF output Summary: Source specials for PDF output
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(keyval.sty) tex(color.sty) Requires: tex(keyval.sty) tex(color.sty)
@ -5888,7 +5859,7 @@ LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the
Provides: tex-web = %{epoch}:20210325-%{release} tex-web-bin = %{epoch}:20210325-%{release} Provides: tex-web = %{epoch}:20210325-%{release} tex-web-bin = %{epoch}:20210325-%{release}
Provides: texlive-web-bin = %{epoch}:20210325-%{release} Provides: texlive-web-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-web-bin < 7:20180414 Obsoletes: texlive-web-bin < 7:20180414
License: Knuth License: LPPL-1.3c and MIT
Summary: Original web programs tangle and weave Summary: Original web programs tangle and weave
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
@ -5924,12 +5895,12 @@ produce nice online quizzes using WebQuiz and basic knowledge of LaTeX.
%package -n texlive-wordcount %package -n texlive-wordcount
Provides: tex-wordcount = %{epoch}:20210325-%{release} Provides: tex-wordcount = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: texlive-wordcount-bin = %{epoch}:20210325-%{release} Provides: texlive-wordcount-bin = %{epoch}:20210325-%{release}
Provides: tex-wordcount-doc = %{epoch}:20210325-%{release} Provides: tex-wordcount-doc = %{epoch}:20210325-%{release}
Provides: texlive-wordcount-doc = %{epoch}:20210325-%{release} Provides: texlive-wordcount-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-wordcount-doc < 7:20210325 Obsoletes: texlive-wordcount-doc < 7:20210325
Provides: tex(wordcount.tex) = %{epoch}:20210325-%{release} Provides: tex(wordcount.tex) = %{epoch}:20210325-%{release}
License: LPPL
Summary: Estimate the number of words in a LaTeX document Summary: Estimate the number of words in a LaTeX document
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
BuildArch: noarch BuildArch: noarch
@ -6004,7 +5975,7 @@ TeX macro packages like LaTeX and ConTeXt.
Provides: tex-xindex = %{epoch}:20210325-%{release} Provides: tex-xindex = %{epoch}:20210325-%{release}
Provides: tex-xindex-bin = %{epoch}:20210325-%{release} Provides: tex-xindex-bin = %{epoch}:20210325-%{release}
Provides: texlive-xindex-bin = %{epoch}:20210325-%{release} Provides: texlive-xindex-bin = %{epoch}:20210325-%{release}
License: LPPL 1.3 License: LPPL-1.3c and MIT
Summary: Unicode compatible index program for LaTeX Summary: Unicode compatible index program for LaTeX
Requires: lua >= 5.3 Requires: lua >= 5.3
Requires: texlive-base Requires: texlive-base
@ -6053,6 +6024,7 @@ MacOS and Linux systems.
%package -n texlive-xmltex %package -n texlive-xmltex
Provides: tex-xmltex = %{epoch}:20210325-%{release} Provides: tex-xmltex = %{epoch}:20210325-%{release}
License: LPPL-1.3c
Provides: tex-xmltex-bin = %{epoch}:20210325-%{release} Provides: tex-xmltex-bin = %{epoch}:20210325-%{release}
Provides: texlive-xmltex-bin = %{epoch}:20210325-%{release} Provides: texlive-xmltex-bin = %{epoch}:20210325-%{release}
Obsoletes: texlive-xmltex-bin < 7:20180414 Obsoletes: texlive-xmltex-bin < 7:20180414
@ -6060,7 +6032,6 @@ Provides: tex-xmltex-doc = %{epoch}:20210325-%{release}
Provides: texlive-xmltex-doc = %{epoch}:20210325-%{release} Provides: texlive-xmltex-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-xmltex-doc < 7:20180414 Obsoletes: texlive-xmltex-doc < 7:20180414
Provides: xmltex = %{epoch}:20210325-%{release} Provides: xmltex = %{epoch}:20210325-%{release}
License: LPPL
Summary: Support for parsing XML documents Summary: Support for parsing XML documents
Requires: texlive-base Requires: texlive-base
Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-kpathsea-bin, tex-kpathsea
@ -6119,7 +6090,6 @@ Obsoletes: texlive-yplan-bin < 7:20180414
Provides: tex-yplan-doc = %{epoch}:20210325-%{release} Provides: tex-yplan-doc = %{epoch}:20210325-%{release}
Provides: texlive-yplan-doc = %{epoch}:20210325-%{release} Provides: texlive-yplan-doc = %{epoch}:20210325-%{release}
Obsoletes: texlive-yplan-doc < 7:20180414 Obsoletes: texlive-yplan-doc < 7:20180414
License: LPPL
Summary: Daily planner type calendar Summary: Daily planner type calendar
Requires: texlive-base texlive-kpathsea Requires: texlive-base texlive-kpathsea
Requires: tex(ifthen.sty) Requires: tex(ifthen.sty)
@ -6146,9 +6116,15 @@ ln -s %{_datadir}/texlive/licenses/$l $l
done done
%global mysources %{lua: for index,value in ipairs(sources) do if index >= 16 then print(value.." ") end end} %global mysources %{lua: for index,value in ipairs(sources) do if index >= 16 then print(value.." ") end end}
%ifarch sw_64
cp -fv /usr/lib/rpm/%{_vendor}/config.* source/build-aux/
cp -fv /usr/lib/rpm/%{_vendor}/config.* source/libs/icu/icu-src/source/
cp -fv /usr/lib/rpm/%{_vendor}/config.* source/libs/freetype2/freetype-src/builds/unix/
cp -fv /usr/lib/rpm/%{_vendor}/config.* source/utils/asymptote/
%endif
%build %build
%ifarch loongarch64 %ifarch loongarch64 sw_64 mips64el
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -fcommon" export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -fcommon"
export CXXFLAGS="$RPM_OPT_FLAGS -std=c++11 -fno-strict-aliasing -fcommon" export CXXFLAGS="$RPM_OPT_FLAGS -std=c++11 -fno-strict-aliasing -fcommon"
%else %else
@ -6170,7 +6146,7 @@ cd work
--enable-shared --enable-compiler-warnings=max --without-cxx-runtime-hack \ --enable-shared --enable-compiler-warnings=max --without-cxx-runtime-hack \
--disable-native-texlive-build --disable-t1utils --disable-psutils --disable-biber --disable-ptexenc --disable-largefile \ --disable-native-texlive-build --disable-t1utils --disable-psutils --disable-biber --disable-ptexenc --disable-largefile \
--disable-xindy --disable-xindy-docs --disable-xindy-make-rules \ --disable-xindy --disable-xindy-docs --disable-xindy-make-rules \
%ifarch aarch64 riscv64 loongarch64 %ifarch aarch64 riscv64 loongarch64 ppc64le sw_64 mips64el
--disable-luajittex --disable-mfluajit --disable-luajithbtex --disable-mfluajit-nowin \ --disable-luajittex --disable-mfluajit --disable-luajithbtex --disable-mfluajit-nowin \
%endif %endif
--disable-rpath --disable-rpath
@ -6354,7 +6330,7 @@ for i in afm2pl afm2tfm aleph bibtex bibtex8 bibtexu chkdvifont chktex ctie ctan
chrpath --delete %{buildroot}%{_bindir}/$i chrpath --delete %{buildroot}%{_bindir}/$i
done done
%ifnarch aarch64 riscv64 loongarch64 %ifnarch aarch64 riscv64 loongarch64 ppc64le sw_64 mips64el
for i in luajittex luajithbtex mfluajit;do for i in luajittex luajithbtex mfluajit;do
chrpath --delete %{buildroot}%{_bindir}/$i chrpath --delete %{buildroot}%{_bindir}/$i
done done
@ -7523,7 +7499,7 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || :
%{_includedir}/kpathsea/* %{_includedir}/kpathsea/*
%{_includedir}/synctex/ %{_includedir}/synctex/
%{_includedir}/texlua53/ %{_includedir}/texlua53/
%ifnarch aarch64 riscv64 loongarch64 %ifnarch aarch64 riscv64 loongarch64 ppc64le sw_64 mips64el
%{_includedir}/texluajit/ %{_includedir}/texluajit/
%endif %endif
%{_libdir}/*.so %{_libdir}/*.so
@ -7599,7 +7575,7 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || :
%files -n texlive-luajittex %files -n texlive-luajittex
%license gpl2.txt %license gpl2.txt
%ifnarch aarch64 riscv64 loongarch64 %ifnarch aarch64 riscv64 loongarch64 ppc64le sw_64 mips64el
%{_bindir}/luajittex %{_bindir}/luajittex
%{_bindir}/luajithbtex %{_bindir}/luajithbtex
%{_bindir}/texluajit %{_bindir}/texluajit
@ -7718,7 +7694,7 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || :
%license gpl2.txt %license gpl2.txt
%{_bindir}/mflua %{_bindir}/mflua
%{_bindir}/mflua-nowin %{_bindir}/mflua-nowin
%ifnarch aarch64 riscv64 loongarch64 %ifnarch aarch64 riscv64 loongarch64 ppc64le sw_64 mips64el
%{_bindir}/mfluajit %{_bindir}/mfluajit
%{_bindir}/mfluajit-nowin %{_bindir}/mfluajit-nowin
%endif %endif
@ -8651,6 +8627,21 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || :
%doc %{_datadir}/texlive/texmf-dist/doc/latex/yplan/ %doc %{_datadir}/texlive/texmf-dist/doc/latex/yplan/
%changelog %changelog
* Mon Mar 10 2025 mahailiang <mahailiang@uniontech.com> - 9:20210325-10
- fix build error on sw_64 mips64el
* Wed Aug 21 2024 xu_ping <707078654@qq.com> - 9:20210325-9
- License compliance rectification.
* Mon Aug 05 2024 wangkai <13474090681@163.com> - 9:20210325-8
- Fix CVE-2023-46048, CVE-2023-46051
* Mon Nov 27 2023 jiahua.yu <jiahua.yu@shingroup.cn> - 9:20210325-7
- Init support for ppc64le
* Mon Jul 03 2023 yaoxin <yao_xin001@hoperun.com> - 9:20210325-6
- Fix CVE-2023-32700
* Sat Mar 4 2023 Wenlong Zhang <zhangwenlong@loongson.cn> - 9:20210325-5 * Sat Mar 4 2023 Wenlong Zhang <zhangwenlong@loongson.cn> - 9:20210325-5
- fix build error for loongarch64 - fix build error for loongarch64