Hello community, here is the log from the commit of package kig for openSUSE:Factory checked in at 2014-01-27 11:15:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kig (Old) and /work/SRC/openSUSE:Factory/.kig.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kig" Changes: -------- --- /work/SRC/openSUSE:Factory/kig/kig.changes 2013-12-19 13:16:41.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kig.new/kig.changes 2014-01-27 11:15:45.000000000 +0100 @@ -1,0 +2,7 @@ +Sat Jan 11 15:38:56 UTC 2014 - [email protected] + +- Update to 4.12.1 + * KDE 4.12.1 release + * See http://www.kde.org/announcements/announce-4.12.1.php + +------------------------------------------------------------------- Old: ---- kig-4.12.0.tar.xz New: ---- kig-4.12.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kig.spec ++++++ --- /var/tmp/diff_new_pack.7gpm5P/_old 2014-01-27 11:15:46.000000000 +0100 +++ /var/tmp/diff_new_pack.7gpm5P/_new 2014-01-27 11:15:46.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package kig # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: kig -Version: 4.12.0 +Version: 4.12.1 Release: 0 Summary: Interactive Geometry License: GPL-2.0+ ++++++ kig-4.12.0.tar.xz -> kig-4.12.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kig-4.12.0/filters/native-filter.cc new/kig-4.12.1/filters/native-filter.cc --- old/kig-4.12.0/filters/native-filter.cc 2013-10-27 13:52:39.000000000 +0100 +++ new/kig-4.12.1/filters/native-filter.cc 2014-01-02 01:47:50.000000000 +0100 @@ -134,9 +134,9 @@ else KIG_FILTER_PARSE_ERROR; // reading compressed file - KTar* ark = new KTar( file, "application/x-gzip" ); - ark->open( QIODevice::ReadOnly ); - const KArchiveDirectory* dir = ark->directory(); + KTar ark( file, "application/x-gzip" ); + ark.open( QIODevice::ReadOnly ); + const KArchiveDirectory* dir = ark.directory(); // assert( dir ); QStringList entries = dir->entries(); QStringList kigfiles = entries.filter( QRegExp( "\\.kig$" ) ); @@ -767,10 +767,10 @@ kDebug() << "tmp saved file: " << tmpfile; // creating the archive and adding our file - KTar* ark = new KTar( outfile, "application/x-gzip" ); - ark->open( QIODevice::WriteOnly ); - ark->addLocalFile( tmpfile, tempname + ".kig" ); - ark->close(); + KTar ark( outfile, "application/x-gzip" ); + ark.open( QIODevice::WriteOnly ); + ark.addLocalFile( tmpfile, tempname + ".kig" ); + ark.close(); // finally, removing temp file QFile::remove( tmpfile ); -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
