mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 22:01:11 +02:00
pycopy-binascii: new ebuild (https://github.com/pentoo/pentoo-overlay/issues/527)
This commit is contained in:
parent
753143e650
commit
52a2d8d493
3 changed files with 45 additions and 0 deletions
1
dev-python/pycopy-binascii/Manifest
Normal file
1
dev-python/pycopy-binascii/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST pycopy-binascii-2.4.0.post5.tar.gz 1824 BLAKE2B 56c7daddfcd2ad4bb7806d019c9c0dd4d99360c88800fcdb2f55149ac6d26f57a45b85ca9199d899cfc0ecca677e23422c6fc0345676fdadfeff0bc7d78381e0 SHA512 2c5207311f25b7f9112113df3838995db38e101a500de861bdfc4951420541e9d838d90497b891f539b95580b965f047302415da6d8d1d49014193a6123cf11d
|
||||
8
dev-python/pycopy-binascii/metadata.xml
Normal file
8
dev-python/pycopy-binascii/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>email@linxon.ru</email>
|
||||
<name>Yury Martynov</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
36
dev-python/pycopy-binascii/pycopy-binascii-2.4.0.ebuild
Normal file
36
dev-python/pycopy-binascii/pycopy-binascii-2.4.0.ebuild
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6,7} )
|
||||
|
||||
inherit python-r1
|
||||
|
||||
MY_P="${PN}-${PV}.post5"
|
||||
|
||||
DESCRIPTION="A part of standard library of the Pycopy project"
|
||||
HOMEPAGE="https://github.com/pfalcon/pycopy-lib"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
|
||||
|
||||
KEYWORDS="~amd64 ~arm64 ~mips ~x86"
|
||||
LICENSE="MIT"
|
||||
SLOT=0
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
mv -v "${S}/${MY_P}" "${WORKDIR}/binascii" || die
|
||||
}
|
||||
|
||||
pkg_setup() {
|
||||
python_setup
|
||||
}
|
||||
|
||||
src_install() {
|
||||
python_foreach_impl python_domodule binascii
|
||||
}
|
||||
Loading…
Reference in a new issue