forked from pool/lua-messagepack
osc copypac from project:devel:languages:lua package:lua51-MessagePack revision:4, using expand
OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-messagepack?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.osc
|
3
0.3.3.tar.gz
Normal file
3
0.3.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:40e86eacac87f4deaa566cdefaaa1ec6ca90ad14a9419805ea90d069736cfda6
|
||||
size 16335
|
15
lua51-MessagePack.changes
Normal file
15
lua51-MessagePack.changes
Normal file
@@ -0,0 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 8 12:24:19 UTC 2015 - ronisbr@gmail.com
|
||||
|
||||
- Add documentation to the package.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 5 13:00:52 UTC 2015 - ronisbr@gmail.com
|
||||
|
||||
- Fix source URL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 2 11:27:10 UTC 2015 - ronisbr@gmail.com
|
||||
|
||||
- Initial version based on devel:languages:lua/lua-messagepack
|
||||
|
57
lua51-MessagePack.spec
Normal file
57
lua51-MessagePack.spec
Normal file
@@ -0,0 +1,57 @@
|
||||
#
|
||||
# spec file for package lua-MessagePack
|
||||
#
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define mod_name MessagePack
|
||||
%define lua_version %(lua -e 'print(_VERSION)' | cut -d ' ' -f 2)
|
||||
Name: lua51-%{mod_name}
|
||||
Version: 0.3.3
|
||||
Release: 0
|
||||
Summary: MessagePack is an efficient binary serialization format
|
||||
License: MIT
|
||||
Group: Development/Libraries/Other
|
||||
Url: http://fperrad.github.io/lua-MessagePack/
|
||||
Source: https://github.com/fperrad/lua-MessagePack/archive/%{version}.tar.gz
|
||||
BuildRequires: lua51
|
||||
Requires: lua51
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
MessagePack is an efficient binary serialization format.
|
||||
|
||||
It lets you exchange data among multiple languages like JSON but it's faster and
|
||||
smaller.
|
||||
|
||||
It's a pure Lua implementation, without dependency.
|
||||
|
||||
And it's really fast with LuaJIT.
|
||||
|
||||
%prep
|
||||
%setup -q -n lua-%{mod_name}-%{version}
|
||||
|
||||
%build
|
||||
:
|
||||
|
||||
%install
|
||||
make PREFIX=%{_prefix} DESTDIR=%{buildroot} LUAVER=%{lua_version} install
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc CHANGES COPYRIGHT README.md
|
||||
%{_datadir}/lua/%{lua_version}/
|
||||
|
||||
%changelog
|
Reference in New Issue
Block a user