Date: Tuesday, March 12, 2019 @ 07:42:42
Author: eworm
Revision: 347721
archrelease: copy trunk to testing-x86_64
Added:
lpeg/repos/testing-x86_64/
lpeg/repos/testing-x86_64/LICENSE
(from rev 347720, lpeg/trunk/LICENSE)
lpeg/repos/testing-x86_64/PKGBUILD
(from rev 347720, lpeg/trunk/PKGBUILD)
----------+
LICENSE | 7 +++++
PKGBUILD | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 85 insertions(+)
Copied: lpeg/repos/testing-x86_64/LICENSE (from rev 347720, lpeg/trunk/LICENSE)
===================================================================
--- testing-x86_64/LICENSE (rev 0)
+++ testing-x86_64/LICENSE 2019-03-12 07:42:42 UTC (rev 347721)
@@ -0,0 +1,7 @@
+Copyright © 2008 Lua.org, PUC-Rio.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Copied: lpeg/repos/testing-x86_64/PKGBUILD (from rev 347720,
lpeg/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-03-12 07:42:42 UTC (rev 347721)
@@ -0,0 +1,78 @@
+# Maintainer: Christian Hesse <[email protected]>
+# Contributor: Gustavo Alvarez <[email protected]>
+
+pkgbase=lpeg
+pkgname=(lua-lpeg lua51-lpeg lua52-lpeg)
+pkgver=1.0.2
+pkgrel=1
+arch=('x86_64')
+url='http://www.inf.puc-rio.br/~roberto/lpeg'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52')
+source=(http://www.inf.puc-rio.br/~roberto/$pkgbase/$pkgbase-$pkgver.tar.gz
+ LICENSE)
+sha256sums=('48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe'
+ '6be7688c9c648e7c7cde693081be938c869a10aa4de09fe0a4c4c1d66b3cf03d')
+
+prepare() {
+ sed 's/^CFLAGS =/CFLAGS +=/' -i $pkgbase-$pkgver/makefile
+ sed 's/^COPT =/# COPT =/' -i $pkgbase-$pkgver/makefile
+
+ cp -r $pkgbase-$pkgver $pkgbase-$pkgver-51
+ cp -r $pkgbase-$pkgver $pkgbase-$pkgver-52
+}
+
+build() {
+ cd $pkgbase-$pkgver
+ make LUADIR=/usr/include
+
+ cd "$srcdir"/$pkgbase-$pkgver-51
+ make LUADIR=/usr/include/lua5.1
+
+ cd "$srcdir"/$pkgbase-$pkgver-52
+ make LUADIR=/usr/include/lua5.2
+}
+
+check() {
+ msg2 "Testing with Lua 5.3"
+ cd $srcdir/$pkgbase-$pkgver
+ lua test.lua
+
+ msg2 "Testing with Lua 5.1"
+ cd $srcdir/$pkgbase-$pkgver-51
+ lua5.1 test.lua
+
+ msg2 "Testing with Lua 5.2"
+ cd $srcdir/$pkgbase-$pkgver-52
+ lua5.2 test.lua
+}
+
+package_lua-lpeg() {
+ pkgdesc='Pattern-matching library for Lua 5.3'
+ depends=('lua')
+
+ cd $pkgbase-$pkgver
+ install -Dm755 $pkgbase.so "$pkgdir"/usr/lib/lua/5.3/$pkgbase.so
+ install -Dm644 re.lua "$pkgdir"/usr/share/lua/5.3/re.lua
+ install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-lpeg() {
+ pkgdesc='Pattern-matching library for Lua 5.1'
+ depends=('lua51')
+
+ cd $pkgbase-$pkgver-51
+ install -Dm755 $pkgbase.so "$pkgdir"/usr/lib/lua/5.1/$pkgbase.so
+ install -Dm644 re.lua "$pkgdir"/usr/share/lua/5.1/re.lua
+ install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua52-lpeg() {
+ pkgdesc='Pattern-matching library for Lua 5.2'
+ depends=('lua52')
+
+ cd $pkgbase-$pkgver-52
+ install -Dm755 $pkgbase.so "$pkgdir"/usr/lib/lua/5.2/$pkgbase.so
+ install -Dm644 re.lua "$pkgdir"/usr/share/lua/5.2/re.lua
+ install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}