From e901a29faef9133f235ef64a35e79abeba4a9baf Mon Sep 17 00:00:00 2001 From: Pi-Cla <> Date: Sep 17 2022 18:57:40 +0000 Subject: Update lua-testmore to version 0.3.6+git2 / rev 1 via SR 1004029 https://build.opensuse.org/request/show/1004029 by user Pi-Cla + dimstar_suse New package --- diff --git a/.files b/.files new file mode 100644 index 0000000..3e2026d Binary files /dev/null and b/.files differ diff --git a/.meta b/.meta new file mode 100644 index 0000000..47bf3b5 --- /dev/null +++ b/.meta @@ -0,0 +1,12 @@ + + A Lua port of the Perl Test::More unit testing framework + lua-TestMore is a port of the Perl5 module Test::More. It uses the +Test Anything Protocol as output, that allows a compatibility with +the Perl QA ecosystem. It's an extensible framework. +See lua-TestAssertion an extension which provides many Lua friendly +assertions. It allows a simple and efficient way to write tests +(without OO style). Some tests could be marked as TODO or skipped. +Errors could be fully checked with error_like(). + + https://framagit.org/fperrad/lua-TestMore + diff --git a/.rev b/.rev new file mode 100644 index 0000000..fa8cc1f --- /dev/null +++ b/.rev @@ -0,0 +1,10 @@ + + + 953b1f8c23ef26b5155ad7ae38ead405 + 0.3.6+git2 + + dimstar_suse + New package + 1004029 + + diff --git a/.servicemark b/.servicemark new file mode 100644 index 0000000..d93a081 --- /dev/null +++ b/.servicemark @@ -0,0 +1 @@ +1de7b55b36b000d812ad9b72e4fe35a3 diff --git a/_multibuild b/_multibuild new file mode 100644 index 0000000..d13a744 --- /dev/null +++ b/_multibuild @@ -0,0 +1,5 @@ + +lua51 +lua53 +lua54 + diff --git a/_service b/_service new file mode 100644 index 0000000..ca951c1 --- /dev/null +++ b/_service @@ -0,0 +1,16 @@ + + + https://framagit.org/fperrad/lua-TestMore.git + @PARENT_TAG@+git@TAG_OFFSET@ + git + e441547009f891a259c6324ef50d9ed9fee39538 + (\d+.\d+.\d+) + \1 + + + + *.tar + xz + + + diff --git a/lua-TestMore-0.3.6+git2.tar.xz b/lua-TestMore-0.3.6+git2.tar.xz new file mode 120000 index 0000000..a1b92e8 --- /dev/null +++ b/lua-TestMore-0.3.6+git2.tar.xz @@ -0,0 +1 @@ +/ipfs/bafkreif447ydaabyht5oobhqugajm45woofu5mvxyrijrffmr5efxrg3py \ No newline at end of file diff --git a/lua-testmore.changes b/lua-testmore.changes new file mode 100644 index 0000000..541c546 --- /dev/null +++ b/lua-testmore.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Aug 25 04:21:54 UTC 2022 - Gordon Leung + +- initial commit diff --git a/lua-testmore.spec b/lua-testmore.spec new file mode 100644 index 0000000..5d771a6 --- /dev/null +++ b/lua-testmore.spec @@ -0,0 +1,64 @@ +# +# spec file +# +# 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 testmore +Version: 0.3.6+git2 +Release: 0 +Summary: A Lua port of the Perl Test::More unit testing framework +License: MIT +Group: Development/Languages/Other +URL: https://framagit.org/fperrad/lua-TestMore +Source: lua-TestMore-%{version}.tar.xz +BuildRequires: %{flavor}-devel +Requires: %{flavor} +%lua_provides +%if "%{flavor}" == "" +Name: lua-%{mod_name} +ExclusiveArch: do_not_build +%else +Name: %{flavor}-%{mod_name} +%endif +BuildArch: noarch + +%description +lua-TestMore is a port of the Perl5 module Test::More. It uses the +Test Anything Protocol as output, that allows a compatibility with +the Perl QA ecosystem. It's an extensible framework. +See lua-TestAssertion an extension which provides many Lua friendly +assertions. It allows a simple and efficient way to write tests +(without OO style). Some tests could be marked as TODO or skipped. +Errors could be fully checked with error_like(). + +%prep +%autosetup -n lua-TestMore-%{version} + +%build + +%install +%make_install LUAVER="%{lua_version}" PREFIX=/usr + +%check +make check + +%files +%license COPYRIGHT +%doc README.md CHANGES +%{lua_noarchdir} + +%changelog