SHA256
10
0
forked from pool/wxlua

2 Commits

Author SHA256 Message Date
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
6 changed files with 21 additions and 6 deletions

6
.gitignore vendored
View File

@@ -1 +1,7 @@
.osc
_buildconfig-*
_buildinfo-*.xml
wxlua/
_scmsync.obsinfo
wxlua-*.obscpio
wxlua-*-build/

View File

@@ -7,8 +7,8 @@
<param name="versionrewrite-pattern">v(.*)</param>
<param name="changesgenerate">enable</param>
</service>
<service name="tar" mode="buildtime"/>
<service name="recompress" mode="buildtime">
<service name="tar" mode="manual"/>
<service name="recompress" mode="manual">
<param name="compression">xz</param>
<param name="file">*.tar</param>
</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 (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,11 @@
-------------------------------------------------------------------
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>

View File

@@ -134,7 +134,8 @@ cmake .. \
-DwxLuaBind_COMPONENTS="%{binds}" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DCMAKE_SKIP_RPATH=TRUE
-DCMAKE_SKIP_RPATH=TRUE \
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
pushd modules/luamodule
make %{?_smp_mflags}