mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-09 01:44:03 +01:00
19 lines
512 B
Bash
19 lines
512 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Module to read and work with Portable Executable (PE) files"
|
|
HOMEPAGE="https://github.com/erocarrera/pefile"
|
|
SRC_URI="https://github.com/erocarrera/pefile/releases/download/v${PV}/${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${PYTHON_DEPS}
|
|
dev-python/future[${PYTHON_USEDEP}]"
|