forked from pool/lua-say
Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
|
dcd221789c
|
|||
|
013dc7ab80
|
|||
|
9d7a52add9
|
|||
|
0c9b9543e7
|
|||
|
fc1d696b1e
|
|||
|
67ea772b89
|
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -21,3 +21,4 @@
|
|||||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.changes merge=merge-changes
|
||||||
|
|||||||
7
.gitignore
vendored
7
.gitignore
vendored
@@ -1 +1,8 @@
|
|||||||
|
.assets/
|
||||||
|
*.obscpio
|
||||||
|
*.osc
|
||||||
.osc
|
.osc
|
||||||
|
.pbuild
|
||||||
|
_scmsync.obsinfo
|
||||||
|
_build*
|
||||||
|
_build.*
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
<multibuild>
|
<multibuild>
|
||||||
<package>lua51</package>
|
<package>luajit</package>
|
||||||
<package>lua53</package>
|
<package>lua53</package>
|
||||||
<package>lua54</package>
|
<package>lua54</package>
|
||||||
|
<package>test</package>
|
||||||
</multibuild>
|
</multibuild>
|
||||||
|
|||||||
@@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 27 23:20:04 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
|
||||||
|
|
||||||
|
- Split the building to separate `test` phase to avoid cycle with
|
||||||
|
busted.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 24 14:50:55 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
|
||||||
|
|
||||||
|
- Switch off building lua51 build of the package.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 20 19:57:08 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
|
||||||
|
|
||||||
|
- Add luajit version to _multibuild
|
||||||
|
- Rewrite to use %luarocks_{build,install}
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 11 22:56:55 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
|
||||||
|
|
||||||
|
- Update to 1.4.1:
|
||||||
|
- Fix argcount n if too low.
|
||||||
|
- Make say nil-safe
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 16 18:20:47 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
Thu Mar 16 18:20:47 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
|||||||
42
lua-say.spec
42
lua-say.spec
@@ -15,18 +15,25 @@
|
|||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# The luarocks_install macro is replaced by the install-rock.sh script
|
||||||
|
|
||||||
%define flavor @BUILD_FLAVOR@
|
%define flavor @BUILD_FLAVOR@
|
||||||
|
%if "%{flavor}" == "test"
|
||||||
|
%define flavor lua54
|
||||||
|
%bcond_without test
|
||||||
|
%else
|
||||||
|
%bcond_with test
|
||||||
|
%endif
|
||||||
%define mod_name say
|
%define mod_name say
|
||||||
%define upversion 1.3-1
|
Version: 1.4.1
|
||||||
Version: 1.31
|
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Lua string hashing library, useful for internationalization
|
Summary: Lua string hashing library, useful for internationalization
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Libraries/Other
|
Group: Development/Libraries/Other
|
||||||
URL: https://github.com/lunarmodules/say
|
URL: https://github.com/lunarmodules/say
|
||||||
Source: https://github.com/lunarmodules/say/archive/v%{upversion}.tar.gz#/%{mod_name}-%{upversion}.tar.gz
|
Source: https://github.com/lunarmodules/say/archive/v%{version}.tar.gz#/%{mod_name}-%{version}.tar.gz
|
||||||
BuildRequires: %{flavor}-devel
|
BuildRequires: %{flavor}-devel
|
||||||
|
BuildRequires: %{flavor}-luarocks
|
||||||
BuildRequires: lua-macros
|
BuildRequires: lua-macros
|
||||||
Requires: %{flavor}
|
Requires: %{flavor}
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@@ -35,23 +42,42 @@ BuildArch: noarch
|
|||||||
Name: lua-say
|
Name: lua-say
|
||||||
ExclusiveArch: do_not_build
|
ExclusiveArch: do_not_build
|
||||||
%else
|
%else
|
||||||
|
%if %{with test}
|
||||||
|
Name: %{flavor}-say-test
|
||||||
|
%else
|
||||||
Name: %{flavor}-say
|
Name: %{flavor}-say
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
|
%if %{with test}
|
||||||
|
BuildRequires: %{flavor}-say
|
||||||
|
BuildRequires: %{flavor}-busted
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Useful for internationalization.
|
Useful for internationalization.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{mod_name}-%{upversion}
|
%autosetup -p1 -n %{mod_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
/bin/true
|
%luarocks_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
install -v -D -m 0644 -p -t %{buildroot}%{lua_noarchdir}/say src/init.lua
|
%if %{without test}
|
||||||
|
%luarocks_install ./%{mod_name}-*.rock
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%check
|
||||||
|
%if %{with test}
|
||||||
|
busted
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{without test}
|
||||||
%files
|
%files
|
||||||
%dir %{lua_noarchdir}/say
|
%license LICENSE
|
||||||
%{lua_noarchdir}/say*
|
# Nothing useful in __rocktree/
|
||||||
|
%doc README.md CONTRIBUTING.md
|
||||||
|
%{lua_noarchdir}/say
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
BIN
say-1.3-1.tar.gz
LFS
BIN
say-1.3-1.tar.gz
LFS
Binary file not shown.
BIN
say-1.4.1.tar.gz
LFS
Normal file
BIN
say-1.4.1.tar.gz
LFS
Normal file
Binary file not shown.
Reference in New Issue
Block a user