summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Gamble2021-10-16 16:26:30 +1100
committerMatthew Gamble2021-10-16 16:26:30 +1100
commit44d3b3463fadc324381976760b03bfa099c333b7 (patch)
treec0c1d326d208ef349a50f85af0bf858d1d6da9d5
parent544081924adc4a834258c0eeb78acee4a77eb20d (diff)
downloadaur-44d3b3463fadc324381976760b03bfa099c333b7.tar.gz
Fix build
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8416f1669de4..3366d95f3902 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,13 @@
pkgbase = python-tatsu
pkgdesc = TatSu takes a grammar in a variation of EBNF as input, and outputs a memoizing PEG/Packrat parser in Python.
pkgver = 5.6.1
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/neogeny/TatSu
arch = any
license = BSD
makedepends = python-setuptools
depends = python
+ depends = python-pytest-runner
optdepends = python-regex
source = https://pypi.io/packages/source/T/TatSu/TatSu-5.6.1.zip
sha256sums = 6a4f07aa7bfe9dfbee8015824feaf13f0b1a89577e2ee5a4a62c18630c309d4e
diff --git a/PKGBUILD b/PKGBUILD
index 0090f287e7c7..c927f3917707 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,12 +4,14 @@
pkgname=python-tatsu
pkgver=5.6.1
-pkgrel=1
+pkgrel=2
pkgdesc="TatSu takes a grammar in a variation of EBNF as input, and outputs a memoizing PEG/Packrat parser in Python."
arch=("any")
url="https://github.com/neogeny/TatSu"
license=("BSD")
-depends=("python")
+# TODO: Remove python-pytest-runner once this issue is resolved:
+# https://github.com/neogeny/TatSu/issues/216
+depends=("python" "python-pytest-runner")
optdepends=("python-regex")
makedepends=('python-setuptools')
source=("https://pypi.io/packages/source/T/TatSu/TatSu-${pkgver}.zip")