[arch-commits] Commit in lpeg/repos (3 files)

Felix Yan felixonmars at archlinux.org
Sat May 16 11:10:33 UTC 2020


    Date: Saturday, May 16, 2020 @ 11:10:33
  Author: felixonmars
Revision: 384256

archrelease: copy trunk to staging-x86_64

Added:
  lpeg/repos/staging-x86_64/
  lpeg/repos/staging-x86_64/LICENSE
    (from rev 384255, lpeg/trunk/LICENSE)
  lpeg/repos/staging-x86_64/PKGBUILD
    (from rev 384255, lpeg/trunk/PKGBUILD)

----------+
 LICENSE  |    7 +++++
 PKGBUILD |   78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 85 insertions(+)

Copied: lpeg/repos/staging-x86_64/LICENSE (from rev 384255, lpeg/trunk/LICENSE)
===================================================================
--- staging-x86_64/LICENSE	                        (rev 0)
+++ staging-x86_64/LICENSE	2020-05-16 11:10:33 UTC (rev 384256)
@@ -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/staging-x86_64/PKGBUILD (from rev 384255, lpeg/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2020-05-16 11:10:33 UTC (rev 384256)
@@ -0,0 +1,78 @@
+# Maintainer: Christian Hesse <mail at eworm.de>
+# Contributor: Gustavo Alvarez <sl1pkn07 at gmail.com>
+
+pkgbase=lpeg
+pkgname=(lua-lpeg lua51-lpeg lua52-lpeg)
+pkgver=1.0.2
+pkgrel=2
+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
+}



More information about the arch-commits mailing list