commit: adc0a9a0b930a5f4cc1065df9c994300137676e1 Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org> AuthorDate: Thu May 15 06:50:41 2025 +0000 Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org> CommitDate: Thu May 15 07:21:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc0a9a0
dev-lang/jwasm: drop 2.18-r1 Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org> dev-lang/jwasm/Manifest | 1 - dev-lang/jwasm/jwasm-2.18-r1.ebuild | 39 ------------------------------------- 2 files changed, 40 deletions(-) diff --git a/dev-lang/jwasm/Manifest b/dev-lang/jwasm/Manifest index db8f525d3d74..dcc824d1235a 100644 --- a/dev-lang/jwasm/Manifest +++ b/dev-lang/jwasm/Manifest @@ -1,2 +1 @@ -DIST jwasm-2.18.tar.gz 1169949 BLAKE2B 2a5d6c37f27dd5193390a5b5ab7d7ec260a800ead132dda4a49b16b5ae43b53ef397b663166767c8f4ce2de69dd9fa61e59e0537d837ba85da38cb17aa0da6e0 SHA512 f5ca9d2ec80b979e2acec7246861e13e11717917f59df126f28339e3c1ded3405c8a93daaef6ee817bc217d593151010bf18c85c9fc03600ff70cb18e793309c DIST jwasm-2.19.tar.gz 1187558 BLAKE2B ab932d61fddcb8b422ae8b4be43bc4d7b8a3b229b4f720768c69d41302b47d1fe1cf1d2761838f97ac4241a7e5cf2ca3f8f23cc4636365caca38e3c66a38924f SHA512 0b017f0f43d36a74faab2bc2da4023cc933f3b0c81eb65c59a98d0dedee20eaf6a5979943c387f39e34a188b5a7ec787e8effc61d1e70635b795e106e52399d0 diff --git a/dev-lang/jwasm/jwasm-2.18-r1.ebuild b/dev-lang/jwasm/jwasm-2.18-r1.ebuild deleted file mode 100644 index 513ad11b1401..000000000000 --- a/dev-lang/jwasm/jwasm-2.18-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="MASM-compatible TASM-similar assembler (fork of Wasm)" -HOMEPAGE="https://github.com/Baron-von-Riedesel/JWasm" -SRC_URI="https://github.com/Baron-von-Riedesel/JWasm/archive/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/JWasm-${PV}" - -LICENSE="Watcom-1.0" -SLOT="0" -KEYWORDS="amd64 ~x86" - -PATCHES=( - "${FILESDIR}"/${PN}-2.18-types-test.patch - "${FILESDIR}"/${PN}-2.18-makefile-dep-fix.patch - "${FILESDIR}"/${PN}-2.18-missing-includes.patch #944893 -) - -src_prepare() { - default - - # don't strip binary - sed -i GccUnix.mak -e 's/ -s / /g' || die -} - -src_compile() { - # -std=c17 and -D_POSIX_C_SOURCE=200809L are both related to bug #944893 - append-cflags -std=c17 - emake -f GccUnix.mak CC="$(tc-getCC) ${CFLAGS} -D_POSIX_C_SOURCE=200809L ${LDFLAGS}" -} - -src_install() { - dobin build/GccUnixR/jwasm - dodoc -r README.md History.txt Html/ -}