commit: eedbdec7a1fc88b36505db83e4fe7b9f1a82d126 Author: jinqiang zhang <peeweep <AT> 0x0 <DOT> ee> AuthorDate: Fri Nov 22 06:08:19 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Nov 23 15:26:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eedbdec7
sys-apps/arch-chroot: add 29 Signed-off-by: jinqiang zhang <peeweep <AT> 0x0.ee> Signed-off-by: Sam James <sam <AT> gentoo.org> sys-apps/arch-chroot/Manifest | 1 + sys-apps/arch-chroot/arch-chroot-29.ebuild | 33 ++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/sys-apps/arch-chroot/Manifest b/sys-apps/arch-chroot/Manifest index 8fa0f1e957d1..0e37b43b7ddb 100644 --- a/sys-apps/arch-chroot/Manifest +++ b/sys-apps/arch-chroot/Manifest @@ -1 +1,2 @@ DIST arch-install-scripts-v28.tar.gz 19730 BLAKE2B 0ff5ba79b200ad642e049ec19217cc5c0794d627a28f42e03c0df2444fef4d8488a6ee011d26fb8fe958c1a1a2fa0a13920567e394b2389c772f516b1fe8f388 SHA512 09a027b04b70e01ccd1fd82e3a443c876bdf978b94a922de9dea4dbc187360460ea35720816724b72fc31b02338b11bf39b47ec9156518a8a3ade000530bf1df +DIST arch-install-scripts-v29.tar.bz2 19418 BLAKE2B 733d326fd5b2948fc30d4c8e4752e855b8babe73698019825bf828334d07e0c3527534d5f58248f701b6aeda41425c2c6869da77506be891a493c3871f3c5e1f SHA512 39239dcdcdf8cf9ef72b7a16f2c42133baa8791c9d2753a35818236d92a0327d0aacd399013a06548739000556481ce6608106280f185006140fea9468157066 diff --git a/sys-apps/arch-chroot/arch-chroot-29.ebuild b/sys-apps/arch-chroot/arch-chroot-29.ebuild new file mode 100644 index 000000000000..47e9e841f750 --- /dev/null +++ b/sys-apps/arch-chroot/arch-chroot-29.ebuild @@ -0,0 +1,33 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit shell-completion + +DESCRIPTION="Wraps the chroot command while ensuring that important filesystems are mounted" +HOMEPAGE="https://gitlab.archlinux.org/archlinux/arch-install-scripts" +SRC_URI="https://gitlab.archlinux.org/archlinux/arch-install-scripts/-/archive/v${PV}/arch-install-scripts-v${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +BDEPEND="app-text/asciidoc" + +S="${WORKDIR}/arch-install-scripts-v${PV}" + +src_compile() { + emake MANS="doc/arch-chroot.8" BINPROGS="arch-chroot" +} + +src_test() { + emake MANS="doc/arch-chroot.8" BINPROGS="arch-chroot" check +} + +src_install() { + dobin arch-chroot + doman doc/arch-chroot.8 + newbashcomp completion/bash/arch-chroot arch-chroot + newzshcomp completion/zsh/_arch-chroot _arch-chroot +}
