openSUSE Commits
Threads by month
- ----- 2024 -----
- 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
June 2006
- 1 participants
- 1015 discussions
Hello community,
here is the log from the commit of package evolution-exchange
checked in at Wed Jun 28 18:48:08 CEST 2006.
--------
--- GNOME/evolution-exchange/evolution-exchange.changes 2006-06-16 20:33:30.000000000 +0200
+++ evolution-exchange/evolution-exchange.changes 2006-06-28 17:20:54.000000000 +0200
@@ -1,0 +2,5 @@
+Wed Jun 28 17:20:22 CEST 2006 - fejj(a)suse.de
+
+- Added bnc-179545.patch to fix a hang in the Exchange Connector.
+
+-------------------------------------------------------------------
New:
----
bnc-179545.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ evolution-exchange.spec ++++++
--- /var/tmp/diff_new_pack.w7v1Je/_old 2006-06-28 18:47:50.000000000 +0200
+++ /var/tmp/diff_new_pack.w7v1Je/_new 2006-06-28 18:47:50.000000000 +0200
@@ -19,7 +19,7 @@
Group: Productivity/Networking/Email/Utilities
Autoreqprov: on
Version: 2.6.0
-Release: 32
+Release: 33
Summary: Evolution Connector for Microsoft Exchange Server 2000/2003
Source: ftp://ftp.gnome.org/pub/GNOME/sources/evolution-exchange/2.6/%{name}-%{vers…
Source100: openldap-%{ldap_version}.tar.bz2
@@ -38,6 +38,7 @@
Patch12: bnc-166987-exchange.patch
Patch13: bnc-179566.patch
Patch14: bnc-179566-2.patch
+Patch15: bnc-179545.patch
# paches for linking static against openldap
# on older versions <= 9.1
Patch100: openldap-%{ldap_version}.dif
@@ -127,6 +128,7 @@
%patch12
%patch13
%patch14
+%patch15
%build
%if %suse_version < 920
@@ -209,6 +211,8 @@
%{prefix}/share/gtk-doc/html/*
%changelog -n evolution-exchange
+* Wed Jun 28 2006 - fejj(a)suse.de
+- Added bnc-179545.patch to fix a hang in the Exchange Connector.
* Fri Jun 16 2006 - fejj(a)suse.de
- Added bnc-179566-2.patch which fixes a bug in the last patch
* Fri Jun 02 2006 - fejj(a)suse.de
++++++ bnc-179545.patch ++++++
Index: camel/camel-stub-marshal.c
===================================================================
RCS file: /cvs/gnome/evolution-exchange/camel/camel-stub-marshal.c,v
retrieving revision 1.2.8.3
diff -u -r1.2.8.3 camel-stub-marshal.c
--- camel/camel-stub-marshal.c 15 Jun 2006 20:35:34 -0000 1.2.8.3
+++ camel/camel-stub-marshal.c 23 Jun 2006 14:25:45 -0000
@@ -90,9 +90,10 @@
ssize_t n;
do {
- if ((n = camel_read (marshal->fd, buf + nread, len - nread)) > 0)
- nread += n;
- } while (n && nread < len && errno != EINTR);
+ if ((n = camel_read (marshal->fd, buf + nread, len - nread)) <= 0)
+ break;
+ nread += n;
+ } while (nread < len);
if (nread < len) {
close (marshal->fd);
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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 dictd
checked in at Wed Jun 28 18:46:05 CEST 2006.
--------
--- dictd/dictd.changes 2006-01-25 21:35:28.000000000 +0100
+++ dictd/dictd.changes 2006-06-28 14:03:29.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Jun 28 11:03:56 CEST 2006 - zpetrova(a)suse.cz
+
+- update to version 1.10.5
+- added configure --enable_dictorg (#169995)
+
+-------------------------------------------------------------------
Old:
----
dictd-1.10.4.patch
dictd-1.10.4.tar.bz2
New:
----
dictd-1.10.5.patch
dictd-1.10.5.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ dictd.spec ++++++
--- /var/tmp/diff_new_pack.xs2Vk0/_old 2006-06-28 18:45:40.000000000 +0200
+++ /var/tmp/diff_new_pack.xs2Vk0/_new 2006-06-28 18:45:40.000000000 +0200
@@ -1,11 +1,11 @@
#
-# spec file for package dictd (Version 1.10.4)
+# spec file for package dictd (Version 1.10.5)
#
# Copyright (c) 2006 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.
#
-# Please submit bugfixes or comments via http://bugs.opensuse.org
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
@@ -17,23 +17,20 @@
Group: Productivity/Office/Dictionary
Autoreqprov: on
Summary: Electronic Online Dictionaries
-Version: 1.10.4
-Release: 2
-Source0: dictd-1.10.4.tar.bz2
+Version: 1.10.5
+Release: 1
+Source0: %{name}-%{version}.tar.bz2
Source1: dictd.init
-Patch0: dictd-1.10.4.patch
+Patch0: %{name}-%{version}.patch
Prereq: %insserv_prereq %fillup_prereq
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
-This package contains two programs. With 'dict' you have access to
-powerful electronic dictionaries on the Internet. With 'dictd' you can
-setup your own dictionary. To look up, for example, the word 'grunt',
-just type
-
-dict grunt
-
-See the man pages of dict and dictd for details.
+This package contains two programs. With dict, you have access to
+powerful electronic dictionaries on the Internet. With dictd, you can
+set up your own dictionary. To look up, for example, the word 'grunt',
+just type "dict grunt" at a command line. See the man pages of dict and
+dictd for details.
@@ -42,7 +39,7 @@
Rik Faith <faith(a)cs.unc.edu>
%prep
-%setup -n dictd-1.10.4
+%setup -q
#%patch -P 0 -E
%patch0
@@ -52,7 +49,8 @@
./configure \
--prefix=/usr \
--mandir=%{_mandir} \
- --with-cflags="$RPM_OPT_FLAGS"
+ --with-cflags="$RPM_OPT_FLAGS" \
+ --enable-dictorg
make
%install
@@ -100,6 +98,9 @@
%{insserv_cleanup}
%changelog -n dictd
+* Wed Jun 28 2006 - zpetrova(a)suse.cz
+- update to version 1.10.5
+- added configure --enable_dictorg (#169995)
* Wed Jan 25 2006 - mls(a)suse.de
- converted neededforbuild to BuildRequires
* Tue Jan 17 2006 - zpetrova(a)suse.cz
++++++ dictd-1.10.4.patch -> dictd-1.10.5.patch ++++++
++++++ dictd-1.10.4.tar.bz2 -> dictd-1.10.5.tar.bz2 ++++++
++++ 4922 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 ddclient
checked in at Wed Jun 28 18:45:36 CEST 2006.
--------
--- ddclient/ddclient.changes 2006-01-25 21:35:24.000000000 +0100
+++ ddclient/ddclient.changes 2006-06-28 16:46:31.000000000 +0200
@@ -1,0 +2,8 @@
+Wed Jun 28 16:46:05 CEST 2006 - kssingvo(a)suse.de
+
+- update to version 3.7.0:
+- support of many new routers
+- fix to have a '#' char in the password
+- renamed .orig to _orig in %doc section
+
+-------------------------------------------------------------------
Old:
----
ddclient-3.6.7.tar.bz2
New:
----
ddclient-3.7.0.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ddclient.spec ++++++
--- /var/tmp/diff_new_pack.UsjvVc/_old 2006-06-28 18:45:15.000000000 +0200
+++ /var/tmp/diff_new_pack.UsjvVc/_new 2006-06-28 18:45:15.000000000 +0200
@@ -1,11 +1,11 @@
#
-# spec file for package ddclient (Version 3.6.7)
+# spec file for package ddclient (Version 3.7.0)
#
# Copyright (c) 2006 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.
#
-# Please submit bugfixes or comments via http://bugs.opensuse.org
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
@@ -15,23 +15,23 @@
Group: Productivity/Networking/DNS/Utilities
Requires: perl >= 5.004
Autoreqprov: on
-Version: 3.6.7
+Version: 3.7.0
Release: 1
URL: http://ddclient.sourceforge.net/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Summary: A Perl client to update dynamic DNS entries
+Summary: A Perl Client to Update Dynamic DNS Entries
Source0: http://switch.dl.sourceforge.net/sourceforge/ddclient/%{name}-%{version}.ta…
Patch0: ddclient-3.6.3-config.patch
Patch1: ddclient-3.6.5-config.patch
%description
-DDclient is a small full featured client requiring only Perl. Supported
-features include: operating as a daemon, manual and automatic updates,
-static and dynamic updates, optimized updates for multiple addresses,
-MX, wildcards, abuse avoidance, retrying failed updates, and sending
-update status to syslog and through e-mail. This release may now obtain
-your IP address from any interface, web based IP detection, many router
-with user configurable FW definitions and now provides Full support for
+ddclient is a small full-featured client requiring only Perl. Supported
+features include daemon operation, manual and automatic updates, static
+and dynamic updates, optimized updates for multiple addresses, MX, wild
+cards, abuse avoidance, retry for failed updates, and status updates to
+syslog and through e-mail. ddclient can obtain the IP address from any
+interface, through a Web-based IP detection service, and for multiple
+routers using custom FW definitions. It also provides full support for
DynDNS.org's NIC2 protocol. Support is also included for other dynamic
DNS services. Comes with sample scripts for use with DHCP, PPP, and
cron.
@@ -45,7 +45,7 @@
%prep
%setup
-%patch0 -p1
+%patch0 -p1 -b _orig
%patch1 -p1
%build
@@ -81,6 +81,11 @@
%doc COPY* README* sample*
%changelog -n ddclient
+* Wed Jun 28 2006 - kssingvo(a)suse.de
+- update to version 3.7.0:
+- support of many new routers
+- fix to have a '#' char in the password
+- renamed .orig to _orig in %%doc section
* Wed Jan 25 2006 - mls(a)suse.de
- converted neededforbuild to BuildRequires
* Wed Jan 11 2006 - kssingvo(a)suse.de
++++++ ddclient-3.6.7.tar.bz2 -> ddclient-3.7.0.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/Changelog new/ddclient-3.7.0/Changelog
--- old/ddclient-3.6.7/Changelog 2005-11-04 09:12:28.000000000 +0100
+++ new/ddclient-3.7.0/Changelog 2006-06-14 21:59:40.000000000 +0200
@@ -1,6 +1,30 @@
Changelog
cvs
+- Added vi tag
+- Added support for 2Wire 1701HG Gateway (see
+ https://sourceforge.net/forum/message.php?msg_id=3496041 submitted by hemo)
+- added ssl-support by perlhaq
+- updated cvs version to 3.7.0-pre
+- added support for Linksys RV042, see feature requests #1501093, #1500877
+- added support for netgear-rp614, see feature request #1237039
+- added support for watchguard-edge-x, patch #1468981
+- added support for dlink-524, see patch #1314272
+- added support for rtp300
+- added support for netgear-wpn824
+- added support for linksys-wcg200, see patch #1280713
+- added support for netgear-dg834g, see patch #1176425
+- added support for netgear-wgt624, see patch #1165209
+- added support for sveasoft, see patch #1102432
+- added support for smc-barricade-7004vbr, see patch #1087989
+- added support for sitecom-dc202, see patch #1060119
+- fixed the error of stripping out '#' in the middle of password, bug #1465932
+- fixed a couple bugs in sample-etc_rc.d_init.d_ddclient and added some extra auto distro detection
+- added the validation of values when reading the configuration value.
+- this fixes a bug when trying to use periods/intervals in the daemon check times, bug #1209743
+- added timeout option to the IO::Socket call for timing out the initial connection, bug: #1085110
+
+3.6.7
- modified sample-etc_rc.d_init.d_ddclient.lsb (bug #1231930)
- support for ConCont Protocol (patch #1265128) submitted by seather_misery
- problem with sending mail should be solved
@@ -231,4 +255,4 @@
network connectivity problems or a DynDNS server outage
-------------------------------------------------------------------------------
-$Header: /cvsroot/ddclient/ddclient/Changelog,v 1.12 2005/11/04 08:12:28 wimpunk Exp $
+$Id: Changelog 10 2006-06-14 19:59:31Z wimpunk $
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/README new/ddclient-3.7.0/README
--- old/ddclient-3.6.7/README 2005-12-18 16:05:03.000000000 +0100
+++ new/ddclient-3.7.0/README 2006-06-14 21:59:40.000000000 +0200
@@ -18,41 +18,31 @@
Dynamic DNS services currently supported include:
-DynDNS.org - See http://www.dyndns.org for details on obtaining a free account.
-Hammernode - See http://www.hn.org for details on obtaining a free account.
-Zoneedit - See http://www.zoneedit.com for details.
-EasyDNS - See http://www.easydns.com for details.
-NameCheap - See http://www.namecheap.com for details
-
-Also include is support for DSL Reports host monitoring service. [Highly recommended]
-See http://dslreports.com for details.
+DynDNS.org - See http://www.dyndns.org for details on obtaining a free account.
+Hammernode - See http://www.hn.org for details on obtaining a free account.
+Zoneedit - See http://www.zoneedit.com for details.
+EasyDNS - See http://www.easydns.com for details.
+NameCheap - See http://www.namecheap.com for details
+ConCont - See http://www.dydns.za.net for details
+DnsPark - See http://www.dnspark.com for details
+DslReports - See http://www.dslreports.com for details
+Sitelutions - see http://www.sitelutions.com for details
DDclient now supports many of cable/dsl broadband routers.
-Comments, suggestions and requests can always be sent to:
- mailto:paul+ddclient@burry.ca
+Comments, suggestions and requests: use the forums on
+ http://sourceforge.net/projects/ddclient/
-If you use ddclient, please send a brief note to:
- mailto:paul+ddclient@burry.ca
-and indicate if you would like to be notified of new releases.
-
-.. Paul Burry
-
-IMPORTANT UPDATE:
-Paul doesn't maintain the code anymore. Everything is done through sf.net.
-Please check out http://ddclient.sourceforge.net and the project page.
+The code was originally written by Paul Burry and is now hosted and maintained
+through sf.net. Please check out http://ddclient.sf.net and the project page.
-------------------------------------------------------------------------------
REQUIREMENTS:
-- one or more accounts from:
- DynDNS.org - See http://www.dyndns.org for details on obtaining a free account.
- Hammernode - See http://www.hn.org for details on obtaining a free account.
- Zoneedit - See http://www.zoneedit.com for details.
- EasyDNS - See http://www.easydns.com for details.
- NameCheap - See http://www.namecheap.com for details
+- one or more accounts from one of the dynamic DNS services
- Perl 5.004 or later
+ (you need the IO::Socket::SSL perl library for ssl-support)
- Linux or probably any common Unix system
@@ -180,4 +170,4 @@
and monitor your ethernet interface.
-------------------------------------------------------------------------------
-$Header: /cvsroot/ddclient/ddclient/README,v 1.8 2004/12/03 07:30:44 wimpunk Exp $
+$Id: README 10 2006-06-14 19:59:31Z wimpunk $
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/README.cisco new/ddclient-3.7.0/README.cisco
--- old/ddclient-3.6.7/README.cisco 2004-12-03 08:28:39.000000000 +0100
+++ new/ddclient-3.7.0/README.cisco 2006-06-14 21:59:40.000000000 +0200
@@ -1,3 +1,4 @@
+$Id: README.cisco 10 2006-06-14 19:59:31Z wimpunk $
Method 1 ------------------------------------------------------
The following config will allow the Linux machine (10.1.1.2) to read
@@ -32,4 +33,3 @@
fw-skip=FastEthernet0/0
fw-login=ddclient
fw-password=xxxxxxxx
-
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/README.ssl new/ddclient-3.7.0/README.ssl
--- old/ddclient-3.6.7/README.ssl 1970-01-01 01:00:00.000000000 +0100
+++ new/ddclient-3.7.0/README.ssl 2006-06-14 21:59:40.000000000 +0200
@@ -0,0 +1,10 @@
+$Id: README.ssl 10 2006-06-14 19:59:31Z wimpunk $
+
+Since 3.7.0, ddclient support ssl-updates
+To use ssl, put "ssl=yes" in your configuration and make sure
+you have IO::Socket::SSL.
+
+On debian, you need libio-socket-ssl-perl to have IO::Socket::SSL
+
+ssl support is tested on folowing dynamic dns providers:
+- dyndns.org
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/ddclient new/ddclient-3.7.0/ddclient
--- old/ddclient-3.6.7/ddclient 2005-12-18 16:03:42.000000000 +0100
+++ new/ddclient-3.7.0/ddclient 2006-06-14 22:03:52.000000000 +0200
@@ -1,7 +1,7 @@
#!/usr/bin/perl -w
#!/usr/local/bin/perl -w
######################################################################
-# $Header: /cvsroot/ddclient/ddclient/ddclient,v 1.14 2005/11/04 08:12:28 wimpunk Exp $
+# $Id: ddclient 10 2006-06-14 19:59:31Z wimpunk $
#
# DDCLIENT - a Perl client for updating DynDNS information
#
@@ -14,7 +14,7 @@
use Sys::Hostname;
use IO::Socket;
-my $version = "3.6.7";
+my $version = "3.7.0";
my $programd = $0;
$programd =~ s%^.*/%%;
my $program = $programd;
@@ -188,6 +188,81 @@
'url' => '/doc/wan.htm',
'skip' => 'st_wan_ip[0] = "',
},
+ 'westell-6100' => {
+ 'name' => 'Westell C90-610015-06 DSL Router',
+ 'url' => '/advstat.htm',
+ 'skip' => 'IP.+?Address',
+ },
+ '2wire' => {
+ 'name' => '2Wire 1701HG Gateway',
+ 'url' => '/xslt?PAGE=B01',
+ 'skip' => 'Internet Address:',
+ },
+ 'linksys-rv042-wan1' => {
+ 'name' => 'Linksys RV042 Dual Homed Router WAN Port 2',
+ 'url' => '/home.htm',
+ 'skip' => 'WAN1 IP',
+ },
+ 'linksys-rv042-wan2' => {
+ 'name' => 'Linksys RV042 Dual Homed Router WAN Port 2',
+ 'url' => '/home.htm',
+ 'skip' => 'WAN2 IP',
+ },
+ 'netgear-rp614' => {
+ 'name' => 'Netgear RP614 FW',
+ 'url' => '/sysstatus.html',
+ 'skip' => 'IP Address',
+ },
+ 'watchguard-edge-x' => {
+ 'name' => 'Watchguard Edge X FW',
+ 'url' => '/netstat.htm',
+ 'skip' => 'inet addr:',
+ },
+ 'dlink-524' => {
+ 'name' => 'D-Link DI-524',
+ 'url' => '/st_device.html',
+ 'skip' => 'WAN.*?Addres',
+ },
+ 'rtp300' => {
+ 'name' => 'Linksys RTP300',
+ 'url' => '/cgi-bin/webcm?getpage=%2Fusr%2Fwww_safe%2Fhtml%2Fstatus%2FRouter.html',
+ 'skip' => 'Internet.*?IP Address',
+ },
+ 'netgear-wpn824' => {
+ 'name' => 'Netgear WPN824 FW',
+ 'url' => '/RST_status.htm',
+ 'skip' => 'IP Address',
+ },
+ 'linksys-wcg200' => {
+ 'name' => 'Linksys WCG200 FW',
+ 'url' => '/RgStatus.asp',
+ 'skip' => 'WAN.IP.*?Address',
+ },
+ 'netgear-dg834g' => {
+ 'name' => 'netgear-dg834g',
+ 'url' => '/setup.cgi?next_file=s_status.htm&todo=cfg_init',
+ 'skip' => '',
+ },
+ 'netgear-wgt624' => {
+ 'name' => 'Netgear WGT624',
+ 'url' => '/RST_st_dhcp.htm',
+ 'skip' => 'IP Address</B></td><TD NOWRAP width="50%">',
+ },
+ 'sveasoft' => {
+ 'name' => 'Sveasoft WRT54G/WRT54GS',
+ 'url' => '/Status_Router.asp',
+ 'skip' => 'var wan_ip',
+ },
+ 'smc-barricade-7004vbr' => {
+ 'name' => 'SMC Barricade FW (7004VBR model config)',
+ 'url' => '/status_main.stm',
+ 'skip' => 'var wan_ip=',
+ },
+ 'sitecom-dc202' => {
+ 'name' => 'Sitecom DC-202 FW',
+ 'url' => '/status.htm',
+ 'skip' => 'Internet IP Address',
+ },
);
my %ip_strategies = (
'ip' => ": obtain IP from -ip {address}",
@@ -242,6 +317,7 @@
'timeout' => setv(T_DELAY, 0, 0, 1, 0, interval('120s')),
'retry' => setv(T_BOOL, 0, 0, 0, 0, undef),
'force' => setv(T_BOOL, 0, 0, 0, 0, undef),
+ 'ssl' => setv(T_BOOL, 0, 0, 0, 0, undef),
'syslog' => setv(T_BOOL, 0, 0, 1, 0, undef),
'facility' => setv(T_STRING,0, 0, 1, 'daemon', undef),
@@ -431,6 +507,7 @@
"",
[ "options", "=s", "-options opt,opt : optional per-service arguments (see below)" ],
"",
+ [ "ssl", "!", "-{no}ssl : do updates over encrypted SSL connection" ],
[ "retry", "!", "-{no}retry : retry failed updates." ],
[ "force", "!", "-{no}force : force an update even if the update may be unnecessary" ],
[ "timeout", "=i", "-timeout max : wait at most 'max' seconds for the host to respond" ],
@@ -461,6 +538,7 @@
my ($result, %config, %globals, %cache);
my $saved_cache = '';
my %saved_opt = %opt;
+$result = 'OK';
test_geturl(opt('geturl')) if opt('geturl');
@@ -498,6 +576,7 @@
my ($daemon, $ip);
do {
$now = time;
+ $result = 'OK';
%opt = %saved_opt;
if (opt('help')) {
*STDERR = *STDOUT;
@@ -516,7 +595,6 @@
$daemon = define($opt{'daemon'}, $globals{'daemon'});
$daemon = 0 if opt('force');
- $result = 'OK';
## obtain the IP address to use.
$ip = get_ip(opt('use'));
@@ -799,11 +877,15 @@
warning("program version mismatch; ignoring %s", $file);
last;
}
- warning("whitespace follows the \\ at the end-of-line.\nIf you meant to have a line continuation, remove the trailing whitespace.")
- if /\\\s+$/;
+ if (/\\\s+$/) {
+ warning("whitespace follows the \\ at the end-of-line.\nIf you meant to have a line continuation, remove the trailing whitespace.");
+ }
- $content .= "$_\n" unless /^#/;
- s/#.*//; # remove comments
+ $content .= "$_\n" unless /^#/;
+ # lines contain passwords are a special case, we don't want to
+ # arbitrarily strip out '#'
+ if (/^(\S*password\S*)\s*=\s*(\S+)/i) { $_ = "$1=$2"; }
+ if (/^#/ || !(/password/i) || /#.*password/i) { s/#.*//; } # remove comments
## handle continuation lines
$_ = "$continuation$_";
@@ -826,12 +908,19 @@
s/\s*,\s*/,/g;
my @args = split;
- ## verify that keywords are valid..
+ ## verify that keywords are valid...and check the value
foreach my $k (keys %locals) {
if (!exists $variables{'merged'}{$k}) {
- warning("unrecognized keyword '%s' (ignored)", $k);
- delete $locals{$k};
- }
+ warning("unrecognized keyword '%s' (ignored)", $k);
+ delete $locals{$k};
+ } else {
+ my $def = $variables{'merged'}{$k};
+ my $value = check_value($locals{$k}, $def);
+ if (!defined($value)) {
+ warning("Invalid Value for keyword '%s' = '%s'", $k, $locals{$k});
+ delete $locals{$k};
+ } else { $locals{$k} = $value; }
+ }
}
if (exists($locals{'host'})) {
$args[0] = @args ? "$args[0],$locals{host}" : "$locals{host}";
@@ -1539,29 +1628,46 @@
my $url = shift || '';
my $login = shift || '';
my $password = shift || '';
- my ($peer, $server, $port);
+ my ($peer, $server, $port, $default_port, $use_ssl);
my ($sd, $rq, $request, $reply);
-
+
+ debug("proxy = $proxy");
+ debug("url = $url");
## canonify proxy and url
- $proxy =~ s%^http://%%i;
- $url =~ s%^http://%%i;
+ $proxy =~ s%^https?://%%i;
+ $url =~ s%^https?://%%i;
$server = $url;
$server =~ s%/.*%%;
$url = "/" unless $url =~ m%/%;
$url =~ s%^[^/]*/%%;
-
+
+ debug("server = $server");
+ debug("opt(fw = ",opt('fw'));
+ debug("glo fw = $globals{'fw'}");
+ #if ( $globals{'ssl'} and $server ne $globals{'fw'} ) {
+ ## always omit SSL for connections to local router
+ if ( $globals{'ssl'} and (caller(1))[3] ne 'main::get_ip' ) {
+ $use_ssl = 1;
+ $default_port = 443;
+ require IO::Socket::SSL;
+ import IO::Socket::SSL;
+ { no warnings; $IO::Socket::SSL::DEBUG = 0; }
+ } else {
+ $use_ssl = 0;
+ $default_port = 80;
+ }
+
## determine peer and port to use.
$peer = $proxy || $server;
$peer =~ s%/.*%%;
$port = $peer;
$port =~ s%^.*:%%;
- $port = 80 unless $port =~ /^\d+$/;
+ $port = $default_port unless $port =~ /^\d+$/;
$peer =~ s%:.*$%%;
-
+
my $to = sprintf "%s%s", $server, $proxy ? " via proxy $peer:$port" : "";
verbose("CONNECT:", "%s", $to);
-
$request = "GET ";
$request .= "http://$server" if $proxy;
$request .= "/$url HTTP/1.0\n";
@@ -1572,7 +1678,7 @@
$request .= "User-Agent: ${program}/${version}\n";
$request .= "Connection: close\n";
$request .= "\n";
-
+
## make sure newlines are <cr><lf> for some pedantic proxy servers
($rq = $request) =~ s/\n/\r\n/g;
@@ -1581,17 +1687,33 @@
if (! opt('exec')) {
debug("skipped network connection");
verbose("SENDING:", $request);
-
- } elsif (! defined($sd = IO::Socket::INET->new(PeerAddr => $peer, PeerPort => $port, Proto => 'tcp', MultiHomed => 1))) {
- warning("cannot connect to $peer:$port socket: $@");
-
+ } elsif ($use_ssl) {
+ $sd = IO::Socket::SSL->new(
+ PeerAddr => $peer,
+ PeerPort => $port,
+ Proto => 'tcp',
+ MultiHomed => 1,
+ Timeout => opt('timeout'),
+ );
+ defined $sd or warning("cannot connect to $peer:$port socket: $@ " . IO::Socket::SSL::errstr());
} else {
+ $sd = IO::Socket::INET->new(
+ PeerAddr => $peer,
+ PeerPort => $port,
+ Proto => 'tcp',
+ MultiHomed => 1,
+ Timeout => opt('timeout'),
+ );
+ defined $sd or warning("cannot connect to $peer:$port socket: $@");
+ }
+
+ if (defined $sd) {
## send the request to the http server
- verbose("CONNECTED:", "");
+ verbose("CONNECTED: ", $use_ssl ? 'using SSL' : 'using HTTP');
verbose("SENDING:", $request);
$0 = sprintf("%s - sending to %s port %s", $program, $peer, $port);
- my $result = send $sd, $rq, 0;
+ my $result = syswrite $sd, $rq;
if ($result != length($rq)) {
warning("cannot send to $peer:$port ($!).");
@@ -2165,7 +2287,7 @@
} elsif (exists $errors{$status}) {
if ($status eq 'nochg') {
- success("updating %s: %s: %s", $h, $status, $errors{$status});
+ warning("updating %s: %s: %s", $h, $status, $errors{$status});
$config{$h}{'ip'} = $ip;
$config{$h}{'mtime'} = $now;
$config{$h}{'status'} = 'good';
@@ -3002,3 +3124,9 @@
}
######################################################################
+# vim: ai ts=4 sw=4 tw=78 :
+
+
+__END__
+
+
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/sample-etc_cron.d_ddclient new/ddclient-3.7.0/sample-etc_cron.d_ddclient
--- old/ddclient-3.6.7/sample-etc_cron.d_ddclient 2004-12-03 08:30:44.000000000 +0100
+++ new/ddclient-3.7.0/sample-etc_cron.d_ddclient 2006-06-14 21:59:40.000000000 +0200
@@ -1,6 +1,6 @@
######################################################################
## ddclient is an IP address updater for www.dyndns.org
-## $Header: /cvsroot/ddclient/ddclient/sample-etc_cron.d_ddclient,v 1.2 2004/12/03 07:30:44 wimpunk Exp $
+## $Id: sample-etc_cron.d_ddclient 10 2006-06-14 19:59:31Z wimpunk $
######################################################################
## minute 0-59
## hour 0-23
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/sample-etc_ddclient.conf new/ddclient-3.7.0/sample-etc_ddclient.conf
--- old/ddclient-3.6.7/sample-etc_ddclient.conf 2004-12-03 08:28:39.000000000 +0100
+++ new/ddclient-3.7.0/sample-etc_ddclient.conf 2006-06-14 21:59:40.000000000 +0200
@@ -1,5 +1,7 @@
######################################################################
##
+## $Id: sample-etc_ddclient.conf 10 2006-06-14 19:59:31Z wimpunk $
+##
## Define default global variables with lines like:
## var=value [, var=value]*
## These values will be used for each following host unless overridden
@@ -11,12 +13,18 @@
## Lines can be continued on the following line by ending the line
## with a \
##
+##
+## Warning: not all supported routers or dynamic DNS services
+## are mentioned here.
+##
######################################################################
daemon=300 # check every 300 seconds
syslog=yes # log update msgs to syslog
mail=root # mail all msgs to root
mail-failure=root # mail failed update msgs to root
pid=/var/run/ddclient.pid # record PID in file.
+ssl=yes # use ssl-support. Works with
+ # ssl-library
#
#use=watchguard-soho, fw=192.168.111.1:80 # via Watchguard's SOHO FW
#use=netopia-r910, fw=192.168.111.1:80 # via Netopia R910 FW
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/sample-etc_dhclient-exit-hooks new/ddclient-3.7.0/sample-etc_dhclient-exit-hooks
--- old/ddclient-3.6.7/sample-etc_dhclient-exit-hooks 2004-08-14 00:29:17.000000000 +0200
+++ new/ddclient-3.7.0/sample-etc_dhclient-exit-hooks 2006-06-14 21:59:40.000000000 +0200
@@ -1,6 +1,6 @@
#!/bin/sh
######################################################################
-## $Header: /cvsroot/ddclient/ddclient/sample-etc_dhclient-exit-hooks,v 1.1.1.1 2004/08/13 22:29:17 wimpunk Exp $
+## $Id: sample-etc_dhclient-exit-hooks 10 2006-06-14 19:59:31Z wimpunk $
######################################################################
# The /etc/dhclient-enter-hooks script is run by the ISC DHCP client's standard
# update script whenever dhclient obtains or renews an address.
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/sample-etc_dhcpc_dhcpcd-eth0.exe new/ddclient-3.7.0/sample-etc_dhcpc_dhcpcd-eth0.exe
--- old/ddclient-3.6.7/sample-etc_dhcpc_dhcpcd-eth0.exe 2004-12-03 08:30:44.000000000 +0100
+++ new/ddclient-3.7.0/sample-etc_dhcpc_dhcpcd-eth0.exe 2006-06-14 21:59:40.000000000 +0200
@@ -1,6 +1,6 @@
#!/bin/sh
######################################################################
-## $Header: /cvsroot/ddclient/ddclient/sample-etc_dhcpc_dhcpcd-eth0.exe,v 1.2 2004/12/03 07:30:44 wimpunk Exp $
+## $Id: sample-etc_dhcpc_dhcpcd-eth0.exe 10 2006-06-14 19:59:31Z wimpunk $
######################################################################
PATH=/usr/sbin:${PATH}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/sample-etc_ppp_ip-up.local new/ddclient-3.7.0/sample-etc_ppp_ip-up.local
--- old/ddclient-3.6.7/sample-etc_ppp_ip-up.local 2004-12-03 08:30:44.000000000 +0100
+++ new/ddclient-3.7.0/sample-etc_ppp_ip-up.local 2006-06-14 21:59:40.000000000 +0200
@@ -1,6 +1,6 @@
#!/bin/sh
######################################################################
-## $Header: /cvsroot/ddclient/ddclient/sample-etc_ppp_ip-up.local,v 1.2 2004/12/03 07:30:44 wimpunk Exp $
+## $Id: sample-etc_ppp_ip-up.local 10 2006-06-14 19:59:31Z wimpunk $
######################################################################
##
## On my host, pppd invokes this script with args:
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/sample-etc_rc.d_init.d_ddclient new/ddclient-3.7.0/sample-etc_rc.d_init.d_ddclient
--- old/ddclient-3.6.7/sample-etc_rc.d_init.d_ddclient 2004-12-03 08:28:39.000000000 +0100
+++ new/ddclient-3.7.0/sample-etc_rc.d_init.d_ddclient 2006-06-14 21:59:07.000000000 +0200
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#
# ddclient This shell script takes care of starting and stopping
# ddclient.
@@ -6,25 +6,61 @@
# chkconfig: 2345 65 35
# description: ddclient provides support for updating dynamic DNS services.
-[ -f /etc/ddclient/ddclient.conf ] || exit 0
+CONF=/etc/ddclient/ddclient.conf
+program=ddclient
-PATH=/usr/sbin:${PATH}
-COLUMNS=9999
-export PATH COLUMNS
+[ -f $CONF ] || exit 0
+
+system=unknown
+if [ -f /etc/fedora-release ]; then
+ system=fedora
+elif [ -f /etc/redhat-release ]; then
+ system=redhat
+elif [ -f /etc/debian_version ]; then
+ system=debian
+fi
+
+PID=''
+if [ "$system" = "fedora" ] || [ "$system" = "redhat" ]; then
+ . /etc/init.d/functions
+ PID=`pidofproc $program`
+else
+ PID=`ps -aef | grep "$program - sleep" | grep -v grep | awk '{print $2}'`
+fi
+
+PATH=/usr/sbin:/usr/local/sbin:${PATH}
+export PATH
-program=ddclient
# See how we were called.
case "$1" in
start)
# Start daemon.
+ DELAY=`grep -v '^\s*#' $CONF | grep -i -m 1 "daemon" | awk -F '=' '{print $2}'`
+ if [ -z "$DELAY" ] ; then
+ DELAY="-daemon 300"
+ else
+ DELAY=''
+ fi
echo -n "Starting ddclient: "
- ddclient -daemon 300
+ if [ "$system" = "fedora" ] || [ "$system" = "redhat" ]; then
+ daemon $program $DELAY
+ else
+ ddclient $DELAY
+ fi
echo
;;
stop)
# Stop daemon.
echo -n "Shutting down ddclient: "
- kill `ps -aef | awk '/[ \/]perl.*ddclient/ { print $2}'`
+ if [ -n "$PID" ] ; then
+ if [ "$system" = "fedora" ] || [ "$system" = "redhat" ]; then
+ killproc $program
+ else
+ kill $PID
+ fi
+ else
+ echo "ddclient is not running"
+ fi
echo
;;
restart)
@@ -32,15 +68,18 @@
$0 start
;;
status)
- pids=`ps -aef | awk '/[ \/]perl.*ddclient/ { print $2}'`
- if test "$pids"
- then
- for p in $pids
- do
- echo "$program (pid $p) is running"
- done
- else
- echo "$program is stopped"
+ if [ "$system" = "fedora" ] || [ "$system" = "redhat" ]; then
+ status $program
+ else
+ if test "$PID"
+ then
+ for p in $PID
+ do
+ echo "$program (pid $p) is running"
+ done
+ else
+ echo "$program is stopped"
+ fi
fi
;;
*)
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/sample-etc_rc.d_init.d_ddclient.lsb new/ddclient-3.7.0/sample-etc_rc.d_init.d_ddclient.lsb
--- old/ddclient-3.6.7/sample-etc_rc.d_init.d_ddclient.lsb 2005-07-04 08:33:19.000000000 +0200
+++ new/ddclient-3.7.0/sample-etc_rc.d_init.d_ddclient.lsb 2006-06-14 21:59:40.000000000 +0200
@@ -21,7 +21,7 @@
# can be used on many types of firewalls
### END INIT INFO
#
-# $Header: /cvsroot/ddclient/ddclient/sample-etc_rc.d_init.d_ddclient.lsb,v 1.2 2005/07/04 06:33:19 wimpunk Exp $
+# $Id: sample-etc_rc.d_init.d_ddclient.lsb 10 2006-06-14 19:59:31Z wimpunk $
#
###
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/ddclient-3.6.7/sample-etc_rc.d_init.d_ddclient.redhat new/ddclient-3.7.0/sample-etc_rc.d_init.d_ddclient.redhat
--- old/ddclient-3.6.7/sample-etc_rc.d_init.d_ddclient.redhat 2004-12-03 08:28:39.000000000 +0100
+++ new/ddclient-3.7.0/sample-etc_rc.d_init.d_ddclient.redhat 2006-06-14 21:59:40.000000000 +0200
@@ -1,5 +1,5 @@
#!/bin/sh
-#
+# $Id: sample-etc_rc.d_init.d_ddclient.redhat 10 2006-06-14 19:59:31Z wimpunk $
# ddclient This shell script takes care of starting and stopping
# ddclient.
#
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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 banshee
checked in at Wed Jun 28 18:45:11 CEST 2006.
--------
--- GNOME/banshee/banshee.changes 2006-06-26 12:16:41.000000000 +0200
+++ banshee/banshee.changes 2006-06-27 18:39:29.000000000 +0200
@@ -1,0 +2,5 @@
+Tue Jun 27 18:39:21 CEST 2006 - jpr(a)suse.de
+
+- Make sure all mp4 mime types are listed (#188200)
+
+-------------------------------------------------------------------
New:
----
banshee-desktop-mp4-support.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ banshee.spec ++++++
--- /var/tmp/diff_new_pack.ruTIT6/_old 2006-06-28 18:44:53.000000000 +0200
+++ /var/tmp/diff_new_pack.ruTIT6/_new 2006-06-28 18:44:53.000000000 +0200
@@ -26,7 +26,7 @@
PreReq: filesystem gconf2
Requires: mono-core
Version: 0.10.9
-Release: 47
+Release: 48
Source0: banshee-%{version}.tar.gz
Source1: gstreamer-xing-0.10.0.tar.gz
Source2: banshee-po.tar.bz2
@@ -44,6 +44,7 @@
Patch10: branding-build-03.diff
Patch11: %{name}-desktop-mp3-support.patch
Patch12: %{name}-startup-notify.patch
+Patch13: %{name}-desktop-mp4-support.patch
URL: http://banshee-project.org
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: A Music Player Based on Mono and GStreamer
@@ -168,6 +169,7 @@
%patch10
%patch11
%patch12
+%patch13
%build
autoreconf -f -i
@@ -310,6 +312,8 @@
%{prefix}/%{_lib}/banshee/Banshee.Plugins/Daap.dll*
%changelog -n banshee
+* Tue Jun 27 2006 - jpr(a)suse.de
+- Make sure all mp4 mime types are listed (#188200)
* Mon Jun 26 2006 - gekker(a)suse.de
- Update translations for zh_TW
* Thu Jun 22 2006 - gekker(a)suse.de
++++++ banshee-desktop-mp4-support.patch ++++++
--- data/banshee.desktop.in.in
+++ data/banshee.desktop.in.in
@@ -15,4 +15,4 @@
X-GNOME-Bugzilla-Component=General
X-GNOME-Bugzilla-Version=@VERSION@
X-SuSE-translate=true
-MimeType=audio/x-musepack;application/x-musepack;audio/musepack;application/musepack;application/x-ape;audio/ape;audio/x-ape;audio/x-musepack;application/x-musepack;audio/musepack;application/musepack;application/x-ape;audio/ape;audio/x-ape;audio/x-mp3;application/x-id3;audio/mpeg;audio/x-mpeg;audio/x-mpeg-3;audio/mpeg3;audio/mp3;audio/x-mp3;application/x-id3;audio/mpeg;audio/x-mpeg;audio/x-mpeg-3;audio/mpeg3;audio/mp3;audio/x-m4a;audio/x-m4a;audio/mpc;audio/x-mpc;audio/mp;audio/x-mp;audio/mpc;audio/x-mpc;audio/mp;audio/x-mp;application/ogg;application/x-ogg;application/x-vorbis+ogg;audio/x-vorbis+ogg;audio/vorbis;audio/x-vorbis;audio/ogg;audio/x-ogg;application/ogg;application/x-ogg;audio/vorbis;audio/x-vorbis;audio/ogg;audio/x-ogg;audio/x-flac;application/x-flac;audio/flac;audio/x-flac;application/x-flac;audio/flac;audio/x-s3m;audio/x-mod;audio/x-xm;audio/x-it;audio/x-s3m;audio/x-mod;audio/x-xm;audio/x-it
+MimeType=audio/x-musepack;application/x-musepack;audio/musepack;application/musepack;application/x-ape;audio/ape;audio/x-ape;audio/x-musepack;application/x-musepack;audio/musepack;application/musepack;application/x-ape;audio/ape;audio/x-ape;audio/x-mp3;application/x-id3;audio/mpeg;audio/x-mpeg;audio/x-mpeg-3;audio/mpeg3;audio/mp3;audio/x-mp3;application/x-id3;audio/mpeg;audio/x-mpeg;audio/x-mpeg-3;audio/mpeg3;audio/mp3;audio/mp4;audio/x-m4a;audio/x-m4a;audio/mpc;audio/x-mpc;audio/mp;audio/x-mp;audio/mpc;audio/x-mpc;audio/mp;audio/x-mp;application/ogg;application/x-ogg;application/x-vorbis+ogg;audio/x-vorbis+ogg;audio/vorbis;audio/x-vorbis;audio/ogg;audio/x-ogg;application/ogg;application/x-ogg;audio/vorbis;audio/x-vorbis;audio/ogg;audio/x-ogg;audio/x-flac;application/x-flac;audio/flac;audio/x-flac;application/x-flac;audio/flac;audio/x-s3m;audio/x-mod;audio/x-xm;audio/x-it;audio/x-s3m;audio/x-mod;audio/x-xm;audio/x-it
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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 NetworkManager
checked in at Wed Jun 28 18:43:22 CEST 2006.
--------
--- NetworkManager/NetworkManager.changes 2006-06-20 20:49:37.000000000 +0200
+++ NetworkManager/NetworkManager.changes 2006-06-28 17:02:12.000000000 +0200
@@ -1,0 +2,5 @@
+Wed Jun 28 17:02:05 CEST 2006 - rml(a)suse.de
+
+- Translation update
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ NetworkManager.spec ++++++
--- /var/tmp/diff_new_pack.PjNqzh/_old 2006-06-28 18:42:12.000000000 +0200
+++ /var/tmp/diff_new_pack.PjNqzh/_new 2006-06-28 18:42:12.000000000 +0200
@@ -31,7 +31,7 @@
URL: http://www.gnome.org/projects/NetworkManager/
Autoreqprov: on
Version: 0.6.2
-Release: 48
+Release: 49
Summary: Network Link Manager and User Applications
Source0: NetworkManager-%{version}.tar.gz
Source1: nm-icons.tar.gz
@@ -280,6 +280,8 @@
%{_libdir}/libnm_glib.so.0.0.0
%changelog -n NetworkManager
+* Wed Jun 28 2006 - rml(a)suse.de
+- Translation update
* Tue Jun 20 2006 - rml(a)suse.de
- Put wpa_supplicant into Ad-Hoc mode for all Ad-Hoc networks, not
just ones that NetworkManager itself creates (Novell bug #186806)
++++++ nm-po-update.patch ++++++
--- /var/tmp/diff_new_pack.PjNqzh/_old 2006-06-28 18:42:13.000000000 +0200
+++ /var/tmp/diff_new_pack.PjNqzh/_new 2006-06-28 18:42:13.000000000 +0200
@@ -1,6 +1,6 @@
Translation update
- po/ChangeLog | 24 +
+ po/ChangeLog | 28 +
po/bg.po | 605 +++++++++++++++++++++--------
po/bs.po | 955 +++++++++++++++++++++++++++++++++++++++++++---
po/ca.po | 509 ++++++++++++++++--------
@@ -36,9 +36,9 @@
po/uk.po | 1036 +++++++++++++++++++++++++++++++++++---------------
po/vi.po | 689 +++++++++++++++++++--------------
po/wa.po | 962 +++++++++++++++++++++++++++++++++++++++++++----
- po/zh_CN.po | 727 +++++++++++++++++++++++++----------
+ po/zh_CN.po | 729 +++++++++++++++++++++++++----------
po/zh_TW.po | 934 ++++++++++++++++++++++++++++++---------------
- 38 files changed, 23121 insertions(+), 6209 deletions(-)
+ 38 files changed, 23126 insertions(+), 6210 deletions(-)
diff -urN NetworkManager-0.6.2-tarball/po/bg.po NetworkManager/po/bg.po
--- NetworkManager-0.6.2-tarball/po/bg.po 2006-02-27 01:53:33.000000000 -0500
@@ -3137,8 +3137,12 @@
#~ "different wireless network will be used if any are available."
diff -urN NetworkManager-0.6.2-tarball/po/ChangeLog NetworkManager/po/ChangeLog
--- NetworkManager-0.6.2-tarball/po/ChangeLog 2006-03-02 06:59:30.000000000 -0500
-+++ NetworkManager/po/ChangeLog 2006-06-16 15:45:58.000000000 -0400
-@@ -1,3 +1,27 @@
++++ NetworkManager/po/ChangeLog 2006-06-28 10:59:49.000000000 -0400
+@@ -1,3 +1,31 @@
++2006-06-28 Robert Love <rml(a)novell.com>
++
++ * zh_CN.po: Update.
++
+2006-06-16 Robert Love <rml(a)novell.com>
+
+ * pl.po, es.po, ja.po: Update, for I am a polyglot.
@@ -5082,7 +5086,7 @@
+#~ "WEP 40/128-bit ASCII\n"
diff -urN NetworkManager-0.6.2-tarball/po/de.po NetworkManager/po/de.po
--- NetworkManager-0.6.2-tarball/po/de.po 2006-02-27 01:53:33.000000000 -0500
-+++ NetworkManager/po/de.po 2006-06-12 11:48:10.000000000 -0400
++++ NetworkManager/po/de.po 2006-06-12 11:47:57.000000000 -0400
@@ -10,432 +10,481 @@
msgstr ""
"Project-Id-Version: NetworkManager HEAD\n"
@@ -9750,7 +9754,7 @@
+#~ msgstr "%s"
diff -urN NetworkManager-0.6.2-tarball/po/es.po NetworkManager/po/es.po
--- NetworkManager-0.6.2-tarball/po/es.po 2006-02-27 01:53:33.000000000 -0500
-+++ NetworkManager/po/es.po 2006-06-16 15:45:23.000000000 -0400
++++ NetworkManager/po/es.po 2006-06-16 15:46:19.000000000 -0400
@@ -10,90 +10,86 @@
msgstr ""
"Project-Id-Version: NetworkManager.HEAD\n"
@@ -11569,7 +11573,7 @@
diff -urN NetworkManager-0.6.2-tarball/po/fr.po NetworkManager/po/fr.po
--- NetworkManager-0.6.2-tarball/po/fr.po 2005-02-18 13:15:53.000000000 -0500
-+++ NetworkManager/po/fr.po 2006-06-12 11:48:10.000000000 -0400
++++ NetworkManager/po/fr.po 2006-06-12 11:47:57.000000000 -0400
@@ -8,259 +8,1027 @@
msgstr ""
"Project-Id-Version: NetworkManager 0.3.3\n"
@@ -15915,7 +15919,7 @@
+
diff -urN NetworkManager-0.6.2-tarball/po/it.po NetworkManager/po/it.po
--- NetworkManager-0.6.2-tarball/po/it.po 2005-02-27 12:50:52.000000000 -0500
-+++ NetworkManager/po/it.po 2006-06-12 11:48:10.000000000 -0400
++++ NetworkManager/po/it.po 2006-06-12 11:47:57.000000000 -0400
@@ -7,275 +7,1080 @@
msgstr ""
"Project-Id-Version: NetworkManager 0.1\n"
@@ -17188,7 +17192,7 @@
+#~ msgstr "Rete cablata"
diff -urN NetworkManager-0.6.2-tarball/po/ja.po NetworkManager/po/ja.po
--- NetworkManager-0.6.2-tarball/po/ja.po 2005-02-18 13:15:53.000000000 -0500
-+++ NetworkManager/po/ja.po 2006-06-16 15:45:23.000000000 -0400
++++ NetworkManager/po/ja.po 2006-06-16 15:46:19.000000000 -0400
@@ -7,213 +7,979 @@
msgstr ""
"Project-Id-Version: NetworkManager 0.3.1\n"
@@ -25629,7 +25633,7 @@
+#~ msgstr "ਤਾਰ ਨੈੱਟਵਰਕ"
diff -urN NetworkManager-0.6.2-tarball/po/pl.po NetworkManager/po/pl.po
--- NetworkManager-0.6.2-tarball/po/pl.po 1969-12-31 19:00:00.000000000 -0500
-+++ NetworkManager/po/pl.po 2006-06-16 15:45:23.000000000 -0400
++++ NetworkManager/po/pl.po 2006-06-16 15:46:19.000000000 -0400
@@ -0,0 +1,891 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
@@ -26524,7 +26528,7 @@
+
diff -urN NetworkManager-0.6.2-tarball/po/pt_BR.po NetworkManager/po/pt_BR.po
--- NetworkManager-0.6.2-tarball/po/pt_BR.po 2006-03-01 22:12:18.000000000 -0500
-+++ NetworkManager/po/pt_BR.po 2006-06-12 11:48:10.000000000 -0400
++++ NetworkManager/po/pt_BR.po 2006-06-12 11:47:57.000000000 -0400
@@ -7,26 +7,26 @@
msgstr ""
"Project-Id-Version: NetworkManager\n"
@@ -38599,7 +38603,7 @@
#~ "Confirmation</span>\n"
diff -urN NetworkManager-0.6.2-tarball/po/zh_CN.po NetworkManager/po/zh_CN.po
--- NetworkManager-0.6.2-tarball/po/zh_CN.po 2006-02-27 01:53:33.000000000 -0500
-+++ NetworkManager/po/zh_CN.po 2006-05-29 12:58:09.000000000 -0400
++++ NetworkManager/po/zh_CN.po 2006-06-28 10:59:01.000000000 -0400
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: NetworkManager\n"
@@ -38860,7 +38864,8 @@
-#: ../gnome/applet/applet.c:1098
+#: ../gnome/applet/applet.c:1097
msgid "Connected to an Ad-Hoc wireless network"
- msgstr "已连接到 Ad-Hoc 无线网络"
+-msgstr "已连接到 Ad-Hoc 无线网络"
++msgstr "已连接到点对点无线网络"
-#: ../gnome/applet/applet.c:1100
+#: ../gnome/applet/applet.c:1099
@@ -39743,7 +39748,7 @@
+#~ msgstr "密钥类型(_K):"
diff -urN NetworkManager-0.6.2-tarball/po/zh_TW.po NetworkManager/po/zh_TW.po
--- NetworkManager-0.6.2-tarball/po/zh_TW.po 2006-02-27 01:53:33.000000000 -0500
-+++ NetworkManager/po/zh_TW.po 2006-06-12 11:48:10.000000000 -0400
++++ NetworkManager/po/zh_TW.po 2006-06-12 11:47:57.000000000 -0400
@@ -7,400 +7,456 @@
msgstr ""
"Project-Id-Version: Network Manager\n"
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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 HLaTeX
checked in at Wed Jun 28 18:41:36 CEST 2006.
--------
--- HLaTeX/HLaTeX.changes 2006-02-28 13:01:47.000000000 +0100
+++ HLaTeX/HLaTeX.changes 2006-06-28 12:29:01.000000000 +0200
@@ -1,0 +2,7 @@
+Wed Jun 28 12:27:44 CEST 2006 - mfabian(a)suse.de
+
+- Bugzilla #188118: use 1.999 instead of 2.0 as argument for
+ ExtendFont, if 2.0 is used one gets a warning that it is too
+ big.
+
+-------------------------------------------------------------------
New:
----
bugzilla-188118-too-big-value-of-extendfont.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ HLaTeX.spec ++++++
--- /var/tmp/diff_new_pack.472Rxg/_old 2006-06-28 18:41:17.000000000 +0200
+++ /var/tmp/diff_new_pack.472Rxg/_new 2006-06-28 18:41:17.000000000 +0200
@@ -20,10 +20,11 @@
Provides: locale(te_latex:ko)
Summary: LaTeX Korean support
Version: 0.991
-Release: 869
+Release: 879
Source0: HLaTeX-%{version}.tar.bz2
Source1: HLaTeX.Makefile
Patch0: hlatex_0.991-1.1.diff.gz
+Patch1: bugzilla-188118-too-big-value-of-extendfont.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@@ -43,6 +44,7 @@
%prep
%setup -c -n HLaTeX
%patch0 -p1
+%patch1 -p1
cp %{SOURCE1} ./makefile
%install
@@ -76,6 +78,10 @@
/var/lib/texmf/fonts/map/dvips/updmap
%changelog -n HLaTeX
+* Wed Jun 28 2006 - mfabian(a)suse.de
+- Bugzilla #188118: use 1.999 instead of 2.0 as argument for
+ ExtendFont, if 2.0 is used one gets a warning that it is too
+ big.
* Tue Feb 28 2006 - mfabian(a)suse.de
- add "Provides: locale(te_latex:ko)".
* Wed Jan 25 2006 - mls(a)suse.de
++++++ bugzilla-188118-too-big-value-of-extendfont.patch ++++++
++++ 2408 lines (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 yast2-trans-sk
checked in at Wed Jun 28 18:25:20 CEST 2006.
--------
--- yast2-trans-sk/yast2-trans-sk.changes 2006-06-19 18:46:53.000000000 +0200
+++ yast2-trans-sk/yast2-trans-sk.changes 2006-06-28 16:25:53.000000000 +0200
@@ -1,0 +2,5 @@
+Wed Jun 28 16:25:28 2006 - ke(a)suse.de
+
+- Update to version 2.13.11.
+
+------------------------------------------------------------------------
Old:
----
yast2-trans-sk-2.13.10.tar.bz2
New:
----
yast2-trans-sk-2.13.11.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-trans-sk.spec ++++++
--- /var/tmp/diff_new_pack.E2bf0f/_old 2006-06-28 18:25:13.000000000 +0200
+++ /var/tmp/diff_new_pack.E2bf0f/_new 2006-06-28 18:25:13.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-trans-sk (Version 2.13.10)
+# spec file for package yast2-trans-sk (Version 2.13.11)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
# norootforbuild
Name: yast2-trans-sk
-Version: 2.13.10
+Version: 2.13.11
Release: 1
License: GPL
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-trans-sk-2.13.10.tar.bz2
+Source0: yast2-trans-sk-2.13.11.tar.bz2
prefix: /usr
Provides: locale(yast2:sk)
BuildRequires: pkgconfig yast2-devtools
@@ -31,7 +31,7 @@
YaST2 - Slovak Translations
%prep
-%setup -n yast2-trans-sk-2.13.10
+%setup -n yast2-trans-sk-2.13.11
%build
autoreconf --force --install
@@ -63,6 +63,8 @@
/usr/share/YaST2/locale
%changelog -n yast2-trans-sk
+* Wed Jun 28 2006 - ke(a)suse.de
+- Update to version 2.13.11.
* Mon Jun 19 2006 - ke(a)suse.de
- Update to version 2.13.10.
* Fri Jun 16 2006 - ke(a)suse.de
++++++ yast2-trans-sk-2.13.10.tar.bz2 -> yast2-trans-sk-2.13.11.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-sk-2.13.10/VERSION new/yast2-trans-sk-2.13.11/VERSION
--- old/yast2-trans-sk-2.13.10/VERSION 2006-06-19 18:46:27.000000000 +0200
+++ new/yast2-trans-sk-2.13.11/VERSION 2006-06-28 16:25:28.000000000 +0200
@@ -1 +1 @@
-2.13.10
+2.13.11
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-sk-2.13.10/configure new/yast2-trans-sk-2.13.11/configure
--- old/yast2-trans-sk-2.13.10/configure 2006-06-19 18:46:34.000000000 +0200
+++ new/yast2-trans-sk-2.13.11/configure 2006-06-28 16:25:36.000000000 +0200
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.59 for yast2-trans-sk 2.13.10.
+# Generated by GNU Autoconf 2.59 for yast2-trans-sk 2.13.11.
#
# Report bugs to <http://bugs.opensuse.org/>.
#
@@ -269,8 +269,8 @@
# Identity of this package.
PACKAGE_NAME='yast2-trans-sk'
PACKAGE_TARNAME='yast2-trans-sk'
-PACKAGE_VERSION='2.13.10'
-PACKAGE_STRING='yast2-trans-sk 2.13.10'
+PACKAGE_VERSION='2.13.11'
+PACKAGE_STRING='yast2-trans-sk 2.13.11'
PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
ac_unique_file="RPMNAME"
@@ -728,7 +728,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-sk 2.13.10 to adapt to many kinds of systems.
+\`configure' configures yast2-trans-sk 2.13.11 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -795,7 +795,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of yast2-trans-sk 2.13.10:";;
+ short | recursive ) echo "Configuration of yast2-trans-sk 2.13.11:";;
esac
cat <<\_ACEOF
@@ -910,7 +910,7 @@
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
-yast2-trans-sk configure 2.13.10
+yast2-trans-sk configure 2.13.11
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
@@ -924,7 +924,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-sk $as_me 2.13.10, which was
+It was created by yast2-trans-sk $as_me 2.13.11, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
@@ -1654,7 +1654,7 @@
# Define the identity of the package.
PACKAGE='yast2-trans-sk'
- VERSION='2.13.10'
+ VERSION='2.13.11'
cat >>confdefs.h <<_ACEOF
@@ -1865,7 +1865,7 @@
-VERSION="2.13.10"
+VERSION="2.13.11"
RPMNAME="yast2-trans-sk"
MAINTAINER="Karl Eichwalder <ke(a)suse.de>"
@@ -2761,7 +2761,7 @@
} >&5
cat >&5 <<_CSEOF
-This file was extended by yast2-trans-sk $as_me 2.13.10, which was
+This file was extended by yast2-trans-sk $as_me 2.13.11, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -2816,7 +2816,7 @@
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
-yast2-trans-sk config.status 2.13.10
+yast2-trans-sk config.status 2.13.11
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-sk-2.13.10/configure.in new/yast2-trans-sk-2.13.11/configure.in
--- old/yast2-trans-sk-2.13.10/configure.in 2006-06-19 18:46:31.000000000 +0200
+++ new/yast2-trans-sk-2.13.11/configure.in 2006-06-28 16:25:32.000000000 +0200
@@ -3,7 +3,7 @@
dnl -- This file is generated by y2autoconf 2.13.18 - DO NOT EDIT! --
dnl (edit configure.in.in instead)
-AC_INIT(yast2-trans-sk, 2.13.10, http://bugs.opensuse.org/, yast2-trans-sk)
+AC_INIT(yast2-trans-sk, 2.13.11, http://bugs.opensuse.org/, yast2-trans-sk)
dnl Check for presence of file 'RPMNAME'
AC_CONFIG_SRCDIR([RPMNAME])
@@ -17,7 +17,7 @@
AM_INIT_AUTOMAKE(tar-ustar) dnl searches for some needed programs
dnl Important YaST2 variables
-VERSION="2.13.10"
+VERSION="2.13.11"
RPMNAME="yast2-trans-sk"
MAINTAINER="Karl Eichwalder <ke(a)suse.de>"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-sk-2.13.10/po/found.sk.po new/yast2-trans-sk-2.13.11/po/found.sk.po
--- old/yast2-trans-sk-2.13.10/po/found.sk.po 2006-06-16 17:08:22.000000000 +0200
+++ new/yast2-trans-sk-2.13.11/po/found.sk.po 2006-06-28 16:21:52.000000000 +0200
@@ -4554,6 +4554,11 @@
"\t\t With the context menu, you can also change the status of all items.\n"
"\t\t </p>"
msgstr ""
+"<p>\n"
+"\t\t Stav položky zmeníte kliknutím na jej stavovú ikonu\n"
+"\t\t alebo kliknite pravým tlačidlom na akúkoľvek ikonu pre kontextové menu.\n"
+"\t\t Cez kontextové menu môžete zmeniť stav všetkých položiek.\n"
+"\t\t </p>"
#: src/clients/inst_packages.ycp:80
msgid ""
@@ -4562,6 +4567,10 @@
"\t\t where you can view and select individual software packages.\n"
"\t\t </p>"
msgstr ""
+"<p>\n"
+"\t\t <b>Detaily</b> otvorí podrobný výber softvérových balíkov\n"
+"\t\t kde môžete vidieť a voliť jednotlivé softvérové balíky po jednom.\n"
+"\t\t </p>"
#: src/clients/inst_packages.ycp:84
msgid ""
@@ -4573,6 +4582,13 @@
"\t\t The system needs some available disk space to run properly.\n"
"\t\t </p>"
msgstr ""
+"<p>\n"
+"\t\t <b>Využitie disku </b> zobrazuje v ľavom dolnom rohu koľko voľného miesta\n"
+"\t\t ostáva po vykonaní všetkých požadovaných zmien.\n"
+"\t\t Diskové partície, ktoré sú takmer alebo celkom zaplnené môžu znížiť\n"
+"\t\t výkon systému a v niektorých prípadoch môžu spôsobiť aj vážne problémy.\n"
+"\t\t Systém potrebuje mať nejaké voľné miesto na disku, aby mohol fungovať správne.\n"
+"\t\t </p>"
#. summary string
#: src/clients/add-on_proposal.ycp:36
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-sk-2.13.10/po/packager.sk.po new/yast2-trans-sk-2.13.11/po/packager.sk.po
--- old/yast2-trans-sk-2.13.10/po/packager.sk.po 2006-06-16 10:25:45.000000000 +0200
+++ new/yast2-trans-sk-2.13.11/po/packager.sk.po 2006-06-28 16:22:15.000000000 +0200
@@ -14,13 +14,13 @@
"Project-Id-Version: packager.sk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-05-24 15:49+0200\n"
-"PO-Revision-Date: 2006-06-15 14:53+0200\n"
-"Last-Translator: Stanislav Visnovsky <visnovsky(a)nenya.ms.mff.cuni.cz>\n"
+"PO-Revision-Date: 2006-06-27 21:39+0100\n"
+"Last-Translator: Ladislav Michnovič <lmichnovic(a)suse.cz>\n"
"Language-Team: Slovak <sk-i18n(a)linux.sk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: KBabel 1.11.2\n"
#. module description
@@ -51,7 +51,7 @@
#. text entry
#: src/clients/dirinstall_options.ycp:34
msgid "Ima&ge Name:"
-msgstr "͆&Meno obrazu:"
+msgstr "&Meno obrazu:"
#. text entry
#: src/clients/dirinstall_options.ycp:38
@@ -68,7 +68,7 @@
msgid ""
"<p>Choose a directory to which to install. Depending on the software selection, make sure\n"
"enough space is available.</p>\n"
-msgstr "<p>Vyberte priečinok, kam sa má inštalovať. V závislosti na výbere software musíte zaistiť dostatok miesta na disku.</p>\n"
+msgstr "<p>Vyberte priečinok, kam sa má inštalovať. V závislosti na výbere softvéru musíte zaistiť dostatok miesta na disku.</p>\n"
#. help text for dirinstall options 2/2
#: src/clients/dirinstall_options.ycp:54
@@ -125,6 +125,7 @@
"ktoré používa Kontact pre poštu a Konqueror pre prehliadanie\n"
"webu a správu súborov."
+# hue
#. help text 1/3
#: src/clients/inst_desktop.ycp:88
msgid ""
@@ -133,6 +134,10 @@
"and attractive graphical interfaces with their\n"
"own sets of perfectly integrated applications.</p>"
msgstr ""
+"<p>Obe pracovné prostredia <b>KDE</b> aj <b>GNOME</b> sú\n"
+"silné a intuitívne. Kombinujú jednoduchosť použitia\n"
+"a sú atraktívne svojím grafickým rozhraním a ich\n"
+"vlastným súborom dokonale zaintegrovaných aplikácií.</p>"
#. help text 2/3
#: src/clients/inst_desktop.ycp:94
@@ -142,6 +147,10 @@
"most important desktop applications on your\n"
"system.</p>"
msgstr ""
+"<p> Výberom <b>GNOME</b> alebo <b>KDE</b> ako predvoleného\n"
+"pracovného prostredia nainštalujete aj široký súbor\n"
+"najdôležitejších desktopových aplikácií na Váš\n"
+"systém.</p>"
#. help text 3/3
#: src/clients/inst_desktop.ycp:100
@@ -150,6 +159,9 @@
"an alternative, such as a text-only system or a minimal graphical\n"
"system with a basic window manager.</p>"
msgstr ""
+"<p>Vyberte si <b>Iné</b> a potom stlačte <b>Vybrať</b> aby ste zvolili\n"
+"aternatívu, buď iba textový režim alebo minimalistický grafický\n"
+"systém so základným manažérom okien.</p>"
#. radio button
#: src/clients/inst_desktop.ycp:107
@@ -323,6 +335,11 @@
"\t\t With the context menu, you can also change the status of all items.\n"
"\t\t </p>"
msgstr ""
+"<p>\n"
+"\t\t Stav položky zmeníte kliknutím na jej stavovú ikonu\n"
+"\t\t alebo kliknite pravým tlačidlom na akúkoľvek ikonu pre kontextové menu.\n"
+"\t\t Cez kontextové menu môžete zmeniť stav všetkých položiek.\n"
+"\t\t </p>"
#: src/clients/inst_packages.ycp:80
msgid ""
@@ -331,6 +348,10 @@
"\t\t where you can view and select individual software packages.\n"
"\t\t </p>"
msgstr ""
+"<p>\n"
+"\t\t <b>Detaily</b> otvorí podrobný výber softvérových balíkov\n"
+"\t\t kde môžete vidieť a voliť jednotlivé softvérové balíky po jednom.\n"
+"\t\t </p>"
#: src/clients/inst_packages.ycp:84
msgid ""
@@ -342,6 +363,13 @@
"\t\t The system needs some available disk space to run properly.\n"
"\t\t </p>"
msgstr ""
+"<p>\n"
+"\t\t <b>Využitie disku </b> zobrazuje v ľavom dolnom rohu koľko voľného miesta\n"
+"\t\t ostáva po vykonaní všetkých požadovaných zmien.\n"
+"\t\t Diskové partície, ktoré sú takmer alebo celkom zaplnené môžu znížiť\n"
+"\t\t výkon systému a v niektorých prípadoch môžu spôsobiť aj vážne problémy.\n"
+"\t\t Systém potrebuje mať nejaké voľné miesto na disku, aby mohol fungovať správne.\n"
+"\t\t </p>"
# workflow: "Software-Auswahl"
# -ke-
@@ -426,7 +454,7 @@
"from the source CD to the disk cache"
msgstr ""
"Chyba pri kopírovaní balíkov zo zdrojového CD\n"
-"do diskovej pamäte"
+"do diskovej medzipamäte."
#. error report
#: src/clients/inst_rpmcopy.ycp:489
@@ -455,7 +483,7 @@
#: src/clients/inst_selections.ycp:172
#: src/clients/inst_sw_selection_select.ycp:75
msgid "Software Selection"
-msgstr "Výber Software"
+msgstr "Výber Softvéru"
#. Intermediate contents of the software selection screen
#. Notes for maintainer:
@@ -486,27 +514,25 @@
"</p>"
msgstr ""
"<p>\n"
-"Štandardný systém &product; je vhodný výber\n"
+"&product; - štandardný systém je vhodný výber\n"
"pre väčšinu používateľov.\n"
"</p>"
#. help text, continued
#: src/clients/inst_selections.ycp:89
-#, fuzzy
msgid ""
"<p>You will not need to insert all of the media that\n"
"come with &product; for this selection. Additional software from the\n"
"other media can always be installed later.\n"
"</p>"
msgstr ""
-"<p>\n"
-"Pri jeho inštalácii nebudete potrebovať všetky CD &product;.\n"
-"Ďalšie programy môžete pridať kedykoľvek neskôr.\n"
-"</p>\n"
+"<p>Nebudete musieť použiť všetky médiá systému &product;\n"
+"pre tento výber. Ďalšie programy, ktoré sú na ostatných médiách\n"
+"môžete pridať kedykoľvek neskôr.\n"
+"</p>"
#. help text, continued
#: src/clients/inst_selections.ycp:95
-#, fuzzy
msgid ""
"<p>\n"
"The <b>Minimal</b> system includes just the bare essentials needed\n"
@@ -519,16 +545,15 @@
msgstr ""
"<p>\n"
"<b>Minimálna</b> inštalácia obsahuje iba balíky ktoré sú nevyhnutné\n"
-"k bezpečnému behu systému &product;.\n"
-"Táto voľba neobsahuje <b><i>žiadne grafické prostredie</i></b>, \n"
-"žiadne X11, ani KDE, ani GNOME atď.\n"
-"Začnite touto voľbou, ak chcete urobiť výber balíkov sám alebo\n"
-"ak máte nedostatok pamäti či miesta.\n"
+"k bezpečnému behu systému &product;. Táto voľba neobsahuje \n"
+"<b><i>žiadne grafické prostredie</i></b>, žiadne X11, ani KDE, ani GNOME apod.\n"
+"Začnite touto voľbou, ak chcete urobiť vlastný výber balíkov pre server, \n"
+"ktorý nepotrebuje grafické prostredie alebo\n"
+"ak máte nedostatok pamäte či miesta na disku.\n"
"</p>\n"
#. help text, continued
#: src/clients/inst_selections.ycp:106
-#, fuzzy
msgid ""
"<p>\n"
"With the <b>Minimum graphical system</b>, install the &product;\n"
@@ -539,8 +564,7 @@
"<p>\n"
"Výberom položky <b>Minimálny grafický systém</b> získate základný\n"
"systém &product; a všetky balíky požadované pre X11, grafické rozhranie.\n"
-"Potom budete môcť pracovať s jednoduchým grafickým prostredím.\n"
-"</p>\n"
+"Potom budete môcť pracovať v jednoduchom grafickom prostredí. </p>"
#. help text, continued, optional
#: src/clients/inst_selections.ycp:115
@@ -560,7 +584,7 @@
#: src/clients/inst_sw_selection_select.ycp:231
#: src/clients/software_proposal.ycp:122
msgid "Software"
-msgstr "Software"
+msgstr "Softvér"
#. dialog caption
#: src/clients/inst_source.ycp:35
@@ -589,9 +613,8 @@
#. label
#: src/clients/inst_source.ycp:107 src/modules/SourceManager.ycp:463
-#, fuzzy
msgid "Adding catalog..."
-msgstr "Pridávam nájdené balíky..."
+msgstr "Pridávam katalóg..."
#. message part 1
#: src/clients/inst_source.ycp:116
@@ -605,9 +628,8 @@
#. message part 2 alt. 1
#: src/clients/inst_source.ycp:123 src/modules/SourceManager.ycp:482
-#, fuzzy
msgid "A catalog for this product already exists."
-msgstr "Zdroj pre tento produkt už existuje."
+msgstr "Katalóg pre tento produkt už existuje."
#. message part 2 alt. 2 followed by description
#. popup message part 2 followed by other info
@@ -622,9 +644,8 @@
#. end of popup message, question
#: src/clients/inst_source.ycp:129 src/clients/inst_source.ycp:527
#: src/modules/SourceManager.ycp:203 src/modules/SourceManager.ycp:487
-#, fuzzy
msgid "Try again?"
-msgstr "Skúsiť znovu"
+msgstr "Skúsiť znovu?"
# continue-back popup
#. continue-back popup
@@ -647,6 +668,8 @@
"Source synchronization with ZMD failed.\n"
"Save changes anyway?"
msgstr ""
+"Synchronizácia zdroja so ZMD zlyhala.\n"
+"Chcete napriek tomu uložiť zmeny?"
#. pusg button
#: src/clients/inst_source.ycp:235
@@ -681,7 +704,7 @@
#. push button
#: src/clients/inst_source.ycp:247
msgid "Refre&sh On or Off"
-msgstr ""
+msgstr "O&bnovovanie Zapnuté alebo Vypnuté"
#. table header
#. progress bar label
@@ -692,9 +715,8 @@
#. table header
#: src/clients/inst_source.ycp:256
-#, fuzzy
msgid "Refresh"
-msgstr "&Aktualizovať"
+msgstr "Obnoviť"
#. table header
#: src/clients/inst_source.ycp:260 src/clients/inst_source.ycp:428
@@ -708,9 +730,8 @@
#. menunutton item
#: src/clients/inst_source.ycp:270
-#, fuzzy
msgid "&Scan Using SLP..."
-msgstr "Ukladám nastavenie..."
+msgstr "O&skenovať pomocou SLP..."
#. menunutton item
#: src/clients/inst_source.ycp:272
@@ -724,9 +745,8 @@
#. menunutton item
#: src/clients/inst_source.ycp:276
-#, fuzzy
msgid "HTT&PS..."
-msgstr "&HTTP..."
+msgstr "HTT&PS..."
# tree node string (System Management BIOS)
#. menunutton item
@@ -768,7 +788,7 @@
#. dialog caption
#: src/clients/inst_source.ycp:312
msgid "Media Containing the Software Catalog"
-msgstr ""
+msgstr "Médium, ktoré obsahuje katalóg softvéru"
#. help
#: src/clients/inst_source.ycp:315
@@ -779,7 +799,7 @@
"</p>\n"
msgstr ""
"<p>\n"
-"Softwarové balíky je možné nainštalovať z CD, po sieti\n"
+"Balíky so softvérom je možné nainštalovať z CD, po sieti\n"
"alebo z pevného disku.\n"
"</p>\n"
@@ -846,24 +866,23 @@
"There were errors when restoring the source configuration.\n"
"Not all sources are available for configuration.\n"
msgstr ""
+"Vyskytli sa chyby pri zotavení konfigurácie zdrojov.\n"
+"Niektoré zdroje sú pre konfiguráciu nedostupné.\n"
# radio button
#. translators: popup busy message
#: src/clients/inst_source.ycp:398
-#, fuzzy
msgid "Scanning network..."
-msgstr "Skenovanie cez sieť"
+msgstr "Skenujem sieť..."
#: src/clients/inst_source.ycp:406
-#, fuzzy
msgid "No SLP catalogs found."
-msgstr "Nenájdené žiadne oddiely."
+msgstr "Nenašli sa žiadne SLP katalógy."
#. translators: popup heading
#: src/clients/inst_source.ycp:425
-#, fuzzy
msgid "Choose SLP Catalog"
-msgstr "&Vyberte zdroje:"
+msgstr "Vyberte SLP Katalóg"
#. translators: table header
#: src/clients/inst_source.ycp:428
@@ -880,25 +899,22 @@
# menubutton item
#. popup headline
#: src/clients/inst_source.ycp:539
-#, fuzzy
msgid "Abort Catalog Configuration"
-msgstr "Ukončujem konfiguráciu firewallu"
+msgstr "Zrušiť konfiguráciu katalógu"
#. popup message
#: src/clients/inst_source.ycp:541
-#, fuzzy
msgid ""
"Abort the catalog configuration?\n"
"All changes will be lost."
msgstr ""
-"Prerušiť nastavenie inštalačného zdroja?\n"
+"Prerušiť konfiguráciu katalógu?\n"
"Všetky zmeny budú zahodené."
#. yes-no popup
#: src/clients/inst_source.ycp:597
-#, fuzzy
msgid "Delete the selected catalog from the list?"
-msgstr "Odstrániť vybraný inštalačný zdroj zo zoznamu?"
+msgstr "Odstrániť vybraný katalóg zo zoznamu?"
#. popup message
#: src/clients/inst_source.ycp:623
@@ -906,6 +922,8 @@
"For the selected source, refresh\n"
"cannot be set."
msgstr ""
+"Pre zvolený zdroj, obnovenie\n"
+"nie je možné nastaviť."
#. Help text Software Selection dialog
#. Explain selectable system configurations but beware:
@@ -960,11 +978,11 @@
msgstr ""
"<p>\n"
"<b>Minimálna</b> inštalácia obsahuje iba balíky ktoré sú nevyhnutné\n"
-"k bezpečnému behu systému &product;.\n"
-"Táto voľba neobsahuje <b><i>žiadne grafické prostredie</i></b>, \n"
-"žiadne X11, ani KDE, ani GNOME atď.\n"
-"Začnite touto voľbou, ak chcete urobiť výber balíkov sám alebo\n"
-"ak máte nedostatok pamäti či miesta.\n"
+"k bezpečnému behu systému &product;.Táto voľba neobsahuje\n"
+"<b><i>žiadne grafické prostredie</i></b>, žiadne X11, ani KDE, ani GNOME apod.\n"
+"Začnite touto voľbou, ak chcete urobiť vlastný výber balíkov pre server, \n"
+"ktorý nepotrebuje grafické prostredie alebo\n"
+"ak máte nedostatok pamäte či miesta na disku.\n"
"</p>\n"
#. help text, continued
@@ -998,7 +1016,7 @@
#. Intermediate contents of the software selection screen
#: src/clients/inst_sw_selection_select.ycp:141
msgid "This product has a fixed software selection that cannot be changed."
-msgstr "Tento produkt má pevný výber software, ktorý nie je možné zmeniť."
+msgstr "Tento produkt má pevný výber softvéru, ktorý nie je možné zmeniť."
#. Intermediate contents of the software selection screen
#: src/clients/inst_sw_selection_select.ycp:152
@@ -1012,7 +1030,7 @@
"You have already chosen software from \"Detailed selection\".\n"
"You will lose that selection if you change the basic selection."
msgstr ""
-"Vybrali ste software cez \"Podrobný výber\".\n"
+"Vybrali ste softvér cez \"Podrobný výber\".\n"
"Stratíte váš výber ak zmeníte základný výber."
#. Push button that will pop up the detailed
@@ -1061,19 +1079,18 @@
#: src/clients/software_proposal.ycp:69
#: src/clients/software_simple_proposal.ycp:36
msgid "The software proposal is reset to default values."
-msgstr "Návrh software bol vrátený na štandardné hodnoty."
+msgstr "Návrh softvéru bol vrátený na štandardné hodnoty."
#. warning text
#: src/clients/software_proposal.ycp:77
#: src/clients/software_simple_proposal.ycp:44
-#, fuzzy
msgid "Cannot solve dependencies automatically. Manual intervention is required."
-msgstr "Nepodarilo sa vyriešiť závislosti automaticky. Je potrebný ručný zásah"
+msgstr "Nie je možné vyriešiť závislosti automaticky. Je potrebný ručný zásah."
#. this is a menu entry
#: src/clients/software_proposal.ycp:124
msgid "&Software"
-msgstr "&Software"
+msgstr "&Softvér"
#. error popup, %1 is the name of the .rpm package
#: src/clients/sw_single.ycp:127 src/modules/PackageCallbacks.ycp:188
@@ -1083,33 +1100,30 @@
#. label of popup
#: src/clients/sw_single.ycp:163
-#, fuzzy
msgid "Reading package information..."
-msgstr "Ukladám informácie karty..."
+msgstr "Čítam informácie o balíku..."
#: src/clients/sw_single.ycp:170
-#, fuzzy
msgid "There was an error in installation source initialization."
-msgstr "Nepodarilo sa uložiť zmeny v nastavení inštalačného zdroja."
+msgstr "Pri inicializácii inštalačného zdroja došlo k chybe."
#: src/clients/sw_single.ycp:175
-#, fuzzy
msgid ""
"No installation source is defined.\n"
"Only installed packages are displayed."
-msgstr "Nová inštalácia neskontrolovaných balíkov bola preskočená."
+msgstr ""
+"Nie je definovaný žiaden inštalačný zdroj.\n"
+"Zobrazené sú iba nainštalované balíky."
#: src/clients/sw_single.ycp:233
-#, fuzzy
msgid ""
"During the last package installation,\n"
"several package failed to install.\n"
"Install them now?\n"
msgstr ""
-"Pre vybranú funkciu sú potrebné tieto balíky:\n"
-"%1\n"
-"\n"
-"Chcete ich nainštalovať?"
+"Počas inštalácie posledného balíka,\n"
+"zlyhala inštalácia niekoľkých ďalších balíkov.\n"
+"Chcete ich nainštalovať teraz?\n"
#. error report, %1 is a list of packages
#: src/clients/sw_single.ycp:267
@@ -1123,9 +1137,8 @@
#. Popup dialog contents
#: src/clients/sw_single.ycp:323
-#, fuzzy
msgid "Install or remove more packages?"
-msgstr "Inštalovať ďalšie balíky?"
+msgstr "Inštalovať resp. odinštalovať ďalšie balíky?"
#: src/config/dirinstall.glade:16
msgid "Directory Installation"
@@ -1194,9 +1207,8 @@
#. result of the check - it has failed
#: src/include/checkmedia/ui.ycp:102
-#, fuzzy
msgid "FAILED"
-msgstr " -- ZLYHANIE"
+msgstr " ZLYHALO"
#. warning popup - the CD/DVD drive doesn't contain the first medium (CD1/DVD1)
#: src/include/checkmedia/ui.ycp:254
@@ -1324,21 +1336,18 @@
#. radio button
#: src/include/inst_source_dialogs.ycp:70
-#, fuzzy
msgid "A&nonymous"
-msgstr "Anonymný"
+msgstr "A&nonymný"
#. radio button
#: src/include/inst_source_dialogs.ycp:72
-#, fuzzy
msgid "&Account"
-msgstr "Účet"
+msgstr "Úč&et"
#. text entry
#: src/include/inst_source_dialogs.ycp:76
-#, fuzzy
msgid "User&name"
-msgstr "&Používateľské meno"
+msgstr "Používateľské me&no"
#. text entry
#. password entry
@@ -1381,25 +1390,22 @@
#. label
#: src/include/inst_source_dialogs.ycp:167
-#, fuzzy
msgid "NFS Server Source"
-msgstr "Server NFS"
+msgstr "Zdroj server NFS"
#. text entry
#: src/include/inst_source_dialogs.ycp:171
#: src/include/inst_source_dialogs.ycp:336
#: src/include/inst_source_dialogs.ycp:510
-#, fuzzy
msgid "&Path to Directory or ISO Image"
-msgstr "&Cesta k vygenerovanému adresárovému stromu:"
+msgstr "&Cesta k priečinku alebo k ISO obrazu"
#. checkbox label
#: src/include/inst_source_dialogs.ycp:173
#: src/include/inst_source_dialogs.ycp:338
#: src/include/inst_source_dialogs.ycp:518
-#, fuzzy
msgid "ISO Image"
-msgstr "&Súbor obrazu ISO:"
+msgstr "Súbor obrazu ISO"
#. label
#: src/include/inst_source_dialogs.ycp:221
@@ -1408,16 +1414,14 @@
#. radio button
#: src/include/inst_source_dialogs.ycp:225
-#, fuzzy
msgid "&CD-ROM"
-msgstr "CD-ROM"
+msgstr "&CD-ROM"
#. `Left( `RadioButton( `id( `cd1 ), "/dev/cdrom1" ) ),
#. radio button
#: src/include/inst_source_dialogs.ycp:228
-#, fuzzy
msgid "&DVD-ROM"
-msgstr "CD-ROM"
+msgstr "&DVD-ROM"
#. text entry
#: src/include/inst_source_dialogs.ycp:305
@@ -1441,9 +1445,8 @@
#. radio button
#: src/include/inst_source_dialogs.ycp:323
-#, fuzzy
msgid "HTT&PS"
-msgstr "HTTP"
+msgstr "HTT&PS"
#. label
#: src/include/inst_source_dialogs.ycp:348
@@ -1477,9 +1480,8 @@
#. label
#: src/include/inst_source_dialogs.ycp:507
-#, fuzzy
msgid "Local Directory or ISO"
-msgstr "Lokálny priečinok"
+msgstr "Lokálny adresár alebo ISO obraz"
#. push button
#: src/include/inst_source_dialogs.ycp:514
@@ -1488,9 +1490,8 @@
#. dialog caption
#: src/include/inst_source_dialogs.ycp:540
-#, fuzzy
msgid "ISO Image File"
-msgstr "&Súbor obrazu ISO:"
+msgstr "Súbor ISO obrazu"
#. dialog caption
#: src/include/inst_source_dialogs.ycp:542
@@ -1509,9 +1510,8 @@
#. label
#: src/include/inst_source_dialogs.ycp:679
-#, fuzzy
msgid "Catalog URL"
-msgstr "Katalánsko"
+msgstr "URL pre katalóg"
#. text entry
#. TextEntry label
@@ -1523,9 +1523,8 @@
# error popup
#. popup message
#: src/include/inst_source_dialogs.ycp:703
-#, fuzzy
msgid "URL cannot be empty."
-msgstr "Meno hostiteľa nemôže byť prázdne"
+msgstr "URL adresa nemôže byť prázdna."
#. Proposal for dirinstall installation
#: src/modules/DirInstall.ycp:65
@@ -1556,25 +1555,22 @@
msgstr "Vytvoriť obraz: %1"
#: src/modules/PackageCallbacks.ycp:58
-#, fuzzy
msgid "Package: "
msgstr "Balík:"
#: src/modules/PackageCallbacks.ycp:59
-#, fuzzy
msgid "Size: "
msgstr "Veľkosť:"
#: src/modules/PackageCallbacks.ycp:85
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Downloading package %1 (%2)..."
-msgstr "Sťahujem %1 (%2)"
+msgstr "Sťahujem balík(y) %1 (%2)"
#. popup heading
#: src/modules/PackageCallbacks.ycp:89
-#, fuzzy
msgid "Downloading Package"
-msgstr "Sťahujem obraz..."
+msgstr "Sťahujem balík(y)..."
#. check box
#: src/modules/PackageCallbacks.ycp:128
@@ -1583,41 +1579,37 @@
#. command line mode - ask user whether installation of the failed package should be retried
#: src/modules/PackageCallbacks.ycp:199 src/modules/PackageCallbacks.ycp:383
-#, fuzzy
msgid "Retry installation of the package?"
-msgstr "Znovu nainštalovať balík"
+msgstr "Skúsiť znovu nainštalovať balík?"
#. command line mode - ask user whether the installation should be aborted
#: src/modules/PackageCallbacks.ycp:208 src/modules/PackageCallbacks.ycp:392
-#, fuzzy
msgid "Abort the installation?"
-msgstr "Naozaj prerušiť inštaláciu?"
+msgstr "Naozaj zrušiť inštaláciu?"
#: src/modules/PackageCallbacks.ycp:304
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Uninstalling package %1 (%2)..."
-msgstr "Inštalujem balíky..."
+msgstr "Odinštaluvávam balíky %1 (%2)..."
#: src/modules/PackageCallbacks.ycp:305
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Installing package %1 (%2)..."
-msgstr "Inštalujem balíky..."
+msgstr "Inštalujem balíky %1 (%2)..."
#: src/modules/PackageCallbacks.ycp:310
-#, fuzzy
msgid "Uninstalling Package"
-msgstr "Inštalovať balíky"
+msgstr "Odinštalovať balíky"
#: src/modules/PackageCallbacks.ycp:311
-#, fuzzy
msgid "Installing Package"
-msgstr "Inštalovať balíky"
+msgstr "Inštalujem balík(y)"
#. error popup during package installation, %1 is the name of the package
#: src/modules/PackageCallbacks.ycp:368
-#, fuzzy, ycp-format
+#, ycp-format
msgid "Removal of package %1 failed."
-msgstr "Inštalácia balíka %1 zlyhala."
+msgstr "Odinštalovanie balíka %1 zlyhalo."
#. error popup during package installation, %1 is the name of the package
#: src/modules/PackageCallbacks.ycp:370
@@ -1627,17 +1619,16 @@
#. error report
#: src/modules/PackageCallbacks.ycp:499
-#, fuzzy
msgid ""
"<p>The source at the specified URL now provides a different media ID.\n"
"If the URL is correct, this indicates that the source content has changed. To \n"
"continue using this source, start <b>Change Source of Installation</b> from \n"
"the YaST control center and refresh the installation source.</p>\n"
msgstr ""
-"Zdroj na uvedenom URL teraz poskytuje médium s iným ID.\n"
+"<p>Zdroj na uvedenom URL teraz poskytuje médium s iným ID.\n"
"Ak je toto URL správne, znamená to, že sa obsah zdroja zmenil. Ak chcete\n"
-"ďalej používať tento zdroj, spustite <i>Zmeniť zdroj inštalácie</i> z ovládacieho\n"
-"centra YaST, a obnovte inštalačný zdroj."
+"ďalej používať tento zdroj, spustite modul <i>Inštalačné zdroje</i> v ovládacom\n"
+"centri YaST, a obnovte inštalačný zdroj.</p>\n"
#. media is double sided, we want the user to insert the 'Side A' of the media
#. the complete string will be "<product> <media> <number>, <side>"
@@ -1687,9 +1678,8 @@
#. currently unused
#: src/modules/PackageCallbacks.ycp:556
-#, fuzzy
msgid "The correct catalog medium could not be mounted."
-msgstr "Nepodarilo sa pripojiť správne zdrojové médium."
+msgstr "Nepodarilo sa pripojiť správne médium s katalógom."
#. push button label during media change popup, user can skip
#. this media (CD) so no packages from this media will be installed
@@ -1704,19 +1694,18 @@
#. command line mode - ask user whether installation of the failed package should be retried
#: src/modules/PackageCallbacks.ycp:591
-#, fuzzy
msgid "Retry the installation?"
-msgstr "Naozaj prerušiť inštaláciu?"
+msgstr "Skúsiť inštaláciu odznova?"
#. command line mode - ask user whether the installation should be aborted
#: src/modules/PackageCallbacks.ycp:600
msgid "Skip the medium?"
-msgstr ""
+msgstr "Preskočiť médium?"
#. otherwise ignore the medium
#: src/modules/PackageCallbacks.ycp:608
msgid "Ignoring the bad medium..."
-msgstr ""
+msgstr "Ignorujem zlé médium..."
#. popup label (%1 is product name, eg. "SuSE Linux", %2 is source URL)
#: src/modules/PackageCallbacks.ycp:713
@@ -1725,31 +1714,30 @@
"Refreshing %1\n"
"(%2)"
msgstr ""
+"Obnovujem %1\n"
+"(%2)"
#. error message - a label followed by a richtext with details
#: src/modules/PackageCallbacks.ycp:736
-#, fuzzy
msgid "Error occurred while refreshing the catalog."
-msgstr "Vyskytla sa chyba počas čítania záznamu."
+msgstr "Vyskytla sa chyba počas obnovy katalógu."
# message box
#. error message - a label followed by a richtext with details
#: src/modules/PackageCallbacks.ycp:739
-#, fuzzy
msgid "Unable to retrieve the remote catalog description."
-msgstr "Nepodarilo sa prečítať aktuálne nastavenie."
+msgstr "Nie je možné získať popis vzdialeného katalógu."
# error report
#. error message - a label followed by a richtext with details
#: src/modules/PackageCallbacks.ycp:742
-#, fuzzy
msgid "An error occurred while retrieving the new metadata."
-msgstr "Vyskytla sa chyba pri vytváraní obrazu disku."
+msgstr "Vyskytla sa chyba pri získavání nových metadát."
#. command line mode - ask user whether the source refreshment should be retried
#: src/modules/PackageCallbacks.ycp:757
msgid "Retry refresh?"
-msgstr "Skúsiť aktualizáciu znovu?"
+msgstr "Skúsiť obnoviť znovu?"
#. command line mode - ask user whether the installation should be aborted
#: src/modules/PackageCallbacks.ycp:766
@@ -1759,12 +1747,12 @@
#. otherwise ignore the medium
#: src/modules/PackageCallbacks.ycp:774
msgid "Skipping the refresh..."
-msgstr "Preskakujem aktualizáciu..."
+msgstr "Preskakujem obnovenie..."
#. push button
#: src/modules/PackageCallbacks.ycp:787
msgid "&Skip Refresh"
-msgstr "&Preskočiť aktualizáciu"
+msgstr "&Preskočiť obnovenie"
#. push button
#: src/modules/PackageCallbacks.ycp:789
@@ -2032,9 +2020,8 @@
# error report
#: src/modules/Packages.ycp:650
-#, fuzzy
msgid "Failed to integrate service pack source."
-msgstr "Nepodarilo sa nainštalovať potrebný balík."
+msgstr "Nepodarilo sa zaintegrovať opravný zdrojový balík."
#. an error message
#: src/modules/Packages.ycp:701
@@ -2076,13 +2063,13 @@
#. error message
#: src/modules/Packages.ycp:1002
msgid "Disk space exhausted -- changing software selection"
-msgstr "Došlo miesto na disku -- mením výber software"
+msgstr "Došlo miesto na disku -- mením výber softvéru"
#. Can't find any software data, probably a installation media error
#. error message
#: src/modules/Packages.ycp:1025
msgid "Cannot read package data from installation media. Media error?"
-msgstr "Nepodarilo sa načítať dáta o balíkoch z inštalačného média. Chyba média?"
+msgstr "Nepodarilo sa načítať dáta balíkov z inštalačného média. Chyba média?"
#. can't find a set of software packages which fits on the harddisk
#. error message
@@ -2117,6 +2104,11 @@
"\n"
"Install it anyway?"
msgstr ""
+"Balík %1 nie je digitálne podpísaný. To znamená, že pôvod ani integrita\n"
+"balíka nemôžu byť overené. Ak balík nainštalujete,\n"
+"riskujete integritu Vášho systému.\n"
+"\n"
+"Chcete ho napriek tomu inštalovať?"
#. popup question, %1 stands for the filename
#: src/modules/SignatureCheckDialogs.ycp:286
@@ -2128,6 +2120,11 @@
"\n"
"Use it anyway?"
msgstr ""
+"Súbor %1\n"
+"nie je digitálne podpísaný. To znamená, že pôvod ani integrita súboru\n"
+"nemôžu byť overené. Používaním tohto súboru riskujete integritu Vášho systému.\n"
+"\n"
+"Chcete ho napriek tomu použiť?"
#. popup heading
#: src/modules/SignatureCheckDialogs.ycp:299
@@ -2145,6 +2142,12 @@
"\n"
"Install it anyway?"
msgstr ""
+"Kontrolný súčet balíka %1 nebol v zdroji nájdený.\n"
+"To znamená, že tento balík je síce z podpísaného zdroja, ale nie je v zozname\n"
+"kontrolných súčtov balíkov. Ak balík nainštalujete,\n"
+"riskujete integritu Vášho systému.\n"
+"\n"
+"Chcete ho napriek tomu inštalovať?"
#. popup question, %1 stands for the filename
#: src/modules/SignatureCheckDialogs.ycp:342
@@ -2157,11 +2160,17 @@
"\n"
"Use it anyway?"
msgstr ""
+"Kontrolný súčet pre súbor %1\n"
+"sa nenašiel. To znamená, že súbor je síce súčasťou podpísaného zdroja,\n"
+"ale nie je v zozname kontrolných súčtov. Ak súbor použijete,\n"
+"riskujete integritu Vášho systému.\n"
+"\n"
+"Chcete ho napriek tomu použiť?"
#. popup heading
#: src/modules/SignatureCheckDialogs.ycp:356
msgid "No Checksum Found"
-msgstr "Nenájdený kontrolný súčet"
+msgstr "Kontrolný súčet nebol nájdený."
#. popup question, %1 stands for the package name, %2 for the complete description of the GnuPG key (multiline)
#: src/modules/SignatureCheckDialogs.ycp:393
@@ -2175,6 +2184,13 @@
"\n"
"Install it anyway?"
msgstr ""
+"Balík %1 je podpísaný nasledovným GnuPG kľúčom, ale zlyhala kontrola intergrity: %2\n"
+"\n"
+"To znamená, že balík bol zmenený náhodne alebo útočníkom\n"
+"potom, ako ho tvorca repozitára podpísal. Ak balík nainštalujete, vystavíte svoj systém\n"
+" obrovskému bezpečnostnému riziku a narušíte integritu systému.\n"
+"\n"
+"Skutočne ho chcete nainštalovať?"
#. popup question, %1 stands for the filename, %2 for the complete description of the GnuPG key (multiline)
#: src/modules/SignatureCheckDialogs.ycp:402
@@ -2189,6 +2205,13 @@
"\n"
"Use it anyway?"
msgstr ""
+"Súbor %1 je podpísaný nasledovným GnuPG kľúčom, ale zlyhala kontrola jeho intergrity: %2\n"
+"\n"
+"To znamená, že súbor bol zmenený náhodne alebo útočníkom\n"
+"potom, ako ho tvorca repozitára podpísal. Ak súbor použijete, vystavíte svoj systém\n"
+"obrovskému bezpečnostnému riziku a narušíte integritu systému.\n"
+"\n"
+"Skutočne ho chcete použiť?"
#. Part of the GnuPG key description in popup, %1 is a GnuPG key ID
#: src/modules/SignatureCheckDialogs.ycp:414
@@ -2214,7 +2237,7 @@
#: src/modules/SignatureCheckDialogs.ycp:723
#, ycp-format
msgid "Name: %1"
-msgstr "Meno: %1"
+msgstr "Názov: %1"
#: src/modules/SignatureCheckDialogs.ycp:428
msgid "Validation Check Failed"
@@ -2233,6 +2256,13 @@
"\n"
"Install it anyway?"
msgstr ""
+"Balík %1 je digitálne podpísaný nasledovným neznámym GnuPG kľúčom:\n"
+" %2\n"
+"\n"
+"To znamená, že sa nedá dôverovať tvorcovi balíka.\n"
+"Ak balík nainštaluete, môžete narušiť integritu systému.\n"
+"\n"
+"Skutočne ho chcete nainštalovať?"
#. popup question, %1 stands for the filename, %2 for the complex multiline description of the GnuPG key
#: src/modules/SignatureCheckDialogs.ycp:467
@@ -2247,6 +2277,13 @@
"\n"
"Use it anyway?"
msgstr ""
+"Súbor %1 je digitálne podpísaný nasledovným neznámym GnuPG kľúčom:\n"
+"%2\n"
+"\n"
+"To znamená, že sa nedá dôverovať tvorcovi súboru.\n"
+"Ak súbor použijete, môžete narušiť integritu systému.\n"
+"\n"
+"Skutočne ho chcete použiť?"
# summary text - unknown DMA mode is selected
#. popup heading
@@ -2270,6 +2307,17 @@
"the integrity of your system at risk. It is safest\n"
"to skip the package."
msgstr ""
+"Balík %1 je digitálne podpísaný nasledovným kľúčom:\n"
+"'%2 (%3)'.\n"
+"\n"
+"Nie je známa dôveryhodnosť vlastníka tohto kľúča.\n"
+"Ak dôverujete vlastníkovi, importujte jeho kľúč medzi\n"
+"dôveryhodné kľúče cez Importovať Kľúč.\n"
+"Potom pokračujte v inštalovaní.\n"
+"\n"
+"Inštalovaním balíkov z neznámeho zdroja môžete\n"
+"narušiť integritu Vášho systému.\n"
+"Najbezpečnejšiou voľbou je vynechať balík."
#. popup question, %1 stands for the filename, %2 for the key ID, %3 for the key name
#: src/modules/SignatureCheckDialogs.ycp:543
@@ -2287,11 +2335,22 @@
"the integrity of your system at risk. It is safest\n"
"to skip it."
msgstr ""
+"Súbor %1 je digitálne podpísaný nasledovným kľúčom:\n"
+"'%2 (%3)'.\n"
+"\n"
+"Nie je známa dôveryhodnosť vlastníka tohto kľúča.\n"
+"Ak dôverujete vlastníkovi, importujte jeho kľúč medzi\n"
+"dôveryhodné kľúče cez Importovať Kľúč.\n"
+"Potom pokračujte v inštalovaní.\n"
+"\n"
+"Inštalovaním súborov z neznámeho zdroja môžete\n"
+"narušiť integritu Vášho systému.\n"
+"Najbezpečnejšiou voľbou je súbor vynechať."
#. popup heading
#: src/modules/SignatureCheckDialogs.ycp:562
msgid "Signed with Untrusted Public Key"
-msgstr ""
+msgstr "Podpísané nedôveryhodným verejným kľúčom"
#. push button
#: src/modules/SignatureCheckDialogs.ycp:568
@@ -2318,6 +2377,11 @@
"importing the key into your keyring of trusted keys allows the key owner\n"
"to have a certain amount of control over the software on your system.</p>"
msgstr ""
+"<p>Vlastník tohto kľúča môže distribuovať aktualizácie,\n"
+"balíky, a repozitáre s balíkmi. Váš systém im bude dôverovať a ponúkať\n"
+"Vám ich inštaláciu a aktualizácie bez ďalších varovaní. Tým, že importujete\n"
+"tento kľúč medzi Vaše dôverné kľúče, ktorým veríte, dávate vlastníkovi kľúča\n"
+"istú možnosť mať kontrolu nad tým, aký softvér bude na Vašom systéme.</p>"
#. additional Richtext (HTML) warning text (kind of help), 2/2, %1 stands for the GnuPG key ID
#: src/modules/SignatureCheckDialogs.ycp:605
@@ -2328,6 +2392,9 @@
"is not signed by a trusted (imported) key. If you do not import the key,\n"
"packages created by the owner of key <tt>%1</tt> show this warning.</p>"
msgstr ""
+"<p>Varovanie sa zobrazí vždy, ak balík nie je podpísaný\n"
+"dôveryhodným (importovaným) kľúčom. Ak nenaimportujete kľúč,\n"
+"varovanie sa zobrazí pri každom balíku, ktorý je podpísaný vlastníkom kľúča <tt>%1</tt>.</p>"
#. popup message, %1 stands for GPG key complete multiline description, %2 for key location (URL or ...)
#: src/modules/SignatureCheckDialogs.ycp:610
@@ -2341,6 +2408,13 @@
"You should be sure that you can trust the owner and that\n"
"the key really belongs to that owner before importing it."
msgstr ""
+"GnuPG kľúč %1\n"
+"bol nájdený na %2.\n"
+"\n"
+"Môžete zvoliť, aby sa importoval medzi verejné kľuče, \n"
+"ktorým dôverujete. Tzn., že veríte tomu, komu kľuč patrí.\n"
+"Mali by ste si byt naozaj istý, že môžete veriť majiteľovi kľúča a\n"
+"že kľúč naozaj patrí danému majiteľovi, než kľúč naimportujete."
#. popup heading
#: src/modules/SignatureCheckDialogs.ycp:647
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-trans-sk-2.13.10/po/status.txt new/yast2-trans-sk-2.13.11/po/status.txt
--- old/yast2-trans-sk-2.13.10/po/status.txt 2006-06-19 18:30:07.000000000 +0200
+++ new/yast2-trans-sk-2.13.11/po/status.txt 2006-06-28 16:22:50.000000000 +0200
@@ -1,6 +1,6 @@
-Translated : 11738
-Fuzzy : 3342
-Untranslated : 1001
+Translated : 11822
+Fuzzy : 3289
+Untranslated : 970
--------------------
All strings : 16081
-73 % are translated
+74 % are translated
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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 ripit
checked in at Wed Jun 28 18:25:07 CEST 2006.
--------
--- ripit/ripit.changes 2006-01-25 21:47:41.000000000 +0100
+++ ripit/ripit.changes 2006-06-28 12:05:12.000000000 +0200
@@ -1,0 +2,7 @@
+Wed Jun 28 12:04:50 CEST 2006 - kssingvo(a)suse.de
+
+- new version 3.5.1 with new features:
+- new options: --normalize, --loop, --cdtoc
+- global config file now included
+
+-------------------------------------------------------------------
Old:
----
ripit-3.4.tar.bz2
ripit-ogg.diff
New:
----
ripit-3.5.1-ogg.patch
ripit-3.5.1.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ripit.spec ++++++
--- /var/tmp/diff_new_pack.F4irff/_old 2006-06-28 18:24:31.000000000 +0200
+++ /var/tmp/diff_new_pack.F4irff/_new 2006-06-28 18:24:31.000000000 +0200
@@ -1,11 +1,11 @@
#
-# spec file for package ripit (Version 3.4)
+# spec file for package ripit (Version 3.5.1)
#
# Copyright (c) 2006 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.
#
-# Please submit bugfixes or comments via http://bugs.opensuse.org
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
@@ -16,11 +16,11 @@
Group: Productivity/Multimedia/CD/Grabbers
Requires: cdparanoia vorbis-tools perl perl-CDDB_get
Autoreqprov: on
-Version: 3.4
+Version: 3.5.1
Release: 1
Summary: Perl Script to Create .ogg or .mp3 Files from an Audio CD
Source: %name-%version.tar.bz2
-Patch: ripit-ogg.diff
+Patch0: %name-%version-ogg.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
@@ -38,26 +38,34 @@
%prep
%setup -q
-%patch
+%patch0 -p1
%build
%install
-BINDIR=/usr/bin
-mkdir -p $RPM_BUILD_ROOT/$BINDIR/
-install -m 755 ripit.pl $RPM_BUILD_ROOT/$BINDIR/
-ln -s ripit.pl $RPM_BUILD_ROOT/$BINDIR/ripit
+mkdir -p $RPM_BUILD_ROOT/%{_bindir}
+install -m 755 ripit $RPM_BUILD_ROOT/%{_bindir}
+mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}
+install -m 644 config $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}
+mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1
+install -m 644 ripit.1 $RPM_BUILD_ROOT/%{_mandir}/man1/
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
-/usr/bin/ripit
-%config(noreplace) /usr/bin/ripit.pl
-%doc README HISTORY
+%{_bindir}/ripit
+%dir %{_sysconfdir}/%{name}
+%config(noreplace) %{_sysconfdir}/%{name}/*
+%doc README HISTORY LICENSE
+%doc %{_mandir}/man1/*
%changelog -n ripit
+* Wed Jun 28 2006 - kssingvo(a)suse.de
+- new version 3.5.1 with new features:
+- new options: --normalize, --loop, --cdtoc
+- global config file now included
* Wed Jan 25 2006 - mls(a)suse.de
- converted neededforbuild to BuildRequires
* Fri Jan 13 2006 - mmj(a)suse.de
++++++ ripit-3.5.1-ogg.patch ++++++
--- ripit-3.5.1/ripit.orig 2006-06-16 09:37:11.000000000 +0200
+++ ripit-3.5.1/ripit 2006-06-28 11:53:28.000000000 +0200
@@ -61,18 +61,18 @@
my $ripopt = ""; # Options for audio CD ripper.
my $ripper = 1; # 0 - dagrab, 1 - cdparanoia,
# 2 - cdda2wav, 3 - tosha, 4 - cdd.
-my @coder = (0); # 0 - Lame, 1 - OggVorbis, 2 - Flac,
+my @coder = (1); # 0 - Lame, 1 - OggVorbis, 2 - Flac,
# 3 - Faac, comma seperated list.
my $bitrate = 128; # Bitrate for lame, if --vbrmode used,
# bitrate is equal to the -b option.
my $maxrate = 0; # Bitrate for lame using --vbrmode,
# maxrate is equal to the -B option.
-my @quality = (5,3,5,100);# Quality for lame in vbr mode (0-9),
+my @quality = (5,6,5,100);# Quality for lame in vbr mode (0-9),
# best quality = 0, quality for ogg
# (1-10) best = 10; or compression
# level for Flac (0-8), lowest = 0.
my $qualame = 5; #
-my $qualoggenc= 3; #
+my $qualoggenc = 6; #
my $quaflac = 5; #
my $quafaac = 100; #
my $lameopt = ""; #
++++++ ripit-3.4.tar.bz2 -> ripit-3.5.1.tar.bz2 ++++++
++++ 10011 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 libwmf
checked in at Tue Jun 27 20:34:57 CEST 2006.
--------
--- libwmf/libwmf.changes 2006-01-26 19:07:18.000000000 +0100
+++ libwmf/libwmf.changes 2006-06-27 18:34:02.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Jun 27 18:32:40 CEST 2006 - nadvornik(a)suse.cz
+
+- updated to bugfix release 0.2.8.4
+ * fixes various compiler warnings [#185398]
+
+-------------------------------------------------------------------
Old:
----
libwmf-0.2.8.2-config.patch
libwmf-0.2.8.2-fix.patch
libwmf-0.2.8.2-ia64.patch
libwmf-0.2.8.2.tar.bz2
New:
----
libwmf-0.2.8.4-config.patch
libwmf-0.2.8.4-fix.patch
libwmf-0.2.8.4-ia64.patch
libwmf-0.2.8.4.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libwmf.spec ++++++
--- /var/tmp/diff_new_pack.kwiagj/_old 2006-06-27 20:34:35.000000000 +0200
+++ /var/tmp/diff_new_pack.kwiagj/_new 2006-06-27 20:34:35.000000000 +0200
@@ -1,11 +1,11 @@
#
-# spec file for package libwmf (Version 0.2.8.2)
+# spec file for package libwmf (Version 0.2.8.4)
#
# Copyright (c) 2006 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.
#
-# Please submit bugfixes or comments via http://bugs.opensuse.org
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
@@ -17,8 +17,8 @@
License: LGPL
Group: System/Libraries
Autoreqprov: on
-Version: 0.2.8.2
-Release: 98
+Version: 0.2.8.4
+Release: 1
Summary: Library and Utilities for Displaying and Converting Metafile Images
URL: http://wvWare.sourceforge.net/
Source: libwmf-%{version}.tar.bz2
@@ -135,6 +135,9 @@
%doc %{_defaultdocdir}/libwmf/html
%changelog -n libwmf
+* Tue Jun 27 2006 - nadvornik(a)suse.cz
+- updated to bugfix release 0.2.8.4
+ * fixes various compiler warnings [#185398]
* Thu Jan 26 2006 - nadvornik(a)suse.cz
- fixed undefined code [#136822]
* Wed Jan 25 2006 - mls(a)suse.de
++++++ libwmf-0.2.8.2-config.patch -> libwmf-0.2.8.4-config.patch ++++++
++++++ libwmf-0.2.8.2-fix.patch -> libwmf-0.2.8.4-fix.patch ++++++
--- libwmf/libwmf-0.2.8.2-fix.patch 2006-01-26 19:00:22.000000000 +0100
+++ libwmf/libwmf-0.2.8.4-fix.patch 2006-06-27 18:26:32.000000000 +0200
@@ -15,7 +15,7 @@
API->MetaHeader.wmfheader = &(API->Head);
--- src/extra/gd/gd.c
+++ src/extra/gd/gd.c
-@@ -767,6 +767,7 @@
+@@ -784,6 +784,7 @@
}
else
{
@@ -33,35 +33,6 @@
/* stdio is needed for file I/O. */
#include <stdio.h>
---- src/extra/gd/gd_gd2.c
-+++ src/extra/gd/gd_gd2.c
-@@ -635,10 +635,11 @@
- {
- if (im->trueColor)
- {
-- ch = chunkBuf[chunkPos++] << 24 +
-- chunkBuf[chunkPos++] << 16 +
-- chunkBuf[chunkPos++] << 8 +
-- chunkBuf[chunkPos++];
-+ ch = chunkBuf[chunkPos] << 24 +
-+ chunkBuf[chunkPos + 1] << 16 +
-+ chunkBuf[chunkPos + 2] << 8 +
-+ chunkBuf[chunkPos + 3];
-+ chunkPos += 4;
- }
- else
- {
---- src/extra/gd/gdft.c
-+++ src/extra/gd/gdft.c
-@@ -25,7 +25,7 @@
- gdImageStringTTF (gdImage * im, int *brect, int fg, char *fontlist,
- double ptsize, double angle, int x, int y, char *string)
- {
-- gdImageStringFT (im, brect, fg, fontlist, ptsize,
-+ return gdImageStringFT (im, brect, fg, fontlist, ptsize,
- angle, x, y, string);
- }
-
--- src/player/record.h
+++ src/player/record.h
@@ -96,6 +96,7 @@
@@ -72,33 +43,4 @@
if (index > record->size)
{ WMF_ERROR (API,"Bad record - unexpectedly short!");
---- src/recorder.c
-+++ src/recorder.c
-@@ -764,7 +764,7 @@
- if ((mode != ALTERNATE) && (mode != WINDING))
- {
- WMF_ERROR (API, "Unexpected polygon fill mode! Expected one of ALTERNATE or WINDING");
-- return;
-+ return -1;
- }
- if (construct->polyfill == mode) return 0;
-
-@@ -1577,7 +1577,7 @@
- if ((construct == 0) || (str == 0)) return -1;
-
- length = (strlen (str) + 1) / 2; /* TODO: do conversion from UTF-8 to... ?? */
-- if (length == 0) return;
-+ if (length == 0) return -1;
-
- Size += length;
-
---- src/stream.c
-+++ src/stream.c
-@@ -285,7 +285,6 @@
-
- if (ERR (API))
- { WMF_DEBUG (API,"bailing...");
-- defstr->max = max;
- return (EOF);
- }
-
+
\ No newline at end of file
++++++ libwmf-0.2.8.2-ia64.patch -> libwmf-0.2.8.4-ia64.patch ++++++
++++++ libwmf-0.2.8.2.tar.bz2 -> libwmf-0.2.8.4.tar.bz2 ++++++
++++ 121757 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 ldapcpplib
checked in at Tue Jun 27 20:34:20 CEST 2006.
--------
--- ldapcpplib/ldapcpplib.changes 2006-03-31 14:28:22.000000000 +0200
+++ ldapcpplib/ldapcpplib.changes 2006-06-27 20:29:31.000000000 +0200
@@ -1,0 +2,5 @@
+Tue Jun 27 20:29:07 CEST 2006 - lrupp(a)suse.de
+
+- fix %files for valid debuginfo package
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ldapcpplib.spec ++++++
--- /var/tmp/diff_new_pack.1SOfOJ/_old 2006-06-27 20:34:08.000000000 +0200
+++ /var/tmp/diff_new_pack.1SOfOJ/_new 2006-06-27 20:34:08.000000000 +0200
@@ -18,7 +18,7 @@
Autoreqprov: on
Summary: C++ API for LDAPv3
Version: 0.0.4
-Release: 8
+Release: 14
Source: %{name}-%{version}.tar.bz2
Patch: ldapconn_init.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -87,7 +87,8 @@
%files
%defattr(-,root,root)
-%{_libdir}/libldapcpp.so.*
+%{_libdir}/libldapcpp.so.0.0.4
+%{_libdir}/libldapcpp.so.0
%dir %{_defaultdocdir}/%{name}
%{_defaultdocdir}/%{name}/LICENSE
%{_defaultdocdir}/%{name}/README
@@ -103,6 +104,8 @@
%{_defaultdocdir}/%{name}/html
%changelog -n ldapcpplib
+* Tue Jun 27 2006 - lrupp(a)suse.de
+- fix %%files for valid debuginfo package
* Fri Mar 31 2006 - rhafer(a)suse.de
- throw Exception if initialization failed (Bug #159741)
* Wed Jan 25 2006 - mls(a)suse.de
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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