diff options
Diffstat (limited to 'sys-fs/btrfs-heatmap/btrfs-heatmap-7.ebuild')
-rw-r--r-- | sys-fs/btrfs-heatmap/btrfs-heatmap-7.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sys-fs/btrfs-heatmap/btrfs-heatmap-7.ebuild b/sys-fs/btrfs-heatmap/btrfs-heatmap-7.ebuild new file mode 100644 index 0000000..0f82cf3 --- /dev/null +++ b/sys-fs/btrfs-heatmap/btrfs-heatmap-7.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) + +inherit python-single-r1 + +DESCRIPTION="Python 3 script to draw a heatmap of a btrfs filesystem" +HOMEPAGE="https://github.com/knorrie/btrfs-heatmap" +SRC_URI="https://github.com/knorrie/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + dev-python/python-btrfs[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +src_install() +{ + newbin heatmap.py btrfs-heatmap + python_fix_shebang "${ED}"/usr/bin/btrfs-heatmap + default +} |