Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/uxn/
Date: Thu, 02 Feb 2023 17:46:51
Message-Id: 1675360004.ff3a1d2180eb0e7ca8d90b01e4227c824dcd5a48.xgqt@gentoo
1 commit: ff3a1d2180eb0e7ca8d90b01e4227c824dcd5a48
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 2 17:33:04 2023 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 2 17:46:44 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff3a1d21
7
8 app-emulation/uxn: drop old 0_p20220921
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 app-emulation/uxn/Manifest | 1 -
13 app-emulation/uxn/uxn-0_p20220921.ebuild | 53 --------------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/app-emulation/uxn/Manifest b/app-emulation/uxn/Manifest
17 index e09451b50f2e..47badc88ef0d 100644
18 --- a/app-emulation/uxn/Manifest
19 +++ b/app-emulation/uxn/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST uxn-0_p20220921.tar.gz 286803 BLAKE2B 98230eec1f5071451a25dbe0136f3fd2d7e9ad08287df40bef611ae3012e3775d787a653a43fb4f1cb6c8f213cb8d39684e48c4f6c225bc19e86f1e4b94d73ba SHA512 8568114ddd98672aab4ca59ab279d39ff7a30c04d0b2a53da85b342a17a80d82b5b0ab90f04f63aa0491f8feaa91655f8fa725ec0d76a559b6201407b47bf1f5
22 DIST uxn-0_p20221022.tar.gz 287106 BLAKE2B 3ca3f1363a71c2c974e95c75cba09d13ff81f320e1ec5ecf3b9a93de6d834447105fd49aa04c0c94a53f01a79bfda68f24662c7eac3993937d9870e5fd7dd4f6 SHA512 77fa297cdd02856cc1a6ddd4515f459d77e216434319a3e7901598d1c28dc34fe49429ae6875745f412bbc977c44041c2c65dc5d0dc4fdb25708e8e666995d81
23 DIST uxn-0_p20221211.tar.gz 284943 BLAKE2B de116e87120bc71975271c9ad0c1b01cba6e13a78cba0faaf811a2cace72204f15fca620bb4c87518542208e1c2af49e6db98b1b3b442ec3a855fb8b592acb2d SHA512 d59504f994b487aff151fefdb2f0f87a707fe998c1ea08539dc8d67aed28a4c93c9ff4bde036a9eb44401e8e6a12b7a15c17e434d5cab7b44a17e2e18e50e978
24
25 diff --git a/app-emulation/uxn/uxn-0_p20220921.ebuild b/app-emulation/uxn/uxn-0_p20220921.ebuild
26 deleted file mode 100644
27 index 734928959333..000000000000
28 --- a/app-emulation/uxn/uxn-0_p20220921.ebuild
29 +++ /dev/null
30 @@ -1,53 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -H=cbc61578b77881232fda4cc42aa914a0806b786f
37 -
38 -inherit toolchain-funcs
39 -
40 -DESCRIPTION="An assembler and emulator for the Uxn stack-machine, written in ANSI C"
41 -HOMEPAGE="
42 - https://wiki.xxiivv.com/site/uxn.html
43 - https://git.sr.ht/~rabbits/uxn/
44 -"
45 -
46 -if [[ ${PV} == *9999* ]] ; then
47 - inherit git-r3
48 - EGIT_REPO_URI="https://git.sr.ht/~rabbits/uxn.git"
49 -else
50 - SRC_URI="https://git.sr.ht/~rabbits/uxn/archive/${H}.tar.gz -> ${P}.tar.gz"
51 - S="${WORKDIR}"/${PN}-${H}
52 - KEYWORDS="~amd64 ~x86"
53 -fi
54 -
55 -LICENSE="MIT"
56 -SLOT="0"
57 -
58 -RDEPEND="media-libs/libsdl2:="
59 -DEPEND="${RDEPEND}"
60 -
61 -PATCHES=( "${FILESDIR}"/uxn-build.sh.patch )
62 -
63 -src_compile() {
64 - CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" ./build.sh --no-run ||
65 - die "build failed"
66 -
67 - local f
68 - for f in ./projects/{examples/*,software,utils}/*.tal ; do
69 - ./bin/uxnasm "${f}" "$(dirname "${f}")"/"$(basename "${f}" .tal)".rom ||
70 - die "failed to assemble ${f}"
71 - done
72 -}
73 -
74 -src_install() {
75 - exeinto /usr/bin
76 - doexe bin/uxn*
77 -
78 - insinto /usr/share/uxn
79 - doins bin/*.rom
80 - doins -r projects
81 -
82 - einstalldocs
83 -}