commit awesfx for openSUSE:Factory

2019-11-06 Thread root
Hello community,

here is the log from the commit of package awesfx for openSUSE:Factory checked 
in at 2019-11-06 13:53:30

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


Package is "awesfx"

Wed Nov  6 13:53:30 2019 rev:28 rq:739815 version:0.5.2

Changes:

--- /work/SRC/openSUSE:Factory/awesfx/awesfx.changes2019-09-07 
11:50:31.706298792 +0200
+++ /work/SRC/openSUSE:Factory/.awesfx.new.2990/awesfx.changes  2019-11-06 
13:53:33.051990241 +0100
@@ -1,0 +2,5 @@
+Thu Oct 17 14:01:08 UTC 2019 - Richard Brown 
+
+- Remove obsolete Groups tag (fate#326485)
+
+---



Other differences:
--
++ awesfx.spec ++
--- /var/tmp/diff_new_pack.8cCYfo/_old  2019-11-06 13:53:34.191991477 +0100
+++ /var/tmp/diff_new_pack.8cCYfo/_new  2019-11-06 13:53:34.191991477 +0100
@@ -21,7 +21,6 @@
 Release:0
 Summary:SoundFont Utilities for SB AWE32/64 and Emu10k1 Drivers
 License:GPL-2.0-or-later
-Group:  Productivity/Multimedia/Sound/Midi
 Url:https://github.com/tiwai/awesfx
 Source: awesfx-%{version}.tar.gz
 Patch:  awesfx-0.5.1e-fix-bashisms.patch




commit awesfx for openSUSE:Factory

2019-09-07 Thread root
Hello community,

here is the log from the commit of package awesfx for openSUSE:Factory checked 
in at 2019-09-07 11:50:28

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


Package is "awesfx"

Sat Sep  7 11:50:28 2019 rev:27 rq:728496 version:0.5.2

Changes:

--- /work/SRC/openSUSE:Factory/awesfx/awesfx.changes2019-04-04 
14:13:28.289329609 +0200
+++ /work/SRC/openSUSE:Factory/.awesfx.new.7948/awesfx.changes  2019-09-07 
11:50:31.706298792 +0200
@@ -1,0 +2,7 @@
+Thu Sep  5 14:10:09 CEST 2019 - ti...@suse.de
+
+- Fix the build error and warning:
+  Fix-the-bogus-return-in-seq_set_gus_bank.patch
+  Fix-unused-variable-prev-in-strtoken.patch
+
+---

New:

  Fix-the-bogus-return-in-seq_set_gus_bank.patch
  Fix-unused-variable-prev-in-strtoken.patch



Other differences:
--
++ awesfx.spec ++
--- /var/tmp/diff_new_pack.sgOeyE/_old  2019-09-07 11:50:32.338298703 +0200
+++ /var/tmp/diff_new_pack.sgOeyE/_new  2019-09-07 11:50:32.342298702 +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/
 #
 
 
@@ -25,6 +25,8 @@
 Url:https://github.com/tiwai/awesfx
 Source: awesfx-%{version}.tar.gz
 Patch:  awesfx-0.5.1e-fix-bashisms.patch
+Patch1: Fix-the-bogus-return-in-seq_set_gus_bank.patch
+Patch2: Fix-unused-variable-prev-in-strtoken.patch
 BuildRequires:  alsa-devel
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
@@ -40,6 +42,8 @@
 %prep
 %setup -q
 %patch -p1
+%patch1 -p1
+%patch2 -p1
 
 %build
 autoreconf -fi

++ Fix-the-bogus-return-in-seq_set_gus_bank.patch ++
>From 682d0caaffa9bfcc2381b947fb47395fb3da98b9 Mon Sep 17 00:00:00 2001
From: Takashi Iwai 
Date: Thu, 5 Sep 2019 14:06:55 +0200
Subject: [PATCH] Fix the bogus return in seq_set_gus_bank()

Fix the compile error:
 alsa.c: In function 'seq_set_gus_bank':
 alsa.c:149:9: error: 'return' with a value, in function returning void 
[-Werror=return-type]
   149 |  return snd_hwdep_ioctl(hwdep, SNDRV_EMUX_IOCTL_MISC_MODE, &mode);

Signed-off-by: Takashi Iwai 
---
 alsa.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/alsa.c b/alsa.c
index e5993cb344e2..b977f44695b6 100644
--- a/alsa.c
+++ b/alsa.c
@@ -146,5 +146,5 @@ void seq_set_gus_bank(int bank)
mode.mode = AWE_MD_GUS_BANK;
mode.value = bank;
mode.value2 = 0;
-   return snd_hwdep_ioctl(hwdep, SNDRV_EMUX_IOCTL_MISC_MODE, &mode);
+   snd_hwdep_ioctl(hwdep, SNDRV_EMUX_IOCTL_MISC_MODE, &mode);
 }
-- 
2.16.4

++ Fix-unused-variable-prev-in-strtoken.patch ++
>From 0581458acc5f28ef50742805cf37278d979b1c12 Mon Sep 17 00:00:00 2001
From: Takashi Iwai 
Date: Thu, 5 Sep 2019 14:07:33 +0200
Subject: [PATCH] Fix unused variable prev in strtoken()

Signed-off-by: Takashi Iwai 
---
 awelib/bool.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/awelib/bool.c b/awelib/bool.c
index ebb4c6e6d65a..f89deb8a52f1 100644
--- a/awelib/bool.c
+++ b/awelib/bool.c
@@ -110,10 +110,10 @@ char *strtoken(char *src)
break;
vptr++;
} else if (*vptr == '"' || *vptr == '\'') {
-   int prev, quote;
-   prev = quote = *vptr;
+   int quote;
+   quote = *vptr;
remove_letter(vptr);
-   for (; *vptr; prev = *vptr, vptr++) {
+   for (; *vptr; vptr++) {
if (*vptr == '\\') {
remove_letter(vptr);
if (*vptr)
-- 
2.16.4




commit awesfx for openSUSE:Factory

2019-04-04 Thread root
Hello community,

here is the log from the commit of package awesfx for openSUSE:Factory checked 
in at 2019-04-04 14:13:27

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


Package is "awesfx"

Thu Apr  4 14:13:27 2019 rev:26 rq:688839 version:0.5.2

Changes:

--- /work/SRC/openSUSE:Factory/awesfx/awesfx.changes2014-11-19 
20:30:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.awesfx.new.3908/awesfx.changes  2019-04-04 
14:13:28.289329609 +0200
@@ -1,0 +2,7 @@
+Tue Mar 26 17:11:56 CET 2019 - ti...@suse.de
+
+- Update to version 0.5.2:
+  Added ALSA-native GUS patch loader (agusload)
+- Change URL to github
+
+---

Old:

  awesfx-0.5.1e.tar.bz2

New:

  awesfx-0.5.2.tar.gz



Other differences:
--
++ awesfx.spec ++
--- /var/tmp/diff_new_pack.5yUbr0/_old  2019-04-04 14:13:29.025329962 +0200
+++ /var/tmp/diff_new_pack.5yUbr0/_new  2019-04-04 14:13:29.029329964 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package awesfx
 #
-# Copyright (c) 2014 SUSE LINUX Products 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
@@ -17,13 +17,13 @@
 
 
 Name:   awesfx
-Version:0.5.1e
+Version:0.5.2
 Release:0
 Summary:SoundFont Utilities for SB AWE32/64 and Emu10k1 Drivers
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Productivity/Multimedia/Sound/Midi
-Url:http://www.alsa-project.org/~iwai/awedrv.html
-Source: awesfx-%{version}.tar.bz2
+Url:https://github.com/tiwai/awesfx
+Source: awesfx-%{version}.tar.gz
 Patch:  awesfx-0.5.1e-fix-bashisms.patch
 BuildRequires:  alsa-devel
 BuildRequires:  libtool




commit awesfx for openSUSE:Factory

2014-11-19 Thread h_root
Hello community,

here is the log from the commit of package awesfx for openSUSE:Factory checked 
in at 2014-11-19 20:26:36

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


Package is "awesfx"

Changes:

--- /work/SRC/openSUSE:Factory/awesfx/awesfx.changes2014-07-25 
09:09:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.awesfx.new/awesfx.changes   2014-11-19 
20:30:20.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov 16 18:36:00 UTC 2014 - Led 
+
+- fix bashism in udev-soundfont script
+- add patches:
+  * awesfx-0.5.1e-fix-bashisms.patch
+
+---

New:

  awesfx-0.5.1e-fix-bashisms.patch



Other differences:
--
++ awesfx.spec ++
--- /var/tmp/diff_new_pack.o5rtdp/_old  2014-11-19 20:30:21.0 +0100
+++ /var/tmp/diff_new_pack.o5rtdp/_new  2014-11-19 20:30:21.0 +0100
@@ -24,6 +24,7 @@
 Group:  Productivity/Multimedia/Sound/Midi
 Url:http://www.alsa-project.org/~iwai/awedrv.html
 Source: awesfx-%{version}.tar.bz2
+Patch:  awesfx-0.5.1e-fix-bashisms.patch
 BuildRequires:  alsa-devel
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
@@ -38,6 +39,7 @@
 
 %prep
 %setup -q
+%patch -p1
 
 %build
 autoreconf -fi

++ awesfx-0.5.1e-fix-bashisms.patch ++
diff -Ndur awesfx-0.5.1e/etc/udev-soundfont 
awesfx-0.5.1e-fix-bashisms/etc/udev-soundfont
--- awesfx-0.5.1e/etc/udev-soundfont2007-08-29 19:02:08.0 +0300
+++ awesfx-0.5.1e-fix-bashisms/etc/udev-soundfont   2014-11-16 
20:34:18.645926954 +0200
@@ -6,7 +6,7 @@
 case $DEVPATH in
 */pci*)
   # Emu10k1 / Audigy, send a MIDI sequence to activate breakout-box
-  echo -en "\xf0\x00\x20\x21\x61\x00\x00\x00\x7f\x00\xf7" > 
/dev/snd/midiC${CARD}D1
+  printf "\xf0\x00\x20\x21\x61\x00\x00\x00\x7f\x00\xf7" > 
/dev/snd/midiC${CARD}D1
   /etc/alsa.d/load-soundfont $CARD default.bnk default.sf2
   ;;
 *)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit awesfx for openSUSE:Factory

2014-07-25 Thread h_root
Hello community,

here is the log from the commit of package awesfx for openSUSE:Factory checked 
in at 2014-07-25 09:09:04

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


Package is "awesfx"

Changes:

--- /work/SRC/openSUSE:Factory/awesfx/awesfx.changes2013-04-14 
10:13:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.awesfx.new/awesfx.changes   2014-07-25 
09:09:09.0 +0200
@@ -1,0 +2,6 @@
+Thu Jul 24 12:23:51 CEST 2014 - ti...@suse.de
+
+- Updated to version 0.5.1e:
+  fix wrong error condition checks in loadbank.c
+
+---

Old:

  awesfx-0.5.1d.tar.bz2

New:

  awesfx-0.5.1e.tar.bz2



Other differences:
--
++ awesfx.spec ++
--- /var/tmp/diff_new_pack.dJsqa1/_old  2014-07-25 09:09:12.0 +0200
+++ /var/tmp/diff_new_pack.dJsqa1/_new  2014-07-25 09:09:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package awesfx
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   awesfx
-Version:0.5.1d
+Version:0.5.1e
 Release:0
 Summary:SoundFont Utilities for SB AWE32/64 and Emu10k1 Drivers
 License:GPL-2.0+

++ awesfx-0.5.1d.tar.bz2 -> awesfx-0.5.1e.tar.bz2 ++
 60950 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/awesfx-0.5.1d/ChangeLog new/awesfx-0.5.1e/ChangeLog
--- old/awesfx-0.5.1d/ChangeLog 2011-03-29 08:33:47.0 +0200
+++ new/awesfx-0.5.1e/ChangeLog 2014-07-24 12:18:13.0 +0200
@@ -1,3 +1,6 @@
+ver.0.5.1e
+   - fix wrong error condition checks in loadbank.c
+
 ver.0.5.1d
- fix possible buffer overflow in awe_read_option_file()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/awesfx-0.5.1d/awelib/loadbank.c new/awesfx-0.5.1e/awelib/loadbank.c
--- old/awesfx-0.5.1d/awelib/loadbank.c 2009-05-29 12:33:45.0 +0200
+++ new/awesfx-0.5.1e/awelib/loadbank.c 2014-07-22 18:20:26.0 +0200
@@ -201,7 +201,7 @@
excl_list = awe_merge_loadlist(excl_list, v->list);
/* load this file */
rc = load_patch(ops, v->name, v->list, NULL, locked, FALSE);
-   if (rc == AWE_RET_ERR && rc == AWE_RET_NOMEM)
+   if (rc == AWE_RET_ERR || rc == AWE_RET_NOMEM)
return rc;
}
 
@@ -247,7 +247,7 @@
 
rc = load_patch(ops, v->name, vlist, NULL, locked, TRUE);
awe_free_loadlist(vlist);
-   if (rc == AWE_RET_ERR && rc == AWE_RET_NOMEM)
+   if (rc == AWE_RET_ERR || rc == AWE_RET_NOMEM)
return rc;
 
mark_loaded_presets(vlist, bank_list);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/awesfx-0.5.1d/configure.in new/awesfx-0.5.1e/configure.in
--- old/awesfx-0.5.1d/configure.in  2011-03-29 08:33:47.0 +0200
+++ new/awesfx-0.5.1e/configure.in  2014-07-24 12:17:06.0 +0200
@@ -1,4 +1,4 @@
-AC_INIT([awesfx],[0.5.1d],[ti...@suse.de],[awesfx])
+AC_INIT([awesfx],[0.5.1e],[ti...@suse.de],[awesfx])
 AM_INIT_AUTOMAKE([gnu dist-bzip2])
 AC_CONFIG_SRCDIR([asfxload.c])
 AM_CONFIG_HEADER([include/config.h])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/awesfx-0.5.1d/include/config.h.in new/awesfx-0.5.1e/include/config.h.in
--- old/awesfx-0.5.1d/include/config.h.in   2011-03-29 08:35:23.0 
+0200
+

commit awesfx for openSUSE:Factory

2013-04-14 Thread h_root
Hello community,

here is the log from the commit of package awesfx for openSUSE:Factory checked 
in at 2013-04-14 10:13:19

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


Package is "awesfx", Maintainer is "ti...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/awesfx/awesfx.changes2011-10-03 
09:13:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.awesfx.new/awesfx.changes   2013-04-14 
10:13:21.0 +0200
@@ -1,0 +2,5 @@
+Thu Apr 11 20:12:39 UTC 2013 - crrodrig...@opensuse.org
+
+- Place udev rules in the correct directory. 
+
+---



Other differences:
--
++ awesfx.spec ++
--- /var/tmp/diff_new_pack.hzh7uq/_old  2013-04-14 10:13:22.0 +0200
+++ /var/tmp/diff_new_pack.hzh7uq/_new  2013-04-14 10:13:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package awesfx
 #
-# Copyright (c) 2011 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
@@ -16,18 +16,21 @@
 #
 
 
-
 Name:   awesfx
-BuildRequires:  alsa-devel
-BuildRequires:  libtool
-Summary:SoundFont Utilities for SB AWE32/64 and Emu10k1 Drivers
 Version:0.5.1d
-Release:1
+Release:0
+Summary:SoundFont Utilities for SB AWE32/64 and Emu10k1 Drivers
 License:GPL-2.0+
 Group:  Productivity/Multimedia/Sound/Midi
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://www.alsa-project.org/~iwai/awedrv.html
 Source: awesfx-%{version}.tar.bz2
+BuildRequires:  alsa-devel
+BuildRequires:  libtool
+BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(udev)
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+
+%define _udevrulesdir %(pkg-config --variable=udevdir udev)/rules.d
 
 %description
 The AWESFX package includes utility programs for controlling the
@@ -38,28 +41,27 @@
 
 %build
 autoreconf -fi
-CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" \
+CFLAGS="%{optflags} -fno-strict-aliasing" \
 %configure
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT install
+%make_install
 # install udev and helper scripts
-mkdir -p $RPM_BUILD_ROOT/etc/udev/rules.d
-install -c -m 0644 etc/*.rules $RPM_BUILD_ROOT/etc/udev/rules.d
-mkdir -p $RPM_BUILD_ROOT/etc/alsa.d
-install -c -m 0755 etc/load-soundfont $RPM_BUILD_ROOT/etc/alsa.d
-install -c -m 0755 etc/udev-soundfont $RPM_BUILD_ROOT/etc/alsa.d
+mkdir -p %{buildroot}%{_udevrulesdir}
+install -c -m 0644 etc/*.rules %{buildroot}%{_udevrulesdir}
+mkdir -p %{buildroot}%{_sysconfdir}/alsa.d
+install -c -m 0755 etc/load-soundfont %{buildroot}%{_sysconfdir}/alsa.d
+install -c -m 0755 etc/udev-soundfont %{buildroot}%{_sysconfdir}/alsa.d
 
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING README ChangeLog
 %doc *.txt
 %{_bindir}/*
-%dir %{_datadir}/sounds/sf2
-%{_datadir}/sounds/sf2/*
+%{_datadir}/sounds/sf2/
 %doc %{_mandir}/*/*
-/etc/udev
-/etc/alsa.d
+%{_udevrulesdir}/*.rules
+%{_sysconfdir}/alsa.d
 
 %changelog

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



commit awesfx for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package awesfx for openSUSE:Factory checked 
in at 2011-12-06 18:00:06

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


Package is "awesfx", Maintainer is "ti...@suse.com"

Changes:




Other differences:
--
++ awesfx.spec ++
--- /var/tmp/diff_new_pack.oUY4SV/_old  2011-12-06 18:01:38.0 +0100
+++ /var/tmp/diff_new_pack.oUY4SV/_new  2011-12-06 18:01:38.0 +0100
@@ -23,7 +23,7 @@
 Summary:SoundFont Utilities for SB AWE32/64 and Emu10k1 Drivers
 Version:0.5.1d
 Release:1
-License:GPLv2+
+License:GPL-2.0+
 Group:  Productivity/Multimedia/Sound/Midi
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://www.alsa-project.org/~iwai/awedrv.html

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



commit awesfx for openSUSE:Factory

2011-10-03 Thread h_root

Hello community,

here is the log from the commit of package awesfx for openSUSE:Factory
checked in at Mon Oct 3 09:13:37 CEST 2011.




--- openSUSE:Factory/awesfx/awesfx.changes  2011-09-23 01:52:17.0 
+0200
+++ awesfx/awesfx.changes   2011-09-30 22:09:58.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 30 20:07:44 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ awesfx.spec ++
--- /var/tmp/diff_new_pack.ySnzgg/_old  2011-10-03 09:13:32.0 +0200
+++ /var/tmp/diff_new_pack.ySnzgg/_new  2011-10-03 09:13:32.0 +0200
@@ -19,6 +19,7 @@
 
 Name:   awesfx
 BuildRequires:  alsa-devel
+BuildRequires:  libtool
 Summary:SoundFont Utilities for SB AWE32/64 and Emu10k1 Drivers
 Version:0.5.1d
 Release:1

continue with "q"...



Remember to have fun...

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



commit awesfx for openSUSE:Factory

2011-09-21 Thread h_root

Hello community,

here is the log from the commit of package awesfx for openSUSE:Factory
checked in at Wed Sep 21 16:52:29 CEST 2011.




--- awesfx/awesfx.changes   2011-03-29 08:41:02.0 +0200
+++ /mounts/work_src_done/STABLE/awesfx/awesfx.changes  2011-09-17 
15:55:30.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 17 13:55:26 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+- Use %_smp_mflags for parallel build
+
+---

calling whatdependson for head-i586




Other differences:
--
++ awesfx.spec ++
--- /var/tmp/diff_new_pack.f0Ttk1/_old  2011-09-21 16:52:24.0 +0200
+++ /var/tmp/diff_new_pack.f0Ttk1/_new  2011-09-21 16:52:24.0 +0200
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   awesfx
@@ -33,12 +32,6 @@
 The AWESFX package includes utility programs for controlling the
 wavetable function on SB AWE32/64 and Emu10k1 sound cards.
 
-
-
-Authors:
-
-Takashi Iwai 
-
 %prep
 %setup -q
 
@@ -46,7 +39,7 @@
 autoreconf -fi
 CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" \
 %configure
-make
+make %{?_smp_mflags}
 
 %install
 make DESTDIR=$RPM_BUILD_ROOT install
@@ -57,9 +50,6 @@
 install -c -m 0755 etc/load-soundfont $RPM_BUILD_ROOT/etc/alsa.d
 install -c -m 0755 etc/udev-soundfont $RPM_BUILD_ROOT/etc/alsa.d
 
-%clean
-[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING README ChangeLog






Remember to have fun...

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



commit awesfx for openSUSE:Factory

2011-03-31 Thread h_root

Hello community,

here is the log from the commit of package awesfx for openSUSE:Factory
checked in at Thu Mar 31 11:24:00 CEST 2011.




--- awesfx/awesfx.changes   2009-05-29 12:51:40.0 +0200
+++ /mounts/work_src_done/STABLE/awesfx/awesfx.changes  2011-03-29 
08:41:02.0 +0200
@@ -1,0 +2,7 @@
+Tue Mar 29 08:40:08 CEST 2011 - ti...@suse.de
+
+- version 0.5.1d:
+  * including previous fixes
+  * fix possible buffer overflow in awe_read_option_file()
+
+---

calling whatdependson for head-i586


Old:

  awesfx-0.5.1a.tar.bz2
  awesfx-autoreconf-fix.diff
  awesfx-getline-fix.diff
  awesfx-udev-soundfont-fix.diff

New:

  awesfx-0.5.1d.tar.bz2



Other differences:
--
++ awesfx.spec ++
--- /var/tmp/diff_new_pack.VKTCde/_old  2011-03-31 11:13:56.0 +0200
+++ /var/tmp/diff_new_pack.VKTCde/_new  2011-03-31 11:13:56.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package awesfx (Version 0.5.1a)
+# spec file for package awesfx
 #
-# Copyright (c) 2009 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
@@ -21,16 +21,13 @@
 Name:   awesfx
 BuildRequires:  alsa-devel
 Summary:SoundFont Utilities for SB AWE32/64 and Emu10k1 Drivers
-Version:0.5.1a
-Release:85
-License:GPL v2 or later
+Version:0.5.1d
+Release:1
+License:GPLv2+
 Group:  Productivity/Multimedia/Sound/Midi
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://www.alsa-project.org/~iwai/awedrv.html
 Source: awesfx-%{version}.tar.bz2
-Patch:  awesfx-autoreconf-fix.diff
-Patch1: awesfx-udev-soundfont-fix.diff
-Patch2: awesfx-getline-fix.diff
 
 %description
 The AWESFX package includes utility programs for controlling the
@@ -43,10 +40,7 @@
 Takashi Iwai 
 
 %prep
-%setup
-%patch -p1
-%patch1 -p1
-%patch2 -p1
+%setup -q
 
 %build
 autoreconf -fi

++ awesfx-0.5.1a.tar.bz2 -> awesfx-0.5.1d.tar.bz2 ++
 18798 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/awesfx-0.5.1a/COPYING new/awesfx-0.5.1d/COPYING
--- old/awesfx-0.5.1a/COPYING   2004-01-22 17:44:19.0 +0100
+++ new/awesfx-0.5.1d/COPYING   2009-05-29 12:33:45.0 +0200
@@ -2,7 +2,7 @@
   Version 2, June 1991
 
  Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+   59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 
@@ -313,7 +313,7 @@
 If the program is interactive, make it output a short notice like this
 when it starts in an interactive mode:
 
-Gnomovision version 69, Copyright (C) year  name of author
+Gnomovision version 69, Copyright (C) year name of author
 Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
 This is free software, and you are welcome to redistribute it
 under certain conditions; type `show c' for details.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/awesfx-0.5.1a/ChangeLog new/awesfx-0.5.1d/ChangeLog
--- old/awesfx-0.5.1a/ChangeLog 2007-08-06 19:17:54.0 +0200
+++ new/awesfx-0.5.1d/ChangeLog 2011-03-29 08:33:47.0 +0200
@@ -1,3 +1,14 @@
+ver.0.5.1d
+   - fix possible buffer overflow in awe_read_option_file()
+
+ver.0.5.1c
+   - oops, I forgot to package COPYING file, released as 0.5.1c
+
+ver.0.5.1b
+   - fix Makefile.am for autoreconf
+   - fix udev script for recent udev versions (that don't pass
+ PHYSDEVDRIVER variable)
+
 ver.0.5.1a
- really fix the build without linux/awe_voice.h
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/awesfx-0.5.1a/INSTALL new/awesfx-0