[Python-modules-commits] r31719 - in packages/pyqt5/trunk/debian/patches (1 file)
mitya57 at users.alioth.debian.org
mitya57 at users.alioth.debian.org
Fri Jan 30 13:06:55 UTC 2015
Date: Friday, January 30, 2015 @ 13:06:54
Author: mitya57
Revision: 31719
Update remove_timestamps.diff to the latest upstream version
Modified:
packages/pyqt5/trunk/debian/patches/remove_timestamps.diff
Modified: packages/pyqt5/trunk/debian/patches/remove_timestamps.diff
===================================================================
--- packages/pyqt5/trunk/debian/patches/remove_timestamps.diff 2015-01-29 23:29:22 UTC (rev 31718)
+++ packages/pyqt5/trunk/debian/patches/remove_timestamps.diff 2015-01-30 13:06:54 UTC (rev 31719)
@@ -1,10 +1,6 @@
Description: prevent embedding of timestamps in files generated by rcc and uic
- Timestamps in generated files will make packages using those tools no longer
- build reproducibly, because the files will differ in each build.
- As those timestamps are no useful information, they can be left out.
-Author: Reiner Herrmann <reiner at reiner-h.de>
-Forwarded: yes
-Last-Update: 2015-01-11
+Origin: upstream, changesets 83ff904a1929 and a56bb17ad8ce
+Last-Update: 2015-01-30
--- a/pyrcc/rcc.cpp
+++ b/pyrcc/rcc.cpp
@@ -22,7 +18,7 @@
fprintf(out, "#\n");
- fprintf(out, "# Created: %s\n", QDateTime::currentDateTime().toString().toUtf8().constData());
- fprintf(out, "# by: The Resource Compiler for PyQt (Qt v%s)\n", QT_VERSION_STR);
-+ fprintf(out, "# Created by: The Resource Compiler for PyQt (Qt v%s)\n", QT_VERSION_STR);
++ fprintf(out, "# Created by: The Resource Compiler for PyQt5 (Qt v%s)\n", QT_VERSION_STR);
fprintf(out, "#\n");
fprintf(out, "# WARNING! All changes made in this file will be lost!\n");
fprintf(out, "\n");
More information about the Python-modules-commits
mailing list