[arch-commits] Commit in lua53/repos (5 files)
Date: Monday, September 28, 2020 @ 01:08:20 Author: anatolik Revision: 396931 archrelease: copy trunk to testing-x86_64 Added: lua53/repos/testing-x86_64/ lua53/repos/testing-x86_64/LICENSE (from rev 396930, lua53/trunk/LICENSE) lua53/repos/testing-x86_64/PKGBUILD (from rev 396930, lua53/trunk/PKGBUILD) lua53/repos/testing-x86_64/liblua.so.patch (from rev 396930, lua53/trunk/liblua.so.patch) lua53/repos/testing-x86_64/lua.pc (from rev 396930, lua53/trunk/lua.pc) -+ LICENSE | 30 PKGBUILD| 66 ++ liblua.so.patch | 60 + lua.pc | 20 4 files changed, 176 insertions(+) Copied: lua53/repos/testing-x86_64/LICENSE (from rev 396930, lua53/trunk/LICENSE) === --- testing-x86_64/LICENSE (rev 0) +++ testing-x86_64/LICENSE 2020-09-28 01:08:20 UTC (rev 396931) @@ -0,0 +1,30 @@ +License + +Lua is free software distributed under the terms of the MIT license +reproduced below; it may be used for any purpose, including commercial +purposes, at absolutely no cost without having to ask us. The only +requirement is that if you do use Lua, then you should give us credit +by including the appropriate copyright notice somewhere in your +product or its documentation. + +Copyright © 1994–2015 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: lua53/repos/testing-x86_64/PKGBUILD (from rev 396930, lua53/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2020-09-28 01:08:20 UTC (rev 396931) @@ -0,0 +1,66 @@ +# Maintainer: + +pkgname=lua53 +pkgver=5.3.6 +pkgrel=1 +pkgdesc='Powerful lightweight programming language designed for extending applications' +arch=('x86_64') +url='https://www.lua.org/' +depends=('readline') +license=('MIT') +options=('!emptydirs') +source=(https://www.lua.org/ftp/lua-$pkgver.tar.gz +liblua.so.patch +lua.pc +LICENSE) +sha512sums=('ccc380d5e114d54504de0bfb0321ca25ec325d6ff1bfee44b11870b660762d1a9bf120490c027a0088128b58bb6b5271bbc648400cab84d2dc22b512c4841681' + '38fb153c0a12c2f6e93b728072d7c99f1776b9c25e48a06e3b6757a18fd7040002a935db2079723faa5eff86e50e15870257b1c3e69a9443001ac1d200d3d228' + 'a3ae5f5c63a27956a2c69464cf966512be7404aef72d49b0b3b17e35999ceed04ec7be12ef19269f4cac908141b98dd5d16df9c238823fe0c1e068212914657a' + '7177faeef3d7699748d3523d7884f8037fc04be02a51bd3f0590de6ef074f723f2462a6fcc23c7625a7d8667247d62fa2b41cf94d0a8fd3f0df1e4a1b9ed336f') + +prepare() { + cd lua-$pkgver + patch -p1 -i ../liblua.so.patch + + sed "s/%VER%/${pkgver%.*}/g;s/%REL%/$pkgver/g" ../lua.pc > lua.pc + + # Lua 5.3.4 has wrong release version in its Makefile. Fix it. + sed "s/^R= \$V.4/R= \$V.5/" -i Makefile + + sed -e 's:llua:llua5.3:' -e 's:/include:/include/lua5.3:' -i lua.pc + sed -r -e '/^LUA_(SO|A|T)=/ s/lua/lua5.3/' -e '/^LUAC_T=/ s/luac/luac5.3/' -i src/Makefile +} + +build() { + cd lua-$pkgver + + make MYCFLAGS="$CFLAGS -fPIC" MYLDFLAGS="$LDFLAGS" linux +} + +package() { + cd lua-$pkgver + + make \ +TO_BIN='lua5.3 luac5.3' \ +TO_LIB="liblua5.3.a liblua5.3.so liblua5.3.so.5.3 liblua5.3.so.$pkgver" \ +INSTALL_DATA='cp -d' \ +INSTALL_TOP="$pkgdir"/usr \ +INSTALL_INC="$pkgdir"/usr/include/lua5.3 \ +INSTALL_MAN="$pkgdir"/usr/share/man/man1 \ +install + + install -Dm644 lua.pc "$pkgdir"/usr/lib/pkgconfig/lua53.pc + ln -sf lua53.pc "$pkgdir"/usr/lib/pkgconfig/lua5.3.pc + ln -sf lua53.pc "$pkgdir"/usr/lib/pkgconfig/lua-5.3.pc + + install -d "$pkgdir"/usr/share/doc/$pkgname + install -m644 doc/*.{gif
[arch-commits] Commit in lua53/repos (5 files)
Date: Monday, June 29, 2020 @ 21:41:12 Author: anatolik Revision: 390620 archrelease: copy trunk to testing-x86_64 Added: lua53/repos/testing-x86_64/ lua53/repos/testing-x86_64/LICENSE (from rev 390619, lua53/trunk/LICENSE) lua53/repos/testing-x86_64/PKGBUILD (from rev 390619, lua53/trunk/PKGBUILD) lua53/repos/testing-x86_64/liblua.so.patch (from rev 390619, lua53/trunk/liblua.so.patch) lua53/repos/testing-x86_64/lua.pc (from rev 390619, lua53/trunk/lua.pc) -+ LICENSE | 30 PKGBUILD| 66 ++ liblua.so.patch | 60 + lua.pc | 20 4 files changed, 176 insertions(+) Copied: lua53/repos/testing-x86_64/LICENSE (from rev 390619, lua53/trunk/LICENSE) === --- testing-x86_64/LICENSE (rev 0) +++ testing-x86_64/LICENSE 2020-06-29 21:41:12 UTC (rev 390620) @@ -0,0 +1,30 @@ +License + +Lua is free software distributed under the terms of the MIT license +reproduced below; it may be used for any purpose, including commercial +purposes, at absolutely no cost without having to ask us. The only +requirement is that if you do use Lua, then you should give us credit +by including the appropriate copyright notice somewhere in your +product or its documentation. + +Copyright © 1994–2015 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: lua53/repos/testing-x86_64/PKGBUILD (from rev 390619, lua53/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2020-06-29 21:41:12 UTC (rev 390620) @@ -0,0 +1,66 @@ +# Maintainer: + +pkgname=lua53 +pkgver=5.3.5 +pkgrel=1 +pkgdesc='Powerful lightweight programming language designed for extending applications' +arch=('x86_64') +url='https://www.lua.org/' +depends=('readline') +license=('MIT') +options=('!emptydirs') +source=(https://www.lua.org/ftp/lua-$pkgver.tar.gz +liblua.so.patch +lua.pc +LICENSE) +sha512sums=('4f9516acc4659dfd0a9e911bfa00c0788f0ad9348e5724fe8fb17aac59e9c0060a64378f82be86f8534e49c6c013e7488ad17321bafcc787831d3d67406bd0f4' + '38fb153c0a12c2f6e93b728072d7c99f1776b9c25e48a06e3b6757a18fd7040002a935db2079723faa5eff86e50e15870257b1c3e69a9443001ac1d200d3d228' + 'a3ae5f5c63a27956a2c69464cf966512be7404aef72d49b0b3b17e35999ceed04ec7be12ef19269f4cac908141b98dd5d16df9c238823fe0c1e068212914657a' + '7177faeef3d7699748d3523d7884f8037fc04be02a51bd3f0590de6ef074f723f2462a6fcc23c7625a7d8667247d62fa2b41cf94d0a8fd3f0df1e4a1b9ed336f') + +prepare() { + cd lua-$pkgver + patch -p1 -i ../liblua.so.patch + + sed "s/%VER%/${pkgver%.*}/g;s/%REL%/$pkgver/g" ../lua.pc > lua.pc + + # Lua 5.3.4 has wrong release version in its Makefile. Fix it. + sed "s/^R= \$V.4/R= \$V.5/" -i Makefile + + sed -e 's:llua:llua5.3:' -e 's:/include:/include/lua5.3:' -i lua.pc + sed -r -e '/^LUA_(SO|A|T)=/ s/lua/lua5.3/' -e '/^LUAC_T=/ s/luac/luac5.3/' -i src/Makefile +} + +build() { + cd lua-$pkgver + + make MYCFLAGS="$CFLAGS -fPIC" MYLDFLAGS="$LDFLAGS" linux +} + +package() { + cd lua-$pkgver + + make \ +TO_BIN='lua5.3 luac5.3' \ +TO_LIB="liblua5.3.a liblua5.3.so liblua5.3.so.5.3 liblua5.3.so.$pkgver" \ +INSTALL_DATA='cp -d' \ +INSTALL_TOP="$pkgdir"/usr \ +INSTALL_INC="$pkgdir"/usr/include/lua5.3 \ +INSTALL_MAN="$pkgdir"/usr/share/man/man1 \ +install + + install -Dm644 lua.pc "$pkgdir"/usr/lib/pkgconfig/lua53.pc + ln -sf lua53.pc "$pkgdir"/usr/lib/pkgconfig/lua5.3.pc + ln -sf lua53.pc "$pkgdir"/usr/lib/pkgconfig/lua-5.3.pc + + install -d "$pkgdir"/usr/share/doc/$pkgname + install -m644 doc/*.{gif,png,