diff options
author | Christopher Arndt | 2020-09-25 18:41:59 +0200 |
---|---|---|
committer | Christopher Arndt | 2020-09-25 18:50:32 +0200 |
commit | ac9e00305eec75ae853d7ba85e79fd1a8a920b94 (patch) | |
tree | 3619230dae877b3f89fda3789f7b47565edf0b0d | |
parent | da72be7a2becfaafa6c264311f7fc574f6f85ecb (diff) | |
download | aur-ac9e00305eec75ae853d7ba85e79fd1a8a920b94.tar.gz |
Fix detection of dummy modules
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | .gitignore | 9 | ||||
-rw-r--r-- | PKGBUILD | 4 |
3 files changed, 8 insertions, 7 deletions
@@ -1,6 +1,6 @@ pkgbase = micropython-lib-git pkgdesc = Core Python libraries ported to MicroPython (git version) - pkgver = 1.9.3.140.gb89114c + pkgver = 1.9.3.144.geae01bd pkgrel = 1 epoch = 1 url = http://micropython.org/ diff --git a/.gitignore b/.gitignore index 83ae802be1a3..286b1a86146c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ -*.pkg.tar.xz -micropython-lib -src/* -pkg/* +micropython-lib-git-*.pkg.tar.xz +micropython-lib-git-*.pkg.tar.zst +micropython-lib/ +src/ +pkg/ @@ -3,7 +3,7 @@ # Contributor: Kyle Keen <keenerd@gmail.com> pkgname=micropython-lib-git -pkgver=1.9.3.140.gb89114c +pkgver=1.9.3.144.geae01bd pkgrel=1 epoch=1 pkgdesc="Core Python libraries ported to MicroPython (git version)" @@ -41,7 +41,7 @@ package() { warning "Skipping ${pkg} (no setup)." continue fi - if test -f $_d/metadata.txt && grep '^srctype=dummy' -q $_d/metadata.txt; then + if test -f $_d/metadata.txt && grep '^srctype *= *dummy' -q $_d/metadata.txt; then warning "Skipping ${pkg} (dummy module)." continue fi |