summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2024-04-09 10:32:06 +0200
committerMaciej Barć <xgqt@gentoo.org>2024-04-09 11:30:08 +0200
commit5a5ca1f3e14482625fc582a0f65f133e747b5dd0 (patch)
tree3c96cdf09b57da10a1c8e417e98e7352cedc4fe5
parentdev-scheme/racket: drop old 8.11.1 (diff)
downloadgentoo-5a5ca1f3e14482625fc582a0f65f133e747b5dd0.tar.gz
gentoo-5a5ca1f3e14482625fc582a0f65f133e747b5dd0.tar.bz2
gentoo-5a5ca1f3e14482625fc582a0f65f133e747b5dd0.zip
app-emulation/uxn: drop old 0_p20230803
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r--app-emulation/uxn/Manifest1
-rw-r--r--app-emulation/uxn/uxn-0_p20230803.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/app-emulation/uxn/Manifest b/app-emulation/uxn/Manifest
index f054ef4529ba..4d0cba24998c 100644
--- a/app-emulation/uxn/Manifest
+++ b/app-emulation/uxn/Manifest
@@ -1,2 +1 @@
-DIST uxn-0_p20230803.tar.gz 293291 BLAKE2B 2e295f83bc695861732ad0412900435900bd10c08a99b0a6e88a5a5e10fde3f462b8ff35261365bfec1f7777306e1684eb1dac767cf7a1f83b3e30e36e79d98e SHA512 89b666b11099037404e48cd6cc7467bcbc84fb90c24cc3df183996f26f2a6817d84fe47857d2d9777acd0aed9885e17c726f3b2f32253d0ba3a77f32b46f8abf
DIST uxn-0_p20240304.tar.gz 307083 BLAKE2B 2b3a556c5094fd777d82d75c87f721d1a9ea136334cdbc8553662281ae498beb79514e9e567e79b84a625b2fe60b486aa7f6892594cbd08abbbfeb4c9a50b2e9 SHA512 048e24e33de04913e03fbf1b242837dd1ad190f52ede16c302cf436399f0ee478afca545236dd438e03d8dfc29252478c2d79c9b6d3e8d34bb83c99f1930d026
diff --git a/app-emulation/uxn/uxn-0_p20230803.ebuild b/app-emulation/uxn/uxn-0_p20230803.ebuild
deleted file mode 100644
index 7c9dd9d37bd1..000000000000
--- a/app-emulation/uxn/uxn-0_p20230803.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 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/uxn"
-elif [[ ${PV} == *_p20230803 ]] ; then
- COMMIT=2ddc20b1b6acc05a1ce8ab468e407d138ccee581
- SRC_URI="https://git.sr.ht/~rabbits/uxn/archive/${COMMIT}.tar.gz
- -> ${P}.tar.gz"
- S="${WORKDIR}"/uxn-${COMMIT}
- KEYWORDS="amd64 ~x86"
-else
- die "wrong package version (PV), given: ${PV}"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="media-libs/libsdl2:="
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}"/uxn-0_p20230609-build.sh.patch )
-
-src_compile() {
- CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" ./build.sh --no-run ||
- die "building with \"build.sh\" failed"
-
- local f
- local f_base
- for f in ./projects/{examples/*,software,utils}/*.tal ; do
- f_base="$(basename "${f}" .tal)"
- ebegin "Assembling ROM ${f_base}"
- ./bin/uxnasm "${f}" "$(dirname "${f}")"/"${f_base}".rom
- eend ${?} || die "failed to assemble ${f}"
- done
-}
-
-src_install() {
- exeinto /usr/bin
- doexe bin/uxn*
-
- insinto /usr/share/uxn
- doins bin/*.rom
- doins -r projects
-
- einstalldocs
-}