Date: Friday, May 20, 2022 @ 04:49:18
  Author: daurnimator
Revision: 1209307

archrelease: copy trunk to community-any

Added:
  lua-dkjson/repos/community-any/LICENSE
    (from rev 1209306, lua-dkjson/trunk/LICENSE)
  lua-dkjson/repos/community-any/PKGBUILD
    (from rev 1209306, lua-dkjson/trunk/PKGBUILD)
Deleted:
  lua-dkjson/repos/community-any/LICENSE
  lua-dkjson/repos/community-any/PKGBUILD

----------+
 LICENSE  |   14 +++---
 PKGBUILD |  134 ++++++++++++++++++++++++++++++-------------------------------
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: LICENSE
===================================================================
--- LICENSE     2022-05-20 04:48:34 UTC (rev 1209306)
+++ LICENSE     2022-05-20 04:49:18 UTC (rev 1209307)
@@ -1,7 +0,0 @@
-Copyright (C) 2010-2014 David Heiko Kolf
-
-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: lua-dkjson/repos/community-any/LICENSE (from rev 1209306, 
lua-dkjson/trunk/LICENSE)
===================================================================
--- LICENSE                             (rev 0)
+++ LICENSE     2022-05-20 04:49:18 UTC (rev 1209307)
@@ -0,0 +1,7 @@
+Copyright (C) 2010-2014 David Heiko Kolf
+
+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: PKGBUILD
===================================================================
--- PKGBUILD    2022-05-20 04:48:34 UTC (rev 1209306)
+++ PKGBUILD    2022-05-20 04:49:18 UTC (rev 1209307)
@@ -1,67 +0,0 @@
-# Maintainer: Daurnimator <[email protected]>
-
-pkgname=("lua-dkjson" "lua53-dkjson" "lua52-dkjson" "lua51-dkjson")
-pkgver=2.6
-pkgrel=1
-pkgdesc='David Kolf’s Pure Lua JSON module with UTF-8 support and no external 
dependencies'
-arch=('any')
-url="http://dkolf.de/src/dkjson-lua.fsl/home";
-license=('MIT')
-makedepends=('luarocks'
-             'lua51' 'lua52' 'lua53' 'lua' # 
https://github.com/luarocks/luarocks/issues/1275
-            )
-source=("http://dkolf.de/src/dkjson-lua.fsl/tarball/dkjson-$pkgver.tar.gz";
-        "LICENSE")
-sha256sums=('bd07ee4eb398aed6cf36f92423845399a5b46c15090990cc90e56d07c46f9773'
-            '695b49734d1244ff236ec8785aa908883deb0f65b2356e36e8739ea06002b03c')
-
-build() {
-  cd "dkjson-$pkgver"
-  for v in 5.1 5.2 5.3 5.4; do
-    mkdir -p "$v/"
-    luarocks make --lua-version="$v" \
-      --pack-binary-rock --deps-mode=none \
-      dkjson-"$pkgver"-1.rockspec
-    mv dkjson-"$pkgver"-1.*.rock "$v/"
-  done
-}
-
-package_lua-dkjson() {
-  pkgdesc="$pkgdesc for Lua 5.4"
-  optdepends=('lua-lpeg: speeds up decoding')
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd "dkjson-$pkgver"
-  luarocks install --lua-version=5.4 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.4/*.rock
-}
-
-package_lua53-dkjson() {
-  pkgdesc="$pkgdesc for Lua 5.3"
-  optdepends=('lua53-lpeg: speeds up decoding')
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd "dkjson-$pkgver"
-  luarocks install --lua-version=5.3 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.3/*.rock
-}
-
-package_lua52-dkjson() {
-  pkgdesc="$pkgdesc for Lua 5.2"
-  optdepends=('lua52-lpeg: speeds up decoding')
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd "dkjson-$pkgver"
-  luarocks install --lua-version=5.2 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.2/*.rock
-}
-
-package_lua51-dkjson() {
-  pkgdesc="$pkgdesc for Lua 5.1"
-  optdepends=('lua51-lpeg: speeds up decoding')
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd "dkjson-$pkgver"
-  luarocks install --lua-version=5.1 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.1/*.rock
-}

Copied: lua-dkjson/repos/community-any/PKGBUILD (from rev 1209306, 
lua-dkjson/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2022-05-20 04:49:18 UTC (rev 1209307)
@@ -0,0 +1,67 @@
+# Maintainer: Daurnimator <[email protected]>
+
+pkgname=("lua-dkjson" "lua53-dkjson" "lua52-dkjson" "lua51-dkjson")
+pkgver=2.6
+pkgrel=1
+pkgdesc='David Kolf’s Pure Lua JSON module with UTF-8 support and no external 
dependencies'
+arch=('any')
+url="http://dkolf.de/src/dkjson-lua.fsl/home";
+license=('MIT')
+makedepends=('luarocks'
+             'lua51' 'lua52' 'lua53' 'lua' # 
https://github.com/luarocks/luarocks/issues/1275
+            )
+source=("http://dkolf.de/src/dkjson-lua.fsl/tarball/dkjson-$pkgver.tar.gz";
+        "LICENSE")
+sha256sums=('bd07ee4eb398aed6cf36f92423845399a5b46c15090990cc90e56d07c46f9773'
+            '695b49734d1244ff236ec8785aa908883deb0f65b2356e36e8739ea06002b03c')
+
+build() {
+  cd "dkjson-$pkgver"
+  for v in 5.1 5.2 5.3 5.4; do
+    mkdir -p "$v/"
+    luarocks make --lua-version="$v" \
+      --pack-binary-rock --deps-mode=none \
+      dkjson-"$pkgver"-1.rockspec
+    mv dkjson-"$pkgver"-1.*.rock "$v/"
+  done
+}
+
+package_lua-dkjson() {
+  pkgdesc="$pkgdesc for Lua 5.4"
+  optdepends=('lua-lpeg: speeds up decoding')
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd "dkjson-$pkgver"
+  luarocks install --lua-version=5.4 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.4/*.rock
+}
+
+package_lua53-dkjson() {
+  pkgdesc="$pkgdesc for Lua 5.3"
+  optdepends=('lua53-lpeg: speeds up decoding')
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd "dkjson-$pkgver"
+  luarocks install --lua-version=5.3 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.3/*.rock
+}
+
+package_lua52-dkjson() {
+  pkgdesc="$pkgdesc for Lua 5.2"
+  optdepends=('lua52-lpeg: speeds up decoding')
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd "dkjson-$pkgver"
+  luarocks install --lua-version=5.2 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.2/*.rock
+}
+
+package_lua51-dkjson() {
+  pkgdesc="$pkgdesc for Lua 5.1"
+  optdepends=('lua51-lpeg: speeds up decoding')
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd "dkjson-$pkgver"
+  luarocks install --lua-version=5.1 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.1/*.rock
+}

Reply via email to