summaryrefslogtreecommitdiff
path: root/metadata/news/2024-06-08-texlive-2023-bump
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-06-09 00:08:14 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-06-09 00:08:14 +0100
commit4fe228ee9aa3b9b825d54ace549a5517e153e8bd (patch)
tree90a261e3ea59b80722d70d3c42f3e40d16c9f8dd /metadata/news/2024-06-08-texlive-2023-bump
parentadc09cc4e6ebf7931735c02c0c272b4b885c2b30 (diff)
gentoo auto-resync : 09:06:2024 - 00:08:13
Diffstat (limited to 'metadata/news/2024-06-08-texlive-2023-bump')
-rw-r--r--metadata/news/2024-06-08-texlive-2023-bump/2024-06-08-texlive-2023-bump.en.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/metadata/news/2024-06-08-texlive-2023-bump/2024-06-08-texlive-2023-bump.en.txt b/metadata/news/2024-06-08-texlive-2023-bump/2024-06-08-texlive-2023-bump.en.txt
new file mode 100644
index 000000000000..7ab0231acf25
--- /dev/null
+++ b/metadata/news/2024-06-08-texlive-2023-bump/2024-06-08-texlive-2023-bump.en.txt
@@ -0,0 +1,34 @@
+Title: Upgrading to TeX Live 2023
+Author: Florian Schmaus <flow@gentoo.org>
+Posted: 2024-06-05
+Revision: 1
+News-Item-Format: 2.0
+Display-If-Installed: <app-text/texlive-2023
+
+
+Upgrading to TeX Live 2023
+==========================
+
+We will soon start the stabilization of TeX Live 2023 in Gentoo.
+
+Since TeX Live 2023 underwent a major overhaul, including TeX Live package
+moves between the according Gentoo packages, there are file conflicts
+between Gentoo's TeX Live 2021 and 2023 packages. To avoid those
+conflicts, it is recommended to uninstall all of dev-texlive prior
+updating TeX Live to version 2023.
+
+Before uninstalling dev-texlive packages, first check if your system has
+a pending texlive update (1). If this is the case, uninstall the old
+dev-texlive packages (2) and emerge the update (3).
+
+1. emerge -p '>=app-text/texlive-2023'
+[only proceed if texlive update is available]
+2. emerge --unmerge --deselect=n 'dev-texlive/*'
+3. emerge '>=app-text/texlive-2023'
+
+The steps above are equivalent to the following bash snippet:
+
+if emerge -p '>=app-text/texlive-2023'; then
+ emerge --unmerge --deselect=n 'dev-texlive/*'
+ emerge '>=app-text/texlive-2023'
+fi