From 2ef8ef8d2c972faed26819703bae15a937b10957 Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Fri, 24 Mar 2023 21:59:28 -0400 Subject: dev-embedded/xa: drop 2.3.13 Signed-off-by: Ionen Wolkens --- dev-embedded/xa/Manifest | 1 - dev-embedded/xa/files/xa-2.3.10-Makefile.patch | 77 -------------------------- dev-embedded/xa/xa-2.3.13.ebuild | 31 ----------- 3 files changed, 109 deletions(-) delete mode 100644 dev-embedded/xa/files/xa-2.3.10-Makefile.patch delete mode 100644 dev-embedded/xa/xa-2.3.13.ebuild diff --git a/dev-embedded/xa/Manifest b/dev-embedded/xa/Manifest index 86eb602c8dc5..483ed5ecd16b 100644 --- a/dev-embedded/xa/Manifest +++ b/dev-embedded/xa/Manifest @@ -1,2 +1 @@ -DIST xa-2.3.13.tar.gz 155606 BLAKE2B 8196f8f88bee29dbab9ad026c0d4e3519159c4ed7579dc7db391c0bdd7b1bfe31e2884644258d863e299ac3b5fcc43718b3d95b9b7d7802541a9d58366728ffe SHA512 b8a4c1856e51bbe212b98be06895987d6fb926a229511a67ea90a934da1fcc84daf29bd289c3c4c2254d2bce345333bb92747947f3286376761613b2e181e99b DIST xa-2.3.14.tar.gz 156876 BLAKE2B 3dd4f369d69cd85c7c545e4aba7698deb9402946c755ac2709c43cb4a795d1cde730286a4a0df2615c39367443788cd4314bf526def863fa57bc85d36ca2dc60 SHA512 71d4631cb3e698b6522ca76c4b34078ded0632533bdaaa8b8d584eb27f0958ed288a6765136ff0ad03cd861a2dccbb76c6d8db0abf277a61ae864ad23212653d diff --git a/dev-embedded/xa/files/xa-2.3.10-Makefile.patch b/dev-embedded/xa/files/xa-2.3.10-Makefile.patch deleted file mode 100644 index cabc7b99beec..000000000000 --- a/dev-embedded/xa/files/xa-2.3.10-Makefile.patch +++ /dev/null @@ -1,77 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -1,11 +1,7 @@ - # Unix gcc or DOS go32 cross-compiling gcc - # --CC = gcc --LD = gcc - # for testing. not to be used; build failures in misc/. - #CFLAGS = -O2 -W -Wall -pedantic -ansi --CFLAGS = -O2 --LDFLAGS = -lc - - # for DOS? - # CC = gcc-go32 -@@ -32,13 +28,13 @@ - rm -f xa - - xa: -- (cd src && LD=${LD} CC="${CC} ${CFLAGS}" ${MAKE}) -+ (cd src && ${MAKE}) - - load: -- (cd loader && CC="${CC} ${CFLAGS}" ${MAKE}) -+ (cd loader && ${MAKE}) - - uncpk: -- (cd misc && CC="${CC} ${CFLAGS}" ${MAKE}) -+ (cd misc && ${MAKE}) - - dos: clean - (cd src && LD=gcc-go32 CC=gcc-go32 CFLAGS="-W -Wall -pedantic" ${MAKE}) ---- a/misc/Makefile -+++ b/misc/Makefile -@@ -2,7 +2,6 @@ - XCBMLIB = .. - - # -Wall -ansi et al. cause compile problems. --CFLAGS = -O2 - - LIBS = #-lncurses -ltermcap -lm - -@@ -10,19 +9,19 @@ - all: ../mkrom.sh ../uncpk ../printcbm ../file65 ../reloc65 ../ldo65 - - ../uncpk: uncpk.c -- ${CC} ${CFLAGS} uncpk.c -o $(XCBMLIB)/uncpk -+ ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} uncpk.c -o $(XCBMLIB)/uncpk - - ../printcbm: printcbm.c -- ${CC} ${CFLAGS} printcbm.c -o $(XCBMLIB)/printcbm -+ ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} printcbm.c -o $(XCBMLIB)/printcbm - - ../file65: file65.c -- ${CC} ${CFLAGS} file65.c -o $(XCBMLIB)/file65 -+ ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} file65.c -o $(XCBMLIB)/file65 - - ../ldo65: ldo65.c -- ${CC} ${CFLAGS} ldo65.c -o $(XCBMLIB)/ldo65 -+ ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} ldo65.c -o $(XCBMLIB)/ldo65 - - ../reloc65: reloc65.c -- ${CC} ${CFLAGS} reloc65.c -o $(XCBMLIB)/reloc65 -+ ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} reloc65.c -o $(XCBMLIB)/reloc65 - - ../mkrom.sh: mkrom.sh - cp mkrom.sh ../mkrom.sh ---- a/src/Makefile -+++ b/src/Makefile -@@ -8,7 +8,7 @@ - all: xa - - xa: ${OBJ} -- ${LD} -o ../xa ${OBJ} ${LDFLAGS} -+ ${CC} ${CFLAGS} ${LDFLAGS} -o ../xa ${OBJ} - - clean: - rm -f *.o *.o65 diff --git a/dev-embedded/xa/xa-2.3.13.ebuild b/dev-embedded/xa/xa-2.3.13.ebuild deleted file mode 100644 index ddaef3e9cb4a..000000000000 --- a/dev-embedded/xa/xa-2.3.13.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="High-speed, two-pass portable 6502 cross-assembler" -HOMEPAGE="https://www.floodgap.com/retrotech/xa/" -SRC_URI="https://www.floodgap.com/retrotech/xa/dists/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" - -PATCHES=( - "${FILESDIR}"/${PN}-2.3.10-Makefile.patch -) - -src_configure() { - tc-export CC -} - -src_test() { - emake -j1 test -} - -src_install() { - emake DESTDIR="${ED}"/usr install - einstalldocs -} -- cgit v1.2.3-65-gdbad