This commit is contained in:
Yury Martynov 2019-11-04 16:44:11 +03:00
parent 753143e650
commit 52a2d8d493
No known key found for this signature in database
GPG key ID: EBE62DD0CCEAE19E
3 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1 @@
DIST pycopy-binascii-2.4.0.post5.tar.gz 1824 BLAKE2B 56c7daddfcd2ad4bb7806d019c9c0dd4d99360c88800fcdb2f55149ac6d26f57a45b85ca9199d899cfc0ecca677e23422c6fc0345676fdadfeff0bc7d78381e0 SHA512 2c5207311f25b7f9112113df3838995db38e101a500de861bdfc4951420541e9d838d90497b891f539b95580b965f047302415da6d8d1d49014193a6123cf11d

View 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>

View 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
}