blob: 032e1162af595c6236a72c8108db4febcaf65d40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8,9} )
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 x86"
RDEPEND="
$(python_gen_cond_dep '
dev-python/chardet[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
')
"
BDEPEND="
sys-devel/gettext
test? (
$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]')
)
"
distutils_enable_tests unittest
# tests fail under FEATURES=usersandbox
RESTRICT="test"
python_prepare_all() {
if use test; then
# avoid tests requiring internet access
rm tests/Test{Chaff,Update}.py || die
# fails due to non-existent $HOME/.profile
rm tests/TestInit.py || die
# these fail on upstream Travis CI as well as on Gentoo
sed -e "s/test_notify(self)/_&/" \
-i tests/TestGUI.py || die
sed -e "s/test_get_proc_swaps(self)/_&/" \
-i tests/TestMemory.py || die
fi
distutils-r1_python_prepare_all
}
python_compile_all() {
emake -C po local
}
python_test() {
virtx emake tests
}
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
}
|