blob: 7611b77488e2834636560f3b27b20f31e02a26a9 (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517="setuptools"
PYTHON_COMPAT=( python3_{12..14} )
inherit distutils-r1 optfeature
DESCRIPTION="Do The Right eXtraction - extracts archives of different formats"
HOMEPAGE="https://github.com/dtrx-py/dtrx/
https://pypi.org/project/dtrx/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN}-py/${PN}"
else
inherit pypi
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
DOCS=( README.md )
src_prepare() {
if [[ -f setup.cfg ]] ; then
sed -e '/ *platform==/s|.*||' -i setup.cfg || die "sed failed" # bug #894148
fi
distutils-r1_src_prepare
}
pkg_postinst() {
local -a supported_formats=(
arj bzip2 cpio gzip lrzip lzip p7zip rpm unrar unzip xz-utils
zip zstd
)
local supported_format=""
for supported_format in "${supported_formats[@]}" ; do
optfeature \
"extraction of supported archives using ${supported_format}" \
"app-arch/${supported_format}"
done
}
|