blob: 60cecc4971d5aa1882637eff3fcc891aef3f8346 (
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
|
# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python{3_6,3_7,3_8} )
inherit python-single-r1
MY_PN="Caja-hide"
DESCRIPTION="Hide files without renaming them in MATE's Caja"
HOMEPAGE="https://github.com/Fred-Barclay/Caja-hide"
SRC_URI="https://github.com/Fred-Barclay/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="${PYTHON_DEPS}"
RDEPEND="${DEPEND}
$(python_gen_cond_dep 'dev-python/future[${PYTHON_MULTI_USEDEP}]')
dev-python/python-caja[${PYTHON_SINGLE_USEDEP}]
x11-misc/xautomation
"
BDEPEND=""
S="${WORKDIR}/${MY_PN}-${PV}"
PATCHES=(
"${FILESDIR}/${P}-py3-support.patch"
)
src_install() {
insinto /usr/share/caja-python/extensions
doins src/caja-hide.py
}
|