
Hello community, here is the log from the commit of package perl checked in at Tue Mar 11 18:05:45 CET 2008. -------- --- perl/perl.changes 2008-02-19 15:32:00.000000000 +0100 +++ /mounts/work_src_done/STABLE/perl/perl.changes 2008-03-10 13:50:48.000000000 +0100 @@ -1,0 +2,6 @@ +Mon Mar 10 13:20:38 CET 2008 - pth@suse.de + +- Fix call to dbmclose in ext/ODBM_File/ODBM_File.xs +- Run 'make check' in %check + +------------------------------------------------------------------- New: ---- perl-fix_dbmclose_call.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl.spec ++++++ --- /var/tmp/diff_new_pack.x24504/_old 2008-03-11 18:04:26.000000000 +0100 +++ /var/tmp/diff_new_pack.x24504/_new 2008-03-11 18:04:26.000000000 +0100 @@ -16,7 +16,7 @@ Url: http://www.perl.org/ BuildRequires: db-devel gdbm-devel ncurses-devel zlib-devel Version: 5.10.0 -Release: 14 +Release: 16 Summary: The Perl interpreter License: Artistic License; GPL v2 or later Group: Development/Languages/Perl @@ -36,6 +36,7 @@ Patch: perl-%{version}.dif Patch1: perl-gracefull-net-ftp.diff Patch2: perl-5.10.0-regexp.diff +Patch3: perl-fix_dbmclose_call.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -85,6 +86,7 @@ %patch %patch1 %patch2 +%patch3 %build options="-Doptimize='$RPM_OPT_FLAGS -Wall -pipe'" @@ -105,6 +107,8 @@ ./configure.gnu --prefix=/usr -Dvendorprefix=/usr -Dinstallusrbinperl -Dusethreads -Di_db -Di_dbm -Di_ndbm -Di_gdbm $options make %ifnarch ppc64 %arm + +%check # delete broken File::Find test rm -f lib/File/Find/t/find.t # delete racy test @@ -284,6 +288,9 @@ #%ghost %doc /usr/share/man/man3/perllocal.3pm.gz %changelog +* Mon Mar 10 2008 pth@suse.de +- Fix call to dbmclose in ext/ODBM_File/ODBM_File.xs +- Run 'make check' in %%check * Tue Feb 19 2008 mls@suse.de - fix bug in regexp engine [bnc#355233] * Fri Jan 18 2008 mls@suse.de ++++++ perl-fix_dbmclose_call.patch ++++++ --- ext/ODBM_File/ODBM_File.xs +++ ext/ODBM_File/ODBM_File.xs @@ -121,7 +121,7 @@ dMY_CXT; CODE: dbmrefcnt--; - dbmclose(); + dbmclose(db); safefree(db); datum_value ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org