[arch-commits] Commit in luafilesystem/repos (8 files)

Sergej Pupykin spupykin at archlinux.org
Tue Nov 7 13:59:49 UTC 2017


    Date: Tuesday, November 7, 2017 @ 13:59:48
  Author: spupykin
Revision: 265655

archrelease: copy trunk to community-i686, community-x86_64

Added:
  luafilesystem/repos/community-i686/LICENSE
    (from rev 265654, luafilesystem/trunk/LICENSE)
  luafilesystem/repos/community-i686/PKGBUILD
    (from rev 265654, luafilesystem/trunk/PKGBUILD)
  luafilesystem/repos/community-x86_64/LICENSE
    (from rev 265654, luafilesystem/trunk/LICENSE)
  luafilesystem/repos/community-x86_64/PKGBUILD
    (from rev 265654, luafilesystem/trunk/PKGBUILD)
Deleted:
  luafilesystem/repos/community-i686/LICENSE
  luafilesystem/repos/community-i686/PKGBUILD
  luafilesystem/repos/community-x86_64/LICENSE
  luafilesystem/repos/community-x86_64/PKGBUILD

---------------------------+
 /LICENSE                  |   44 ++++++++++++++
 /PKGBUILD                 |  130 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/LICENSE    |   22 -------
 community-i686/PKGBUILD   |   64 ---------------------
 community-x86_64/LICENSE  |   22 -------
 community-x86_64/PKGBUILD |   64 ---------------------
 6 files changed, 174 insertions(+), 172 deletions(-)

Deleted: community-i686/LICENSE
===================================================================
--- community-i686/LICENSE	2017-11-07 13:59:30 UTC (rev 265654)
+++ community-i686/LICENSE	2017-11-07 13:59:48 UTC (rev 265655)
@@ -1,22 +0,0 @@
-Copyright (C) 2004-2007 The Kepler Project.
-
-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: luafilesystem/repos/community-i686/LICENSE (from rev 265654, luafilesystem/trunk/LICENSE)
===================================================================
--- community-i686/LICENSE	                        (rev 0)
+++ community-i686/LICENSE	2017-11-07 13:59:48 UTC (rev 265655)
@@ -0,0 +1,22 @@
+Copyright (C) 2004-2007 The Kepler Project.
+
+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.
+

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-11-07 13:59:30 UTC (rev 265654)
+++ community-i686/PKGBUILD	2017-11-07 13:59:48 UTC (rev 265655)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
-# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
-# Contributor: Anders Bergh <anders1 at gmail.com>
-
-pkgbase=luafilesystem
-pkgname=(lua-filesystem lua51-filesystem lua52-filesystem)
-pkgver=1.6.3
-_tag=v_${pkgver//./_}
-pkgrel=3
-pkgdesc='File System Library for the Lua Programming Language'
-arch=('i686' 'x86_64')
-url='http://www.keplerproject.org/luafilesystem/'
-license=('MIT')
-makedepends=(lua lua51 lua52)
-#source=(http://github.com/downloads/keplerproject/$pkgbase/$pkgbase-$pkgver.tar.gz
-source=(luafilesystem-$_tag.tar.gz::https://github.com/keplerproject/luafilesystem/archive/$_tag.tar.gz
-        LICENSE)
-md5sums=('d0552c7e5a082f5bb2865af63fb9dc95'
-         'beb2b58c4b5c2782304a5b0267a5651b')
-
-build() {
-  msg2 "Building $pkgbase with Lua 5.1"
-  cp -a $pkgbase-$_tag $pkgbase-$_tag-51
-  cd $pkgbase-$_tag-51
-  make LUA_INC=/usr/include/lua5.1
-
-  msg2 "Building $pkgbase with Lua 5.2"
-  cd "$srcdir"
-  cp -a $pkgbase-$_tag $pkgbase-$_tag-52
-  cd $pkgbase-$_tag-52
-  make LUA_INC=/usr/include/lua5.2
-
-  msg2 "Building $pkgbase with Lua 5.3"
-  cd "$srcdir"/$pkgbase-$_tag
-  make
-}
-
-package_lua-filesystem() {
-  depends=('lua')
-
-  cd $pkgbase-$_tag
-  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.3' install
-  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_lua51-filesystem() {
-  depends=('lua51')
-  conflicts=('luafilesystem')
-  replaces=('luafilesystem')
-
-  cd $pkgbase-$_tag-51
-  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.1' install
-  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_lua52-filesystem() {
-  depends=('lua52')
-
-  cd $pkgbase-$_tag-52
-  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.2' install
-  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: luafilesystem/repos/community-i686/PKGBUILD (from rev 265654, luafilesystem/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-11-07 13:59:48 UTC (rev 265655)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
+# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
+# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
+# Contributor: Anders Bergh <anders1 at gmail.com>
+
+pkgbase=luafilesystem
+pkgname=(lua-filesystem lua51-filesystem lua52-filesystem)
+pkgver=1.7.0.2
+_tag=${pkgver//./_}
+pkgrel=1
+pkgdesc='File System Library for the Lua Programming Language'
+arch=('i686' 'x86_64')
+url='http://keplerproject.github.io/luafilesystem/'
+license=('MIT')
+makedepends=(lua lua51 lua52)
+#source=(http://github.com/downloads/keplerproject/$pkgbase/$pkgbase-$pkgver.tar.gz
+source=(luafilesystem-${_tag}.tar.gz::https://github.com/keplerproject/luafilesystem/archive/v${_tag}.tar.gz
+        LICENSE)
+sha256sums=('23b4883aeb4fb90b2d0f338659f33a631f9df7a7e67c54115775a77d4ac3cc59'
+            'bab7b7a48ca7cb322a35c8975cd2c08d051ce6e20e8db56c2e6017726acdf9ae')
+
+build() {
+  cd "$srcdir"
+  msg2 "Building $pkgbase with Lua 5.1"
+  cp -a $pkgbase-${_tag} $pkgbase-${_tag}-51
+  cd $pkgbase-${_tag}-51
+  make LUA_INC=/usr/include/lua5.1
+
+  msg2 "Building $pkgbase with Lua 5.2"
+  cd "$srcdir"
+  cp -a $pkgbase-${_tag} $pkgbase-${_tag}-52
+  cd $pkgbase-${_tag}-52
+  make LUA_INC=/usr/include/lua5.2
+
+  msg2 "Building $pkgbase with Lua 5.3"
+  cd "$srcdir"/$pkgbase-${_tag}
+  make
+}
+
+package_lua-filesystem() {
+  depends=('lua')
+
+  cd $pkgbase-${_tag}
+  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.3' install
+  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-filesystem() {
+  depends=('lua51')
+  conflicts=('luafilesystem')
+  replaces=('luafilesystem')
+
+  cd $pkgbase-${_tag}-51
+  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.1' install
+  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua52-filesystem() {
+  depends=('lua52')
+
+  cd $pkgbase-${_tag}-52
+  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.2' install
+  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/LICENSE
===================================================================
--- community-x86_64/LICENSE	2017-11-07 13:59:30 UTC (rev 265654)
+++ community-x86_64/LICENSE	2017-11-07 13:59:48 UTC (rev 265655)
@@ -1,22 +0,0 @@
-Copyright (C) 2004-2007 The Kepler Project.
-
-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: luafilesystem/repos/community-x86_64/LICENSE (from rev 265654, luafilesystem/trunk/LICENSE)
===================================================================
--- community-x86_64/LICENSE	                        (rev 0)
+++ community-x86_64/LICENSE	2017-11-07 13:59:48 UTC (rev 265655)
@@ -0,0 +1,22 @@
+Copyright (C) 2004-2007 The Kepler Project.
+
+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.
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-11-07 13:59:30 UTC (rev 265654)
+++ community-x86_64/PKGBUILD	2017-11-07 13:59:48 UTC (rev 265655)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
-# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
-# Contributor: Anders Bergh <anders1 at gmail.com>
-
-pkgbase=luafilesystem
-pkgname=(lua-filesystem lua51-filesystem lua52-filesystem)
-pkgver=1.6.3
-_tag=v_${pkgver//./_}
-pkgrel=3
-pkgdesc='File System Library for the Lua Programming Language'
-arch=('i686' 'x86_64')
-url='http://www.keplerproject.org/luafilesystem/'
-license=('MIT')
-makedepends=(lua lua51 lua52)
-#source=(http://github.com/downloads/keplerproject/$pkgbase/$pkgbase-$pkgver.tar.gz
-source=(luafilesystem-$_tag.tar.gz::https://github.com/keplerproject/luafilesystem/archive/$_tag.tar.gz
-        LICENSE)
-md5sums=('d0552c7e5a082f5bb2865af63fb9dc95'
-         'beb2b58c4b5c2782304a5b0267a5651b')
-
-build() {
-  msg2 "Building $pkgbase with Lua 5.1"
-  cp -a $pkgbase-$_tag $pkgbase-$_tag-51
-  cd $pkgbase-$_tag-51
-  make LUA_INC=/usr/include/lua5.1
-
-  msg2 "Building $pkgbase with Lua 5.2"
-  cd "$srcdir"
-  cp -a $pkgbase-$_tag $pkgbase-$_tag-52
-  cd $pkgbase-$_tag-52
-  make LUA_INC=/usr/include/lua5.2
-
-  msg2 "Building $pkgbase with Lua 5.3"
-  cd "$srcdir"/$pkgbase-$_tag
-  make
-}
-
-package_lua-filesystem() {
-  depends=('lua')
-
-  cd $pkgbase-$_tag
-  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.3' install
-  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_lua51-filesystem() {
-  depends=('lua51')
-  conflicts=('luafilesystem')
-  replaces=('luafilesystem')
-
-  cd $pkgbase-$_tag-51
-  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.1' install
-  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_lua52-filesystem() {
-  depends=('lua52')
-
-  cd $pkgbase-$_tag-52
-  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.2' install
-  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: luafilesystem/repos/community-x86_64/PKGBUILD (from rev 265654, luafilesystem/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-11-07 13:59:48 UTC (rev 265655)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
+# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
+# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
+# Contributor: Anders Bergh <anders1 at gmail.com>
+
+pkgbase=luafilesystem
+pkgname=(lua-filesystem lua51-filesystem lua52-filesystem)
+pkgver=1.7.0.2
+_tag=${pkgver//./_}
+pkgrel=1
+pkgdesc='File System Library for the Lua Programming Language'
+arch=('i686' 'x86_64')
+url='http://keplerproject.github.io/luafilesystem/'
+license=('MIT')
+makedepends=(lua lua51 lua52)
+#source=(http://github.com/downloads/keplerproject/$pkgbase/$pkgbase-$pkgver.tar.gz
+source=(luafilesystem-${_tag}.tar.gz::https://github.com/keplerproject/luafilesystem/archive/v${_tag}.tar.gz
+        LICENSE)
+sha256sums=('23b4883aeb4fb90b2d0f338659f33a631f9df7a7e67c54115775a77d4ac3cc59'
+            'bab7b7a48ca7cb322a35c8975cd2c08d051ce6e20e8db56c2e6017726acdf9ae')
+
+build() {
+  cd "$srcdir"
+  msg2 "Building $pkgbase with Lua 5.1"
+  cp -a $pkgbase-${_tag} $pkgbase-${_tag}-51
+  cd $pkgbase-${_tag}-51
+  make LUA_INC=/usr/include/lua5.1
+
+  msg2 "Building $pkgbase with Lua 5.2"
+  cd "$srcdir"
+  cp -a $pkgbase-${_tag} $pkgbase-${_tag}-52
+  cd $pkgbase-${_tag}-52
+  make LUA_INC=/usr/include/lua5.2
+
+  msg2 "Building $pkgbase with Lua 5.3"
+  cd "$srcdir"/$pkgbase-${_tag}
+  make
+}
+
+package_lua-filesystem() {
+  depends=('lua')
+
+  cd $pkgbase-${_tag}
+  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.3' install
+  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua51-filesystem() {
+  depends=('lua51')
+  conflicts=('luafilesystem')
+  replaces=('luafilesystem')
+
+  cd $pkgbase-${_tag}-51
+  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.1' install
+  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_lua52-filesystem() {
+  depends=('lua52')
+
+  cd $pkgbase-${_tag}-52
+  make PREFIX="$pkgdir"/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.2' install
+  install -Dm644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



More information about the arch-commits mailing list