Hello community,

here is the log from the commit of package shotcut for openSUSE:Factory checked 
in at 2017-03-12 20:00:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/shotcut (Old)
 and      /work/SRC/openSUSE:Factory/.shotcut.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "shotcut"

Sun Mar 12 20:00:50 2017 rev:2 rq:476977 version:17.03

Changes:
--------
--- /work/SRC/openSUSE:Factory/shotcut/shotcut.changes  2017-03-01 
23:43:24.079271076 +0100
+++ /work/SRC/openSUSE:Factory/.shotcut.new/shotcut.changes     2017-03-12 
20:00:55.335886995 +0100
@@ -1,0 +2,21 @@
+Sun Mar  5 05:59:12 UTC 2017 - [email protected]
+
+- Update to 17.03
+- Upstream changes:
+  Converted the track toggle buttons to icons.
+  Now, you can press Del or Backspace to delete a selected item in
+  the Recent panel.
+  Playback now pauses at the out point in the Source player. (After
+  pause, you can press play again to continue beyond the out point.)
+  Some stability improvements.
+  Performance boost for Size & Position and Rotate filters on
+  multi-CPU systems.
+
+-------------------------------------------------------------------
+Mon Feb 20 11:42:47 UTC 2017 - [email protected]
+
+- Trim description
+- Proper shell quoting and replacement of Useless Use Of Cat
+  (ls -1).
+
+-------------------------------------------------------------------

Old:
----
  shotcut-17.02.tar.gz

New:
----
  shotcut-17.03.tar.gz

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

Other differences:
------------------
++++++ shotcut.spec ++++++
--- /var/tmp/diff_new_pack.vuHHJL/_old  2017-03-12 20:00:55.951799844 +0100
+++ /var/tmp/diff_new_pack.vuHHJL/_new  2017-03-12 20:00:55.955799279 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package shotcut
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -28,32 +28,32 @@
 %endif
 %endif
 Name:           shotcut
-Version:        17.02
+Version:        17.03
 Release:        0
-Summary:        A free, open source, cross-platform video editor
+Summary:        A video editor
 License:        GPL-3.0+
 Group:          Productivity/Multimedia/Video/Editors and Convertors
 Url:            http://www.shotcut.org/
 Source:         
https://github.com/mltframework/shotcut/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
-BuildRequires:  gcc-c++
 BuildRequires:  fdupes
+BuildRequires:  gcc-c++
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel
+BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(Qt5Concurrent)
 BuildRequires:  pkgconfig(Qt5Core) >= 5.5.0
 BuildRequires:  pkgconfig(Qt5Gui)
 BuildRequires:  pkgconfig(Qt5Multimedia)
 BuildRequires:  pkgconfig(Qt5Network)
-BuildRequires:  pkgconfig(Qt5UiTools)
 BuildRequires:  pkgconfig(Qt5OpenGL)
 BuildRequires:  pkgconfig(Qt5PrintSupport)
 BuildRequires:  pkgconfig(Qt5Quick)
+BuildRequires:  pkgconfig(Qt5UiTools)
 BuildRequires:  pkgconfig(Qt5WebKitWidgets)
 BuildRequires:  pkgconfig(Qt5WebSockets)
 BuildRequires:  pkgconfig(Qt5X11Extras)
 BuildRequires:  pkgconfig(Qt5Xml)
 BuildRequires:  pkgconfig(mlt++)
 BuildRequires:  pkgconfig(mlt-framework)
-BuildRequires:  update-desktop-files
 # frei0r-plugins prior to 1.4-7.1 are built against qt4 and cause a segfault 
on startup.
 Requires:       frei0r-plugins >= 1.4-7.1
 Requires:       ladspa
@@ -83,9 +83,9 @@
  * no import required - native editing;
  * frame-accurate seeking for many formats;
  * multi-format timeline;
- * screen capture (Linux only) including background capture;
- * webcam capture (Linux only);
- * audio capture (Linux only; PulseAudio, JACK, or ALSA);
+ * screen capture including background capture;
+ * webcam capture;
+ * audio capture (PulseAudio, JACK, or ALSA);
  * network stream playback (HTTP, HLS, RTMP, RTSP, MMS, UDP);
  * frei0r video generator plugins (e.g. color bars and plasma);
  * Blackmagic Design SDI and HDMI for input and preview monitoring;
@@ -111,8 +111,7 @@
  * edit Melted playlists including support for undo/redo;
  * OpenGL GPU-based image processing;
  * multi-core parallel image processing when not using GPU;
- * video filters;
- * audio filters;
+ * audio and video filters;
  * 3-way color wheels for color correction and grading;
  * eye dropper tool to pick neutral color for white balancing;
  * HTML5 (sans audio and video) as video source and filters;
@@ -129,7 +128,7 @@
 
 # Search for executable files
 find . \
-\( -name \*.html -o -name \*.js \) -type f -executable -exec chmod 644 {} \; 
|| :
+\( -name \*.html -o -name \*.js \) -type f -executable -exec chmod a-x {} \; 
|| :
 
 %build
 %qmake5 \
@@ -146,22 +145,22 @@
 %{name} Shotcut "Video editor" %{name} %{name} AudioVideo AudioVideoEditing}
 
 # Install language files
-langlist=$PWD/%{name}.lang
+langlist="$PWD/%{name}.lang"
 langdir="%{_datadir}/%{name}/translations"
-basedir=$(basename $langdir)
+basedir=$(basename "$langdir")
 pushd $basedir
-       /bin/ls -1 *.ts | while read ts; do
+       for ts in *.ts; do
                [ -e "$ts" ] || continue
-               lupdate-qt5 $ts && lrelease-qt5 $ts
+               lupdate-qt5 "$ts" && lrelease-qt5 "$ts"
        done
-       /bin/ls -1 *.qm | while read qm; do
+       for qm in *.qm; do
                [ -e "$qm" ] || continue
-               if ! grep -wqs "%dir\ $langdir" $langlist; then
-               echo "%dir $langdir" >> $langlist
+               if ! grep -wqs "%dir\ $langdir" "$langlist"; then
+                       echo "%dir $langdir" >>"$langlist"
         fi
-               install -Dm0644 $qm %{buildroot}$langdir/$qm
+               install -Dm0644 "$qm" "%{buildroot}/$langdir/$qm"
                lang="${qm%.qm}"
-               echo "%lang($lang) $langdir/$qm" >> $langlist
+               echo "%lang($lang) $langdir/$qm" >>"$langlist"
        done
 popd
 

++++++ shotcut-17.02.tar.gz -> shotcut-17.03.tar.gz ++++++
++++ 24267 lines of diff (skipped)


Reply via email to