commit xmms2 for openSUSE:Factory

2018-10-18 Thread root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2018-10-18 15:39:19

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is "xmms2"

Thu Oct 18 15:39:19 2018 rev:33 rq:642798 version:0.8

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2018-06-13 
15:36:55.406007577 +0200
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2018-10-18 
15:39:34.766075867 +0200
@@ -1,0 +2,6 @@
+Tue Oct  9 14:52:12 UTC 2018 - Cristian Rodríguez 
+
+- xmms-airplay-openssl11.patch: Support openssl 1.1 in airplay 
+  plugin (upstream commit b8d1d0a1f43f652b19277c93a0eeb2d7432bc8a0)
+
+---

New:

  xmms-airplay-openssl11.patch



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.oA3huh/_old  2018-10-18 15:39:38.006072185 +0200
+++ /var/tmp/diff_new_pack.oA3huh/_new  2018-10-18 15:39:38.006072185 +0200
@@ -12,7 +12,7 @@
 # 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/
 #
 
 
@@ -63,6 +63,7 @@
 # PATCH-FIX-UPSTREAM xmms2-pkgconfig.patch dims...@opensuse.org -- pkg-config 
Version field contains illegal characters.
 Patch13:xmms2-pkgconfig.patch
 Patch14:%{name}-0.8-fixwarnings.patch
+Patch17:xmms-airplay-openssl11.patch
 BuildRequires:  SDL-devel
 BuildRequires:  alsa-lib-devel
 BuildRequires:  autoconf
@@ -104,7 +105,7 @@
 BuildRequires:  sqlite-devel
 BuildRequires:  wavpack-devel
 BuildRequires:  pkgconfig(libxml-2.0)
-BuildRequires:  pkgconfig(openssl) < 1.1
+BuildRequires:  pkgconfig(openssl)
 Requires:   %{name}-plugin-base
 %if 0%{?suse_version} > 1325
 BuildRequires:  libboost_headers-devel
@@ -596,7 +597,7 @@
 %if 0%{?suse_version} >= 1310
 %patch16 -p1
 %endif
-
+%patch17 -p1
 # unpack waf first to patch for ruby 2.2
 ./waf --help &> /dev/null
 mv .waf-*/waflib .

++ xmms-airplay-openssl11.patch ++
Index: xmms2-0.8DrO_o/src/plugins/airplay/raop_client.c
===
--- xmms2-0.8DrO_o.orig/src/plugins/airplay/raop_client.c
+++ xmms2-0.8DrO_o/src/plugins/airplay/raop_client.c
@@ -135,15 +135,34 @@ raop_rsa_encrypt (guchar *text, gint len
0x5e,0xf,0xc8,0x75,0x34,0x3e,0xc7,0x82,0x11,0x76,0x25,0xcd
,0xbf,0x98,0x44,0x7b};
static const guchar exp[] = {0x01, 0x00, 0x01};
+BIGNUM *n, *e;
 
rsa = RSA_new ();
-   rsa->n = BN_bin2bn (mod, 256, NULL);
-   rsa->e = BN_bin2bn (exp, 3, NULL);
+n = BN_bin2bn (mod, 256, NULL);
+e = BN_bin2bn (exp, 3, NULL);
+if (!rsa || !n || !e)
+goto err;
+ #if OPENSSL_VERSION_NUMBER < 0x1010
+rsa->n = n;
+rsa->e = e;
+#else
+if (!RSA_set0_key(rsa, n, e, NULL))
+goto err;
+#endif
 
size = RSA_public_encrypt (len, text, res, rsa, RSA_PKCS1_OAEP_PADDING);
 
RSA_free (rsa);
return size;
+
+err:
+   if (rsa)
+   RSA_free(rsa);
+   if (n)
+   BN_free(n);
+   if (e)
+   BN_free(e);
+   return 0; 
 }
 
 static void
@@ -250,6 +269,9 @@ raop_rtsp_announce (raop_client_t *rc)
gint ret = RAOP_EOK;
 
size = raop_rsa_encrypt (rc->aes_key_str, 16, enc_aes_key);
+
+if (size == 0)
+   return RAOP_EFAIL;
 
size = b64_encode_alloc (enc_aes_key, size, );
g_strdelimit (key, "=", '\0');



commit xmms2 for openSUSE:Factory

2018-06-13 Thread root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2018-06-13 15:35:34

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is "xmms2"

Wed Jun 13 15:35:34 2018 rev:32 rq:613904 version:0.8

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2017-12-16 
20:55:23.967672390 +0100
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2018-06-13 
15:36:55.406007577 +0200
@@ -1,0 +2,6 @@
+Sat Jun  2 22:48:22 UTC 2018 - bjorn@gmail.com
+
+- Drop gnome-vfs2-devel BuildRequires: No longer needed, nor used.
+- Run spec-cleaner, modernize spec.
+
+---



Other differences:
--
++ xmms2.spec ++
 715 lines (skipped)
 between /work/SRC/openSUSE:Factory/xmms2/xmms2.spec
 and /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.spec




commit xmms2 for openSUSE:Factory

2017-12-16 Thread root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2017-12-16 20:54:00

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is "xmms2"

Sat Dec 16 20:54:00 2017 rev:31 rq:557394 version:0.8

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2017-06-15 
11:25:53.746203686 +0200
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2017-12-16 
20:55:23.967672390 +0100
@@ -1,0 +2,6 @@
+Fri Dec 15 13:50:41 UTC 2017 - mvet...@suse.com
+
+- BuildRequire python-xml explicitly
+- Use openssl < 1.1
+
+---



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.bINYPM/_old  2017-12-16 20:55:24.675638214 +0100
+++ /var/tmp/diff_new_pack.bINYPM/_new  2017-12-16 20:55:24.679638021 +0100
@@ -89,7 +89,6 @@
 BuildRequires:  libmpcdec-devel
 BuildRequires:  libofa-devel
 BuildRequires:  libogg-devel
-BuildRequires:  libopenssl-devel
 BuildRequires:  libpulse-devel
 BuildRequires:  libsamplerate-devel
 BuildRequires:  libshout-devel
@@ -102,6 +101,7 @@
 BuildRequires:  perl
 BuildRequires:  pyrex
 BuildRequires:  python-devel
+BuildRequires:  python-xml
 BuildRequires:  readline-devel
 BuildRequires:  ruby
 BuildRequires:  ruby-devel
@@ -109,6 +109,7 @@
 BuildRequires:  sqlite-devel
 BuildRequires:  wavpack-devel
 BuildRequires:  pkgconfig(libxml-2.0)
+BuildRequires:  pkgconfig(openssl) < 1.1
 Requires:   %{name}-plugin-base
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} > 1140




commit xmms2 for openSUSE:Factory

2017-06-15 Thread root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2017-06-15 11:25:20

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is "xmms2"

Thu Jun 15 11:25:20 2017 rev:30 rq:503637 version:0.8

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2017-03-02 
19:25:59.731916199 +0100
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2017-06-15 
11:25:53.746203686 +0200
@@ -1,0 +2,6 @@
+Mon Jun 12 18:50:42 UTC 2017 - zai...@opensuse.org
+
+- Add mpg123 plugin to base-plugins for Tumbleweed and newer via
+  conditional, mp3 support now included.
+
+---



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.SSOXPX/_old  2017-06-15 11:25:55.094013425 +0200
+++ /var/tmp/diff_new_pack.SSOXPX/_new  2017-06-15 11:25:55.094013425 +0200
@@ -743,6 +743,9 @@
 %{_libdir}/xmms2/libxmms_replaygain.so
 %{_libdir}/xmms2/libxmms_rss.so
 %{_libdir}/xmms2/libxmms_xspf.so
+%if 0%{?suse_version} >= 1330
+%{_libdir}/xmms2/libxmms_mpg123.so
+%endif
 
 %files plugin-airplay
 %defattr(-,root,root,-)
@@ -887,7 +890,9 @@
 %defattr(-,root,root,-)
 %{_libdir}/xmms2/libxmms_faad.so
 %{_libdir}/xmms2/libxmms_mms.so
+%if 0%{?suse_version} < 1330
 %{_libdir}/xmms2/libxmms_mpg123.so
 %endif
+%endif
 
 %changelog




commit xmms2 for openSUSE:Factory

2017-03-02 Thread root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2017-03-02 19:25:58

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is "xmms2"

Thu Mar  2 19:25:58 2017 rev:29 rq:458849 version:0.8

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2015-05-22 
09:51:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2017-03-02 
19:25:59.731916199 +0100
@@ -1,0 +2,72 @@
+Mon Feb 13 18:10:32 UTC 2017 - jeng...@inai.de
+
+- Trim and update descriptions
+
+---
+Thu Feb  9 12:49:44 UTC 2017 - mvet...@suse.com
+
+- On Oct 18 marguerite also added this patch:
+  * xmms2-0.8-add-lib-vorbis-and-ogg.patch
+
+---
+Thu Feb  2 15:43:17 UTC 2017 - adam.ma...@suse.de
+
+- use individual libboost-*-devel packages instead of boost-devel
+
+---
+Sun Oct 18 17:07:49 UTC 2015 - i...@marguerite.su
+
+- update version 0.8
+  * Waf build system updated to version 1.6, which brings Python
+3.x compatibility to the build system.
+  * Python bindings migrated to cython which brings Python 3.x
+compatibility to Python clients.
+  * Server side IPC code is now generated, thus a whole lot more
+consistent and less prone to errors.
+  * Better support for high quality (S32) audio, together with
+xform updates to output such formats.
+  * Don't let ALSA resample as it consumes insane amount of
+resources which makes it look like XMMS2 is resource heavy.
+  * More format support to CoreAudio and PulseAudio letting them
+resample in their own processes instead, thus utilizing
+multi-core systems better.
+  * A ton of man page updates so that we can hopefully answer most
+questions with RTFM. 
+- new subpackage plugin-sndfile
+- sync w/ packman
+- drop patch: xmms2-0.7-no-O0.patch
+- drop patch: xmms2-0.7-rpath.patch
+- drop patch: xmms2-0.7-spelling-error.patch
+- drop patch: xmms2-0.7-no-return.patch, upstreamed
+- drop patch: xmms2-0.7-cli-output-verbosity.patch,
+  no more src/clients/cli
+- drop patch: xmms2-0.7-escape-minus-signes.patch, upstreamed
+- drop patch: xmms2-0.7-silent-launcher.patch, upstreamed
+- drop patch: xmms2-0.7-fix-typo-in-xmms2-mdns-avahi-manpage.patch
+  upstreamed
+- drop patch: xmms2-0.7-vorbis-picture-support.patch, upstreamed
+- drop patch: xmms2-0.7-linker-flags.patch
+- drop patch: xmms2-0.7-fix-cast-error.patch
+- drop patch: xmms2-0.7-remove-path_max.patch, upstreamed
+- drop patch: xmms2-0.7-fixwarnings.patch
+- drop patch: xmms2-0.7-ld_fix.patch, no longer needed
+- drop patch: xmms2-disable-parallel-build.patch, no more wafadmin
+  directory
+- drop patch: xmms2-0.7-cunit.patch, upstreamed
+- drop patch: xmms-ruby2.2.patch, no waftools/ruby.py
+- unpack waf to fix for ruby 2.2
+- add patch: xmms2-0.8-no-O0.patch
+  * don't build w/ -O0 flag
+- add patch: xmms2-0.8-rpath.patch
+  * don't build w/ rpath for sidplay
+- add patch: xmms2-0.8-spelling-error.patch
+  * fix a spell mistake in mp4meta.c
+- add patch: xmms2-0.8-linker-flags.patch
+  * don't link against unused libraries
+- add patch: xmms2-0.8-fix-cast-error.patch
+  * Fix cast to pointer from integer of different size error
+- add patch: xmms2-0.8-fixwarnings.patch
+- add patch: xmms2-samba4-include-path.patch
+  * adjust samba-4.0 include path for libsmbclient.h 
+
+---

Old:

  README.SuSE
  xmms-ruby2.2.patch
  xmms2-0.7-cli-output-verbosity.patch
  xmms2-0.7-cunit.patch
  xmms2-0.7-escape-minus-signes.patch
  xmms2-0.7-fix-cast-error.patch
  xmms2-0.7-fix-typo-in-xmms2-mdns-avahi-manpage.patch
  xmms2-0.7-fixwarnings.patch
  xmms2-0.7-ld_fix.patch
  xmms2-0.7-linker-flags.patch
  xmms2-0.7-no-O0.patch
  xmms2-0.7-no-return.patch
  xmms2-0.7-remove-path_max.patch
  xmms2-0.7-rpath.patch
  xmms2-0.7-silent-launcher.patch
  xmms2-0.7-spelling-error.patch
  xmms2-0.7-vorbis-picture-support.patch
  xmms2-0.7DrNo.tar.bz2
  xmms2-disable-parallel-build.patch

New:

  README.SUSE
  xmms2-0.8-add-lib-vorbis-and-ogg.patch
  xmms2-0.8-fix-cast-error.patch
  xmms2-0.8-fixwarnings.patch
  xmms2-0.8-linker-flags.patch
  xmms2-0.8-no-O0.patch
  xmms2-0.8-rpath.patch
  xmms2-0.8-spelling-error.patch
  xmms2-0.8DrO_o.tar.bz2
  xmms2-samba4-include-path.patch



Other differences:
--
++ xmms2.spec ++
 1348 lines (skipped)
 between /work/SRC/openSUSE:Factory/xmms2/xmms2.spec
 and /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.spec

++ README.SUSE ++
this package 

commit xmms2 for openSUSE:Factory

2015-05-22 Thread h_root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2015-05-22 09:51:48

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is xmms2

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2014-10-22 
16:22:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2015-05-22 
09:51:49.0 +0200
@@ -1,0 +2,6 @@
+Wed May 20 15:49:46 UTC 2015 - dims...@opensuse.org
+
+- Add xmms-ruby2.2.patch: Update for Ruby 2.2: Use RbConfig instead
+  of deprecated Config.
+
+---

New:

  xmms-ruby2.2.patch



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.qv8G5c/_old  2015-05-22 09:51:50.0 +0200
+++ /var/tmp/diff_new_pack.qv8G5c/_new  2015-05-22 09:51:50.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xmms2
 #
-# 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
@@ -25,7 +25,7 @@
 
 %define codename DrNo
 
-%define _ruby_sitedir %(ruby -rrbconfig -e 'puts Config::CONFIG[sitelibdir]')
+%define _ruby_sitedir %(ruby -rrbconfig -e 'puts 
RbConfig::CONFIG[sitelibdir]')
 
 %if %suse_version = 1110
 %define python_sitelib %py_sitedir
@@ -65,6 +65,8 @@
 Patch15:%name-0.7-ld_fix.patch
 # PATCH-FIX-OPENSUSE xmms2-disable-parallel-build.patch idoen...@suse.de -- 
Disable parallel build
 Patch16:%name-disable-parallel-build.patch
+# PATCH-FIX-UPSTREAM xmms-ruby2.2.patch dims...@opensuse.org -- Fix build with 
ruby 2.2: Use RbConfig::CONFIG instead of deprecated Config::CONFIG
+Patch17:xmms-ruby2.2.patch
 Url:http://wiki.xmms2.xmms.se/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   %name-plugin-base
@@ -845,6 +847,7 @@
 %patch14 -p1
 %patch15 -p1
 %patch16
+%patch17 -p1
 
 # This header doesn't need to be executable
 chmod -x src/include/xmmsclient/xmmsclient++/dict.h

++ xmms-ruby2.2.patch ++
Index: xmms2-0.7DrNo/waftools/ruby.py
===
--- xmms2-0.7DrNo.orig/waftools/ruby.py
+++ xmms2-0.7DrNo/waftools/ruby.py
@@ -63,12 +63,12 @@ def check_ruby_ext_devel(conf):
 version = conf.env['RUBY_VERSION']
 
 def ruby_get_config(key):
-return Utils.cmd_output(ruby +  -rrbconfig -e 'print 
Config::CONFIG[\ + key + \]').strip()
+return Utils.cmd_output(ruby +  -rrbconfig -e 'print 
RbConfig::CONFIG[\ + key + \]').strip()
 
 if version = (1, 9, 0):
-ruby_h = Utils.cmd_output(ruby +  -rrbconfig -e 'puts 
File.exist?(Config::CONFIG[\rubyhdrdir\] + \/ruby.h\)').strip()
+ruby_h = Utils.cmd_output(ruby +  -rrbconfig -e 'puts 
File.exist?(RbConfig::CONFIG[\rubyhdrdir\] + \/ruby.h\)').strip()
 elif version = (1, 8, 0):
-ruby_h = Utils.cmd_output(ruby +  -rrbconfig -e 'puts 
File.exist?(Config::CONFIG[\archdir\] + \/ruby.h\)').strip()
+ruby_h = Utils.cmd_output(ruby +  -rrbconfig -e 'puts 
File.exist?(RbConfig::CONFIG[\archdir\] + \/ruby.h\)').strip()
 
 if ruby_h != 'true':
 conf.check_message('ruby', 'header file', False)
@@ -76,18 +76,18 @@ def check_ruby_ext_devel(conf):
 
 conf.check_message('ruby', 'header file', True)
 
-archdir = Utils.cmd_output(ruby +  -rrbconfig -e 'puts \%s\ % 
[].fill(Config::CONFIG[\archdir\], 0..1)').strip()
+archdir = Utils.cmd_output(ruby +  -rrbconfig -e 'puts \%s\ % 
[].fill(RbConfig::CONFIG[\archdir\], 0..1)').strip()
 conf.env[CPPPATH_RUBY] = [archdir]
 conf.env[LINKFLAGS_RUBY] = '-L%s' % archdir
 
 if version = (1, 9, 0):
-incpaths = Utils.cmd_output(ruby +  -rrbconfig -e 'puts 
Config::CONFIG[\rubyhdrdir\]').strip()
+incpaths = Utils.cmd_output(ruby +  -rrbconfig -e 'puts 
RbConfig::CONFIG[\rubyhdrdir\]').strip()
 conf.env[CPPPATH_RUBY] += [incpaths]
 
-incpaths = Utils.cmd_output(ruby +  -rrbconfig -e 'puts 
File.join(Config::CONFIG[\rubyhdrdir\], Config::CONFIG[\arch\])').strip()
+incpaths = Utils.cmd_output(ruby +  -rrbconfig -e 'puts 
File.join(RbConfig::CONFIG[\rubyhdrdir\], 
RbConfig::CONFIG[\arch\])').strip()
 conf.env[CPPPATH_RUBY] += [incpaths]
 
-ldflags = Utils.cmd_output(ruby +  -rrbconfig -e 'print 
Config::CONFIG[\LDSHARED\]').strip()
+ldflags = Utils.cmd_output(ruby +  -rrbconfig -e 'print 
RbConfig::CONFIG[\LDSHARED\]').strip()
 
 # ok this is really stupid, but the command and flags are combined.
   

commit xmms2 for openSUSE:Factory

2014-10-22 Thread h_root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2014-10-22 16:22:57

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is xmms2

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2013-09-12 
14:21:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2014-10-22 
16:22:58.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 19 09:26:45 UTC 2014 - dmuel...@suse.com
+
+- use valgrind also on other architectures where it is available 
+
+---



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.Shjq6q/_old  2014-10-22 16:22:59.0 +0200
+++ /var/tmp/diff_new_pack.Shjq6q/_new  2014-10-22 16:22:59.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xmms2
 #
-# 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
@@ -109,7 +109,7 @@
 BuildRequires:  speex-devel
 BuildRequires:  sqlite-devel
 BuildRequires:  wavpack-devel
-%ifarch %ix86 x86_64 ppc ppc64
+%ifarch %ix86 x86_64 ppc ppc64 ppc64le %arm aarch64
 BuildRequires:  valgrind-devel
 %endif
 

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



commit xmms2 for openSUSE:Factory

2013-09-12 Thread h_root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2013-09-12 14:21:32

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is xmms2

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2012-06-19 
21:39:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2013-09-12 
14:21:33.0 +0200
@@ -1,0 +2,5 @@
+Wed Sep 11 13:28:02 UTC 2013 - pgaj...@suse.com
+
+- detect libsmbclient
+
+---



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.RukY3e/_old  2013-09-12 14:21:34.0 +0200
+++ /var/tmp/diff_new_pack.RukY3e/_new  2013-09-12 14:21:34.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xmms2
 #
-# 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
@@ -856,7 +856,7 @@
 
 %build
 %__cp %SOURCE2 .
-export CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing
+export CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing `pkg-config --cflags 
smbclient`
 export CXXFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing
 ./waf configure --prefix=%{_prefix} --libdir=%{_libdir} 
--with-perl-archdir=%{perl_archlib} --with-pkgconfigdir=%{_libdir}/pkgconfig
 ./waf build -v %{?_smp_mflags}

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



commit xmms2 for openSUSE:Factory

2012-06-19 Thread h_root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2012-06-19 21:39:53

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is xmms2, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2012-06-13 
22:25:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2012-06-19 
21:39:57.0 +0200
@@ -1,0 +2,5 @@
+Mon Jun 18 09:46:23 UTC 2012 - pgaj...@suse.com
+
+- turn on cdda plugin again, buildrequire libcdio-paranoia-devel
+
+---



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.Cm862U/_old  2012-06-19 21:40:00.0 +0200
+++ /var/tmp/diff_new_pack.Cm862U/_new  2012-06-19 21:40:00.0 +0200
@@ -84,7 +84,7 @@
 BuildRequires:  jack-audio-connection-kit-devel
 BuildRequires:  libao-devel
 BuildRequires:  libavahi-glib-devel
-BuildRequires:  libcdio-devel
+BuildRequires:  libcdio-paranoia-devel
 BuildRequires:  libcurl-devel
 BuildRequires:  libdiscid-devel
 BuildRequires:  libmodplug-devel
@@ -185,14 +185,14 @@
 Summary:Development libraries and headers for XMMS2
 License:LGPL-2.1+ and GPL-2.0+ and BSD-3-Clause
 Group:  Development/Libraries/C and C++
-Requires:   glib2-devel
+Requires:   %{name} = %{version}
 Requires:   boost-devel
-Requires:   pkgconfig
-Requires:   libxmmsclient6
-Requires:   libxmmsclient-glib1
-Requires:   libxmmsclient++4
+Requires:   glib2-devel
 Requires:   libxmmsclient++-glib1
-Requires:   %{name} = %{version}
+Requires:   libxmmsclient++4
+Requires:   libxmmsclient-glib1
+Requires:   libxmmsclient6
+Requires:   pkgconfig
 
 %description devel
 Development libraries and headers for XMMS2. You probably need this to develop
@@ -997,7 +997,7 @@
 
 %files plugin-cdda
 %defattr(-,root,root,-)
-##%_libdir/xmms2/libxmms_cdda.so
+%_libdir/xmms2/libxmms_cdda.so
 
 %files plugin-cue
 %defattr(-,root,root,-)

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



commit xmms2 for openSUSE:Factory

2012-06-13 Thread h_root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2012-06-13 22:24:46

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is xmms2, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2012-02-29 
14:12:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2012-06-13 
22:25:24.0 +0200
@@ -1,0 +2,6 @@
+Mon Jun 11 09:28:53 UTC 2012 - pgaj...@suse.com
+
+- turn off cdda plugin until libcdio-paranoia dependency isn't 
+  accepted into factory (see bnc#756564)
+
+---



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.z410fz/_old  2012-06-13 22:25:26.0 +0200
+++ /var/tmp/diff_new_pack.z410fz/_new  2012-06-13 22:25:26.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xmms2
 #
-# 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,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %bcond_with libsidplay
 %bcond_with restricted
 %bcond_with cunit
@@ -996,7 +997,7 @@
 
 %files plugin-cdda
 %defattr(-,root,root,-)
-%_libdir/xmms2/libxmms_cdda.so
+##%_libdir/xmms2/libxmms_cdda.so
 
 %files plugin-cue
 %defattr(-,root,root,-)

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



commit xmms2 for openSUSE:Factory

2012-02-29 Thread h_root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2012-02-29 14:12:29

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is xmms2, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2011-10-28 
15:30:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2012-02-29 
14:12:31.0 +0100
@@ -1,0 +2,5 @@
+Fri Dec  9 08:44:05 UTC 2011 - co...@suse.com
+
+- fix license to be in spdx.org format
+
+---



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.WhUhjo/_old  2012-02-29 14:12:33.0 +0100
+++ /var/tmp/diff_new_pack.WhUhjo/_new  2012-02-29 14:12:33.0 +0100
@@ -15,8 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 %bcond_with libsidplay
 %bcond_with restricted
 %bcond_with cunit
@@ -35,11 +33,11 @@
 
 Name:   xmms2
 Summary:A modular audio framework and plugin architecture
+License:LGPL-2.1+ and GPL-2.0+ and BSD-3-Clause
+Group:  Productivity/Multimedia/Sound/Players
 Version:0.7
-Release:13
+Release:0
 # TODO: Make sure to update the verison number in xmms2-pkgconfig.patch.
-License:LGPLv2+ and GPLv2+ and BSD
-Group:  Productivity/Multimedia/Sound/Players
 Source0:%{name}-%{version}%{codename}.tar.bz2
 Source1:xmms2-client-launcher.sh
 Source2:README.SuSE
@@ -69,15 +67,47 @@
 Url:http://wiki.xmms2.xmms.se/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   %name-plugin-base
-BuildRequires:  flac-devel libofa-devel libvorbis-devel speex-devel 
sqlite-devel
-BuildRequires:  libcdio-devel libdiscid-devel libsmbclient-devel wavpack-devel
-BuildRequires:  gnome-vfs2-devel jack-audio-connection-kit-devel 
libmpcdec-devel
-BuildRequires:  alsa-lib-devel fftw3-devel libsamplerate-devel libxml2-devel
-BuildRequires:  libao-devel libcurl-devel libshout-devel pyrex ruby ruby-devel
-BuildRequires:  boost-devel libavahi-glib-devel libpulse-devel perl 
python-devel
-BuildRequires:  avahi-compat-mDNSResponder-devel doxygen libmodplug-devel
-BuildRequires:  autoconf automake fdupes gcc gcc-c++ libogg-devel 
libopenssl-devel make
-BuildRequires:  SDL-devel libvisual-devel readline-devel
+BuildRequires:  SDL-devel
+BuildRequires:  alsa-lib-devel
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  avahi-compat-mDNSResponder-devel
+BuildRequires:  boost-devel
+BuildRequires:  doxygen
+BuildRequires:  fdupes
+BuildRequires:  fftw3-devel
+BuildRequires:  flac-devel
+BuildRequires:  gcc
+BuildRequires:  gcc-c++
+BuildRequires:  gnome-vfs2-devel
+BuildRequires:  jack-audio-connection-kit-devel
+BuildRequires:  libao-devel
+BuildRequires:  libavahi-glib-devel
+BuildRequires:  libcdio-devel
+BuildRequires:  libcurl-devel
+BuildRequires:  libdiscid-devel
+BuildRequires:  libmodplug-devel
+BuildRequires:  libmpcdec-devel
+BuildRequires:  libofa-devel
+BuildRequires:  libogg-devel
+BuildRequires:  libopenssl-devel
+BuildRequires:  libpulse-devel
+BuildRequires:  libsamplerate-devel
+BuildRequires:  libshout-devel
+BuildRequires:  libsmbclient-devel
+BuildRequires:  libvisual-devel
+BuildRequires:  libvorbis-devel
+BuildRequires:  libxml2-devel
+BuildRequires:  make
+BuildRequires:  perl
+BuildRequires:  pyrex
+BuildRequires:  python-devel
+BuildRequires:  readline-devel
+BuildRequires:  ruby
+BuildRequires:  ruby-devel
+BuildRequires:  speex-devel
+BuildRequires:  sqlite-devel
+BuildRequires:  wavpack-devel
 %ifarch %ix86 x86_64 ppc ppc64
 BuildRequires:  valgrind-devel
 %endif
@@ -101,7 +131,9 @@
 %endif
 
 %if %{with restricted}
-BuildRequires:  libfaad-devel libmms-devel libmpg123-devel
+BuildRequires:  libfaad-devel
+BuildRequires:  libmms-devel
+BuildRequires:  libmpg123-devel
 %endif
 
 %description
@@ -117,40 +149,40 @@
 
 
 %package -n libxmmsclient++-glib1
-License:LGPLv2+ and GPLv2+ and BSD
 Summary:Glib c++ client library for %{name}
+License:LGPL-2.1+ and GPL-2.0+ and BSD-3-Clause
 Group:  Productivity/Multimedia/Sound/Players
 
 %description -n libxmmsclient++-glib1
 A simple glib c++ client library for XMMS2
 
 %package -n libxmmsclient++4
-License:LGPLv2+ and GPLv2+ and BSD
 Summary:C++ client library for  %{name}
+License:LGPL-2.1+ and GPL-2.0+ and BSD-3-Clause
 Group:  Productivity/Multimedia/Sound/Players
 
 %description -n libxmmsclient++4
 A simple C++ client library for XMMS2
 
 %package -n libxmmsclient-glib1
-License:LGPLv2+ and GPLv2+ and 

commit xmms2 for openSUSE:Factory

2011-10-28 Thread h_root
Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory checked 
in at 2011-10-27 14:42:38

Comparing /work/SRC/openSUSE:Factory/xmms2 (Old)
 and  /work/SRC/openSUSE:Factory/.xmms2.new (New)


Package is xmms2, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/xmms2/xmms2.changes  2011-09-23 
12:51:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.xmms2.new/xmms2.changes 2011-10-28 
15:30:44.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct 27 11:03:55 UTC 2011 - idon...@suse.com
+
+- Disable parallel build, it randomly hangs 
+
+---

New:

  xmms2-disable-parallel-build.patch



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.qRwIYl/_old  2011-10-28 15:30:59.0 +0200
+++ /var/tmp/diff_new_pack.qRwIYl/_new  2011-10-28 15:30:59.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package xmms2 (Version 0.7)
+# spec file for package xmms2
 #
-# 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
@@ -64,6 +64,8 @@
 Patch13:xmms2-pkgconfig.patch
 Patch14:%name-0.7-fixwarnings.patch
 Patch15:%name-0.7-ld_fix.patch
+# PATCH-FIX-OPENSUSE xmms2-disable-parallel-build.patch idoen...@suse.de -- 
Disable parallel build
+Patch16:%name-disable-parallel-build.patch
 Url:http://wiki.xmms2.xmms.se/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   %name-plugin-base
@@ -809,6 +811,8 @@
 %patch13 -p1
 %patch14 -p1
 %patch15 -p1
+%patch16
+
 # This header doesn't need to be executable
 chmod -x src/include/xmmsclient/xmmsclient++/dict.h
 # Clean up paths in wafadmin

++ xmms2-disable-parallel-build.patch ++
--- wafadmin/Runner.py  2010-02-19 18:43:54.0 +0100
+++ wafadmin/Runner.py.fixed2011-10-27 12:55:49.665131634 +0200
@@ -217,3 +217,95 @@
#print loop
assert (self.count == 0 or self.stop)
 
+class Serial(object):
+
+   def __init__(self, bld, j=1):
+   self.manager = bld.task_manager
+   self.outstanding = []
+
+   # progress bar
+   self.total = self.manager.total()
+   self.processed = 0
+   self.error = 0
+
+   self.switchflag = 1 # postpone
+   
+   self.consumers = None
+
+   # warning, this one is recursive ..
+   def get_next(self):
+   if self.outstanding:
+   t = self.outstanding.pop(0)
+   self.processed += 1
+   return t
+
+   # handle case where only one wscript exist
+   # that only install files
+   if not self.manager.groups:
+   return None
+
+   (_, self.outstanding) = self.manager.get_next_set()
+   if not self.outstanding: return None
+
+   return self.get_next()
+
+   def postpone(self, tsk):
+   self.processed -= 1
+   self.switchflag *= -1
+   # this actually shuffle the list
+   if self.switchflag0: self.outstanding.insert(0, tsk)
+   else: self.outstanding.append(tsk)
+
+   def start(self):
+   debug('runner: Serial start called')
+   while 1:
+   # get next Task
+   tsk = self.get_next()
+   if tsk is None: break
+
+   if Logs.verbose: debug('runner: retrieving %r' % tsk)
+
+   st = tsk.runnable_status()
+   if st == ASK_LATER:
+   debug('runner: postponing %r' % tsk)
+   self.postpone(tsk)
+   continue
+
+   #continue
+   if st == SKIP_ME:
+   tsk.hasrun = SKIPPED
+   self.manager.add_finished(tsk)
+   continue
+
+   tsk.position = (self.processed, self.total)
+
+   # display the command that we are about to run
+   tsk.generator.bld.printout(tsk.display())
+
+   # run the command
+   if tsk.__class__.stat: ret = tsk.__class__.stat(tsk)
+   else: ret = tsk.run()
+   self.manager.add_finished(tsk)
+
+   # non-zero 

commit xmms2 for openSUSE:Factory

2011-09-19 Thread h_root

Hello community,

here is the log from the commit of package xmms2 for openSUSE:Factory
checked in at Mon Sep 19 21:18:01 CEST 2011.




--- xmms2/xmms2.changes 2010-08-03 16:47:06.0 +0200
+++ /mounts/work_src_done/STABLE/xmms2/xmms2.changes2011-09-16 
23:58:04.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 16 21:50:45 UTC 2011 - suse-...@gmx.de
+
+- added Patch15 (xmms2-0.7-ld_fix.patch) to fix the build for factory
+
+---

calling whatdependson for head-i586


New:

  xmms2-0.7-ld_fix.patch



Other differences:
--
++ xmms2.spec ++
--- /var/tmp/diff_new_pack.JczabY/_old  2011-09-19 21:17:57.0 +0200
+++ /var/tmp/diff_new_pack.JczabY/_new  2011-09-19 21:17:57.0 +0200
@@ -63,6 +63,7 @@
 # PATCH-FIX-UPSTREAM xmms2-pkgconfig.patch dims...@opensuse.org -- pkg-config 
Version field contains illegal characters.
 Patch13:xmms2-pkgconfig.patch
 Patch14:%name-0.7-fixwarnings.patch
+Patch15:%name-0.7-ld_fix.patch
 Url:http://wiki.xmms2.xmms.se/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   %name-plugin-base
@@ -807,6 +808,7 @@
 %endif
 %patch13 -p1
 %patch14 -p1
+%patch15 -p1
 # This header doesn't need to be executable
 chmod -x src/include/xmmsclient/xmmsclient++/dict.h
 # Clean up paths in wafadmin

++ xmms2-0.7-ld_fix.patch ++
Index: xmms2-0.7DrNo/src/clients/vistest/wscript
===
--- xmms2-0.7DrNo.orig/src/clients/vistest/wscript
+++ xmms2-0.7DrNo/src/clients/vistest/wscript
@@ -21,7 +21,7 @@ def build(bld):
 obj.source = 'ripper.c'
 obj.includes = '. ../../.. ../../include'
 obj.uselib_local = 'xmmsclient'
-obj.uselib = 'vorbisenc'
+obj.uselib = 'vorbisenc vorbis ogg'
 
 if bld.env['LIB_visual'] and bld.env['LIB_sdl']:
 obj = bld.new_task_gen('cc', 'program')
@@ -39,6 +39,8 @@ def configure(conf):
 conf.check_cfg(package='libvisual-0.4', uselib_store='visual', 
args='--cflags --libs')
 conf.check_cfg(package='sdl', uselib_store='sdl', args='--cflags --libs')
 conf.check_cfg(package='vorbisenc', uselib_store='vorbisenc', 
args='--cflags --libs')
+conf.check_cfg(package='vorbis', uselib_store='vorbis', args='--cflags 
--libs')
+conf.check_cfg(package='ogg', uselib_store='ogg', args='--cflags --libs')
 
 def set_options(opt):
 pass





Remember to have fun...

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