Mailinglist Archive: opensuse-commit (1206 mails)
| < Previous | Next > |
commit yast2-sound
- From: root@xxxxxxx (h_root)
- Date: Sun, 7 May 2006 16:49:54 +0200 (CEST)
- Message-id: <20060507144954.41FCC8C5C2@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package yast2-sound
checked in at Sun May 7 16:49:54 CEST 2006.
--------
--- yast2-sound/yast2-sound.changes 2006-03-09 13:28:22.000000000 +0100
+++ STABLE/yast2-sound/yast2-sound.changes 2006-05-04 14:59:55.000000000 +0200
@@ -1,0 +2,12 @@
+Thu May 4 15:00:47 CEST 2006 - lslezak@xxxxxxx
+
+- read_routines.ycp - added textdomain
+- 2.13.11
+
+-------------------------------------------------------------------
+Thu May 4 14:34:07 CEST 2006 - lslezak@xxxxxxx
+
+- merged proofread texts
+- 2.13.10
+
+-------------------------------------------------------------------
Old:
----
yast2-sound-2.13.9.tar.bz2
New:
----
yast2-sound-2.13.11.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-sound.spec ++++++
--- /var/tmp/diff_new_pack.PgEFxp/_old 2006-05-07 16:49:49.000000000 +0200
+++ /var/tmp/diff_new_pack.PgEFxp/_new 2006-05-07 16:49:49.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-sound (Version 2.13.9)
+# spec file for package yast2-sound (Version 2.13.11)
#
# 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.9
-Release: 1
+Version: 2.13.11
+Release: 2
License: GPL
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-sound-2.13.9.tar.bz2
+Source0: yast2-sound-2.13.11.tar.bz2
prefix: /usr
BuildRequires: alsa-devel doxygen gcc-c++ perl-XML-Writer update-desktop-files yast2 yast2-devtools yast2-testsuite
Requires: yast2 alsa
@@ -38,7 +38,7 @@
Dan Meszaros
%prep
-%setup -n yast2-sound-2.13.9
+%setup -n yast2-sound-2.13.11
%build
%{prefix}/bin/y2tool y2autoconf
@@ -83,6 +83,12 @@
%doc %{prefix}/share/doc/packages/yast2-sound
%changelog -n yast2-sound
+* Thu May 04 2006 - lslezak@xxxxxxx
+- read_routines.ycp - added textdomain
+- 2.13.11
+* Thu May 04 2006 - lslezak@xxxxxxx
+- merged proofread texts
+- 2.13.10
* Thu Mar 09 2006 - lslezak@xxxxxxx
- merged proofread texts
- 2.13.9
++++++ yast2-sound-2.13.9.tar.bz2 -> yast2-sound-2.13.11.tar.bz2 ++++++
++++ 27649 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.9/Makefile.am new/yast2-sound-2.13.11/Makefile.am
--- old/yast2-sound-2.13.9/Makefile.am 2006-02-20 09:49:54.000000000 +0100
+++ new/yast2-sound-2.13.11/Makefile.am 2006-05-04 15:02:26.000000000 +0200
@@ -6,7 +6,8 @@
# (Edit ./SUBDIRS instead)
#
-PREFIX = /usr
+#where devtools are
+PREFIX := $(shell pkg-config --print-errors --variable=prefix yast2-devtools)
VERSION = $(shell cat $(srcdir)/VERSION)
RPMNAME = $(shell cat $(srcdir)/RPMNAME)
@@ -30,6 +31,10 @@
extra_COPYRIGHT_files = $(if $(HAS_YAST_LICENSE), $(COPYRIGHT_files_yast), $(COPYRIGHT_files_gpl))
AUTOMAKE_OPTIONS = foreign dist-bzip2
+# where devtools instal m4 snippets
+# argh, executed literally
+#ACLOCAL_AMFLAGS = -I $(PREFIX)/share/aclocal
+ACLOCAL_AMFLAGS = -I `if test -d ./devtools/admin; then echo ./devtools/admin; else pkg-config --print-errors --variable=datadir yast2-devtools; fi`/aclocal
Makefile.am.common: $(DEVTOOLS_DIR)/admin/Makefile.am.common
cmp -s $< $@ || cp -f $< $@
@@ -57,12 +62,8 @@
# info '(automake)Conditionals'
if CREATE_PKGCONFIG
-# pkg-config
-# if a package does not have its own pc, copy the generic one
-$(RPMNAME).pc.in: $(DEVTOOLS_DIR)/admin/generic.pc.in
- test -f $@ || cp -p $< $@
# create the file here instead of by configure
-# because the prerequisite is made here
+# 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
@@ -153,7 +154,7 @@
$(PREFIX)/bin/y2tool create-spec < $$i > $$here/package/$${newname} ; \
done
-package: check-up-to-date check-tagversion check-all-packages package-local
+package: check-up-to-date check-tagversion check-all-packages check-textdomain package-local
TAGVERSION = $(PREFIX)/bin/y2tool tagversion
@@ -198,6 +199,9 @@
false; \
fi
+check-textdomain:
+ $(PREFIX)/bin/y2tool check-textdomain $(srcdir)
+
stable: checkin-stable
checkin-stable: package
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.9/Makefile.am.common new/yast2-sound-2.13.11/Makefile.am.common
--- old/yast2-sound-2.13.9/Makefile.am.common 2006-02-20 09:49:54.000000000 +0100
+++ new/yast2-sound-2.13.11/Makefile.am.common 2006-05-04 15:02:26.000000000 +0200
@@ -9,7 +9,7 @@
# suffix mapping: info '(make)Static Usage'
# apply only to our modules, not external ones
${ybcfiles}: %.ybc: %.ycp $(ycpchook)
- Y2DIR=$(YCPC_Y2DIR) LD_LIBRARY_PATH=$(YCPC_LD_LIBRARY_PATH) $(bindir)/ycpc -c -M. -I. -q $(YCPCFLAGS) $<
+ Y2DIR=$(YCPC_Y2DIR) LD_LIBRARY_PATH=$(YCPC_LD_LIBRARY_PATH) ${YCPC} -c -M. -I. -q $(YCPCFLAGS) $<
# files to clean
CLEANFILES = ${ybcfiles}
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.9/VERSION new/yast2-sound-2.13.11/VERSION
--- old/yast2-sound-2.13.9/VERSION 2006-03-09 13:13:17.000000000 +0100
+++ new/yast2-sound-2.13.11/VERSION 2006-05-04 15:01:18.000000000 +0200
@@ -1 +1 @@
-2.13.9
+2.13.11
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.9/configure.in new/yast2-sound-2.13.11/configure.in
--- old/yast2-sound-2.13.9/configure.in 2006-02-20 09:49:53.000000000 +0100
+++ new/yast2-sound-2.13.11/configure.in 2006-05-04 15:02:26.000000000 +0200
@@ -3,7 +3,7 @@
dnl -- This file is generated by y2autoconf - DO NOT EDIT! --
dnl (edit configure.in.in instead)
-AC_INIT(yast2-sound, 2.13.8, http://www.suse.de/feedback, yast2-sound)
+AC_INIT(yast2-sound, 2.13.11, http://www.suse.de/feedback, 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.8"
+VERSION="2.13.11"
RPMNAME="yast2-sound"
MAINTAINER="Ladislav Slezak <lslezak@xxxxxxx>"
@@ -111,8 +111,8 @@
AC_MSG_ERROR(xgettext is missing; please install gettext-devel.)
fi
-devtools_ybindir=`pkg-config --variable=ybindir yast2-devtools`
-devtools_yast2dir=`pkg-config --variable=yast2dir yast2-devtools`
+devtools_ybindir=`pkg-config --print-errors --variable=ybindir yast2-devtools`
+devtools_yast2dir=`pkg-config --print-errors --variable=yast2dir yast2-devtools`
dnl producing pkg-config for others?
AM_CONDITIONAL(CREATE_PKGCONFIG, test "x${CREATE_PKGCONFIG}" != x)
@@ -139,6 +139,10 @@
if test "$YCPMAKEDEP" = "false"; then
AC_MSG_ERROR([ycpmakedep is not installed])
fi
+AC_PATH_PROG(YCPC, ycpc, false, $PATH:$bindir)
+if test "$YCPC" = "false"; then
+ AC_MSG_ERROR([ycpc is not installed])
+fi
AC_PATH_PROG(YDOXYGEN, ydoxygen, false, $PATH:$devtools_ybindir)
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.9/data/sndcards.ycp new/yast2-sound-2.13.11/data/sndcards.ycp
--- old/yast2-sound-2.13.9/data/sndcards.ycp 2006-03-09 13:12:55.000000000 +0100
+++ new/yast2-sound-2.13.11/data/sndcards.ycp 2006-05-04 14:23:28.000000000 +0200
@@ -2441,7 +2441,7 @@
"buggy_semaphore" : $[
"allows" : "{{0,Disabled},{1,Enabled}}",
"default" : "0",
- "descr" : _("Enable work-around for hardwares with problematic codec semaphores (bool)"),
+ "descr" : _("Enable work-around for hardware with problematic codec semaphores (bool)"),
"dialog" : "check"
]
]
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.9/sound/src/read_routines.ycp new/yast2-sound-2.13.11/sound/src/read_routines.ycp
--- old/yast2-sound-2.13.9/sound/src/read_routines.ycp 2006-01-06 10:12:02.000000000 +0100
+++ new/yast2-sound-2.13.11/sound/src/read_routines.ycp 2006-05-04 14:56:55.000000000 +0200
@@ -11,7 +11,7 @@
* Authors:
* Dan Meszaros <dmeszar@xxxxxxx>
*
- * $Id: read_routines.ycp 26852 2006-01-06 09:12:03Z lslezak $
+ * $Id: read_routines.ycp 30699 2006-05-04 12:51:15Z lslezak $
*
*/
@@ -22,6 +22,8 @@
include "sound/routines.ycp";// for is_snd_alias()
+ textdomain "sound";
+
/**
* tries to determine card model name from audio.alsa agent
* @param card_id card id
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
| < Previous | Next > |