openSUSE Commits
Threads by month
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
October 2008
- 1 participants
- 1650 discussions
Hello community,
here is the log from the commit of package LibVNCServer
checked in at Mon Oct 27 17:02:15 CET 2008.
--------
--- LibVNCServer/LibVNCServer.changes 2008-02-25 07:28:16.000000000 +0100
+++ /mounts/work_src_done/STABLE/LibVNCServer/LibVNCServer.changes 2008-10-27 15:37:00.397255000 +0100
@@ -1,0 +2,5 @@
+Mon Oct 27 15:36:23 CET 2008 - garloff(a)suse.de
+
+- fix-warn.diff: Avoid pointer > 0 comparison (bnc 435610)
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
New:
----
fix-warn.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ LibVNCServer.spec ++++++
--- /var/tmp/diff_new_pack.M21962/_old 2008-10-27 16:58:42.000000000 +0100
+++ /var/tmp/diff_new_pack.M21962/_new 2008-10-27 16:58:42.000000000 +0100
@@ -2,9 +2,16 @@
# spec file for package LibVNCServer (Version 0.9.1)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
-# This file and all modifications and additions to the pristine
-# package are under the same license as the package itself.
#
+# All modifications and additions to the file contributed by third parties
+# remain the property of their copyright owners, unless otherwise agreed
+# upon. The license for this file, and modifications and additions to the
+# file, is the same license as for the pristine package itself (unless the
+# license for the pristine package is not an Open Source License, in which
+# case the license is the MIT License). An "Open Source License" is a
+# 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/
#
@@ -17,7 +24,7 @@
Group: Development/Libraries/X11
AutoReqProv: on
Version: 0.9.1
-Release: 80
+Release: 154
Summary: VNC Development Library
Url: http://libvncserver.sf.net/
Source0: %{name}-%{version}.tar.bz2
@@ -26,6 +33,7 @@
Patch5: patch-libvnc-0215.l
Patch6: stack-check
Patch7: redef-keysym
+Patch8: fix-warn.diff
Patch10: dont-build-x11vnc
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -50,6 +58,7 @@
Karl Runge
%package devel
+License: GPL v2 or later
Requires: %{name} = %{version} zlib-devel
AutoReqProv: on
Summary: VNC Development Library
@@ -84,6 +93,7 @@
%patch5 -p1
%patch6 -p1
%patch7 -p1
+%patch8 -p1
%patch10 -p1
# aclocal; autoheader; automake --add-missing --copy; autoconf
# ./configure --enable-maintainer-mode
@@ -128,6 +138,8 @@
%{_libdir}/libvncserver.so
%changelog
+* Mon Oct 27 2008 garloff(a)suse.de
+- fix-warn.diff: Avoid pointer > 0 comparison (bnc 435610)
* Mon Feb 25 2008 crrodriguez(a)suse.de
- fix library-without-ldconfig-post* errors
- devel package requires zlib-devel
++++++ fix-warn.diff ++++++
Index: LibVNCServer-0.9.1/libvncclient/vncviewer.c
===================================================================
--- LibVNCServer-0.9.1.orig/libvncclient/vncviewer.c
+++ LibVNCServer-0.9.1/libvncclient/vncviewer.c
@@ -237,9 +237,9 @@ static rfbBool rfbInitConnection(rfbClie
rfbBool rfbInitClient(rfbClient* client,int* argc,char** argv) {
int i,j;
- if(argv>0 && argc && *argc) {
+ if(argv && argc && *argc) {
if(client->programName==0)
client->programName=argv[0];
for (i = 1; i < *argc; i++) {
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package libsoup
checked in at Mon Oct 27 17:02:03 CET 2008.
--------
--- GNOME/libsoup/libsoup.changes 2008-10-03 07:29:22.000000000 +0200
+++ /mounts/work_src_done/STABLE/libsoup/libsoup.changes 2008-10-21 10:32:07.000000000 +0200
@@ -1,0 +2,7 @@
+Tue Oct 21 19:28:57 EST 2008 - mboman(a)suse.de
+
+- Update to version 2.24.1:
+ + Bugs fixed: bgo#533473, bgo##536285, bgo#498509, bgo#553976, bgo#557072
+ + Updated generated documentation
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
libsoup-2.24.0.1.tar.bz2
New:
----
libsoup-2.24.1.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libsoup.spec ++++++
--- /var/tmp/diff_new_pack.C21247/_old 2008-10-27 16:58:20.000000000 +0100
+++ /var/tmp/diff_new_pack.C21247/_new 2008-10-27 16:58:20.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package libsoup (Version 2.24.0.1)
+# spec file for package libsoup (Version 2.24.1)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -29,7 +29,7 @@
Group: Development/Libraries/GNOME
AutoReqProv: on
Summary: Simple Object Access Protocol (SOAP)
-Version: 2.24.0.1
+Version: 2.24.1
Release: 1
Source: ftp://ftp.gnome.org/pub/GNOME/stable/sources/libsoup/2.2/%{name}-%{version}…
# PATCH-FEATURE-UPSTREAM libsoup-334021-client-ssl-certs.patch bgo334021 -- client SSL certificate support
@@ -186,6 +186,10 @@
%{_datadir}/gtk-doc/html/libsoup-2.4
%changelog
+* Tue Oct 21 2008 mboman(a)suse.de
+- Update to version 2.24.1:
+ + Bugs fixed: bgo#533473, bgo##536285, bgo#498509, bgo#553976, bgo#557072
+ + Updated generated documentation
* Fri Oct 03 2008 mboman(a)suse.de
- Update to version 2.24.0.1:
+ Reverted part of the fix for bgo#528882, which caused the DAAP
@@ -197,11 +201,11 @@
- Update to version 2.23.92:
+ Fixed the handling of a 302 response to a HEAD request, which
should NOT be treated like a 303 response (bgo#551190).
-* Wed Sep 03 2008 mboman(a)novell.com
+* Tue Sep 02 2008 mboman(a)novell.com
- Update to version 2.23.91:
+ Fixed a crash in gvfs [bgo#528882]
+ Added soup_date_to_timeval() for gvfs. [bgo#549006]
-* Thu Aug 07 2008 maw(a)suse.de
+* Wed Aug 06 2008 maw(a)suse.de
- Update to version 2.23.6:
+ Fixed use of g_idle_add() so that heavy I/O won't end up
blocking libsoup callbacks (bgo#536676)
@@ -209,7 +213,7 @@
+ Properly handle responses larger than 4G (bgo#539861)
+ Fixed the build when using certain LDFLAGS (bgo#541506)
+ Fixed a small bug in Digest auth handling (bgo#544681).
-* Tue Jun 17 2008 maw(a)suse.de
+* Mon Jun 16 2008 maw(a)suse.de
- Update to version 2.23.1:
+ This is the first unstable release leading up to GNOME 2.24;
the large version number bump is so that libsoup's version
@@ -221,16 +225,16 @@
SoupAuthManager to use it
+ Added SoupCookie and SoupCookieJar; this API is already being
used in Epiphany, via WebKit, but it is not yet complete.
-* Wed Apr 30 2008 cthiel(a)suse.de
+* Tue Apr 29 2008 cthiel(a)suse.de
- obsolete libsoup-<arch> via baselibs.conf
-* Tue Apr 22 2008 maw(a)suse.de
+* Mon Apr 21 2008 maw(a)suse.de
- Drop libsoup-2.2.100-r924.patch, because it is now upstream
- Respin libsoup-334021.patch, and rename it to
libsoup-334021-client-ssl-certs.patch.
* Thu Apr 10 2008 ro(a)suse.de
- added baselibs.conf file to build xxbit packages
for multilib support
-* Thu Apr 10 2008 maw(a)suse.de
+* Wed Apr 09 2008 maw(a)suse.de
- Update to version 2.4.1:
+ Fixed SoupMessage to not downgrade to HTTP/1.0 for the second
attempt when it receives an HTTP/1.0 redirect or 401
@@ -278,7 +282,7 @@
networks (bgo#523269)
* Added some new regression tests, fixed some small bugs in
the existing ones.
-* Fri Mar 14 2008 maw(a)suse.de
+* Thu Mar 13 2008 maw(a)suse.de
- Update to version 2.4.0:
+ Fixed a small memory leak in SoupSession (bgo#518798)
+ Minor fixes to redirect behavior; PROPFINDs can now be
@@ -287,13 +291,13 @@
run by "make check"
+ The SoupSocket I/O methods now set nread/nwrote even on
error.
-* Tue Mar 04 2008 maw(a)suse.de
+* Mon Mar 03 2008 maw(a)suse.de
- Update to version 2.3.4:
+ Documentation is once again available from devhelp (bgo#518384
and bgo#518317)
+ Tidied up libsoup-2.4.pc file (bgo#517631)
- The shared library subpackage is now called libsoup-2_4-1.
-* Tue Feb 19 2008 maw(a)suse.de
+* Mon Feb 18 2008 maw(a)suse.de
- Update to version 2.3.2:
+ API changes / Behavior changes:
* soup_server_add_auth_domain() now refs the auth domain when
@@ -356,12 +360,12 @@
* Fixed tests/query-test to compile correctly on Solaris.
[bgo#513602, patch from Jeff Cai]
* Fixed some other minor HTTP conformance issues.
-* Fri Feb 01 2008 maw(a)suse.de
+* Thu Jan 31 2008 maw(a)suse.de
- Split out a shared library subpackage
- Build with -fno-strict-aliasing
- s#%%run_ldconfig#/sbin/ldconfig#
- Remove libtool archives and static libraries.
-* Wed Jan 30 2008 rodrigo(a)suse.de
+* Tue Jan 29 2008 rodrigo(a)suse.de
- Update to version 2.3.0.1:
* SoupURI now correctly handles URIs with complex encoded queries
* It is now possible for a SoupServer to use Digest auth without
@@ -387,31 +391,31 @@
* SoupServer now automatically adds a "Date" header
- Disabled not working patches
- Fixed summaries
-* Tue Aug 07 2007 jberkman(a)novell.com
+* Mon Aug 06 2007 jberkman(a)novell.com
- export new smartcard functionality from gnutls for evo-exchange (gnome bug
[#334021])
-* Tue Feb 20 2007 maw(a)suse.de
+* Mon Feb 19 2007 maw(a)suse.de
- Update to version 2.2.100
- Remove header-parsing.patch which is now upstream.
* Tue Feb 13 2007 sbrabec(a)suse.cz
- Do not build unusable static libraries (#238552#c17).
-* Wed Jan 17 2007 maw(a)suse.de
+* Tue Jan 16 2007 maw(a)suse.de
- Add header-parsing.patch (#235084 and CVE-2006-5876).
* Mon Jan 08 2007 sbrabec(a)suse.cz
- Spec file cleanup.
-* Sat Dec 09 2006 maw(a)suse.de
+* Fri Dec 08 2006 maw(a)suse.de
- Move to /usr.
-* Wed Nov 08 2006 cstender(a)suse.de
+* Tue Nov 07 2006 cstender(a)suse.de
- removed 'rm -rf $RPM_BUILD_ROOT' from build section
- added ldconfig call
-* Wed Aug 16 2006 jhargadon(a)suse.de
+* Tue Aug 15 2006 jhargadon(a)suse.de
- update to version 2.2.96
- SoupServer now works even if you don't explicitly set an
encoding for the response.
- WWW-Authenticate and Proxy-Authenticate responses with no
realm parameter are now ignored
- Fixed a bug in soup_mktime_utc()
-* Thu Jul 06 2006 dgollub(a)suse.de
+* Wed Jul 05 2006 dgollub(a)suse.de
- update to 2.2.94:
* Various fixes to the XML-RPC code (which apparently had not
actually ever worked before) from Brent Smith. [343973,
@@ -453,18 +457,18 @@
* Mon Feb 27 2006 danw(a)suse.de
- Add a patch from CVS for use by evolution
(make connection timeout configurable)
-* Wed Feb 22 2006 sbrabec(a)suse.cz
+* Tue Feb 21 2006 sbrabec(a)suse.cz
- Do not require exact release in devel file.
-* Thu Jan 26 2006 mls(a)suse.de
+* Wed Jan 25 2006 mls(a)suse.de
- converted neededforbuild to BuildRequires
-* Fri Nov 18 2005 danw(a)suse.de
+* Thu Nov 17 2005 danw(a)suse.de
- update to 2.2.90, which includes the opensync patches
-* Thu Nov 03 2005 dmueller(a)suse.de
+* Wed Nov 02 2005 dmueller(a)suse.de
- don't build as root
-* Tue Aug 23 2005 jpr(a)suse.de
+* Mon Aug 22 2005 jpr(a)suse.de
- Update to released 2.2.6.1 which includes the cvs patches we were already
folding in plus the second part of the fix for 104319
-* Fri Aug 19 2005 ro(a)suse.de
+* Thu Aug 18 2005 ro(a)suse.de
- update to cvs version folding in other patches
* Thu Aug 18 2005 ro(a)suse.de
- added libsoup-2.2.3-danw-tambet-threading.patch
@@ -474,41 +478,41 @@
- updated and re-enabled patches...
* Fri Aug 12 2005 jpr(a)suse.de
- Add lzo and lzo-devel to neededforbuild to get ssl support back (104319)
-* Fri Aug 12 2005 gekker(a)suse.de
+* Thu Aug 11 2005 gekker(a)suse.de
- Update to version 2.2.5
-* Wed Jun 29 2005 gekker(a)suse.de
+* Tue Jun 28 2005 gekker(a)suse.de
- Update to version 2.2.3
-* Wed Jun 29 2005 gekker(a)suse.de
+* Tue Jun 28 2005 gekker(a)suse.de
- Add patch for close exec (62176).
* Thu Mar 10 2005 hvogel(a)suse.de
- More gnutls patching. Fixed CPU sucking bug #57811 (ximian)
-* Sun Feb 06 2005 gekker(a)suse.de
+* Sat Feb 05 2005 gekker(a)suse.de
- Update to version 2.2.2
* Fri Jan 28 2005 meissner(a)suse.de
- Added sentinels to spot bad valist handling, no-strict-aliasing
is not needed here.
-* Sun Jan 23 2005 ro(a)suse.de
+* Sat Jan 22 2005 ro(a)suse.de
- GNUTLS_CERT_NOT_TRUSTED is no longer present in current gnutls
-* Tue Nov 30 2004 gekker(a)suse.de
+* Mon Nov 29 2004 gekker(a)suse.de
- Update to version 2.2.1
-* Thu Oct 21 2004 dobey(a)suse.de
+* Wed Oct 20 2004 dobey(a)suse.de
- Add patch for bugzilla.ximian.com bug #68583
-* Sat Aug 28 2004 dobey(a)suse.de
+* Fri Aug 27 2004 dobey(a)suse.de
- Update to version 2.2.0
-* Sat Aug 14 2004 dobey(a)suse.de
+* Fri Aug 13 2004 dobey(a)suse.de
- Update to version 2.1.13
- Require glib2-devel for the libsoup-devel package
-* Fri Aug 06 2004 dobey(a)suse.de
+* Thu Aug 05 2004 dobey(a)suse.de
- Add proper dependencies to the devel package
-* Fri Aug 06 2004 dobey(a)suse.de
+* Thu Aug 05 2004 dobey(a)suse.de
- Fix support for SSL
-* Thu Jul 29 2004 dobey(a)suse.de
+* Wed Jul 28 2004 dobey(a)suse.de
- Updated to version 2.1.12
-* Fri Jun 04 2004 mibarra(a)suse.de
+* Thu Jun 03 2004 mibarra(a)suse.de
- Updated to version 2.1.11
-* Sat May 22 2004 mibarra(a)suse.de
+* Fri May 21 2004 mibarra(a)suse.de
- Updated to version 2.1.10.
-* Tue May 18 2004 clahey(a)suse.de
+* Mon May 17 2004 clahey(a)suse.de
- Updated to version 2.1.9.
* Mon Mar 22 2004 hhetter(a)suse.de
- updated to version 1.99.28
@@ -516,7 +520,7 @@
- -fno-strict-aliasing.
* Fri Aug 08 2003 sbrabec(a)suse.cz
- Updated to version 1.99.23.
-* Wed Aug 06 2003 sbrabec(a)suse.cz
+* Tue Aug 05 2003 sbrabec(a)suse.cz
- Package renamed to libsoup.
* Mon Jul 14 2003 sbrabec(a)suse.cz
- GNOME prefix change to /opt/gnome.
++++++ libsoup-2.24.0.1.tar.bz2 -> libsoup-2.24.1.tar.bz2 ++++++
++++ 46068 lines of diff (skipped)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package libpt2
checked in at Mon Oct 27 16:58:32 CET 2008.
--------
--- libpt2/libpt2.changes 2008-10-20 17:34:22.000000000 +0200
+++ /mounts/work_src_done/STABLE/libpt2/libpt2.changes 2008-10-26 17:50:41.620741000 +0100
@@ -1,0 +2,21 @@
+Sun Oct 26 17:44:45 CET 2008 - kkeil(a)suse.de
+
+- update to bugfix release 2.4.2
+ * Fix static linking for mingw
+ * Move the defaults so we can overwrite them depending on the
+ platform
+ * Finally fix static and dynamic plugins on mingw
+ * Fixed being able to pass a ip%interface form of address string
+ to a PIPSocket::Address and it still works correctly, using the
+ ip part if there
+ * Fixed correct upper/lower case comparisons as per RFC952
+ * Make vfw configurable
+ * STUN was not working with Open NAT
+ * Fixed incorrect port displayed in trace log for STUN
+ * Make sure CreateSocketPair also works with open nat
+ * Allow video file output device to work with new files
+ * Fixed problem with PSafeCollection destructor deleting objects
+ even if they still have a PSafePtr referencing them
+ * Fix compilation without vfw
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
ptlib-2.4.1.diff
ptlib-2.4.1.tar.bz2
New:
----
ptlib-2.4.2.diff
ptlib-2.4.2.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libpt2.spec ++++++
--- /var/tmp/diff_new_pack.S20075/_old 2008-10-27 16:57:57.000000000 +0100
+++ /var/tmp/diff_new_pack.S20075/_new 2008-10-27 16:57:57.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package libpt2 (Version 2.4.1)
+# spec file for package libpt2 (Version 2.4.2)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -20,8 +20,8 @@
Name: libpt2
%define _name ptlib
-Version: 2.4.1
-Release: 2
+Version: 2.4.2
+Release: 1
BuildRequires: SDL-devel bison esound-devel flex gcc-c++ libavc1394-devel libdc1394_control12-devel libdv-devel libexpat-devel libstdc++-devel openldap2-devel
Url: http://www.openh323.org/
License: MOZILLA PUBLIC LICENSE (MPL/NPL)
@@ -201,6 +201,24 @@
%{_libdir}/%{_name}-%{version}/devices/videoinput/v4l2_pwplugin.so
%changelog
+* Sun Oct 26 2008 kkeil(a)suse.de
+- update to bugfix release 2.4.2
+ * Fix static linking for mingw
+ * Move the defaults so we can overwrite them depending on the
+ platform
+ * Finally fix static and dynamic plugins on mingw
+ * Fixed being able to pass a ip%%interface form of address string
+ to a PIPSocket::Address and it still works correctly, using the
+ ip part if there
+ * Fixed correct upper/lower case comparisons as per RFC952
+ * Make vfw configurable
+ * STUN was not working with Open NAT
+ * Fixed incorrect port displayed in trace log for STUN
+ * Make sure CreateSocketPair also works with open nat
+ * Allow video file output device to work with new files
+ * Fixed problem with PSafeCollection destructor deleting objects
+ even if they still have a PSafePtr referencing them
+ * Fix compilation without vfw
* Mon Oct 20 2008 kkeil(a)suse.de
- remove windows build files to avoid license issues (bnc#436929)
* Mon Oct 13 2008 kkeil(a)suse.de
++++++ ptlib-2.4.1.diff -> ptlib-2.4.2.diff ++++++
--- libpt2/ptlib-2.4.1.diff 2008-10-13 14:55:17.000000000 +0200
+++ /mounts/work_src_done/STABLE/libpt2/ptlib-2.4.2.diff 2008-10-25 23:17:13.790446000 +0200
@@ -2,7 +2,7 @@
===================================================================
--- configure.ac.orig
+++ configure.ac
-@@ -83,6 +83,7 @@ case "$target_os" in
+@@ -218,6 +218,7 @@ case "$target_os" in
OS_TAG="P_LINUX" ;
need_pragma=yes ;
AC_DEFINE(P_PTHREADS, 1, "PThreads found")
@@ -10,7 +10,7 @@
AC_CHECK_FUNC([swab], [AC_DEFINE([USE_SYSTEM_SWAB], [], [Use system swab()] )] )
;;
-@@ -121,7 +122,7 @@ case "$target_os" in
+@@ -256,7 +257,7 @@ case "$target_os" in
AC_DEFINE(P_PTHREADS, 1, "PThreads found")
dnl According to Andre Schulze <as8(a)rncmm2.urz.tu-dresden.de>
dnl Solaris swab should not be used
@@ -19,7 +19,7 @@
PTLIB_CHECK_FDSIZE()
;;
-@@ -237,7 +238,7 @@ AC_SUBST(OSTYPE, $OSTYPE)
+@@ -374,7 +375,7 @@ AC_SUBST(OSTYPE, $OSTYPE)
AC_SUBST(OSRELEASE, $OSRELEASE)
AC_SUBST(TARGETDIR, $TARGETDIR)
@@ -28,16 +28,16 @@
if test "x$P_64BIT" != "x" ; then
AC_DEFINE([P_64BIT], [1], [64bit architecture])
-@@ -474,7 +475,7 @@ else
+@@ -611,7 +612,7 @@ else
AC_MSG_RESULT(no)
fi
fi
-AC_DEFINE_UNQUOTED(P_HAS_POSIX_READDIR_R, ${P_HAS_POSIX_READDIR_R})
+AC_DEFINE_UNQUOTED(P_HAS_POSIX_READDIR_R, ${P_HAS_POSIX_READDIR_R}, [posix redir])
- dnl ########################################################################
- dnl check for minimum sizing
-@@ -636,7 +637,7 @@ AC_ARG_ENABLE(ansi-bool,
+
+
+@@ -642,7 +643,7 @@ AC_ARG_ENABLE(ansi-bool,
if test "${enable_ansi_bool}x" = "x" ; then
AC_MSG_NOTICE(Using ANSI C++ bool for PBoolean: (PFalse=false PTrue=true))
@@ -46,7 +46,7 @@
else
AC_MSG_NOTICE(Using Windows-like integer BOOL for PBoolean: (PFalse=0 PTrue=1))
fi
-@@ -653,7 +654,7 @@ AC_TRY_COMPILE([#include <sys/types.h>
+@@ -659,7 +660,7 @@ AC_TRY_COMPILE([#include <sys/types.h>
[int t = SOL_IP; t = IP_PKTINFO; struct msghdr *msg; recvmsg(0, msg, 0);], P_HAS_RECVMSG=1)
if test "${P_HAS_RECVMSG}" = "1" ; then
AC_MSG_RESULT(yes)
@@ -55,7 +55,7 @@
else
AC_MSG_RESULT(no)
fi
-@@ -670,7 +671,7 @@ if test "${P_HAS_STL_STREAMS}" = 1 ; the
+@@ -676,7 +677,7 @@ if test "${P_HAS_STL_STREAMS}" = 1 ; the
else
AC_MSG_RESULT(no)
fi
@@ -64,7 +64,7 @@
dnl ########################################################################
dnl see if using GNU glibc++, because then we have atomic integer operations
-@@ -712,8 +713,8 @@ else
+@@ -718,8 +719,8 @@ else
fi
fi
@@ -75,7 +75,7 @@
dnl ########################################################################
dnl check for Unix semaphores
-@@ -724,7 +725,7 @@ if test ${OSTYPE} != Darwin ; then
+@@ -730,7 +731,7 @@ if test ${OSTYPE} != Darwin ; then
[sem_t *s; sem_init(s, 0, 0);], P_HAS_SEMAPHORES=1)
AC_MSG_CHECKING(if Unix semaphores are available)
if test "${P_HAS_SEMAPHORES}x" != "x" ; then
@@ -84,7 +84,7 @@
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
-@@ -738,7 +739,7 @@ if test "${P_HAS_SEMAPHORES}x" = "x" ; t
+@@ -744,7 +745,7 @@ if test "${P_HAS_SEMAPHORES}x" = "x" ; t
P_HAS_NAMED_SEMAPHORES=1 )
AC_MSG_CHECKING(if named semaphores are available)
if test "${P_HAS_NAMED_SEMAPHORES}x" != "x"; then
@@ -93,7 +93,7 @@
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
-@@ -820,7 +821,7 @@ else
+@@ -826,7 +827,7 @@ else
AC_MSG_RESULT(no)
fi
fi
@@ -102,7 +102,7 @@
dnl ########################################################################
-@@ -925,7 +926,7 @@ else
+@@ -939,7 +940,7 @@ else
if test "x${HAS_RESOLVER}" = "x1" ; then
AC_DEFINE(P_DNS, 1, "resolver libraries found")
if test "${HAS_RES_NINIT}z" != "z" ; then
@@ -111,7 +111,7 @@
fi
fi
fi
-@@ -962,7 +963,7 @@ else
+@@ -976,7 +977,7 @@ else
PTLIB_CHECK_SASL_INCLUDE([
if test "x${SASL_HEADER}" = "xsasl" ; then
@@ -120,7 +120,7 @@
fi
],
[
-@@ -972,10 +973,10 @@ else
+@@ -986,10 +987,10 @@ else
if test "x${HAS_SASL2}" = "x1" ; then
ENDLDLIBS="$ENDLDLIBS -lsasl2"
@@ -133,7 +133,7 @@
fi
fi dnl disable_Sasl
AC_SUBST(HAS_SASL2)
-@@ -988,7 +989,7 @@ dnl check for mediaLib library
+@@ -1002,7 +1003,7 @@ dnl check for mediaLib library
HAS_MEDIALIB=no
AC_CHECK_LIB(mlib, mlib_VideoColorJFIFYCC2RGB420_Nearest, HAS_MEDIALIB=yes, HAS_MEDIALIB=no)
if test $HAS_MEDIALIB = yes; then
@@ -142,7 +142,7 @@
ENDLDLIBS="-lmlib $ENDLDLIBS"
fi
-@@ -1117,7 +1118,7 @@ else
+@@ -1131,7 +1132,7 @@ else
PTLIB_FIND_EXPAT([HAS_EXPAT=1], [HAS_EXPAT=])
if test "x${HAS_EXPAT}" = "x1" ; then
@@ -151,7 +151,7 @@
STDCCFLAGS="$STDCCFLAGS $EXPAT_CFLAGS"
ENDLDLIBS="$ENDLDLIBS $EXPAT_LIBS"
fi
-@@ -1178,7 +1179,7 @@ AC_TRY_COMPILE([#include <sys/types.h>
+@@ -1192,7 +1193,7 @@ AC_TRY_COMPILE([#include <sys/types.h>
if test $HAS_INET_NTOP = no ; then
AC_MSG_RESULT(no)
else
@@ -160,18 +160,20 @@
AC_MSG_RESULT(yes)
fi
-@@ -1466,8 +1467,8 @@ if test "x${HAS_VIDEO}" = "x1" ; then
- dnl PKG_LIBS="$PKG_LIBS ${DIRECTX_LIBS}"
- STDCCFLAGS="$STDCCFLAGS ${DIRECTX_INCLUDES}"
- dnl PKG_CFLAGS="$PKG_CFLAGS ${DIRECTX_INCLUDES}"
-- AC_DEFINE(P_DIRECTSHOW, 1)
-- AC_DEFINE(P_DIRECTSOUND, 1)
-+ AC_DEFINE(P_DIRECTSHOW, 1, [DIRECTSHOW])
-+ AC_DEFINE(P_DIRECTSOUND, 1, [DIRECTSOUND])
- ])
+@@ -1477,9 +1478,9 @@ if test "x${HAS_VIDEO}" = "x1" ; then
+ STDCCFLAGS="$STDCCFLAGS ${DIRECTX_INCLUDES}"
+ HAS_DIRECTSHOW=1
+ HAS_DIRECTSOUND=1
+- AC_DEFINE(P_DIRECTSHOW, 1)
+- AC_DEFINE(P_DIRECTX, 1)
+- AC_DEFINE(P_DIRECTSOUND, 1)
++ AC_DEFINE(P_DIRECTSHOW, 1, [DIRECTSHOW])
++ AC_DEFINE(P_DIRECTX, 1, [DIRECTX])
++ AC_DEFINE(P_DIRECTSOUND, 1, [DIRECTSOUND])
+ ])
;;
- * )
-@@ -1540,7 +1541,7 @@ AC_ARG_ENABLE(memcheck,
+ * )
+@@ -1555,7 +1556,7 @@ AC_ARG_ENABLE(memcheck,
memcheck=$enableval)
if test "$memcheck" = "yes" ; then
++++++ ptlib-2.4.1.tar.bz2 -> ptlib-2.4.2.tar.bz2 ++++++
++++ 807733 lines of diff (skipped)
++++++ ptlib-soname.diff ++++++
--- /var/tmp/diff_new_pack.S20075/_old 2008-10-27 16:58:17.000000000 +0100
+++ /var/tmp/diff_new_pack.S20075/_new 2008-10-27 16:58:17.000000000 +0100
@@ -1,21 +1,21 @@
-Index: ptlib-2.4.1/make/lib.mak
+Index: ptlib-2.4.2/make/lib.mak
===================================================================
---- ptlib-2.4.1.orig/make/lib.mak
-+++ ptlib-2.4.1/make/lib.mak
-@@ -46,7 +46,7 @@ else
+--- ptlib-2.4.2.orig/make/lib.mak
++++ ptlib-2.4.2/make/lib.mak
+@@ -42,7 +42,7 @@ else
endif
endif
-LIB_SONAME = $(LIBNAME_PAT)
+LIB_SONAME = $(LIB_FILENAME)
- CLEAN_FILES += $(LIBDIR)/$(LIBNAME_PAT) $(LIBDIR)/$(LIB_FILENAME) $(LIBDIR)/$(LIBNAME_MAJ) $(LIBDIR)/$(LIBNAME_MIN)
-
-Index: ptlib-2.4.1/configure.ac
+ ifneq ($(P_SHAREDLIB),1)
+ STATIC_LIB_FILE = $(LIBDIR)/$(LIB_FILENAME)
+Index: ptlib-2.4.2/configure.ac
===================================================================
---- ptlib-2.4.1.orig/configure.ac
-+++ ptlib-2.4.1/configure.ac
-@@ -1665,6 +1665,9 @@ PTLIB_NEW_OPTION(ODBC)
+--- ptlib-2.4.2.orig/configure.ac
++++ ptlib-2.4.2/configure.ac
+@@ -1680,6 +1680,9 @@ PTLIB_NEW_OPTION(ODBC)
dnl /Forward compatibility for pkg-config options
@@ -25,10 +25,10 @@
dnl ########################################################################
dnl final declarations
-Index: ptlib-2.4.1/ptlib.pc.in
+Index: ptlib-2.4.2/ptlib.pc.in
===================================================================
---- ptlib-2.4.1.orig/ptlib.pc.in
-+++ ptlib-2.4.1/ptlib.pc.in
+--- ptlib-2.4.2.orig/ptlib.pc.in
++++ ptlib-2.4.2/ptlib.pc.in
@@ -3,7 +3,7 @@ exec_prefix=@exec_prefix@
libdir=@LIBDIR@
includedir=@includedir@
@@ -38,10 +38,10 @@
machtype=@MACHTYPE@
ostype=@OSTYPE@
objdir=obj_@OSTYPE@_@MACHTYPE@${suffix}
-Index: ptlib-2.4.1/make/ptlib-config.in
+Index: ptlib-2.4.2/make/ptlib-config.in
===================================================================
---- ptlib-2.4.1.orig/make/ptlib-config.in
-+++ ptlib-2.4.1/make/ptlib-config.in
+--- ptlib-2.4.2.orig/make/ptlib-config.in
++++ ptlib-2.4.2/make/ptlib-config.in
@@ -10,7 +10,7 @@ exec_prefix=@exec_prefix@
VERSION="@PTLIB_VERSION@"
CCFLAGS="@STDCCFLAGS@"
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package libgnomesu
checked in at Mon Oct 27 16:58:09 CET 2008.
--------
--- GNOME/libgnomesu/libgnomesu.changes 2008-10-03 22:11:08.000000000 +0200
+++ /mounts/work_src_done/STABLE/libgnomesu/libgnomesu.changes 2008-10-10 02:53:56.000000000 +0200
@@ -1,0 +2,6 @@
+Thu Oct 9 19:49:39 CDT 2008 - hpj(a)novell.com
+
+- Remove libgnomesu-1.0.0-ensure-xauthority-env.patch. It breaks
+ with the xauth location used by the new gdm.
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
libgnomesu-1.0.0-ensure-xauthority-env.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libgnomesu.spec ++++++
--- /var/tmp/diff_new_pack.d18107/_old 2008-10-27 16:57:27.000000000 +0100
+++ /var/tmp/diff_new_pack.d18107/_new 2008-10-27 16:57:27.000000000 +0100
@@ -29,7 +29,7 @@
Provides: xsu
Obsoletes: xsu
Version: 1.0.0
-Release: 294
+Release: 295
Summary: GNOME su Library
Source: %{name}-%{version}.tar.bz2
Source1: gnomesu-pam.pamd
@@ -38,7 +38,6 @@
Patch1: libgnomesu-1.0.0-xauth-nolookup.patch
Patch2: libgnomesu-1.0.0-spin-mainloop.patch
Patch3: libgnomesu-no-selectable-error.patch
-Patch4: libgnomesu-1.0.0-ensure-xauthority-env.patch
Patch5: libgnomesu-scrollbar.patch
Patch6: libgnomesu-password-translation.patch
Patch7: libgnomesu-po-update.patch
@@ -96,7 +95,6 @@
%patch1 -p1
%patch2 -p1
%patch3 -p0
-%patch4 -p1
%patch5
%patch6 -p0
%patch7
@@ -189,10 +187,13 @@
%{_libdir}/pkgconfig/libgnomesu-1.0.pc
%changelog
-* Sat Oct 04 2008 vuntz(a)novell.com
+* Thu Oct 09 2008 hpj(a)novell.com
+- Remove libgnomesu-1.0.0-ensure-xauthority-env.patch. It breaks
+ with the xauth location used by the new gdm.
+* Fri Oct 03 2008 vuntz(a)novell.com
- Run intltoolize so that the translations get installed. It seems
the new intltool broke this.
-* Thu Oct 04 2007 maw(a)suse.de
+* Wed Oct 03 2007 maw(a)suse.de
- Split out a libgnomesu0 shared library package.
* Fri Sep 28 2007 maw(a)suse.de
- Add libgnomesu-1.0.so-polish as a source file and copy
@@ -214,7 +215,7 @@
- bugzilla #169082. Call _() to translate label string "_Password:"
* Thu May 18 2006 ro(a)suse.de
- add setuid bit to gnomesu-pam-backend in level secure (#175616)
-* Fri May 05 2006 danw(a)suse.de
+* Thu May 04 2006 danw(a)suse.de
- stick the command label in a scrolledwindow in case it's really
really long. #161044
* Thu May 04 2006 hpj(a)suse.de
@@ -223,16 +224,16 @@
* Fri Mar 31 2006 danw(a)suse.de
- Don't mark the error text as "selectable", since that will make
it focusable as well and mess up the tab order. #162600
-* Tue Mar 21 2006 hpj(a)suse.de
+* Mon Mar 20 2006 hpj(a)suse.de
- Add patch to make it spin the main loop while waiting for the
child to exit. Fixes Novell bug #156445.
* Mon Jan 30 2006 ro(a)suse.de
- reduce BuildRequires as far as possible
* Wed Jan 25 2006 mls(a)suse.de
- converted neededforbuild to BuildRequires
-* Tue Oct 18 2005 hpj(a)suse.de
+* Mon Oct 17 2005 hpj(a)suse.de
- Fixed the nlist/nmerge patch to actually work (#119600).
-* Fri Oct 14 2005 hpj(a)suse.de
+* Thu Oct 13 2005 hpj(a)suse.de
- Run xauth nlist/nmerge instead of list, prevents DNS lookups
(#119600).
* Tue Sep 20 2005 sbrabec(a)suse.cz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package libfprint
checked in at Mon Oct 27 16:57:49 CET 2008.
--------
--- libfprint/libfprint.changes 2008-10-13 10:52:05.000000000 +0200
+++ /mounts/work_src_done/STABLE/libfprint/libfprint.changes 2008-10-27 15:01:31.784012000 +0100
@@ -1,0 +2,6 @@
+Thu Oct 23 14:06:02 CEST 2008 - thoenig(a)suse.de
+
+- generate HAL fdi so that fingerprint readers are properly
+ recognized (bnc#438187)
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
New:
----
libfprint-hal-fdi.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libfprint.spec ++++++
--- /var/tmp/diff_new_pack.o17112/_old 2008-10-27 16:56:56.000000000 +0100
+++ /var/tmp/diff_new_pack.o17112/_new 2008-10-27 16:56:56.000000000 +0100
@@ -24,12 +24,13 @@
Group: Development/Libraries/C and C++
PreReq: %fillup_prereq
Version: 0.0.6
-Release: 5
+Release: 6
Summary: Library for fingerprint reader support
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: glib2 ImageMagick
Source0: %{name}-%{version}.tar.bz2
Patch0: libfprint-gcc-g++-thoenig-01.patch
+Patch1: libfprint-hal-fdi.patch
%description
The fprint project aims to plug a gap in the Linux desktop: support for
@@ -82,7 +83,8 @@
%prep
%setup
-%patch -p0
+%patch0 -p0
+%patch1 -p0
%build
./configure CFLAGS="$RPM_OPT_FLAGS" \
@@ -102,7 +104,12 @@
%files -n libfprint0
%defattr(-, root, root)
+%dir %{_datadir}/hal
+%dir %{_datadir}/hal/fdi
+%dir %{_datadir}/hal/fdi/information
+%dir %{_datadir}/hal/fdi/information/20thirdparty
%{_libdir}/%{name}.so.*
+%{_datadir}/hal/fdi/information/20thirdparty/10-fingerprint-reader-fprint.fdi
%files devel
%defattr(-, root, root)
@@ -113,6 +120,9 @@
%{_libdir}/pkgconfig/%{name}.pc
%changelog
+* Thu Oct 23 2008 thoenig(a)suse.de
+- generate HAL fdi so that fingerprint readers are properly
+ recognized (bnc#438187)
* Mon Oct 13 2008 thoenig(a)suse.de
- move 'supplements' and 'recommends' to libfprint0
* Thu Oct 09 2008 thoenig(a)suse.de
++++++ libfprint-hal-fdi.patch ++++++
--- libfprint/core.c 2008-10-27 14:24:09.000000000 +0100
+++ libfprint/core.c 2008-10-27 14:26:05.000000000 +0100
@@ -351,6 +351,24 @@
}
}
+API_EXPORTED struct fp_driver **fprint_get_drivers (void)
+{
+ GPtrArray *array;
+ unsigned int i;
+
+ array = g_ptr_array_new ();
+ for (i = 0; i < G_N_ELEMENTS(primitive_drivers); i++)
+ g_ptr_array_add (array, primitive_drivers[i]);
+
+ for (i = 0; i < G_N_ELEMENTS(img_drivers); i++)
+ g_ptr_array_add (array, &(img_drivers[i]->driver));
+
+ /* Add a null item terminating the array */
+ g_ptr_array_add (array, NULL);
+
+ return (struct fp_driver **) g_ptr_array_free (array, FALSE);
+}
+
static struct fp_driver *find_supporting_driver(struct usb_device *udev,
const struct usb_id **usb_id)
{
--- libfprint/fp_internal.h 2008-03-20 14:37:33.000000000 +0100
+++ libfprint/fp_internal.h 2008-10-27 14:26:05.000000000 +0100
@@ -62,6 +62,8 @@
#define fp_warn(fmt...) _fpi_log(LOG_LEVEL_WARNING, fmt)
#define fp_err(fmt...) _fpi_log(LOG_LEVEL_ERROR, fmt)
+struct fp_driver **fprint_get_drivers (void);
+
struct fp_dev {
struct fp_driver *drv;
usb_dev_handle *udev;
--- libfprint/fprint-list-hal-info.c 1970-01-01 01:00:00.000000000 +0100
+++ libfprint/fprint-list-hal-info.c 2008-10-27 14:34:13.000000000 +0100
@@ -0,0 +1,84 @@
+/*
+ * Helper binary for creating a HAL FDI file for supported devices
+ * Copyright (C) 2008 Bastien Nocera <hadess(a)hadess.net>
+ * Copyright (C) 2008 Timo Hoenig <thoenig(a)suse.de>, <thoenig(a)nouse.net>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <config.h>
+#include <stdio.h>
+
+#include "fp_internal.h"
+
+/* FDI entry example:
+ *
+ * <!-- AuthenTec AES2501 -->
+ * <match key="usb.vendor_id" int="0x08ff">
+ * <match key="usb.product_id" int="0x2580">
+ * <merge key="info.category" type="string">biometric.fingerprint_reader</merge>
+ * <append key="biometric.fingerprint_reader.access_method" type="strlist">libfprint</append>
+ * <append key="info.capabilities" type="strlist">biometric</append>
+ * <append key="info.capabilities" type="strlist">biometric.fingerprint_reader</append>
+ * <merge key="biometric.fingerprint_reader.libfprint.driver" type="string">aes2501</merge>
+ * <merge key="biometric.fingerprint_reader.libfprint.support" type="bool">true</merge>
+ * </match>
+ * </match>
+ *
+ */
+
+static void print_driver (struct fp_driver *driver)
+{
+ int i;
+
+ for (i = 0; driver->id_table[i].vendor != 0; i++) {
+ printf (" <!-- %s -->\n", fp_driver_get_full_name (driver));
+ printf (" <match key=\"usb.vendor_id\" int=\"0x%04x\">\n", driver->id_table[i].vendor);
+ printf (" <match key=\"usb.product_id\" int=\"0x%04x\">\n", driver->id_table[i].product);
+ printf (" <merge key=\"info.category\" type=\"string\">biometric.fingerprint_reader</merge>\n");
+ printf (" <append key=\"biometric.fingerprint_reader.access_method\" type=\"strlist\">libfprint</append>\n");
+ printf (" <append key=\"info.capabilities\" type=\"strlist\">biometric</append>\n");
+ printf (" <append key=\"info.capabilities\" type=\"strlist\">biometric.fingerprint_reader</append>\n");
+ printf (" <merge key=\"biometric.fingerprint_reader.libfprint.driver\" type=\"string\">%s</merge>\n", driver->name);
+ printf (" <merge key=\"biometric.fingerprint_reader.libfprint.support\" type=\"bool\">true</merge>\n");
+ printf (" </match>\n");
+ printf (" </match>\n");
+ }
+}
+
+static void print_imaging_driver (struct fp_img_driver *driver)
+{
+ print_driver (&(driver->driver));
+}
+
+int main (int argc, char **argv)
+{
+ struct fp_driver **list;
+ guint i;
+
+ list = fprint_get_drivers ();
+
+ printf ("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n");
+ printf ("<!-- Created from libfprint %s -->\n", VERSION);
+ printf ("<deviceinfo version=\"0.2\">\n");
+
+ for (i = 0; list[i] != NULL; i++) {
+ print_driver (list[i]);
+ }
+
+ printf ("</deviceinfo>\n");
+
+ return 0;
+}
--- libfprint/Makefile.am 2008-10-27 14:24:09.000000000 +0100
+++ libfprint/Makefile.am 2008-10-27 14:26:05.000000000 +0100
@@ -1,3 +1,4 @@
+noinst_PROGRAMS = fprint-list-hal-info
lib_LTLIBRARIES = libfprint.la
UPEKTS_SRC = drivers/upekts.c
@@ -47,10 +48,18 @@
nbis/mindtct/sort.c \
nbis/mindtct/util.c
-libfprint_la_CFLAGS = -fvisibility=hidden -I$(srcdir)/nbis/include $(LIBUSB_CFLAGS) $(GLIB_CFLAGS) $(IMAGEMAGICK_CFLAGS) $(CRYPTO_CFLAGS) $(AM_CFLAGS)
+libfprint_la_CFLAGS = -I$(srcdir)/nbis/include $(LIBUSB_CFLAGS) $(GLIB_CFLAGS) $(IMAGEMAGICK_CFLAGS) $(CRYPTO_CFLAGS) $(AM_CFLAGS)
libfprint_la_LDFLAGS = -version-info @lt_major@:@lt_revision@:@lt_age@
libfprint_la_LIBADD = -lm $(LIBUSB_LIBS) $(GLIB_LIBS) $(IMAGEMAGICK_LIBS) $(CRYPTO_LIBS)
+fprint_list_hal_info_SOURCES = fprint-list-hal-info.c
+fprint_list_hal_info_CFLAGS = -fvisibility=hidden -I$(srcdir)/nbis/include $(LIBUSB_CFLAGS) $(GLIB_CFLAGS) $(IMAGEMAGICK_CFLAGS) $(CRYPTO_CFLAGS) $(AM_CFLAGS)
+fprint_list_hal_info_LDADD = $(builddir)/libfprint.la
+hal_fdi_DATA = 10-fingerprint-reader-fprint.fdi
+hal_fdidir = $(datadir)/hal/fdi/information/20thirdparty/
+$(hal_fdi_DATA): fprint-list-hal-info
+ $(builddir)/fprint-list-hal-info > $@
+
libfprint_la_SOURCES = \
fp_internal.h \
core.c \
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package kiwi-image-livecd-kde
checked in at Mon Oct 27 16:57:18 CET 2008.
--------
--- arch/i686/kiwi-image-livecd-kde/kiwi-image-livecd-gnome.changes 2008-10-22 18:09:50.000000000 +0200
+++ /mounts/work_src_done/STABLE/kiwi-image-livecd-kde/kiwi-image-livecd-gnome.changes 2008-10-27 16:56:43.162815000 +0100
@@ -1,0 +2,5 @@
+Mon Oct 27 09:41:06 CET 2008 - coolo(a)suse.de
+
+- build for i686 on i586
+
+-------------------------------------------------------------------
kiwi-image-livecd-kde.changes: same change
calling whatdependson for head-i586
Old:
----
needed_space_in_mb
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kiwi-image-livecd-gnome.spec ++++++
--- /var/tmp/diff_new_pack.S16850/_old 2008-10-27 16:56:54.000000000 +0100
+++ /var/tmp/diff_new_pack.S16850/_new 2008-10-27 16:56:54.000000000 +0100
@@ -37,7 +37,7 @@
BuildRequires: ghostscript-fonts-std ghostscript-library
Summary: GNOME Live CD
Version: 11.1
-Release: 25
+Release: 26
Group: Productivity/Other
License: BSD 3-Clause
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -61,6 +61,9 @@
Source19: config-usb.patch
Source20: geturls.xsl
ExcludeArch: ia64 ppc64 s390x s390 ppc
+%ifarch %ix86
+BuildArch: i686
+%endif
%define build_usb 0
# do not compress the ISO - takes ages
%define _binary_payload w.ufdio
@@ -199,6 +202,8 @@
/usr/share/openSUSE
%changelog
+* Mon Oct 27 2008 coolo(a)suse.de
+- build for i686 on i586
* Tue Oct 21 2008 cthiel(a)suse.de
- enable size check again
* Thu Oct 02 2008 cthiel(a)suse.de
@@ -238,9 +243,9 @@
- adapt to 11.1
* Mon Jun 09 2008 coolo(a)suse.de
- SoftLock again some recommends (bnc#398367)
-* Sun Jun 08 2008 coolo(a)suse.de
+* Sat Jun 07 2008 coolo(a)suse.de
- don't put the pdf in the root of the CD, but in $HOME
-* Sun Jun 08 2008 coolo(a)suse.de
+* Sat Jun 07 2008 coolo(a)suse.de
- hide volumes mounted as /read-write and /read-only (bnc#391866)
* Sat Jun 07 2008 coolo(a)suse.de
- do not use zypper out of live installer (zypp lock in the way,
@@ -251,7 +256,7 @@
- tag the media for checkmedia
* Mon Jun 02 2008 coolo(a)suse.de
- switch to 11.0 URLs (bnc#395316)
-* Thu May 29 2008 coolo(a)suse.de
+* Wed May 28 2008 coolo(a)suse.de
- avoid duplicated online repos here too
* Wed May 28 2008 coolo(a)suse.de
- kiwi needs kiwi-tools now
@@ -263,7 +268,7 @@
- if autologin is set to linux, remove it (bnc#391798)
* Tue May 20 2008 coolo(a)suse.de
- set the keyboard layout correctly (bnc#345135)
-* Sun May 18 2008 coolo(a)suse.de
+* Sat May 17 2008 coolo(a)suse.de
- do not try building on older kernels
* Thu May 15 2008 coolo(a)suse.de
- update softlocks (bnc#390796)
@@ -319,11 +324,11 @@
- put all the required files in the package
* Fri Apr 04 2008 coolo(a)suse.de
- include live installer
-* Thu Mar 27 2008 coolo(a)suse.de
+* Wed Mar 26 2008 coolo(a)suse.de
- also create an USB image
* Sat Mar 22 2008 coolo(a)suse.de
- adapt to new filenames in package lists
-* Wed Mar 19 2008 coolo(a)suse.de
+* Tue Mar 18 2008 coolo(a)suse.de
- I should have lunch with Rudi more often - rework
dependency on patterns
* Tue Mar 18 2008 coolo(a)suse.de
@@ -344,7 +349,7 @@
- adding NM-{kde,gnome} as explicit requires
* Fri Feb 29 2008 coolo(a)suse.de
- updated again
-* Thu Feb 28 2008 coolo(a)suse.de
+* Wed Feb 27 2008 coolo(a)suse.de
- update package lists
* Sat Feb 23 2008 coolo(a)suse.de
- remove broken deps for now
++++++ kiwi-image-livecd-kde.spec ++++++
--- /var/tmp/diff_new_pack.S16850/_old 2008-10-27 16:56:54.000000000 +0100
+++ /var/tmp/diff_new_pack.S16850/_new 2008-10-27 16:56:54.000000000 +0100
@@ -37,7 +37,7 @@
BuildRequires: ghostscript-fonts-std ghostscript-library
Summary: KDE live CD
Version: 11.1
-Release: 27
+Release: 28
Group: System/Boot
License: BSD 3-Clause
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -61,6 +61,9 @@
Source19: config-usb.patch
Source20: geturls.xsl
ExcludeArch: ia64 ppc64 s390x s390 ppc
+%ifarch %ix86
+BuildArch: i686
+%endif
%define build_usb 0
# do not compress the ISO - takes ages
%define _binary_payload w.ufdio
@@ -199,6 +202,8 @@
/usr/share/openSUSE
%changelog
+* Mon Oct 27 2008 coolo(a)suse.de
+- build for i686 on i586
* Tue Oct 21 2008 cthiel(a)suse.de
- enable size check again
* Thu Oct 02 2008 cthiel(a)suse.de
@@ -238,9 +243,9 @@
- adapt to 11.1
* Mon Jun 09 2008 coolo(a)suse.de
- SoftLock again some recommends (bnc#398367)
-* Sun Jun 08 2008 coolo(a)suse.de
+* Sat Jun 07 2008 coolo(a)suse.de
- don't put the pdf in the root of the CD, but in $HOME
-* Sun Jun 08 2008 coolo(a)suse.de
+* Sat Jun 07 2008 coolo(a)suse.de
- hide volumes mounted as /read-write and /read-only (bnc#391866)
* Sat Jun 07 2008 coolo(a)suse.de
- do not use zypper out of live installer (zypp lock in the way,
@@ -251,7 +256,7 @@
- tag the media for checkmedia
* Mon Jun 02 2008 coolo(a)suse.de
- switch to 11.0 URLs (bnc#395316)
-* Thu May 29 2008 coolo(a)suse.de
+* Wed May 28 2008 coolo(a)suse.de
- avoid duplicated online repos here too
* Wed May 28 2008 coolo(a)suse.de
- kiwi needs kiwi-tools now
@@ -263,7 +268,7 @@
- if autologin is set to linux, remove it (bnc#391798)
* Tue May 20 2008 coolo(a)suse.de
- set the keyboard layout correctly (bnc#345135)
-* Sun May 18 2008 coolo(a)suse.de
+* Sat May 17 2008 coolo(a)suse.de
- do not try building on older kernels
* Thu May 15 2008 coolo(a)suse.de
- update softlocks (bnc#390796)
@@ -319,11 +324,11 @@
- put all the required files in the package
* Fri Apr 04 2008 coolo(a)suse.de
- include live installer
-* Thu Mar 27 2008 coolo(a)suse.de
+* Wed Mar 26 2008 coolo(a)suse.de
- also create an USB image
* Sat Mar 22 2008 coolo(a)suse.de
- adapt to new filenames in package lists
-* Wed Mar 19 2008 coolo(a)suse.de
+* Tue Mar 18 2008 coolo(a)suse.de
- I should have lunch with Rudi more often - rework
dependency on patterns
* Tue Mar 18 2008 coolo(a)suse.de
@@ -344,7 +349,7 @@
- adding NM-{kde,gnome} as explicit requires
* Fri Feb 29 2008 coolo(a)suse.de
- updated again
-* Thu Feb 28 2008 coolo(a)suse.de
+* Wed Feb 27 2008 coolo(a)suse.de
- update package lists
* Sat Feb 23 2008 coolo(a)suse.de
- remove broken deps for now
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package kiwi
checked in at Mon Oct 27 16:56:46 CET 2008.
--------
--- kiwi/kiwi.changes 2008-10-24 17:34:30.000000000 +0200
+++ /mounts/work_src_done/STABLE/kiwi/kiwi.changes 2008-10-27 16:28:22.601814000 +0100
@@ -1,0 +2,9 @@
+Mon Oct 27 10:47:35 CET 2008 - ms(a)suse.de
+
+- v2.97
+- fixed SaT plugin due to API changes (bnc #436249)
+- added the same padding to tagmedia as used with mkisofs
+ by default this are 150 sectors (bnc #434563)
+- fixed build and warnings
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kiwi.spec ++++++
--- /var/tmp/diff_new_pack.r14370/_old 2008-10-27 16:56:25.000000000 +0100
+++ /var/tmp/diff_new_pack.r14370/_new 2008-10-27 16:56:25.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package kiwi (Version 2.96)
+# spec file for package kiwi (Version 2.97)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -50,7 +50,7 @@
Summary: OpenSuSE - KIWI Image System
Provides: kiwi2 <= 2.14
Obsoletes: kiwi2 <= 2.14
-Version: 2.96
+Version: 2.97
Release: 1
Group: System/Management
License: GPL v2 or later
@@ -376,9 +376,9 @@
%endif
#install
cd $RPM_BUILD_DIR/kiwi
-mkdir -p $RPM_BUILD_ROOT/etc/permissions.d
-echo "/srv/tftpboot/upload root:root 0755" \
- > $RPM_BUILD_ROOT/etc/permissions.d/kiwi
+#mkdir -p $RPM_BUILD_ROOT/etc/permissions.d
+#echo "/srv/tftpboot/upload/ root:root 0755" \
+# > $RPM_BUILD_ROOT/etc/permissions.d/kiwi
make buildroot=$RPM_BUILD_ROOT \
doc_prefix=$RPM_BUILD_ROOT/%{_defaultdocdir} \
man_prefix=$RPM_BUILD_ROOT/%{_mandir} \
@@ -466,7 +466,7 @@
%files -n kiwi-pxeboot -f kiwi.loader
%defattr(-, root, root)
%doc /srv/tftpboot/README
-%config /etc/permissions.d/kiwi
+#%config /etc/permissions.d/kiwi
%dir /srv/tftpboot
%dir /srv/tftpboot/KIWI
%dir /srv/tftpboot/pxelinux.cfg
@@ -546,6 +546,12 @@
%endif
%changelog
+* Mon Oct 27 2008 ms(a)suse.de
+- v2.97
+- fixed SaT plugin due to API changes (bnc #436249)
+- added the same padding to tagmedia as used with mkisofs
+ by default this are 150 sectors (bnc #434563)
+- fixed build and warnings
* Wed Oct 22 2008 ms(a)suse.de
- v2.96
- fixed shell exception if redirected to /dev/console (bnc #413474)
@@ -1270,7 +1276,7 @@
* Fri Mar 21 2008 ms(a)suse.de
- call dhcpcd -k after upload notification (bnc #372894)
- added inode number calculation for rootfs tarball (bnc #372648)
-* Mon Mar 17 2008 ms(a)suse.de
+* Sun Mar 16 2008 ms(a)suse.de
- fixed nbd port and swap setup (bnc #371554)
- fixed invalid option linkage, call init only one time (bnc #372017)
- make KIWICollect an on demand module, patch by jcborn
@@ -1613,7 +1619,7 @@
yast2-firstboot mechanism
- update documentation according to the yast2 autoyast and
firstboot changes
-* Thu Nov 29 2007 ms(a)suse.de
+* Wed Nov 28 2007 ms(a)suse.de
- v1.99
- don't use /mnt as mount directory (#344589)
- reread partition table using blockdev (#340317)
@@ -2588,7 +2594,7 @@
- v1.26
- fixed logging to /var/log/kiwi
- added USER variable to enable/disable prebuild
-* Fri Apr 06 2007 ms(a)suse.de
+* Thu Apr 05 2007 ms(a)suse.de
- v1.25
- make use of kernel updates directory if it exists
- fixed repository handling for auto generated boot images.
++++++ kiwi.tar.bz2 ++++++
kiwi/kiwi.tar.bz2 /mounts/work_src_done/STABLE/kiwi/kiwi.tar.bz2 differ: byte 11, line 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package yast2-trans-wa
checked in at Mon Oct 27 16:56:43 CET 2008.
--------
--- yast2-trans-wa/yast2-trans-wa.changes 2008-10-24 15:12:24.000000000 +0200
+++ /mounts/work_src_done/STABLE/yast2-trans-wa/yast2-trans-wa.changes 2008-10-27 13:26:47.000000000 +0100
@@ -1,0 +2,5 @@
+Mon Oct 27 13:26:47 CET 2008 - ke(a)suse.de
+
+- Update to version 2.17.7.
+
+------------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
yast2-trans-wa-2.17.6.tar.bz2
New:
----
yast2-trans-wa-2.17.7.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-trans-wa.spec ++++++
--- /var/tmp/diff_new_pack.a15363/_old 2008-10-27 16:56:41.000000000 +0100
+++ /var/tmp/diff_new_pack.a15363/_new 2008-10-27 16:56:41.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-trans-wa (Version 2.17.6)
+# spec file for package yast2-trans-wa (Version 2.17.7)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -19,12 +19,12 @@
Name: yast2-trans-wa
-Version: 2.17.6
+Version: 2.17.7
Release: 1
License: GPL v2 or later
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-trans-wa-2.17.6.tar.bz2
+Source0: yast2-trans-wa-2.17.7.tar.bz2
Prefix: /usr
Provides: locale(yast2:wa)
BuildRequires: pkgconfig yast2-devtools
@@ -39,7 +39,7 @@
%prep
-%setup -n yast2-trans-wa-2.17.6
+%setup -n yast2-trans-wa-2.17.7
%build
autoreconf --force --install
@@ -71,6 +71,8 @@
%dir /usr/share/YaST2/locale
%lang(wa) /usr/share/YaST2/locale/wa
%changelog
+* Mon Oct 27 2008 ke(a)suse.de
+- Update to version 2.17.7.
* Fri Oct 24 2008 ke(a)suse.de
- Update to version 2.17.6.
* Fri Oct 17 2008 ke(a)suse.de
++++++ yast2-trans-wa-2.17.6.tar.bz2 -> yast2-trans-wa-2.17.7.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-wa-2.17.6/configure new/yast2-trans-wa-2.17.7/configure
--- old/yast2-trans-wa-2.17.6/configure 2008-10-24 15:12:32.000000000 +0200
+++ new/yast2-trans-wa-2.17.7/configure 2008-10-27 13:26:55.000000000 +0100
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.61 for yast2-trans-wa 2.17.6.
+# Generated by GNU Autoconf 2.61 for yast2-trans-wa 2.17.7.
#
# Report bugs to <http://bugs.opensuse.org/>.
#
@@ -574,8 +574,8 @@
# Identity of this package.
PACKAGE_NAME='yast2-trans-wa'
PACKAGE_TARNAME='yast2-trans-wa'
-PACKAGE_VERSION='2.17.6'
-PACKAGE_STRING='yast2-trans-wa 2.17.6'
+PACKAGE_VERSION='2.17.7'
+PACKAGE_STRING='yast2-trans-wa 2.17.7'
PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
ac_unique_file="RPMNAME"
@@ -1202,7 +1202,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures yast2-trans-wa 2.17.6 to adapt to many kinds of systems.
+\`configure' configures yast2-trans-wa 2.17.7 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1273,7 +1273,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of yast2-trans-wa 2.17.6:";;
+ short | recursive ) echo "Configuration of yast2-trans-wa 2.17.7:";;
esac
cat <<\_ACEOF
@@ -1353,7 +1353,7 @@
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-yast2-trans-wa configure 2.17.6
+yast2-trans-wa configure 2.17.7
generated by GNU Autoconf 2.61
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1367,7 +1367,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by yast2-trans-wa $as_me 2.17.6, which was
+It was created by yast2-trans-wa $as_me 2.17.7, which was
generated by GNU Autoconf 2.61. Invocation command line was
$ $0 $@
@@ -2188,7 +2188,7 @@
# Define the identity of the package.
PACKAGE='yast2-trans-wa'
- VERSION='2.17.6'
+ VERSION='2.17.7'
cat >>confdefs.h <<_ACEOF
@@ -2416,7 +2416,7 @@
-VERSION="2.17.6"
+VERSION="2.17.7"
RPMNAME="yast2-trans-wa"
MAINTAINER="Karl Eichwalder <ke(a)suse.de>"
@@ -3362,7 +3362,7 @@
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by yast2-trans-wa $as_me 2.17.6, which was
+This file was extended by yast2-trans-wa $as_me 2.17.7, which was
generated by GNU Autoconf 2.61. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -3405,7 +3405,7 @@
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
-yast2-trans-wa config.status 2.17.6
+yast2-trans-wa config.status 2.17.7
configured by $0, generated by GNU Autoconf 2.61,
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-wa-2.17.6/configure.in new/yast2-trans-wa-2.17.7/configure.in
--- old/yast2-trans-wa-2.17.6/configure.in 2008-10-24 15:12:29.000000000 +0200
+++ new/yast2-trans-wa-2.17.7/configure.in 2008-10-27 13:26:52.000000000 +0100
@@ -3,7 +3,7 @@
dnl -- This file is generated by y2autoconf 2.16.7 - DO NOT EDIT! --
dnl (edit configure.in.in instead)
-AC_INIT(yast2-trans-wa, 2.17.6, http://bugs.opensuse.org/, yast2-trans-wa)
+AC_INIT(yast2-trans-wa, 2.17.7, http://bugs.opensuse.org/, yast2-trans-wa)
dnl Check for presence of file 'RPMNAME'
AC_CONFIG_SRCDIR([RPMNAME])
@@ -18,7 +18,7 @@
AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
dnl Important YaST2 variables
-VERSION="2.17.6"
+VERSION="2.17.7"
RPMNAME="yast2-trans-wa"
MAINTAINER="Karl Eichwalder <ke(a)suse.de>"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-wa-2.17.6/po/status.txt new/yast2-trans-wa-2.17.7/po/status.txt
--- old/yast2-trans-wa-2.17.6/po/status.txt 2008-10-24 15:12:18.000000000 +0200
+++ new/yast2-trans-wa-2.17.7/po/status.txt 2008-10-27 13:26:41.000000000 +0100
@@ -1,6 +1,6 @@
-Translated : 7169
-Fuzzy : 9622
-Untranslated : 3221
+Translated : 7291
+Fuzzy : 9512
+Untranslated : 3209
--------------------
All strings : 20012
36 % are translated
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-wa-2.17.6/po/storage.wa.po new/yast2-trans-wa-2.17.7/po/storage.wa.po
--- old/yast2-trans-wa-2.17.6/po/storage.wa.po 2008-10-23 17:42:32.000000000 +0200
+++ new/yast2-trans-wa-2.17.7/po/storage.wa.po 2008-10-27 13:26:36.000000000 +0100
@@ -6,12 +6,13 @@
# Pablo Saratxaga <pablo(a)walon.org>, 2001, 2004.
# Jean Cayron <jean.cayron(a)gmail.com>, 2007.
# Jean Cayron <jean.cayron(a)tele2allin.be>, 2008.
+# Djan Cayron, 2008.
msgid ""
msgstr ""
"Project-Id-Version: storage\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-10-23 14:00+0200\n"
-"PO-Revision-Date: 2008-10-13 19:30+0200\n"
+"PO-Revision-Date: 2008-10-26 21:44+0100\n"
"Last-Translator: Jean Cayron <jean.cayron(a)tele2allin.be>\n"
"Language-Team: Walloon <linux-wa(a)walon.org>\n"
"MIME-Version: 1.0\n"
@@ -74,9 +75,8 @@
#. Kilo abbreviated
#: libstorage/src/AppUtil.cc:539
-#, fuzzy
msgid "k"
-msgstr "Kb"
+msgstr "k"
#. KiloByte abbreviated
#: libstorage/src/AppUtil.cc:542
@@ -85,9 +85,8 @@
#. Mega abbreviated
#: libstorage/src/AppUtil.cc:547
-#, fuzzy
msgid "M"
-msgstr "Mb"
+msgstr "M"
#. MegaByte abbreviated
#. Unit for partition resizing
@@ -111,9 +110,8 @@
#. Giga abbreviated
#: libstorage/src/AppUtil.cc:555
-#, fuzzy
msgid "G"
-msgstr "Gb"
+msgstr "G"
#. GigaByte abbreviated
#: libstorage/src/AppUtil.cc:558 storage/src/include/ep-dialogs.ycp:493
@@ -123,9 +121,8 @@
#. Tera abbreviated
#: libstorage/src/AppUtil.cc:563
-#, fuzzy
msgid "T"
-msgstr "Tb"
+msgstr "T"
#. TeraByte abbreviated
#: libstorage/src/AppUtil.cc:566
@@ -134,9 +131,8 @@
#. Peta abbreviated
#: libstorage/src/AppUtil.cc:571
-#, fuzzy
msgid "P"
-msgstr "Pb"
+msgstr "P"
#. PetaByte abbreviated
#: libstorage/src/AppUtil.cc:574
@@ -777,9 +773,9 @@
#. displayed text during action, %1$s is replaced by device name e.g. /dev/loop0
#. %2$s is replaced by filename (e.g. /var/adm/secure)
#: libstorage/src/Loop.cc:267
-#, fuzzy, c-format
+#, c-format
msgid "Creating file-based device %1$s of file %2$s"
-msgstr "Dj' ahive s s"
+msgstr "Dj' ahive l' éndjin båzé so fitchî %1$s do fitchî %2$s"
#. displayed text before action, %1$s is replaced by device name
#. %2$s is replaced by filename (e.g. /var/adm/secure)
@@ -787,9 +783,9 @@
#. %4$s is replaced by file system type (e.g. reiserfs)
#. %5$s is replaced by mount point (e.g. /usr)
#: libstorage/src/Loop.cc:283
-#, fuzzy, c-format
+#, c-format
msgid "Create file-based device %1$s of file %2$s (%3$s) as %5$s with %4$s"
-msgstr "s s s s s"
+msgstr "Ahiver l' éndjin båzé so fitchî %1$s do fitchî %2$s (%3$s) come %5$s avou %4$s"
#. displayed text before action, %1$s is replaced by device name
#. %2$s is replaced by filename (e.g. /var/adm/secure)
@@ -797,26 +793,26 @@
#. %4$s is replaced by file system type (e.g. reiserfs)
#. %5$s is replaced by mount point (e.g. /usr)
#: libstorage/src/Loop.cc:294
-#, fuzzy, c-format
+#, c-format
msgid "Create encrypted file-based device %1$s of file %2$s (%3$s) as %5$s with %4$s"
-msgstr "s s s s s"
+msgstr "Ahiver l' éndjin båzé so fitchî ecripté %1$s do fitchî %2$s (%3$s) come %5$s avou %4$s"
#. displayed text before action, %1$s is replaced by device name
#. %2$s is replaced by filename (e.g. /var/adm/secure)
#. %3$s is replaced by size (e.g. 623.5 MB)
#: libstorage/src/Loop.cc:304
-#, fuzzy, c-format
+#, c-format
msgid "Create file-based device %1$s of file %2$s (%3$s)"
-msgstr "s s s"
+msgstr "Ahiver l' éndjin båzé so fitchî %1$s do fitchî %2$s (%3$s)"
#. displayed text during action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by filename (e.g. /var/adm/secure)
#. %3$s is replaced by size (e.g. 623.5 MB)
#. %4$s is replaced by file system type (e.g. reiserfs)
#: libstorage/src/Loop.cc:322
-#, fuzzy, c-format
+#, c-format
msgid "Formatting file-based device %1$s of %2$s (%3$s) with %4$s "
-msgstr "s s s s "
+msgstr "Dj' abwesnêye l' éndjin båzé so fitchî %1$s di %2$s (%3$s) avou %4$s"
#. displayed text before action, %1$s is replaced by device name
#. %2$s is replaced by filename (e.g. /var/adm/secure)
@@ -824,9 +820,9 @@
#. %4$s is replaced by file system type (e.g. reiserfs)
#. %5$s is replaced by mount point (e.g. /usr)
#: libstorage/src/Loop.cc:340
-#, fuzzy, c-format
+#, c-format
msgid "Format file-based device %1$s of %2$s (%3$s) as %5$s with %4$s"
-msgstr "Cogne s s s s s"
+msgstr "Abwesner l' éndjin båzé so fitchî %1$s di %2$s (%3$s) come %5$s avou %4$s"
#. displayed text before action, %1$s is replaced by device name
#. %2$s is replaced by filename (e.g. /var/adm/secure)
@@ -834,205 +830,205 @@
#. %4$s is replaced by file system type (e.g. reiserfs)
#. %5$s is replaced by mount point (e.g. /usr)
#: libstorage/src/Loop.cc:351
-#, fuzzy, c-format
+#, c-format
msgid "Format encrypted file-based device %1$s of %2$s (%3$s) as %5$s with %4$s"
-msgstr "Cogne s s s s s"
+msgstr "Abwesner l' éndjin båzé so fitchî ecripté %1$s di %2$s (%3$s) come %5$s avou %4$s"
#. displayed text before action, %1$s is replaced by device name
#. %2$s is replaced by filename (e.g. /var/adm/secure)
#. %3$s is replaced by size (e.g. 623.5 MB)
#. %4$s is replaced by file system type (e.g. reiserfs)
#: libstorage/src/Loop.cc:362
-#, fuzzy, c-format
+#, c-format
msgid "Format file-based device %1$s of %2$s (%3$s) with %4$s"
-msgstr "Cogne s s s s"
+msgstr "Abwesner l' éndjin båzé so fitchî ecripté %1$s di %2$s (%3$s) avou %4$s"
#. displayed text during action, %1$s is replaced by device name e.g. /dev/system/var
#: libstorage/src/LvmLv.cc:138
-#, fuzzy, c-format
+#, c-format
msgid "Deleting logical volume %1$s"
-msgstr "Dji disface s"
+msgstr "Dji disface li volume lodjike %1$s"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#: libstorage/src/LvmLv.cc:144
-#, fuzzy, c-format
+#, c-format
msgid "Delete logical volume %1$s (%2$s)"
-msgstr "Disfacer s s"
+msgstr "Disfacer l' volume lodjike %1$s (%2$s)"
#. displayed text during action, %1$s is replaced by device name e.g. /dev/system/var
#: libstorage/src/LvmLv.cc:156
-#, fuzzy, c-format
+#, c-format
msgid "Creating logical volume %1$s"
-msgstr "Dj' ahive s"
+msgstr "Dj' ahive li volume lodjike %1$s"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#: libstorage/src/LvmLv.cc:164
-#, fuzzy, c-format
+#, c-format
msgid "Create swap logical volume %1$s (%2$s)"
-msgstr "s s"
+msgstr "Dj' ahive li volume lodjike swap %1$s (%2$s)"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#. %3$s is replaced by file system type (e.g. reiserfs)
#. %4$s is replaced by mount point (e.g. /usr)
#: libstorage/src/LvmLv.cc:175
-#, fuzzy, c-format
+#, c-format
msgid "Create logical volume %1$s (%2$s) for %4$s with %3$s"
-msgstr "s s s s"
+msgstr "Ahiver l' volume lodjike swap %1$s (%2$s) po %4$s avou %3$s"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#. %3$s is replaced by file system type (e.g. reiserfs)
#. %4$s is replaced by mount point (e.g. /usr)
#: libstorage/src/LvmLv.cc:185
-#, fuzzy, c-format
+#, c-format
msgid "Create encrypted logical volume %1$s (%2$s) for %4$s with %3$s"
-msgstr "s s s s"
+msgstr "Ahiver l' volume lodjike ecripté %1$s (%2$s) po %4$s avou %3$s"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#: libstorage/src/LvmLv.cc:194
-#, fuzzy, c-format
+#, c-format
msgid "Create logical volume %1$s (%2$s)"
-msgstr "s s"
+msgstr "Ahiver l' volume lodjike %1$s (%2$s)"
#. displayed text during action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#. %3$s is replaced by file system type (e.g. reiserfs)
#: libstorage/src/LvmLv.cc:209
-#, fuzzy, c-format
+#, c-format
msgid "Formatting logical volume %1$s (%2$s) with %3$s"
-msgstr "s s s"
+msgstr "Dj' abwesnêye li volume lodjike %1$s (%2$s) avou %3$s"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#: libstorage/src/LvmLv.cc:220
-#, fuzzy, c-format
+#, c-format
msgid "Format logical volume %1$s (%2$s) for swap"
-msgstr "Cogne s s"
+msgstr "Abwesner l' volume lodjike %1$s (%2$s) pol swap"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#. %3$s is replaced by file system type (e.g. reiserfs)
#. %4$s is replaced by mount point (e.g. /usr)
#: libstorage/src/LvmLv.cc:229
-#, fuzzy, c-format
+#, c-format
msgid "Format logical volume %1$s (%2$s) for %4$s with %3$s"
-msgstr "Cogne s s s s"
+msgstr "Abwesner l' volume lodjike %1$s (%2$s) po %4$s avou %3$s"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#. %3$s is replaced by file system type (e.g. reiserfs)
#. %4$s is replaced by mount point (e.g. /usr)
#: libstorage/src/LvmLv.cc:239
-#, fuzzy, c-format
+#, c-format
msgid "Format encrypted logical volume %1$s (%2$s) for %4$s with %3$s"
-msgstr "Cogne s s s s"
+msgstr "Abwesner l' volume lodjike ecripté %1$s (%2$s) po %4$s avou %3$s"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#. %3$s is replaced by file system type (e.g. reiserfs)
#: libstorage/src/LvmLv.cc:249
-#, fuzzy, c-format
+#, c-format
msgid "Format logical volume %1$s (%2$s) with %3$s"
-msgstr "Cogne s s s"
+msgstr "Abwesner l' volume lodjike %1$s (%2$s) avou %3$s"
#. displayed text during action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#: libstorage/src/LvmLv.cc:265
-#, fuzzy, c-format
+#, c-format
msgid "Shrinking logical volume %1$s to %2$s"
-msgstr "s s"
+msgstr "Dji raptiti l' volume lodjike %1$s a %2$s"
#. displayed text during action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#: libstorage/src/LvmLv.cc:269
-#, fuzzy, c-format
+#, c-format
msgid "Extending logical volume %1$s to %2$s"
-msgstr "s s"
+msgstr "Dj' agrandi l' volume lodjike %1$s a %2$s"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#: libstorage/src/LvmLv.cc:278
-#, fuzzy, c-format
+#, c-format
msgid "Shrink logical volume %1$s to %2$s"
-msgstr "s s"
+msgstr "Raptiti l' volume lodjike %1$s a %2$s"
#. displayed text before action, %1$s is replaced by device name e.g. /dev/system/var
#. %2$s is replaced by size (e.g. 623.5 MB)
#: libstorage/src/LvmLv.cc:282
-#, fuzzy, c-format
+#, c-format
msgid "Extend logical volume %1$s to %2$s"
-msgstr "s s"
+msgstr "Agrandi l' volume lodjike %1$s a %2$s"
#. displayed text during action, %1$s is replaced by a name (e.g. system),
#: libstorage/src/LvmVg.cc:1006
-#, fuzzy, c-format
+#, c-format
msgid "Removing volume group %1$s"
-msgstr "groupe s"
+msgstr "Dji oistêye li groupe di volumes %1$s"
#. displayed text before action, %1$s is replaced by a name (e.g. system),
#: libstorage/src/LvmVg.cc:1011
-#, fuzzy, c-format
+#, c-format
msgid "Remove volume group %1$s"
-msgstr "Oister groupe s"
+msgstr "Oister l' groupe di volumes %1$s"
#. displayed text during action, %1$s is replaced by a name (e.g. system),
#. %2$ is replaced by one or more devices (e.g /dev/sda1 /dev/sda2)
#: libstorage/src/LvmVg.cc:1024
-#, fuzzy, c-format
+#, c-format
msgid "Creating volume group %1$s from %2$s"
-msgstr "Dj' ahive groupe s s"
+msgstr "Dj' ahive li groupe di volumes %1$s a pårti d' %2$s"
#. displayed text before action, %1$s is replaced by a name (e.g. system),
#. %2$ is replaced by one or more devices (e.g /dev/sda1 /dev/sda2)
#: libstorage/src/LvmVg.cc:1031
-#, fuzzy, c-format
+#, c-format
msgid "Create volume group %1$s from %2$s"
-msgstr "groupe s s"
+msgstr "Ahiver l' groupe di volumes %1$s a pårti d' %2$s"
#. displayed text during action, %1$s is replaced by a name (e.g. system),
#. %2$s is replaced by a device name (e.g. /dev/hda1)
#: libstorage/src/LvmVg.cc:1045
-#, fuzzy, c-format
+#, c-format
msgid "Extending volume group %1$s with %2$s"
-msgstr "groupe s s"
+msgstr "Dj' agrandi l' groupe di volumes %1$s avou %2$s"
#. displayed text before action, %1$s is replaced by a name (e.g. system),
#. %2$s is replaced by a device name (e.g. /dev/hda1)
#: libstorage/src/LvmVg.cc:1052
-#, fuzzy, c-format
+#, c-format
msgid "Extend volume group %1$s with %2$s"
-msgstr "groupe s s"
+msgstr "Agrandi l' groupe di volumes %1$s avou %2$s"
#. displayed text during action, %1$s is replaced by a name (e.g. system),
#. %2$s is replaced by a device name (e.g. /dev/hda1)
#: libstorage/src/LvmVg.cc:1066
-#, fuzzy, c-format
+#, c-format
msgid "Reducing volume group %1$s by %2$s"
-msgstr "groupe s s"
+msgstr "Dji raptiti l' groupe di volumes %1$s pa %2$s"
#. displayed text before action, %1$s is replaced by a name (e.g. system),
#. %2$s is replaced by a device name (e.g. /dev/hda1)
#: libstorage/src/LvmVg.cc:1073
-#, fuzzy, c-format
+#, c-format
msgid "Reduce volume group %1$s by %2$s"
-msgstr "groupe s s"
+msgstr "Raptiti l' groupe di volumes %1$s pa %2$s"
#. displayed text during action, %1$s is replaced by device name e.g. /dev/md0
#: libstorage/src/Md.cc:405
-#, fuzzy, c-format
+#, c-format
msgid "Deleting software RAID %1$s"
-msgstr "Dji disface s"
+msgstr "Dji disface li programe RAID %1$s"
#. displayed text before action, %1$s is replaced by device name e.g. md0
#. %2$s is replaced by size (e.g. 623.5 MB)
#: libstorage/src/Md.cc:411
-#, fuzzy, c-format
+#, c-format
msgid "Delete software RAID %1$s (%2$s)"
-msgstr "Disfacer s s"
+msgstr "Disfacer l' programe RAID %1$s (%2$s)"
#. displayed text during action, %1$s is replaced by device name e.g. /dev/md0
#: libstorage/src/Md.cc:424
@@ -3387,13 +3383,11 @@
msgstr "&Tchuzes"
#: storage/src/include/ep-dialogs.ycp:136
-#, fuzzy
msgid "Do not mount partition"
-msgstr "Enonder l' sistinme a pårti del pårticion raecene"
+msgstr "En nén monter l' pårticion"
#. helptext
#: storage/src/include/ep-dialogs.ycp:313
-#, fuzzy
msgid ""
"<p>\n"
"Keep in mind that this file system is only protected when it is not\n"
@@ -3401,8 +3395,11 @@
"Linux file system.\n"
"</p>"
msgstr ""
-"<p> dins\n"
-"</p>"
+"<p>\n"
+"
Tuzez todi ki c' sistinme di fitchî n' est waeranti ki cwand i n' est nén\n"
+"
monté. On côp ki srè monté, i srè ttossu waeranti ki tolminme kén ôte\n"
+"
sistinme di fitchî Linux.\n"
+"
</p>"
#. helptext
#: storage/src/include/ep-dialogs.ycp:321
@@ -3420,172 +3417,190 @@
#: storage/src/include/ep-dialogs.ycp:364
msgid "Empty password allowed."
-msgstr ""
+msgstr "Vude sicret permetou."
#: storage/src/include/ep-dialogs.ycp:366
-#, fuzzy
msgid "Password"
-msgstr "&Sicret"
+msgstr "Sicret"
#. popup text
#: storage/src/include/ep-dialogs.ycp:430
-#, fuzzy
msgid ""
"The password may only contain the following characters:\n"
"0..9, a..z, A..Z, and any of \"@#* ,.;:._-+!$%&/|?{[()]}^\\<>\".\n"
"Try again."
msgstr ""
-"\n"
-" eyet."
+"Li scret n' duvreut contni ki les caracteres shuvants:\n"
+"0..9, a..z, A..Z, et les caracteres « @#* ,.;:._-+!$%&/|?{[()]}^\\<> ».\n"
+"Sayîz co on côp."
#. FIXME: add special case for Windows part.
#: storage/src/include/ep-dialogs.ycp:525
-#, fuzzy, ycp-format
+#, ycp-format
msgid ""
"Used\n"
"Space\n"
"%1 "
-msgstr "1 "
+msgstr ""
+"Espåce\n"
+"
eployî\n"
+"
%1 "
#. label text %1 is replaced by a number
#: storage/src/include/ep-dialogs.ycp:528
#: storage/src/inst_custom_part.ycp:1291
-#, fuzzy, ycp-format
+#, ycp-format
msgid ""
"Swap\n"
"Space\n"
"%1 "
-msgstr "1 "
+msgstr ""
+"Espåce\n"
+"
swap\n"
+"
%1 "
#: storage/src/include/ep-dialogs.ycp:530
-#, fuzzy, ycp-format
+#, ycp-format
msgid ""
"Free\n"
"Space\n"
"%1 "
-msgstr "1 "
+msgstr ""
+"Espåce\n"
+"
libe\n"
+"
%1 "
#. label text, %1 is replaced by a number
#: storage/src/include/ep-dialogs.ycp:532
#: storage/src/inst_custom_part.ycp:1299
-#, fuzzy, ycp-format
+#, ycp-format
msgid ""
"Unused\n"
"Disk\n"
"%1 "
-msgstr "1 "
+msgstr ""
+"Plake nén\n"
+"
eployeye\n"
+"
%1 "
#. Labels for bar graph. "%1" will be replace with a numeric value.
#: storage/src/include/ep-dialogs.ycp:537
-#, fuzzy, ycp-format
+#, ycp-format
msgid ""
"LV\n"
"Used\n"
"%1"
-msgstr "1"
+msgstr ""
+"LV\n"
+"
eployî\n"
+"
%1"
#. Labels for bar graph. "%1" will be replace with a numeric value.
#: storage/src/include/ep-dialogs.ycp:539
-#, fuzzy, ycp-format
+#, ycp-format
msgid ""
"LV\n"
"Free\n"
"%1"
-msgstr "1"
+msgstr ""
+"LV\n"
+"
libe\n"
+"
%1"
#. Labels for bar graph. "%1" will be replace with a numeric value.
#: storage/src/include/ep-dialogs.ycp:541
-#, fuzzy, ycp-format
+#, ycp-format
msgid ""
"VG\n"
"Free\n"
"%1"
-msgstr "1"
+msgstr ""
+"VG\n"
+"
libe\n"
+"
%1"
#: storage/src/include/ep-dialogs.ycp:550
-#, fuzzy
msgid "Swap Space"
-msgstr "Espåce "
+msgstr "Espåce swap"
#: storage/src/include/ep-dialogs.ycp:552
msgid "Remaining Free Space"
-msgstr ""
+msgstr "Espåce di libe ki dmore"
#. Heading for dialog
#: storage/src/include/ep-dialogs.ycp:559
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Resize Partition %1"
-msgstr "Candjî Pårticion 1"
+msgstr "Candjî l' grandeu del pårticion %1"
#. FIXME: Really?
#: storage/src/include/ep-dialogs.ycp:575
-#, fuzzy, ycp-format
+#, ycp-format
msgid ""
"Partition %1 cannot be resized\n"
"because the filesystem seems to be inconsistent"
-msgstr "Pårticion"
+msgstr ""
+"Li grandeu del pårticion %1 ni pout nén esse candjeye\n"
+"
a cåze kel sistinme ni shonne nén esse consistant"
#. Heading for dialog
#: storage/src/include/ep-dialogs.ycp:594
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Resize Logical Volume %1"
-msgstr "Candjî di grandeu Lodjike"
+msgstr "Candjî di grandeu do volume lodjike %1"
#. Labels for input fields. "%1" will be replaced with the current unit (MB).
#: storage/src/include/ep-dialogs.ycp:597
-#, fuzzy, ycp-format
+#, ycp-format
msgid "LV Free (%1)"
-msgstr "Espåce Libe"
+msgstr "LV libe (%1)"
#. Labels for input fields. "%1" will be replaced with the current unit (MB).
#: storage/src/include/ep-dialogs.ycp:599
-#, fuzzy, ycp-format
+#, ycp-format
msgid "VG Free (%1)"
-msgstr "Espåce Libe"
+msgstr "VG libe (%1)"
#: storage/src/include/ep-dialogs.ycp:609
#: storage/src/include/ep-dialogs.ycp:617
-#, fuzzy, ycp-format
+#, ycp-format
msgid "New Partition Size (in %1)"
-msgstr "Novea Grandeu"
+msgstr "Novele grandeu del pårticion (e %1)"
#: storage/src/include/ep-dialogs.ycp:630
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Minimum Partition Size: %1 %2"
-msgstr "Candjî Pårticion 1"
+msgstr "Grandeu minimåle del pårticion: %1 %2"
#: storage/src/include/ep-dialogs.ycp:631
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Maximum Partition Size: %1 %2"
-msgstr "Candjî Pårticion 1"
+msgstr "Grandeu macsimåle del pårticion: %1 %2"
#. help text
#: storage/src/include/ep-dialogs.ycp:643
-#, fuzzy
msgid ""
"<p>Choose the new size by draging the slider or by entering a\n"
"numeric value in either input field.</p>"
msgstr ""
-"\n"
-"<p> oudonbén dins\n"
-"</p>"
+"<p>Tchoezixhoz l' novele grandeu e bodjant l' boton d' acinseu oudonbén\n"
+"
e stitchant ene valixhance limerike dins l' tchamp d' intrêye ki corespond.</p>"
#. popup text
#: storage/src/include/ep-dialogs.ycp:735
-#, fuzzy
msgid "Rescanning disks..."
-msgstr "Sicanaedje pal ra&ntoele..."
+msgstr "Dji rcorwaite les plakes..."
#. dialog title
#: storage/src/include/ep-dm-dialogs.ycp:27
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Edit DM %1"
-msgstr "Candjî"
+msgstr "Candjî DM %1"
#. error popup
#: storage/src/include/ep-dm-lib.ycp:16
msgid "No DM device selected."
-msgstr ""
+msgstr "Nol éndjin DM di tchoezi."
#. error popup
#: storage/src/include/ep-dm-lib.ycp:26
@@ -3594,6 +3609,8 @@
"The DM %1 is in use. It cannot be\n"
"edited. To edit %1, make sure it is not used."
msgstr ""
+"Li DM %1 est eployî. I n' pout nén esse\n"
+"
candjî. Po candjî %1, soeyoz seur ki n' est nén eployî."
#. heading
#: storage/src/include/ep-dm.ycp:35
@@ -3614,9 +3631,8 @@
#: storage/src/include/ep-hd.ycp:441 storage/src/include/ep-loop.ycp:83
#: storage/src/include/ep-lvm.ycp:140 storage/src/include/ep-lvm.ycp:271
#: storage/src/include/ep-raid.ycp:84
-#, fuzzy
msgid "Edit..."
-msgstr "&Candjî"
+msgstr "Candjî..."
#. helptext
#: storage/src/include/ep-dm.ycp:75
@@ -3634,9 +3650,9 @@
#. heading
#: storage/src/include/ep-dm.ycp:138
-#, fuzzy, ycp-format
+#, ycp-format
msgid "DM Device: %1"
-msgstr "Siervice: %1"
+msgstr "Éndjin DM: %1"
#. push button text
#. tab heading
@@ -3644,138 +3660,121 @@
#: storage/src/include/ep-dm.ycp:141 storage/src/include/ep-hd.ycp:400
#: storage/src/include/ep-lvm.ycp:231 storage/src/include/ep-raid.ycp:169
msgid "&Overview"
-msgstr "&Esplikêyes"
+msgstr "&Mwaisse vuwe"
#. push button text
#. tab heading
#. push button text
#: storage/src/include/ep-dm.ycp:143 storage/src/include/ep-hd.ycp:404
#: storage/src/include/ep-raid.ycp:171
-#, fuzzy
msgid "&Used Devices"
-msgstr "Éndjins d' &detectés"
+msgstr "Éndjins &eployîs"
#. helptext
#: storage/src/include/ep-hd-dialogs.ycp:15
-#, fuzzy
msgid "<p>Choose the partition type for the new partition.</p>"
-msgstr ""
-"<p> grandeu Purneas\n"
-"</p>"
+msgstr "<p>Tchoezixhoz l' sôre di pårticion pol novele pårticion.</p>"
#. radio button text
#: storage/src/include/ep-hd-dialogs.ycp:32
-#, fuzzy
msgid "&Primary Partition"
-msgstr "&Prumî Pårticion"
+msgstr "&Prumaire pårticion"
#. radio button text
#: storage/src/include/ep-hd-dialogs.ycp:36
-#, fuzzy
msgid "&Extended Partition"
-msgstr "Pårticion"
+msgstr "&Sitindowe pårticion"
#. radio button text
#: storage/src/include/ep-hd-dialogs.ycp:40
-#, fuzzy
msgid "&Logical Partition"
-msgstr "&Lodjike Pårticion"
+msgstr "&Lodjike pårticion"
#: storage/src/include/ep-hd-dialogs.ycp:44
-#, fuzzy
msgid "New Partition Type"
-msgstr "Pårticion Sôre"
+msgstr "Novele sôre di pårticion"
#. helptext
#: storage/src/include/ep-hd-dialogs.ycp:88
-#, fuzzy
msgid "<p>Choose the size for the new partition.</p>"
-msgstr ""
-"<p> grandeu\n"
-"</p>"
+msgstr "<p>Tchoezixhoz l' grandeu del novele pårticion.</p>"
#. frame heading
#: storage/src/include/ep-hd-dialogs.ycp:111
-#, fuzzy
msgid "New Partition Size"
-msgstr "Pårticion 1"
+msgstr "Grandeu del novele pårticion"
#. radio button text, %1 is replaced by size
#: storage/src/include/ep-hd-dialogs.ycp:116
#: storage/src/include/ep-lvm-dialogs.ycp:361
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Maximum Size (%1)"
-msgstr "Grandeu"
+msgstr "Grandeu macsimåle (%1)"
#. radio button text
#: storage/src/include/ep-hd-dialogs.ycp:118
-#, fuzzy
msgid "Custom Size"
-msgstr "Mete da vosse"
+msgstr "Grandeu da vosse"
#: storage/src/include/ep-hd-dialogs.ycp:121
msgid "Size (e.g. 9.0 MB or 9.0 GB)"
-msgstr ""
+msgstr "Grandeu (metans 9.0 MB oudonbén 9.0 GB)"
#. radio button text
#: storage/src/include/ep-hd-dialogs.ycp:124
-#, fuzzy
msgid "Custom Region"
-msgstr "Rîles a vosse môde"
+msgstr "Redjon da vosse"
#: storage/src/include/ep-hd-dialogs.ycp:127
-#, fuzzy
msgid "Start Cylinder"
-msgstr "Cominçmint do cilinde: %1"
+msgstr "Cominçmint do cilinde"
#: storage/src/include/ep-hd-dialogs.ycp:129
-#, fuzzy
msgid "End Cylinder"
-msgstr "Difén do cilinde: %1"
+msgstr "Difén do cilinde"
#. error popup, %1 and %2 are replaced by sizes
#: storage/src/include/ep-hd-dialogs.ycp:175
#: storage/src/include/ep-loop-dialogs.ycp:108
#: storage/src/include/ep-lvm-dialogs.ycp:428
-#, fuzzy, ycp-format
+#, ycp-format
msgid "The size entered is invalid. Enter a value like \"%1\" or \"%2\"."
-msgstr "grandeu grandeu oudonbén"
+msgstr "Li grandeu stitcheye n' est nén bone. Sititchîz ene valixhance come « %1 » oudonbén « %2 »."
#. error popup, %1 and %2 are replaced by sizes
#: storage/src/include/ep-hd-dialogs.ycp:183
#: storage/src/include/ep-lvm-dialogs.ycp:434
-#, fuzzy, ycp-format
+#, ycp-format
msgid "The size entered is invalid. Enter a size between %1 and %2."
-msgstr "grandeu grandeu oudonbén."
+msgstr "Li grandeu stitcheye n' est nén bone. Sititchîz ene grandeu etur %1 eyet %2."
#. dialog title
#: storage/src/include/ep-hd-dialogs.ycp:261
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Add Partition on %1"
-msgstr "Candjî Pårticion 1"
+msgstr "Radjouter ene pårticion so %1"
#. dialog title
#: storage/src/include/ep-hd-dialogs.ycp:285
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Edit Partition %1"
-msgstr "Candjî Pårticion 1"
+msgstr "Candjî l' pårticion %1"
#. error popup
#: storage/src/include/ep-hd-lib.ycp:16 storage/src/include/ep-hd-lib.ycp:155
-#, fuzzy
msgid "No hard disk selected."
-msgstr "Sonder les deurès plakes"
+msgstr "Nole deure plake tchoezeye."
#. error popup
#: storage/src/include/ep-hd-lib.ycp:26 storage/src/include/ep-hd-lib.ycp:165
msgid "The disk is in use and cannot be modified."
-msgstr ""
+msgstr "Li plake est eployeye et n' sait esse candjeye."
#. dialog heading
#: storage/src/include/ep-hd-lib.ycp:47
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Select new partition table type for %1."
-msgstr "Disfacer eye&t"
+msgstr "Tchoezi one novele sôre di tåve di pårticion po %1."
#. popup text, %1 is be replaced by disk name e.g. /dev/sda
#: storage/src/include/ep-hd-lib.ycp:68
@@ -3784,37 +3783,36 @@
"Really create new partition table on %1? This will delete all data\n"
"on %1 and all RAIDs and Volume Groups using partitions on %1."
msgstr ""
+"Ahiver ene novele tåve di so %1 podbon? Çoula disfaçrè totes les\n"
+"
dnêyes so %1 eyet tos les RAID et les Groupes di volumes ki siervèt des pårticions dins %1."
#. error popup
#: storage/src/include/ep-hd-lib.ycp:83
-#, fuzzy
msgid "No disk selected."
-msgstr "Sonder les deurès plakes"
+msgstr "Nole plake di tchoezeye."
#. popup text
#: storage/src/include/ep-hd-lib.ycp:93 storage/src/include/ep-lib.ycp:79
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Really delete BIOS RAID %1?"
-msgstr "BIOS?"
+msgstr "Disfacer l' BIOS RAID %1 podbon ?"
#. error popup
#: storage/src/include/ep-hd-lib.ycp:104
-#, fuzzy
msgid "The disk cannot be deleted."
-msgstr "Li masse di sorrantoele ni pout nén esse vude."
+msgstr "Li plake ni sait nén esse disfacêye."
#. error popup
#: storage/src/include/ep-hd-lib.ycp:138
-#, fuzzy, ycp-format
+#, ycp-format
msgid "It is not possible to create a partition on %1."
-msgstr "metou."
+msgstr "I n' est nén possibe d' ahiver ene pårticion so %1."
#. error popup
#: storage/src/include/ep-hd-lib.ycp:209 storage/src/include/ep-hd-lib.ycp:247
#: storage/src/include/ep-hd-lib.ycp:290
-#, fuzzy
msgid "No partition selected."
-msgstr "Pårticion 1"
+msgstr "Nole pårticion di tchoezeye."
#. error popup, %1 is replace by partition device name e.g. /dev/sdb1
#: storage/src/include/ep-hd-lib.ycp:219
@@ -3823,12 +3821,13 @@
"The partition %1 is in use. It cannot be\n"
"edited. To edit %1, make sure it is not used."
msgstr ""
+"Li pårticion %1 est eployeye. Ele ni sait nén esse\n"
+"
candjeye. Po candjî %1, fijhoz k' ele ni soeye nén eployeye."
#. error popup text
#: storage/src/include/ep-hd-lib.ycp:227
-#, fuzzy
msgid "An extended partition cannot be edited."
-msgstr "Nonna."
+msgstr "Ene sitindowe pårticion n' sait nén esse candjeye."
#. error popup, %1 is replace by partition device name, e.g. /dev/sdb1
#: storage/src/include/ep-hd-lib.ycp:264
@@ -3837,71 +3836,71 @@
"The partition %1 is in use. It cannot be\n"
"resized. To resize %1, make sure it is not used."
msgstr ""
+"Li pårticion %1 est eployeye. Si grandeu n' sait nén esse\n"
+"
candjeye. Po candjî l' grandeu d' %1, fijhoz k' ele ni soeye nén eployeye."
#. error popup text
#: storage/src/include/ep-hd-lib.ycp:272
-#, fuzzy
msgid "An extended partition cannot be resized."
-msgstr "Nonna."
+msgstr "Li grandeu d' ene sitindowe pårticion n' sait nén esse candjeye."
#. popup text, %1 is replaced by a dasd name e.g. /dev/dasda
#: storage/src/include/ep-hd-lib.ycp:313
-#, fuzzy, ycp-format
+#, ycp-format
msgid ""
"Running dasdfmt deletes all data on the disk.\n"
"Really execute dasdfmt on disk %1?\n"
-msgstr "tot metou metou"
+msgstr ""
+"Enonder dasdfmt disface totes les dnêyes sol plake.\n"
+"
Enonder dasdfmt podbon sol plake %1 ?\n"
#. popup text
#: storage/src/include/ep-hd-lib.ycp:325
-#, fuzzy
msgid ""
"The disk is no longer marked for dasdfmt.\n"
"\n"
"Partitions currently present on this disk are again\n"
"displayed.\n"
-msgstr "Nonna metou"
+msgstr ""
+"Li plake n' est pus markêye po dasdfmt.\n"
+"
\n"
+"
Les pårticions ki sont sol plake pol moumint sont\n"
+"
håynêyes co on côp.\n"
#. push button text
#: storage/src/include/ep-hd.ycp:49
msgid "Rescan Disks"
-msgstr ""
+msgstr "Ricorwaitî les plakes"
#. push button text
#: storage/src/include/ep-hd.ycp:54
-#, fuzzy
msgid "Import Mount Points..."
-msgstr "Pont d' montaedje"
+msgstr "Abaguer des ponts d' montaedje..."
#. menu entry text
#: storage/src/include/ep-hd.ycp:63
-#, fuzzy
msgid "Configure &iSCSI..."
-msgstr "Apontyî les plakes &iSCSI"
+msgstr "Apontyî &iSCSI..."
#. menu entry text
#: storage/src/include/ep-hd.ycp:68
-#, fuzzy
msgid "Configure &Multipath..."
-msgstr "Apontyî..."
+msgstr "Apontyî &Multipath..."
#. menu entry text
#: storage/src/include/ep-hd.ycp:73
-#, fuzzy
msgid "Configure &DASD..."
-msgstr "Apontyî..."
+msgstr "Apontyî &DASD..."
#. menu entry text
#: storage/src/include/ep-hd.ycp:75
-#, fuzzy
msgid "Configure &zFCP..."
-msgstr "Apontyî..."
+msgstr "Apontyî &zFCP..."
#. menu entry text
#: storage/src/include/ep-hd.ycp:77
-#, fuzzy
msgid "Configure &XPRAM..."
-msgstr "Apontyî..."
+msgstr "Apontyî &XPRAM..."
#. menu button text
#: storage/src/include/ep-hd.ycp:82
@@ -3911,9 +3910,8 @@
#. heading
#. tree node label
#: storage/src/include/ep-hd.ycp:89 storage/src/include/ep-main.ycp:178
-#, fuzzy
msgid "Hard Disks"
-msgstr "Deure plake"
+msgstr "Deurès plakes"
#. helptext
#: storage/src/include/ep-hd.ycp:98
@@ -3921,74 +3919,80 @@
"<p>This view shows all hard disks including\n"
"iSCSI disks, BIOS RAIDs and Multipath disks and their partitions.</p>"
msgstr ""
+"<p>Cisse vuwe ci mostere totes les deurès plakes avou dvins\n"
+"
les plakes iSCSI, DIOS RAID et Multipath eyet leus pårticions.</p>"
#. popup text
#: storage/src/include/ep-hd.ycp:149
-#, fuzzy
msgid ""
"Rescaning disks cancels all current changes.\n"
"Really rescan disks?"
-msgstr "tot?"
+msgstr ""
+"Ricorwaitî les plake fwait rnoncî a tos les candjmints do moumint.\n"
+"
Ricorwaitî les plakes podbon ?"
#. popup text
#: storage/src/include/ep-hd.ycp:162
-#, fuzzy
msgid ""
"Calling iSCSI configuration cancels all current changes.\n"
"Really call iSCSI configuration?"
-msgstr "tot?"
+msgstr ""
+"Atôtchî l' apontiaedje iSCSI fwait rnoncî a tos les candjmints do moumint.\n"
+"
Atôtchî l' apontiaedje iSCSI podbon ?"
#. popup text
#: storage/src/include/ep-hd.ycp:168
-#, fuzzy
msgid ""
"Calling Multipath configuration cancels all current changes.\n"
"Really call Multipath configuration?"
-msgstr "tot?"
+msgstr ""
+"Atôtchî l' apontiaedje Multipath fwait rnoncî a tos les candjmints do moumint.\n"
+"
Atôtchî l' apontiaedje Multipath podbon ?"
#. popup text
#: storage/src/include/ep-hd.ycp:174
-#, fuzzy
msgid ""
"Calling DASD configuration cancels all current changes.\n"
"Really call DASD configuration?"
-msgstr "tot?"
+msgstr ""
+"Atôtchî l' apontiaedje DASD fwait rnoncî a tos les candjmints do moumint.\n"
+"
Atôtchî l' apontiaedje DASD podbon ?"
#. popup text
#: storage/src/include/ep-hd.ycp:180
-#, fuzzy
msgid ""
"Calling zFCP configuration cancels all current changes.\n"
"Really call zFCP configuration?"
-msgstr "tot?"
+msgstr ""
+"Atôtchî l' apontiaedje zFCP fwait rnoncî a tos les candjmints do moumint.\n"
+"
Atôtchî l' apontiaedje zFCP podbon ?"
#. popup text
#: storage/src/include/ep-hd.ycp:186
-#, fuzzy
msgid ""
"Calling XPRAM configuration cancels all current changes.\n"
"Really call XPRAM configuration?"
-msgstr "tot?"
+msgstr ""
+"Atôtchî l' apontiaedje XPRAM fwait rnoncî a tos les candjmints do moumint.\n"
+"
Atôtchî l' apontiaedje XPRAM podbon ?"
#. push button text
#: storage/src/include/ep-hd.ycp:211 storage/src/include/ep-hd.ycp:295
#: storage/src/include/ep-hd.ycp:445 storage/src/include/ep-loop.ycp:85
#: storage/src/include/ep-lvm.ycp:83 storage/src/include/ep-lvm.ycp:144
#: storage/src/include/ep-lvm.ycp:275 storage/src/include/ep-raid.ycp:88
-#, fuzzy
msgid "Delete..."
-msgstr "Disfacer"
+msgstr "Disfacer..."
#. push button text
#: storage/src/include/ep-hd.ycp:214
-#, fuzzy
msgid "Smart..."
-msgstr "&Aberweter..."
+msgstr "Malén..."
#. push button text
#: storage/src/include/ep-hd.ycp:216
msgid "HD Parm..."
-msgstr ""
+msgstr "HD Parm..."
#. helptext
#: storage/src/include/ep-hd.ycp:222
@@ -4011,23 +4015,20 @@
#. push button text
#: storage/src/include/ep-hd.ycp:289 storage/src/include/ep-lvm.ycp:138
-#, fuzzy
msgid "Add..."
-msgstr "Rad&jouter"
+msgstr "Radjouter..."
#. push button text
#: storage/src/include/ep-hd.ycp:293 storage/src/include/ep-hd.ycp:443
#: storage/src/include/ep-lvm.ycp:81 storage/src/include/ep-lvm.ycp:142
#: storage/src/include/ep-lvm.ycp:273 storage/src/include/ep-raid.ycp:86
-#, fuzzy
msgid "Resize..."
-msgstr "Candjî di grandeu"
+msgstr "Candjî l' grandeu..."
#. menu button text
#: storage/src/include/ep-hd.ycp:298
-#, fuzzy
msgid "Expert..."
-msgstr "Po les spepieus."
+msgstr "Po les spepieus..."
#. helptext
#: storage/src/include/ep-hd.ycp:303
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-wa-2.17.6/VERSION new/yast2-trans-wa-2.17.7/VERSION
--- old/yast2-trans-wa-2.17.6/VERSION 2008-10-24 15:12:24.000000000 +0200
+++ new/yast2-trans-wa-2.17.7/VERSION 2008-10-27 13:26:47.000000000 +0100
@@ -1 +1 @@
-2.17.6
+2.17.7
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package kdump
checked in at Mon Oct 27 16:56:32 CET 2008.
--------
--- kdump/kdump.changes 2008-10-22 23:06:11.000000000 +0200
+++ /mounts/work_src_done/STABLE/kdump/kdump.changes 2008-10-26 19:49:43.000000000 +0100
@@ -1,0 +2,7 @@
+Sun Oct 26 19:49:16 CET 2008 - bwalle(a)suse.de
+
+- Use the full kernel release (obtained with get_kernel_version)
+ to build the initrd name also when symlinks are used
+ (bnc#438218).
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
New:
----
kdump-56814cf5d03dff1d6233de996e79e1dd54cf5144
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kdump.spec ++++++
--- /var/tmp/diff_new_pack.N13957/_old 2008-10-27 16:56:20.000000000 +0100
+++ /var/tmp/diff_new_pack.N13957/_new 2008-10-27 16:56:20.000000000 +0100
@@ -22,7 +22,7 @@
Name: kdump
License: GPL v2 or later
Version: 0.6.3
-Release: 31
+Release: 32
Requires: curl openssh makedumpfile
Summary: Script for kdump
Group: System/Kernel
@@ -39,6 +39,7 @@
Patch1: %{name}-2860e7a5d481633aca345b07db28d95fdb04d649
Patch2: %{name}-8580f201f2f759eb78c646a6b98727b4508101d3
Patch3: %{name}-8712f642965d13539148e385aefb805e3464b62d
+Patch4: %{name}-56814cf5d03dff1d6233de996e79e1dd54cf5144
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# rename "kdump-helpers" (10.3) -> "kdump" (11.0/SP2)
Provides: kdump-helpers = 0.2.4
@@ -64,6 +65,7 @@
%patch1 -p1
%patch2 -p1
%patch3 -p1
+%patch4 -p1
%build
export CFLAGS="%optflags"
@@ -132,6 +134,10 @@
%config %{_sysconfdir}/udev/rules.d/70-kdump.rules
%changelog
+* Sun Oct 26 2008 bwalle(a)suse.de
+- Use the full kernel release (obtained with get_kernel_version)
+ to build the initrd name also when symlinks are used
+ (bnc#438218).
* Thu Oct 23 2008 bwalle(a)suse.de
- Actually check <version>-kdump before <version>-<flavour> when
looking for a suitable kdump kernel.
@@ -171,7 +177,7 @@
o add vmcore(5) manual page
o implement email support
- use PreReq for mkinitrd instead of BuildRequires
-* Tue Aug 05 2008 bwalle(a)suse.de
+* Mon Aug 04 2008 bwalle(a)suse.de
- Don't report ELF32 as "invalid ELF class"
* Fri Aug 01 2008 bwalle(a)suse.de
- update to 0.5.5
@@ -202,7 +208,7 @@
o mount dump partition and boot partition in initrd
o don't exit with error code when the dump directory does not yet
exist in the 'delete_dumps' command
-* Fri Jul 25 2008 bwalle(a)suse.de
+* Thu Jul 24 2008 bwalle(a)suse.de
- update to 0.5.1
o add 'print_target' sub command
o implement SSH public/private key authentication
++++++ kdump-56814cf5d03dff1d6233de996e79e1dd54cf5144 ++++++
# HG changeset patch
# User Bernhard Walle <bwalle(a)suse.de>
# Date 1225046677 -3600
# Node ID 56814cf5d03dff1d6233de996e79e1dd54cf5144
# Parent ab17d673947837b991853adf412862a67e8862b6
boot.kdump: Use the full kernel release for initrd name
Use the full kernel release (obtained with /sbin/get_kernel_version) to build
the initrd name also when symlinks are used.
diff -r ab17d6739478 -r 56814cf5d03d ChangeLog
--- a/ChangeLog Sun Oct 26 17:06:56 2008 +0100
+++ b/ChangeLog Sun Oct 26 19:44:37 2008 +0100
@@ -1,3 +1,9 @@
+2008-10-26 Bernhard Walle <bwalle(a)suse.de>
+
+ * boot.kdump: Use the full kernel release (obtained with
+ /sbin/get_kernel_version) to build the initrd name also when symlinks
+ are used.
+
2008-10-22 Bernhard Walle <bwalle(a)suse.de>
* actually check <version>-kdump before <version>-<flavour> when
diff -r ab17d6739478 -r 56814cf5d03d NEWS
--- a/NEWS Sun Oct 26 17:06:56 2008 +0100
+++ b/NEWS Sun Oct 26 19:44:37 2008 +0100
@@ -3,6 +3,9 @@
* change default location for KDUMP_SAVEDIR to "/var/crash"
* actually check <version>-kdump before <version>-<flavour> when looking for
a suitable kdump kernel
+ * boot.kdump: Use the full kernel release (obtained with
+ /sbin/get_kernel_version) to build the initrd name also when symlinks are
+ used.
0.6.3
-----
diff -r ab17d6739478 -r 56814cf5d03d init/boot.kdump
--- a/init/boot.kdump Sun Oct 26 17:06:56 2008 +0100
+++ b/init/boot.kdump Sun Oct 26 19:44:37 2008 +0100
@@ -158,18 +158,31 @@
}
#
-# Returns the initrd for the kernel. If the kernel already contains
+# Prints the initrd for the kernel. If the kernel already contains
# "kdump", then return "/boot/initrd-<kernelver>", else return
# "/boot/initrd-<kernelver>-kdump".
+#
+# @param kdump_kernel: Full path to the kernel
+# @returncode: 0 on success, 1 on failure
function find_initrd ()
{
- local kdump_kver=$1
+ local kdump_kernel=$1
+
+ # canonicalize the kernel version
+ local kdump_kver=$(/sbin/get_kernel_version "$kdump_kernel")
+ if [ -z "$kdump_kver" ] ; then
+ echo >&2 "Getting version for $kdump_kernel failed."
+ echo "${BOOTDIR}/initrd-kdump"
+ return 1
+ fi
if [[ "$kdump_kver" == *kdump* ]] ; then
- echo "${BOOTDIR}/initrd${kdump_kver}"
+ echo "${BOOTDIR}/initrd${kdump_kver:+-}${kdump_kver}"
else
echo "${BOOTDIR}/initrd${kdump_kver:+-}${kdump_kver}-kdump"
fi
+
+ return 0
}
#
@@ -240,7 +253,7 @@
rc_exit
fi
- kdump_initrd=$(find_initrd "$kdump_kver")
+ kdump_initrd=$(find_initrd "$kdump_kernel")
# rebuilding the kdump initramfs if necessary
mkdumprd -K "$kdump_kernel" -I "$kdump_initrd" -q
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package yast2-trans-uk
checked in at Mon Oct 27 16:56:31 CET 2008.
--------
--- yast2-trans-uk/yast2-trans-uk.changes 2008-10-13 11:02:21.000000000 +0200
+++ /mounts/work_src_done/STABLE/yast2-trans-uk/yast2-trans-uk.changes 2008-10-27 13:25:16.000000000 +0100
@@ -1,0 +2,5 @@
+Mon Oct 27 13:25:16 CET 2008 - ke(a)suse.de
+
+- Update to version 2.17.8.
+
+------------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
yast2-trans-uk-2.17.7.tar.bz2
New:
----
yast2-trans-uk-2.17.8.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-trans-uk.spec ++++++
--- /var/tmp/diff_new_pack.e14491/_old 2008-10-27 16:56:27.000000000 +0100
+++ /var/tmp/diff_new_pack.e14491/_new 2008-10-27 16:56:27.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-trans-uk (Version 2.17.7)
+# spec file for package yast2-trans-uk (Version 2.17.8)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -19,12 +19,12 @@
Name: yast2-trans-uk
-Version: 2.17.7
+Version: 2.17.8
Release: 1
License: GPL v2 or later
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-trans-uk-2.17.7.tar.bz2
+Source0: yast2-trans-uk-2.17.8.tar.bz2
Prefix: /usr
Provides: locale(yast2:uk)
BuildRequires: pkgconfig yast2-devtools
@@ -38,7 +38,7 @@
%prep
-%setup -n yast2-trans-uk-2.17.7
+%setup -n yast2-trans-uk-2.17.8
%build
autoreconf --force --install
@@ -70,6 +70,8 @@
%dir /usr/share/YaST2/locale
%lang(uk) /usr/share/YaST2/locale/uk
%changelog
+* Mon Oct 27 2008 ke(a)suse.de
+- Update to version 2.17.8.
* Mon Oct 13 2008 ke(a)suse.de
- Update to version 2.17.7.
* Mon Oct 06 2008 ke(a)suse.de
++++++ yast2-trans-uk-2.17.7.tar.bz2 -> yast2-trans-uk-2.17.8.tar.bz2 ++++++
++++ 22825 lines of diff (skipped)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0