2013-10-23 08:34:58 +00:00
|
|
|
|
|
|
|
%global qt_module qtx11extras
|
|
|
|
|
2016-01-21 16:21:23 +00:00
|
|
|
%define docs 1
|
|
|
|
|
2016-03-14 15:19:12 +00:00
|
|
|
#define prerelease
|
2015-06-30 04:34:08 +00:00
|
|
|
|
2013-10-23 08:34:58 +00:00
|
|
|
Summary: Qt5 - X11 support library
|
|
|
|
Name: qt5-%{qt_module}
|
2015-12-10 20:40:23 +00:00
|
|
|
Version: 5.6.0
|
2016-03-14 15:19:12 +00:00
|
|
|
Release: 1%{?prerelease:.%{prerelease}}%{?dist}
|
2013-10-23 08:34:58 +00:00
|
|
|
|
|
|
|
# See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details
|
|
|
|
License: LGPLv2 with exceptions or GPLv3 with exceptions
|
2015-06-30 04:34:08 +00:00
|
|
|
Url: http://www.qt.io
|
2016-03-14 15:19:12 +00:00
|
|
|
Source0: http://download.qt.io/snapshots/qt/5.6/%{version}%{?prerelease:-%{prerelease}}/submodules/%{qt_module}-opensource-src-%{version}%{?prerelease:-%{prerelease}}.tar.xz
|
2013-10-23 08:34:58 +00:00
|
|
|
|
2015-12-29 05:27:21 +00:00
|
|
|
BuildRequires: cmake
|
2013-10-23 08:34:58 +00:00
|
|
|
BuildRequires: qt5-qtbase-devel >= %{version}
|
2015-07-16 17:04:33 +00:00
|
|
|
|
|
|
|
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
|
2013-10-23 08:34:58 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
The X11 Extras module provides features specific to platforms using X11, e.g.
|
|
|
|
Linux and UNIX-like systems including embedded Linux systems that use the X
|
|
|
|
Window System.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: qt5-qtbase-devel%{?_isa}
|
|
|
|
%description devel
|
|
|
|
%{summary}.
|
|
|
|
|
2016-01-21 16:21:23 +00:00
|
|
|
%if 0%{?docs}
|
|
|
|
%package doc
|
|
|
|
Summary: API documentation for %{name}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildRequires: qt5-qdoc
|
|
|
|
BuildRequires: qt5-qhelpgenerator
|
|
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
|
|
%{summary}.
|
|
|
|
%endif
|
|
|
|
|
2013-10-23 08:34:58 +00:00
|
|
|
|
|
|
|
%prep
|
2015-06-30 04:34:08 +00:00
|
|
|
%setup -q -n %{qt_module}-opensource-src-%{version}%{?prerelease:-%{prerelease}}
|
2013-10-23 08:34:58 +00:00
|
|
|
|
|
|
|
%build
|
2014-11-04 01:00:48 +00:00
|
|
|
mkdir %{_target_platform}
|
|
|
|
pushd %{_target_platform}
|
|
|
|
%{qmake_qt5} ..
|
2013-10-23 08:34:58 +00:00
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
2016-01-21 16:21:23 +00:00
|
|
|
|
|
|
|
%if 0%{?docs}
|
|
|
|
make %{?_smp_mflags} docs
|
|
|
|
%endif
|
2014-11-04 01:00:48 +00:00
|
|
|
popd
|
2013-10-23 08:34:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2014-11-04 01:00:48 +00:00
|
|
|
make install INSTALL_ROOT=%{buildroot} -C %{_target_platform}
|
2013-10-23 08:34:58 +00:00
|
|
|
|
2016-01-21 16:21:23 +00:00
|
|
|
%if 0%{?docs}
|
|
|
|
make install_docs INSTALL_ROOT=%{buildroot} -C %{_target_platform}
|
|
|
|
%endif
|
|
|
|
|
2014-05-05 14:48:20 +00:00
|
|
|
## .prl/.la file love
|
|
|
|
# nuke .prl reference(s) to %%buildroot, excessive (.la-like) libs
|
|
|
|
pushd %{buildroot}%{_qt5_libdir}
|
|
|
|
for prl_file in libQt5*.prl ; do
|
|
|
|
sed -i -e "/^QMAKE_PRL_BUILD_DIR/d" ${prl_file}
|
|
|
|
if [ -f "$(basename ${prl_file} .prl).so" ]; then
|
|
|
|
rm -fv "$(basename ${prl_file} .prl).la"
|
|
|
|
sed -i -e "/^QMAKE_PRL_LIBS/d" ${prl_file}
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
|
2013-10-23 08:34:58 +00:00
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
2015-12-29 05:27:21 +00:00
|
|
|
%license LGPL_EXCEPTION.txt LICENSE.LGPL*
|
2013-10-23 08:34:58 +00:00
|
|
|
%{_qt5_libdir}/libQt5X11Extras.so.5*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_qt5_headerdir}/QtX11Extras/
|
|
|
|
%{_qt5_libdir}/libQt5X11Extras.so
|
|
|
|
%{_qt5_libdir}/libQt5X11Extras.prl
|
2014-10-19 20:34:36 +00:00
|
|
|
%dir %{_qt5_libdir}/cmake/Qt5X11Extras/
|
|
|
|
%{_qt5_libdir}/cmake/Qt5X11Extras/Qt5X11ExtrasConfig*.cmake
|
2013-10-23 08:34:58 +00:00
|
|
|
%{_qt5_libdir}/pkgconfig/Qt5X11Extras.pc
|
2013-11-10 20:34:48 +00:00
|
|
|
%{_qt5_archdatadir}/mkspecs/modules/qt_lib_x11extras*.pri
|
2013-10-23 08:34:58 +00:00
|
|
|
|
2016-01-21 16:21:23 +00:00
|
|
|
%if 0%{?docs}
|
|
|
|
%files doc
|
|
|
|
%{_qt5_docdir}/qtx11extras.qch
|
|
|
|
%{_qt5_docdir}/qtx11extras/
|
|
|
|
%endif
|
|
|
|
|
2013-10-23 08:34:58 +00:00
|
|
|
|
|
|
|
%changelog
|
2016-03-14 15:19:12 +00:00
|
|
|
* Mon Mar 14 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-1
|
|
|
|
- 5.6.0 final release
|
|
|
|
|
2016-02-23 15:43:16 +00:00
|
|
|
* Tue Feb 23 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.8.rc
|
|
|
|
- Update to final RC
|
|
|
|
|
2016-02-15 13:14:01 +00:00
|
|
|
* Mon Feb 15 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.7.rc
|
|
|
|
- Integrate rc packages
|
|
|
|
|
2016-02-04 21:48:23 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-0.6.beta
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-21 16:21:23 +00:00
|
|
|
* Thu Jan 21 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.5.beta
|
|
|
|
- -doc subpkg
|
|
|
|
|
2015-12-29 05:27:21 +00:00
|
|
|
* Mon Dec 28 2015 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.4.beta
|
|
|
|
- BR: cmake, update source URL, use %%license
|
|
|
|
|
2015-12-21 08:16:09 +00:00
|
|
|
* Mon Dec 21 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.3
|
|
|
|
- Update to final beta release
|
|
|
|
|
2015-12-10 20:40:23 +00:00
|
|
|
* Thu Dec 10 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.2
|
|
|
|
- Official beta release
|
|
|
|
|
|
|
|
* Tue Nov 03 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.1
|
|
|
|
- Start to implement 5.6.0 beta
|
|
|
|
|
2015-10-15 14:24:17 +00:00
|
|
|
* Thu Oct 15 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.1-2
|
|
|
|
- Update to final release 5.5.1
|
|
|
|
|
2015-10-05 16:58:08 +00:00
|
|
|
* Tue Sep 29 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.1-1
|
|
|
|
- Update to Qt 5.5.1 RC1
|
|
|
|
|
2015-07-16 17:04:33 +00:00
|
|
|
* Thu Jul 16 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-2
|
|
|
|
- tighten qtbase dep (#1233829)
|
|
|
|
|
|
|
|
* Wed Jul 1 2015 Helio Chissini de Castro <helio@kde.org> 5.5.0-1
|
|
|
|
- New final upstream release Qt 5.5.0
|
|
|
|
|
2015-06-30 04:34:08 +00:00
|
|
|
* Thu Jun 25 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.0-0.2.rc
|
|
|
|
- Update for official RC1 released packages
|
|
|
|
|
|
|
|
* Wed Jun 17 2015 Daniel Vrátil <dvratil@redhat.com> - 5.5.0-0.1.rc
|
|
|
|
- Qt 5.5.0 RC1
|
2015-06-18 21:51:57 +00:00
|
|
|
|
2015-06-03 10:54:41 +00:00
|
|
|
* Wed Jun 03 2015 Jan Grulich <jgrulich@redhat.com> - 5.4.2-1
|
|
|
|
- 5.4.2
|
|
|
|
|
2015-05-02 15:15:51 +00:00
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 5.4.1-3
|
|
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
|
2015-02-27 16:48:17 +00:00
|
|
|
* Fri Feb 27 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.4.1-2
|
|
|
|
- rebuild (gcc5)
|
|
|
|
|
2015-02-24 14:37:31 +00:00
|
|
|
* Tue Feb 24 2015 Jan Grulich <jgrulich@redhat.com> 5.4.1-1
|
|
|
|
- 5.4.1
|
|
|
|
|
2014-12-10 13:44:08 +00:00
|
|
|
* Wed Dec 10 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-1
|
|
|
|
- 5.4.0 (final)
|
|
|
|
|
2014-11-28 16:33:29 +00:00
|
|
|
* Fri Nov 28 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.3.rc
|
|
|
|
- 5.4.0-rc
|
|
|
|
|
2014-11-04 01:00:48 +00:00
|
|
|
* Mon Nov 03 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.2.beta
|
|
|
|
- out-of-tree build, use %%qmake_qt5
|
|
|
|
|
2014-10-19 20:34:36 +00:00
|
|
|
* Sun Oct 19 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.1.beta
|
|
|
|
- 5.4.0-beta
|
|
|
|
|
2014-09-17 11:28:35 +00:00
|
|
|
* Wed Sep 17 2014 Rex Dieter <rdieter@fedoraproject.org> - 5.3.2-1
|
|
|
|
- 5.3.2
|
|
|
|
|
2014-08-17 22:54:58 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-25 14:50:03 +00:00
|
|
|
* Tue Jun 17 2014 Jan Grulich <jgrulich@redhat.com> - 5.3.1-1
|
|
|
|
- 5.3.1
|
|
|
|
|
2014-06-08 01:25:39 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-22 08:45:43 +00:00
|
|
|
* Wed May 21 2014 Jan Grulich <jgrulich@redhat.com> - 5.3.0-1
|
|
|
|
- 5.3.0
|
|
|
|
|
2014-05-05 14:48:20 +00:00
|
|
|
* Mon May 05 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-2
|
|
|
|
- use standard (same as qtbase) .la/.prl sanitation
|
|
|
|
|
2014-02-06 13:07:43 +00:00
|
|
|
* Thu Feb 06 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-1
|
|
|
|
- 5.2.1
|
|
|
|
|
2013-12-12 13:41:32 +00:00
|
|
|
* Thu Dec 12 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-1
|
|
|
|
- 5.2.0
|
|
|
|
|
2013-11-10 19:45:48 +00:00
|
|
|
* Sun Nov 10 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.4.beta1
|
|
|
|
- rebuild (arm/qreal)
|
|
|
|
|
2013-10-25 01:24:05 +00:00
|
|
|
* Thu Oct 24 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.3.beta1
|
|
|
|
- 5.2.0-beta1
|
|
|
|
|
2013-10-24 09:39:54 +00:00
|
|
|
* Thu Oct 24 2013 Lubomir Rintel <lkundrak@v3.sk> - 5.2.0-0.2.alpha
|
|
|
|
- Bulk sad and useless attempt at consistent SPEC file formatting
|
|
|
|
|
2013-10-23 08:38:19 +00:00
|
|
|
* Wed Oct 23 2013 Lubomir Rintel <lkundrak@v3.sk> - 5.2.0-0.2.alpha
|
|
|
|
- Remove ppc64 exclude
|
|
|
|
|
|
|
|
* Wed Oct 23 2013 Lubomir Rintel <lkundrak@v3.sk> - 5.2.0-0.1.alpha
|
|
|
|
- 5.2 alpha
|
|
|
|
|
2013-10-23 08:34:58 +00:00
|
|
|
* Fri Sep 27 2013 Lubomir Rintel <lkundrak@v3.sk> - 5.1.1-1
|
|
|
|
- Initial packaging
|