- Opencode %make_build to prevent build failure when not defined. OBS-URL: https://build.opensuse.org/request/show/1060898 OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-inspect?expand=0&rev=3
67 lines
2.0 KiB
RPMSpec
67 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package lua-inspect
|
|
#
|
|
# 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@
|
|
%define mod_name inspect
|
|
Version: 3.1.3
|
|
Release: 0
|
|
Summary: Library for printing Lua values
|
|
License: MIT
|
|
Group: Development/Libraries/Other
|
|
URL: https://github.com/kikito/inspect.lua
|
|
Source: https://github.com/kikito/inspect.lua/archive/v%{version}.tar.gz#/lua-%{mod_name}-%{version}.tar.gz
|
|
BuildRequires: %{flavor}-busted
|
|
BuildRequires: %{flavor}-devel
|
|
BuildRequires: %{flavor}-luacheck
|
|
BuildRequires: %{flavor}-luarocks
|
|
BuildRequires: lua-macros
|
|
Requires: %{flavor}
|
|
BuildArch: noarch
|
|
%lua_provides
|
|
%if "%{flavor}" == ""
|
|
Name: lua-%{mod_name}
|
|
ExclusiveArch: do_not_build
|
|
%else
|
|
Name: %{flavor}-%{mod_name}
|
|
%endif
|
|
|
|
%description
|
|
This library transforms any Lua value into a human-readable representation. It is especially useful for debugging errors in tables.
|
|
|
|
The objective here is human understanding (i.e. for debugging), not serialization or compactness.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{mod_name}.lua-%{version}
|
|
|
|
%build
|
|
|
|
%install
|
|
install -m 0755 -p -d %{buildroot}%{lua_noarchdir}
|
|
install -v -D -m 0644 -p -t %{buildroot}%{lua_noarchdir} %{mod_name}.lua
|
|
|
|
%check
|
|
make %{?_make_output_sync} %{?_smp_mflags} check
|
|
make %{?_make_output_sync} %{?_smp_mflags} test
|
|
|
|
%files
|
|
%license MIT-LICENSE.txt
|
|
%doc README.md CHANGELOG.md
|
|
%{lua_noarchdir}/%{mod_name}*
|
|
|
|
%changelog
|