Update libwpe and wpebackend-fdo to 1.12.0 (#3032)
This commit is contained in:
Родитель
3af618dbe3
Коммит
3c7d331845
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"Signatures": {
|
||||
"libwpe-1.6.0.tar.xz": "3587c6b8a807f4bb76b268ba74ca82c6b395b90235db41ad8252224456193c90"
|
||||
"libwpe-1.12.0.tar.xz": "e8eeca228a6b4c36294cfb63f7d3ba9ada47a430904a5a973b3c99c96a44c18c"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,27 +1,25 @@
|
|||
Summary: General-purpose library for the WPE-flavored port of WebKit
|
||||
Name: libwpe
|
||||
Version: 1.12.0
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
Vendor: Microsoft Corporation
|
||||
Distribution: Mariner
|
||||
Name: libwpe
|
||||
Version: 1.6.0
|
||||
Release: 2%{?dist}
|
||||
Summary: General-purpose library for the WPE-flavored port of WebKit
|
||||
License: BSD
|
||||
URL: https://github.com/WebPlatformForEmbedded/%{name}
|
||||
Source0: https://github.com/WebPlatformForEmbedded/libwpe/releases/download/%{version}/%{name}-%{version}.tar.xz
|
||||
|
||||
BuildRequires: cmake
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: mesa-libEGL-devel
|
||||
BuildRequires: libxkbcommon-devel
|
||||
|
||||
Provides: wpebackend = %{version}-%{release}
|
||||
Obsoletes: wpebackend < 0.2.0-2
|
||||
BuildRequires: mesa-libEGL-devel
|
||||
Provides: wpebackend = %{version}-%{release}
|
||||
Obsoletes: wpebackend < 0.2.0-2
|
||||
|
||||
%description
|
||||
General-purpose library developed for the WPE-flavored port of WebKit
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries, build data, and header
|
||||
|
@ -55,6 +53,10 @@ popd
|
|||
%{_libdir}/pkgconfig/wpe-1.0.pc
|
||||
|
||||
%changelog
|
||||
* Sat May 14 2022 Sriram Nambakam <snambakam@microsoft.com> - 1.12.0-1
|
||||
- Update to 1.12.0
|
||||
- License verified
|
||||
|
||||
* Fri Oct 15 2021 Pawel Winogrodzki <pawelwi@microsoft.com> - 1.6.0-2
|
||||
- Initial CBL-Mariner import from Fedora 32 (license: MIT).
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"Signatures": {
|
||||
"wpebackend-fdo-1.6.0.tar.xz": "7f5bd7b9d8f97b1655f4dcd39fad92719d0fb3985b251da5802df13aaa09f567"
|
||||
"wpebackend-fdo-1.12.0.tar.xz": "6239c9c15523410798d66315de6b491712ab30009ba180f3e0dd076d9b0074ac"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,47 +1,46 @@
|
|||
Summary: A WPE backend designed for Linux desktop systems
|
||||
Name: wpebackend-fdo
|
||||
Version: 1.12.0
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
Vendor: Microsoft Corporation
|
||||
Distribution: Mariner
|
||||
Name: wpebackend-fdo
|
||||
Version: 1.6.0
|
||||
Release: 2%{?dist}
|
||||
Summary: A WPE backend designed for Linux desktop systems
|
||||
|
||||
License: BSD
|
||||
URL: https://github.com/Igalia/%{name}
|
||||
Source0: https://github.com/Igalia/%{name}/archive/%{version}/%{name}-%{version}.tar.xz
|
||||
|
||||
Source0: https://github.com/Igalia/WPEBackend-fdo/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
BuildRequires: cmake
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: mesa-libEGL-devel
|
||||
BuildRequires: libxkbcommon-devel
|
||||
BuildRequires: libwpe-devel
|
||||
BuildRequires: wayland-devel
|
||||
BuildRequires: glib2-devel
|
||||
BuildRequires: libepoxy-devel
|
||||
BuildRequires: libwpe-devel
|
||||
BuildRequires: libxkbcommon-devel
|
||||
BuildRequires: mesa-libEGL-devel
|
||||
BuildRequires: meson
|
||||
BuildRequires: wayland-devel
|
||||
|
||||
%description
|
||||
A WPE backend designed for Linux desktop systems.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries, build data, and header
|
||||
files for developing applications that use %{name}.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{name}-%{version}
|
||||
%autosetup -p1 -n WPEBackend-fdo-%{version}
|
||||
|
||||
%build
|
||||
mkdir -p %{_target_platform}
|
||||
pushd %{_target_platform}
|
||||
%cmake \
|
||||
..
|
||||
meson --prefix=%{_prefix} --buildtype=release .. && \
|
||||
ninja
|
||||
popd
|
||||
|
||||
%make_build -C %{_target_platform}
|
||||
|
||||
%install
|
||||
%make_install -C %{_target_platform}
|
||||
cd %{_target_platform}
|
||||
DESTDIR=%{buildroot}/ ninja install
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
|
@ -55,6 +54,11 @@ popd
|
|||
%{_libdir}/pkgconfig/wpebackend-fdo-1.0.pc
|
||||
|
||||
%changelog
|
||||
* Sat May 14 2022 Sriram Nambakam <snambakam@microsoft.com> - 1.12.0-1
|
||||
- Update to 1.12.0
|
||||
- License verified
|
||||
- Use meson and ninja instead of cmake
|
||||
|
||||
* Fri Oct 15 2021 Pawel Winogrodzki <pawelwi@microsoft.com> - 1.6.0-2
|
||||
- Initial CBL-Mariner import from Fedora 32 (license: MIT).
|
||||
|
||||
|
@ -75,9 +79,9 @@ popd
|
|||
|
||||
* Thu Sep 19 2019 Chris King <bunnyapocalypse@protonmail.com> - 1.4.0-2
|
||||
- Change location of libWPEBackend-fdo.so to allow for WPE backend
|
||||
|
||||
|
||||
* Wed Sep 18 2019 Chris King <bunnyapocalypse@protonmail.com> - 1.4.0-1
|
||||
- new version
|
||||
- New version
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
|
|
@ -10151,8 +10151,8 @@
|
|||
"type": "other",
|
||||
"other": {
|
||||
"name": "libwpe",
|
||||
"version": "1.6.0",
|
||||
"downloadUrl": "https://github.com/WebPlatformForEmbedded/libwpe/releases/download/1.6.0/libwpe-1.6.0.tar.xz"
|
||||
"version": "1.12.0",
|
||||
"downloadUrl": "https://github.com/WebPlatformForEmbedded/libwpe/releases/download/1.12.0/libwpe-1.12.0.tar.xz"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -26337,8 +26337,8 @@
|
|||
"type": "other",
|
||||
"other": {
|
||||
"name": "wpebackend-fdo",
|
||||
"version": "1.6.0",
|
||||
"downloadUrl": "https://github.com/Igalia/wpebackend-fdo/archive/1.6.0/wpebackend-fdo-1.6.0.tar.xz"
|
||||
"version": "1.12.0",
|
||||
"downloadUrl": "https://github.com/Igalia/WPEBackend-fdo/archive/refs/tags/1.12.0.tar.gz"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Загрузка…
Ссылка в новой задаче