# Copyright 2026 BaldEagleOS Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{13..14} ) inherit python-single-r1 DESCRIPTION="Scout client runtime with compatible Aerie commands" HOMEPAGE="https://git.baldeagleos.com/aerie" SRC_URI="https://distfiles.baldeagleos.com/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm64" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS} app-portage/gentoolkit dev-vcs/git" BDEPEND="test? ( dev-vcs/git )" IUSE="test" RESTRICT="!test? ( test )" DOCS=( README.md Changelog ) src_compile() { : } src_test() { PYTHONPATH=src "${EPYTHON}" -m unittest discover -s tests || die } src_install() { python_domodule src/aerie python_newscript bin/aerie aerie python_newscript bin/scout scout einstalldocs insinto /etc/aerie doins etc/aerie.yml etc/baldeagleos.conf.example etc/parent.example }