openSUSE Commits
Threads by month
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
December 2006
- 1 participants
- 554 discussions
Hello community,
here is the log from the commit of package quagga
checked in at Wed Dec 20 18:59:33 CET 2006.
--------
--- quagga/quagga.changes 2006-12-19 14:49:02.000000000 +0100
+++ /mounts/work_src_done/STABLE/quagga/quagga.changes 2006-12-20 14:29:49.000000000 +0100
@@ -1,0 +2,5 @@
+Wed Dec 20 14:28:56 CET 2006 - prusnak(a)suse.cz
+
+- fixed "nextnode" misuse
+
+-------------------------------------------------------------------
New:
----
quagga-0.98.6-nextnode.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ quagga.spec ++++++
--- /var/tmp/diff_new_pack.d8huCm/_old 2006-12-20 18:59:24.000000000 +0100
+++ /var/tmp/diff_new_pack.d8huCm/_new 2006-12-20 18:59:24.000000000 +0100
@@ -13,7 +13,7 @@
Name: quagga
BuildRequires: net-snmp-devel pam-devel readline-devel
Version: 0.98.6
-Release: 28
+Release: 29
PreReq: %insserv_prereq %fillup_prereq /usr/sbin/useradd /usr/sbin/groupadd
PreReq: %install_info_prereq
Provides: zebra
@@ -29,6 +29,7 @@
Patch2: %{name}-snmp.diff
Patch4: %{name}-%{version}-strict-aliasing.diff
Patch5: %{name}-%{version}-strcmp.diff
+Patch6: %{name}-%{version}-nextnode.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@@ -79,6 +80,7 @@
%patch2
%patch4
%patch5
+%patch6
%build
if ! ls /proc/net/{dev,route,snmp} >/dev/null; then
@@ -175,6 +177,8 @@
%{_includedir}/%{name}/ospfd/*.h
%changelog -n quagga
+* Wed Dec 20 2006 - prusnak(a)suse.cz
+- fixed "nextnode" misuse
* Tue Dec 19 2006 - prusnak(a)suse.cz
- fixed "comparison with string literal" [#228420]
* Mon Aug 21 2006 - kukuk(a)suse.de
++++++ quagga-0.98.6-nextnode.diff ++++++
--- ospfd/ospf_ase.c
+++ ospfd/ospf_ase.c
@@ -740,7 +740,7 @@
for (rn = route_top (rt); rn; rn = route_next (rn))
if ((lst = rn->info) != NULL)
{
- for (node = listhead (lst); node; node = nextnode (node))
+ for (node = listhead (lst); node; nextnode (node))
if ((lsa = getdata (node)) != NULL)
ospf_lsa_unlock (lsa);
list_delete (lst);
--- ospfd/ospf_lsa.c
+++ ospfd/ospf_lsa.c
@@ -658,7 +658,7 @@
struct listnode *node;
int links = 0;
- for (node = listhead (area->oiflist); node; node = nextnode (node))
+ for (node = listhead (area->oiflist); node; nextnode (node))
{
struct ospf_interface *oi = node->data;
struct interface *ifp = oi->ifp;
@@ -2751,7 +2751,7 @@
{
struct listnode *node;
- for (node = listhead (ospf->oiflist); node; node = nextnode (node))
+ for (node = listhead (ospf->oiflist); node; nextnode (node))
{
struct ospf_interface *oi = getdata (node);
struct route_node *rn;
--- ospfd/ospf_packet.c
+++ ospfd/ospf_packet.c
@@ -1810,7 +1810,7 @@
struct listnode *oi_node;
int Flag = 0;
- for(oi_node = listhead(oi->ospf->oiflist); oi_node; oi_node = nextnode(oi_node))
+ for(oi_node = listhead(oi->ospf->oiflist); oi_node; nextnode(oi_node))
{
struct ospf_interface *out_if = getdata(oi_node);
if(out_if == NULL)
--- ospfd/ospf_spf.c
+++ ospfd/ospf_spf.c
@@ -1233,7 +1233,7 @@
ospf_vl_unapprove (ospf);
/* Calculate SPF for each area. */
- for (node = listhead (ospf->areas); node; node = nextnode (node))
+ for (node = listhead (ospf->areas); node; nextnode (node))
ospf_spf_calculate (node->data, new_table, new_rtrs);
ospf_vl_shut_unapproved (ospf);
--- ripd/ripd.c
+++ ripd/ripd.c
@@ -3523,7 +3523,7 @@
vty_out (vty, " Interface Send Recv Key-chain%s", VTY_NEWLINE);
- for (node = listhead (iflist); node; node = nextnode (node))
+ for (node = listhead (iflist); node; nextnode (node))
{
ifp = getdata (node);
ri = ifp->info;
@@ -3553,7 +3553,7 @@
{
int found_passive = 0;
- for (node = listhead (iflist); node; node = nextnode (node))
+ for (node = listhead (iflist); node; nextnode (node))
{
ifp = getdata (node);
ri = ifp->info;
--- ripngd/ripngd.c
+++ ripngd/ripngd.c
@@ -2183,7 +2183,7 @@
vty_out (vty, " Interface Send Recv%s", VTY_NEWLINE);
- for (node = listhead (iflist); node; node = nextnode (node))
+ for (node = listhead (iflist); node; nextnode (node))
{
struct ripng_interface *ri;
struct interface *ifp;
--- zebra/connected.c
+++ zebra/connected.c
@@ -40,7 +40,7 @@
struct connected *ifc;
struct listnode *node;
- for (node = listhead (ifp->connected); node; node = nextnode (node))
+ for (node = listhead (ifp->connected); node; nextnode (node))
{
ifc = getdata (node);
@@ -265,7 +265,7 @@
struct connected *ifc;
struct listnode *node;
- for (node = listhead (ifp->connected); node; node = nextnode (node))
+ for (node = listhead (ifp->connected); node; nextnode (node))
{
ifc = getdata (node);
--- zebra/irdp_main.c
+++ zebra/irdp_main.c
@@ -326,7 +326,7 @@
zlog_info("IRDP: Received shutdown notification.");
- for (node = listhead (iflist); node; node = nextnode (node))
+ for (node = listhead (iflist); node; nextnode (node))
{
ifp = getdata(node);
zi = ifp->info;
--- zebra/rtadv.c
+++ zebra/rtadv.c
@@ -217,7 +217,7 @@
len = sizeof (struct nd_router_advert);
/* Fill in prefix. */
- for (node = listhead (zif->rtadv.AdvPrefixList); node; node = nextnode (node))
+ for (node = listhead (zif->rtadv.AdvPrefixList); node; nextnode (node))
{
struct nd_opt_prefix_info *pinfo;
struct rtadv_prefix *rprefix;
@@ -510,7 +510,7 @@
struct listnode *node;
struct rtadv_prefix *rprefix;
- for (node = listhead (rplist); node; node = nextnode (node))
+ for (node = listhead (rplist); node; nextnode (node))
{
rprefix = getdata (node);
if (prefix_same (&rprefix->prefix, p))
@@ -1105,7 +1105,7 @@
if (zif->rtadv.AdvOtherConfigFlag)
vty_out (vty, " ipv6 nd other-config-flag%s", VTY_NEWLINE);
- for (node = listhead(zif->rtadv.AdvPrefixList); node; node = nextnode (node))
+ for (node = listhead(zif->rtadv.AdvPrefixList); node; nextnode (node))
{
rprefix = getdata (node);
vty_out (vty, " ipv6 nd prefix %s/%d",
--- zebra/zserv.c
+++ zebra/zserv.c
@@ -771,7 +771,7 @@
/* Interface information is needed. */
client->ifinfo = 1;
- for (ifnode = listhead (iflist); ifnode; ifnode = nextnode (ifnode))
+ for (ifnode = listhead (iflist); ifnode; nextnode (ifnode))
{
ifp = getdata (ifnode);
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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 fyre
checked in at Wed Dec 20 18:59:14 CET 2006.
--------
--- GNOME/fyre/fyre.changes 2006-10-31 17:43:26.000000000 +0100
+++ /mounts/work_src_done/STABLE/fyre/fyre.changes 2006-12-20 18:22:35.000000000 +0100
@@ -1,0 +2,5 @@
+Wed Dec 20 18:21:43 CET 2006 - jhargadon(a)suse.de
+
+- fixed an error with update-mime-database during %postun (#225662)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ fyre.spec ++++++
--- /var/tmp/diff_new_pack.N8DF5N/_old 2006-12-20 18:59:05.000000000 +0100
+++ /var/tmp/diff_new_pack.N8DF5N/_new 2006-12-20 18:59:05.000000000 +0100
@@ -15,10 +15,10 @@
%define prefix /opt/gnome
%define sysconfdir /etc%{prefix}
Version: 1.0.0
-Release: 17
+Release: 35
URL: http://fyre.navi.cx/
Group: Productivity/Graphics/Other
-License: GNU General Public License (GPL) - all versions
+License: GNU General Public License (GPL)
Summary: Rendering system for chaotic maps
Source: %{name}-%{version}.tar.bz2
Autoreqprov: on
@@ -67,7 +67,7 @@
/usr/bin/update-mime-database %{prefix}/share/mime >/dev/null || exit 0
%postun
-/usr/bin/update-mime-database %{prefix}/usr/share/mime >/dev/null || exit 0
+/usr/bin/update-mime-database %{prefix}/share/mime >/dev/null || exit 0
%files
%defattr (-, root, root)
@@ -80,6 +80,8 @@
/opt/gnome/share/pixmaps/*.png
%changelog -n fyre
+* Wed Dec 20 2006 - jhargadon(a)suse.de
+- fixed an error with update-mime-database during %%postun (#225662)
* Tue Oct 31 2006 - meissner(a)suse.de
- use RPM_OPT_FLAGS
* Thu Sep 07 2006 - dobey(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
Hello community,
here is the log from the commit of package blam
checked in at Wed Dec 20 18:58:59 CET 2006.
--------
--- GNOME/blam/blam.changes 2006-12-20 01:15:23.000000000 +0100
+++ /mounts/work_src_done/STABLE/blam/blam.changes 2006-12-20 18:21:28.000000000 +0100
@@ -1,0 +2,5 @@
+Wed Dec 20 18:20:55 CET 2006 - jhargadon(a)suse.de
+
+- fixed a build error that prevented x86_64 from building.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ blam.spec ++++++
--- /var/tmp/diff_new_pack.elkOTc/_old 2006-12-20 18:56:38.000000000 +0100
+++ /var/tmp/diff_new_pack.elkOTc/_new 2006-12-20 18:56:38.000000000 +0100
@@ -21,7 +21,7 @@
Autoreqprov: on
Requires: mono-core
Version: 1.8.2
-Release: 72
+Release: 73
Summary: GNOME/GTK# RSS Aggregator
URL: http://www.imendio.com/projects/blam/
Source: %{name}-%{version}.tar.bz2
@@ -97,7 +97,7 @@
#done
#cd ..
%suse_update_desktop_file blam
-rm $RPM_BUILD_ROOT%{prefix}/%_lib/blam/*.*a
+#rm $RPM_BUILD_ROOT%{prefix}/lib/blam/*.*a
%find_lang %{name}
%post
@@ -123,6 +123,8 @@
%changelog -n blam
* Wed Dec 20 2006 - jhargadon(a)suse.de
+- fixed a build error that prevented x86_64 from building.
+* Wed Dec 20 2006 - jhargadon(a)suse.de
- added a patch to fix crashes in x86_64 (#215499)
- remove unneeded static libraries (#222522)
* Thu Nov 30 2006 - sbrabec(a)suse.cz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package aaa_base
checked in at Wed Dec 20 18:56:19 CET 2006.
--------
--- aaa_base/aaa_base.changes 2006-12-08 10:30:30.000000000 +0100
+++ /mounts/work_src_done/STABLE/aaa_base/aaa_base.changes 2006-12-20 18:53:44.000000000 +0100
@@ -1,0 +2,6 @@
+Wed Dec 20 18:53:07 CET 2006 - ro(a)suse.de
+
+- call umount in "rcnfs stop" if there are any active nfs mounts
+ (#103217)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.a04Uez/_old 2006-12-20 18:54:03.000000000 +0100
+++ /var/tmp/diff_new_pack.a04Uez/_new 2006-12-20 18:54:03.000000000 +0100
@@ -19,7 +19,7 @@
PreReq: /usr/bin/sed /usr/bin/grep /bin/mv /bin/cat /bin/date /usr/bin/cmp /bin/fillup /sbin/insserv net-tools
Autoreqprov: on
Version: 10.2
-Release: 40
+Release: 46
Summary: SUSE Linux Base Package
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source: aaa_base.tar.bz2
@@ -145,6 +145,9 @@
%defattr(-,root,root)
%changelog -n aaa_base
+* Wed Dec 20 2006 - ro(a)suse.de
+- call umount in "rcnfs stop" if there are any active nfs mounts
+ (#103217)
* Fri Dec 08 2006 - olh(a)suse.de
- adapt s390 inittab patch
* Thu Dec 07 2006 - olh(a)suse.de
++++++ aaa_base.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/aaa_base/etc/init.d/nfs new/aaa_base/etc/init.d/nfs
--- old/aaa_base/etc/init.d/nfs 2006-02-21 12:42:32.000000000 +0100
+++ new/aaa_base/etc/init.d/nfs 2006-12-20 18:51:16.000000000 +0100
@@ -82,6 +82,14 @@
;;
stop)
echo -n "Remove Net File System (NFS)"
+ while read where what type options rest ; do
+ case "$where" in
+ \#*|"") ;;
+ *) if test "$type" = "nfs" ; then
+ nfs=yes
+ fi ;;
+ esac
+ done < /etc/mtab
if test "$nfs" = "yes" ; then
#
# Unmount in background because during long timeouts
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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 perl-Archive-Zip
checked in at Wed Dec 20 18:19:48 CET 2006.
--------
--- perl-Archive-Zip/perl-Archive-Zip.changes 2006-12-14 13:23:57.000000000 +0100
+++ /mounts/work_src_done/STABLE/perl-Archive-Zip/perl-Archive-Zip.changes 2006-12-20 14:32:23.000000000 +0100
@@ -1,0 +2,5 @@
+Wed Dec 20 14:32:01 CET 2006 - anicka(a)suse.cz
+
+- add perl-File-Which to BuildRequires and enable tests again
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Archive-Zip.spec ++++++
--- /var/tmp/diff_new_pack.6FLkYg/_old 2006-12-20 18:19:34.000000000 +0100
+++ /var/tmp/diff_new_pack.6FLkYg/_new 2006-12-20 18:19:34.000000000 +0100
@@ -12,9 +12,9 @@
Name: perl-Archive-Zip
URL: http://cpan.org/modules/by-module/Archive/
-BuildRequires: perl-Compress-Zlib zip
+BuildRequires: perl-Compress-Zlib perl-File-Which zip
Version: 1.18
-Release: 1
+Release: 3
Requires: perl = %{perl_version}
Autoreqprov: on
Group: Development/Libraries/Perl
@@ -38,8 +38,7 @@
%build
perl Makefile.PL
make
-# Test disabled: We do not have File::Which in distribution.
-#make test
+make test
%install
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
@@ -63,6 +62,8 @@
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
%changelog -n perl-Archive-Zip
+* Wed Dec 20 2006 - anicka(a)suse.cz
+- add perl-File-Which to BuildRequires and enable tests again
* Thu Dec 14 2006 - anicka(a)suse.cz
- update to 1.18
* Seperated the classes from the main file into seperate packages.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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 pam-modules
checked in at Wed Dec 20 18:19:28 CET 2006.
--------
--- pam-modules/pam-modules.changes 2006-11-16 16:33:14.000000000 +0100
+++ /mounts/work_src_done/STABLE/pam-modules/pam-modules.changes 2006-12-20 15:50:40.000000000 +0100
@@ -1,0 +2,9 @@
+Wed Dec 20 15:50:24 CET 2006 - kukuk(a)suse.de
+
+- Update translations for pam_pwcheck
+- Update to pam_unix2 2.3:
+ - Correct fix for [#221233]
+ - Add translations for bg and hr
+ - Update translations for es, it and ja
+
+-------------------------------------------------------------------
Old:
----
pam-modules-10.2-unix2-prevent-guess.dif
pam_pwcheck-3.10.1.tar.bz2
pam_unix2-2.1.1.tar.bz2
New:
----
pam_pwcheck-3.10.2.tar.bz2
pam_unix2-2.3.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ pam-modules.spec ++++++
--- /var/tmp/diff_new_pack.QKlgeo/_old 2006-12-20 18:18:22.000000000 +0100
+++ /var/tmp/diff_new_pack.QKlgeo/_new 2006-12-20 18:18:22.000000000 +0100
@@ -17,16 +17,15 @@
Group: System/Libraries
Autoreqprov: on
Version: 10.2
-Release: 28
+Release: 33
Summary: Additional PAM Modules
-Source0: pam_unix2-2.1.1.tar.bz2
-Source1: pam_pwcheck-3.10.1.tar.bz2
+Source0: pam_unix2-2.3.tar.bz2
+Source1: pam_pwcheck-3.10.2.tar.bz2
Source2: pam_homecheck-2.0.tar.bz2
Source5: pam_make-1.2.tar.bz2
Source21: unix2_chkpwd.c
Source41: unix2_chkpwd.8
Source50: dlopen.sh
-Patch0: pam-modules-10.2-unix2-prevent-guess.dif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@@ -41,7 +40,6 @@
%prep
%setup -q -c %{name} -b1 -b2 -b5
-%patch0
%build
for i in * ; do
@@ -106,6 +104,12 @@
%attr(644,root,root) %doc %{_mandir}/man8/unix2_chkpwd.8.gz
%changelog -n pam-modules
+* Wed Dec 20 2006 - kukuk(a)suse.de
+- Update translations for pam_pwcheck
+- Update to pam_unix2 2.3:
+ - Correct fix for [#221233]
+ - Add translations for bg and hr
+ - Update translations for es, it and ja
* Thu Nov 16 2006 - mc(a)suse.de
- prevent guessing of non-existing accounts [#221233]
* Fri Nov 10 2006 - kukuk(a)suse.de
++++++ pam_pwcheck-3.10.1.tar.bz2 -> pam_pwcheck-3.10.2.tar.bz2 ++++++
++++ 4664 lines of diff (skipped)
++++ retrying with extended exclude list
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/ChangeLog new/pam_pwcheck-3.10.2/ChangeLog
--- old/pam_pwcheck-3.10.1/ChangeLog 2006-11-06 15:57:56.000000000 +0100
+++ new/pam_pwcheck-3.10.2/ChangeLog 2006-12-20 15:37:53.000000000 +0100
@@ -1,3 +1,16 @@
+2006-12-20 Thorsten Kukuk <kukuk(a)suse.de>
+
+ * release version 3.10.2
+
+ * po/de.po: Fix translation.
+ * po/es.po: Likewise.
+ * po/it.po: Likewise.
+ * po/ja.po: Likewise.
+
+ * po/bg.po: New translation.
+ * po/hr.po: Likewise.
+ * po/uk.po: Likewise.
+
2006-11-06 Thorsten Kukuk <kukuk(a)suse.de>
* release version 3.10.1
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/NEWS new/pam_pwcheck-3.10.2/NEWS
--- old/pam_pwcheck-3.10.1/NEWS 2006-11-06 15:29:36.000000000 +0100
+++ new/pam_pwcheck-3.10.2/NEWS 2006-12-20 15:40:17.000000000 +0100
@@ -6,6 +6,10 @@
Please send bug reports, questions and suggestions to <kukuk(a)suse.de>.
+Version 3.10.2
+* Update translations
+* Add new translations for bg, hr and uk
+
Version 3.10.1
* Update translations
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/configure.in new/pam_pwcheck-3.10.2/configure.in
--- old/pam_pwcheck-3.10.1/configure.in 2006-11-06 15:29:22.000000000 +0100
+++ new/pam_pwcheck-3.10.2/configure.in 2006-12-20 15:38:00.000000000 +0100
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(pam_pwcheck, 3.10.1, kukuk(a)thkukuk.de, pam_pwcheck)
+AC_INIT(pam_pwcheck, 3.10.2, kukuk(a)thkukuk.de, pam_pwcheck)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/pam_pwcheck.c])
AM_CONFIG_HEADER(config.h)
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/LINGUAS new/pam_pwcheck-3.10.2/po/LINGUAS
--- old/pam_pwcheck-3.10.1/po/LINGUAS 2006-11-06 15:27:27.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/LINGUAS 2006-12-20 15:39:54.000000000 +0100
@@ -1,3 +1,4 @@
+bg
cs
da
de
@@ -5,6 +6,7 @@
es
fi
fr
+hr
hu
id
it
@@ -18,5 +20,6 @@
pt
ru
sv
+uk
zh_CN
zh_TW
Binary files old/pam_pwcheck-3.10.1/po/bg.gmo and new/pam_pwcheck-3.10.2/po/bg.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/bg.po new/pam_pwcheck-3.10.2/po/bg.po
--- old/pam_pwcheck-3.10.1/po/bg.po 1970-01-01 01:00:00.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/bg.po 2006-12-20 15:40:28.000000000 +0100
@@ -0,0 +1,161 @@
+# @TITLE@
+# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+# This file is distributed under the same license as @PACKAGE@ package. FIRST
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: @PACKAGE@\n"
+"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
+"PO-Revision-Date: 2006-11-09 22:56+0200\n"
+"Last-Translator: Borislav Mitev <morbid_viper(a)tkzs.org>\n"
+"Language-Team: Bulgarian <bg(a)li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Poedit-Language: Bulgarian\n"
+"X-Poedit-Country: BULGARIA\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: src/logindefs.c:201 src/logindefs.c:227
+#, c-format
+msgid "%s contains invalid numerical value: %s.\n"
+msgstr "%s съдържа невалидна числова стойност: %s\n"
+
+#: src/opasswd.c:119
+#, c-format
+msgid "Cannot open %s for reading: %s"
+msgstr "Файлът %s не може да бъде отворен за четене: %s"
+
+#: src/opasswd.c:128
+#, c-format
+msgid "Unable to obtain entropy from %s"
+msgstr "Не може да се придобие ентропията от %s"
+
+#: src/opasswd.c:143
+msgid "Unable to generate a salt. Check your crypt settings."
+msgstr "Не може да се генерира солта. Проверете настройките криптирането."
+
+#: src/opasswd.c:353
+#, c-format
+msgid "Creating %s"
+msgstr "Създаване на %s"
+
+#: src/opasswd.c:360 src/opasswd.c:410
+#, c-format
+msgid "Cannot open %s: %m"
+msgstr "Възникнала е грешка при отварянето на %s: %m"
+
+#: src/opasswd.c:368
+#, c-format
+msgid "Cannot stat %s: %m"
+msgstr "Възникнала е грешка при изваждането на състоянието %s: %m"
+
+#: src/opasswd.c:379
+#, c-format
+msgid "Cannot create %s temp file: %m"
+msgstr "Възникнала е грешка при създаването на временния файл %s: %m"
+
+#: src/opasswd.c:387 src/opasswd.c:398
+#, c-format
+msgid "Cannot set permissions of %s temp file: %m"
+msgstr "Възникнала е грешка при задаването на правата на временния файл %s: %m"
+
+#: src/opasswd.c:391 src/opasswd.c:402
+#, c-format
+msgid "Cannot set owner/group of %s temp file: %m"
+msgstr ""
+"Възникнала е грешка при задаването на собственика/групата на временния файл %"
+"s: %m"
+
+#: src/opasswd.c:565
+#, c-format
+msgid "Error while closing old opasswd file: %s"
+msgstr "Възникнала е грешка при затварянето на стария opasswd файл: %s"
+
+#: src/opasswd.c:575
+#, c-format
+msgid "Error while closing temporary opasswd file: %s"
+msgstr "Възникнала е грешка при затварянето на временния opasswd файл: %s"
+
+#: src/opasswd.c:585
+#, c-format
+msgid "Cannot create backup file of %s: %m"
+msgstr "Не може да бъде създадено резервно копие %s: %m"
+
+#: src/pam_pwcheck.c:80
+msgid "Old Password: "
+msgstr "Стара парола:"
+
+#: src/pam_pwcheck.c:81
+msgid "New Password: "
+msgstr "Нова парола:"
+
+#: src/pam_pwcheck.c:82
+msgid "Reenter New Password: "
+msgstr "Повторно новата парола:"
+
+#: src/pam_pwcheck.c:83
+msgid "Passwords do not match."
+msgstr "Паролите не съответстват."
+
+#: src/pam_pwcheck.c:219
+msgid "You must choose a new password."
+msgstr "Трябва да изберете нова парола."
+
+#: src/pam_pwcheck.c:230
+msgid "Bad password: a palindrome"
+msgstr "Лоша парола: палиндром"
+
+#: src/pam_pwcheck.c:232
+msgid "Bad password: case changes only"
+msgstr "Лоша парола: промяна само на регистъра"
+
+#: src/pam_pwcheck.c:234
+msgid "Bad password: too similar"
+msgstr "Лоша парола: твърде подобна"
+
+#: src/pam_pwcheck.c:236
+msgid "Bad password: too simple"
+msgstr "Лоша парола: твърде проста"
+
+#: src/pam_pwcheck.c:238
+msgid "Bad password: rotated"
+msgstr "Лоша парола: завъртяна"
+
+#: src/pam_pwcheck.c:260
+msgid "Bad password: too short"
+msgstr "Лоша парола: твърде кратка"
+
+#: src/pam_pwcheck.c:279
+#, c-format
+msgid "Password will be truncated to %d characters."
+msgstr "Паролата ще бъде отрязана до %d символа."
+
+#: src/pam_pwcheck.c:300
+msgid "Bad password: "
+msgstr "Лоша парола: "
+
+#: src/pam_pwcheck.c:316
+msgid "Password has been used already. Choose another."
+msgstr "Паролата вече се използва. Изберете друга."
+
+#: src/pam_pwcheck.c:357
+msgid "Cannot get options"
+msgstr "Не могат да се вземат параметрите"
+
+#: src/pam_pwcheck.c:401
+#, c-format
+msgid "Dictionary path %s is invalid"
+msgstr "Пътят до речника %s е невалиден"
+
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
+msgid "Password change aborted."
+msgstr "Промяната на паролата е прекъсната."
+
+#: src/support.c:138 src/support.c:157
+msgid "Password: "
+msgstr "Парова:"
Binary files old/pam_pwcheck-3.10.1/po/cs.gmo and new/pam_pwcheck-3.10.2/po/cs.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/cs.po new/pam_pwcheck-3.10.2/po/cs.po
--- old/pam_pwcheck-3.10.1/po/cs.po 2006-11-06 15:27:00.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/cs.po 2006-12-20 15:26:33.000000000 +0100
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck.cs\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-03-21 20:52+0100\n"
"Last-Translator: Klara Cihlarova <koty(a)seznam.cz>\n"
"Language-Team: Czech <suse(a)suse.cz>\n"
@@ -78,7 +78,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Chyba při zavírání dočasného opasswd souboru: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Nelze vytvořit zálohu souboru %s: %m"
@@ -149,7 +149,7 @@
msgid "Dictionary path %s is invalid"
msgstr "Cesta ke slovníku %s je chybná"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Změna hesla přerušena."
Binary files old/pam_pwcheck-3.10.1/po/da.gmo and new/pam_pwcheck-3.10.2/po/da.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/da.po new/pam_pwcheck-3.10.2/po/da.po
--- old/pam_pwcheck-3.10.1/po/da.po 2006-11-06 15:27:00.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/da.po 2006-12-20 15:26:33.000000000 +0100
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-11-02 19:16+0000\n"
"Last-Translator: Jan Madsen <jan.madsen.pt(a)gmail.com>\n"
"Language-Team: <opensuse-translation(a)opensuse.org>\n"
@@ -78,7 +78,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Fejl under lukning af midlertidig 'opasswd'-fil: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Kan ikke oprette backup-fil af %s: %m"
@@ -149,7 +149,7 @@
msgid "Dictionary path %s is invalid"
msgstr "Søgesti til ordbogen %s er ugyldig"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Adgangskodeændring afbrudt."
Binary files old/pam_pwcheck-3.10.1/po/de.gmo and new/pam_pwcheck-3.10.2/po/de.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/de.po new/pam_pwcheck-3.10.2/po/de.po
--- old/pam_pwcheck-3.10.1/po/de.po 2006-11-06 15:27:00.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/de.po 2006-12-20 15:26:33.000000000 +0100
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-11-03 12:03\n"
"Last-Translator: Novell Language <language(a)novell.com>\n"
"Language-Team: Novell Language <language(a)novell.com>\n"
@@ -76,22 +76,22 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Fehler beim Schließen der temporären opasswd-Datei: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Erstellen der Sicherungsdatei von %s nicht möglich: %m"
#: src/pam_pwcheck.c:80
msgid "Old Password: "
-msgstr "Altes Passwort:"
+msgstr "Altes Passwort: "
#: src/pam_pwcheck.c:81
msgid "New Password: "
-msgstr "Neues Passwort:"
+msgstr "Neues Passwort: "
#: src/pam_pwcheck.c:82
msgid "Reenter New Password: "
-msgstr "Geben Sie das neue Passwort erneut ein:"
+msgstr "Geben Sie das neue Passwort erneut ein: "
#: src/pam_pwcheck.c:83
msgid "Passwords do not match."
@@ -132,7 +132,7 @@
#: src/pam_pwcheck.c:300
msgid "Bad password: "
-msgstr "Ungültiges Passwort:"
+msgstr "Ungültiges Passwort: "
#: src/pam_pwcheck.c:316
msgid "Password has been used already. Choose another."
@@ -147,10 +147,10 @@
msgid "Dictionary path %s is invalid"
msgstr "Wörterbuchpfad %s ist ungültig"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Passwortänderung abgebrochen."
#: src/support.c:138 src/support.c:157
msgid "Password: "
-msgstr "Passwort:"
+msgstr "Passwort: "
Binary files old/pam_pwcheck-3.10.1/po/el.gmo and new/pam_pwcheck-3.10.2/po/el.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/el.po new/pam_pwcheck-3.10.2/po/el.po
--- old/pam_pwcheck-3.10.1/po/el.po 2006-09-14 17:04:35.000000000 +0200
+++ new/pam_pwcheck-3.10.2/po/el.po 2006-12-20 15:26:33.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck.el_GR\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-02-24 15:12+0200\n"
"Last-Translator: Kostas Boukouvalas <quantis(a)hellug.gr>\n"
"Language-Team: Greek <i18ngr(a)lists.hellug.gr>\n"
@@ -75,7 +75,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Σφάλμα κατά το κλείσιμο του προσωρινού αρχείου opasswd: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, fuzzy, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Αδυναμία ανοίγματος προσωρινού αρχείου %s: %m"
@@ -146,7 +146,7 @@
msgid "Dictionary path %s is invalid"
msgstr "Η διαδρομή λεξικού %s είναι λανθασμένη"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Η αλλαγή συνθηματικού ακυρώθηκε."
Binary files old/pam_pwcheck-3.10.1/po/es.gmo and new/pam_pwcheck-3.10.2/po/es.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/es.po new/pam_pwcheck-3.10.2/po/es.po
--- old/pam_pwcheck-3.10.1/po/es.po 2006-11-06 15:27:00.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/es.po 2006-12-20 15:26:33.000000000 +0100
@@ -5,8 +5,8 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
-"PO-Revision-Date: 2006-11-02 14:07\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
+"PO-Revision-Date: 2006-11-20 10:07\n"
"Last-Translator: Novell Language <language(a)novell.com>\n"
"Language-Team: Novell Language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -74,22 +74,22 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Error al cerrar el archivo temporal opasswd: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "No es posible crear una copia de seguridad de %s: %m"
#: src/pam_pwcheck.c:80
msgid "Old Password: "
-msgstr "Contraseña anterior:"
+msgstr "Contraseña anterior: "
#: src/pam_pwcheck.c:81
msgid "New Password: "
-msgstr "Contraseña nueva:"
+msgstr "Contraseña nueva: "
#: src/pam_pwcheck.c:82
msgid "Reenter New Password: "
-msgstr "Vuelva a introducir la nueva contraseña:"
+msgstr "Vuelva a introducir la nueva contraseña: "
#: src/pam_pwcheck.c:83
msgid "Passwords do not match."
@@ -130,7 +130,7 @@
#: src/pam_pwcheck.c:300
msgid "Bad password: "
-msgstr "Contraseña incorrecta:"
+msgstr "Contraseña incorrecta: "
#: src/pam_pwcheck.c:316
msgid "Password has been used already. Choose another."
@@ -145,10 +145,10 @@
msgid "Dictionary path %s is invalid"
msgstr "La vía del diccionario %s no es válida"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Cambio de contraseña cancelado."
#: src/support.c:138 src/support.c:157
msgid "Password: "
-msgstr "Contraseña:"
+msgstr "Contraseña: "
Binary files old/pam_pwcheck-3.10.1/po/fi.gmo and new/pam_pwcheck-3.10.2/po/fi.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/fi.po new/pam_pwcheck-3.10.2/po/fi.po
--- old/pam_pwcheck-3.10.1/po/fi.po 2006-11-06 15:27:00.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/fi.po 2006-12-20 15:26:33.000000000 +0100
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-10-24 21:51+0300\n"
"Last-Translator: Jyri Palokangas <jmp(a)netti.fi>\n"
"Language-Team: Suomi <yast-trans-fi(a)kotoistaminen.novell.fi>\n"
@@ -77,7 +77,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Virhe suljettaessa väliaikaista opasswd-tiedostoa:%s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Varmuuskopion luonti %s tiedostosta ei onnistunut: %m"
@@ -148,7 +148,7 @@
msgid "Dictionary path %s is invalid"
msgstr "Sanakirjan polku %s ei kelpaa"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Salasanan vaihto keskeytettiin."
Binary files old/pam_pwcheck-3.10.1/po/fr.gmo and new/pam_pwcheck-3.10.2/po/fr.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/fr.po new/pam_pwcheck-3.10.2/po/fr.po
--- old/pam_pwcheck-3.10.1/po/fr.po 2006-11-06 15:27:00.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/fr.po 2006-12-20 15:26:33.000000000 +0100
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-11-02 14:16\n"
"Last-Translator: Novell Language <language(a)novell.com>\n"
"Language-Team: Novell Language <language(a)novell.com>\n"
@@ -74,7 +74,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Erreur lors de la fermeture du fichier temporaire opasswd : %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Impossible de créer le fichier de sauvegarde de %s : %m"
@@ -145,7 +145,7 @@
msgid "Dictionary path %s is invalid"
msgstr "Chemin du dictionnaire %s non valide"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Annulation de la modification du mot de passe."
Binary files old/pam_pwcheck-3.10.1/po/hr.gmo and new/pam_pwcheck-3.10.2/po/hr.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/hr.po new/pam_pwcheck-3.10.2/po/hr.po
--- old/pam_pwcheck-3.10.1/po/hr.po 1970-01-01 01:00:00.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/hr.po 2006-12-20 15:40:28.000000000 +0100
@@ -0,0 +1,159 @@
+# translation of pam_pwcheck.hr.po to Croatian
+# @TITLE@
+# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg
+#
+# This file is distributed under the same license as @PACKAGE@ package. FIRST
+#
+# Krešimir Jozić <kjozic(a)gmail.com>, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: pam_pwcheck.hr\n"
+"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
+"PO-Revision-Date: 2006-12-02 19:36+0000\n"
+"Last-Translator: Krešimir Jozić <kjozic(a)gmail.com>\n"
+"Language-Team: Croatian <en(a)li.org>\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"
+"X-Generator: KBabel 1.11.4\n"
+
+#: src/logindefs.c:201 src/logindefs.c:227
+#, c-format
+msgid "%s contains invalid numerical value: %s.\n"
+msgstr "%s sadrži neispravnu numeričku vrijednost: %s.\n"
+
+#: src/opasswd.c:119
+#, c-format
+msgid "Cannot open %s for reading: %s"
+msgstr "Ne mogu otvoriti %s za čitanje: %s"
+
+#: src/opasswd.c:128
+#, c-format
+msgid "Unable to obtain entropy from %s"
+msgstr "Ne mogu dobaviti entropiju iz %s"
+
+#: src/opasswd.c:143
+msgid "Unable to generate a salt. Check your crypt settings."
+msgstr "Ne mogu generirati uzorak. Provjerite postavke šifriranja."
+
+#: src/opasswd.c:353
+#, c-format
+msgid "Creating %s"
+msgstr "Stvaram %s"
+
+#: src/opasswd.c:360 src/opasswd.c:410
+#, c-format
+msgid "Cannot open %s: %m"
+msgstr "Ne mogu otvoriti %s: %m"
+
+#: src/opasswd.c:368
+#, c-format
+msgid "Cannot stat %s: %m"
+msgstr "Ne mogu napraviti operaciju stat %s: %m"
+
+#: src/opasswd.c:379
+#, c-format
+msgid "Cannot create %s temp file: %m"
+msgstr "Ne mogu stvoriti %s privremenu datoteku: %m"
+
+#: src/opasswd.c:387 src/opasswd.c:398
+#, c-format
+msgid "Cannot set permissions of %s temp file: %m"
+msgstr "Ne mogu postaviti dozvole %s privremene datoteke: %m"
+
+#: src/opasswd.c:391 src/opasswd.c:402
+#, c-format
+msgid "Cannot set owner/group of %s temp file: %m"
+msgstr "Ne mogu postaviti vlasnika/grupu %s privremene datoteke: %m"
+
+#: src/opasswd.c:565
+#, c-format
+msgid "Error while closing old opasswd file: %s"
+msgstr "Greška kod zatvaranja stare opasswd datoteke: %s"
+
+#: src/opasswd.c:575
+#, c-format
+msgid "Error while closing temporary opasswd file: %s"
+msgstr "Greška kod zatvaranja privremene opasswd datoteke: %s"
+
+#: src/opasswd.c:585
+#, c-format
+msgid "Cannot create backup file of %s: %m"
+msgstr "Ne mogu stvoriti rezervnu datoteku od %s: %m"
+
+#: src/pam_pwcheck.c:80
+msgid "Old Password: "
+msgstr "Stara lozinka:"
+
+#: src/pam_pwcheck.c:81
+msgid "New Password: "
+msgstr "Nova lozinka: "
+
+#: src/pam_pwcheck.c:82
+msgid "Reenter New Password: "
+msgstr "Ponovno unesite lozinku: "
+
+#: src/pam_pwcheck.c:83
+msgid "Passwords do not match."
+msgstr "Lozinke se ne podudaraju."
+
+#: src/pam_pwcheck.c:219
+msgid "You must choose a new password."
+msgstr "Morate izabrati novu lozinku."
+
+#: src/pam_pwcheck.c:230
+msgid "Bad password: a palindrome"
+msgstr "Loša lozinka: palindrom"
+
+#: src/pam_pwcheck.c:232
+msgid "Bad password: case changes only"
+msgstr "Loša lozinka: samo promijenjena veličina slova"
+
+#: src/pam_pwcheck.c:234
+msgid "Bad password: too similar"
+msgstr "Loša lozinka: previše slična"
+
+#: src/pam_pwcheck.c:236
+msgid "Bad password: too simple"
+msgstr "Loša lozinka: previše jednostavna"
+
+#: src/pam_pwcheck.c:238
+msgid "Bad password: rotated"
+msgstr "Loša lozinka: rotirana"
+
+#: src/pam_pwcheck.c:260
+msgid "Bad password: too short"
+msgstr "Loša lozinka: previše kratka"
+
+#: src/pam_pwcheck.c:279
+#, c-format
+msgid "Password will be truncated to %d characters."
+msgstr "Lozinka će biti odrezana na %d znakova."
+
+#: src/pam_pwcheck.c:300
+msgid "Bad password: "
+msgstr "Loša lozinka: "
+
+#: src/pam_pwcheck.c:316
+msgid "Password has been used already. Choose another."
+msgstr "Lozinka je već korištena. Izaberite novu."
+
+#: src/pam_pwcheck.c:357
+msgid "Cannot get options"
+msgstr "Ne mogu dohvatiti izbore"
+
+#: src/pam_pwcheck.c:401
+#, c-format
+msgid "Dictionary path %s is invalid"
+msgstr "Putanja rječnika %s je neispravna"
+
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
+msgid "Password change aborted."
+msgstr "Promijena lozinke prekinuta."
+
+#: src/support.c:138 src/support.c:157
+msgid "Password: "
+msgstr "Lozinka: "
Binary files old/pam_pwcheck-3.10.1/po/hu.gmo and new/pam_pwcheck-3.10.2/po/hu.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/hu.po new/pam_pwcheck-3.10.2/po/hu.po
--- old/pam_pwcheck-3.10.1/po/hu.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/hu.po 2006-12-20 15:30:53.000000000 +0100
@@ -1,20 +1,20 @@
# translation of pam_pwcheck.hu.po to Hungarian
# Copyright (C) 2006 Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
-# Kalman Kemenczy <kkemenczy(a)novell.com>, 2006.
#
+# Kalman Kemenczy <kkemenczy(a)novell.com>, 2006.
msgid ""
msgstr ""
"Project-Id-Version: pam_pwcheck.hu\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
-"PO-Revision-Date: 2006-02-20 17:48+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
+"PO-Revision-Date: 2006-12-12 12:41+0100\n"
"Last-Translator: Kalman Kemenczy <kkemenczy(a)novell.com>\n"
-"Language-Team: Hungarian <en(a)li.org>\n"
+"Language-Team: Hungarian <hu(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.10.2\n"
+"X-Generator: KBabel 1.11.4\n"
#: src/logindefs.c:201 src/logindefs.c:227
#, c-format
@@ -76,22 +76,22 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Hiba az ideiglenes opasswd fájl bezárása közben: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
-msgstr "%s fájl mwntése nem hozható létre: %m"
+msgstr "%s fájl mentése nem hozható létre: %m"
#: src/pam_pwcheck.c:80
msgid "Old Password: "
-msgstr "Régi jelszó:"
+msgstr "Régi jelszó: "
#: src/pam_pwcheck.c:81
msgid "New Password: "
-msgstr "Új jelszó:"
+msgstr "Új jelszó: "
#: src/pam_pwcheck.c:82
msgid "Reenter New Password: "
-msgstr "Új jelszó mégegyszer:"
+msgstr "Új jelszó ismét: "
#: src/pam_pwcheck.c:83
msgid "Passwords do not match."
@@ -147,10 +147,10 @@
msgid "Dictionary path %s is invalid"
msgstr "A szótár elérési út (%s) érvénytelen"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Jelszóváltás megszakítva."
#: src/support.c:138 src/support.c:157
msgid "Password: "
-msgstr "Jelszó:"
+msgstr "Jelszó: "
Binary files old/pam_pwcheck-3.10.1/po/id.gmo and new/pam_pwcheck-3.10.2/po/id.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/id.po new/pam_pwcheck-3.10.2/po/id.po
--- old/pam_pwcheck-3.10.1/po/id.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/id.po 2006-12-20 15:26:33.000000000 +0100
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-10-12 19:59+0700\n"
"Last-Translator: Tedi Heriyanto <tedi.heriyanto(a)gmail.com>\n"
"Language-Team: Indonesian <i18n(a)suse.de>\n"
@@ -78,7 +78,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Gagal ketika menutup file opasswd temporer: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Tidak dapat membuat file backup %s: %m"
@@ -149,7 +149,7 @@
msgid "Dictionary path %s is invalid"
msgstr "Path kamus %s tidak valid"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Perubahan password dibatalkan."
Binary files old/pam_pwcheck-3.10.1/po/it.gmo and new/pam_pwcheck-3.10.2/po/it.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/it.po new/pam_pwcheck-3.10.2/po/it.po
--- old/pam_pwcheck-3.10.1/po/it.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/it.po 2006-12-20 15:26:33.000000000 +0100
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-11-03 15:41\n"
"Last-Translator: Novell Language <language(a)novell.com>\n"
"Language-Team: Novell Language <language(a)novell.com>\n"
@@ -74,22 +74,22 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Errore durante la chiusura file opasswd temporaneo: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Impossibile creare il file di backup di %s: %m"
#: src/pam_pwcheck.c:80
msgid "Old Password: "
-msgstr "Parola d'ordine precedente:"
+msgstr "Parola d'ordine precedente: "
#: src/pam_pwcheck.c:81
msgid "New Password: "
-msgstr "Nuova password:"
+msgstr "Nuova password: "
#: src/pam_pwcheck.c:82
msgid "Reenter New Password: "
-msgstr "Reinserire nuova parola d'ordine:"
+msgstr "Reinserire nuova parola d'ordine: "
#: src/pam_pwcheck.c:83
msgid "Passwords do not match."
@@ -130,7 +130,7 @@
#: src/pam_pwcheck.c:300
msgid "Bad password: "
-msgstr "Parola d'ordine errata:"
+msgstr "Parola d'ordine errata: "
#: src/pam_pwcheck.c:316
msgid "Password has been used already. Choose another."
@@ -145,10 +145,10 @@
msgid "Dictionary path %s is invalid"
msgstr "Percorso dizionario %s non valido"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Cambiamento parola d'ordine interrotto."
#: src/support.c:138 src/support.c:157
msgid "Password: "
-msgstr "Password"
+msgstr "Password: "
Binary files old/pam_pwcheck-3.10.1/po/ja.gmo and new/pam_pwcheck-3.10.2/po/ja.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/ja.po new/pam_pwcheck-3.10.2/po/ja.po
--- old/pam_pwcheck-3.10.1/po/ja.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/ja.po 2006-12-20 15:26:33.000000000 +0100
@@ -5,8 +5,8 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
-"PO-Revision-Date: 2006-11-03 13:52\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
+"PO-Revision-Date: 2006-11-20 11:36\n"
"Last-Translator: Novell Language <language(a)novell.com>\n"
"Language-Team: Novell Language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -72,22 +72,22 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "一時opasswdファイルを閉じている間のエラー: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "%s のバックアップファイルを作成できません: %m"
#: src/pam_pwcheck.c:80
msgid "Old Password: "
-msgstr "古いパスワード:"
+msgstr "古いパスワード: "
#: src/pam_pwcheck.c:81
msgid "New Password: "
-msgstr "新しいパスワード:"
+msgstr "新しいパスワード: "
#: src/pam_pwcheck.c:82
msgid "Reenter New Password: "
-msgstr "新しいパスワードの再入力:"
+msgstr "新しいパスワードの再入力: "
#: src/pam_pwcheck.c:83
msgid "Passwords do not match."
@@ -128,7 +128,7 @@
#: src/pam_pwcheck.c:300
msgid "Bad password: "
-msgstr "よくないパスワード:"
+msgstr "よくないパスワード: "
#: src/pam_pwcheck.c:316
msgid "Password has been used already. Choose another."
@@ -144,10 +144,10 @@
msgid "Dictionary path %s is invalid"
msgstr "辞書パス%sが無効です"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "パスワード変更が中止されました。"
#: src/support.c:138 src/support.c:157
msgid "Password: "
-msgstr "パスワード:"
+msgstr "パスワード: "
Binary files old/pam_pwcheck-3.10.1/po/km.gmo and new/pam_pwcheck-3.10.2/po/km.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/km.po new/pam_pwcheck-3.10.2/po/km.po
--- old/pam_pwcheck-3.10.1/po/km.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/km.po 2006-12-20 15:26:33.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck.km\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-10-06 16:08+0700\n"
"Last-Translator: auk piseth <piseth_dv(a)khmeros.info>\n"
"Language-Team: khmer <support(a)khmeros.info>\n"
@@ -76,7 +76,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "កំហុសខណៈពេលបិទឯកសារពាក្យសម្ងាត់បណ្ដោះអាសន្ន ៖ %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "មិនអាចបង្កើតឯកសារបម្រុងទុករបស់ %s បានទេ ៖ %m"
@@ -147,7 +147,7 @@
msgid "Dictionary path %s is invalid"
msgstr "ផ្លូវវចនានុក្រម %s មិនត្រឹមត្រូវ"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "ការផ្លាស់ប្ដូរពាក្យសម្ងាត់បានបោះបង់ ។"
Binary files old/pam_pwcheck-3.10.1/po/lt.gmo and new/pam_pwcheck-3.10.2/po/lt.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/lt.po new/pam_pwcheck-3.10.2/po/lt.po
--- old/pam_pwcheck-3.10.1/po/lt.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/lt.po 2006-12-20 15:26:33.000000000 +0100
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: @PACKAGE@\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-10-13 20:00+0200\n"
"Last-Translator: Andrius Štikonas <stikonas(a)gmail.com>\n"
"Language-Team: Lithuanian <i18n(a)suse.de>\n"
@@ -77,7 +77,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr ""
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Negaliu padaryti bylos %s atsarginės kopijos: %m"
@@ -151,7 +151,7 @@
msgid "Dictionary path %s is invalid"
msgstr ""
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Slaptažodžio keitimas atfauktas."
Binary files old/pam_pwcheck-3.10.1/po/nb.gmo and new/pam_pwcheck-3.10.2/po/nb.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/nb.po new/pam_pwcheck-3.10.2/po/nb.po
--- old/pam_pwcheck-3.10.1/po/nb.po 2006-11-06 11:24:33.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/nb.po 2006-12-20 15:26:33.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-10-13 17:42+0200\n"
"Last-Translator: Olav Pettershagen <olav.pet(a)online.no>\n"
"Language-Team: <nb(a)li.org>\n"
@@ -75,7 +75,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Feil ved lukking av midlertidig opasswd-fil: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Kan ikke lage sikkerhetskopi av %s: %m"
@@ -146,7 +146,7 @@
msgid "Dictionary path %s is invalid"
msgstr "Ordbokstien %s er ugyldig"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Passordendring avbrutt."
Binary files old/pam_pwcheck-3.10.1/po/nl.gmo and new/pam_pwcheck-3.10.2/po/nl.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/nl.po new/pam_pwcheck-3.10.2/po/nl.po
--- old/pam_pwcheck-3.10.1/po/nl.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/nl.po 2006-12-20 15:26:33.000000000 +0100
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck.nl\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-09-07 22:54+0200\n"
"Last-Translator: Rinse de Vries <rinsedevries(a)kde.nl>\n"
"Language-Team: Dutch <kde-i18n-nl(a)kde.org>\n"
@@ -77,7 +77,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Fout bij sluiten van tijdelijk opasswd-bestand: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Kan geen reservekopie aanmaken van %s: %m"
@@ -148,7 +148,7 @@
msgid "Dictionary path %s is invalid"
msgstr "Woordenboekpad %s is ongeldig"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Wijzigen van wachtwoorden afgebroken."
Binary files old/pam_pwcheck-3.10.1/po/pl.gmo and new/pam_pwcheck-3.10.2/po/pl.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/pl.po new/pam_pwcheck-3.10.2/po/pl.po
--- old/pam_pwcheck-3.10.1/po/pl.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/pl.po 2006-12-20 15:26:33.000000000 +0100
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck.pl\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-10-12 10:05+0200\n"
"Last-Translator: Marcin Karpeta <asedas[at]pnet.pl>\n"
"Language-Team: Polish\n"
@@ -81,7 +81,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Wystąpił błąd podczas zamykania pliku tymczasowego opasswd: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Nie można utworzyć kopii pliku %s: %m"
@@ -152,7 +152,7 @@
msgid "Dictionary path %s is invalid"
msgstr "Ścieżka do słownika %s jest nieprawidłowa"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Przerwanie zmiany hasła."
Binary files old/pam_pwcheck-3.10.1/po/pt.gmo and new/pam_pwcheck-3.10.2/po/pt.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/pt.po new/pam_pwcheck-3.10.2/po/pt.po
--- old/pam_pwcheck-3.10.1/po/pt.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/pt.po 2006-12-20 15:26:33.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2005-08-05 23:58+0100\n"
"Last-Translator: Antonio Cardoso Martins <digiplan(a)netvisao.pt>\n"
"Language-Team: portuguese\n"
@@ -76,7 +76,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Erro durante o encerramento do ficheiro temporário de opasswd: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, fuzzy, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Impossível criar arquivo temporário (%s): %m"
@@ -147,7 +147,7 @@
msgid "Dictionary path %s is invalid"
msgstr "O caminho %s para o dicionário é inválido"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Alteração da palavra passe interrompida."
Binary files old/pam_pwcheck-3.10.1/po/pt_BR.gmo and new/pam_pwcheck-3.10.2/po/pt_BR.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/pt_BR.po new/pam_pwcheck-3.10.2/po/pt_BR.po
--- old/pam_pwcheck-3.10.1/po/pt_BR.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/pt_BR.po 2006-12-20 15:26:33.000000000 +0100
@@ -1,14 +1,12 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
+# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg
+# This file is distributed under the same license as the package.
+#
msgid ""
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
-"PO-Revision-Date: 2005-08-18 15:02+0000\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
+"PO-Revision-Date: 2006-11-06 13:58\n"
"Last-Translator: Novell Language <language(a)novell.com>\n"
"Language-Team: Novell Language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -75,7 +73,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Erro ao fechar arquivo de senha temporário: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Impossível criar arquivo de backup de %s: %m"
@@ -146,7 +144,7 @@
msgid "Dictionary path %s is invalid"
msgstr "O caminho do dicionário %s é inválido"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Mudança de senha interrompida."
Binary files old/pam_pwcheck-3.10.1/po/ru.gmo and new/pam_pwcheck-3.10.2/po/ru.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/ru.po new/pam_pwcheck-3.10.2/po/ru.po
--- old/pam_pwcheck-3.10.1/po/ru.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/ru.po 2006-12-20 15:26:33.000000000 +0100
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck.ru\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-11-03 11:42+0200\n"
"Last-Translator: Aleksey Osipov <aliks-os(a)yandex.ru>\n"
"Language-Team: Russian <i18n(a)suse.de>\n"
@@ -79,7 +79,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "Ошибка при закрытии временного opasswd файла: %s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "Невозможно создать резервный фай %s: %m"
@@ -151,7 +151,7 @@
msgid "Dictionary path %s is invalid"
msgstr "Неверный путь каталога %s"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Прервано изменение пароля."
Binary files old/pam_pwcheck-3.10.1/po/sv.gmo and new/pam_pwcheck-3.10.2/po/sv.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/sv.po new/pam_pwcheck-3.10.2/po/sv.po
--- old/pam_pwcheck-3.10.1/po/sv.po 2006-11-06 15:27:01.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/sv.po 2006-12-20 15:26:33.000000000 +0100
@@ -9,8 +9,8 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
-"PO-Revision-Date: 2006-10-22 12:51+0200\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
+"PO-Revision-Date: 2006-11-16 18:54+0100\n"
"Last-Translator: Mattias Newzella <newzella(a)linux.se>\n"
"Language-Team: Swedish <sv(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr ""
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr ""
@@ -150,7 +150,7 @@
msgid "Dictionary path %s is invalid"
msgstr ""
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "Lösenordsbyte avbröts."
Binary files old/pam_pwcheck-3.10.1/po/uk.gmo and new/pam_pwcheck-3.10.2/po/uk.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/uk.po new/pam_pwcheck-3.10.2/po/uk.po
--- old/pam_pwcheck-3.10.1/po/uk.po 1970-01-01 01:00:00.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/uk.po 2006-12-20 15:40:28.000000000 +0100
@@ -0,0 +1,159 @@
+# Translation of pam_pwcheck.uk.po to Ukrainian
+# @TITLE@
+# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg
+#
+# This file is distributed under the same license as @PACKAGE@ package. FIRST
+#
+# Ivan Petrouchtchak <ivanpetrouchtchak(a)yahoo.com>, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: pam_pwcheck.uk\n"
+"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
+"PO-Revision-Date: 2006-11-06 14:54-0800\n"
+"Last-Translator: Ivan Petrouchtchak <ivanpetrouchtchak(a)yahoo.com>\n"
+"Language-Team: Ukrainian <translation(a)linux.org.ua>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\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"
+
+#: src/logindefs.c:201 src/logindefs.c:227
+#, c-format
+msgid "%s contains invalid numerical value: %s.\n"
+msgstr "%s містить не чинне цифрове значення: %s.\n"
+
+#: src/opasswd.c:119
+#, c-format
+msgid "Cannot open %s for reading: %s"
+msgstr "Не вдається відкрити %s для читання: %s"
+
+#: src/opasswd.c:128
+#, c-format
+msgid "Unable to obtain entropy from %s"
+msgstr "Не вдається отримати ентропію з %s"
+
+#: src/opasswd.c:143
+msgid "Unable to generate a salt. Check your crypt settings."
+msgstr "Не вдається створити salt. Перевірте параметри шифрування."
+
+#: src/opasswd.c:353
+#, c-format
+msgid "Creating %s"
+msgstr "Створення %s"
+
+#: src/opasswd.c:360 src/opasswd.c:410
+#, c-format
+msgid "Cannot open %s: %m"
+msgstr "Не вдається відкрити %s: %m"
+
+#: src/opasswd.c:368
+#, c-format
+msgid "Cannot stat %s: %m"
+msgstr "Неможливо stat %s: %m"
+
+#: src/opasswd.c:379
+#, c-format
+msgid "Cannot create %s temp file: %m"
+msgstr "Не вдається створити %s тимчасовий файл: %m"
+
+#: src/opasswd.c:387 src/opasswd.c:398
+#, c-format
+msgid "Cannot set permissions of %s temp file: %m"
+msgstr "Не вдається вказати права доступу %s тимчасового файла: %m"
+
+#: src/opasswd.c:391 src/opasswd.c:402
+#, c-format
+msgid "Cannot set owner/group of %s temp file: %m"
+msgstr "Не вдається вказати власника/групу %s тимчасового файла: %m"
+
+#: src/opasswd.c:565
+#, c-format
+msgid "Error while closing old opasswd file: %s"
+msgstr "Помилка під час закриття старого файла паролів: %s"
+
+#: src/opasswd.c:575
+#, c-format
+msgid "Error while closing temporary opasswd file: %s"
+msgstr "Помилка під час закриття тимчасового файла паролів: %s"
+
+#: src/opasswd.c:585
+#, c-format
+msgid "Cannot create backup file of %s: %m"
+msgstr "Не вдається створити резервний файл для %s: %m"
+
+#: src/pam_pwcheck.c:80
+msgid "Old Password: "
+msgstr "Старий пароль: "
+
+#: src/pam_pwcheck.c:81
+msgid "New Password: "
+msgstr "Новий пароль: "
+
+#: src/pam_pwcheck.c:82
+msgid "Reenter New Password: "
+msgstr "Знов введіть новий пароль: "
+
+#: src/pam_pwcheck.c:83
+msgid "Passwords do not match."
+msgstr "Паролі не співпадають."
+
+#: src/pam_pwcheck.c:219
+msgid "You must choose a new password."
+msgstr "Ви мусите вибрати новий пароль."
+
+#: src/pam_pwcheck.c:230
+msgid "Bad password: a palindrome"
+msgstr "Поганий пароль: паліндром"
+
+#: src/pam_pwcheck.c:232
+msgid "Bad password: case changes only"
+msgstr "Поганий пароль: тільки зміна реєстру літер"
+
+#: src/pam_pwcheck.c:234
+msgid "Bad password: too similar"
+msgstr "Поганий пароль: надто подібний"
+
+#: src/pam_pwcheck.c:236
+msgid "Bad password: too simple"
+msgstr "Поганий пароль: дуже простий"
+
+#: src/pam_pwcheck.c:238
+msgid "Bad password: rotated"
+msgstr "Поганий пароль: вже використовувався"
+
+#: src/pam_pwcheck.c:260
+msgid "Bad password: too short"
+msgstr "Поганий пароль: закороткий"
+
+#: src/pam_pwcheck.c:279
+#, c-format
+msgid "Password will be truncated to %d characters."
+msgstr "Пароль буде обрізано до %d символів."
+
+#: src/pam_pwcheck.c:300
+msgid "Bad password: "
+msgstr "Поганий пароль: "
+
+#: src/pam_pwcheck.c:316
+msgid "Password has been used already. Choose another."
+msgstr "Пароль вже вживався. Виберіть інший пароль."
+
+#: src/pam_pwcheck.c:357
+msgid "Cannot get options"
+msgstr "Неможливо отримати параметри"
+
+#: src/pam_pwcheck.c:401
+#, c-format
+msgid "Dictionary path %s is invalid"
+msgstr "Не чинний шлях словника %s"
+
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
+msgid "Password change aborted."
+msgstr "Зміну пароля перервано."
+
+#: src/support.c:138 src/support.c:157
+msgid "Password: "
+msgstr "Пароль: "
Binary files old/pam_pwcheck-3.10.1/po/zh_CN.gmo and new/pam_pwcheck-3.10.2/po/zh_CN.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/zh_CN.po new/pam_pwcheck-3.10.2/po/zh_CN.po
--- old/pam_pwcheck-3.10.1/po/zh_CN.po 2006-11-06 11:25:35.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/zh_CN.po 2006-12-20 15:26:33.000000000 +0100
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-11-02 14:21\n"
"Last-Translator: Novell Language <language(a)novell.com>\n"
"Language-Team: Novell Language <language(a)novell.com>\n"
@@ -72,7 +72,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "关闭旧的临时 opasswd 文件时出错:%s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "无法创建 %s 的备份文件:%m"
@@ -143,7 +143,7 @@
msgid "Dictionary path %s is invalid"
msgstr "字典路径 %s 无效"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "口令更改已中止"
Binary files old/pam_pwcheck-3.10.1/po/zh_TW.gmo and new/pam_pwcheck-3.10.2/po/zh_TW.gmo differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/pam_pwcheck-3.10.1/po/zh_TW.po new/pam_pwcheck-3.10.2/po/zh_TW.po
--- old/pam_pwcheck-3.10.1/po/zh_TW.po 2006-11-06 11:25:29.000000000 +0100
+++ new/pam_pwcheck-3.10.2/po/zh_TW.po 2006-12-20 15:26:33.000000000 +0100
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: pam_pwcheck\n"
"Report-Msgid-Bugs-To: kukuk(a)thkukuk.de\n"
-"POT-Creation-Date: 2006-01-13 23:03+0100\n"
+"POT-Creation-Date: 2006-12-20 15:25+0100\n"
"PO-Revision-Date: 2006-11-02 14:23\n"
"Last-Translator: Novell Language <language(a)novell.com>\n"
"Language-Team: Novell Language <language(a)novell.com>\n"
@@ -72,7 +72,7 @@
msgid "Error while closing temporary opasswd file: %s"
msgstr "關閉暫存 opasswd 檔案時發生錯誤:%s"
-#: src/opasswd.c:584
+#: src/opasswd.c:585
#, c-format
msgid "Cannot create backup file of %s: %m"
msgstr "無法建立 %s 備份檔: %m"
@@ -143,7 +143,7 @@
msgid "Dictionary path %s is invalid"
msgstr "字典路徑 %s 無效"
-#: src/pam_pwcheck.c:663 src/pam_pwcheck.c:706
+#: src/pam_pwcheck.c:597 src/pam_pwcheck.c:640
msgid "Password change aborted."
msgstr "密碼變更已中止。"
++++++ pam_unix2-2.1.1.tar.bz2 -> pam_unix2-2.3.tar.bz2 ++++++
++++ 14052 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 module-init-tools
checked in at Wed Dec 20 18:18:13 CET 2006.
--------
--- module-init-tools/module-init-tools.changes 2006-12-12 21:12:33.000000000 +0100
+++ /mounts/work_src_done/STABLE/module-init-tools/module-init-tools.changes 2006-12-20 15:39:10.000000000 +0100
@@ -1,0 +2,7 @@
+Wed Dec 20 15:18:41 CET 2006 - mmarek(a)suse.cz
+
+- make the fastgetline() function reentrant (at a little
+ performance cost) to avoid using freed memory when recursively
+ reading config files [#229661]
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ module-init-tools.spec ++++++
--- /var/tmp/diff_new_pack.X0j6zx/_old 2006-12-20 18:14:45.000000000 +0100
+++ /var/tmp/diff_new_pack.X0j6zx/_new 2006-12-20 18:14:45.000000000 +0100
@@ -13,7 +13,7 @@
Name: module-init-tools
BuildRequires: dietlibc dietzlib
Version: 3.2.2
-Release: 63
+Release: 67
%define ver 3.2.2
License: GNU General Public License (GPL)
Group: System/Kernel
@@ -50,10 +50,10 @@
%description
Utilities for loading kernel modules. Included are 'insmod', 'lsmod',
'rmmod', 'depmod', and 'modprobe'. The configuration file
-/etc/modutils.conf can be used to pass parameters to the modules.
-'depmod' should be used after compiling a new kernel to generate the
-dependency information. 'insmod' does not use the dependency nor the
-options file. Therefore, 'modprobe' is normally used to load a module.
+/etc/modprobe.* can be used to pass parameters to the modules. 'depmod'
+should be used after compiling a new kernel to generate the dependency
+information. 'insmod' does not use the dependency nor the options file.
+Therefore, 'modprobe' is normally used to load a module.
@@ -150,6 +150,10 @@
/etc/modprobe.d
%changelog -n module-init-tools
+* Wed Dec 20 2006 - mmarek(a)suse.cz
+- make the fastgetline() function reentrant (at a little
+ performance cost) to avoid using freed memory when recursively
+ reading config files [#229661]
* Tue Dec 12 2006 - mmarek(a)suse.cz
- fixed options-priority.diff [#226907]
* Mon Nov 06 2006 - nadvornik(a)suse.cz
++++++ module-init-tools-3.2.2-modprobe-fastgetline.diff ++++++
--- /var/tmp/diff_new_pack.X0j6zx/_old 2006-12-20 18:14:46.000000000 +0100
+++ /var/tmp/diff_new_pack.X0j6zx/_new 2006-12-20 18:14:46.000000000 +0100
@@ -1,6 +1,6 @@
--- modprobe.c
+++ modprobe.c
-@@ -127,6 +127,7 @@
+@@ -127,6 +127,7 @@ static void print_usage(const char *prog
exit(1);
}
@@ -8,17 +8,16 @@
static int fgetc_wrapped(FILE *file, unsigned int *linenum)
{
for (;;) {
-@@ -165,6 +166,49 @@
+@@ -165,6 +166,46 @@ static char *getline_wrapped(FILE *file,
buf[i++] = ch;
}
}
-+#define GETL_FREE(x) free(x)
+#else
-+char *lnbuf = 0; size_t blen = 0;
+char *lnbuf2 = 0; size_t blen2 = 0;
+static char *fastgetline(FILE* file, unsigned int *linenum)
+{
+ ssize_t n, n2;
++ char *lnbuf = 0; size_t blen = 0;
+ n = getline(&lnbuf, &blen, file);
+ if (n < 0) {
+ if (lnbuf)
@@ -34,7 +33,7 @@
+ while (n && lnbuf[n-1] == '\\') {
+ lnbuf[--n] = 0;
+ n2 = getline(&lnbuf2, &blen2, file);
-+ if (n2 < 0)
++ if (n2 < 0)
+ return lnbuf; /* We'll be called again ... */
+ if (n2 && lnbuf2[n2-1] == '\n') /* should always be true */
+ lnbuf2[--n2] = 0;
@@ -52,84 +51,7 @@
+ return lnbuf;
+}
+#define getline_wrapped fastgetline
-+#define GETL_FREE(x) do {} while (0)
+#endif
-+
static struct module *find_module(const char *filename, struct list_head *list)
{
-@@ -323,7 +367,7 @@
- from boot/ */
- while (!done && (line = getline_wrapped(modules_dep, NULL)) != NULL) {
- done = add_modules_dep_line(line, start_name, list);
-- free(line);
-+ GETL_FREE(line);
- }
- fclose(modules_dep);
- free(modules_dep_name);
-@@ -392,18 +436,18 @@
- if (streq(entry, "Loading")
- || streq(entry, "Unloading")) {
- usleep(100000);
-- free(line);
-+ GETL_FREE(line);
- fclose(proc_modules);
- goto again;
- }
- }
-
- out:
-- free(line);
-+ GETL_FREE(line);
- fclose(proc_modules);
- return 1;
- }
-- free(line);
-+ GETL_FREE(line);
- }
- fclose(proc_modules);
- return 0;
-@@ -1098,7 +1142,7 @@
- printf("%s\n", line);
- }
- next:
-- free(line);
-+ GETL_FREE(line);
- }
-
- free(wcard);
-@@ -1256,7 +1300,7 @@
- } else
- grammar(cmd, filename, linenum);
-
-- free(line);
-+ GETL_FREE(line);
- }
- fclose(cfile);
- return 1;
-@@ -1280,13 +1324,15 @@
- dir = opendir(filename);
- if (dir) {
- struct dirent *i;
-+ char *dirname;
-+ dirname = strdup(filename);
- while ((i = readdir(dir)) != NULL) {
- if (!streq(i->d_name,".") && !streq(i->d_name,"..") \
- && config_filter(i->d_name)) {
-- char sub[strlen(filename) + 1
-+ char sub[strlen(dirname) + 1
- + strlen(i->d_name) + 1];
-
-- sprintf(sub, "%s/%s", filename, i->d_name);
-+ sprintf(sub, "%s/%s", dirname, i->d_name);
- if (!read_config(sub, name,
- dump_only, removing, options,
- commands, aliases, blacklist))
-@@ -1295,6 +1341,7 @@
- sub, strerror(errno));
- }
- }
-+ free(dirname);
- closedir(dir);
- ret = 1;
- }
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package hplip
checked in at Wed Dec 20 18:14:37 CET 2006.
--------
--- hplip/hplip.changes 2006-10-17 10:48:05.000000000 +0200
+++ /mounts/work_src_done/STABLE/hplip/hplip.changes 2006-12-20 15:16:13.000000000 +0100
@@ -1,0 +2,15 @@
+Wed Dec 20 14:45:25 CET 2006 - jsmeix(a)suse.de
+
+- Updated to version 1.6.12:
+ Three more supported LaserJet printers.
+ Many bug fixes (no Suse bugs).
+ For details see release_notes.html
+ Added SANE_DEBUG_HPAIO support for the hpaio SANE backend.
+ The new models.dat file replaces the .xml files. The hplip_api
+ can be used to get model attributes without running the HPLIP
+ daemons. See hplip_api.h for reference (this affects the Suse
+ Bugzilla bugs #184798 and #184824).
+- Fixed hp-toolbox.wrapper to catch 'error' regardless of the case
+ (see Suse Bugzilla bug #229620).
+
+-------------------------------------------------------------------
Old:
----
hplip-1.6.10.tar.bz2
New:
----
hplip-1.6.12.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ hplip.spec ++++++
--- /var/tmp/diff_new_pack.zUiWxP/_old 2006-12-20 18:13:28.000000000 +0100
+++ /var/tmp/diff_new_pack.zUiWxP/_new 2006-12-20 18:13:28.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package hplip (Version 1.6.10)
+# spec file for package hplip (Version 1.6.12)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -16,13 +16,13 @@
# HPLIP has reached 1.0 status. With this release a date encoded revision number is used:
# x.y.m : x = major release number, y = year (eg: 6 = 2006), m = month (eg: 6a = second release in June)
# Official releases have a 3 digit number and release candidates have a 4 digit number: x.y.m.rc
-Version: 1.6.10
+Version: 1.6.12
Release: 1
-%define hpijsVersion 2.6.10
+%define hpijsVersion 2.6.12
Group: Hardware/Printing
-License: BSD License and BSD-like, GNU General Public License (GPL) - all versions
+License: BSD License and BSD-like, Other License(s), see package
URL: http://hpinkjet.sourceforge.net/
-# URL for Source0: http://superb-west.dl.sourceforge.net/sourceforge/hplip/hplip-1.6.10.tar.gz
+# URL for Source0: http://superb-west.dl.sourceforge.net/sourceforge/hplip/hplip-1.6.12.tar.gz
Source0: %{name}-%{version}.tar.bz2
# Fix "... is used uninitialized ..." warnings:
Patch10: fix-uninitialized-variables.diff
@@ -257,12 +257,12 @@
%{_sbindir}/rc%{name}
%{_datadir}/%{name}/
%{_sbindir}/hpiod
-%{_bindir}/hp-toolbox
%{_bindir}/hp-align
%{_bindir}/hp-check
%{_bindir}/hp-clean
%{_bindir}/hp-colorcal
%{_bindir}/hp-fab
+%{_bindir}/hp-firmware
%{_bindir}/hp-info
%{_bindir}/hp-levels
%{_bindir}/hp-makecopies
@@ -273,6 +273,7 @@
%{_bindir}/hp-setup
%{_bindir}/hp-testpage
%{_bindir}/hp-timedate
+%{_bindir}/hp-toolbox
%{_bindir}/hp-unload
%{_libdir}/python%{py_ver}/site-packages/cupsext*
%{_libdir}/python%{py_ver}/site-packages/pcardext*
@@ -298,6 +299,18 @@
%{_libdir}/libhpip.*
%changelog -n hplip
+* Wed Dec 20 2006 - jsmeix(a)suse.de
+- Updated to version 1.6.12:
+ Three more supported LaserJet printers.
+ Many bug fixes (no Suse bugs).
+ For details see release_notes.html
+ Added SANE_DEBUG_HPAIO support for the hpaio SANE backend.
+ The new models.dat file replaces the .xml files. The hplip_api
+ can be used to get model attributes without running the HPLIP
+ daemons. See hplip_api.h for reference (this affects the Suse
+ Bugzilla bugs #184798 and #184824).
+- Fixed hp-toolbox.wrapper to catch 'error' regardless of the case
+ (see Suse Bugzilla bug #229620).
* Tue Oct 17 2006 - jsmeix(a)suse.de
- Updated to version 1.6.10:
Several more supported LaserJet printers.
++++++ change-doc-install-dir.diff ++++++
--- /var/tmp/diff_new_pack.zUiWxP/_old 2006-12-20 18:13:28.000000000 +0100
+++ /var/tmp/diff_new_pack.zUiWxP/_new 2006-12-20 18:13:28.000000000 +0100
@@ -1,6 +1,6 @@
---- Makefile.am.orig 2006-06-19 16:02:03.000000000 +0200
-+++ Makefile.am 2006-06-19 16:10:29.000000000 +0200
-@@ -10,7 +10,7 @@
+--- Makefile.am.orig 2006-12-14 14:40:24.000000000 +0100
++++ Makefile.am 2006-12-14 14:41:49.000000000 +0100
+@@ -10,7 +10,7 @@ INCLUDES = -Iip -Iapi
hplipdir = $(datadir)/hplip
rundir = /var/run
@@ -9,9 +9,12 @@
doc_DATA = COPYING scan/sane/hpaio.desc
wwwsrc = doc
---- prnt/hpijs/Makefile.am.orig 2006-06-19 16:02:03.000000000 +0200
-+++ prnt/hpijs/Makefile.am 2006-06-19 16:10:58.000000000 +0200
-@@ -1,4 +1,4 @@
+--- prnt/hpijs/Makefile.am.orig 2006-12-14 14:59:55.000000000 +0100
++++ prnt/hpijs/Makefile.am 2006-12-14 15:01:32.000000000 +0100
+@@ -2,7 +2,7 @@ if HPLIP_BUILD
+ INCLUDES = -I../../ip -I../../api
+ endif
+
-docdir = $(datadir)/doc/$(distdir)
+docdir = $(datadir)/doc/packages/hplip
ppddir = $(datadir)/cups/model/manufacturer-PPDs/hplip
++++++ hp-toolbox.wrapper ++++++
--- hplip/hp-toolbox.wrapper 2005-03-08 11:20:09.000000000 +0100
+++ /mounts/work_src_done/STABLE/hplip/hp-toolbox.wrapper 2006-12-20 15:26:31.000000000 +0100
@@ -8,11 +8,13 @@
fi
# If hp-toolbox cannot access a hplip device
-# then it doesn't show up on the X window system
-# it only shows an 'ERROR...' message on stderr
+# then it doesn't show up on the X window system.
+# It only shows an 'ERROR...' or 'error...' message on stderr
# but exits nevertheless with zero exit code.
+# Note that one cannot grep for '^error' because there are leading
+# escape codes (e.g. "esc [ 3 1 ; 0 1 m") in the output lines.
if test -x $( type -p hp-toolbox )
-then hp-toolbox 2>&1 1>/dev/null | grep -q 'ERROR' && $PopupProgram 'No HP all-in-one device found.'
+then hp-toolbox 2>&1 1>/dev/null | grep -q -i 'error' && $PopupProgram 'No HP all-in-one device found (those devices require a special setup).'
else $PopupProgram 'Cannot execute hp-toolbox.'
fi
++++++ hplip-1.6.10.tar.bz2 -> hplip-1.6.12.tar.bz2 ++++++
hplip/hplip-1.6.10.tar.bz2 /mounts/work_src_done/STABLE/hplip/hplip-1.6.12.tar.bz2 differ: char 11, line 1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package gwc
checked in at Wed Dec 20 18:13:21 CET 2006.
--------
--- gwc/gwc.changes 2006-06-16 12:17:02.000000000 +0200
+++ /mounts/work_src_done/STABLE/gwc/gwc.changes 2006-12-20 14:16:58.000000000 +0100
@@ -1,0 +2,7 @@
+Wed Dec 20 14:14:20 CET 2006 - tiwai(a)suse.de
+
+- updated to 0.21-07:
+ * more filter types
+ * fix ALSA support
+
+-------------------------------------------------------------------
Old:
----
gwc-0.20-10b.tar.bz2
gwc-alsa-1.0-fix.dif
New:
----
gwc-0.21-07.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gwc.spec ++++++
--- /var/tmp/diff_new_pack.aJQoHR/_old 2006-12-20 18:11:45.000000000 +0100
+++ /var/tmp/diff_new_pack.aJQoHR/_new 2006-12-20 18:11:45.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package gwc (Version 0.20.10b)
+# spec file for package gwc (Version 0.21.07)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -12,19 +12,18 @@
Name: gwc
BuildRequires: fftw3-devel flac-devel gnutls-devel libglade2-devel libgnomeprintui-devel libgnomeui-devel libsndfile-devel libwnck-devel mDNSResponder-devel update-desktop-files
-%define package_version 0.20-10b
+%define package_version 0.21-07
Summary: GNOME Wave Cleaner--Audio Restoration Application
-Version: 0.20.10b
-Release: 14
-License: GPL
+Version: 0.21.07
+Release: 1
+License: GNU General Public License (GPL)
Group: Productivity/Multimedia/Sound/Editors and Convertors
Source: gwc-%{package_version}.tar.bz2
Source1: gwc.desktop
Source2: gwc.png
Patch: gwc-cflags-fix.dif
Patch1: gwc-meschach-fix.dif
-Patch2: gwc-alsa-1.0-fix.dif
-Patch3: gwc-compile-fix.diff
+Patch2: gwc-compile-fix.diff
URL: http://gwc.sourceforge.net
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Autoreqprov: on
@@ -46,8 +45,7 @@
%setup -n %{name}-%{package_version}
%patch
%patch1
-# %patch2
-%patch3
+%patch2
%build
%{?suse_update_config:%{suse_update_config -f . meschach}}
@@ -73,7 +71,6 @@
%files
%defattr(-,root,root)
%doc README COPYING Changelog TODO
-%doc gwc_help.html
%doc doc
%{_bindir}/gwc
%if %suse_version > 820
@@ -82,6 +79,10 @@
%{_datadir}/pixmaps/*.png
%changelog -n gwc
+* Wed Dec 20 2006 - tiwai(a)suse.de
+- updated to 0.21-07:
+ * more filter types
+ * fix ALSA support
* Fri Jun 16 2006 - schwab(a)suse.de
- Fix syntax error in configure script.
* Wed Jan 25 2006 - mls(a)suse.de
++++++ gwc-0.20-10b.tar.bz2 -> gwc-0.21-07.tar.bz2 ++++++
++++ 14340 lines of diff (skipped)
++++++ gwc-cflags-fix.dif ++++++
--- /var/tmp/diff_new_pack.aJQoHR/_old 2006-12-20 18:11:46.000000000 +0100
+++ /var/tmp/diff_new_pack.aJQoHR/_new 2006-12-20 18:11:46.000000000 +0100
@@ -1,16 +1,5 @@
---- Makefile.in-dist 2005-01-21 18:18:33.506259597 +0100
-+++ Makefile.in 2005-01-21 18:19:44.986598886 +0100
-@@ -22,7 +22,7 @@
- CONFIGDIR = /$(APPNAME)/config/
-
- DEFS = -DDATADIR=\"$(DATADIR)\" -DLIBDIR=\"$(LIBDIR)\" -DAPPNAME=\"$(APPNAME)\" @ALSAHDR@ @FFTWHDR@ @FFTWPREC@
--CFLAGS = -Wall @CFLAGS@ -mcpu=@UNAME_MACHINE@ -march=@UNAME_MACHINE@ @GNOMEUI_CFLAGS@ @SNDFILE_CFLAGS@
-+CFLAGS = -Wall @CFLAGS@ @GNOMEUI_CFLAGS@ @SNDFILE_CFLAGS@
-
- LIBS= meschach.a @GNOMEUI_LIBS@ @SNDFILE_LIBS@ @ALSALIB@ @FFTWLIB@ -lm
-
---- meschach/makefile.in-dist 2005-10-05 14:51:59.000000000 +0200
-+++ meschach/makefile.in 2005-10-05 14:52:27.000000000 +0200
+--- meschach/makefile.in-dist 2006-12-20 12:23:00.000000000 +0100
++++ meschach/makefile.in 2006-12-20 12:23:12.000000000 +0100
@@ -16,7 +16,7 @@
RANLIB = @RANLIB@
@@ -20,3 +9,14 @@
.c.o:
+--- Makefile.in-dist 2006-12-20 12:22:36.000000000 +0100
++++ Makefile.in 2006-12-20 12:22:56.000000000 +0100
+@@ -22,7 +22,7 @@
+ CONFIGDIR = /$(APPNAME)/config/
+
+ DEFS = -DDATADIR=\"$(DATADIR)\" -DLIBDIR=\"$(LIBDIR)\" -DAPPNAME=\"$(APPNAME)\" @ALSAHDR@ @FFTWHDR@ @FFTWPREC@
+-CFLAGS = -Wall -O6 @GNOMEUI_CFLAGS@ @SNDFILE_CFLAGS@
++CFLAGS = -Wall @CFLAGS@ @GNOMEUI_CFLAGS@ @SNDFILE_CFLAGS@
+
+ LIBS= meschach.a @GNOMEUI_LIBS@ @SNDFILE_LIBS@ @ALSALIB@ @FFTWLIB@ -lm
+
++++++ gwc-compile-fix.diff ++++++
--- /var/tmp/diff_new_pack.aJQoHR/_old 2006-12-20 18:11:46.000000000 +0100
+++ /var/tmp/diff_new_pack.aJQoHR/_new 2006-12-20 18:11:46.000000000 +0100
@@ -1,296 +1,24 @@
---- audio_util.c-dist 2005-10-12 17:14:55.000000000 +0200
-+++ audio_util.c 2005-10-12 17:15:39.000000000 +0200
-@@ -471,6 +471,7 @@ struct sound_prefs open_wavefile(char *f
- {
- struct sound_prefs wfh ;
+--- meschach/matrix.h-dist 2006-12-20 13:39:38.000000000 +0100
++++ meschach/matrix.h 2006-12-20 13:40:26.000000000 +0100
+@@ -123,9 +123,7 @@ void m_version( void );
+
+ /* re-allocate arry to have num objects of the given type */
+ #define RENEW(var,num,type) \
+- ((var)=(type *)((var) ? \
+- realloc((char *)(var),(size_t)(num)*sizeof(type)) : \
+- calloc((size_t)(num),sizeof(type))))
++ ((var)=(type *)realloc((char *)(var),(size_t)(num)*sizeof(type)), (var))
+
+ #define MEMCOPY(from,to,n_items,type) \
+ MEM_COPY((char *)(from),(char *)(to),(size_t)(n_items)*sizeof(type))
+@@ -139,9 +137,7 @@ void m_version( void );
+
+ /* re-allocate arry to have num objects of the given type */
+ #define RENEW(var,num,type) \
+- ((var)=(type *)((var) ? \
+- realloc((char *)(var),(size_t)((num)*sizeof(type))) : \
+- calloc((size_t)(num),(size_t)sizeof(type))))
++ ((var)=(type *)realloc((char *)(var),(size_t)((num)*sizeof(type))), (var))
-+ memset(&wfh, 0, sizeof(wfh));
- if(close_wavefile(v)) {
- wfh.successful_open = TRUE ;
- } else {
---- amplify.c-dist 2005-01-17 15:00:36.000000000 +0100
-+++ amplify.c 2005-10-12 17:09:09.000000000 +0200
-@@ -22,6 +22,7 @@
- #include <gnome.h>
- #include "gtkledbar.h"
- #include "gwc.h"
-+#include "iir_lp.h"
-
- #define BUFSIZE 10000
-
-@@ -35,12 +36,14 @@ static gfloat amount_last_r[2] = {0.0,1.
- static int feather_width = 20 ;
-
-
-+void filter_free(FILTER *p);
-+
- void amplify_audio(struct sound_prefs *p, long first, long last, int channel_mask)
- {
- long left[BUFSIZE], right[BUFSIZE] ;
- long x_left[3], x_right[3] ;
- long y_left[3], y_right[3] ;
-- long current, i, f ;
-+ long current, i; //, f ;
- int loops = 0 ;
-
- current = first ;
-@@ -128,12 +131,12 @@ int amplify_dialog(struct sound_prefs cu
- GtkWidget *amount_first_entry_r[2] ;
- GtkWidget *amount_last_entry_r[2] ;
- GtkWidget *feather_width_entry ;
-- GtkWidget *curve ;
-+ // GtkWidget *curve ;
- int dclose = 0 ;
- int row = 0 ;
- int dres ;
- char buf[200] ;
-- gfloat curve_data[20] ;
-+ // gfloat curve_data[20] ;
-
- dialog_table = gtk_table_new(5,2,0) ;
- l_tbl = gtk_table_new(5,2,0) ;
-@@ -174,7 +177,7 @@ int amplify_dialog(struct sound_prefs cu
- /* //gtk_curve_set_vector(GTK_CURVE(curve),2,curve_data) ; */
-
- leftframe = gtk_frame_new ("Left channel source");
-- gtk_container_add(leftframe, l_tbl) ;
-+ gtk_container_add(GTK_CONTAINER(leftframe), l_tbl) ;
- gtk_widget_show (leftframe);
- gtk_table_attach_defaults(GTK_TABLE(dialog_table), leftframe, 0, 1, row, row+1) ;
- row++ ;
-@@ -185,7 +188,7 @@ int amplify_dialog(struct sound_prefs cu
- amount_last_entry_r[0] = add_number_entry_with_label_double(amount_last_r[0], "Right Channel end:", l_tbl, row++) ;
-
- rightframe = gtk_frame_new ("Right channel source");
-- gtk_container_add(rightframe, r_tbl) ;
-+ gtk_container_add(GTK_CONTAINER(rightframe), r_tbl) ;
- gtk_widget_show (rightframe);
- gtk_table_attach_defaults(GTK_TABLE(dialog_table), rightframe, 0, 1, row, row+1) ;
- row++ ;
---- meschach/fmacheps.c-dist 2005-10-12 18:14:01.000000000 +0200
-+++ meschach/fmacheps.c 2005-10-12 18:14:02.000000000 +0200
-@@ -34,7 +34,7 @@ double x;
- return y; /* prevents optimisation */
- }
-
--main()
-+int main()
- {
- static float feps, feps1, ftmp;
-
-@@ -43,4 +43,5 @@ main()
- feps = 0.5*feps;
-
- printf("%g\n", 2.0*feps);
-+ return 0;
- }
---- meschach/maxint.c-dist 2005-10-12 17:16:12.000000000 +0200
-+++ meschach/maxint.c 2005-10-12 18:14:24.000000000 +0200
-@@ -23,8 +23,9 @@
- **
- ***************************************************************************/
-
-+#include <stdio.h>
-
--main()
-+int main()
- {
- int i, old_i;
-
-@@ -35,4 +36,5 @@ main()
- i = (i << 1) | 1;
- }
- printf("%d\n", old_i);
-+ return 0;
- }
---- meschach/configure.in-dist 2005-10-12 18:04:20.000000000 +0200
-+++ meschach/configure.in 2005-10-12 18:08:26.000000000 +0200
-@@ -7,7 +7,7 @@
- dnl Brook Milligan's prototype check
- dnl Check if $(CC) supports prototypes
- define(LOCAL_HAVE_PROTOTYPES,
--[AC_TRY_COMPILE([function prototypes], ,
-+[AC_COMPILE_CHECK([function prototypes], ,
- [extern int test (int i, double x);],
- AC_DEFINE(HAVE_PROTOTYPES))])dnl
- dnl
-@@ -42,10 +42,10 @@
- dnl Brook Milligan's prototype check
- dnl Check if $(CC) supports prototypes in function declarations and structures
- define(LOCAL_HAVE_PROTOTYPES,
--[AC_TRY_COMPILE([function prototypes], ,
-+[AC_COMPILE_CHECK([function prototypes], ,
- [extern int test (int i, double x);],
- AC_DEFINE(HAVE_PROTOTYPES))
--AC_TRY_COMPILE([function prototypes in structures], ,
-+AC_COMPILE_CHECK([function prototypes in structures], ,
- [struct s1 {int (*f) (int a);};
- struct s2 {int (*f) (double a);};],
- AC_DEFINE(HAVE_PROTOTYPES_IN_STRUCT))])dnl
-@@ -60,30 +60,30 @@
- AC_SIZE_T
- AC_CONST
- AC_WORDS_BIGENDIAN
--AC_ARG_WITH(complex, AC_DEFINE(COMPLEX))
--AC_ARG_WITH(sparse, AC_DEFINE(SPARSE))
--AC_ARG_WITH(all, AC_DEFINE(COMPLEX))
--AC_ARG_WITH(all, AC_DEFINE(SPARSE))
--AC_ARG_WITH(unroll, AC_DEFINE(VUNROLL))
--AC_ARG_WITH(munroll, AC_DEFINE(MUNROLL))
--AC_ARG_WITH(segmem, AC_DEFINE(SEGMENTED))
--AC_ARG_WITH(float, AC_DEFINE(REAL_FLT))
--AC_ARG_WITH(double, AC_DEFINE(REAL_DBL))
-+AC_ARG_WITH(complex,,AC_DEFINE(COMPLEX))
-+AC_ARG_WITH(sparse,, AC_DEFINE(SPARSE))
-+AC_ARG_WITH(all,, AC_DEFINE(COMPLEX))
-+dnl AC_ARG_WITH(all, AC_DEFINE(SPARSE))
-+AC_ARG_WITH(unroll,, AC_DEFINE(VUNROLL))
-+AC_ARG_WITH(munroll,, AC_DEFINE(MUNROLL))
-+AC_ARG_WITH(segmem,, AC_DEFINE(SEGMENTED))
-+AC_ARG_WITH(float,, AC_DEFINE(REAL_FLT))
-+AC_ARG_WITH(double,, AC_DEFINE(REAL_DBL))
- LIBS="$LIBS -lm"
--AC_TRY_COMPILE([u_int],[#include <stdio.h>
-+AC_COMPILE_CHECK([u_int],[#include <stdio.h>
- #ifdef __STDC__
- #include <stdlib.h>
- #endif],[u_int i; i = 1;],AC_DEFINE(U_INT_DEF))
- echo 'computing machine epsilon(s)'
--echo $CC -o macheps dmacheps.c
--$CC -o macheps dmacheps.c
-+echo $CC $CFLAGS -o macheps dmacheps.c
-+$CC $CFLAGS -o macheps dmacheps.c
- AC_DEFINE_UNQUOTED(D_MACHEPS,`./macheps`)
--echo $CC -o macheps fmacheps.c
--$CC -o macheps fmacheps.c
-+echo $CC $CFLAGS -o macheps fmacheps.c
-+$CC $CFLAGS -o macheps fmacheps.c
- AC_DEFINE_UNQUOTED(F_MACHEPS,`./macheps`)
- echo computing M_MAX_INT
--echo $CC -o maxint maxint.c
--$CC -o maxint maxint.c
-+echo $CC $CFLAGS -o maxint maxint.c
-+$CC $CFLAGS -o maxint maxint.c
- AC_DEFINE_UNQUOTED(M_MAX_INT,`./maxint`)
- echo checking char '\\0' vs. float zeros
- AC_PROGRAM_EGREP(yes,[main() {
-@@ -94,7 +94,7 @@
- ],AC_DEFINE(CHAR0ISDBL0))
- AC_HAVE_FUNCS(bcopy bzero)
- LOCAL_HAVE_PROTOTYPES
--AC_CONFIG_FILES([makefile make.mex])
-+AC_CONFIG_FILES([makefile])
- AC_OUTPUT
- echo "Extensions to basic version: use configure --with-opt1 --with-opt2"
- echo " Option:"
---- meschach/dmacheps.c-dist 2005-10-12 18:14:04.000000000 +0200
-+++ meschach/dmacheps.c 2005-10-12 18:14:15.000000000 +0200
-@@ -34,7 +34,7 @@ double x;
- return y; /* prevents optimisation */
- }
-
--main()
-+int main()
- {
- static double deps, deps1, dtmp;
-
-@@ -43,4 +43,5 @@ main()
- deps = 0.5*deps;
-
- printf("%g\n", 2.0*deps);
-+ return 0;
- }
---- denoise.c-dist 2005-01-28 05:03:45.000000000 +0100
-+++ denoise.c 2005-10-05 18:08:15.000000000 +0200
-@@ -579,7 +579,7 @@ int denoise(struct sound_prefs *pPrefs,
-
- int print_noise_sample(struct sound_prefs *pPrefs, struct denoise_prefs *pDnprefs, long noise_start, long noise_end)
- {
-- int i, k ;
-+ int k ;
- FILE *fp ;
-
- fftw_real left_noise_max[DENOISE_MAX_FFT], right_noise_max[DENOISE_MAX_FFT], left_noise_avg[DENOISE_MAX_FFT] ;
-@@ -599,6 +599,7 @@ int print_noise_sample(struct sound_pref
- }
-
- fclose(fp) ;
-+ return 0;
- }
-
- void get_noise_sample(struct sound_prefs *pPrefs, struct denoise_prefs *pDnprefs, long noise_start, long noise_end,
---- pinknoise.c-dist 2005-01-10 04:12:14.000000000 +0100
-+++ pinknoise.c 2005-10-05 18:08:16.000000000 +0200
-@@ -206,7 +206,7 @@ void pinknoise(struct sound_prefs *p, lo
- for(i = 0 ; i < n ; i++) {
- long icurrent = current + i ;
- double p_last = (gfloat)(icurrent-first)/(last-first+1) ;
-- double p_first = 1.0 - p_last ;
-+ // double p_first = 1.0 - p_last ;
- double feather_p = 1.0 ;
- double wet_left, wet_right ;
-
-@@ -253,14 +253,14 @@ void pinknoise(struct sound_prefs *p, lo
-
- int pinknoise_dialog(struct sound_prefs current, struct view *v)
- {
-- GtkWidget *dlg, *maxtext, *dialog_table, *n_rows_entry ;
-+ GtkWidget *dlg, *dialog_table, *n_rows_entry ; // *maxtext,
- GtkWidget *amount_pink_entry ;
- GtkWidget *amount_white_entry ;
- GtkWidget *feather_width_entry ;
- int dclose = 0 ;
- int row = 0 ;
- int dres ;
-- char buf[200] ;
-+ // char buf[200] ;
-
- dialog_table = gtk_table_new(5,2,0) ;
-
-@@ -283,7 +283,7 @@ int pinknoise_dialog(struct sound_prefs
- dres = gwc_dialog_run(GTK_DIALOG(dlg)) ;
-
- if(dres == 0) {
-- int i ;
-+ // int i ;
- amount_pink = atof(gtk_entry_get_text((GtkEntry *)amount_pink_entry)) ;
- amount_white = atof(gtk_entry_get_text((GtkEntry *)amount_white_entry)) ;
- feather_width = atoi(gtk_entry_get_text((GtkEntry *)feather_width_entry)) ;
---- dethunk.c-dist 2005-01-21 01:21:05.000000000 +0100
-+++ dethunk.c 2005-10-05 18:09:05.000000000 +0200
-@@ -572,12 +572,13 @@ int AutoRegression(
- for(j = 0 ; j < autolen ; j++)
- data[i] += data[i - j - 1]*auto_coefs[j] ;
- }
-+ return 0;
- }
-
- int reverse_extrapolate(fftw_real data[], int firstbad, int lastbad, int siglen)
- {
-- int n_bad = lastbad - firstbad + 1 ;
-- int autolen = 60 ;
-+ // int n_bad = lastbad - firstbad + 1 ;
-+ // int autolen = 60 ;
- int i ;
- fftw_real *x = calloc(siglen, sizeof(fftw_real)) ;
-
-@@ -590,6 +591,7 @@ int reverse_extrapolate(fftw_real data[]
- data[i] = x[siglen-i-1] ;
-
- free(x) ;
-+ return 0;
- }
-
- void estimate_region(fftw_real data[], int firstbad, int lastbad, int siglen)
-@@ -627,9 +629,9 @@ void estimate_region(fftw_real data[], i
- int dethunk(struct sound_prefs *pPrefs,
- long first_sample, long last_sample, int channel_mask)
- {
-- long i ;
-+ // long i ;
- long n_samples = last_sample - first_sample + 1 ;
-- int cancel, k ;
-+ int cancel; //, k ;
- fftw_real *left, *right ;
- int FFT_SIZE = MIN(ORDER*2,(last_sample-first_sample+1)*4) ;
- int siglen = last_sample-first_sample+1+2*FFT_SIZE ;
+ #define MEMCOPY(from,to,n_items,type) \
+ MEM_COPY((char *)(from),(char *)(to),(unsigned)(n_items)*sizeof(type))
++++++ gwc-meschach-fix.dif ++++++
--- /var/tmp/diff_new_pack.aJQoHR/_old 2006-12-20 18:11:46.000000000 +0100
+++ /var/tmp/diff_new_pack.aJQoHR/_new 2006-12-20 18:11:46.000000000 +0100
@@ -1,20 +1,113 @@
---- meschach/configure.in-dist 2002-11-26 12:03:24.000000000 +0100
-+++ meschach/configure.in 2002-11-26 12:03:43.000000000 +0100
-@@ -74,14 +74,14 @@
+--- meschach/maxint.c-dist 2006-12-20 13:48:45.000000000 +0100
++++ meschach/maxint.c 2006-12-20 13:49:13.000000000 +0100
+@@ -23,8 +23,9 @@
+ **
+ ***************************************************************************/
+
++#include <stdio.h>
+
+-main()
++int main()
+ {
+ int i, old_i;
+
+--- meschach/configure.in-dist 2002-11-26 16:09:31.000000000 +0100
++++ meschach/configure.in 2006-12-20 13:49:58.000000000 +0100
+@@ -7,7 +7,7 @@
+ dnl Brook Milligan's prototype check
+ dnl Check if $(CC) supports prototypes
+ define(LOCAL_HAVE_PROTOTYPES,
+-[AC_TRY_COMPILE([function prototypes], ,
++[AC_COMPILE_CHECK([function prototypes], ,
+ [extern int test (int i, double x);],
+ AC_DEFINE(HAVE_PROTOTYPES))])dnl
+ dnl
+@@ -42,10 +42,10 @@
+ dnl Brook Milligan's prototype check
+ dnl Check if $(CC) supports prototypes in function declarations and structures
+ define(LOCAL_HAVE_PROTOTYPES,
+-[AC_TRY_COMPILE([function prototypes], ,
++[AC_COMPILE_CHECK([function prototypes], ,
+ [extern int test (int i, double x);],
+ AC_DEFINE(HAVE_PROTOTYPES))
+-AC_TRY_COMPILE([function prototypes in structures], ,
++AC_COMPILE_CHECK([function prototypes in structures], ,
+ [struct s1 {int (*f) (int a);};
+ struct s2 {int (*f) (double a);};],
+ AC_DEFINE(HAVE_PROTOTYPES_IN_STRUCT))])dnl
+@@ -60,31 +60,39 @@
+ AC_SIZE_T
+ AC_CONST
+ AC_WORDS_BIGENDIAN
+-AC_ARG_WITH(complex, AC_DEFINE(COMPLEX))
+-AC_ARG_WITH(sparse, AC_DEFINE(SPARSE))
+-AC_ARG_WITH(all, AC_DEFINE(COMPLEX))
+-AC_ARG_WITH(all, AC_DEFINE(SPARSE))
+-AC_ARG_WITH(unroll, AC_DEFINE(VUNROLL))
+-AC_ARG_WITH(munroll, AC_DEFINE(MUNROLL))
+-AC_ARG_WITH(segmem, AC_DEFINE(SEGMENTED))
+-AC_ARG_WITH(float, AC_DEFINE(REAL_FLT))
+-AC_ARG_WITH(double, AC_DEFINE(REAL_DBL))
++AC_ARG_WITH(complex, [--with-complex incorporate complex functions],
++ AC_DEFINE(COMPLEX))
++AC_ARG_WITH(sparse, [--with-sparse incorporate sparse matrix functions],
++ AC_DEFINE(SPARSE))
++AC_ARG_WITH(all, [--with-all both of the above],
++ [AC_DEFINE(COMPLEX)
++ AC_DEFINE(SPARSE)])
++AC_ARG_WITH(unroll, [--with-unroll unroll low level loops on vectors],
++ AC_DEFINE(VUNROLL))
++AC_ARG_WITH(munroll, [--with-munroll unroll low level loops on matrices],
++ AC_DEFINE(MUNROLL))
++AC_ARG_WITH(segmem, [--with-segmem segmem],
++ AC_DEFINE(SEGMENTED))
++AC_ARG_WITH(float, [--with-float single precision],
++ AC_DEFINE(REAL_FLT))
++AC_ARG_WITH(double, [--with-double double precision (default)],
++ AC_DEFINE(REAL_DBL))
+ LIBS="$LIBS -lm"
+ AC_TRY_COMPILE([u_int],[#include <stdio.h>
+ #ifdef __STDC__
+ #include <stdlib.h>
+ #endif],[u_int i; i = 1;],AC_DEFINE(U_INT_DEF))
echo 'computing machine epsilon(s)'
- echo $CC -o macheps dmacheps.c
- $CC -o macheps dmacheps.c
+-echo $CC -o macheps dmacheps.c
+-$CC -o macheps dmacheps.c
-AC_DEFINE_UNQUOTED(D_MACHEPS,`macheps`)
-+AC_DEFINE_UNQUOTED(D_MACHEPS,`./macheps`)
- echo $CC -o macheps fmacheps.c
- $CC -o macheps fmacheps.c
+-echo $CC -o macheps fmacheps.c
+-$CC -o macheps fmacheps.c
-AC_DEFINE_UNQUOTED(F_MACHEPS,`macheps`)
++echo $CC $CFLAGS -o macheps dmacheps.c
++$CC $CFLAGS -o macheps dmacheps.c
++AC_DEFINE_UNQUOTED(D_MACHEPS,`./macheps`)
++echo $CC $CFLAGS -o macheps fmacheps.c
++$CC $CFLAGS -o macheps fmacheps.c
+AC_DEFINE_UNQUOTED(F_MACHEPS,`./macheps`)
echo computing M_MAX_INT
- echo $CC -o maxint maxint.c
- $CC -o maxint maxint.c
+-echo $CC -o maxint maxint.c
+-$CC -o maxint maxint.c
-AC_DEFINE_UNQUOTED(M_MAX_INT,`maxint`)
++echo $CC $CFLAGS -o maxint maxint.c
++$CC $CFLAGS -o maxint maxint.c
+AC_DEFINE_UNQUOTED(M_MAX_INT,`./maxint`)
echo checking char '\\0' vs. float zeros
AC_PROGRAM_EGREP(yes,[main() {
char *cp = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
+@@ -94,16 +102,6 @@
+ ],AC_DEFINE(CHAR0ISDBL0))
+ AC_HAVE_FUNCS(bcopy bzero)
+ LOCAL_HAVE_PROTOTYPES
+-AC_CONFIG_FILES([makefile make.mex])
++AC_CONFIG_FILES([makefile])
+ AC_OUTPUT
+-echo "Extensions to basic version: use configure --with-opt1 --with-opt2"
+-echo " Option:"
+-echo " --with-complex incorporate complex functions"
+-echo " --with-sparse incorporate sparse matrix functions"
+-echo " --with-all both of the above"
+-echo " --with-unroll unroll low level loops on vectors"
+-echo " --with-munroll unroll low level loops on matrices"
+-echo " --with-float single precision"
+-echo " --with-double double precision (default)"
+-echo "Re-run configure with these options if you want them"
+ # configure.in copyright (C) Brook Milligan and David Stewart, 1993, 2002
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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 gnash
checked in at Wed Dec 20 18:11:39 CET 2006.
--------
--- gnash/gnash.changes 2006-10-19 15:40:52.000000000 +0200
+++ /mounts/work_src_done/STABLE/gnash/gnash.changes 2006-12-20 14:12:43.000000000 +0100
@@ -1,0 +2,7 @@
+Wed Dec 20 14:12:22 CET 2006 - tiwai(a)suse.de
+
+- updated to CVS 2006.12.20 snapshot
+ * version bump to 0.7.2
+ * lots of code fixes and optimizations
+
+-------------------------------------------------------------------
Old:
----
gnash-0.7.1.cvs20061019.tar.bz2
gnash-pango-check-fix.diff
New:
----
gnash-0.7.2.cvs20061220.tar.bz2
gnash-gcc-warning-fixes.diff
gnash-no-movies.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnash.spec ++++++
--- /var/tmp/diff_new_pack.PzJ92B/_old 2006-12-20 18:06:07.000000000 +0100
+++ /var/tmp/diff_new_pack.PzJ92B/_new 2006-12-20 18:06:07.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package gnash (Version 0.7.1.cvs20061019)
+# spec file for package gnash (Version 0.7.2.cvs20061220)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,15 +11,20 @@
# norootforbuild
Name: gnash
-BuildRequires: SDL_mixer-devel boost-devel curl-devel ffmpeg-devel gcc-c++ gstreamer010-devel gtk2-devel gtkglext-devel libjpeg-devel libogg-devel libstdc++-devel
%define DISTRIBUTABLE 1
+BuildRequires: SDL_mixer-devel boost-devel curl-devel gcc-c++ gstreamer010-devel gtk2-devel gtkglext-devel libjpeg-devel libogg-devel libstdc++-devel
+%if %DISTRIBUTABLE
+%else
+BuildRequires: ffmpeg-devel
+%endif
Summary: Free Flash movie player
-Version: 0.7.1.cvs20061019
+Version: 0.7.2.cvs20061220
Release: 1
-License: GNU General Public License (GPL) - all versions
+License: GNU General Public License (GPL)
Group: Productivity/Networking/Web/Browsers
Source: %{name}-%{version}.tar.bz2
-Patch: gnash-pango-check-fix.diff
+Patch: gnash-no-movies.diff
+Patch1: gnash-gcc-warning-fixes.diff
URL: http://www.gnu.org/software/gnash/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -42,6 +47,7 @@
%prep
%setup -n gnash
%patch
+%patch1
%build
autoreconf -fi
@@ -58,7 +64,7 @@
%install
make DESTDIR=$RPM_BUILD_ROOT install
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
-rm -f $RPM_BUILD_ROOT%{_libdir}/*.so
+# rm -f $RPM_BUILD_ROOT%{_libdir}/*.so
rm -f $RPM_BUILD_ROOT%{_libdir}/browser-plugins/*.la
%clean
@@ -74,6 +80,10 @@
%{_datadir}/gnash
%changelog -n gnash
+* Wed Dec 20 2006 - tiwai(a)suse.de
+- updated to CVS 2006.12.20 snapshot
+ * version bump to 0.7.2
+ * lots of code fixes and optimizations
* Thu Oct 19 2006 - tiwai(a)suse.de
- updated to CVS 2006.10.19 snapshot
* sound backend fixes
++++++ gnash-0.7.1.cvs20061019.tar.bz2 -> gnash-0.7.2.cvs20061220.tar.bz2 ++++++
++++ 121610 lines of diff (skipped)
++++++ gnash-gcc-warning-fixes.diff ++++++
--- cygnal/statistics.cpp-dist 2006-12-20 12:07:54.000000000 +0100
+++ cygnal/statistics.cpp 2006-12-20 12:08:04.000000000 +0100
@@ -80,7 +80,7 @@
float
Statistics::getFPS() {
-
+ return 0;
}
int
--- cygnal/stream.cpp-dist 2006-12-20 12:10:14.000000000 +0100
+++ cygnal/stream.cpp 2006-12-20 12:11:02.000000000 +0100
@@ -280,6 +280,7 @@
GNASH_REPORT_FUNCTION;
_state = PREVIEW;
+ return true;
}
// Stream a series of thumbnails
@@ -288,6 +289,7 @@
GNASH_REPORT_FUNCTION;
_state = THUMBNAIL;
+ return true;
}
// Pause the stream
@@ -296,6 +298,7 @@
GNASH_REPORT_FUNCTION;
_state = PAUSE;
+ return true;
}
// Seek within the stream
@@ -304,6 +307,7 @@
GNASH_REPORT_FUNCTION;
_state = SEEK;
+ return true;
}
// Upload a stream into a sandbox
@@ -312,6 +316,7 @@
GNASH_REPORT_FUNCTION;
_state = UPLOAD;
+ return true;
}
// Stream a single "real-time" source.
@@ -319,6 +324,7 @@
GNASH_REPORT_FUNCTION;
_state = MULTICAST;
+ return true;
}
} // end of cygnal namespace
--- cygnal/netstats.cpp-dist 2006-12-20 12:07:10.000000000 +0100
+++ cygnal/netstats.cpp 2006-12-20 12:07:40.000000000 +0100
@@ -58,6 +58,7 @@
_bytes = stats.getBytes();
_codec = stats.getCodec();
_type = stats.getFileType();
+ return *this;
}
} // end of cygnal namespace
--- cygnal/http.cpp-dist 2006-12-20 12:08:15.000000000 +0100
+++ cygnal/http.cpp 2006-12-20 12:09:58.000000000 +0100
@@ -62,13 +62,14 @@
{
GNASH_REPORT_FUNCTION;
// this = obj;
+ return *this;
}
string
HTTP::waitForGetRequest(Network &net)
{
GNASH_REPORT_FUNCTION;
-
+ return "";
}
string
@@ -129,8 +130,10 @@
if (writeNet(reply, strlen(reply)) == strlen(reply)) {
dbglogfile << "Sent GET Reply: " << reply << endl;
+ return true;
} else {
dbglogfile << "Couldn't send GET Reply" << endl;
+ return false;
}
}
--- backend/sound_handler_sdl.cpp-dist 2006-12-20 12:11:21.000000000 +0100
+++ backend/sound_handler_sdl.cpp 2006-12-20 12:13:02.000000000 +0100
@@ -838,7 +838,7 @@
assert(sound->data_size > sound->position);
// temp raw buffer
- Uint8* tmp_raw_buffer;
+ Uint8* tmp_raw_buffer = 0;
unsigned int tmp_raw_buffer_size;
#ifdef USE_FFMPEG
@@ -959,7 +959,8 @@
}
// Move the new data to the sound-struct
- delete[] tmp_raw_buffer;
+ if (tmp_raw_buffer)
+ delete[] tmp_raw_buffer;
tmp_raw_buffer = reinterpret_cast<Uint8*>(adjusted_data);
tmp_raw_buffer_size = adjusted_size;
++++++ gnash-no-movies.diff ++++++
--- configure.ac-dist 2006-12-20 11:46:51.000000000 +0100
+++ configure.ac 2006-12-20 11:46:57.000000000 +0100
@@ -821,7 +821,6 @@
testsuite/actionscript.all/Makefile
testsuite/samples/Makefile
testsuite/misc-ming.all/Makefile
-testsuite/movies.all/Makefile
testsuite/server/Makefile
gui/Makefile
extensions/Makefile
--- testsuite/Makefile.am-dist 2006-12-20 11:44:53.000000000 +0100
+++ testsuite/Makefile.am 2006-12-20 11:44:59.000000000 +0100
@@ -8,7 +8,6 @@
server \
samples \
misc-ming.all \
- movies.all \
actionscript.all \
$(NULL)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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