[qt5-qtxmlpatterns] import

Rex Dieter rdieter at fedoraproject.org
Tue Aug 27 15:17:20 UTC 2013


commit 2528ce0ac50ca5ac69ac539c9db8e3dea916d8f4
Author: Rex Dieter <rdieter at math.unl.edu>
Date:   Tue Aug 27 10:17:06 2013 -0500

    import

 .gitignore             |    1 +
 qt5-qtxmlpatterns.spec |  100 ++++++++++++++++++++++++++++++++++++++++++++++++
 sources                |    1 +
 3 files changed, 102 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..04425a9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/qtxmlpatterns-opensource-src-5.0.2.tar.xz
diff --git a/qt5-qtxmlpatterns.spec b/qt5-qtxmlpatterns.spec
new file mode 100644
index 0000000..cad3358
--- /dev/null
+++ b/qt5-qtxmlpatterns.spec
@@ -0,0 +1,100 @@
+
+%global qt_module qtxmlpatterns
+
+Summary: Qt5 - QtXmlPatterns component
+Name:    qt5-%{qt_module}
+Version: 5.0.2
+Release: 2%{?dist}
+
+# See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details
+License: LGPLv2 with exceptions or GPLv3 with exceptions
+Url: http://qt-project.org/
+Source0: http://download.qt-project.org/archive/qt/5.0/%{version}/submodules/%{qt_module}-opensource-src-%{version}.tar.xz
+
+BuildRequires: qt5-qtbase-devel >= %{version}
+
+%{?_qt5_version:Requires: qt5-qtbase%{?_isa} >= %{_qt5_version}}
+
+%description
+%{summary}
+
+%package devel
+Summary: Development files for %{name}
+Requires: %{name}%{?_isa} = %{version}-%{release}
+Requires: qt5-qtbase-devel%{?_isa}
+%description devel
+%{summary}.
+
+
+%prep
+%setup -q -n %{qt_module}-opensource-src-%{version}%{?pre:-%{pre}}
+
+
+%build
+%{_qt5_qmake}
+
+make %{?_smp_mflags}
+
+
+%install
+make install INSTALL_ROOT=%{buildroot}
+
+# put non-conflicting binaries with -qt5 postfix in %{_bindir}
+mkdir %{buildroot}%{_bindir}
+pushd %{buildroot}%{_qt5_bindir}
+for i in * ; do
+  case "${i}" in
+    xmlpatterns|xmlpatternsvalidator)
+      mv $i ../../../bin/${i}-qt5
+      ln -s ../../../bin/${i}-qt5 .
+      ln -s ../../../bin/${i}-qt5 $i
+      ;;
+   *)
+      mv $i ../../../bin/
+      ln -s ../../../bin/$i .
+      ;;
+  esac
+done
+popd
+
+## .prl file love (maybe consider just deleting these -- rex
+# nuke dangling reference(s) to %%buildroot, excessive (.la-like) libs
+sed -i \
+  -e "/^QMAKE_PRL_BUILD_DIR/d" \
+  -e "/^QMAKE_PRL_LIBS/d" \
+  %{buildroot}%{_qt5_libdir}/*.prl
+
+## unpackaged files
+# .la files, die, die, die.
+rm -fv %{buildroot}%{_qt5_libdir}/lib*.la
+
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%files
+%doc LICENSE.GPL LICENSE.LGPL LGPL_EXCEPTION.txt
+%{_qt5_libdir}/libQt5XmlPatterns.so.5*
+
+%files devel
+%{_qt5_bindir}/xmlpatterns*
+%{_bindir}/xmlpatterns*
+%{_qt5_headerdir}/Qt*/
+%{_qt5_libdir}/libQt5*.so
+%{_qt5_libdir}/libQt5*.prl
+%{_qt5_libdir}/cmake/Qt5*/
+%{_qt5_libdir}/pkgconfig/Qt5*.pc
+%{_qt5_archdatadir}/mkspecs/modules/*.pri
+
+
+%changelog
+* Sat Aug 17 2013 Rex Dieter <rdieter at fedoraproject.org> 5.0.2-2
+- %%doc LICENSE.GPL LICENSE.LGPL LGPL_EXCEPTION.txt
+- update Source URL
+
+* Thu Apr 11 2013 Rex Dieter <rdieter at fedoraproject.org> 5.0.2-1
+- 5.0.2
+
+* Sat Feb 23 2013 Rex Dieter <rdieter at fedoraproject.org> 5.0.1-1
+- first try
+
diff --git a/sources b/sources
index e69de29..c601b0f 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+29e6776165e43e9f3a865338121b4e1d  qtxmlpatterns-opensource-src-5.0.2.tar.xz


More information about the scm-commits mailing list