dev-ebuild/ebuildtester - 9999 (nadevko)

Search

Install

Install this version:

emerge -a =dev-ebuild/ebuildtester-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-ebuild/ebuildtester-9999

Or alternatively:

emerge --autounmask-write -a =dev-ebuild/ebuildtester-9999

Package Information

Description:
Tool to test ebuild emerging in a clean stage3 container
Homepage:
https://ebuildtester.readthedocs.io https://github.com/nicolasbock/ebuildtester https://pypi.org/project/ebuildtester https://snapcraft.io/ebuildtester
License:
BSD

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 2026 Nadeŭka <me+oss@nadevko.cc>
# Distributed under the terms of the GNU General Public License v2
EAPI=8

DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..15} )
inherit distutils-r1 git-r3 shell-completion

DESCRIPTION='Tool to test ebuild emerging in a clean stage3 container'
HOMEPAGE='
	https://ebuildtester.readthedocs.io
	https://github.com/nicolasbock/ebuildtester
	https://pypi.org/project/ebuildtester
	https://snapcraft.io/ebuildtester
'
EGIT_REPO_URI=https://github.com/nicolasbock/${PN}.git

LICENSE=BSD
SLOT=0

RDEPEND="
	virtual/docker-cli
	sys-fs/fuse
	dev-python/platformdirs[${PYTHON_USEDEP}]
	$(python_gen_cond_dep "dev-python/tomli[${PYTHON_USEDEP}]" python3_10)
"
BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]"

distutils_enable_sphinx docs dev-python/sphinx-rtd-theme
distutils_enable_tests unittest

src_prepare() {
	default
	has_version '>=dev-python/setuptools-82' &&
		eapply "${FILESDIR}"/setuptools82-support.patch
}

src_install() {
	distutils-r1_src_install
	newbashcomp ${PN}.bash-completion ${PN}
}

Inherited Eclasses

Dependencies

RDEPEND

	virtual/docker-cli
	sys-fs/fuse
	dev-python/platformdirs[${PYTHON_USEDEP}]
	$(python_gen_cond_dep 

BDEPEND

dev-python/setuptools-scm[]