diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-08-03 17:56:04 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-08-03 21:03:12 +0200 |
commit | b82eb64f2331a31630916f7d815006971f459424 (patch) | |
tree | 24008f7b2f7e767a918e96f87448ca0341155c87 | |
parent | app-containers/earthly: new package; add 0.7.14 (diff) | |
download | gentoo-b82eb64f2331a31630916f7d815006971f459424.tar.gz gentoo-b82eb64f2331a31630916f7d815006971f459424.tar.bz2 gentoo-b82eb64f2331a31630916f7d815006971f459424.zip |
app-emulation/uxn: drop old 0_p20230501
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r-- | app-emulation/uxn/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/uxn/uxn-0_p20230501.ebuild | 56 |
2 files changed, 0 insertions, 57 deletions
diff --git a/app-emulation/uxn/Manifest b/app-emulation/uxn/Manifest index b551f89079f0..aca2c94379d9 100644 --- a/app-emulation/uxn/Manifest +++ b/app-emulation/uxn/Manifest @@ -1,2 +1 @@ -DIST uxn-0_p20230501.tar.gz 285942 BLAKE2B 2ace9aba9e7c5c7cd60c8db2208e16b4af4830dee5bb10eaa228028ada8701154069423a6b920a09821f63e52dd8955c48e2f13b58061aa08256045e20aaf020 SHA512 e33ff693124d14ee94c8192adb47d940f08d37c22067264afdcae7f4f9ac713915c4daa3bbee3e38385cb71b988a30991ca8ea123dd542438367eaf3a4c88f84 DIST uxn-0_p20230609.tar.gz 289620 BLAKE2B 35d9cdc8266012d5762641b739099aef9ecd1619dd9c650aba3fc8ad285aa80e9a77dc2d7f53a6e8d56f05936a49f561b53cc4d50720be2bf8028f7479efe4ba SHA512 862be7246597fb54e759eee39d2d4a06ca1e6f8a42c1a336c25c5e2d7657ea086a546c9346da911cc4ec73705274794879b22f6da5f7ce88b66210cc1649dc39 diff --git a/app-emulation/uxn/uxn-0_p20230501.ebuild b/app-emulation/uxn/uxn-0_p20230501.ebuild deleted file mode 100644 index b4da4441515e..000000000000 --- a/app-emulation/uxn/uxn-0_p20230501.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} == *_p20230501 ]] ; then - COMMIT=0dcc3b4c2e12bf2a61e682e9168e8bdb469caae0 - SRC_URI="https://git.sr.ht/~rabbits/uxn/archive/${COMMIT}.tar.gz - -> ${P}.tar.gz" - S="${WORKDIR}"/${PN}-${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-build.sh.patch ) - -src_compile() { - CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" ./build.sh --no-run || - die "build 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 -} |