mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-10 04:40:27 -04:00
24 lines
577 B
Bash
24 lines
577 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
DOCS_BUILDER="sphinx"
|
|
DOCS_DIR="doc"
|
|
PYTHON_COMPAT=( python3_{8,9} )
|
|
|
|
inherit distutils-r1 docs
|
|
|
|
SRC_URI="https://github.com/matwey/pybeam/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
DESCRIPTION="Python module to parse Erlang BEAM files"
|
|
HOMEPAGE="https://github.com/matwey/pybeam"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="dev-python/construct[${PYTHON_USEDEP}]"
|
|
DEPEND="test? ( dev-python/six[${PYTHON_USEDEP}] )"
|
|
|
|
distutils_enable_tests unittest
|