guibuilder_pel7x64builder0
6 years ago
3 changed files with 564 additions and 0 deletions
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<application> |
||||
<id type="desktop">nextcloud.desktop</id> |
||||
<licence>CC0</licence> |
||||
<name>Nextcloud Desktop Client</name> |
||||
<summary>The Nextcloud desktop client, lets you sync directly to your Nextcloud server</summary> |
||||
<description> |
||||
<p> |
||||
Nextcloud-client enables you to connect to your private Nextcloud Server. With it you can create folders in your home directory, and keep the contents of those folders synced with your Nextcloud server. Simply copy a file into the directory and the Nextcloud Client does the rest. |
||||
</p> |
||||
</description> |
||||
<screenshots> |
||||
<screenshot type="default" width="713" height="501">https://comzeradd.fedorapeople.org/screenshots/owncloud1.jpg</screenshot> |
||||
</screenshots> |
||||
<url type="homepage">https://nextcloud.org/</url> |
||||
</application> |
@ -0,0 +1,302 @@
@@ -0,0 +1,302 @@
|
||||
%global _hardened_build 1 |
||||
|
||||
Name: nextcloud-client |
||||
Version: 2.5.1 |
||||
Release: 1%{?dist} |
||||
Summary: The Nextcloud Client |
||||
|
||||
# -libs are LGPLv2+, rest GPLv2 |
||||
License: LGPLv2+ and GPLv2 |
||||
Url: https://nextcloud.com/install/#install-clients |
||||
Source0: https://github.com/nextcloud/desktop/archive/desktop-%{version}.tar.gz |
||||
Source1: nextcloud.appdata.xml |
||||
# The patch does 3 things: |
||||
# - Depends on system lib for QtSingleApplication and QtLockedFile |
||||
# - Remove the extraneous namespace when calling QtSingleApplication |
||||
# - Fix a mismatch in the QtSingleApplication::messageReceived signal and the |
||||
# Application::slotParseMessage slot |
||||
# These fix are needed because the system wide QtSingleApplication is slightly |
||||
# different from the bundled one. |
||||
#Patch0: %%{name}-%%{version}-syslibs.patch |
||||
## patch 1 solves https://bugzilla.redhat.com/show_bug.cgi?id=1409252 |
||||
Patch1: %{name}-icon.patch |
||||
|
||||
BuildRequires: check |
||||
BuildRequires: cmake |
||||
BuildRequires: desktop-file-utils |
||||
BuildRequires: doxygen |
||||
BuildRequires: pkgconfig(gio-2.0) |
||||
BuildRequires: libappstream-glib |
||||
BuildRequires: neon-devel |
||||
BuildRequires: openssl-devel |
||||
BuildRequires: python2-sphinx |
||||
BuildRequires: qtlockedfile-qt5-devel |
||||
BuildRequires: qtkeychain-qt5-devel >= 0.7.0 |
||||
BuildRequires: qtsingleapplication-qt5-devel |
||||
BuildRequires: qt5-qtbase |
||||
BuildRequires: qt5-qtbase-devel |
||||
BuildRequires: qt5-qtbase-gui |
||||
BuildRequires: qt5-qtwebkit-devel |
||||
BuildRequires: qt5-qtxmlpatterns-devel |
||||
BuildRequires: qt5-qttools qt5-qttools-devel |
||||
BuildRequires: qt5-qtwebengine-devel |
||||
BuildRequires: qt5-qtsvg-devel |
||||
BuildRequires: extra-cmake-modules |
||||
# Plasma 5 Dolphin integration |
||||
%if 0%{?fedora} >= 24 || 0%{?rhel} > 7 |
||||
BuildRequires: kf5-kio-devel |
||||
BuildRequires: kf5-kcoreaddons-devel |
||||
BuildRequires: kf5-rpm-macros |
||||
%endif |
||||
BuildRequires: sqlite-devel |
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release} |
||||
|
||||
Provides: mirall = %{version}-%{release} |
||||
Obsoletes: mirall < 1.8.0 |
||||
|
||||
# Read https://bugzilla.redhat.com/show_bug.cgi?id=1651261 |
||||
ExcludeArch: ppc64 ppc64le s390x |
||||
|
||||
%description |
||||
Nextcloud-client enables you to connect to your private Nextcloud Server. |
||||
With it you can create folders in your home directory, and keep the contents |
||||
of those folders synced with your Nextcloud server. Simply copy a file into |
||||
the directory and the Nextcloud Client does the rest. |
||||
|
||||
|
||||
%package libs |
||||
Summary: Common files for nextcloud-client |
||||
License: LGPLv2+ |
||||
Provides: mirall-common = %{version}-%{release} |
||||
Obsoletes: mirall-common < 1.8.0 |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
|
||||
%description libs |
||||
Provides common files for nextcloud-client such as the |
||||
configuration file that determines the excluded files in a sync. |
||||
|
||||
|
||||
%package devel |
||||
Summary: Development files for nextcloud-client |
||||
License: LGPLv2+ |
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release} |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
Provides: %{name}-static = %{version}-%{release} |
||||
Provides: mirall-devel = %{version}-%{release} |
||||
Obsoletes: mirall-devel < 1.8.0 |
||||
|
||||
%description devel |
||||
Development headers for use of the nextcloud-client library |
||||
|
||||
%package nautilus |
||||
Summary: nextcloud client nautilus extension |
||||
Requires: nautilus |
||||
Requires: nautilus-python |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
Provides: mirall-nautilus = %{version}-%{release} |
||||
Obsoletes: mirall-nautilus < 1.8.0 |
||||
|
||||
|
||||
%description nautilus |
||||
The nextcloud desktop client nautilus extension. |
||||
|
||||
%package nemo |
||||
Summary: Nemo overlay icons |
||||
Requires: nemo |
||||
Requires: nemo-python |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
|
||||
%description nemo |
||||
This package provides overlay icons to visualize the sync state |
||||
in the nemo file manager. |
||||
|
||||
# Only Fedora has Mate, so there is no need for Caja extension on EPEL |
||||
%if 0%{?fedora} |
||||
%package caja |
||||
Summary: Caja overlay icons |
||||
Requires: caja |
||||
Requires: python-caja |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
|
||||
%description caja |
||||
This package provides overlay icons to visualize the sync state |
||||
in the caja file manager. |
||||
%endif |
||||
|
||||
%if 0%{?fedora} >= 24 || 0%{?rhel} > 7 |
||||
%package dolphin |
||||
Summary: Dolphin overlay icons |
||||
Requires: dolphin |
||||
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||
|
||||
%description dolphin |
||||
The nextcloud desktop client dolphin extension. |
||||
%endif |
||||
|
||||
%prep |
||||
%setup -q -n desktop-%{version} |
||||
#%%patch0 -p1 |
||||
#rm -rf src/3rdparty/qtlockedfile src/3rdparty/qtsingleapplication |
||||
|
||||
|
||||
%build |
||||
mkdir build |
||||
pushd build |
||||
#%cmake_kf5 .. -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed" |
||||
%cmake3 .. -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed" |
||||
make %{?_smp_mflags} |
||||
popd |
||||
|
||||
|
||||
%install |
||||
pushd build |
||||
make install DESTDIR=%{buildroot} |
||||
popd |
||||
%find_lang client --with-qt |
||||
mkdir -p %{buildroot}%{_datadir}/appdata/ |
||||
install -m 644 %{SOURCE1} %{buildroot}%{_datadir}/appdata/nextcloud.appdata.xml |
||||
|
||||
|
||||
# for distros that do not have KDE Plasma 5 |
||||
%if 0%{?fedora} < 24 && 0%{?rhel} <= 7 |
||||
rm -f %{buildroot}%{_libdir}/libnextclouddolphinpluginhelper.so |
||||
rm -f %{buildroot}%{_kf5_plugindir}/overlayicon/nextclouddolphinoverlayplugin.so |
||||
rm -f %{buildroot}%{_qt5_plugindir}/nextclouddolphinactionplugin.so |
||||
rm -f %{buildroot}%{_kf5_datadir}/kservices5/nextclouddolphinactionplugin.desktop |
||||
%endif |
||||
|
||||
|
||||
# Only Fedora has Mate, so there is no need for Caja extension on EPEL |
||||
%if 0%{?rhel} |
||||
rm -rf %{buildroot}%{_datadir}/caja-python/ |
||||
%endif |
||||
|
||||
|
||||
%check |
||||
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/nextcloud.appdata.xml |
||||
|
||||
|
||||
%post |
||||
touch --no-create %{_datadir}/icons/hicolor &> /dev/null || : |
||||
|
||||
%posttrans |
||||
gtk-update-icon-cache -f %{_datadir}/icons/hicolor &>/dev/null || : |
||||
|
||||
%postun |
||||
if [ $1 -eq 0 ] ; then |
||||
touch --no-create %{_datadir}/icons/hicolor &> /dev/null |
||||
gtk-update-icon-cache -f %{_datadir}/icons/hicolor &> /dev/null || : |
||||
fi |
||||
|
||||
%post libs -p /sbin/ldconfig |
||||
%postun libs -p /sbin/ldconfig |
||||
|
||||
%if 0%{?fedora} >= 24 || 0%{?rhel} > 7 |
||||
%post dolphin -p /sbin/ldconfig |
||||
%postun dolphin -p /sbin/ldconfig |
||||
%endif |
||||
|
||||
%files -f client.lang |
||||
%{_bindir}/nextcloud |
||||
%{_bindir}/nextcloudcmd |
||||
%{_datadir}/applications/nextcloud.desktop |
||||
%{_datadir}/icons/hicolor/*/apps/* |
||||
%{_datadir}/appdata/nextcloud.appdata.xml |
||||
|
||||
%files libs |
||||
%{_libdir}/libnextcloudsync.so.0 |
||||
%{_libdir}/libnextcloudsync.so.%{version} |
||||
%{_libdir}/nextcloud/libocsync.so.* |
||||
%doc README.md |
||||
%config %{_sysconfdir}/Nextcloud/sync-exclude.lst |
||||
%dir %{_sysconfdir}/Nextcloud |
||||
|
||||
%files devel |
||||
%{_includedir}/nextcloudsync/ |
||||
%{_libdir}/libnextcloudsync.so |
||||
%{_libdir}/nextcloud/libocsync.so |
||||
|
||||
%files nautilus |
||||
%{_datadir}/nautilus-python/extensions/* |
||||
|
||||
%files nemo |
||||
%{_datadir}/nemo-python/extensions/* |
||||
|
||||
# Only Fedora has Mate, so there is no need for Caja extension on EPEL |
||||
%if 0%{?fedora} |
||||
%files caja |
||||
%{_datadir}/caja-python/extensions/* |
||||
%endif |
||||
|
||||
%if 0%{?fedora} >= 24 || 0%{?rhel} > 7 |
||||
%files dolphin |
||||
%{_libdir}/libnextclouddolphinpluginhelper.so |
||||
%{_kf5_plugindir}/overlayicon/nextclouddolphinoverlayplugin.so |
||||
%{_qt5_plugindir}/nextclouddolphinactionplugin.so |
||||
%{_kf5_datadir}/kservices5/nextclouddolphinactionplugin.desktop |
||||
%endif |
||||
|
||||
%changelog |
||||
* Wed Jan 09 2019 Germano Massullo <germano.massullo@cern.ch> - 2.5.1-1 |
||||
- 2.5.1 release |
||||
|
||||
* Mon Nov 19 2018 Germano Massullo <germano@germanomassullo.org> - 2.5.0-2 |
||||
- added ExcludeArch: ppc64, ppc64le, s390. Read https://bugzilla.redhat.com/show_bug.cgi?id=1651261 |
||||
|
||||
* Thu Nov 15 2018 Germano Massullo <germano@germanomassullo.org> - 2.5.0-1 |
||||
- 2.5.0 release |
||||
|
||||
* Wed Aug 15 2018 Germano Massullo <germano.massullo@gmail.com> - 2.5.0-0.1 |
||||
- 2.5.0 beta 1 |
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
||||
|
||||
* Tue Feb 13 2018 Germano Massullo <germano.massullo@gmail.com> - 2.4.0-1 |
||||
- 2.4.0 release |
||||
- Updated syslibs patch, thanks to Robert-André Mauchin |
||||
- Added comment to syslibs patch, thanks to Robert-André Mauchin |
||||
- updated nextcloud client theming to 2.3.3 |
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||
|
||||
* Mon Sep 18 2017 Nick Bebout <nb@fedoraproject.org> - 2.3.3-2 |
||||
- Change to BR python2-sphinx instead of python-sphinx |
||||
|
||||
* Mon Sep 11 2017 Nick Bebout <nb@fedoraproject.org> - 2.3.3-1 |
||||
- update to 2.3.3 |
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.2-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild |
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.2-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||
|
||||
* Sun Jun 04 2017 Germano Massullo <germano.massullo@gmail.com> - 2.3.2-2 |
||||
- added macros to build Caja subpackage only in Fedora, not EPEL (Mate is Fedora only) |
||||
- added macro to build Dolphin (Plasma 5) subpackage only in Fedora >= 24 && EPEL > 7 (EPEL7 ships KDE 4) |
||||
|
||||
* Sat Jun 03 2017 Germano Massullo <germano.massullo@gmail.com> - 2.3.2-1 |
||||
- Removed no longer necessary OpenSSL patch |
||||
- 2.3.2 release |
||||
- Remove caja extension hack. Included in upstream |
||||
|
||||
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.4-10 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild |
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.4-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||
|
||||
* Wed Jan 11 2017 Kalev Lember <klember@redhat.com> - 2.2.4-8 |
||||
- Fix appdata file name to match with desktop file name |
||||
* Mon Jan 02 2017 Claudio Rodrigo Pereyra Diaz <elsupergomez@fedoraproject.org> - 2.2.4-7 |
||||
- Add caja extension |
||||
* Mon Jan 02 2017 Timotheus Pokorra <timotheus.pokorra@solidcharity.com> - 2.2.4-6 |
||||
- Fix the desktop icon (#1409252) |
||||
* Thu Dec 08 2016 Timotheus Pokorra <timotheus.pokorra@solidcharity.com> - 2.2.4-5 |
||||
- Epel7: drop dolphin files since they are not included in build for Epel7 |
||||
* Wed Nov 23 2016 Nick Bebout <nb@fedoraproject.org> - 2.2.4-4 |
||||
- Update for review |
||||
* Wed Nov 02 2016 Germano Massullo <germano.massullo@gmail.com> 2.2.4-3 |
||||
- First release |
Loading…
Reference in new issue