RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/xdg-desktop-portal#e909a76b7e0afd4c2b5b9ea7368c39f0d62b6679
This commit is contained in:
parent
d6c4e2d67e
commit
28b699db1a
29
.gitignore
vendored
29
.gitignore
vendored
@ -0,0 +1,29 @@
|
||||
/xdg-desktop-portal-0.1.tar.xz
|
||||
/xdg-desktop-portal-0.2.tar.xz
|
||||
/xdg-desktop-portal-0.3.tar.xz
|
||||
/xdg-desktop-portal-0.4.tar.xz
|
||||
/xdg-desktop-portal-0.5.tar.xz
|
||||
/xdg-desktop-portal-0.6.tar.xz
|
||||
/xdg-desktop-portal-0.8.tar.xz
|
||||
/xdg-desktop-portal-0.9.tar.xz
|
||||
/xdg-desktop-portal-0.10.tar.xz
|
||||
/xdg-desktop-portal-0.11.tar.xz
|
||||
/xdg-desktop-portal-0.99.tar.xz
|
||||
/xdg-desktop-portal-1.0.tar.xz
|
||||
/xdg-desktop-portal-1.0.2.tar.xz
|
||||
/xdg-desktop-portal-1.0.3.tar.xz
|
||||
/xdg-desktop-portal-1.1.1.tar.xz
|
||||
/xdg-desktop-portal-1.2.0.tar.xz
|
||||
/xdg-desktop-portal-1.4.0.tar.xz
|
||||
/xdg-desktop-portal-1.4.1.tar.xz
|
||||
/xdg-desktop-portal-1.4.2.tar.xz
|
||||
/xdg-desktop-portal-1.5.0.tar.xz
|
||||
/xdg-desktop-portal-1.5.1.tar.xz
|
||||
/xdg-desktop-portal-1.5.2.tar.xz
|
||||
/xdg-desktop-portal-1.5.3.tar.xz
|
||||
/xdg-desktop-portal-1.5.4.tar.xz
|
||||
/xdg-desktop-portal-1.6.0.tar.xz
|
||||
/xdg-desktop-portal-1.7.0.tar.xz
|
||||
/xdg-desktop-portal-1.7.1.tar.xz
|
||||
/xdg-desktop-portal-1.7.2.tar.xz
|
||||
/xdg-desktop-portal-1.8.0.tar.xz
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (xdg-desktop-portal-1.8.0.tar.xz) = 6d9760b41447af711d5937279b0031bcc88947e11204351accfcd9e6e19e498e9021675753185f92f7bd40336decc1895968796b1b71508c7caf5f6fc32a51a4
|
237
xdg-desktop-portal.spec
Normal file
237
xdg-desktop-portal.spec
Normal file
@ -0,0 +1,237 @@
|
||||
%global pipewire_version 0.2.90
|
||||
%global geoclue_version 2.5.2
|
||||
%global glib_version 2.63.3
|
||||
%global low_memory_monitor_version 2.0
|
||||
|
||||
Name: xdg-desktop-portal
|
||||
Version: 1.8.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Portal frontend service to flatpak
|
||||
|
||||
License: LGPLv2+
|
||||
URL: https://github.com/flatpak/xdg-desktop-portal/
|
||||
Source0: https://github.com/flatpak/xdg-desktop-portal/releases/download/%{version}/%{name}-%{version}.tar.xz
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: pkgconfig(flatpak)
|
||||
BuildRequires: pkgconfig(fontconfig)
|
||||
BuildRequires: pkgconfig(fuse)
|
||||
BuildRequires: pkgconfig(gio-unix-2.0) >= %{glib_version}
|
||||
BuildRequires: pkgconfig(json-glib-1.0)
|
||||
BuildRequires: pkgconfig(libgeoclue-2.0) >= %{geoclue_version}
|
||||
BuildRequires: pkgconfig(libpipewire-0.3) >= %{pipewire_version}
|
||||
BuildRequires: /usr/bin/xmlto
|
||||
%{?systemd_requires}
|
||||
BuildRequires: systemd
|
||||
|
||||
Requires: dbus
|
||||
# Required version for icon validator.
|
||||
Recommends: flatpak >= 1.2.0
|
||||
Requires: geoclue2 >= %{geoclue_version}
|
||||
Requires: glib2 >= %{glib_version}
|
||||
Recommends: pipewire >= %{pipewire_version}
|
||||
Requires: pipewire-libs >= %{pipewire_version}
|
||||
# Until WebRTC supports PipeWire 0.3 we have to require PipeWire 0.2 to be
|
||||
# preinstalled otherwise the screen and window sharing won't work in Chrome and
|
||||
# Chromium out of the box.
|
||||
Requires: pipewire0.2-libs%{?_isa}
|
||||
# Required for the document portal.
|
||||
Requires: /usr/bin/fusermount
|
||||
# Required for the GMemoryMonitor GIO API
|
||||
Requires: low-memory-monitor >= %{low_memory_monitor_version}
|
||||
|
||||
%description
|
||||
xdg-desktop-portal works by exposing a series of D-Bus interfaces known as
|
||||
portals under a well-known name (org.freedesktop.portal.Desktop) and object
|
||||
path (/org/freedesktop/portal/desktop). The portal interfaces include APIs for
|
||||
file access, opening URIs, printing and others.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The pkg-config file for %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
|
||||
%build
|
||||
%configure --enable-docbook-docs --disable-libportal
|
||||
%make_build
|
||||
|
||||
|
||||
%install
|
||||
%make_install
|
||||
install -dm 755 %{buildroot}/%{_pkgdocdir}
|
||||
install -pm 644 README.md %{buildroot}/%{_pkgdocdir}
|
||||
# This directory is used by implementations such as xdg-desktop-portal-gtk.
|
||||
install -dm 755 %{buildroot}/%{_datadir}/%{name}/portals
|
||||
|
||||
%find_lang %{name}
|
||||
|
||||
|
||||
%post
|
||||
%systemd_user_post %{name}.service
|
||||
%systemd_user_post xdg-document-portal.service
|
||||
%systemd_user_post xdg-permission-store.service
|
||||
|
||||
|
||||
%preun
|
||||
%systemd_user_preun %{name}.service
|
||||
%systemd_user_preun xdg-document-portal.service
|
||||
%systemd_user_preun xdg-permission-store.service
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%doc %{_pkgdocdir}
|
||||
%license COPYING
|
||||
%{_datadir}/dbus-1/interfaces/org.freedesktop.portal.*.xml
|
||||
%{_datadir}/dbus-1/interfaces/org.freedesktop.impl.portal.*.xml
|
||||
%{_datadir}/dbus-1/services/org.freedesktop.portal.Desktop.service
|
||||
%{_datadir}/dbus-1/services/org.freedesktop.portal.Documents.service
|
||||
%{_datadir}/dbus-1/services/org.freedesktop.impl.portal.PermissionStore.service
|
||||
%{_datadir}/%{name}
|
||||
%{_libexecdir}/xdg-desktop-portal
|
||||
%{_libexecdir}/xdg-document-portal
|
||||
%{_libexecdir}/xdg-permission-store
|
||||
%{_userunitdir}/%{name}.service
|
||||
%{_userunitdir}/xdg-document-portal.service
|
||||
%{_userunitdir}/xdg-permission-store.service
|
||||
|
||||
%files devel
|
||||
%{_datadir}/pkgconfig/xdg-desktop-portal.pc
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Sep 14 2020 Kalev Lember <klember@redhat.com> - 1.8.0-1
|
||||
- Update to 1.8.0
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu Jun 25 2020 Tomas Popela <tpopela@redhat.com> - 1.7.2-2
|
||||
- Start to require pipewire0.2-libs so screen sharing works out of the box in Chrome and Chromium.
|
||||
|
||||
* Fri Apr 03 2020 David King <amigadave@amigadave.com> - 1.7.2-1
|
||||
- Update to 1.7.2 (#1820660)
|
||||
|
||||
* Sat Mar 28 2020 Kalev Lember <klember@redhat.com> - 1.7.1-1
|
||||
- Update to 1.7.1
|
||||
|
||||
* Sat Mar 14 2020 David King <amigadave@amigadave.com> - 1.7.0-1
|
||||
- Update to 1.7.0 (#1813534)
|
||||
|
||||
* Tue Mar 10 2020 Kalev Lember <klember@redhat.com> - 1.6.0-4
|
||||
- Backport PipeWire 0.3 support
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jan 03 2020 Bastien Nocera <bnocera@redhat.com> - 1.6.0-2
|
||||
+ xdg-desktop-portal-1.6.0-2
|
||||
- Add requires to implement GMemoryMonitor
|
||||
|
||||
* Fri Dec 20 2019 David King <amigadave@amigadave.com> - 1.6.0-1
|
||||
- Update to 1.6.0
|
||||
|
||||
* Thu Dec 12 2019 David King <amigadave@amigadave.com> - 1.5.4-1
|
||||
- Update to 1.5.4
|
||||
|
||||
* Thu Nov 28 2019 David King <amigadave@amigadave.com> - 1.5.3-1
|
||||
- Update to 1.5.3
|
||||
|
||||
* Tue Oct 29 2019 David King <amigadave@amigadave.com> - 1.5.2-1
|
||||
- Update to 1.5.2 (#1766780)
|
||||
|
||||
* Tue Oct 22 2019 David King <amigadave@amigadave.com> - 1.5.1-1
|
||||
- Update to 1.5.1 (#1714704)
|
||||
|
||||
* Fri Oct 04 2019 David King <amigadave@amigadave.com> - 1.5.0-1
|
||||
- Update to 1.5.0
|
||||
|
||||
* Mon Sep 16 2019 Kalev Lember <klember@redhat.com> - 1.4.2-3
|
||||
- Avoid a hard dep on pipewire daemon
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Tue May 28 2019 Kalev Lember <klember@redhat.com> - 1.4.2-1
|
||||
- Update to 1.4.2
|
||||
|
||||
* Thu Feb 14 2019 David King <amigadave@amigadave.com> - 1.2.0-3
|
||||
- Drop icon validator Requires to Recommends
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jan 26 2019 David King <amigadave@amigadave.com> - 1.2.0-1
|
||||
- Update to 1.2.0 (#1669552)
|
||||
|
||||
* Wed Jan 16 2019 Kalev Lember <klember@redhat.com> - 1.1.1-1
|
||||
- Update to 1.1.1
|
||||
|
||||
* Tue Oct 09 2018 David King <amigadave@amigadave.com> - 1.0.3-1
|
||||
- Update to 1.0.3
|
||||
|
||||
* Mon Sep 03 2018 David King <amigadave@amigadave.com> - 1.0.2-1
|
||||
- Update to 1.0.2
|
||||
|
||||
* Mon Aug 20 2018 David King <amigadave@amigadave.com> - 1.0-1
|
||||
- Update to 1.0
|
||||
|
||||
* Wed Aug 01 2018 Jan Grulich <jgrulich@redhat.com> - 0.99-2
|
||||
- Rebuild PipeWire 0.2.2
|
||||
|
||||
* Tue Jul 24 2018 David King <amigadave@amigadave.com> - 0.99-1
|
||||
- Update to 0.99
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Apr 25 2018 David King <amigadave@amigadave.com> - 0.11-1
|
||||
- Update to 0.11 (#1545225)
|
||||
|
||||
* Wed Feb 14 2018 David King <amigadave@amigadave.com> - 0.10-1
|
||||
- Update to 0.10 (#1545225)
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sun Nov 19 2017 David King <amigadave@amigadave.com> - 0.9-1
|
||||
- Update to 0.9 (#1514774)
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Tue Jun 06 2017 David King <amigadave@amigadave.com> - 0.8-1
|
||||
- Update to 0.8 (#1458969)
|
||||
|
||||
* Fri Mar 31 2017 David King <amigadave@amigadave.com> - 0.6-1
|
||||
- Update to 0.6
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Jan 18 2017 David King <amigadave@amigadave.com> - 0.5-1
|
||||
- Update to 0.5
|
||||
|
||||
* Thu Dec 01 2016 David King <amigadave@amigadave.com> - 0.4-1
|
||||
- Update to 0.4
|
||||
|
||||
* Fri Sep 02 2016 David King <amigadave@amigadave.com> - 0.3-1
|
||||
- Update to 0.3
|
||||
|
||||
* Fri Jul 29 2016 David King <amigadave@amigadave.com> - 0.2-1
|
||||
- Update to 0.2 (#1361575)
|
||||
|
||||
* Tue Jul 12 2016 David King <amigadave@amigadave.com> - 0.1-2
|
||||
- Own the portals directory
|
||||
|
||||
* Mon Jul 11 2016 David King <amigadave@amigadave.com> - 0.1-1
|
||||
- Initial Fedora packaging
|
Loading…
Reference in New Issue
Block a user