mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2026-05-06 07:27:03 -04:00
dev-build/bmake: add 20260406
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DIST bmake-20251111.tar.gz 896003 BLAKE2B 787d05083273169d869d0184824a3f44acceef5d06e11d2a0dae1a5c9658c034aef4e3062d33d5f893f230fa6de13e54149a60c6a80e9cb24622f09e12583588 SHA512 dbea0379a3f081fee3d3eb009177076e6af13956d1104573179944f767c88981d76ef3186f9c396a2dd8686e03a340ba63a0f0a5bf310b59c343be85a5883580
|
||||
DIST bmake-20260313.tar.gz 899727 BLAKE2B 483d7cd44c537216098e160647d9cec382c8fc9164e0aea321d4752ab61482b1485185b8b11b0b81455104198f42c63761456f937aa0fc505b135b7a793b4ad4 SHA512 2b8d4bb396c0f53d91b8982a3a19e2d04961d7dc73f0f6f0cfc5d77411ca25df6b9de1b783c2272855f0f245a5757223349df48fee9e15c9dcad7c0982fd4e68
|
||||
DIST bmake-20260406.tar.gz 900053 BLAKE2B d250dfd2872cf6c1b49b1771cf86dce991ddb97819dee5ae595f573f7aced7f05dbe8b7347952f4c49f73023b2f2f4279fad5976ff58333ed3b4f87061b00165 SHA512 ee5520e6aae47b1b94f707877b5a49c4db5defb6061e178fca18ec86e9b6be9728e1b9539a2e45ead57c9f57f21ea9dfbc7875c922f1ddf528707064a2895630
|
||||
DIST mk-20210330.tar.gz 107380 BLAKE2B 9ac30a117d9ba31635cf8d8d29fdba76f148611f47628403ca8f807081c32509f10498d3c30fd24985e5420af4710fe59fc6315d71f2d0c1cfed93263a06553a SHA512 6acd3ee911442934082f4f877d795b07c5e23022eaa9c0874799d97e92a2f5a663cb45f94b7f9745c49cbbce6b7e755a29e381ccfb9e68a0be1eedbd22fd5d3b
|
||||
|
||||
@@ -0,0 +1,75 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
MK_VER=20210330
|
||||
LUA_COMPAT=( lua5-{1..4} luajit )
|
||||
|
||||
inherit lua-single
|
||||
|
||||
DESCRIPTION="NetBSD's portable make"
|
||||
HOMEPAGE="http://www.crufty.net/help/sjg/bmake.html"
|
||||
SRC_URI="
|
||||
http://void.crufty.net/ftp/pub/sjg/${P}.tar.gz
|
||||
http://void.crufty.net/ftp/pub/sjg/mk-${MK_VER}.tar.gz"
|
||||
S="${WORKDIR}/${PN}"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
REQUIRED_USE="test? ( ${LUA_REQUIRED_USE} )"
|
||||
|
||||
BDEPEND="
|
||||
test? (
|
||||
${LUA_DEPS}
|
||||
app-alternatives/bc
|
||||
)"
|
||||
|
||||
# Skip failing test (sandbox and csh)
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-20210206-tests.patch
|
||||
"${FILESDIR}"/${PN}-20250618-lua-test.patch
|
||||
)
|
||||
|
||||
pkg_setup() {
|
||||
use test && lua-single_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
cd "${WORKDIR}" || die
|
||||
eapply "${FILESDIR}"/${PN}-20210314-mk-fixes.patch
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-mksrc=../mk \
|
||||
--with-default-sys-path="${EPREFIX}"/usr/share/mk/${PN} \
|
||||
--with-machine_arch=${ARCH}
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
sh make-bootstrap.sh || die "bootstrap failed"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
cd unit-tests || die
|
||||
|
||||
# the 'ternary' test uses ${A} internally, which
|
||||
# conflicts with Gentoo's ${A}, hence unset it for
|
||||
# the tests temporarily.
|
||||
env -u A MAKEFLAGS= \
|
||||
"${S}"/bmake -r -m / TEST_MAKE="${S}"/bmake test || die "tests compilation failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin ${PN}
|
||||
doman ${PN}.1
|
||||
FORCE_BSD_MK=1 SYS_MK_DIR=. \
|
||||
sh ../mk/install-mk -v -m 644 "${ED}"/usr/share/mk/${PN} \
|
||||
|| die "failed to install mk files"
|
||||
}
|
||||
Reference in New Issue
Block a user