diff options
author | Sam James <sam@gentoo.org> | 2024-02-02 04:09:02 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-02-02 04:33:18 +0000 |
commit | db73ec7f6ea95646d2e137efb9fce7229729d6c9 (patch) | |
tree | 25d44e4c7769057931e9dac321a4a86eb83b5dcc /sys-libs/pkgcraft/pkgcraft-0.0.14.ebuild | |
parent | app-misc/ca-certificates: fix ewwy gross warning when no hooks exist (diff) | |
download | gentoo-db73ec7f6ea95646d2e137efb9fce7229729d6c9.tar.gz gentoo-db73ec7f6ea95646d2e137efb9fce7229729d6c9.tar.bz2 gentoo-db73ec7f6ea95646d2e137efb9fce7229729d6c9.zip |
sys-libs/pkgcraft: add 0.0.14
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-libs/pkgcraft/pkgcraft-0.0.14.ebuild')
-rw-r--r-- | sys-libs/pkgcraft/pkgcraft-0.0.14.ebuild | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/sys-libs/pkgcraft/pkgcraft-0.0.14.ebuild b/sys-libs/pkgcraft/pkgcraft-0.0.14.ebuild new file mode 100644 index 000000000000..5745de4a1c9f --- /dev/null +++ b/sys-libs/pkgcraft/pkgcraft-0.0.14.ebuild @@ -0,0 +1,92 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CRATES=" " +inherit edo cargo toolchain-funcs + +DESCRIPTION="C library for pkgcraft" +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-c + + BDEPEND="test? ( dev-util/cargo-nextest )" +else + MY_P=${PN}-c-${PV} + SRC_URI="https://github.com/pkgcraft/pkgcraft/releases/download/${MY_P}/${MY_P}.tar.xz" + S="${WORKDIR}"/${MY_P} + + KEYWORDS="~amd64 ~arm64" +fi + +LICENSE="MIT" +# Dependent crate licenses +LICENSE+=" Apache-2.0 BSD ISC MIT MPL-2.0 Unicode-DFS-2016" +SLOT="0/${PV}" +IUSE="test" +RESTRICT="!test? ( test )" + +# clang needed for bindgen +BDEPEND+=" + dev-util/cargo-c + sys-devel/clang + >=virtual/rust-1.71 +" + +QA_FLAGS_IGNORED="usr/lib.*/libpkgcraft.so.*" + +src_unpack() { + if [[ ${PV} == 9999 ]] ; then + git-r3_src_unpack + cargo_live_src_unpack + else + cargo_src_unpack + fi +} + +src_compile() { + local cargoargs=( + --library-type=cdylib + --prefix=/usr + --libdir="/usr/$(get_libdir)" + $(usev !debug '--release') + ) + + # For scallop building bash + tc-export AR CC + + # Can pass -vv if need more output from e.g. scallop configure + edo cargo cbuild "${cargoargs[@]}" +} + +src_test() { + if [[ ${PV} == 9999 ]] ; then + # It's interesting to test the whole thing rather than just + # pkgcraft-c. + cd "${WORKDIR}"/${P} || die + + # Need nextest per README (separate processes required) + # Invocation from https://github.com/pkgcraft/pkgcraft/blob/main/.github/workflows/ci.yml#L56 + edo cargo nextest run $(usev !debug '--release') --color always --all-features --tests + else + # There are no tests for pkgcraft-c. Test via e.g. dev-python/pkgcraft. + :; + fi +} + +src_install() { + local cargoargs=( + --library-type=cdylib + --prefix=/usr + --libdir="/usr/$(get_libdir)" + --destdir="${ED}" + $(usev !debug '--release') + ) + + edo cargo cinstall "${cargoargs[@]}" +} |