sys-apps/pkgcraft-tools: add 0.0.17

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2024-11-21 18:09:53 +00:00
parent b7b470a8c1
commit e7aef232d4
3 changed files with 79 additions and 5 deletions

View File

@@ -1,3 +1,4 @@
DIST pkgcraft-tools-0.0.14.tar.xz 30138240 BLAKE2B b9d0b238f26d980f032cfad26602348dabe574e3968e8adf5172e91efeea051b9720b158941a1bea53e2c1fa8180d516b1bb9668d9178f17c789fb5ba76b7bd9 SHA512 ca7c0f429228567c91a18db793b2fa81f6918cde54f302269deb6a1d2f6445756fbc73e3957ad7b29c8a0e8e000c1b939290c6bbc34bb693cc54b87841fef06c
DIST pkgcraft-tools-0.0.15.tar.xz 23029344 BLAKE2B 7e5f6e119a98bc061578bcfad954bc286bef2bfa93687d16daab615e17ede1512bb0fcbd7ce342c915f4494397169a05b7846029c1c59f2f5f0565ef34ae1bb3 SHA512 6009582531f21c3896441a04ad462fc6d06b509bc4faaa3944ae3696b7b67a0d492ec6345cc6bedc7388b20d558a01bb8a24f3c439da3972c01fcae9277d2c2c
DIST pkgcraft-tools-0.0.16.tar.xz 21332400 BLAKE2B 09385a94980a62dcf312161d51d94549cc36247a0e96c001b7b7790d2f879d0c780310d89aa46760ed0312ec935b1c9e0100b3e2e29f94114ae92724aff8b953 SHA512 e37d296474c847a06191c314b95dfdb99f05c7cc655dda7b8cfa4a03659fd7bf5ab83ddc51d19cef93f2a28ad919282edf5d34bf264807292773d4aa21aa35dc
DIST pkgcraft-tools-0.0.17.tar.xz 20947804 BLAKE2B d574536965680ff5b41848a36e2fa05008d93048d16a1f9932e618c4bd9ef7cf1a3bd918eca8d2c9d189bc88fd112e2aeb999f9b565f7864d7241ba9e825ed22 SHA512 c136a1b2c7e7c1104ff52838afe40b007c7ff6182f3a8a7a9276ccbcd77ec94a1192e61b40c6030fe7ecc44cdfd1ced960c6d4368f43671ce45364435efca9c0

View File

@@ -0,0 +1,66 @@
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES=" "
LLVM_COMPAT=( {17..19} )
RUST_MIN_VER="1.80.0"
inherit cargo edo flag-o-matic llvm-r1
DESCRIPTION="pkgcraft-based tools for Gentoo"
HOMEPAGE="https://pkgcraft.github.io/"
if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="https://github.com/pkgcraft/pkgcraft"
inherit git-r3
S="${WORKDIR}"/${P}/crates/pkgcraft-tools
else
SRC_URI="https://github.com/pkgcraft/pkgcraft/releases/download/${P}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm64"
fi
LICENSE="MIT"
# Dependent crate licenses
LICENSE+=" Apache-2.0 BSD-2 BSD CC0-1.0 GPL-3+ ISC MIT Unicode-DFS-2016"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test ) "
QA_FLAGS_IGNORED="usr/bin/pk"
# Clang needed for bindgen
BDEPEND="
$(llvm_gen_dep '
sys-devel/clang:${LLVM_SLOT}
')
test? ( dev-util/cargo-nextest )
"
pkg_setup() {
llvm-r1_pkg_setup
rust_pkg_setup
}
src_unpack() {
if [[ ${PV} == 9999 ]] ; then
git-r3_src_unpack
cargo_live_src_unpack
else
cargo_src_unpack
fi
}
src_configure() {
# scallop uses modified bash-5.2 which relies on unprotoyped functions
append-cflags -std=gnu17
cargo_src_configure
}
src_test() {
edo ${CARGO} nextest run $(usev !debug '--release') --color always --all-features --tests
}

View File

@@ -4,10 +4,10 @@
EAPI=8
CRATES=" "
LLVM_COMPAT=( {17..18} )
RUST_MIN_VER="1.77.1"
LLVM_COMPAT=( {17..19} )
RUST_MIN_VER="1.80.0"
inherit cargo edo llvm-r1
inherit cargo edo flag-o-matic llvm-r1
DESCRIPTION="pkgcraft-based tools for Gentoo"
HOMEPAGE="https://pkgcraft.github.io/"
@@ -54,6 +54,13 @@ src_unpack() {
fi
}
src_test() {
edo cargo nextest run $(usev !debug '--release') --color always --all-features --tests
src_configure() {
# scallop uses modified bash-5.2 which relies on unprotoyped functions
append-cflags -std=gnu17
cargo_src_configure
}
src_test() {
edo ${CARGO} nextest run $(usev !debug '--release') --color always --all-features --tests
}