epienbro pushed to mingw-qt5-qtxmlpatterns (f21). "Initial import"

notifications at fedoraproject.org notifications at fedoraproject.org
Thu Mar 26 17:16:16 UTC 2015


>From 6f8d12ee69cdc4a880a7011128d5e636e051af13 Mon Sep 17 00:00:00 2001
From: Erik van Pienbroek <epienbro at fedoraproject.org>
Date: Thu, 26 Mar 2015 17:58:27 +0100
Subject: Initial import


diff --git a/.gitignore b/.gitignore
index e69de29..512728f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/qtxmlpatterns-opensource-src-5.4.1.tar.xz
diff --git a/mingw-qt5-qtxmlpatterns.spec b/mingw-qt5-qtxmlpatterns.spec
new file mode 100644
index 0000000..8dd0e30
--- /dev/null
+++ b/mingw-qt5-qtxmlpatterns.spec
@@ -0,0 +1,172 @@
+%?mingw_package_header
+
+%global qt_module qtxmlpatterns
+#%%global pre rc1
+
+#%%global snapshot_date 20121112
+#%%global snapshot_rev 69b7a0bb
+
+%if 0%{?snapshot_date}
+%global source_folder qt-%{qt_module}
+%else
+%global source_folder %{qt_module}-opensource-src-%{version}%{?pre:-%{pre}}
+%endif
+
+# first two digits of version
+%global release_version %(echo %{version} | awk -F. '{print $1"."$2}')
+
+Name:           mingw-qt5-%{qt_module}
+Version:        5.4.1
+Release:        1%{?pre:.%{pre}}%{?snapshot_date:.git%{snapshot_date}.%{snapshot_rev}}%{?dist}
+Summary:        Qt5 for Windows - QtXmlPatterns component
+
+License:        GPLv3 with exceptions or LGPLv2 with exceptions
+Group:          Development/Libraries
+URL:            http://qt-project.org/
+
+%if 0%{?snapshot_date}
+# To regenerate:
+# wget http://qt.gitorious.org/qt/%{qt_module}/archive-tarball/%{snapshot_rev} -O qt5-%{qt_module}-%{snapshot_rev}.tar.gz
+Source0:        qt5-%{qt_module}-%{snapshot_rev}.tar.gz
+%else
+%if "%{?pre}" != ""
+Source0:        http://download.qt-project.org/development_releases/qt/%{release_version}/%{version}-%{pre}/submodules/%{qt_module}-opensource-src-%{version}-%{pre}.tar.xz
+%else
+Source0:        http://download.qt-project.org/official_releases/qt/%{release_version}/%{version}/submodules/%{qt_module}-opensource-src-%{version}.tar.xz
+%endif
+%endif
+
+BuildArch:      noarch
+
+BuildRequires:  mingw32-filesystem >= 96
+BuildRequires:  mingw32-qt5-qtbase >= 5.4.1
+
+BuildRequires:  mingw64-filesystem >= 96
+BuildRequires:  mingw64-qt5-qtbase >= 5.4.1
+
+
+%description
+This package contains the Qt software toolkit for developing
+cross-platform applications.
+
+This is the Windows version of Qt, for use in conjunction with the
+Fedora Windows cross-compiler.
+
+
+# Win32
+%package -n mingw32-qt5-%{qt_module}
+Summary:        Qt5 for Windows - QtXmlPatterns component
+
+%description -n mingw32-qt5-%{qt_module}
+This package contains the Qt software toolkit for developing
+cross-platform applications.
+
+This is the Windows version of Qt, for use in conjunction with the
+Fedora Windows cross-compiler.
+
+
+# Win64
+%package -n mingw64-qt5-%{qt_module}
+Summary:        Qt5 for Windows - QtXmlPatterns component
+
+%description -n mingw64-qt5-%{qt_module}
+This package contains the Qt software toolkit for developing
+cross-platform applications.
+
+This is the Windows version of Qt, for use in conjunction with the
+Fedora Windows cross-compiler.
+
+
+%?mingw_debug_package
+
+
+%prep
+%setup -q -n %{source_folder}
+
+
+%build
+%mingw_qmake_qt5 ../%{qt_module}.pro
+%mingw_make %{?_smp_mflags}
+
+
+%install
+%mingw_make install INSTALL_ROOT=$RPM_BUILD_ROOT
+
+# .prl files aren't interesting for us
+find $RPM_BUILD_ROOT -name "*.prl" -delete
+
+# Make sure the executables don't conflict with their mingw-qt4 counterpart
+for fn in $RPM_BUILD_ROOT%{mingw32_bindir}/*.exe $RPM_BUILD_ROOT%{mingw64_bindir}/*.exe ; do
+    fn_new=$(echo $fn | sed s/'.exe$'/'-qt5.exe'/)
+    mv $fn $fn_new
+done
+
+
+# Win32
+%files -n mingw32-qt5-%{qt_module}
+%doc LGPL_EXCEPTION.txt LICENSE.FDL LICENSE.LGPLv21 LICENSE.LGPLv3
+%{mingw32_bindir}/Qt5XmlPatterns.dll
+%{mingw32_bindir}/xmlpatterns-qt5.exe
+%{mingw32_bindir}/xmlpatternsvalidator-qt5.exe
+%{mingw32_includedir}/qt5/QtXmlPatterns/
+%{mingw32_libdir}/libQt5XmlPatterns.dll.a
+%{mingw32_libdir}/cmake/Qt5XmlPatterns/
+%{mingw32_libdir}/pkgconfig/Qt5XmlPatterns.pc
+%{mingw32_datadir}/qt5/mkspecs/modules/qt_lib_xmlpatterns.pri
+%{mingw32_datadir}/qt5/mkspecs/modules/qt_lib_xmlpatterns_private.pri
+
+# Win64
+%files -n mingw64-qt5-%{qt_module}
+%doc LGPL_EXCEPTION.txt LICENSE.FDL LICENSE.LGPLv21 LICENSE.LGPLv3
+%{mingw64_bindir}/Qt5XmlPatterns.dll
+%{mingw64_bindir}/xmlpatterns-qt5.exe
+%{mingw64_bindir}/xmlpatternsvalidator-qt5.exe
+%{mingw64_includedir}/qt5/QtXmlPatterns/
+%{mingw64_libdir}/libQt5XmlPatterns.dll.a
+%{mingw64_libdir}/cmake/Qt5XmlPatterns/
+%{mingw64_libdir}/pkgconfig/Qt5XmlPatterns.pc
+%{mingw64_datadir}/qt5/mkspecs/modules/qt_lib_xmlpatterns.pri
+%{mingw64_datadir}/qt5/mkspecs/modules/qt_lib_xmlpatterns_private.pri
+
+
+%changelog
+* Tue Mar 24 2015 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.4.1-1
+- Update to 5.4.1
+
+* Thu Jan  1 2015 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.4.0-1
+- Update to 5.4.0
+
+* Sun May 25 2014 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.3.0-1
+- Update to 5.3.0
+
+* Sat Feb  8 2014 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.2.1-1
+- Update to 5.2.1
+
+* Sun Jan  5 2014 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.2.0-1
+- Update to 5.2.0
+- Dropped manual rename of import libraries
+- Added license files
+
+* Fri Nov 29 2013 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.2.0-0.1.rc1
+- Update to 5.2.0 RC1
+
+* Sun Jul 14 2013 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.1.0-1
+- Update to 5.1.0
+
+* Fri May 10 2013 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.0.2-1
+- Update to 5.0.2
+
+* Sat Feb  9 2013 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.0.1-1
+- Update to 5.0.1
+
+* Fri Jan 11 2013 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.0.0-1
+- Update to Qt 5.0.0 Final
+
+* Mon Nov 12 2012 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.0.0-0.2.beta1.git20121112.69b7a0bb
+- Update to 20121112 snapshot (rev 69b7a0bb)
+- Rebuild against latest mingw-qt5-qtbase
+- Dropped pkg-config rename hack as it's unneeded now
+
+* Thu Sep 13 2012 Erik van Pienbroek <epienbro at fedoraproject.org> - 5.0.0-0.1.beta1
+- Initial release
+
diff --git a/sources b/sources
index e69de29..6f55e5c 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+ec2970e9e9c38f88be74f18101937c28  qtxmlpatterns-opensource-src-5.4.1.tar.xz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/mingw-qt5-qtxmlpatterns.git/commit/?h=f21&id=6f8d12ee69cdc4a880a7011128d5e636e051af13


More information about the scm-commits mailing list