Install this version:
emerge -a =sys-apps/bleachbit-5.0.2
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-apps/bleachbit-5.0.2
Or alternatively:
emerge --autounmask-write -a =sys-apps/bleachbit-5.0.2
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )
PYTHON_REQ_USE="sqlite(+)"
DISTUTILS_SINGLE_IMPL=1
inherit desktop distutils-r1 virtualx
DESCRIPTION="Clean junk to free disk space and to maintain privacy"
HOMEPAGE="https://www.bleachbit.org"
SRC_URI="https://download.bleachbit.org/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
RDEPEND="
$(python_gen_cond_dep '
dev-python/chardet[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
')
x11-libs/gtk+:3[introspection]
"
BDEPEND="
sys-devel/gettext
"
distutils_enable_tests unittest
PATCHES=(
"${FILESDIR}"/bleachbit-5.0.2-chardet-6.patch
"${FILESDIR}"/bleachbit-5.0.2-py3.14.patch
"${FILESDIR}"/bleachbit-5.0.2-pygobject-deprecation.patch
)
python_prepare_all() {
distutils-r1_python_prepare_all
if use test; then
# avoid tests requiring internet access
rm tests/Test{Chaff,GuiChaff,Network,Update}.py || die
sed -e "s/test_chaff(self)/_&/" \
-i tests/TestGUI.py || die
# fails due to invalid language code format pt_pt
sed -e "s/test_assertIsLanguageCode_live(self)/_&/" \
-i tests/TestCommon.py || die
# fails due to non-existent $HOME/.profile
rm tests/TestInit.py || die
# fails due to permission error on /proc
sed -e "s/test_make_self_oom_target_linux(self)/_&/" \
-i tests/TestMemory.py || die
# only applicable to Windows
rm tests/{TestNsisUtilities,TestWindows}.py || die
# random failures, some also on upstream CI
sed -e "s/test_notify(self)/_&/" \
-i tests/TestGUI.py || die
sed -e "s/test_get_proc_swaps(self)/_&/" \
-i tests/TestMemory.py || die
sed -e "s/test_is_process_running(self)/_&/" \
-i tests/TestUnix.py || die
# Fails if user has filesystems outside of the accepted subset
# ['btrfs', 'ext4', 'ext3', 'squashfs', 'unknown']
# This is an issue for example if you use xfs.
# Instead of adding every possible filesystem lets just skip it.
sed -e "s/test_get_filesystem_type(self)/_&/" \
-i tests/TestFileUtilities.py || die
# Assumes loginshell is the uid.
sed -e "s/test_get_real_uid(self)/_&/" \
-i tests/TestGeneral.py || die
fi
}
python_compile_all() {
emake -C po local
}
python_test() {
virtx eunittest -p Test*.py
}
python_install() {
distutils-r1_python_install
python_newscript ${PN}.py ${PN}
}
python_install_all() {
distutils-r1_python_install_all
emake -C po DESTDIR="${D}" install
insinto /usr/share/bleachbit/cleaners
doins cleaners/*.xml
insinto /usr/share/bleachbit
doins data/app-menu.ui
doicon ${PN}.png
domenu org.${PN}.BleachBit.desktop
}
$(python_gen_cond_dep '
dev-python/chardet[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
')
x11-libs/gtk+:3[introspection]
sys-devel/gettext
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | bleachbit-5.0.2.tar.bz2 | 738219 bytes | https://download.bleachbit.org/bleachbit-5.0.2.tar.bz2 |