commit vala for openSUSE:Factory
Hello community, here is the log from the commit of package vala for openSUSE:Factory checked in at Fri Jul 31 22:39:37 CEST 2009. -------- --- GNOME/vala/vala.changes 2008-10-14 17:43:20.000000000 +0200 +++ /mounts/work_src_done/STABLE/vala/vala.changes 2009-07-31 22:26:38.000000000 +0200 @@ -1,0 +2,9 @@ +Mon Jul 27 23:09:45 CEST 2009 - dominique-obs@leuenberger.net + +- Update to version 0.7.4: + + Way too many changes since 0.3.3. See NEWS for details. +- Refactored retry-fix.patch. Patch rejected upstream, as the .c + files are generated ones. +- Remove INSTALL from %%doc to fix a rpmlint warning. + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- vala-0.3.3.tar.bz2 New: ---- vala-0.7.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vala.spec ++++++ --- /var/tmp/diff_new_pack.h3tfWY/_old 2009-07-31 22:39:09.000000000 +0200 +++ /var/tmp/diff_new_pack.h3tfWY/_new 2009-07-31 22:39:09.000000000 +0200 @@ -1,7 +1,7 @@ # -# spec file for package vala (Version 0.3.3) +# spec file for package vala (Version 0.7.4) # -# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,13 +18,14 @@ Name: vala -Version: 0.3.3 -Release: 5 +Version: 0.7.4 +Release: 1 Summary: Vala is a new programming language for GNOME Group: Development/Languages/Other License: LGPL v2.1 or later Url: http://live.gnome.org/Vala Source0: http://www.paldo.org/vala/vala-%{version}.tar.bz2 +# PATCH-FIX-UPSTREAM return-fix bgo#589942 dominique-obs@leuenberger.net -- Fix no-return-in-nonvoid function errors Patch0: return-fix.patch Patch1: vala-0.3.3-implicit-fortify-decl.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -68,7 +69,7 @@ %prep %setup -q -%patch -p1 +%patch0 -p1 %patch1 %build @@ -92,7 +93,7 @@ %files %defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING INSTALL NEWS README +%doc AUTHORS ChangeLog COPYING NEWS README %{_bindir}/valac %{_bindir}/vala-gen-introspect %{_bindir}/vapicheck ++++++ return-fix.patch ++++++ --- /var/tmp/diff_new_pack.h3tfWY/_old 2009-07-31 22:39:09.000000000 +0200 +++ /var/tmp/diff_new_pack.h3tfWY/_new 2009-07-31 22:39:09.000000000 +0200 @@ -1,77 +1,102 @@ -diff -Naur vala-0.3.3/vala/valagenieparser.c vala-0.3.3-mp/vala/valagenieparser.c ---- vala-0.3.3/vala/valagenieparser.c 2008-06-03 22:22:26.000000000 +0200 -+++ vala-0.3.3-mp/vala/valagenieparser.c 2008-09-12 07:33:04.025057000 +0200 -@@ -464,6 +464,7 @@ - g_propagate_error (error, inner_error); +diff -Nurpa vala-0.7.4/codegen/valaccodecompiler.c vala-0.7.4.patched//codegen/valaccodecompiler.c +--- vala-0.7.4/codegen/valaccodecompiler.c 2009-06-14 18:53:16.000000000 +0200 ++++ vala-0.7.4.patched//codegen/valaccodecompiler.c 2009-07-27 23:53:41.000000000 +0200 +@@ -138,6 +138,7 @@ static gboolean vala_ccode_compiler_pack return FALSE; } + pc = (g_free (pc), NULL); + return FALSE; } -@@ -486,6 +487,7 @@ - g_propagate_error (error, inner_error); - return FALSE; +diff -Nurpa vala-0.7.4/vala/valagenieparser.c vala-0.7.4.patched//vala/valagenieparser.c +--- vala-0.7.4/vala/valagenieparser.c 2009-06-14 18:52:43.000000000 +0200 ++++ vala-0.7.4.patched//vala/valagenieparser.c 2009-07-27 23:52:08.000000000 +0200 +@@ -2230,6 +2230,7 @@ static inline gboolean vala_genie_parser + return FALSE; + } } + return FALSE; } -@@ -673,6 +675,7 @@ - g_propagate_error (error, inner_error); - return NULL; +@@ -2261,6 +2262,7 @@ static inline gboolean vala_genie_parser + return FALSE; + } } -+ return NULL; ++ return FALSE; } -@@ -1880,6 +1883,7 @@ +@@ -2663,6 +2665,7 @@ static ValaExpression* vala_genie_parser + } } } - (member == NULL ? NULL : (member = (g_object_unref (member), NULL))); + return NULL; } -@@ -5019,6 +5023,7 @@ - return NULL; +@@ -10950,6 +10953,7 @@ static ValaSymbol* vala_genie_parser_par + } } - (attrs == NULL ? NULL : (attrs = (g_object_unref (attrs), NULL))); + (attrs == NULL) ? NULL : (attrs = (gee_collection_object_unref (attrs), NULL)); + return NULL; } -diff -Naur vala-0.3.3/vala/valaparser.c vala-0.3.3-mp/vala/valaparser.c ---- vala-0.3.3/vala/valaparser.c 2008-06-03 22:22:28.000000000 +0200 -+++ vala-0.3.3-mp/vala/valaparser.c 2008-09-12 07:44:47.890487000 +0200 -@@ -419,6 +419,7 @@ - g_propagate_error (error, inner_error); - return FALSE; +diff -Nurpa vala-0.7.4/vala/valaparser.c vala-0.7.4.patched//vala/valaparser.c +--- vala-0.7.4/vala/valaparser.c 2009-06-25 14:46:31.000000000 +0200 ++++ vala-0.7.4.patched//vala/valaparser.c 2009-07-27 23:56:17.000000000 +0200 +@@ -2174,6 +2174,7 @@ static inline gboolean vala_parser_expec + return FALSE; + } } + return FALSE; } -@@ -618,6 +619,7 @@ - g_propagate_error (error, inner_error); - return NULL; +@@ -2565,6 +2566,7 @@ static ValaExpression* vala_parser_parse + } + } } + return NULL; } -@@ -1594,6 +1596,7 @@ +@@ -4317,6 +4319,7 @@ static ValaExpression* vala_parser_parse } } - (member == NULL ? NULL : (member = (g_object_unref (member), NULL))); -+ return NULL; + (member == NULL) ? NULL : (member = (vala_code_node_unref (member), NULL)); ++ return NULL; + } + + +@@ -9725,6 +9728,7 @@ static ValaSymbol* vala_parser_parse_dec + } + } + (attrs == NULL) ? NULL : (attrs = (gee_collection_object_unref (attrs), NULL)); ++ return NULL; + } + + +diff -Nurpa vala-0.7.4/vapigen/valavapicheck.c vala-0.7.4.patched//vapigen/valavapicheck.c +--- vala-0.7.4/vapigen/valavapicheck.c 2009-06-14 18:52:25.000000000 +0200 ++++ vala-0.7.4.patched//vapigen/valavapicheck.c 2009-07-27 23:54:57.000000000 +0200 +@@ -432,6 +432,7 @@ static gint vala_vapi_check_check_metada + g_clear_error (&_inner_error_); + return 0; + } ++ return 0; } -@@ -4549,6 +4552,7 @@ +diff -Nurpa vala-0.7.4/vapigen/valavapigen.c vala-0.7.4.patched//vapigen/valavapigen.c +--- vala-0.7.4/vapigen/valavapigen.c 2009-06-25 22:10:01.000000000 +0200 ++++ vala-0.7.4.patched//vapigen/valavapigen.c 2009-07-27 23:54:16.000000000 +0200 +@@ -224,6 +224,7 @@ static char** vala_vapi_gen_get_packages + g_clear_error (&_inner_error_); return NULL; } - (attrs == NULL ? NULL : (attrs = (g_object_unref (attrs), NULL))); + return NULL; } ++++++ vala-0.3.3.tar.bz2 -> vala-0.7.4.tar.bz2 ++++++ ++++ 567045 lines of diff (skipped) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de