* Updated tag and dependencies (#42, #44). * Fix path in rockspec file (closes #44). * Updated formatting. * Updated rockspec to reference tag and https URL (closes #42). * Added option to change radix for floating numbers (closes #36, closes #37). * Added version number to `numformat` when the change was introduced (#17). * Updated to add a note on `numformat` option for better readability (#17). * Updated copyright dates. * Fixed incorrect sref name used for tables within table keys * Use an scm rockspec instead of storing release rockspecs (closes #31). - lua-serpent 0.30 OBS-URL: https://build.opensuse.org/package/show/Kernel:tools/lua-serpent?expand=0&rev=1
76 lines
2.6 KiB
Python
76 lines
2.6 KiB
Python
#
|
|
# spec file for package lua-penlight
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define flavor @BUILD_FLAVOR@%{nil}
|
|
%define mod_name serpent
|
|
Version: 0.30+git12.139fc18263bc
|
|
Release: 0
|
|
Summary: Lua serializer and pretty printer
|
|
License: MIT
|
|
Group: Development/Languages/Other
|
|
URL: https://github.com/pkulchenko/serpent
|
|
Source0: %{mod_name}-%{version}.tar.gz
|
|
BuildRequires: %{flavor}-devel
|
|
BuildRequires: lua-macros
|
|
BuildArch: noarch
|
|
%lua_provides
|
|
%if "%{flavor}" == ""
|
|
Name: lua-%{mod_name}
|
|
ExclusiveArch: do_not_build
|
|
%else
|
|
Name: %{flavor}-%{mod_name}
|
|
%endif
|
|
|
|
%description
|
|
* Human readable:
|
|
* Provides single-line and multi-line output.
|
|
* Nested tables are properly indented in the multi-line output.
|
|
* Numerical keys are listed first.
|
|
* Keys are (optionally) sorted alphanumerically.
|
|
* Array part skips keys (`{'a', 'b'}` instead of `{[1] = 'a', [2] = 'b'}`).
|
|
* `nil` values are included when expected (`{1, nil, 3}` instead of `{1, [3]=3}`).
|
|
* Keys use short notation (`{foo = 'foo'}` instead of `{['foo'] = 'foo'}`).
|
|
* Shared references and self-references are marked in the output.
|
|
* Machine readable: provides reliable deserialization using `loadstring()`.
|
|
* Supports deeply nested tables.
|
|
* Supports tables with self-references.
|
|
* Keeps shared tables and functions shared after de/serialization.
|
|
* Supports function serialization using `string.dump()`.
|
|
* Supports serialization of global functions.
|
|
* Supports `__tostring` and `__serialize` metamethods.
|
|
* Escapes new-line `\010` and end-of-file control `\026` characters in strings.
|
|
* Configurable with options and custom formatters.
|
|
|
|
%prep
|
|
%autosetup -n %{mod_name}-%{version} -p1
|
|
|
|
%build
|
|
%install
|
|
install -m 644 -D -t %{buildroot}%{lua_noarchdir} src/%{mod_name}.lua
|
|
|
|
%check
|
|
LUA_PATH="%{buildroot}%{lua_noarchdir}/?/init.lua;%{buildroot}%{lua_noarchdir}/?.lua;;" \
|
|
lua%{lua_version} t/test.lua
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{lua_noarchdir}/%{mod_name}.lua
|
|
|
|
%changelog
|