Re: [PATCH cygport] texlive.cygclass: remove references to i386-cygwin

2023-02-26 Thread Jon Turney via Cygwin-apps

On 24/02/2023 21:10, Ken Brown via Cygwin-apps wrote:

Patch attached.


Thanks. Applied.


[PATCH cygport] texlive.cygclass: remove references to i386-cygwin

2023-02-24 Thread Ken Brown via Cygwin-apps

Patch attached.From 6d0508ddb08785dd3c8dbcfa64dce4fe21861c62 Mon Sep 17 00:00:00 2001
From: Ken Brown 
Date: Mon, 20 Feb 2023 13:39:34 -0500
Subject: [PATCH cygport] texlive.cygclass: remove references to i386-cygwin

These are no longer relevant now that we're not supporting 32-bit
Cygwin.  Moreover, upstream TeX Live is removing all i386-cygwin
packages starting with TeX Live 2023.
---
 cygclass/texlive.cygclass | 8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/cygclass/texlive.cygclass b/cygclass/texlive.cygclass
index 75eae7df44bb..06b4849c3221 100644
--- a/cygclass/texlive.cygclass
+++ b/cygclass/texlive.cygclass
@@ -116,7 +116,6 @@ done
 for pkg in ${TEXLIVE_ARCH_PKGS//,/ }
 do
SRC_URI+=" ${tlnet}/archive/$pkg.tar.xz"
-   SRC_URI+=" ${tlnet}/archive/$pkg.i386-cygwin.tar.xz"
SRC_URI+=" ${tlnet}/archive/$pkg.x86_64-cygwin.tar.xz"
 done
 for pkg in ${TEXLIVE_DOC_PKGS//,/ }
@@ -149,7 +148,7 @@ texlive_install() {
done
for pkg in ${TEXLIVE_ARCH_PKGS//,/ }
do
-   pkgs+="$pkg $pkg.i386-cygwin $pkg.x86_64-cygwin "
+   pkgs+="$pkg $pkg.x86_64-cygwin "
done
for pkg in ${TEXLIVE_DOC_PKGS//,/ }
do
@@ -170,7 +169,7 @@ texlive_install() {
*.bat)
# only needed for native Win32
continue ;;
-   bin/i386-cygwin/*)
+   bin/x86_64-cygwin/*)
if [ ! -L ${f} ]
then
dobin $f
@@ -183,9 +182,6 @@ texlive_install() {
esac
fi
continue ;;
-   bin/x86_64-cygwin/*)
-   # duplicate to i386-cygwin handled above
-   continue ;;
*doc/info/dir)
# system-managed file
continue ;;
-- 
2.39.0