# HG changeset patch # User Hans-G?nter Theisgen # Date 1660836717 -3600 # Node ID f96349892d0a5494cc5913d25cbcab4dec9c5047 # Parent 18342dfd2c1b46d11a84cfc2e6d4e5504328475a updated xa (2.3.10 -> 2.3.13) diff -r 18342dfd2c1b -r f96349892d0a xa/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xa/description.txt Thu Aug 18 16:31:57 2022 +0100 @@ -0,0 +1,19 @@ +Xa is a high-speed, two-pass portable cross-assembler. +It understands mnemonics and generates code for NMOS 6502s +(such as 6502A, 6504, 6507, 6510, 7501, 8500, 8501, 8502 ...), +CMOS 6502s (65C02 and Rockwell R65C02) and the 65816. + +Key amongst its features: + +* C-like preprocessor (and understands cpp for additional feature support) +* rich expression syntax and pseudo-op vocabulary +* multiple character sets +* binary linking +* supports o65 relocatable objects with a full linker and relocation suite, + as well as "bare" plain binary object files +* block structure for label scoping + +Xa's eventual companion disassembler is dxa, a moderately hacked-up version +of Marko Mäkelä's d65 disassembler. +This is still alpha and is available as a separate distribution until it is +stabilized enough to be part of the xa suite. diff -r 18342dfd2c1b -r f96349892d0a xa/receipt --- a/xa/receipt Thu Aug 18 16:24:15 2022 +0100 +++ b/xa/receipt Thu Aug 18 16:31:57 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="xa" -VERSION="2.3.10" +VERSION="2.3.13" CATEGORY="development" TAGS="cross assembler 6502" SHORT_DESC="6502 cross assembler." @@ -10,7 +10,7 @@ WEB_SITE="https://www.floodgap.com/retrotech/xa/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="${WEB_SITE}dists/unsupported/$TARBALL" +WGET_URL="${WEB_SITE}dists/$TARBALL" # What is the latest version available today? current_version() @@ -29,6 +29,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin }