Hello community,

here is the log from the commit of package guitarix for openSUSE:Factory 
checked in at 2012-02-16 12:22:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/guitarix (Old)
 and      /work/SRC/openSUSE:Factory/.guitarix.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "guitarix", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/guitarix/guitarix.changes        2011-09-23 
02:02:37.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.guitarix.new/guitarix.changes   2012-02-16 
12:22:41.000000000 +0100
@@ -1,0 +2,27 @@
+Mon Feb 13 10:47:30 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+-------------------------------------------------------------------
+Wed Oct 12 11:51:58 UTC 2011 - mse...@gmail.com
+
+- added guitarix2-missing_libdl.diff to fix build
+- update to guitarix2-0.19.0
+ * make convolver a rack module
+ * add favourite list menu to the convolver
+ * add zita-rev1 module (from faust distribution)
+ * add stereo verb module
+ * add some cabinet`s
+ * fix bug in Ladspa plugins
+ * add factory settigs by JP
+ * made logger window resizeable
+ * tuned switching of configurations without loud bang
+ * plugged some memory leaks in rack order code (GList's not freed)
+ * bug fix: GxScrollBox passed an uninitialized group to RadioButtons
+ * introduce a plug-in based engine
+ * a couple of invisible internal source changes and a couple of new 
development
+   tools added
+ * switch to use faust version 0.9.43
+ * other small / big clean-ups
+
+-------------------------------------------------------------------

Old:
----
  guitarix2-0.18.0.tar.bz2

New:
----
  guitarix2-0.19.0.tar.bz2
  guitarix2-missing_libdl.diff

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

Other differences:
------------------
++++++ guitarix.spec ++++++
--- /var/tmp/diff_new_pack.ASgKR4/_old  2012-02-16 12:22:42.000000000 +0100
+++ /var/tmp/diff_new_pack.ASgKR4/_new  2012-02-16 12:22:42.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package guitarix
 #
-# 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,29 +15,29 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 Summary:        Simple Linux amplifier for jack
+License:        GPL-2.0+
+Group:          Productivity/Multimedia/Sound/Utilities
 
 Name:           guitarix
-Version:        0.18.0
-Release:        1
-License:        GPLv2+
-Group:          Productivity/Multimedia/Sound/Utilities
+Version:        0.19.0
+Release:        0
 Url:            http://guitarix.sourceforge.net/
 Source:         guitarix2-%{version}.tar.bz2
+Patch1:         guitarix2-missing_libdl.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  boost-devel
+BuildRequires:  fftw3-devel
 BuildRequires:  gcc-c++
 BuildRequires:  gtk2-devel
+BuildRequires:  gtkmm2-devel
+BuildRequires:  intltool
 BuildRequires:  ladspa-devel
 BuildRequires:  libjack-devel
+BuildRequires:  libsigc++2-devel
 BuildRequires:  libsndfile-devel
 BuildRequires:  update-desktop-files
-BuildRequires:  libsigc++2-devel
-BuildRequires:  fftw3-devel
-BuildRequires:  gtkmm2-devel
-BuildRequires:  boost-devel
-BuildRequires:  intltool
 Requires:       jack
 Requires:       meterbridge
 Requires:       vorbis-tools
@@ -54,9 +54,8 @@
 guitarix is licensed under GPL.
 
 %package -n ladspa-guitarix
-License:        GPLv2+
-Group:          Productivity/Multimedia/Sound/Utilities
 Summary:        Guitarix - ladspa plugins
+Group:          Productivity/Multimedia/Sound/Utilities
 
 %description -n ladspa-guitarix
 guitarix is a simple mono amplifier to jack with one input and two
@@ -71,11 +70,13 @@
 
 %prep
 %setup -q -n guitarix2-%{version}
+%patch1 -p1
 
 %build
 #todo: add faust package to openSUSE
-./waf configure --faust --ladspadir=%{_libdir}/ladspa  --prefix=%{_prefix} 
--cxxflags="$RPM_OPT_FLAGS -std=gnu++0x"
-./waf build %{?jobs: -j%jobs} 
+export LDFLAGS="-ldl" 
+./waf configure -v --faust --ladspadir=%{_libdir}/ladspa  --prefix=%{_prefix} 
--cxxflags="$RPM_OPT_FLAGS -std=gnu++0x"
+./waf build -v %{?jobs: -j%jobs} 
 
 %install
 ./waf install --destdir="$RPM_BUILD_ROOT"

++++++ guitarix2-0.18.0.tar.bz2 -> guitarix2-0.19.0.tar.bz2 ++++++
++++ 48445 lines of diff (skipped)

++++++ guitarix2-missing_libdl.diff ++++++
Index: guitarix2-0.19.0/src/gx_head/wscript
===================================================================
--- guitarix2-0.19.0.orig/src/gx_head/wscript
+++ guitarix2-0.19.0/src/gx_head/wscript
@@ -63,13 +63,14 @@ def build(bld):
     else:
         libpath = []
         uselib_local += ['gxwmm','gxw']
+       bld.env.LINKFLAGS_DL = ['-ldl'] 
     bld(features = 'cxx cprogram',
         includes = incl,
         obj_ext  = '.o',
         source = sources,
         lib = lib,
         uselib = ['JACK', 'SNDFILE', 'GTHREAD', 'GMODULE_EXPORT',
-                  'GTK2', 'GTKMM', 'GIOMM', 'ZITA_CONVOLVER', 'FFTW3'],
+                  'GTK2', 'GTKMM', 'GIOMM', 'ZITA_CONVOLVER', 'FFTW3', 'DL'],
         uselib_local = uselib_local,
         libpath = libpath,
         target = bld.env['BIN_NAME1'],
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to