3 Commits

Author SHA256 Message Date
cfd9865aeb Use lua-devel instead of the specific one. 2025-10-14 18:07:51 +02:00
917226db66 Don't do "buildtime" services for openSUSE packages, they are not
permitted.
2025-08-05 17:51:15 +02:00
71828cc8d7 Add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to make the package
building with CMake 4.*.
2025-08-05 17:38:48 +02:00
7 changed files with 29 additions and 7 deletions

1
.gitattributes vendored
View File

@@ -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
View File

@@ -1 +1,8 @@
.osc .osc
_build*
wxlua/
_scmsync.obsinfo
wxlua-*.obscpio
wxlua-*-build/
*.obscpio
.pbuild

View File

@@ -7,8 +7,8 @@
<param name="versionrewrite-pattern">v(.*)</param> <param name="versionrewrite-pattern">v(.*)</param>
<param name="changesgenerate">enable</param> <param name="changesgenerate">enable</param>
</service> </service>
<service name="tar" mode="buildtime"/> <service name="tar" mode="manual"/>
<service name="recompress" mode="buildtime"> <service name="recompress" mode="manual">
<param name="compression">xz</param> <param name="compression">xz</param>
<param name="file">*.tar</param> <param name="file">*.tar</param>
</service> </service>

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:823f4056b3c744ca6d73dfd8eeda1a2feba5e96f4210d5076f7c292825d07402
size 21639693

BIN
wxlua-3.1.0.0+42.tar.xz LFS Normal file

Binary file not shown.

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Tue Oct 14 16:07:48 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
- Use lua-devel instead of the specific one.
-------------------------------------------------------------------
Tue Aug 5 15:37:22 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
- Add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to make the package
building with CMake 4.*.
- Don't do "buildtime" services for openSUSE packages, they are
not permitted.
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Apr 12 11:40:34 UTC 2023 - Callum Farmer <gmbr3@opensuse.org> Wed Apr 12 11:40:34 UTC 2023 - Callum Farmer <gmbr3@opensuse.org>

View File

@@ -34,7 +34,7 @@ BuildRequires: desktop-file-utils
BuildRequires: doxygen BuildRequires: doxygen
BuildRequires: gcc-c++ BuildRequires: gcc-c++
BuildRequires: hicolor-icon-theme BuildRequires: hicolor-icon-theme
BuildRequires: lua54-devel BuildRequires: lua-devel
BuildRequires: ncurses-devel BuildRequires: ncurses-devel
BuildRequires: pkgconfig BuildRequires: pkgconfig
BuildRequires: readline-devel BuildRequires: readline-devel
@@ -134,7 +134,8 @@ cmake .. \
-DwxLuaBind_COMPONENTS="%{binds}" \ -DwxLuaBind_COMPONENTS="%{binds}" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=%{_prefix} \ -DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DCMAKE_SKIP_RPATH=TRUE -DCMAKE_SKIP_RPATH=TRUE \
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
pushd modules/luamodule pushd modules/luamodule
make %{?_smp_mflags} make %{?_smp_mflags}