Install this version:
emerge -a =app-admin/gb-chroot-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-admin/gb-chroot-9999
Or alternatively:
emerge --autounmask-write -a =app-admin/gb-chroot-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 | 0 |
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1
if [[ ${PV} = *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/PF4Public/gb-chroot.git"
SRC_URI=""
else
SRC_URI="https://github.com/PF4Public/gb-chroot/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86"
fi
DESCRIPTION="gb-chroot is a collection of scripts for building Gentoo's binpkgs"
HOMEPAGE="https://pf4public.github.io/gb-chroot/"
LICENSE="MIT"
SLOT="0"
IUSE="doc host"
DOCS=( README.md )
DEPEND="
app-portage/gentoolkit
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_install()
{
if use doc
then
DOCS+=( docs/index.md )
fi
einstalldocs
if use host
then
doconfd config/gb-chroot
doinitd scripts/gb-chroot
dobin scripts/host/*
keepdir /var/lib/gb-chroot
insinto /usr/share/gb-chroot
doins templates/*
newbashcomp completions/bash-completions ${PN}
bashcomp_alias ${PN} gb-enter gb-clone gb-all gb-emerge
else
dobin scripts/target/*
dobin scripts/chroot/*
insinto /etc
newins config/gb-chroot-target gb-chroot.conf
fi
}
Manage flags for this package:
euse -i <flag> -p app-admin/gb-chroot |
euse -E <flag> -p app-admin/gb-chroot |
euse -D <flag> -p app-admin/gb-chroot
app-portage/gentoolkit
app-portage/gentoolkit