# Contributor: Fabian Affolter # Maintainer: Fabian Affolter pkgname=py3-serial _pkgname=pyserial pkgver=3.4 pkgrel=3 pkgdesc="Python Serial Port Extension" options="!check" # testsuite not ready for py3 url="https://github.com/pyserial/pyserial" arch="noarch" license="BSD-3-Clause" depends="python3" makedepends="py3-setuptools" subpackages="$pkgname-doc $pkgname-examples" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver replaces="py-serial" # Backwards compatibility provides="py-serial=$pkgver-r$pkgrel" # Backwards compatibility build() { python3 setup.py build } check() { python3 setup.py test } package() { python3 setup.py install --prefix=/usr --root="$pkgdir" } doc() { cd "$builddir" mkdir -p "$subpkgdir"/usr/share/doc/$pkgname/ # Documentation files _docs="appendix.rst examples.rst index.rst pyserial.rst \ pyserial_api.rst shortintro.rst tools.rst url_handlers.rst" for _doc in $_docs; do mv "$srcdir"/$_pkgname-$pkgver/documentation/$_doc \ "$subpkgdir"/usr/share/doc/$pkgname/$_doc done } examples() { cd "$builddir" mkdir -p "$subpkgdir"/usr/share/doc/$pkgname/examples # Example files _examples="port_publisher.sh rfc2217_server.py tcp_serial_redirect.py\ wxSerialConfigDialog.py wxTerminal.py port_publisher.py\ at_protocol.py setup-miniterm-py2exe.py\ setup-rfc2217_server-py2exe.py setup-wxTerminal-py2exe.py\ wxSerialConfigDialog.wxg wxTerminal.wxg" for _example in $_examples; do mv "$srcdir"/$_pkgname-$pkgver/examples/$_example \ "$subpkgdir"/usr/share/doc/$pkgname/examples/$_example done } sha512sums="d71dffc330704e41caac6054adf192bee2f1c119691faf2ea93fe22e8e3ba000dc4a1434293f6f80d05a5577d85b96791f656e28d5c63fb0ce6a6605467a117f pyserial-3.4.tar.gz"