# 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="Repository and profile management tool for BaldEagleOS" 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 " DOCS=( README.md Changelog ) pkg_setup() { python-single-r1_pkg_setup } src_compile() { : } src_test() { PYTHONPATH=src "${EPYTHON}" -m unittest discover -s tests || die } src_install() { python_domodule src/aerie python_newscript bin/aerie aerie einstalldocs insinto "/etc/${PN}" doins "etc/${PN}.yml" doins etc/baldeagleos.conf.example doins etc/parent.example }