Compare commits
No commits in common. "rawhide" and "f43" have entirely different histories.
3 changed files with 10 additions and 33 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -41,7 +41,3 @@
|
|||
/wabt-testsuite-f3f0486.tar.gz
|
||||
/wabt-1.0.37.tar.gz
|
||||
/wabt-testsuite-cbc54d7.tar.gz
|
||||
/wabt-1.0.39.tar.gz
|
||||
/wabt-testsuite-d76759e.tar.gz
|
||||
/wabt-1.0.40.tar.gz
|
||||
/wabt-1.0.41.tar.gz
|
||||
|
|
|
|||
4
sources
4
sources
|
|
@ -1,3 +1,3 @@
|
|||
SHA512 (wabt-1.0.41.tar.gz) = afa21608c20e42b009ef4685b04a42bdaf087ffec7e5e6bc2d91a8ffd801cb54f5c67a06ad2ec4398dd190543146c79d41a444b0aa21112685d81fd192d8ffd5
|
||||
SHA512 (wabt-testsuite-d76759e.tar.gz) = fa5a6315098d2764e7170feeefaa8161ea5577769b98f4a4301e594e555dccb59395212a33585970509912ae08bb40478119e989894e60e0103acd52378837ea
|
||||
SHA512 (wabt-1.0.37.tar.gz) = 446622858458553f56187cf17e9435168837ac093f81f81852f12b0aeb7e6e542c5ac1fbce1dde1265107add52cc3f2cacf0c2cf25154d168080b8bece15e21b
|
||||
SHA512 (wabt-testsuite-cbc54d7.tar.gz) = ed1761f69c03d9b69fc1e4e6bc25a5b69e4f15a19ba26bc110851e9a68e71cd718e7cf2c76cd8dcf82f0f5321102654b450aadb39cd3cb37a3cdc2669d6f6e75
|
||||
SHA512 (wabt-wasm-c-api-b6dd1fb.tar.gz) = 5d3eec2184f8b66e2358b85f416afaea172f24155a61c9412a9d9374aa50347cf0ebe940f35727bc8c0ffe287033b967cc97a857feab6aa9e5098458e72b4fd0
|
||||
|
|
|
|||
35
wabt.spec
35
wabt.spec
|
|
@ -1,16 +1,16 @@
|
|||
%undefine __cmake_in_source_build
|
||||
%bcond_without check
|
||||
%global commit ad75c5edcdff96d73c245b57fbc07607aaca9f95
|
||||
%global commit 3e826ecde1adfba5f88d10d361131405637e65a3
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ts_commit d76759e746f3564a03f6106ae19679742f2a1831
|
||||
%global ts_commit cbc54d77065e5202bcb69e0d1c53ceccc29a7984
|
||||
%global ts_shortcommit %(c=%{ts_commit}; echo ${c:0:7})
|
||||
%global wc_commit b6dd1fb658a282c64b029867845bc50ae59e1497
|
||||
%global wc_shortcommit %(c=%{wc_commit}; echo ${c:0:7})
|
||||
|
||||
Summary: The WebAssembly Binary Toolkit
|
||||
Name: wabt
|
||||
Version: 1.0.41
|
||||
Release: 3%{?dist}
|
||||
Version: 1.0.37
|
||||
Release: 2%{?dist}
|
||||
URL: https://github.com/WebAssembly/wabt
|
||||
Source0: https://github.com/WebAssembly/wabt/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
Source1: https://github.com/WebAssembly/testsuite/archive/%{ts_commit}/%{name}-testsuite-%{ts_shortcommit}.tar.gz
|
||||
|
|
@ -18,7 +18,7 @@ Source2: https://github.com/WebAssembly/wasm-c-api/archive/%{wc_commit}/%{name}-
|
|||
# increase test timeout to avoid failures
|
||||
Patch0: %{name}-test-timeout.patch
|
||||
License: Apache-2.0
|
||||
BuildRequires: cmake
|
||||
BuildRequires: cmake3
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: openssl-devel
|
||||
%if %{with check}
|
||||
|
|
@ -85,14 +85,14 @@ popd
|
|||
%endif
|
||||
|
||||
%build
|
||||
%cmake -DUSE_SYSTEM_GTEST=ON \
|
||||
%cmake3 -DUSE_SYSTEM_GTEST=ON \
|
||||
%ifarch i686
|
||||
-DWASM2C_CFLAGS="-msse2 -mfpmath=sse"
|
||||
%endif
|
||||
%cmake_build
|
||||
%cmake3_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
%cmake3_install
|
||||
|
||||
%if %{with check}
|
||||
%check
|
||||
|
|
@ -137,25 +137,6 @@ cmake --build redhat-linux-build --verbose --target run-tests %{?_smp_mflags}
|
|||
%{_mandir}/man1/wat2wasm.1*
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.41-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jun 13 2026 Yaakov Selkowitz <yselkowi@redhat.com> - 1.0.41-2
|
||||
- Rebuilt for openssl 4.0
|
||||
|
||||
* Thu May 21 2026 Dominik Mierzejewski <dominik@greysector.net> - 1.0.41-1
|
||||
- update to 1.0.41 (resolves rhbz#2467788)
|
||||
|
||||
* Thu Apr 16 2026 Dominik Mierzejewski <dominik@greysector.net> 1.0.40-1
|
||||
- update to 1.0.40 (resolves rhbz#2446432)
|
||||
- stop using obsolete cmake3 macros
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.39-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Mon Nov 17 2025 Dominik Mierzejewski <dominik@greysector.net> 1.0.39-1
|
||||
- update to 1.0.39 (resolves rhbz#2401391)
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.37-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue