mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
community/lua-dromozoa-utf8: downgrade to 1.11
Upstream removed release 2.0 and continue with 1.x... >_<
This commit is contained in:
parent
8b071925b6
commit
88be28287b
@ -2,7 +2,7 @@
|
||||
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
||||
pkgname=lua-dromozoa-utf8
|
||||
_pkgname=dromozoa-utf8
|
||||
pkgver=2.0
|
||||
pkgver=1.11
|
||||
pkgrel=0
|
||||
pkgdesc="Lua 5.3 compatible pure-Lua UTF-8 implementation"
|
||||
url="https://github.com/dromozoa/dromozoa-utf8/"
|
||||
@ -56,5 +56,5 @@ _subpackage() {
|
||||
echo 'rock_manifest = {}' > "$rockdir"/rock_manifest
|
||||
}
|
||||
|
||||
sha512sums="6899fee64276dc3732dad4353f3d9186acbe46841f8867bc3332005fc386f0d7de24786cd701edf4f3025e77d6bffa3c72070af82526eb85f9d7e20d9cc6fb28 lua-dromozoa-utf8-2.0.tar.gz
|
||||
de29a3b7a1067b8181b2a40464a097d4474e474ff6e3f6295bce8bc2bd8a0bee29fae1f34ae300a83a60db91915af96bb464141e58d7bc67a970391399703140 test.sh.patch"
|
||||
sha512sums="794b3d7728776e4ffb2d57e0a0e9068fdcb3c34ccdaa3e1be45413d20ab8deb6d3e77fc067398e589dfa463976dfc08c8b314e8bf652a87e95c5b197f75c3140 lua-dromozoa-utf8-1.11.tar.gz
|
||||
5b24a1aef26a934aea9e116af857a0323d5e0b639f2d5ff66b6cc5310bf9c2315855f3034e3c5e40bda0e91f970ba90ebdd97c6eb08b2f6683b131fe5ba2ecb5 test.sh.patch"
|
||||
|
@ -3,15 +3,15 @@ Don't overwhelm console with test output...
|
||||
--- a/test.sh
|
||||
+++ b/test.sh
|
||||
@@ -24,7 +24,11 @@
|
||||
|
||||
for i in test/test*.lua
|
||||
do
|
||||
- "$lua" "$i"
|
||||
+ "$lua" "$i" > "${i%.lua}.out" 2>&1 || {
|
||||
+ echo "Tests failed, printing last 30 lines of the output..."
|
||||
+ tail -n 30 "${i%.lua}.out"
|
||||
+ exit 1
|
||||
+ }
|
||||
case X$# in
|
||||
X0) lua "$i";;
|
||||
- *) "$@" "$i";;
|
||||
+ *) "$@" "$i" > "${i%.lua}.out" 2>&1 || {
|
||||
+ echo "Tests failed, printing last 30 lines of the output..."
|
||||
+ tail -n 30 "${i%.lua}.out"
|
||||
+ exit 1
|
||||
+ };;
|
||||
esac
|
||||
done
|
||||
|
||||
mkdir -p out
|
||||
|
Loading…
Reference in New Issue
Block a user