Mailinglist Archive: opensuse-commit (1670 mails)

< Previous Next >
commit yast2-sound
  • From: root@xxxxxxx (h_root)
  • Date: Mon, 23 Oct 2006 18:39:04 +0200 (CEST)
  • Message-id: <20061023163904.1BC20847F0@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package yast2-sound
checked in at Mon Oct 23 18:39:04 CEST 2006.

--------
--- yast2-sound/yast2-sound.changes 2006-09-21 09:26:21.000000000 +0200
+++ /mounts/work_src_done/STABLE/yast2-sound/yast2-sound.changes 2006-10-23 16:15:25.000000000 +0200
@@ -1,0 +2,7 @@
+Mon Oct 23 16:02:05 CEST 2006 - lslezak@xxxxxxx
+
+- help text - added 'aoss' wrapper description (fate #300351,
+ bug #117806)
+- 2.13.16
+
+-------------------------------------------------------------------

Old:
----
yast2-sound-2.13.15.tar.bz2

New:
----
yast2-sound-2.13.16.tar.bz2

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

Other differences:
------------------
++++++ yast2-sound.spec ++++++
--- /var/tmp/diff_new_pack.xDefsV/_old 2006-10-23 18:38:54.000000000 +0200
+++ /var/tmp/diff_new_pack.xDefsV/_new 2006-10-23 18:38:54.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-sound (Version 2.13.15)
+# spec file for package yast2-sound (Version 2.13.16)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
# norootforbuild

Name: yast2-sound
-Version: 2.13.15
+Version: 2.13.16
Release: 1
-License: GPL
+License: GNU General Public License (GPL) - all versions
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-sound-2.13.15.tar.bz2
+Source0: yast2-sound-2.13.16.tar.bz2
prefix: /usr
BuildRequires: alsa-devel doxygen gcc-c++ perl-XML-Writer update-desktop-files yast2 yast2-core-devel yast2-devtools yast2-testsuite
Requires: yast2 alsa
@@ -38,7 +38,7 @@
Dan Meszaros

%prep
-%setup -n yast2-sound-2.13.15
+%setup -n yast2-sound-2.13.16

%build
%{prefix}/bin/y2tool y2autoconf
@@ -82,6 +82,10 @@
%doc %{prefix}/share/doc/packages/yast2-sound

%changelog -n yast2-sound
+* Mon Oct 23 2006 - lslezak@xxxxxxx
+- help text - added 'aoss' wrapper description (fate #300351,
+ bug #117806)
+- 2.13.16
* Thu Sep 21 2006 - lslezak@xxxxxxx
- new option - select the primary sound card (fate #300352)
- updated the sound card DB

++++++ yast2-sound-2.13.15.tar.bz2 -> yast2-sound-2.13.16.tar.bz2 ++++++
++++ 2397 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/yast2-sound-2.13.15/Makefile.am new/yast2-sound-2.13.16/Makefile.am
--- old/yast2-sound-2.13.15/Makefile.am 2006-09-21 08:57:22.000000000 +0200
+++ new/yast2-sound-2.13.16/Makefile.am 2006-10-23 16:09:34.000000000 +0200
@@ -67,7 +67,7 @@
# because the prerequisite is made here (not anymore!)
# and we don't want any paths in y2autoconf
# info '(autoconf)config.status Invocation'
-$(RPMNAME).pc: $(RPMNAME).pc.in
+$(RPMNAME).pc: $(RPMNAME).pc.in config.status
./config.status --file=$@:$<

if CREATE_PKGCONFIG_NOARCH
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/yast2-sound-2.13.15/Makefile.am.common new/yast2-sound-2.13.16/Makefile.am.common
--- old/yast2-sound-2.13.15/Makefile.am.common 2006-09-21 08:57:22.000000000 +0200
+++ new/yast2-sound-2.13.16/Makefile.am.common 2006-10-23 16:09:34.000000000 +0200
@@ -29,7 +29,19 @@

dist-hook: check-syntax

+CHECK_SYNTAX = true
check-syntax: $(client_DATA) $(ycpchook)
- if test "$(client_DATA)"; then $(bindir)/ycpc -qE -M. -I. $(YCPCFLAGS) $(filter %.ycp,$^) || exit 1; fi
+ @if test "$(client_DATA)"; then \
+ if $(CHECK_SYNTAX); then \
+ TO_CHECK="$(filter %.ycp,$^)"; \
+ echo "Checking syntax of $${TO_CHECK}"; \
+ if ! $(YCPC) -qE -M. -I. $(YCPCFLAGS) $${TO_CHECK}; then \
+ echo "Failed. Disable by 'make ... CHECK_SYNTAX=false' at your own risk"; \
+ exit 1; \
+ fi; \
+ else \
+ echo "Syntax check disabled"; \
+ fi; \
+ fi

-include .dep
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/yast2-sound-2.13.15/VERSION new/yast2-sound-2.13.16/VERSION
--- old/yast2-sound-2.13.15/VERSION 2006-09-21 08:57:13.000000000 +0200
+++ new/yast2-sound-2.13.16/VERSION 2006-10-23 15:43:20.000000000 +0200
@@ -1 +1 @@
-2.13.15
+2.13.16
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/yast2-sound-2.13.15/configure.in new/yast2-sound-2.13.16/configure.in
--- old/yast2-sound-2.13.15/configure.in 2006-09-21 08:57:22.000000000 +0200
+++ new/yast2-sound-2.13.16/configure.in 2006-10-23 16:09:34.000000000 +0200
@@ -1,9 +1,9 @@
dnl configure.in for yast2-sound
dnl
-dnl -- This file is generated by y2autoconf 2.13.22 - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 2.13.16 - DO NOT EDIT! --
dnl (edit configure.in.in instead)

-AC_INIT(yast2-sound, 2.13.15, http://bugs.opensuse.org/, yast2-sound)
+AC_INIT(yast2-sound, 2.13.16, http://bugs.opensuse.org/, yast2-sound)
dnl Check for presence of file 'RPMNAME'
AC_CONFIG_SRCDIR([RPMNAME])

@@ -17,7 +17,7 @@
AM_INIT_AUTOMAKE(tar-ustar) dnl searches for some needed programs

dnl Important YaST2 variables
-VERSION="2.13.15"
+VERSION="2.13.16"
RPMNAME="yast2-sound"
MAINTAINER="Ladislav Slezak <lslezak@xxxxxxx>"

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/yast2-sound-2.13.15/data/doc/sound_db.txt new/yast2-sound-2.13.16/data/doc/sound_db.txt
--- old/yast2-sound-2.13.15/data/doc/sound_db.txt 2006-07-17 10:23:15.000000000 +0200
+++ new/yast2-sound-2.13.16/data/doc/sound_db.txt 2006-10-12 10:07:54.000000000 +0200
@@ -1,4 +1,4 @@
-# $Id: sound_db.txt 31886 2006-07-17 08:24:46Z lslezak $
+# $Id: sound_db.txt 33336 2006-10-12 08:07:50Z lslezak $
# module: po/y2d_snd
# author: dan meszaros <dmeszar@xxxxxxx>
#
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/yast2-sound-2.13.15/data/src/module_index.ycp new/yast2-sound-2.13.16/data/src/module_index.ycp
--- old/yast2-sound-2.13.15/data/src/module_index.ycp 2006-07-17 10:23:15.000000000 +0200
+++ new/yast2-sound-2.13.16/data/src/module_index.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -10,7 +10,7 @@
* Authors:
* Dan Meszaros <dmeszar@xxxxxxx>
*
- * $Id: module_index.ycp 31886 2006-07-17 08:24:46Z lslezak $
+ * $Id: module_index.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
* part of the sound card database
*
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/yast2-sound-2.13.15/sound/src/Sound.ycp new/yast2-sound-2.13.16/sound/src/Sound.ycp
--- old/yast2-sound-2.13.15/sound/src/Sound.ycp 2006-09-01 17:24:52.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/Sound.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -4,7 +4,7 @@
* Summary: Sound data
* Authors: Ladislav Slezak <lslezak@xxxxxxx>
*
- * $Id: Sound.ycp 32674 2006-09-01 15:26:21Z lslezak $
+ * $Id: Sound.ycp 33336 2006-10-12 08:07:50Z lslezak $
*/

{
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/yast2-sound-2.13.15/sound/src/complex.ycp new/yast2-sound-2.13.16/sound/src/complex.ycp
--- old/yast2-sound-2.13.15/sound/src/complex.ycp 2006-09-21 09:19:42.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/complex.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -16,7 +16,7 @@
* String corrections by Christian Steinruecken <cstein@xxxxxxx>, 2001/08/01
*
*
- * $Id: complex.ycp 33011 2006-09-21 07:21:18Z lslezak $
+ * $Id: complex.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
*/

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/yast2-sound-2.13.15/sound/src/copyfonts new/yast2-sound-2.13.16/sound/src/copyfonts
--- old/yast2-sound-2.13.15/sound/src/copyfonts 2006-07-17 11:17:32.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/copyfonts 2006-10-12 10:07:54.000000000 +0200
@@ -1,7 +1,7 @@
#!/bin/bash
#
# script for copying sound banks from sound blaster cd to localhost
-# $Id: copyfonts 31889 2006-07-17 08:33:57Z lslezak $
+# $Id: copyfonts 33336 2006-10-12 08:07:50Z lslezak $
# dan meszaros <dmeszar@xxxxxxx>

# source directory
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/yast2-sound-2.13.15/sound/src/joystick.ycp new/yast2-sound-2.13.16/sound/src/joystick.ycp
--- old/yast2-sound-2.13.15/sound/src/joystick.ycp 2006-09-15 10:04:01.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/joystick.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -10,7 +10,7 @@
* Dan Meszaros <dmeszar@xxxxxxx>
* Ladislav Slezak <lslezak@xxxxxxx>
*
- * $Id: joystick.ycp 32902 2006-09-15 08:05:58Z lslezak $
+ * $Id: joystick.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
* YaST2 joystick configuration client
*
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/yast2-sound-2.13.15/sound/src/manual.ycp new/yast2-sound-2.13.16/sound/src/manual.ycp
--- old/yast2-sound-2.13.15/sound/src/manual.ycp 2006-09-01 17:24:52.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/manual.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -15,7 +15,7 @@
* String corrections by Christian Steinruecken <cstein@xxxxxxx>, 2001/08/01
*
*
- * $Id: manual.ycp 32674 2006-09-01 15:26:21Z lslezak $
+ * $Id: manual.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
*/

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/yast2-sound-2.13.15/sound/src/mixer.ycp new/yast2-sound-2.13.16/sound/src/mixer.ycp
--- old/yast2-sound-2.13.15/sound/src/mixer.ycp 2006-07-17 11:17:32.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/mixer.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -13,7 +13,7 @@
*
* String corrections by Christian Steinruecken <cstein@xxxxxxx>, 2001/08/01
*
- * $Id: mixer.ycp 31890 2006-07-17 08:42:34Z lslezak $
+ * $Id: mixer.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
*/

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/yast2-sound-2.13.15/sound/src/options.ycp new/yast2-sound-2.13.16/sound/src/options.ycp
--- old/yast2-sound-2.13.15/sound/src/options.ycp 2006-09-01 17:24:52.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/options.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -16,7 +16,7 @@
* Dan Vesely <dan@xxxxxxx>
* Dan Meszaros <dmeszar@xxxxxxx>
*
- * $Id: options.ycp 32674 2006-09-01 15:26:21Z lslezak $
+ * $Id: options.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
* parameters: 1st: parameter 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/yast2-sound-2.13.15/sound/src/routines.ycp new/yast2-sound-2.13.16/sound/src/routines.ycp
--- old/yast2-sound-2.13.15/sound/src/routines.ycp 2006-09-01 17:24:52.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/routines.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -12,7 +12,7 @@
* Dan Vesely <dan@xxxxxxx>
* Dan Meszaros <dmeszar@xxxxxxx>
*
- * $Id: routines.ycp 32674 2006-09-01 15:26:21Z lslezak $
+ * $Id: routines.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
*/

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/yast2-sound-2.13.15/sound/src/sound_proposal.ycp new/yast2-sound-2.13.16/sound/src/sound_proposal.ycp
--- old/yast2-sound-2.13.15/sound/src/sound_proposal.ycp 2006-09-15 10:04:01.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/sound_proposal.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -5,7 +5,7 @@
* Authors: Dan Meszaros <dmeszar@xxxxxxx>
* Ladislav Slezak <lslezak@xxxxxxx>
*
- * $Id: sound_proposal.ycp 32902 2006-09-15 08:05:58Z lslezak $
+ * $Id: sound_proposal.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
* Proposal function dispatcher for sound configuration.
*/
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/yast2-sound-2.13.15/sound/src/sound_summary.ycp new/yast2-sound-2.13.16/sound/src/sound_summary.ycp
--- old/yast2-sound-2.13.15/sound/src/sound_summary.ycp 2006-09-15 10:04:01.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/sound_summary.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -10,7 +10,7 @@
* Authors:
* Dan Meszaros <dmeszar@xxxxxxx>
*
- * $Id: sound_summary.ycp 32902 2006-09-15 08:05:58Z lslezak $
+ * $Id: sound_summary.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
* Soud installation summary. returns list of already configured and not configured sound cards
*
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/yast2-sound-2.13.15/sound/src/sound_write.ycp new/yast2-sound-2.13.16/sound/src/sound_write.ycp
--- old/yast2-sound-2.13.15/sound/src/sound_write.ycp 2006-09-15 10:04:01.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/sound_write.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -12,7 +12,7 @@
* Dan Vesely <dan@xxxxxxx>
* Dan Meszaros <dmeszar@xxxxxxx>
*
- * $Id: sound_write.ycp 32902 2006-09-15 08:05:58Z lslezak $
+ * $Id: sound_write.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
* Parameters are given in a map with keys:
* "modules_conf" ... save info- list of configured cards:
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/yast2-sound-2.13.15/sound/src/texts.ycp new/yast2-sound-2.13.16/sound/src/texts.ycp
--- old/yast2-sound-2.13.15/sound/src/texts.ycp 2006-09-21 09:19:42.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/texts.ycp 2006-10-23 16:08:13.000000000 +0200
@@ -13,7 +13,7 @@
* Summary:
* Text constants for sound module
*
- * $Id: texts.ycp 33011 2006-09-21 07:21:18Z lslezak $
+ * $Id: texts.ycp 33577 2006-10-23 14:08:10Z lslezak $
*
*/
{
@@ -286,6 +286,10 @@

_("<p>The sound device with index 0 is the default device used by system and applications.
Use <b>Other</b> to set the selected sound device as the primary device.</p>")
+
++ _("The applications which use OSS (Open Sound System) can use the software
+mixer by using aoss wrapper. Use command <tt>aoss &lt;application&gt;</tt> to
+start the application.")
);

ret = add(ret, "ErrorDialog",
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/yast2-sound-2.13.15/sound/src/volume_routines.ycp new/yast2-sound-2.13.16/sound/src/volume_routines.ycp
--- old/yast2-sound-2.13.15/sound/src/volume_routines.ycp 2006-07-17 11:17:32.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/volume_routines.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -13,7 +13,7 @@
* Dan Meszaros <dmeszar@xxxxxxx>
* Jiri Suchomel <jsuchome@xxxxxxx>
*
- * $Id: volume_routines.ycp 31891 2006-07-17 09:01:11Z lslezak $
+ * $Id: volume_routines.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
*/

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/yast2-sound-2.13.15/sound/src/wizards.ycp new/yast2-sound-2.13.16/sound/src/wizards.ycp
--- old/yast2-sound-2.13.15/sound/src/wizards.ycp 2006-09-01 17:24:52.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/wizards.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -6,7 +6,7 @@
* Dan Meszaros <dmeszar@xxxxxxx>,
* Jiri Suchomel <jsuchome@xxxxxxx>
*
- * $Id: wizards.ycp 32674 2006-09-01 15:26:21Z lslezak $
+ * $Id: wizards.ycp 33336 2006-10-12 08:07:50Z lslezak $
*/

{
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/yast2-sound-2.13.15/sound/src/write_routines.ycp new/yast2-sound-2.13.16/sound/src/write_routines.ycp
--- old/yast2-sound-2.13.15/sound/src/write_routines.ycp 2006-09-01 17:24:52.000000000 +0200
+++ new/yast2-sound-2.13.16/sound/src/write_routines.ycp 2006-10-12 10:07:54.000000000 +0200
@@ -1,6 +1,6 @@
/**
*
- * $Id: write_routines.ycp 32674 2006-09-01 15:26:21Z lslezak $
+ * $Id: write_routines.ycp 33336 2006-10-12 08:07:50Z lslezak $
*
* File:
* write_routines.ycp


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



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread
  • No further messages