app-emulation/uxn: drop old 0_p20241112

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć 2025-02-25 23:23:41 +01:00
parent dcbbbac5e1
commit 61393e086f
No known key found for this signature in database
GPG Key ID: 031C9FE65BED714A
2 changed files with 0 additions and 75 deletions

View File

@ -1,2 +1 @@
DIST uxn-0_p20241112.tar.gz 303651 BLAKE2B d632d59bb6b271b8dd9e03ff9efc6e4cf822793b06c3f95278d9e9b0be2242c615611ba87560b5ce9c6cde549752b6f4f578ad4872682665b3c019fcf07efeb5 SHA512 66b3c8ccdd6a79f507f6672161660b3d2f491ac1a186bff963f156e322cdf11494269e73d4bb08b22bb1fe7c7bacb59cb5ba850fef6cb4fe183777fdd8cba2ac
DIST uxn-0_p20250122.tar.gz 302511 BLAKE2B 1c750abd5a50a869428b82dcdc817897badb4801a0b206597977726c1e3df2c4dee90464968f42152245f33c0767fb54783b786a98e6558b9efec21ad09000ef SHA512 67f4c51e91ac2d46c371bec7e218ce221edbfe4eac38511a6a2ceeb7e80b634b2303b4983918921ceacf387f5a1a11f7b5227003c515259ea1337a46bd018f0e

View File

@ -1,74 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="An assembler and emulator for the Uxn stack-machine, written in ANSI C"
HOMEPAGE="https://wiki.xxiivv.com/site/uxn.html
https://git.sr.ht/~rabbits/uxn/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://git.sr.ht/~rabbits/${PN}"
elif [[ "${PV}" == *_p20241112 ]] ; then
COMMIT="1538b1bf7255b975dbd87e813d0cca491810fbba"
SRC_URI="https://git.sr.ht/~rabbits/${PN}/archive/${COMMIT}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}/uxn-${COMMIT}"
KEYWORDS="amd64 ~x86"
else
die "Wrong package version, please update the ebuild, given: ${PV}"
fi
LICENSE="MIT"
SLOT="0"
RDEPEND="
media-libs/libsdl2:=
"
DEPEND="
${RDEPEND}
"
PATCHES=(
"${FILESDIR}/uxn-0_p20230609-build.sh.patch"
)
src_compile() {
env CC="$(tc-getCC)" \
CFLAGS="${CFLAGS} ${LDFLAGS}" \
./build.sh --no-run \
|| die "building with \"build.sh\" failed"
# Fails to assemble via following loop.
# Possibly not mean to be assembled by hand.
rm -rf ./projects/library ./projects/software/{asma,launcher}.tal || die
local tal_file=""
local tal_file_base=""
while read -r tal_file ; do
tal_file_base="$(basename "${tal_file}" .tal)"
ebegin "Assembling ROM ${tal_file_base}"
bin/uxnasm "${tal_file}" "$(dirname "${tal_file}")/${tal_file_base}.rom"
eend ${?} || die "failed to assemble ${tal_file}"
done \
< <(find projects -type f -name "*.tal")
}
src_install() {
insinto /usr/bin
doins bin/uxn{asm,cli,emu}
fperms 0755 /usr/bin/uxn{asm,cli,emu}
insinto /usr/share/uxn
doins -r projects
einstalldocs
}