mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-07 17:03:31 +01:00
19 lines
508 B
Bash
19 lines
508 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{10..11} )
|
|
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 ~arm64 x86"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${PYTHON_DEPS}
|
|
dev-python/future[${PYTHON_USEDEP}]"
|