Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-02-05 11:00:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and      /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libqt5-creator"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes    
2014-12-21 11:56:01.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes       
2015-02-05 11:00:15.000000000 +0100
@@ -1,0 +2,8 @@
+Tue Feb  3 19:13:51 UTC 2015 - [email protected]
+
+- Add make-qt-creator-build-with-Werror=date-time.patch:
+  don't embedded date & time into qtcreator binary & plugins
+- Extend rpmlintrc file to avoid duplicates warnings, we don't wont
+  to use fdupes due to unpredictable symlinking
+
+-------------------------------------------------------------------

New:
----
  make-qt-creator-build-with-Werror=date-time.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libqt5-creator.spec ++++++
--- /var/tmp/diff_new_pack.ZGwaBT/_old  2015-02-05 11:00:17.000000000 +0100
+++ /var/tmp/diff_new_pack.ZGwaBT/_new  2015-02-05 11:00:17.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-creator
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,7 +31,8 @@
 Source2:        qtcreator.desktop
 # PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location
 Patch0:         qbs-path.diff
-BuildRequires:  fdupes
+# PATCH-FIX-OPENSUSE make-qt-creator-build-with-Werror=date-time.patch -- 
don't embedded date & time into qtcreator binary & plugins
+Patch1:         make-qt-creator-build-with-Werror=date-time.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
 BuildRequires:  libbotan-devel
@@ -63,6 +64,7 @@
 %prep
 %setup -q -n %{rname}-opensource-src-%{rversion}
 %patch0 -p1
+%patch1 -p1
 
 %build
 %ifarch %arm %ix86 x86_64
@@ -88,8 +90,6 @@
 
 %suse_update_desktop_file -i qtcreator Development Qt IDE
 
-%fdupes -s %{buildroot}
-
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig

++++++ libqt5-creator-rpmlintrc ++++++
--- /var/tmp/diff_new_pack.ZGwaBT/_old  2015-02-05 11:00:17.000000000 +0100
+++ /var/tmp/diff_new_pack.ZGwaBT/_new  2015-02-05 11:00:17.000000000 +0100
@@ -1 +1,3 @@
 addFilter("devel-file-in-non-devel-package")
+addFilter("files-duplicated-waste .*")
+addFilter("files-duplicate .*")
\ No newline at end of file

++++++ make-qt-creator-build-with-Werror=date-time.patch ++++++
--- 
qt-creator-opensource-src-3.3.0/src/libs/qtcreatorcdbext/qtcreatorcdbextension.cpp
  2014-12-08 13:58:49.000000000 +0100
+++ 
qt-creator-opensource-src-3.3.0.new/src/libs/qtcreatorcdbext/qtcreatorcdbextension.cpp
      2015-02-03 18:56:23.672008433 +0100
@@ -279,8 +279,8 @@ extern "C" HRESULT CALLBACK pid(CIDebugC
 
     int token;
     commandTokens<StringList>(args, &token);
-    dprintf("Qt Creator CDB extension version 3.3 %d bit built %s.\n",
-            sizeof(void *) * 8, __DATE__);
+    dprintf("Qt Creator CDB extension version 3.3 %d bit.\n",
+            sizeof(void *) * 8);
     if (const ULONG pid = currentProcessId(client))
         ExtensionContext::instance().report('R', token, 0, "pid", "%u", pid);
     else
@@ -940,7 +940,7 @@ extern "C" HRESULT CALLBACK setparameter
 extern "C" HRESULT CALLBACK help(CIDebugClient *, PCSTR)
 {
     std::ostringstream str;
-    str << "### Qt Creator CDB extension built " << __DATE__ << "\n\n";
+    str << "### Qt Creator CDB extension" << "\n\n";
 
     const size_t commandCount = 
sizeof(commandDescriptions)/sizeof(CommandDescription);
     std::copy(commandDescriptions, commandDescriptions + commandCount,
--- qt-creator-opensource-src-3.3.0/src/plugins/coreplugin/versiondialog.cpp    
2014-12-08 13:58:49.000000000 +0100
+++ 
qt-creator-opensource-src-3.3.0.new/src/plugins/coreplugin/versiondialog.cpp    
    2015-02-03 18:57:53.162889643 +0100
@@ -68,18 +68,15 @@ VersionDialog::VersionDialog(QWidget *pa
         "<h3>%1</h3>"
         "%2<br/>"
         "<br/>"
-        "Built on %3 at %4<br />"
+        "%3"
         "<br/>"
-        "%5"
-        "<br/>"
-        "Copyright 2008-%6 %7. All rights reserved.<br/>"
+        "Copyright 2008-%4 %5. All rights reserved.<br/>"
         "<br/>"
         "The program is provided AS IS with NO WARRANTY OF ANY KIND, "
         "INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A "
         "PARTICULAR PURPOSE.<br/>")
         .arg(ICore::versionString(),
              ICore::buildCompatibilityString(),
-             QLatin1String(__DATE__), QLatin1String(__TIME__),
              ideRev,
              QLatin1String(Constants::IDE_YEAR),
              QLatin1String(Constants::IDE_AUTHOR));
--- 
qt-creator-opensource-src-3.3.0/src/tools/qtcreatorcrashhandler/crashhandlerdialog.cpp
      2014-12-08 13:58:49.000000000 +0100
+++ 
qt-creator-opensource-src-3.3.0.new/src/tools/qtcreatorcrashhandler/crashhandlerdialog.cpp
  2015-02-03 18:58:47.544209783 +0100
@@ -138,9 +138,9 @@ void CrashHandlerDialog::setApplicationI
      revision = QLatin1Char(' ') + tr("from revision 
%1").arg(QString::fromLatin1(Core::Constants::IDE_REVISION_STR).left(10));
 #endif
     const QString versionInformation = tr(
-        "%1 %2%3, built on %4 at %5, based on Qt %6 (%7 bit)\n")
+        "%1 %2%3, based on Qt %4 (%5 bit)\n")
             .arg(ideName, QLatin1String(Core::Constants::IDE_VERSION_LONG), 
revision,
-                 QLatin1String(__DATE__), QLatin1String(__TIME__), 
QLatin1String(QT_VERSION_STR),
+                 QLatin1String(QT_VERSION_STR),
                  QString::number(QSysInfo::WordSize));
     m_ui->debugInfoEdit->append(versionInformation);
 }
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to