olm-python3: update to 3.2.1.

This commit is contained in:
Nathan Owens 2021-01-05 16:10:26 -06:00 committed by Piotr
parent 896c181e94
commit 69b24d1259

View file

@ -1,20 +1,25 @@
# Template file for 'olm-python3' # Template file for 'olm-python3'
pkgname=olm-python3 pkgname=olm-python3
version=3.1.5 version=3.2.1
revision=3 revision=1
wrksrc="olm-${version}" wrksrc="olm-${version}"
build_wrksrc=python build_wrksrc=python
build_style=python3-module build_style=python3-module
hostmakedepends="python3-setuptools python3-cffi" hostmakedepends="python3-setuptools python3-cffi"
makedepends="python3-devel libffi-devel olm-devel" makedepends="python3-devel libffi-devel olm-devel"
depends="python3-cffi python3-future" depends="python3-cffi python3-future"
checkdepends="python3-pytest python3-future"
short_desc="Implementation of the Double Ratchet cryptographic ratchet - Python" short_desc="Implementation of the Double Ratchet cryptographic ratchet - Python"
maintainer="Adam Beckmeyer <adam_gpg@thebeckmeyers.xyz>" maintainer="Adam Beckmeyer <adam_gpg@thebeckmeyers.xyz>"
license="Apache-2.0" license="Apache-2.0"
homepage="https://gitlab.matrix.org/matrix-org/olm" homepage="https://gitlab.matrix.org/matrix-org/olm"
distfiles="https://gitlab.matrix.org/matrix-org/olm/-/archive/${version}/olm-${version}.tar.bz2" distfiles="https://gitlab.matrix.org/matrix-org/olm/-/archive/${version}/olm-${version}.tar.bz2"
checksum=1cd4d92ae56373836362c3300ee79a14005a26cda3d399d278d468ba5c7c0713 checksum=a0482f8c8e80eb11578e8a8655b677fe943b86ac33affd46d67dff4261afeb6a
pre_build() { pre_build() {
make include/olm/olm.h make include/olm/olm.h
} }
do_check() {
PYTHONPATH=$(cd build/lib.linux-* && pwd) python3 -m pytest
}