summaryrefslogtreecommitdiff
path: root/mate-extra/caja-hide/caja-hide-0.9.0.ebuild
blob: b58383794063621066aa38e3ba94c587e2dd40b9 (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-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

PYTHON_COMPAT=( python{3_7,3_8,3_9} )
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_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
}