[arch-commits] Commit in python-lark-parser/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Wed Jul 1 16:45:08 UTC 2020
Date: Wednesday, July 1, 2020 @ 16:45:08
Author: felixonmars
Revision: 657330
archrelease: copy trunk to community-testing-any
Added:
python-lark-parser/repos/community-testing-any/
python-lark-parser/repos/community-testing-any/PKGBUILD
(from rev 657329, python-lark-parser/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: python-lark-parser/repos/community-testing-any/PKGBUILD (from rev 657329, python-lark-parser/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2020-07-01 16:45:08 UTC (rev 657330)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-lark-parser
+pkgver=0.9.0
+_nearley_commit=a46b37471db486db0f6e1ce6a2934fb238346b44
+pkgrel=1
+pkgdesc="A modern parsing library"
+url="https://github.com/lark-parser/lark"
+license=('MIT')
+arch=('any')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-js2py')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lark-parser/lark/archive/$pkgver.tar.gz"
+ "nearley-$_nearley_commit.tar.gz::https://github.com/kach/nearley/archive/$_nearley_commit.tar.gz")
+sha512sums=('91af4b0ce49cf9b660c8445de994ae52555bafc4ec7be28863512efeede468f94224a2aaa564518056d09d822f53d1def9f0371bc35a89d5fa04c5f2430ce6fc'
+ 'fe14909f8a1d1626f8a632e8d48bf83602923f468b7bbb819557b85ab5e384cb042241ba15525e9850f2bbd65cad12497ed0b7ff6bc86c04d78b63d0c1bb66b4')
+
+prepare() {
+ rmdir lark-$pkgver/tests/test_nearley/nearley
+ ln -s "$srcdir"/nearley-$_nearley_commit lark-$pkgver/tests/test_nearley/nearley
+}
+
+build() {
+ cd lark-$pkgver
+ python setup.py build
+}
+
+check() {
+ cd lark-$pkgver
+ python -m tests
+}
+
+package() {
+ cd lark-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list