diff options
Diffstat (limited to 'sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild')
-rw-r--r-- | sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild b/sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild new file mode 100644 index 0000000..1818094 --- /dev/null +++ b/sys-fs/btrfs-heatmap/btrfs-heatmap-9.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5} ) + +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/debian/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S="${WORKDIR}/${PN}-debian" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + ~dev-python/python-btrfs-${PV}[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +src_install() +{ + newbin heatmap.py btrfs-heatmap + python_fix_shebang "${ED}"/usr/bin/btrfs-heatmap + default +} |