git » python-toml.git » commit dd6d197

Upgrading to 0.10.1.

author David Runge
2020-05-14 15:52:08 UTC
committer David Runge
2020-05-14 15:52:08 UTC
parent 3cfb20853f23b4cc51eb83f75e421b19a8757788

Upgrading to 0.10.1.
Adding python{,2}-numpy as additional checkdepends.
Removing unneeded test.toml file download (included in tarball now).
Updating maintainer info.

PKGBUILD +9 -12

diff --git a/PKGBUILD b/PKGBUILD
index f50bff0..34cddc0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,24 +1,21 @@
-# Maintainer: David Runge <dave@sleepmap.de>
+# Maintainer: David Runge <dvzrv@archlinux.org>
+
 _name=toml
 pkgbase=python-toml
 pkgname=('python-toml' 'python2-toml')
-pkgver=0.10.0
-pkgrel=3
+pkgver=0.10.1
+pkgrel=1
 pkgdesc="A Python library for parsing and creating TOML"
 arch=('any')
 url="https://github.com/uiri/toml"
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"
-        "https://raw.githubusercontent.com/uiri/toml/master/test.toml")
-sha512sums=('26f26c38ce9cd48305218c2c34c5a5407b00aefc25a933f044bb7be22c23cfdfa3b8cf2da952d17760c4b9038df62e405fa039cc7b63dd3e94c9c312f04f9182'
-            '47510e59f9e0bdaaf4052fc5edb570a36b8b173ed7b8e5fac52804f6619f409e545ae3c91f838dbaeefe3c7cfd1a835b699164ac631feaa61de971d2381ac246')
+checkdepends=('python-numpy' 'python-pytest' 'python2-numpy' 'python2-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
+sha512sums=('9dc813f84b56bee6519c70efe49a834d6695c82d429f0b7cc6e6153a1fb14d3fb627dea24df2d2664354f27108389d51475609272d59fc7e4b64a2c17d74f33f')
 
 prepare() {
   mv -v "${_name}-$pkgver" "$pkgbase-$pkgver"
-  cp -v test.toml "$pkgbase-$pkgver"
-  cd "$pkgbase-$pkgver"
 }
 
 build() {
@@ -31,8 +28,8 @@ check() {
   cd "$pkgname-$pkgver"
   export PYTHONPATH="../build/lib/:${PYTHONPATH}"
   # disable useless tests
-  py.test tests -k 'not test_invalid_tests and not test_valid_tests'
-  py.test2 tests -k 'not test_invalid_tests and not test_valid_tests'
+  pytest -v tests -k 'not test_invalid_tests and not test_valid_tests'
+  pytest2 -v tests -k 'not test_invalid_tests and not test_valid_tests'
 }
 
 package_python-toml() {