void-packages/srcpkgs/python-pycryptodome/template
maxice8 ff9c3a1367 python-pycryptodome: update to 3.5.1.
Closes: #12283 [via git-merge-pr]
2018-03-09 19:06:37 -08:00

35 lines
1,010 B
Bash

# Template file for 'python-pycryptodome'
pkgname=python-pycryptodome
version=3.5.1
revision=1
wrksrc="pycryptodome-${version}"
build_style=python-module
pycompile_module="Crypto"
conflicts="python-crypto>=0"
hostmakedepends="python-setuptools python3-setuptools"
makedepends="python-devel python3-devel"
short_desc="Python2 package of low-level cryptographic primitives"
maintainer="Wietse Kuipers <wietse@kuiprs.nl>"
homepage="https://www.pycryptodome.org/"
license="Public Domain, BSD-2-Clause"
distfiles="https://github.com/Legrandin/pycryptodome/archive/v${version}.tar.gz"
checksum=c5dc3d61d963b2c0a4974b3652a4d70415b625b564635daa1df33ef49bf2129a
do_check() {
# This packages runs 22818 tests as of version 3.5.0
python3 setup.py test
}
post_install() {
vlicense LICENSE.rst LICENSE
}
python3-pycryptodome_package() {
pycompile_module="Crypto"
conflicts="python3-crypto>=0"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE.rst LICENSE
}
}