From 32e61b01d309a87ece31159274e59d21a2c51f90 Mon Sep 17 00:00:00 2001 From: Jamie Cho Date: Sat, 16 May 2026 03:13:00 +0000 Subject: [PATCH 1/2] Update BASIC-To-6809 to latest version --- Dockerfile | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8ae027f..6356394 100644 --- a/Dockerfile +++ b/Dockerfile @@ -150,14 +150,14 @@ RUN curl -LO http://sarrazip.com/dev/cmoc-0.1.98.tar.gz && \ # Build and install BASIC-To-6809 RUN git clone https://github.com/nowhereman999/BASIC-To-6809.git && \ cd BASIC-To-6809 && \ - git checkout 804941e50d6a7c5a209f19f212fdbd672abd8b53 && \ + git checkout 0e60e91fae063324fb9608f0117f6e9ac0582125 && \ cp Manual.pdf /usr/local/share/doc/basto6809.pdf && \ cd Binary_Versions && \ if [ "$(uname -m)" = "aarch64" ]; then \ - unzip BASIC-To-6809_v5.27_Linux_arm64.zip -d /tmp/basto6809 && \ + unzip BASIC-To-6809_v5.28_Linux_arm64.zip -d /tmp/basto6809 && \ mv /tmp/basto6809/BASIC-To-6809_Linux_arm64 /usr/local/share/basto6809; \ else \ - unzip BASIC-To-6809_v5.27_Linux_x86_64.zip -d /tmp/basto6809 && \ + unzip BASIC-To-6809_v5.28_Linux_x86_64.zip -d /tmp/basto6809 && \ mv /tmp/basto6809/BASIC-To-6809_Linux_x86_64 /usr/local/share/basto6809; \ fi && \ chmod -R o+rx /usr/local/share/basto6809 && \ diff --git a/README.md b/README.md index 6cf92d6..7e6377d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Color Computer](https://en.wikipedia.org/wiki/TRS-80_Color_Computer) applications. It implements a Docker image that includes the following tools: * CoCo Languages and Libraries - * [BasTo6809 V5.27](https://github.com/nowhereman999/BASIC-To-6809) + * [BasTo6809 V5.28](https://github.com/nowhereman999/BASIC-To-6809) * [CMOC 0.1.98](http://sarrazip.com/dev/cmoc.html) * [Java Grinder](http://www.mikekohn.net/micro/java_grinder.php) * [LWTOOLS 4.24](http://lwtools.projects.l-w.ca) From 3128a05894f87545dcd19715d6b80ba3ac449011 Mon Sep 17 00:00:00 2001 From: Jamie Cho Date: Sat, 16 May 2026 11:17:38 +0000 Subject: [PATCH 2/2] Work around isse in BASIC-To-6809 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6356394..0c6de21 100644 --- a/Dockerfile +++ b/Dockerfile @@ -160,6 +160,7 @@ RUN git clone https://github.com/nowhereman999/BASIC-To-6809.git && \ unzip BASIC-To-6809_v5.28_Linux_x86_64.zip -d /tmp/basto6809 && \ mv /tmp/basto6809/BASIC-To-6809_Linux_x86_64 /usr/local/share/basto6809; \ fi && \ + mv "/usr/local/share/basto6809/BasTo6809.2.Compile copy" "/usr/local/share/basto6809/BasTo6809.2.Compile" && \ chmod -R o+rx /usr/local/share/basto6809 && \ cd /root && rm -rf BASIC-To-6809 /tmp/basto6809 COPY utils/basto6809todsk /usr/local/bin