Hello community,
here is the log from the commit of package kdegraphics-thumbnailers for
openSUSE:Factory checked in at 2018-04-27 16:03:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdegraphics-thumbnailers (Old)
and /work/SRC/openSUSE:Factory/.kdegraphics-thumbnailers.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdegraphics-thumbnailers"
Fri Apr 27 16:03:21 2018 rev:91 rq:599026 version:18.04.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/kdegraphics-thumbnailers/kdegraphics-thumbnailers.changes
2018-03-22 12:00:51.950819781 +0100
+++
/work/SRC/openSUSE:Factory/.kdegraphics-thumbnailers.new/kdegraphics-thumbnailers.changes
2018-04-27 16:03:25.259280031 +0200
@@ -1,0 +2,21 @@
+Wed Apr 18 07:48:59 CEST 2018 - [email protected]
+
+- Update to 18.04.0
+ * New feature release
+ * For more details please see:
+ * https://www.kde.org/announcements/announce-applications-18.04.0.php
+- Changes since 18.03.90:
+ * None
+
+-------------------------------------------------------------------
+Fri Apr 06 07:09:12 CEST 2018 - [email protected]
+
+- Update to 18.03.90
+ * New feature release
+ * For more details please see:
+ * https://www.kde.org/announcements/announce-applications-18.03.90.php
+- Changes since 17.12.3:
+ * gs thumbnailer: Make it work when gs spits out warning messages
+ * Code cleanup: We defenitely don't support gcc < 3
+
+-------------------------------------------------------------------
Old:
----
kdegraphics-thumbnailers-17.12.3.tar.xz
New:
----
kdegraphics-thumbnailers-18.04.0.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kdegraphics-thumbnailers.spec ++++++
--- /var/tmp/diff_new_pack.IF3YO0/_old 2018-04-27 16:03:26.179246275 +0200
+++ /var/tmp/diff_new_pack.IF3YO0/_new 2018-04-27 16:03:26.183246128 +0200
@@ -17,7 +17,7 @@
Name: kdegraphics-thumbnailers
-Version: 17.12.3
+Version: 18.04.0
Release: 0
%define kf5_version 5.26.0
# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
++++++ kdegraphics-thumbnailers-17.12.3.tar.xz ->
kdegraphics-thumbnailers-18.04.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kdegraphics-thumbnailers-17.12.3/ps/dscparse_adapter.h
new/kdegraphics-thumbnailers-18.04.0/ps/dscparse_adapter.h
--- old/kdegraphics-thumbnailers-17.12.3/ps/dscparse_adapter.h 2018-01-14
19:51:59.000000000 +0100
+++ new/kdegraphics-thumbnailers-18.04.0/ps/dscparse_adapter.h 2018-01-14
19:52:43.000000000 +0100
@@ -33,51 +33,6 @@
#undef max
#endif
-#if defined(__GNUC__)
-#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 93)
-/*
- * We add a quick 'n' dirty inline implementation of auto_ptr for older
- * releases of GCC, which don't include an auto_ptr implementation in
- * <memory>.
- */
-
-template <class T> class auto_ptr {
-private:
- T* _ptr;
-
-public:
- typedef T element_type;
- explicit auto_ptr(T* p = 0) : _ptr(p) {}
- auto_ptr(auto_ptr& a) : _ptr(a.release()) {}
- template <class T1> auto_ptr(auto_ptr<T1>& a) : _ptr(a.release()) {}
- auto_ptr& operator=(auto_ptr& a) {
- if (&a != this) {
- delete _ptr;
- _ptr = a.release();
- }
- return *this;
- }
- template <class T1>
- auto_ptr& operator=(auto_ptr<T1>& a) {
- if (a.get() != this->get()) {
- delete _ptr;
- _ptr = a.release();
- }
- return *this;
- }
- ~auto_ptr() { delete _ptr; }
-
- T& operator*() const { return *_ptr; }
- T* operator->() const { return _ptr; }
- T* get() const { return _ptr; }
- T* release() { T* tmp = _ptr; _ptr = 0; return tmp; }
- void reset(T* p = 0) { delete _ptr; _ptr = p; }
-};
-
-#endif
-#endif
-
-
class KDSCBBOX
{
public: