commit totem-pl-parser for openSUSE:Factory

2020-03-05 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2020-03-05 23:17:20

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new.26092 (New)


Package is "totem-pl-parser"

Thu Mar  5 23:17:20 2020 rev:83 rq:781010 version:3.26.5

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2020-01-28 10:53:07.264886908 +0100
+++ 
/work/SRC/openSUSE:Factory/.totem-pl-parser.new.26092/totem-pl-parser.changes   
2020-03-05 23:17:29.917150657 +0100
@@ -1,0 +2,8 @@
+Fri Feb 28 17:13:56 UTC 2020 - Bjørn Lie 
+
+- Update to version 3.26.5:
+  + Add g_auto* cleanup support.
+  + Add asynchronous version of totem_pl_parser_save().
+  + Fixed parsing of some remote MP3 files.
+
+---

Old:

  totem-pl-parser-3.26.4.tar.xz

New:

  totem-pl-parser-3.26.5.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.zp3HEo/_old  2020-03-05 23:17:30.777151144 +0100
+++ /var/tmp/diff_new_pack.zp3HEo/_new  2020-03-05 23:17:30.781151147 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package totem-pl-parser
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define sover   18
 
 Name:   totem-pl-parser
-Version:3.26.4
+Version:3.26.5
 Release:0
 Summary:A GObject-based library to parse playlist formats
 License:LGPL-2.0-or-later AND GPL-2.0-or-later
@@ -116,7 +116,7 @@
 
 %files
 %dir %{_libexecdir}/totem-pl-parser/
-%{_libexecdir}/totem-pl-parser/99-totem-pl-parser-videosite
+%{_libexecdir}/totem-pl-parser/99-totem-pl-parser-videosite-quvi
 
 %files -n libtotem-plparser%{sover}
 %license COPYING.LIB

++ _service ++
--- /var/tmp/diff_new_pack.zp3HEo/_old  2020-03-05 23:17:30.817151166 +0100
+++ /var/tmp/diff_new_pack.zp3HEo/_new  2020-03-05 23:17:30.821151169 +0100
@@ -2,8 +2,8 @@
   
 https://gitlab.gnome.org/GNOME/totem-pl-parser.git
 git
-refs/tags/V_3_26_4
-3.26.4
+refs/tags/V_3_26_5
+3.26.5
   
   
 *.tar

++ totem-pl-parser-3.26.4.tar.xz -> totem-pl-parser-3.26.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.4/.ci/check-abi 
new/totem-pl-parser-3.26.5/.ci/check-abi
--- old/totem-pl-parser-3.26.4/.ci/check-abi1970-01-01 01:00:00.0 
+0100
+++ new/totem-pl-parser-3.26.5/.ci/check-abi2020-02-28 17:05:49.0 
+0100
@@ -0,0 +1,121 @@
+#!/usr/bin/python3
+
+
+import argparse
+import contextlib
+import os
+import shutil
+import subprocess
+import sys
+
+
+def format_title(title):
+box = {
+'tl': '╔', 'tr': '╗', 'bl': '╚', 'br': '╝', 'h': '═', 'v': '║',
+}
+hline = box['h'] * (len(title) + 2)
+
+return '\n'.join([
+f"{box['tl']}{hline}{box['tr']}",
+f"{box['v']} {title} {box['v']}",
+f"{box['bl']}{hline}{box['br']}",
+])
+
+
+def rm_rf(path):
+try:
+shutil.rmtree(path)
+except FileNotFoundError:
+pass
+
+
+def sanitize_path(name):
+return name.replace('/', '-')
+
+
+def get_current_revision():
+revision = subprocess.check_output(['git', 'rev-parse', '--abbrev-ref', 
'HEAD'],
+   encoding='utf-8').strip()
+
+if revision == 'HEAD':
+# This is a detached HEAD, get the commit hash
+revision = subprocess.check_output(['git', 'rev-parse', 
'HEAD']).strip().decode('utf-8')
+
+return revision
+
+
+@contextlib.contextmanager
+def checkout_git_revision(revision):
+current_revision = get_current_revision()
+subprocess.check_call(['git', 'checkout', '-q', revision])
+
+try:
+yield
+finally:
+subprocess.check_call(['git', 'checkout', '-q', current_revision])
+
+
+def build_install(revision):
+build_dir = '_build'
+dest_dir = os.path.abspath(sanitize_path(revision))
+print(format_title(f'# Building and installing {revision} in {dest_dir}'),
+  end='\n\n', flush=True)
+
+with checkout_git_revision(revision):
+rm_rf(build_dir)
+rm_rf(revision)
+
+subprocess.check_call(['meson', build_dir,
+   '--prefix=/usr', '--libdir=lib',
+   '-Db_coverage=false', '-Dgtkdoc=false', 
'-Dtests=false'])
+subprocess.check_call(['ninja', '-v', '-C', build_dir])
+subprocess.check_call(['ninja', '-v', '-C', build_dir, 

commit totem-pl-parser for openSUSE:Factory

2020-01-28 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2020-01-28 10:53:04

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new.26092 (New)


Package is "totem-pl-parser"

Tue Jan 28 10:53:04 2020 rev:82 rq:767486 version:3.26.4

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2019-11-24 00:00:12.943039216 +0100
+++ 
/work/SRC/openSUSE:Factory/.totem-pl-parser.new.26092/totem-pl-parser.changes   
2020-01-28 10:53:07.264886908 +0100
@@ -1,0 +2,5 @@
+Sat Jan 25 14:20:29 UTC 2020 - Dominique Leuenberger 
+
+- No longer recommend -lang: supplements are in use
+
+---



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.UQQSVb/_old  2020-01-28 10:53:07.97756 +0100
+++ /var/tmp/diff_new_pack.UQQSVb/_new  2020-01-28 10:53:07.996887765 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package totem-pl-parser
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -34,13 +34,12 @@
 BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildRequires:  translation-update-upstream
-BuildRequires:  pkgconfig(glib-2.0) >= 2.31.0
+BuildRequires:  pkgconfig(glib-2.0) >= 2.56.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libarchive) >= 3.0
 BuildRequires:  pkgconfig(libquvi-0.9) >= 0.9.1
 BuildRequires:  pkgconfig(libxml-2.0)
 Requires:   libquvi-scripts
-Recommends: %{name}-lang
 
 %description
 totem-pl-parser is a GObject-based library to parse a host of




commit totem-pl-parser for openSUSE:Factory

2019-11-23 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2019-11-24 00:00:10

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new.26869 (New)


Package is "totem-pl-parser"

Sun Nov 24 00:00:10 2019 rev:81 rq:749275 version:3.26.4

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2019-03-13 09:05:30.967446898 +0100
+++ 
/work/SRC/openSUSE:Factory/.totem-pl-parser.new.26869/totem-pl-parser.changes   
2019-11-24 00:00:12.943039216 +0100
@@ -1,0 +2,11 @@
+Tue Nov 12 18:23:52 UTC 2019 - bjorn@gmail.com
+
+- Update to version 3.26.4:
+  + Apply same check to remote text files as local ones, which
+should fix parsing of directories on network file systems.
+  + Add totem_pl_parser_add_ignored_glob() API, to force ignore
+some files depending on how they are named, before we even get
+to checking their contents.
+  + Fix a number of compilation warnings.
+
+---

Old:

  totem-pl-parser-3.26.3.tar.xz

New:

  totem-pl-parser-3.26.4.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.ObgZli/_old  2019-11-24 00:00:13.663039301 +0100
+++ /var/tmp/diff_new_pack.ObgZli/_new  2019-11-24 00:00:13.683039304 +0100
@@ -17,8 +17,9 @@
 
 
 %define sover   18
+
 Name:   totem-pl-parser
-Version:3.26.3
+Version:3.26.4
 Release:0
 Summary:A GObject-based library to parse playlist formats
 License:LGPL-2.0-or-later AND GPL-2.0-or-later
@@ -26,6 +27,7 @@
 URL:http://www.gnome.org/projects/totem/
 #Source0:   
http://download.gnome.org/sources/totem-pl-parser/3.26/%%{name}-%%{version}.tar.xz
 Source: %{name}-%{version}.tar.xz
+
 BuildRequires:  gtk-doc
 BuildRequires:  intltool
 BuildRequires:  libgcrypt-devel

++ _service ++
--- /var/tmp/diff_new_pack.ObgZli/_old  2019-11-24 00:00:13.779039315 +0100
+++ /var/tmp/diff_new_pack.ObgZli/_new  2019-11-24 00:00:13.783039315 +0100
@@ -2,9 +2,8 @@
   
 https://gitlab.gnome.org/GNOME/totem-pl-parser.git
 git
-refs/tags/V_3_26_3
-3.26.3
-enable
+refs/tags/V_3_26_4
+3.26.4
   
   
 *.tar

++ _servicedata ++
--- /var/tmp/diff_new_pack.ObgZli/_old  2019-11-24 00:00:13.835039321 +0100
+++ /var/tmp/diff_new_pack.ObgZli/_new  2019-11-24 00:00:13.835039321 +0100
@@ -3,4 +3,4 @@
 https://git.gnome.org/browse/totem-pl-parser
   0091a562f2299fc61943bf5b44ecd7c472288693
 https://gitlab.gnome.org/GNOME/totem-pl-parser.git
-  9cb2d6e2c8eaf17d77e19493c6f1fac34893232b
\ No newline at end of file
+  ea7238580d0d94a439295eb92890f6229a51c382
\ No newline at end of file

++ totem-pl-parser-3.26.3.tar.xz -> totem-pl-parser-3.26.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.3/.gitlab-ci.yml 
new/totem-pl-parser-3.26.4/.gitlab-ci.yml
--- old/totem-pl-parser-3.26.3/.gitlab-ci.yml   2019-03-05 13:51:28.0 
+0100
+++ new/totem-pl-parser-3.26.4/.gitlab-ci.yml   2019-11-12 16:07:37.0 
+0100
@@ -1,5 +1,6 @@
 variables:
-  DEPENDENCIES: redhat-rpm-config meson git gettext gtk-doc intltool meson 
glib2-devel libxml2-devel gobject-introspection-devel libgcrypt-devel 
libarchive-devel libquvi-devel
+  DEPENDENCIES: redhat-rpm-config meson git gettext gtk-doc intltool meson 
glib2-devel libxml2-devel gobject-introspection-devel libgcrypt-devel 
libarchive-devel
+  DEPS_QUVI: libquvi-devel
   TEST_DEPS: gvfs dbus-daemon
 
 build-fedora:
@@ -12,3 +13,9 @@
 - dnf install -y $TEST_DEPS
 - GIO_USE_VOLUME_MONITOR=unix dbus-run-session ninja -C _build test
 - ninja -C _build install
+# And now with quvi support
+- rm -rf _build
+- dnf install -y $DEPS_QUVI
+- meson _build
+- GIO_USE_VOLUME_MONITOR=unix dbus-run-session ninja -C _build test
+- ninja -C _build install
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.3/NEWS 
new/totem-pl-parser-3.26.4/NEWS
--- old/totem-pl-parser-3.26.3/NEWS 2019-03-05 13:51:28.0 +0100
+++ new/totem-pl-parser-3.26.4/NEWS 2019-11-12 16:07:37.0 +0100
@@ -1,5 +1,13 @@
 New features and significant updates in version...
 
+3.26.4:
+- Apply same check to remote text files as local ones, which should
+  fix parsing of directories on network file systems
+- Add totem_pl_parser_add_ignored_glob() API, to force ignore some
+  files depending on how they are named, before we even 

commit totem-pl-parser for openSUSE:Factory

2019-03-13 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2019-03-13 09:05:25

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new.28833 (New)


Package is "totem-pl-parser"

Wed Mar 13 09:05:25 2019 rev:80 rq:681758 version:3.26.3

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2019-01-26 22:16:44.183131947 +0100
+++ 
/work/SRC/openSUSE:Factory/.totem-pl-parser.new.28833/totem-pl-parser.changes   
2019-03-13 09:05:30.967446898 +0100
@@ -1,0 +2,6 @@
+Tue Mar  5 13:16:41 UTC 2019 - Bjørn Lie 
+
+- Update to version 3.26.3:
+  + Atom parsing bug fixes.
+
+---

Old:

  totem-pl-parser-3.26.2.tar.xz

New:

  totem-pl-parser-3.26.3.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.SsNyIl/_old  2019-03-13 09:05:33.087446679 +0100
+++ /var/tmp/diff_new_pack.SsNyIl/_new  2019-03-13 09:05:33.127446675 +0100
@@ -18,7 +18,7 @@
 
 %define sover   18
 Name:   totem-pl-parser
-Version:3.26.2
+Version:3.26.3
 Release:0
 Summary:A GObject-based library to parse playlist formats
 License:LGPL-2.0-or-later AND GPL-2.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.SsNyIl/_old  2019-03-13 09:05:33.475446639 +0100
+++ /var/tmp/diff_new_pack.SsNyIl/_new  2019-03-13 09:05:33.499446637 +0100
@@ -2,8 +2,8 @@
   
 https://gitlab.gnome.org/GNOME/totem-pl-parser.git
 git
-refs/tags/V_3_26_2
-3.26.2
+refs/tags/V_3_26_3
+3.26.3
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.SsNyIl/_old  2019-03-13 09:05:33.647446621 +0100
+++ /var/tmp/diff_new_pack.SsNyIl/_new  2019-03-13 09:05:33.663446619 +0100
@@ -3,4 +3,4 @@
 https://git.gnome.org/browse/totem-pl-parser
   0091a562f2299fc61943bf5b44ecd7c472288693
 https://gitlab.gnome.org/GNOME/totem-pl-parser.git
-  ef7b2548f87af6206623fa82e958c62e5aa51e7a
\ No newline at end of file
+  9cb2d6e2c8eaf17d77e19493c6f1fac34893232b
\ No newline at end of file

++ totem-pl-parser-3.26.2.tar.xz -> totem-pl-parser-3.26.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.2/.gitlab-ci.yml 
new/totem-pl-parser-3.26.3/.gitlab-ci.yml
--- old/totem-pl-parser-3.26.2/.gitlab-ci.yml   2019-01-16 12:47:53.0 
+0100
+++ new/totem-pl-parser-3.26.3/.gitlab-ci.yml   2019-03-05 13:51:28.0 
+0100
@@ -1,8 +1,14 @@
+variables:
+  DEPENDENCIES: redhat-rpm-config meson git gettext gtk-doc intltool meson 
glib2-devel libxml2-devel gobject-introspection-devel libgcrypt-devel 
libarchive-devel libquvi-devel
+  TEST_DEPS: gvfs dbus-daemon
+
 build-fedora:
   image: fedora:latest
   before_script:
-- dnf install -y redhat-rpm-config meson git gettext gtk-doc intltool 
meson glib2-devel libxml2-devel gobject-introspection-devel libgcrypt-devel 
libarchive-devel libsoup-devel libquvi-devel
+# Update
+- dnf -y update && dnf install -y $DEPENDENCIES
   script:
 - meson _build
-- ninja -C _build test
+- dnf install -y $TEST_DEPS
+- GIO_USE_VOLUME_MONITOR=unix dbus-run-session ninja -C _build test
 - ninja -C _build install
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.2/NEWS 
new/totem-pl-parser-3.26.3/NEWS
--- old/totem-pl-parser-3.26.2/NEWS 2019-01-16 12:47:53.0 +0100
+++ new/totem-pl-parser-3.26.3/NEWS 2019-03-05 13:51:28.0 +0100
@@ -1,5 +1,8 @@
 New features and significant updates in version...
 
+3.26.3:
+- Atom parsing bug fixes
+
 3.26.2:
 - Remove gmime dependency
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.2/meson.build 
new/totem-pl-parser-3.26.3/meson.build
--- old/totem-pl-parser-3.26.2/meson.build  2019-01-16 12:47:53.0 
+0100
+++ new/totem-pl-parser-3.26.3/meson.build  2019-03-05 13:51:28.0 
+0100
@@ -1,5 +1,5 @@
 project('totem-pl-parser', 'c',
-version: '3.26.2', # Don't forget to also change plparser_lt_version!
+version: '3.26.3', # Don't forget to also change plparser_lt_version!
 default_options: [
   'buildtype=debugoptimized',
   'warning_level=1',
@@ -14,7 +14,7 @@
 # - If binary compatibility has been broken (eg removed or changed interfaces)
 #   change to C+1:0:0
 # - If the interface is the same as the previous version, change to C:R+1:A
-plparser_lt_version='19:3:1'

commit totem-pl-parser for openSUSE:Factory

2019-01-26 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2019-01-26 22:16:41

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new.28833 (New)


Package is "totem-pl-parser"

Sat Jan 26 22:16:41 2019 rev:79 rq:91 version:3.26.2

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2018-08-03 12:31:24.119046168 +0200
+++ 
/work/SRC/openSUSE:Factory/.totem-pl-parser.new.28833/totem-pl-parser.changes   
2019-01-26 22:16:44.183131947 +0100
@@ -1,0 +2,9 @@
+Wed Jan 16 17:51:56 UTC 2019 - bjorn@gmail.com
+
+- Update to version 3.26.2:
+  + tests: Update for podcast URL change
+  + build: honor 'includedir' meson parameter
+  + Updated translations.
+- Add revision to _service file, check out explicit released tag.
+
+---

Old:

  totem-pl-parser-3.26.1+20180713.b7f36dd.tar.xz

New:

  totem-pl-parser-3.26.2.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.CBemd1/_old  2019-01-26 22:16:45.631130771 +0100
+++ /var/tmp/diff_new_pack.CBemd1/_new  2019-01-26 22:16:45.663130744 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package totem-pl-parser
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,13 +12,13 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %define sover   18
 Name:   totem-pl-parser
-Version:3.26.1+20180713.b7f36dd
+Version:3.26.2
 Release:0
 Summary:A GObject-based library to parse playlist formats
 License:LGPL-2.0-or-later AND GPL-2.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.CBemd1/_old  2019-01-26 22:16:45.927130530 +0100
+++ /var/tmp/diff_new_pack.CBemd1/_new  2019-01-26 22:16:45.943130517 +0100
@@ -2,7 +2,8 @@
   
 https://gitlab.gnome.org/GNOME/totem-pl-parser.git
 git
-3.26.1+%cd.%h
+refs/tags/V_3_26_2
+3.26.2
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.CBemd1/_old  2019-01-26 22:16:46.031130445 +0100
+++ /var/tmp/diff_new_pack.CBemd1/_new  2019-01-26 22:16:46.031130445 +0100
@@ -3,4 +3,4 @@
 https://git.gnome.org/browse/totem-pl-parser
   0091a562f2299fc61943bf5b44ecd7c472288693
 https://gitlab.gnome.org/GNOME/totem-pl-parser.git
-  b7f36dd71ee0ddfff04be1e90a654ddf13293d0f
\ No newline at end of file
+  ef7b2548f87af6206623fa82e958c62e5aa51e7a
\ No newline at end of file

++ totem-pl-parser-3.26.1+20180713.b7f36dd.tar.xz -> 
totem-pl-parser-3.26.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.1+20180713.b7f36dd/NEWS 
new/totem-pl-parser-3.26.2/NEWS
--- old/totem-pl-parser-3.26.1+20180713.b7f36dd/NEWS2018-07-13 
13:22:25.0 +0200
+++ new/totem-pl-parser-3.26.2/NEWS 2019-01-16 12:47:53.0 +0100
@@ -1,5 +1,8 @@
 New features and significant updates in version...
 
+3.26.2:
+- Remove gmime dependency
+
 3.26.1:
 - Fix small memory leaks
 - Add support for "medium" property in podcasts
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.1+20180713.b7f36dd/meson.build 
new/totem-pl-parser-3.26.2/meson.build
--- old/totem-pl-parser-3.26.1+20180713.b7f36dd/meson.build 2018-07-13 
13:22:25.0 +0200
+++ new/totem-pl-parser-3.26.2/meson.build  2019-01-16 12:47:53.0 
+0100
@@ -1,5 +1,5 @@
 project('totem-pl-parser', 'c',
-version: '3.26.1', # Don't forget to also change plparser_lt_version!
+version: '3.26.2', # Don't forget to also change plparser_lt_version!
 default_options: [
   'buildtype=debugoptimized',
   'warning_level=1',
@@ -14,7 +14,7 @@
 # - If binary compatibility has been broken (eg removed or changed interfaces)
 #   change to C+1:0:0
 # - If the interface is the same as the previous version, change to C:R+1:A
-plparser_lt_version='19:2:1'
+plparser_lt_version='19:3:1'
 
 plparse_version   = meson.project_version()
 plparse_major_version = plparse_version.split('.')[0].to_int()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit totem-pl-parser for openSUSE:Factory

2018-08-03 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2018-08-03 12:31:20

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Fri Aug  3 12:31:20 2018 rev:78 rq:626767 version:3.26.1+20180713.b7f36dd

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2018-06-22 13:27:35.907915162 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2018-08-03 12:31:24.119046168 +0200
@@ -1,0 +2,10 @@
+Sat Jul 28 10:31:09 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.26.1+20180713.b7f36dd:
+  + build: Add CI
+  + podcast: Remove GMIME dependency
+- Drop pkgconfig(gmime-3.0) BuildRequires and stop passing
+  disable-gmime-i-know-what-im-doing=false to meson: No longer
+  needed after upstream changes.
+
+---

Old:

  totem-pl-parser-3.26.1+20180614.d22b155.tar.xz

New:

  totem-pl-parser-3.26.1+20180713.b7f36dd.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.aVeWUc/_old  2018-08-03 12:31:24.507046739 +0200
+++ /var/tmp/diff_new_pack.aVeWUc/_new  2018-08-03 12:31:24.511046745 +0200
@@ -18,7 +18,7 @@
 
 %define sover   18
 Name:   totem-pl-parser
-Version:3.26.1+20180614.d22b155
+Version:3.26.1+20180713.b7f36dd
 Release:0
 Summary:A GObject-based library to parse playlist formats
 License:LGPL-2.0-or-later AND GPL-2.0-or-later
@@ -33,7 +33,6 @@
 BuildRequires:  pkgconfig
 BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(glib-2.0) >= 2.31.0
-BuildRequires:  pkgconfig(gmime-3.0)
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libarchive) >= 3.0
 BuildRequires:  pkgconfig(libquvi-0.9) >= 0.9.1
@@ -97,7 +96,6 @@
 
 %build
 %meson \
--D disable-gmime-i-know-what-im-doing=false \
 -D enable-quvi=yes \
 -D enable-libarchive=yes \
 -D enable-libgcrypt=yes \

++ _servicedata ++
--- /var/tmp/diff_new_pack.aVeWUc/_old  2018-08-03 12:31:24.547046798 +0200
+++ /var/tmp/diff_new_pack.aVeWUc/_new  2018-08-03 12:31:24.547046798 +0200
@@ -3,4 +3,4 @@
 https://git.gnome.org/browse/totem-pl-parser
   0091a562f2299fc61943bf5b44ecd7c472288693
 https://gitlab.gnome.org/GNOME/totem-pl-parser.git
-  d22b15599ff8554377e0dab493673754f615b49d
\ No newline at end of file
+  b7f36dd71ee0ddfff04be1e90a654ddf13293d0f
\ No newline at end of file

++ totem-pl-parser-3.26.1+20180614.d22b155.tar.xz -> 
totem-pl-parser-3.26.1+20180713.b7f36dd.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/totem-pl-parser-3.26.1+20180614.d22b155/.gitlab-ci.yml 
new/totem-pl-parser-3.26.1+20180713.b7f36dd/.gitlab-ci.yml
--- old/totem-pl-parser-3.26.1+20180614.d22b155/.gitlab-ci.yml  1970-01-01 
01:00:00.0 +0100
+++ new/totem-pl-parser-3.26.1+20180713.b7f36dd/.gitlab-ci.yml  2018-07-13 
13:22:25.0 +0200
@@ -0,0 +1,8 @@
+build-fedora:
+  image: fedora:latest
+  before_script:
+- dnf install -y redhat-rpm-config meson git gettext gtk-doc intltool 
meson glib2-devel libxml2-devel gobject-introspection-devel libgcrypt-devel 
libarchive-devel libsoup-devel libquvi-devel
+  script:
+- meson _build
+- ninja -C _build test
+- ninja -C _build install
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.1+20180614.d22b155/README 
new/totem-pl-parser-3.26.1+20180713.b7f36dd/README
--- old/totem-pl-parser-3.26.1+20180614.d22b155/README  2018-06-14 
12:21:26.0 +0200
+++ new/totem-pl-parser-3.26.1+20180713.b7f36dd/README  2018-07-13 
13:22:25.0 +0200
@@ -16,7 +16,6 @@
 
 
 glib >= 2.36
-gmime >= 2.6 or >= 3.0
 libxml2
 
 libquvi >= 0.9.1 (optional)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.1+20180614.d22b155/meson.build 
new/totem-pl-parser-3.26.1+20180713.b7f36dd/meson.build
--- old/totem-pl-parser-3.26.1+20180614.d22b155/meson.build 2018-06-14 
12:21:26.0 +0200
+++ new/totem-pl-parser-3.26.1+20180713.b7f36dd/meson.build 2018-07-13 
13:22:25.0 +0200
@@ -136,37 +136,6 @@
   endif
 endforeach
 
-# gmime dependency
-enable_gmime = not get_option('disable-gmime-i-know-what-im-doing')
-if enable_gmime
-   have_gmime3 = false
-   gmime_dep = dependency('gmime-3.0', required : false)
-   if gmime_dep.found()
- 

commit totem-pl-parser for openSUSE:Factory

2018-06-22 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2018-06-22 13:27:30

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Fri Jun 22 13:27:30 2018 rev:77 rq:617319 version:3.26.1+20180614.d22b155

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2018-04-19 15:24:25.111446681 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2018-06-22 13:27:35.907915162 +0200
@@ -1,0 +2,9 @@
+Fri Jun 15 08:41:01 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.26.1+20180614.d22b155:
+  + docs: Add headers to the ignore list
+  + core: Fix compile-time warnings in XML parser
+  + Update translations.
+- Update service to point to new gitlab home.
+
+---
@@ -7 +16 @@
-Thu Mar 22 23:22:40 UTC 2018 - opensuse-packag...@opensuse.org
+Thu Mar 22 23:22:40 UTC 2018 - bjorn@gmail.com

Old:

  totem-pl-parser-3.26.0+20180301.0091a56.tar.xz

New:

  totem-pl-parser-3.26.1+20180614.d22b155.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.8Ts93H/_old  2018-06-22 13:27:36.515892692 +0200
+++ /var/tmp/diff_new_pack.8Ts93H/_new  2018-06-22 13:27:36.519892545 +0200
@@ -18,7 +18,7 @@
 
 %define sover   18
 Name:   totem-pl-parser
-Version:3.26.0+20180301.0091a56
+Version:3.26.1+20180614.d22b155
 Release:0
 Summary:A GObject-based library to parse playlist formats
 License:LGPL-2.0-or-later AND GPL-2.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.8Ts93H/_old  2018-06-22 13:27:36.551891362 +0200
+++ /var/tmp/diff_new_pack.8Ts93H/_new  2018-06-22 13:27:36.551891362 +0200
@@ -1,8 +1,8 @@
 
   
-https://git.gnome.org/browse/totem-pl-parser
+https://gitlab.gnome.org/GNOME/totem-pl-parser.git
 git
-3.26.0+%cd.%h
+3.26.1+%cd.%h
 enable
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.8Ts93H/_old  2018-06-22 13:27:36.575890475 +0200
+++ /var/tmp/diff_new_pack.8Ts93H/_new  2018-06-22 13:27:36.579890327 +0200
@@ -1,4 +1,6 @@
 
 
 https://git.gnome.org/browse/totem-pl-parser
-  0091a562f2299fc61943bf5b44ecd7c472288693
\ No newline at end of file
+  0091a562f2299fc61943bf5b44ecd7c472288693
+https://gitlab.gnome.org/GNOME/totem-pl-parser.git
+  d22b15599ff8554377e0dab493673754f615b49d
\ No newline at end of file

++ totem-pl-parser-3.26.0+20180301.0091a56.tar.xz -> 
totem-pl-parser-3.26.1+20180614.d22b155.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.0+20180301.0091a56/NEWS 
new/totem-pl-parser-3.26.1+20180614.d22b155/NEWS
--- old/totem-pl-parser-3.26.0+20180301.0091a56/NEWS2018-03-01 
12:09:09.0 +0100
+++ new/totem-pl-parser-3.26.1+20180614.d22b155/NEWS2018-06-14 
12:21:26.0 +0200
@@ -1,5 +1,11 @@
 New features and significant updates in version...
 
+3.26.1:
+- Fix small memory leaks
+- Add support for "medium" property in podcasts
+- Allow players to handle MJPEG streams
+- Updated translations
+
 3.26.0:
 - Updated translations
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/totem-pl-parser-3.26.0+20180301.0091a56/docs/reference/meson.build 
new/totem-pl-parser-3.26.1+20180614.d22b155/docs/reference/meson.build
--- old/totem-pl-parser-3.26.0+20180301.0091a56/docs/reference/meson.build  
2018-03-01 12:09:09.0 +0100
+++ new/totem-pl-parser-3.26.1+20180614.d22b155/docs/reference/meson.build  
2018-06-14 12:21:26.0 +0200
@@ -1,4 +1,24 @@
 private_headers = [
+'xmllexer.h',
+'totem-pl-parser-media.h',
+'totem-pl-parser-xspf.h',
+'totem-pl-parser-podcast.h',
+'totem-pl-parser-private.h',
+'totem-pl-parser-smil.h',
+'totem-pl-parser-mini.h',
+'totem-pl-parser-lines.h',
+'totem-pl-parser-amz.h',
+'totem-disc.h',
+'totem-pl-parser-pls.h',
+'totem-pl-parser-misc.h',
+'xmlparser.h',
+'totem-pl-parser-qt.h',
+'totem-pl-parser-pla.h',
+'totem-pl-parser-wm.h',
+'bswap.h',
+'totem-pl-parser-videosite.h',
+'totem_internal.h',
+'totemplparser-marshal.h'
 ]
 
 configure_file(input: 'version.xml.in',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.26.0+20180301.0091a56/meson.build 
new/totem-pl-parser-3.26.1+20180614.d22b155/meson.build
--- 

commit totem-pl-parser for openSUSE:Factory

2018-04-19 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2018-04-19 15:24:23

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Thu Apr 19 15:24:23 2018 rev:76 rq:596157 version:3.26.0+20180301.0091a56

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2018-03-30 11:56:37.141174217 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2018-04-19 15:24:25.111446681 +0200
@@ -1,0 +2,5 @@
+Tue Apr 10 23:15:42 UTC 2018 - jeng...@inai.de
+
+- Ensure neutrality of descriptions. Update summaries.
+
+---



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.FMh2d8/_old  2018-04-19 15:24:25.679423669 +0200
+++ /var/tmp/diff_new_pack.FMh2d8/_new  2018-04-19 15:24:25.683423507 +0200
@@ -20,7 +20,7 @@
 Name:   totem-pl-parser
 Version:3.26.0+20180301.0091a56
 Release:0
-Summary:A simple GObject-based library to parse playlist formats
+Summary:A GObject-based library to parse playlist formats
 License:LGPL-2.0-or-later AND GPL-2.0-or-later
 Group:  Productivity/Multimedia/Video/Players
 URL:http://www.gnome.org/projects/totem/
@@ -42,51 +42,51 @@
 Recommends: %{name}-lang
 
 %description
-totem-pl-parser is a simple GObject-based library to parse a host of
+totem-pl-parser is a GObject-based library to parse a host of
 playlist formats, to save them too.
 
 %package -n libtotem-plparser%{sover}
-Summary:A simple GObject-based library to parse playlist formats
+Summary:A GObject-based library to parse playlist formats
 # Main package contains libexec files needed for full functionality
 Group:  System/Libraries
 Requires:   %{name} >= %{version}
 
 %description -n libtotem-plparser%{sover}
-totem-pl-parser is a simple GObject-based library to parse a host of
+totem-pl-parser is a GObject-based library to parse a host of
 playlist formats, to save them too.
 
 %package -n typelib-1_0-TotemPlParser-1_0
-Summary:Introspection bindings for libtotem-plparser
+Summary:Introspection bindings for the Totem playlist parser library
 # Main package contains libexec files needed for full functionality
 Group:  System/Libraries
 Requires:   %{name} >= %{version}
 
 %description -n typelib-1_0-TotemPlParser-1_0
-totem-pl-parser is a simple GObject-based library to parse a host of
+totem-pl-parser is a GObject-based library to parse a host of
 playlist formats, to save them too.
 
 This package provides the GObject Introspection bindings for the
 totem-pl-parser library.
 
 %package -n libtotem-plparser-mini%{sover}
-Summary:A simple GObject-based library to parse playlist formats -- 
Mini version
+Summary:Mini version of the Totem playlist parser library
 # Main package contains libexec files needed for full functionality
 Group:  System/Libraries
 Requires:   %{name} >= %{version}
 
 %description -n libtotem-plparser-mini%{sover}
-totem-pl-parser is a simple GObject-based library to parse a host of
+totem-pl-parser is a GObject-based library to parse a host of
 playlist formats, to save them too.
 
 %package devel
-Summary:A simple GObject-based library to parse playlist formats
+Summary:Development files for the Totem playlist parser library
 Group:  Development/Libraries/GNOME
 Requires:   libtotem-plparser%{sover} = %{version}
 Requires:   libtotem-plparser-mini%{sover} = %{version}
 Requires:   typelib-1_0-TotemPlParser-1_0 = %{version}
 
 %description devel
-totem-pl-parser is a simple GObject-based library to parse a host of
+totem-pl-parser is a GObject-based library to parse a host of
 playlist formats, to save them too.
 
 %lang_package




commit totem-pl-parser for openSUSE:Factory

2018-03-30 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2018-03-30 11:56:32

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Fri Mar 30 11:56:32 2018 rev:75 rq:592261 version:3.26.0+20180301.0091a56

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2018-03-26 12:37:30.844682104 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2018-03-30 11:56:37.141174217 +0200
@@ -1,0 +2,17 @@
+Thu Mar 22 23:22:40 UTC 2018 - opensuse-packag...@opensuse.org
+
+- Update to version 3.26.0+20180301.0091a56:
+  + plparse: Don't consider MJPEG streams as JPEG images.
+  + build: Remove libsoup dependency.
+  + podcast: Add support for "medium" property.
+  + videosite: Fix leak in totem_pl_parser_add_videosite.
+  + Updated translations.
+- Switch to git checkout via source service.
+- Drop pkgconfig(libsoup-2.4) BuildRequires following upstreams
+  changes.
+- Use autosetup macro.
+- Pass explicit disable-gmime-i-know-what-im-doing=false,
+  enable-quvi=yes, enable-libarchive=yes and enable-libgcrypt=yes
+  to meson, make sure we build the features we want.
+
+---

Old:

  totem-pl-parser-3.26.0.tar.xz

New:

  _service
  _servicedata
  totem-pl-parser-3.26.0+20180301.0091a56.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.wofk0l/_old  2018-03-30 11:56:38.185136462 +0200
+++ /var/tmp/diff_new_pack.wofk0l/_new  2018-03-30 11:56:38.185136462 +0200
@@ -18,13 +18,14 @@
 
 %define sover   18
 Name:   totem-pl-parser
-Version:3.26.0
+Version:3.26.0+20180301.0091a56
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0-or-later AND GPL-2.0-or-later
 Group:  Productivity/Multimedia/Video/Players
 URL:http://www.gnome.org/projects/totem/
-Source0:
http://download.gnome.org/sources/totem-pl-parser/3.26/%{name}-%{version}.tar.xz
+#Source0:   
http://download.gnome.org/sources/totem-pl-parser/3.26/%%{name}-%%{version}.tar.xz
+Source: %{name}-%{version}.tar.xz
 BuildRequires:  gtk-doc
 BuildRequires:  intltool
 BuildRequires:  libgcrypt-devel
@@ -36,7 +37,6 @@
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libarchive) >= 3.0
 BuildRequires:  pkgconfig(libquvi-0.9) >= 0.9.1
-BuildRequires:  pkgconfig(libsoup-2.4) >= 2.43.0
 BuildRequires:  pkgconfig(libxml-2.0)
 Requires:   libquvi-scripts
 Recommends: %{name}-lang
@@ -92,12 +92,16 @@
 %lang_package
 
 %prep
-%setup -q
+%autosetup
 translation-update-upstream
 
 %build
 %meson \
-   -Denable-gtk-doc=true \
+-D disable-gmime-i-know-what-im-doing=false \
+-D enable-quvi=yes \
+-D enable-libarchive=yes \
+-D enable-libgcrypt=yes \
+-D enable-gtk-doc=true \
%{nil}
 %meson_build
 
@@ -107,6 +111,7 @@
 
 %post   -n libtotem-plparser%{sover} -p /sbin/ldconfig
 %postun -n libtotem-plparser%{sover} -p /sbin/ldconfig
+
 %post   -n libtotem-plparser-mini%{sover} -p /sbin/ldconfig
 %postun -n libtotem-plparser-mini%{sover} -p /sbin/ldconfig
 

++ _service ++

  
https://git.gnome.org/browse/totem-pl-parser
git
3.26.0+%cd.%h
enable
  
  
*.tar
xz
  
  

++ _servicedata ++


https://git.gnome.org/browse/totem-pl-parser
  0091a562f2299fc61943bf5b44ecd7c472288693


commit totem-pl-parser for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2018-03-26 12:37:29

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Mon Mar 26 12:37:29 2018 rev:74 rq:589959 version:3.26.0

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2018-03-08 10:45:57.114280257 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2018-03-26 12:37:30.844682104 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 16:46:28 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.YGgmvW/_old  2018-03-26 12:37:32.524621364 +0200
+++ /var/tmp/diff_new_pack.YGgmvW/_new  2018-03-26 12:37:32.528621219 +0200
@@ -30,6 +30,7 @@
 BuildRequires:  libgcrypt-devel
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(glib-2.0) >= 2.31.0
 BuildRequires:  pkgconfig(gmime-3.0)
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
@@ -39,9 +40,6 @@
 BuildRequires:  pkgconfig(libxml-2.0)
 Requires:   libquvi-scripts
 Recommends: %{name}-lang
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 totem-pl-parser is a simple GObject-based library to parse a host of
@@ -95,9 +93,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 
 %build
 %meson \




commit totem-pl-parser for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2018-03-08 10:45:54

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Thu Mar  8 10:45:54 2018 rev:73 rq:582786 version:3.26.0

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2017-09-15 21:07:46.537439334 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2018-03-08 10:45:57.114280257 +0100
@@ -1,0 +2,5 @@
+Mon Feb 26 11:48:52 UTC 2018 - dims...@opensuse.org
+
+- Use SPDX3.0 license tags and package COPYING as %license.
+
+---



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.Z0qz6c/_old  2018-03-08 10:45:57.658260672 +0100
+++ /var/tmp/diff_new_pack.Z0qz6c/_new  2018-03-08 10:45:57.658260672 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package totem-pl-parser
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -16,22 +16,20 @@
 #
 
 
+%define sover   18
 Name:   totem-pl-parser
 Version:3.26.0
 Release:0
-%define sover   18
 Summary:A simple GObject-based library to parse playlist formats
-License:LGPL-2.0+ AND GPL-2.0+
+License:LGPL-2.0-or-later AND GPL-2.0-or-later
 Group:  Productivity/Multimedia/Video/Players
-Url:http://www.gnome.org/projects/totem/
+URL:http://www.gnome.org/projects/totem/
 Source0:
http://download.gnome.org/sources/totem-pl-parser/3.26/%{name}-%{version}.tar.xz
 BuildRequires:  gtk-doc
 BuildRequires:  intltool
 BuildRequires:  libgcrypt-devel
 BuildRequires:  meson
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(glib-2.0) >= 2.31.0
 BuildRequires:  pkgconfig(gmime-3.0)
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
@@ -40,8 +38,10 @@
 BuildRequires:  pkgconfig(libsoup-2.4) >= 2.43.0
 BuildRequires:  pkgconfig(libxml-2.0)
 Requires:   libquvi-scripts
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Recommends: %{name}-lang
+%if !0%{?is_opensuse}
+BuildRequires:  translation-update-upstream
+%endif
 
 %description
 totem-pl-parser is a simple GObject-based library to parse a host of
@@ -92,6 +92,7 @@
 playlist formats, to save them too.
 
 %lang_package
+
 %prep
 %setup -q
 %if !0%{?is_opensuse}
@@ -110,29 +111,24 @@
 
 %post   -n libtotem-plparser%{sover} -p /sbin/ldconfig
 %postun -n libtotem-plparser%{sover} -p /sbin/ldconfig
-
 %post   -n libtotem-plparser-mini%{sover} -p /sbin/ldconfig
 %postun -n libtotem-plparser-mini%{sover} -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
 %dir %{_libexecdir}/totem-pl-parser/
 %{_libexecdir}/totem-pl-parser/99-totem-pl-parser-videosite
 
 %files -n libtotem-plparser%{sover}
-%defattr(-, root, root)
+%license COPYING.LIB
 %{_libdir}/libtotem-plparser.so.*
 
 %files -n typelib-1_0-TotemPlParser-1_0
-%defattr(-,root,root)
 %{_libdir}/girepository-1.0/TotemPlParser-1.0.typelib
 
 %files -n libtotem-plparser-mini%{sover}
-%defattr(-, root, root)
 %{_libdir}/libtotem-plparser-mini.so.*
 
 %files devel
-%defattr(-, root, root)
 %{_includedir}/totem-pl-parser/
 %{_libdir}/libtotem-plparser.so
 %{_libdir}/libtotem-plparser-mini.so




commit totem-pl-parser for openSUSE:Factory

2017-09-15 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2017-09-15 21:07:45

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Fri Sep 15 21:07:45 2017 rev:72 rq:526335 version:3.26.0

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2017-09-04 12:24:12.337729947 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2017-09-15 21:07:46.537439334 +0200
@@ -1,0 +2,6 @@
+Thu Sep 14 16:11:52 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.26.0:
+  + Updated translations.
+
+---

Old:

  totem-pl-parser-3.25.90.tar.xz

New:

  totem-pl-parser-3.26.0.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.cWoShN/_old  2017-09-15 21:07:47.081362970 +0200
+++ /var/tmp/diff_new_pack.cWoShN/_new  2017-09-15 21:07:47.089361846 +0200
@@ -17,14 +17,14 @@
 
 
 Name:   totem-pl-parser
-Version:3.25.90
+Version:3.26.0
 Release:0
 %define sover   18
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+ AND GPL-2.0+
 Group:  Productivity/Multimedia/Video/Players
 Url:http://www.gnome.org/projects/totem/
-Source0:
http://download.gnome.org/sources/totem-pl-parser/3.25/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/totem-pl-parser/3.26/%{name}-%{version}.tar.xz
 BuildRequires:  gtk-doc
 BuildRequires:  intltool
 BuildRequires:  libgcrypt-devel

++ totem-pl-parser-3.25.90.tar.xz -> totem-pl-parser-3.26.0.tar.xz ++
 3098 lines of diff (skipped)




commit totem-pl-parser for openSUSE:Factory

2017-09-04 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2017-09-04 12:24:10

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Mon Sep  4 12:24:10 2017 rev:71 rq:519309 version:3.25.90

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2017-06-30 18:37:46.252877928 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2017-09-04 12:24:12.337729947 +0200
@@ -1,0 +2,39 @@
+Tue Aug 29 10:52:27 UTC 2017 - dims...@opensuse.org
+
+- Update license following legal review: LGPL-2.1+ AND GPL-2.0+.
+
+---
+Mon Aug 14 18:56:34 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.25.90:
+  + Correct the soname of the install library.
+  + Fix TOTEM_PL_PARSER_CHECK_VERSION() being missing.
+  + Fix a small memory leak checking for videosite scripts and
+document the internal API.
+  + Remove a number of obsolete files.
+- Drop totem-pl-parser-header.patch: Fixed upstream.
+- Conditionally apply translations-update-upstream BuildRequires
+  and macro for non-openSUSE only.
+- Set sover define to 18, upstream have sorted out it's versioning.
+
+---
+Thu Jun 22 10:33:32 UTC 2017 - dims...@opensuse.org
+
+- Update to version 3.25.3:
+  + Use meson instead of autotools as a build tool.
+- Port to meson build system:
+  + Add meson and gtk-doc BuildRequires.
+  + use meson relevant macros in place of
+configure/make/make_install.
+  + Delete %{_libdir}/pkgconfig/totem-pl-parser.spec: this file is
+being installed by error (bgo#784086).
+- Introduce sover defines, set to 19_0_1, used for the shared
+  library packages. Before setting the variable, the value would
+  have beeen '18'. This resolts in renaming of the SLPP packages to
+  *19_0_1.
+- Add totem-pl-parser-header.patch: Use the header template to
+  create the actual header file.
+- Replace pkgconfig(gmime-2.6) with pkgconfig(gmime-3.0) following
+  upstream changes.
+
+---

Old:

  totem-pl-parser-3.10.8.tar.xz

New:

  totem-pl-parser-3.25.90.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.jn8dqb/_old  2017-09-04 12:24:13.417578132 +0200
+++ /var/tmp/diff_new_pack.jn8dqb/_new  2017-09-04 12:24:13.421577569 +0200
@@ -17,18 +17,23 @@
 
 
 Name:   totem-pl-parser
-Version:3.10.8
+Version:3.25.90
 Release:0
+%define sover   18
 Summary:A simple GObject-based library to parse playlist formats
-License:LGPL-2.0+
+License:LGPL-2.0+ AND GPL-2.0+
 Group:  Productivity/Multimedia/Video/Players
 Url:http://www.gnome.org/projects/totem/
-Source0:
http://download.gnome.org/sources/totem-pl-parser/3.10/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/totem-pl-parser/3.25/%{name}-%{version}.tar.xz
+BuildRequires:  gtk-doc
 BuildRequires:  intltool
 BuildRequires:  libgcrypt-devel
+BuildRequires:  meson
+%if !0%{?is_opensuse}
 BuildRequires:  translation-update-upstream
+%endif
 BuildRequires:  pkgconfig(glib-2.0) >= 2.31.0
-BuildRequires:  pkgconfig(gmime-2.6)
+BuildRequires:  pkgconfig(gmime-3.0)
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libarchive) >= 3.0
 BuildRequires:  pkgconfig(libquvi-0.9) >= 0.9.1
@@ -42,18 +47,18 @@
 totem-pl-parser is a simple GObject-based library to parse a host of
 playlist formats, to save them too.
 
-%package -n libtotem-plparser18
+%package -n libtotem-plparser%{sover}
 Summary:A simple GObject-based library to parse playlist formats
 # Main package contains libexec files needed for full functionality
 Group:  System/Libraries
 Requires:   %{name} >= %{version}
 
-%description -n libtotem-plparser18
+%description -n libtotem-plparser%{sover}
 totem-pl-parser is a simple GObject-based library to parse a host of
 playlist formats, to save them too.
 
 %package -n typelib-1_0-TotemPlParser-1_0
-Summary:A simple GObject-based library to parse playlist formats -- 
Introspection bindings
+Summary:Introspection bindings for libtotem-plparser
 # Main package contains libexec files needed for full functionality
 Group:  System/Libraries
 Requires:   %{name} >= %{version}
@@ -65,21 +70,21 @@
 This package provides the GObject Introspection bindings for the
 totem-pl-parser library.
 
-%package -n libtotem-plparser-mini18
+%package -n 

commit totem-pl-parser for openSUSE:Factory

2017-06-30 Thread root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2017-06-30 18:37:42

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Fri Jun 30 18:37:42 2017 rev:70 rq:505745 version:3.10.8

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2016-09-21 18:42:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2017-06-30 18:37:46.252877928 +0200
@@ -1,0 +2,12 @@
+Wed Jun 21 18:18:07 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.10.8:
+  + Use Unicode in translatable strings.
+  + Autotools build changes.
+  + Enable videosite support even without quvi.
+  + Port from GSimpleAsyncResult to GTask.
+  + Fix shadowed URI variable in PLA parser.
+  + Add support for GMime 3.0 API.
+  + Updated translations.
+
+---

Old:

  totem-pl-parser-3.10.7.tar.xz

New:

  totem-pl-parser-3.10.8.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.tGTJQ3/_old  2017-06-30 18:37:46.832796359 +0200
+++ /var/tmp/diff_new_pack.tGTJQ3/_new  2017-06-30 18:37:46.832796359 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package totem-pl-parser
 #
-# Copyright (c) 2016 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
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.10.7
+Version:3.10.8
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+
@@ -44,8 +44,8 @@
 
 %package -n libtotem-plparser18
 Summary:A simple GObject-based library to parse playlist formats
-Group:  System/Libraries
 # Main package contains libexec files needed for full functionality
+Group:  System/Libraries
 Requires:   %{name} >= %{version}
 
 %description -n libtotem-plparser18
@@ -54,8 +54,8 @@
 
 %package -n typelib-1_0-TotemPlParser-1_0
 Summary:A simple GObject-based library to parse playlist formats -- 
Introspection bindings
-Group:  System/Libraries
 # Main package contains libexec files needed for full functionality
+Group:  System/Libraries
 Requires:   %{name} >= %{version}
 
 %description -n typelib-1_0-TotemPlParser-1_0
@@ -67,8 +67,8 @@
 
 %package -n libtotem-plparser-mini18
 Summary:A simple GObject-based library to parse playlist formats -- 
Mini version
-Group:  System/Libraries
 # Main package contains libexec files needed for full functionality
+Group:  System/Libraries
 Requires:   %{name} >= %{version}
 
 %description -n libtotem-plparser-mini18

++ totem-pl-parser-3.10.7.tar.xz -> totem-pl-parser-3.10.8.tar.xz ++
 11990 lines of diff (skipped)




commit totem-pl-parser for openSUSE:Factory

2016-09-21 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2016-09-21 18:42:47

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2015-12-27 01:57:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2016-09-21 18:42:50.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep 20 12:01:47 UTC 2016 - dims...@opensuse.org
+
+- Update to 3.10.7:
+  + Don't consider M3U playlists as text/plain.
+  + Simplify ITMS link parsing.
+  + Fix mmap error checking.
+  + Build fixes.
+
+---

Old:

  totem-pl-parser-3.10.6.tar.xz

New:

  totem-pl-parser-3.10.7.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.xRVS2y/_old  2016-09-21 18:42:51.0 +0200
+++ /var/tmp/diff_new_pack.xRVS2y/_new  2016-09-21 18:42:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package totem-pl-parser
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.10.6
+Version:3.10.7
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

++ totem-pl-parser-3.10.6.tar.xz -> totem-pl-parser-3.10.7.tar.xz ++
 3990 lines of diff (skipped)




commit totem-pl-parser for openSUSE:Factory

2015-12-26 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2015-12-27 01:57:07

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is "totem-pl-parser"

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2015-05-05 00:54:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2015-12-27 01:57:08.0 +0100
@@ -1,0 +2,9 @@
+Tue Dec 15 15:45:23 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.10.6:
+  + Fix a number of bugs in iTunes link handling and M3U and HLS
+playlist parsing.
+  + Make it possible to use an alternate helper script to the
+default quvi based one.
+
+---

Old:

  totem-pl-parser-3.10.5.tar.xz

New:

  totem-pl-parser-3.10.6.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.nJCDog/_old  2015-12-27 01:57:09.0 +0100
+++ /var/tmp/diff_new_pack.nJCDog/_new  2015-12-27 01:57:09.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.10.5
+Version:3.10.6
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+
@@ -114,7 +114,8 @@
 
 %files
 %defattr(-,root,root)
-%{_libexecdir}/totem-pl-parser-videosite
+%dir %{_libexecdir}/totem-pl-parser/
+%{_libexecdir}/totem-pl-parser/99-totem-pl-parser-videosite
 
 %files -n libtotem-plparser18
 %defattr(-, root, root)

++ totem-pl-parser-3.10.5.tar.xz -> totem-pl-parser-3.10.6.tar.xz ++
 26064 lines of diff (skipped)




commit totem-pl-parser for openSUSE:Factory

2015-05-04 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2015-05-05 00:54:58

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2015-02-23 13:22:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2015-05-05 00:54:59.0 +0200
@@ -1,0 +2,7 @@
+Thu Apr 30 14:17:22 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.10.5:
+  + Don't handle HLS playlists served as m3u8.
+  + Updated translations.
+
+---

Old:

  totem-pl-parser-3.10.4.tar.xz

New:

  totem-pl-parser-3.10.5.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.JfVEuB/_old  2015-05-05 00:55:00.0 +0200
+++ /var/tmp/diff_new_pack.JfVEuB/_new  2015-05-05 00:55:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.10.4
+Version:3.10.5
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

++ totem-pl-parser-3.10.4.tar.xz - totem-pl-parser-3.10.5.tar.xz ++
 5326 lines of diff (skipped)




commit totem-pl-parser for openSUSE:Factory

2015-02-23 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2015-02-23 13:21:58

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2014-09-30 19:37:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2015-02-23 13:22:00.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb 17 14:43:10 UTC 2015 - dims...@opensuse.org
+
+- Update to version 3.10.4:
+  + Fix parsing of Windows-style SMB playlists.
+  + Add support for EXTVLCOPT:audio-track-id in m3u files.
+  + Fix parsing of SMIL playlists.
+
+---

Old:

  totem-pl-parser-3.10.3.tar.xz

New:

  totem-pl-parser-3.10.4.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.Nr5Uji/_old  2015-02-23 13:22:01.0 +0100
+++ /var/tmp/diff_new_pack.Nr5Uji/_new  2015-02-23 13:22:01.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package totem-pl-parser
 #
-# 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
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.10.3
+Version:3.10.4
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

++ totem-pl-parser-3.10.3.tar.xz - totem-pl-parser-3.10.4.tar.xz ++
 8449 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2014-09-30 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2014-09-30 19:37:19

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2014-03-25 13:28:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2014-09-30 19:37:44.0 +0200
@@ -1,0 +2,11 @@
+Mon Sep 22 08:19:36 UTC 2014 - dims...@opensuse.org
+
+- Update to version 3.10.3:
+  + Ignore partially downloaded files when recursing.
+  + Fix crash when passing a broken URI.
+  + Fix potential integer overflow when parsing long durations.
+  + Fix potential crash when parsing RTSPtext QuickTime files.
+  + Fix parsing of Windows Media files.
+  + Updated translations.
+
+---

Old:

  totem-pl-parser-3.10.2.tar.xz

New:

  totem-pl-parser-3.10.3.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.eIbSDH/_old  2014-09-30 19:37:44.0 +0200
+++ /var/tmp/diff_new_pack.eIbSDH/_new  2014-09-30 19:37:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.10.2
+Version:3.10.3
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

++ totem-pl-parser-3.10.2.tar.xz - totem-pl-parser-3.10.3.tar.xz ++
 10133 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2014-03-25 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2014-03-25 13:28:50

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2014-03-10 12:44:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2014-03-25 13:28:51.0 +0100
@@ -1,0 +2,7 @@
+Mon Mar 24 15:23:07 UTC 2014 - dims...@opensuse.org
+
+- Update to version 3.10.2:
+  + Build fixes.
+  + Updated translations.
+
+---

Old:

  totem-pl-parser-3.10.1.tar.xz

New:

  totem-pl-parser-3.10.2.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.QXyVub/_old  2014-03-25 13:28:52.0 +0100
+++ /var/tmp/diff_new_pack.QXyVub/_new  2014-03-25 13:28:52.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.10.1
+Version:3.10.2
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

++ totem-pl-parser-3.10.1.tar.xz - totem-pl-parser-3.10.2.tar.xz ++
 11832 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2014-03-10 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2014-03-10 12:44:50

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2014-02-12 11:08:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2014-03-10 12:44:51.0 +0100
@@ -1,0 +2,10 @@
+Sat Mar  8 11:13:05 UTC 2014 - zai...@opensuse.org
+
+- Update to version 3.10.1:
+  + Build fixes.
+  + Fix possible crash parsing iTunes podcasts.
+  + Add support for detecting Blu-ray discs.
+  + Add images to RSS feeds.
+  + Support non-ASCII characters for video sites metadata. 
+
+---

Old:

  totem-pl-parser-3.10.0.tar.xz

New:

  totem-pl-parser-3.10.1.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.33qis9/_old  2014-03-10 12:44:52.0 +0100
+++ /var/tmp/diff_new_pack.33qis9/_new  2014-03-10 12:44:52.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.10.0
+Version:3.10.1
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

++ totem-pl-parser-3.10.0.tar.xz - totem-pl-parser-3.10.1.tar.xz ++
 10277 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2014-02-12 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2014-02-12 11:08:58

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2013-09-27 19:08:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2014-02-12 11:08:59.0 +0100
@@ -1,0 +2,15 @@
+Mon Feb 10 18:56:18 UTC 2014 - dims...@opensuse.org
+
+- Fix dependencies:
+  + No longer provide / obsolete totem-pl-parser by
+libtotem-plparser18: we have a main package with a libexec
+binary.
+  + Require totem-pl-parser by libtotem-plparser18 and
+libtotem-plparser-mini18 in order to have the libexec helper
+available to the libraries.
+  + Move -lang Recommends to the main package.
+  + Add libquvi-scripts Requires: needed as the actual parsers
+(bnc#863126).
+- Remove obsolete -lang cleanup from install section.
+
+---



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.jSzpKK/_old  2014-02-12 11:08:59.0 +0100
+++ /var/tmp/diff_new_pack.jSzpKK/_new  2014-02-12 11:08:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package totem-pl-parser
 #
-# 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
@@ -34,7 +34,9 @@
 BuildRequires:  pkgconfig(libquvi-0.9) = 0.9.1
 BuildRequires:  pkgconfig(libsoup-2.4) = 2.43.0
 BuildRequires:  pkgconfig(libxml-2.0)
+Requires:   libquvi-scripts
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Recommends: %{name}-lang
 
 %description
 totem-pl-parser is a simple GObject-based library to parse a host of
@@ -43,10 +45,8 @@
 %package -n libtotem-plparser18
 Summary:A simple GObject-based library to parse playlist formats
 Group:  System/Libraries
-# Provides is needed to make lang package installable
-Provides:   %{name} = %{version}
-Obsoletes:  %{name}  %{version}
-Recommends: %{name}-lang
+# Main package contains libexec files needed for full functionality
+Requires:   %{name} = %{version}
 
 %description -n libtotem-plparser18
 totem-pl-parser is a simple GObject-based library to parse a host of
@@ -68,6 +68,8 @@
 %package -n libtotem-plparser-mini18
 Summary:A simple GObject-based library to parse playlist formats -- 
Mini version
 Group:  System/Libraries
+# Main package contains libexec files needed for full functionality
+Requires:   %{name} = %{version}
 
 %description -n libtotem-plparser-mini18
 totem-pl-parser is a simple GObject-based library to parse a host of
@@ -105,9 +107,6 @@
 
 %install
 %makeinstall
-%if 0%{?suse_version} = 1120
-%{__rm} %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
-%endif
 find %{buildroot}%{_libdir} -name *.la -type f -print -delete
 %find_lang %{name}
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2013-09-27 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2013-09-27 19:08:29

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2013-09-23 11:18:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2013-09-27 19:08:31.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 23 08:03:11 UTC 2013 - dims...@opensuse.org
+
+- Update to version 3.10.0:
+  + Fix introspection for playlist saving.
+
+---

Old:

  totem-pl-parser-3.9.92.tar.xz

New:

  totem-pl-parser-3.10.0.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.P4DRQh/_old  2013-09-27 19:08:32.0 +0200
+++ /var/tmp/diff_new_pack.P4DRQh/_new  2013-09-27 19:08:32.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   totem-pl-parser
-Version:3.9.92
+Version:3.10.0
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+
 Group:  Productivity/Multimedia/Video/Players
 Url:http://www.gnome.org/projects/totem/
-Source0:
http://download.gnome.org/sources/totem-pl-parser/3.9/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/totem-pl-parser/3.10/%{name}-%{version}.tar.xz
 BuildRequires:  intltool
 BuildRequires:  libgcrypt-devel
 BuildRequires:  translation-update-upstream

++ totem-pl-parser-3.9.92.tar.xz - totem-pl-parser-3.10.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.9.92/ChangeLog 
new/totem-pl-parser-3.10.0/ChangeLog
--- old/totem-pl-parser-3.9.92/ChangeLog2013-09-18 18:47:18.0 
+0200
+++ new/totem-pl-parser-3.10.0/ChangeLog2013-09-23 08:56:59.0 
+0200
@@ -1,3 +1,39 @@
+commit 825e9a64beea735191e5c99aec266aa4c2b77aaf
+Author: Bastien Nocera had...@hadess.net
+Date:   Mon Sep 23 08:56:19 2013 +0200
+
+3.10.0
+
+ NEWS | 3 +++
+ configure.ac | 4 ++--
+ 2 files changed, 5 insertions(+), 2 deletions(-)
+
+commit d35e1d33faa4e94c25227f27925de3844a116291
+Author: Arnel A. Borja arnelbo...@src.gnome.org
+Date:   Sat Sep 7 00:16:09 2013 +0800
+
+plparse: Add missing direction annotations to TotemPlPlaylist
+
+https://bugzilla.gnome.org/show_bug.cgi?id=707642
+
+ plparse/totem-pl-playlist.c | 12 ++--
+ 1 file changed, 6 insertions(+), 6 deletions(-)
+
+commit 56f9ffaef28286eab41420ca6c4b7ae2e4613e75
+Author: Arnel A. Borja arnelbo...@src.gnome.org
+Date:   Sat Sep 7 00:12:05 2013 +0800
+
+build: Add totem-pl-playlist.c to plparser_sources
+
+The source file totem-pl-playlist.c is not being parsed by g-ir-scanner
+because it is missing in instrospection_sources. This will implicitly
+add it to that variable.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=707642
+
+ plparse/Makefile.am | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
 commit 0d405f4c57b2114ed8ce5377a74d6d96595a03b5
 Author: Bastien Nocera had...@hadess.net
 Date:   Wed Sep 18 15:03:29 2013 +0200
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.9.92/NEWS 
new/totem-pl-parser-3.10.0/NEWS
--- old/totem-pl-parser-3.9.92/NEWS 2013-09-18 15:03:12.0 +0200
+++ new/totem-pl-parser-3.10.0/NEWS 2013-09-23 08:56:26.0 +0200
@@ -1,5 +1,8 @@
 New features and significant updates in version...
 
+3.10.0:
+- Fix introspection for playlist saving
+
 3.9.92:
 - Remove totem-disc from the public API
 - Remove linking to libquvi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.9.92/configure 
new/totem-pl-parser-3.10.0/configure
--- old/totem-pl-parser-3.9.92/configure2013-09-18 15:03:40.0 
+0200
+++ new/totem-pl-parser-3.10.0/configure2013-09-23 08:56:39.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for totem-pl-parser 3.9.92.
+# Generated by GNU Autoconf 2.69 for totem-pl-parser 3.10.0.
 #
 # Report bugs to 
http://bugzilla.gnome.org/enter_bug.cgi?product=totem-pl-parsercomponent=General.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='totem-pl-parser'
 PACKAGE_TARNAME='totem-pl-parser'
-PACKAGE_VERSION='3.9.92'
-PACKAGE_STRING='totem-pl-parser 3.9.92'
+PACKAGE_VERSION='3.10.0'

commit totem-pl-parser for openSUSE:Factory

2013-05-16 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2013-05-16 11:43:02

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2013-04-03 13:06:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2013-05-16 11:43:04.0 +0200
@@ -1,0 +2,10 @@
+Tue May 14 11:37:07 UTC 2013 - dims...@opensuse.org
+
+- Update to version 3.4.5:
+  + Avoid warnings when the volume doesn't have a mount.
+  + Fix media detection on loopback devices.
+  + Work-around hang-on-close() bugs in gvfs when parsing M3U
+playlists.
+  + Save everything we're told to in XSPF playlists.
+
+---

Old:

  totem-pl-parser-3.4.4.tar.xz

New:

  totem-pl-parser-3.4.5.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.XJW49d/_old  2013-05-16 11:43:05.0 +0200
+++ /var/tmp/diff_new_pack.XJW49d/_new  2013-05-16 11:43:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.4.4
+Version:3.4.5
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

++ totem-pl-parser-3.4.4.tar.xz - totem-pl-parser-3.4.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.4.4/ChangeLog 
new/totem-pl-parser-3.4.5/ChangeLog
--- old/totem-pl-parser-3.4.4/ChangeLog 2013-03-26 09:00:23.0 +0100
+++ new/totem-pl-parser-3.4.5/ChangeLog 2013-05-14 12:52:46.0 +0200
@@ -1,3 +1,74 @@
+commit 86d8228cdaf32606099ec1d8443355ed576a5fa5
+Author: Bastien Nocera had...@hadess.net
+Date:   Tue May 14 12:52:28 2013 +0200
+
+3.4.5
+
+ NEWS | 6 ++
+ configure.ac | 2 +-
+ 2 files changed, 7 insertions(+), 1 deletion(-)
+
+commit 9baee21a71c7195d6d1ae322189fcd1039617eae
+Author: Bastien Nocera had...@hadess.net
+Date:   Fri Apr 26 18:42:21 2013 +0200
+
+plparse: Save everything we're told to in the XSPF file
+
+The saving part of the XSPF parser doesn't need to check
+whether the scheme is ignored, the front-end (which populates
+that list) can do that just as well.
+
+This fixes DVDs not being saved in the Totem session.
+
+ plparse/totem-pl-parser-xspf.c | 11 ---
+ 1 file changed, 11 deletions(-)
+
+commit 8dd63c9f8aa85ae4687bb4b90c9c1de886069ac0
+Author: Bastien Nocera had...@hadess.net
+Date:   Thu Apr 25 12:44:53 2013 +0200
+
+plparse: Handle length attribute for M3U playlists
+
+When an M3U playlist advertises the length of an item as -1, we
+don't need to check whether it is another playlist, it would usually
+be a file of unknown duration, or a stream.
+
+This matches the current code in the PLS parser, and works around
+hang-on-close() bugs in gvfs.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=695652
+
+ plparse/tests/BassDrive.pls| 39 ++
+ plparse/tests/Makefile.am  |  3 ++-
+ plparse/tests/parser.c | 13 +
+ plparse/tests/radioclasica.mp3.m3u |  3 +++
+ plparse/totem-pl-parser-lines.c| 34 -
+ 5 files changed, 90 insertions(+), 2 deletions(-)
+
+commit ba8ee7f0e957eacc990318ed2580a3f27e58fe3e
+Author: Bastien Nocera had...@hadess.net
+Date:   Fri Mar 29 18:08:41 2013 +0100
+
+disc: Fix media detection on loopback devices
+
+We think they're physical media, but they don't actually have
+a drive associated, so they cannot be removable.
+
+This fixes: ./disc /dev/loop0
+when an ISO is loopback mounted with udisks2
+
+ plparse/totem-disc.c | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+commit 4ba8cc2d94c1721f9310370db3452337f51c4d9a
+Author: Bastien Nocera had...@hadess.net
+Date:   Fri Mar 29 17:37:36 2013 +0100
+
+disc: Avoid warnings when the volume doesn't have a mount
+
+ plparse/totem-disc.c | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
 commit 5718016386b123d735a9b45bd537867f62a1ac7c
 Author: Bastien Nocera had...@hadess.net
 Date:   Tue Mar 26 08:22:10 2013 +0100
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-3.4.4/NEWS 
new/totem-pl-parser-3.4.5/NEWS
--- old/totem-pl-parser-3.4.4/NEWS  2013-03-26 09:00:06.0 +0100
+++ new/totem-pl-parser-3.4.5/NEWS  2013-05-14 12:52:20.0 +0200
@@ 

commit totem-pl-parser for openSUSE:Factory

2013-04-03 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2013-04-03 13:06:34

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2012-10-03 10:46:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2013-04-03 13:06:38.0 +0200
@@ -1,0 +2,13 @@
+Tue Mar 26 10:56:01 UTC 2013 - dims...@opensuse.org
+
+- Update to version 3.4.4:
+  + Remove dependency on newer versions of glib.
+  + Fix overescaping of URIs in XSPF playlists.
+  + Add support for the itmss URI scheme.
+  + Require gmime 2.6.
+  + Fix small memory leak in totem_pl_parser_can_parse_from_data().
+  + Add read and write support for Totem XSPF extensions.
+  + Send content-type along with playlist-started/-ended signals
+for PLS, M3U and XSPF playlist types.
+
+---

Old:

  totem-pl-parser-3.4.3.tar.xz

New:

  totem-pl-parser-3.4.4.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.EolXZP/_old  2013-04-03 13:06:45.0 +0200
+++ /var/tmp/diff_new_pack.EolXZP/_new  2013-04-03 13:06:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package totem-pl-parser
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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:   totem-pl-parser
-Version:3.4.3
+Version:3.4.4
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

++ totem-pl-parser-3.4.3.tar.xz - totem-pl-parser-3.4.4.tar.xz ++
 23221 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2012-10-03 10:46:13

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2012-05-22 10:10:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2012-10-03 10:46:15.0 +0200
@@ -1,0 +2,13 @@
+Tue Sep 18 11:45:56 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.4.3:
+  + Report unsupported errors from quvi
+  + Fix *.ts files being ignored (most of them aren't Qt Linguist
+files)
+  + Don't show zero length coming from quvi
+  + Don't add JPEG files as entries in Podcasts
+  + Make RSS feeds ending in '/' parseable
+  + Make resolution test case pass with newer versions of glib
+  + Build fixes.
+
+---

Old:

  totem-pl-parser-3.4.2.tar.xz

New:

  totem-pl-parser-3.4.3.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.X034As/_old  2012-10-03 10:46:16.0 +0200
+++ /var/tmp/diff_new_pack.X034As/_new  2012-10-03 10:46:16.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.4.2
+Version:3.4.3
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2012-05-22 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2012-05-22 10:10:45

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2012-04-20 15:21:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2012-05-22 10:10:48.0 +0200
@@ -1,0 +2,7 @@
+Tue May 15 14:58:56 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.4.2:
+  + Add totem-pl-parser-mini API documentation
+  + Fix possible crash with newer versions of GLib/GThread
+
+---

Old:

  totem-pl-parser-3.4.1.tar.xz

New:

  totem-pl-parser-3.4.2.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.krmT1L/_old  2012-05-22 10:10:50.0 +0200
+++ /var/tmp/diff_new_pack.krmT1L/_new  2012-05-22 10:10:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.4.1
+Version:3.4.2
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2012-04-20 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2012-04-20 15:20:38

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2012-03-29 14:07:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2012-04-20 15:21:47.0 +0200
@@ -1,0 +2,8 @@
+Mon Apr 16 17:01:27 UTC 2012 - zai...@opensuse.org
+
+- Update to version 3.4.1:
+  + archive:// URI fixes.
+  + Use the best available format for video sites.
+  + Test case updates.
+
+---

Old:

  totem-pl-parser-3.4.0.tar.xz

New:

  totem-pl-parser-3.4.1.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.1TZCGe/_old  2012-04-20 15:21:48.0 +0200
+++ /var/tmp/diff_new_pack.1TZCGe/_new  2012-04-20 15:21:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   totem-pl-parser
-Version:3.4.0
+Version:3.4.1
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2012-03-29 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2012-03-29 14:07:07

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2012-02-21 12:26:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2012-03-29 14:07:14.0 +0200
@@ -1,0 +2,14 @@
+Tue Mar 27 09:43:28 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.4.0:
+  + Updated translations.
+
+---
+Sat Mar 17 16:24:44 UTC 2012 - dims...@opensuse.org
+
+- Update to version 3.3.92:
+  + Fix introspection of TotemPlParserMetadata.
+  + Fix compilation with libgcrypt.
+  + Handle RSS feeds for video sites.
+
+---

Old:

  totem-pl-parser-3.2.0.tar.xz

New:

  totem-pl-parser-3.4.0.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.I80HGj/_old  2012-03-29 14:07:19.0 +0200
+++ /var/tmp/diff_new_pack.I80HGj/_new  2012-03-29 14:07:19.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   totem-pl-parser
-Version:3.2.0
+Version:3.4.0
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+
 Group:  Productivity/Multimedia/Video/Players
 Url:http://www.gnome.org/projects/totem/
-Source0:
http://download.gnome.org/sources/totem-pl-parser/3.2/%{name}-%{version}.tar.xz
+Source0:
http://download.gnome.org/sources/totem-pl-parser/3.4/%{name}-%{version}.tar.xz
 BuildRequires:  intltool
 BuildRequires:  libgcrypt-devel
 BuildRequires:  translation-update-upstream
@@ -74,8 +74,8 @@
 %package devel
 Summary:A simple GObject-based library to parse playlist formats
 Group:  Development/Libraries/GNOME
-Requires:   libtotem-plparser17 = %{version}
 Requires:   libtotem-plparser-mini17 = %{version}
+Requires:   libtotem-plparser17 = %{version}
 Requires:   typelib-1_0-TotemPlParser-1_0 = %{version}
 
 %description devel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2012-02-21 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2012-02-21 12:26:09

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2012-01-24 12:23:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2012-02-21 12:26:11.0 +0100
@@ -1,0 +2,15 @@
+Mon Feb 20 12:33:46 UTC 2012 - vu...@opensuse.org
+
+- Update to version 3.2.0:
+  + Add support for AmazonMP3 download files
+  + Update for glib deprecations
+  + Update API for newer versions of quvi
+  + Avoid quvi poking the remote files by verifying the URLs it
+generates. No good for one-time links.
+  + Fixes for warnings in introspection generation
+  + Add more test cases
+- Drop totem-pl-parser-new-libquvi.patch: fixed upstream.
+- Add libgcrypt-devel BuildRequires for AmazonMP3 download files
+  support.
+
+---

Old:

  totem-pl-parser-2.32.6.tar.bz2
  totem-pl-parser-new-libquvi.patch

New:

  totem-pl-parser-3.2.0.tar.xz



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.4xw294/_old  2012-02-21 12:26:12.0 +0100
+++ /var/tmp/diff_new_pack.4xw294/_new  2012-02-21 12:26:12.0 +0100
@@ -17,18 +17,17 @@
 
 
 Name:   totem-pl-parser
-Version:2.32.6
+Version:3.2.0
 Release:0
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+
 Group:  Productivity/Multimedia/Video/Players
 Url:http://www.gnome.org/projects/totem/
-Source0:
http://download.gnome.org/sources/totem-pl-parser/2.32/%{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM totem-pl-parser-new-libquvi.patch vu...@opensuse.org -- 
Work with libquvi 0.4.x
-Patch0: totem-pl-parser-new-libquvi.patch
+Source0:
http://download.gnome.org/sources/totem-pl-parser/3.2/%{name}-%{version}.tar.xz
 BuildRequires:  intltool
+BuildRequires:  libgcrypt-devel
 BuildRequires:  translation-update-upstream
-BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(glib-2.0) = 2.31.0
 BuildRequires:  pkgconfig(gmime-2.6)
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libarchive)
@@ -87,7 +86,6 @@
 %prep
 %setup -q
 translation-update-upstream
-%patch0 -p1
 
 %build
 %configure \

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2012-01-24 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2012-01-24 12:23:23

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2012-01-11 15:39:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2012-01-24 12:23:26.0 +0100
@@ -1,0 +2,6 @@
+Wed Jan 11 17:40:51 UTC 2012 - dims...@opensuse.org
+
+- Replace pkgconfig(gmime-2.4) BuildRequires with
+  pkgconfig(gmime-2.6).
+
+---



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.AdypJO/_old  2012-01-24 12:23:27.0 +0100
+++ /var/tmp/diff_new_pack.AdypJO/_new  2012-01-24 12:23:27.0 +0100
@@ -29,7 +29,7 @@
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(glib-2.0)
-BuildRequires:  pkgconfig(gmime-2.4)
+BuildRequires:  pkgconfig(gmime-2.6)
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libarchive)
 BuildRequires:  pkgconfig(libquvi)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2012-01-11 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2012-01-11 15:38:14

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2012-01-09 15:22:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2012-01-11 15:39:01.0 +0100
@@ -1,0 +2,6 @@
+Tue Jan 10 13:27:58 UTC 2012 - vu...@opensuse.org
+
+- Add totem-pl-parser-new-libquvi.patch: add compatibility with
+  libquvi 0.4.x.
+
+---

New:

  totem-pl-parser-new-libquvi.patch



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.aX4lzZ/_old  2012-01-11 15:39:02.0 +0100
+++ /var/tmp/diff_new_pack.aX4lzZ/_new  2012-01-11 15:39:02.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package totem-pl-parser
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -15,14 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   totem-pl-parser
 Version:2.32.6
 Release:0
-Source0:
http://download.gnome.org/sources/totem-pl-parser/2.32/%{name}-%{version}.tar.bz2
 Summary:A simple GObject-based library to parse playlist formats
 License:LGPL-2.0+
 Group:  Productivity/Multimedia/Video/Players
 Url:http://www.gnome.org/projects/totem/
+Source0:
http://download.gnome.org/sources/totem-pl-parser/2.32/%{name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM totem-pl-parser-new-libquvi.patch vu...@opensuse.org -- 
Work with libquvi 0.4.x
+Patch0: totem-pl-parser-new-libquvi.patch
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
 BuildRequires:  pkgconfig(glib-2.0)
@@ -84,6 +87,7 @@
 %prep
 %setup -q
 translation-update-upstream
+%patch0 -p1
 
 %build
 %configure \

++ totem-pl-parser-new-libquvi.patch ++
From 4e15c57a438ee900f6ce601810a59a316b039fa1 Mon Sep 17 00:00:00 2001
From: Bastien Nocera had...@hadess.net
Date: Fri, 21 Oct 2011 15:36:26 +
Subject: lib: Require quvi 0.4.0

And adapt API usage.

Original patch by Marien Zwart in:
https://bugs.gentoo.org/show_bug.cgi?id=386651

https://bugzilla.gnome.org/show_bug.cgi?id=661451
---
diff --git a/plparse/totem-pl-parser-videosite.c 
b/plparse/totem-pl-parser-videosite.c
index 9706d5a..b1645d6 100644
--- a/plparse/totem-pl-parser-videosite.c
+++ b/plparse/totem-pl-parser-videosite.c
@@ -75,7 +75,7 @@ totem_pl_parser_add_videosite (TotemPlParser *parser,
 #ifdef HAVE_QUVI
QUVIcode rc;
quvi_t handle;
-   quvi_video_t v;
+   quvi_media_t v;
char *uri;
/* properties */
const char *video_uri;
@@ -104,8 +104,8 @@ totem_pl_parser_add_videosite (TotemPlParser *parser,
return TOTEM_PL_PARSER_RESULT_ERROR;
}
 
-   getprop (QUVIPROP_VIDEOURL, video_uri);
-   if (quvi_getprop (v, QUVIPROP_VIDEOFILELENGTH, length) == QUVI_OK)
+   getprop (QUVIPROP_MEDIAURL, video_uri);
+   if (quvi_getprop (v, QUVIPROP_MEDIACONTENTLENGTH, length) == QUVI_OK)
length_str = g_strdup_printf (%f, length);
else
length_str = NULL;
--
cgit v0.9.0.2
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2012-01-09 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2012-01-09 15:22:26

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/totem-pl-parser/totem-pl-parser.changes  
2011-10-02 11:16:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem-pl-parser.new/totem-pl-parser.changes 
2012-01-09 15:22:28.0 +0100
@@ -1,0 +2,6 @@
+Thu Dec  8 22:24:53 UTC 2011 - dims...@opensuse.org
+
+- Split typelib file into typelib-1_0-TotemPlParser-1_0 subpackage.
+- Add typelib-1_0-TotemPlParser-1_0 Requires to devel subpackage.
+
+---



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.v6jDNx/_old  2012-01-09 15:22:29.0 +0100
+++ /var/tmp/diff_new_pack.v6jDNx/_new  2012-01-09 15:22:29.0 +0100
@@ -15,16 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   totem-pl-parser
 Version:2.32.6
-Release:1
-License:LGPL-2.0+
-Group:  Productivity/Multimedia/Video/Players
+Release:0
 Source0:
http://download.gnome.org/sources/totem-pl-parser/2.32/%{name}-%{version}.tar.bz2
 Summary:A simple GObject-based library to parse playlist formats
+License:LGPL-2.0+
+Group:  Productivity/Multimedia/Video/Players
 Url:http://www.gnome.org/projects/totem/
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
@@ -42,9 +39,8 @@
 playlist formats, to save them too.
 
 %package -n libtotem-plparser17
-License:LGPL-2.0+
-Group:  System/Libraries
 Summary:A simple GObject-based library to parse playlist formats
+Group:  System/Libraries
 # Provides is needed to make lang package installable
 Provides:   %{name} = %{version}
 Obsoletes:  %{name}  %{version}
@@ -54,21 +50,31 @@
 totem-pl-parser is a simple GObject-based library to parse a host of
 playlist formats, to save them too.
 
-%package -n libtotem-plparser-mini17
-License:LGPL-2.0+
+%package -n typelib-1_0-TotemPlParser-1_0
+Summary:A simple GObject-based library to parse playlist formats -- 
Introspection bindings
 Group:  System/Libraries
+
+%description -n typelib-1_0-TotemPlParser-1_0
+totem-pl-parser is a simple GObject-based library to parse a host of
+playlist formats, to save them too.
+
+This package provides the GObject Introspection bindings for the
+totem-pl-parser library.
+
+%package -n libtotem-plparser-mini17
 Summary:A simple GObject-based library to parse playlist formats -- 
Mini version
+Group:  System/Libraries
 
 %description -n libtotem-plparser-mini17
 totem-pl-parser is a simple GObject-based library to parse a host of
 playlist formats, to save them too.
 
 %package devel
-License:LGPL-2.0+
-Group:  Development/Libraries/GNOME
 Summary:A simple GObject-based library to parse playlist formats
+Group:  Development/Libraries/GNOME
 Requires:   libtotem-plparser17 = %{version}
 Requires:   libtotem-plparser-mini17 = %{version}
+Requires:   typelib-1_0-TotemPlParser-1_0 = %{version}
 
 %description devel
 totem-pl-parser is a simple GObject-based library to parse a host of
@@ -106,6 +112,9 @@
 %files -n libtotem-plparser17
 %defattr(-, root, root)
 %{_libdir}/libtotem-plparser.so.*
+
+%files -n typelib-1_0-TotemPlParser-1_0
+%defattr(-,root,root)
 %{_libdir}/girepository-1.0/TotemPlParser-1.0.typelib
 
 %files -n libtotem-plparser-mini17

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory 
checked in at 2011-12-06 19:09:09

Comparing /work/SRC/openSUSE:Factory/totem-pl-parser (Old)
 and  /work/SRC/openSUSE:Factory/.totem-pl-parser.new (New)


Package is totem-pl-parser, Maintainer is gnome-maintain...@suse.de

Changes:




Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.WfsOPY/_old  2011-12-06 19:43:31.0 +0100
+++ /var/tmp/diff_new_pack.WfsOPY/_new  2011-12-06 19:43:31.0 +0100
@@ -21,7 +21,7 @@
 Name:   totem-pl-parser
 Version:2.32.6
 Release:1
-License:LGPLv2.0+
+License:LGPL-2.0+
 Group:  Productivity/Multimedia/Video/Players
 Source0:
http://download.gnome.org/sources/totem-pl-parser/2.32/%{name}-%{version}.tar.bz2
 Summary:A simple GObject-based library to parse playlist formats
@@ -42,7 +42,7 @@
 playlist formats, to save them too.
 
 %package -n libtotem-plparser17
-License:LGPLv2.0+
+License:LGPL-2.0+
 Group:  System/Libraries
 Summary:A simple GObject-based library to parse playlist formats
 # Provides is needed to make lang package installable
@@ -55,7 +55,7 @@
 playlist formats, to save them too.
 
 %package -n libtotem-plparser-mini17
-License:LGPLv2.0+
+License:LGPL-2.0+
 Group:  System/Libraries
 Summary:A simple GObject-based library to parse playlist formats -- 
Mini version
 
@@ -64,7 +64,7 @@
 playlist formats, to save them too.
 
 %package devel
-License:LGPLv2.0+
+License:LGPL-2.0+
 Group:  Development/Libraries/GNOME
 Summary:A simple GObject-based library to parse playlist formats
 Requires:   libtotem-plparser17 = %{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2011-09-09 Thread h_root

Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory
checked in at Fri Sep 9 11:55:54 CEST 2011.




--- GNOME/totem-pl-parser/totem-pl-parser.changes   2011-06-16 
17:01:36.0 +0200
+++ /mounts/work_src_done/STABLE/totem-pl-parser/totem-pl-parser.changes
2011-09-06 20:34:14.0 +0200
@@ -1,0 +2,16 @@
+Tue Sep  6 18:26:08 UTC 2011 - vu...@opensuse.org
+
+- Apply shared library packaging policy (bnc#688747):
+  + Create libtotem-plparser17 and libtotem-plparser-mini17
+subpackages.
+  + Add Provides/Obsoletes for totem-pl-parser to
+libtotem-plparser17.
+  + Move Recommends for lang subpackage to libtotem-plparser17, as
+it's fair to assume that users of the mini version care less
+about translations.
+  + Changes totem-pl-parser Requires in devel subpackage to
+libtotem-plparser17 and libtotem-plparser-mini17 Requires.
+- Remove gtk2-devel and gmime-2_4-devel Requires from devel
+  subpackage: they will automatically be added the pkgconfig() way.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.pN8W78/_old  2011-09-09 11:55:51.0 +0200
+++ /var/tmp/diff_new_pack.pN8W78/_new  2011-09-09 11:55:51.0 +0200
@@ -20,7 +20,8 @@
 
 Name:   totem-pl-parser
 Version:2.32.5
-Release:2
+Release:4
+# FIXME: on update to  2.32.5, change = Obsoletes to 
 License:LGPLv2.0+
 Group:  Productivity/Multimedia/Video/Players
 Source0:%{name}-%{version}.tar.bz2
@@ -36,24 +37,45 @@
 BuildRequires:  pkgconfig(libsoup-2.4)
 BuildRequires:  pkgconfig(libxml-2.0)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Recommends: %{name}-lang
 
 %description
 totem-pl-parser is a simple GObject-based library to parse a host of
 playlist formats, to save them too.
 
+%package -n libtotem-plparser17
+License:LGPLv2.0+
+Group:  System/Libraries
+Summary:A simple GObject-based library to parse playlist formats
+# Provides is needed to make lang package installable
+Provides:   %{name} = %{version}
+# SLPP was done without a version bump, so we need a = for now. Change to  
when we have a version  2.32.5.
+Obsoletes:  %{name} = %{version}
+Recommends: %{name}-lang
+
+%description -n libtotem-plparser17
+totem-pl-parser is a simple GObject-based library to parse a host of
+playlist formats, to save them too.
+
+%package -n libtotem-plparser-mini17
+License:LGPLv2.0+
+Group:  System/Libraries
+Summary:A simple GObject-based library to parse playlist formats -- 
Mini version
+
+%description -n libtotem-plparser-mini17
+totem-pl-parser is a simple GObject-based library to parse a host of
+playlist formats, to save them too.
+
 %package devel
 License:LGPLv2.0+
 Group:  Development/Libraries/GNOME
 Summary:A simple GObject-based library to parse playlist formats
-Requires:   %{name} = %{version} gtk2-devel
-Requires:   gmime-2_4-devel
+Requires:   libtotem-plparser17 = %{version}
+Requires:   libtotem-plparser-mini17 = %{version}
 
 %description devel
 totem-pl-parser is a simple GObject-based library to parse a host of
 playlist formats, to save them too.
 
-
 %lang_package
 %prep
 %setup -q
@@ -65,9 +87,13 @@
 --enable-quvi
 make %{?jobs:-j%jobs}
 
-%post -p /sbin/ldconfig
+%post -n libtotem-plparser17 -p /sbin/ldconfig
 
-%postun -p /sbin/ldconfig
+%postun -n libtotem-plparser17 -p /sbin/ldconfig
+
+%post -n libtotem-plparser-mini17 -p /sbin/ldconfig
+
+%postun -n libtotem-plparser-mini17 -p /sbin/ldconfig
 
 %install
 %makeinstall
@@ -79,16 +105,22 @@
 
 %clean
 
-%files
+%files -n libtotem-plparser17
 %defattr(-, root, root)
-%{_libdir}/*.so.*
+%{_libdir}/libtotem-plparser.so.*
 %{_libdir}/girepository-1.0/TotemPlParser-1.0.typelib
 
+%files -n libtotem-plparser-mini17
+%defattr(-, root, root)
+%{_libdir}/libtotem-plparser-mini.so.*
+
 %files devel
 %defattr(-, root, root)
 %{_includedir}/totem-pl-parser/
-%{_libdir}/*.so
-%{_libdir}/pkgconfig/*.pc
+%{_libdir}/libtotem-plparser.so
+%{_libdir}/libtotem-plparser-mini.so
+%{_libdir}/pkgconfig/totem-plparser.pc
+%{_libdir}/pkgconfig/totem-plparser-mini.pc
 %{_datadir}/gir-1.0/*.gir
 %doc %{_datadir}/gtk-doc/html/totem-pl-parser/
 






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2011-07-08 Thread h_root

Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory
checked in at Fri Jul 8 10:47:53 CEST 2011.




--- GNOME/totem-pl-parser/totem-pl-parser.changes   2011-05-26 
21:52:12.0 +0200
+++ /mounts/work_src_done/STABLE/totem-pl-parser/totem-pl-parser.changes
2011-06-16 17:01:36.0 +0200
@@ -1,0 +2,20 @@
+Wed Jun  8 17:14:37 UTC 2011 - nmarq...@opensuse.org
+
+- Move to pkgconfig() style BuildRequires:
+  + Old ones: glib2-devel, gmime-2_4-devel,
+gobject-introspection-devel, libquvi-devel, libsoup-devel,
+libxml2-devel.
+  + New ones: glib-2.0, gmime-2.4, gobject-introspection-1.0,
+libquvi, libsoup-2.4, libxml-2.0.
+- Improved removal of libtool archives on spec.
+
+---
+Wed Jun  1 12:26:33 CEST 2011 - vu...@opensuse.org
+
+- Add libquvi-devel BuildRequires to enable Quvi video link
+  parsing. Fix bnc#676294.
+- Pass --enable-quvi to make sure quvi support is built-in; it will
+  make the build fail if we lose it for some reason, which is good
+  to not lose the feature silently.
+
+---

calling whatdependson for head-i586




Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.Kql7XF/_old  2011-07-08 10:46:26.0 +0200
+++ /var/tmp/diff_new_pack.Kql7XF/_new  2011-07-08 10:46:26.0 +0200
@@ -20,20 +20,21 @@
 
 Name:   totem-pl-parser
 Version:2.32.5
-Release:1
+Release:2
 License:LGPLv2.0+
 Group:  Productivity/Multimedia/Video/Players
 Source0:%{name}-%{version}.tar.bz2
 Summary:A simple GObject-based library to parse playlist formats
 Url:http://www.gnome.org/projects/totem/
-BuildRequires:  glib2-devel
-BuildRequires:  gmime-2_4-devel
-BuildRequires:  gobject-introspection-devel
 BuildRequires:  intltool
-BuildRequires:  libsoup-devel
-BuildRequires:  libxml2-devel
 BuildRequires:  translation-update-upstream
+BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(gmime-2.4)
+BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libarchive)
+BuildRequires:  pkgconfig(libquvi)
+BuildRequires:  pkgconfig(libsoup-2.4)
+BuildRequires:  pkgconfig(libxml-2.0)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Recommends: %{name}-lang
 
@@ -55,11 +56,13 @@
 
 %lang_package
 %prep
-%setup
+%setup -q
 translation-update-upstream
 
 %build
-%configure --disable-static
+%configure \
+--disable-static \
+--enable-quvi
 make %{?jobs:-j%jobs}
 
 %post -p /sbin/ldconfig
@@ -71,7 +74,7 @@
 %if 0%{?suse_version} = 1120
 %{__rm} %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
 %endif
-rm $RPM_BUILD_ROOT/%{_libdir}/*.la
+find %{buildroot}%{_libdir} -name *.la -type f -print -delete
 %find_lang %{name}
 
 %clean






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit totem-pl-parser for openSUSE:Factory

2011-05-31 Thread h_root

Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory
checked in at Tue May 31 13:30:49 CEST 2011.




--- GNOME/totem-pl-parser/totem-pl-parser.changes   2011-04-05 
11:51:07.0 +0200
+++ /mounts/work_src_done/STABLE/totem-pl-parser/totem-pl-parser.changes
2011-05-26 21:52:12.0 +0200
@@ -1,0 +2,10 @@
+Wed May 18 03:21:07 CEST 2011 - dims...@opensuse.org
+
+- Update to version 2.32.5:
+  + Fix parsing of iTunes podcasts
+  + Use libarchive to detect media discs in ISO files, instead of
+gvfs, which makes it more reliable
+  + Add support for quvi properties (duration and thumbnail URL).
+- Add pkgconfig(libarchive) BuildRequires.
+
+---

calling whatdependson for head-i586


Old:

  totem-pl-parser-2.32.4.tar.bz2

New:

  totem-pl-parser-2.32.5.tar.bz2



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.EFo8Re/_old  2011-05-31 13:23:14.0 +0200
+++ /var/tmp/diff_new_pack.EFo8Re/_new  2011-05-31 13:23:14.0 +0200
@@ -19,7 +19,7 @@
 
 
 Name:   totem-pl-parser
-Version:2.32.4
+Version:2.32.5
 Release:1
 License:LGPLv2.0+
 Group:  Productivity/Multimedia/Video/Players
@@ -33,6 +33,7 @@
 BuildRequires:  libsoup-devel
 BuildRequires:  libxml2-devel
 BuildRequires:  translation-update-upstream
+BuildRequires:  pkgconfig(libarchive)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Recommends: %{name}-lang
 

++ totem-pl-parser-2.32.4.tar.bz2 - totem-pl-parser-2.32.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-2.32.4/ChangeLog 
new/totem-pl-parser-2.32.5/ChangeLog
--- old/totem-pl-parser-2.32.4/ChangeLog2011-03-21 15:51:22.0 
+0100
+++ new/totem-pl-parser-2.32.5/ChangeLog2011-05-10 15:34:15.0 
+0200
@@ -1,3 +1,72 @@
+commit 0fed7b9c663cbc0907f5ec79c1665a3eb3988e23
+Author: Bastien Nocera had...@hadess.net
+Date:   Tue May 10 14:33:48 2011 +0100
+
+2.32.5
+
+ NEWS |7 +++
+ configure.in |2 +-
+ 2 files changed, 8 insertions(+), 1 deletions(-)
+
+commit b4c2e6c8941f185125abb505c9e2ca8bdf0fbb63
+Author: Bastien Nocera had...@hadess.net
+Date:   Tue May 3 14:23:33 2011 +0100
+
+lib: Fix ITMS parsing from iTunes 10.x
+
+Instead of XML files/plists, the iTunes podcast code now
+uses plists for redirections, and HTML for the podcast itself.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=649171
+
+ plparse/totem-pl-parser-podcast.c |  116 -
+ 1 files changed, 62 insertions(+), 54 deletions(-)
+
+commit cdee229e67a3b88557cc01545af05a860f559ba4
+Author: Bastien Nocera had...@hadess.net
+Date:   Tue May 3 13:07:52 2011 +0100
+
+lib: Add debug to the podcast functions
+
+ plparse/totem-pl-parser-podcast.c |   17 +++--
+ 1 files changed, 11 insertions(+), 6 deletions(-)
+
+commit e57948ce6ef79af728e40722c8478122270b845e
+Author: Bastien Nocera had...@hadess.net
+Date:   Sat Apr 2 20:42:08 2011 +0100
+
+Use libarchive to detect types of ISO files
+
+Instead of using GVFS to mount the ISOs through libarchive,
+as it was quite fiddly, and unreliable.
+
+ configure.in |   35 +
+ plparse/Makefile.am  |2 +
+ plparse/totem-disc.c |  130 +++---
+ totem-plparser.pc.in |2 +-
+ 4 files changed, 98 insertions(+), 71 deletions(-)
+
+commit aba65d92aa4a82de84a3135af2cbfb88124a319b
+Author: Bastien Nocera had...@hadess.net
+Date:   Fri Mar 25 01:31:39 2011 +
+
+Add support for new quvi properties
+
+Duration, and Thumbnail URL are now available.
+
+ configure.in|2 +-
+ plparse/totem-pl-parser-videosite.c |   16 +---
+ 2 files changed, 14 insertions(+), 4 deletions(-)
+
+commit 7a717c19076b504324e99db2707f24de1ce0c645
+Author: Abduxukur Abdurixit abduri...@gmail.com
+Date:   Sun Mar 27 21:52:18 2011 +0200
+
+Added UG translation
+
+ po/ug.po |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
 commit 24ab9af8ede6d92c6cce9fc219708894ccae6b15
 Author: Bastien Nocera had...@hadess.net
 Date:   Mon Mar 21 14:51:13 2011 +
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/totem-pl-parser-2.32.4/Makefile.in 
new/totem-pl-parser-2.32.5/Makefile.in
--- old/totem-pl-parser-2.32.4/Makefile.in  2011-03-17 02:21:56.0 
+0100
+++ new/totem-pl-parser-2.32.5/Makefile.in  2011-05-10 15:34:03.0 
+0200
@@ -152,6 +152,9 @@
 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 AM_LDFLAGS = @AM_LDFLAGS@
 AR = @AR@
+ARCHIVE = @ARCHIVE@
+ARCHIVE_CFLAGS = @ARCHIVE_CFLAGS@
+ARCHIVE_LIBS = 

commit totem-pl-parser for openSUSE:Factory

2011-05-02 Thread h_root

Hello community,

here is the log from the commit of package totem-pl-parser for openSUSE:Factory
checked in at Mon May 2 15:35:57 CEST 2011.




--- GNOME/totem-pl-parser/totem-pl-parser.changes   2010-10-20 
11:40:31.0 +0200
+++ /mounts/work_src_done/STABLE/totem-pl-parser/totem-pl-parser.changes
2011-04-05 11:51:07.0 +0200
@@ -1,0 +2,25 @@
+Mon Mar 21 15:47:53 UTC 2011 - fcro...@novell.com
+
+- Update to version 2.32.4:
+  + Fix --enable-quvi option
+  + Fix getting past the last line of PLS files
+  + Add content-type property when available
+
+---
+Sun Feb 27 13:42:57 UTC 2011 - a...@suse.de
+
+- Change lang package Requires to Recommends since it is not
+  mandatory at runtime.
+
+---
+Thu Feb 24 14:11:56 UTC 2011 - fcro...@novell.com
+
+- Update to version 2.32.3:
+  + quvi related build fixes
+- Changes from version 2.32.2:
+  + Parse links to video websites using libquvi
+  + Fix parsing data from broken HTTP servers
+  + Fix warning when opening a directory fails
+  + Fix parsing some ASF redirections masquerading as WMA files
+
+---

calling whatdependson for head-i586


Old:

  totem-pl-parser-2.32.1.tar.bz2

New:

  totem-pl-parser-2.32.4.tar.bz2



Other differences:
--
++ totem-pl-parser.spec ++
--- /var/tmp/diff_new_pack.OO0fFX/_old  2011-05-02 15:34:51.0 +0200
+++ /var/tmp/diff_new_pack.OO0fFX/_new  2011-05-02 15:34:51.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package totem-pl-parser (Version 2.32.1)
+# spec file for package totem-pl-parser
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -19,7 +19,7 @@
 
 
 Name:   totem-pl-parser
-Version:2.32.1
+Version:2.32.4
 Release:1
 License:LGPLv2.0+
 Group:  Productivity/Multimedia/Video/Players
@@ -34,7 +34,7 @@
 BuildRequires:  libxml2-devel
 BuildRequires:  translation-update-upstream
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Requires:   %{name}-lang = %{version}
+Recommends: %{name}-lang
 
 %description
 totem-pl-parser is a simple GObject-based library to parse a host of

++ totem-pl-parser-2.32.1.tar.bz2 - totem-pl-parser-2.32.4.tar.bz2 ++
 36862 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org