diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,18 +1,22 @@
name : libmpack
-version : 1.0.2
-release : 3
+version : 1.0.7
+release : 4
source :
- - https://github.com/tarruda/libmpack/archive/1.0.2.tar.gz : 9c570b2aab81b0c56d97cbd8fc483dc431b69510fd9becb4a1845291563e8bc9
+ - https://github.com/libmpack/libmpack-lua/releases/download/1.0.7/libmpack-lua-1.0.7.tar.gz : 68565484a3441d316bd51bed1cacd542b7f84b1ecfd37a8bd18dd0f1a20887e8
license : MIT
component : programming
-summary : libmpack is a small binary serialization/RPC library that implements
- both the msgpack and msgpack-rpc specifications.
+summary : Implementation of MessagePack for Lua 5.1 and Lua 5.3
description: |
libmpack is a small binary serialization/RPC library that implements both the msgpack and msgpack-rpc specifications.
builddeps :
- pkgconfig(lua-5.1)
+ - pkgconfig(lua-5.3)
build : |
- gcc -O2 -fPIC -I/usr/include/lua5.1 -c binding/lua/lmpack.c -o lmpack.o
- gcc -shared -o mpack.so.5.1 lmpack.o
+ gcc -O2 -fPIC -I/usr/include/lua5.1 -c lmpack.c -o lmpack-5.1.o
+ gcc -shared -o mpack.so.5.1 lmpack-5.1.o
+
+ gcc -O2 -fPIC -I/usr/include/lua5.3 -c lmpack.c -o lmpack-5.3.o
+ gcc -shared -o mpack.so.5.3 lmpack-5.3.o
install : |
- install -Dm755 mpack.so.5.1 $installdir/%libdir%/lua/5.1/mpack.so
+ install -Dm00755 mpack.so.5.1 $installdir/%libdir%/lua/5.1/mpack.so
+ install -Dm00755 mpack.so.5.3 $installdir/%libdir%/lua/5.3/mpack.so
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -2,33 +2,34 @@
libmpack
- Joshua Strobl
- joshua@stroblindustries.com
+ Pierre-Yves
+ pyu@riseup.net
MIT
programming
- libmpack is a small binary serialization/RPC library that implements both the msgpack and msgpack-rpc specifications.
+ libmpack-lua - Implementation of MessagePack for Lua 5.1 and Lua 5.3
libmpack is a small binary serialization/RPC library that implements both the msgpack and msgpack-rpc specifications.
https://solus-project.com/sources/README.Solus
libmpack
- libmpack is a small binary serialization/RPC library that implements both the msgpack and msgpack-rpc specifications.
+ libmpack-lua - Implementation of MessagePack for Lua 5.1 and Lua 5.3
libmpack is a small binary serialization/RPC library that implements both the msgpack and msgpack-rpc specifications.
programming
/usr/lib64/lua/5.1/mpack.so
+ /usr/lib64/lua/5.3/mpack.so
- 2016-05-29
- 1.0.2
+ 2018-01-07
+ 1.0.7
Packaging update
- Joshua Strobl
- joshua@stroblindustries.com
+ Pierre-Yves
+ pyu@riseup.net
\ No newline at end of file