[arch-commits] Commit in python-jaraco.text/trunk (PKGBUILD)

Chih-Hsuan Yen yan12125 at gemini.archlinux.org
Mon Aug 15 15:40:28 UTC 2022


    Date: Monday, August 15, 2022 @ 15:40:28
  Author: yan12125
Revision: 1266136

upgpkg: python-jaraco.text 3.9.0-1; add check() to make sure no dependency is missing

Modified:
  python-jaraco.text/trunk/PKGBUILD

----------+
 PKGBUILD |   12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2022-08-15 15:20:55 UTC (rev 1266135)
+++ PKGBUILD	2022-08-15 15:40:28 UTC (rev 1266136)
@@ -2,18 +2,19 @@
 # Contributor: Kyle Keen <keenerd at gmail.com>
 
 pkgname=python-jaraco.text
-pkgver=3.8.1
+pkgver=3.9.0
 pkgrel=1
 pkgdesc='Module for text manipulation'
 arch=('any')
 url='https://github.com/jaraco/jaraco.text'
 license=('MIT')
-depends=('python-jaraco.functools' 'python-jaraco.context')
+depends=('python-jaraco.functools' 'python-jaraco.context' 'python-autocommand' 'python-inflect' 'python-more-itertools')
 makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 'python-wheel')
+checkdepends=('python-pytest')
 conflicts=('python-jaraco')
 replaces=('python-jaraco')
 source=("https://files.pythonhosted.org/packages/source/j/jaraco.text/jaraco.text-$pkgver.tar.gz")
-sha512sums=('2dfdd2b3bfef7c0a38a633b810a63a4337ce79b0c871f08beb369bea04585ef1b9e53afa7cef0b54c172ca25eed068af92215526d2f5cee232ccf7e72c914cfa')
+sha512sums=('c895646f87af5fb0035fa22470b02d2742fdbbe90bfd65a23d367108a922fbffd7cdf6e8882850c6b4454b8a9e177cefab636f90adde1e583c4cc9f4cbb33f26')
 
 build() {
   cd "$srcdir/jaraco.text-$pkgver"
@@ -20,6 +21,11 @@
   python -m build --wheel --no-isolation
 }
 
+check() {
+  cd "$srcdir/jaraco.text-$pkgver"
+  PYTHONPATH="$PWD" pytest
+}
+
 package() {
   cd "$srcdir/jaraco.text-$pkgver"
   python -m installer --destdir="$pkgdir" dist/*.whl



More information about the arch-commits mailing list