Hello community,

here is the log from the commit of package mono-core for openSUSE:Factory 
checked in at 2014-03-05 15:37:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mono-core (Old)
 and      /work/SRC/openSUSE:Factory/.mono-core.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "mono-core"

Changes:
--------
--- /work/SRC/openSUSE:Factory/mono-core/mono-core.changes      2013-10-08 
20:35:20.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.mono-core.new/mono-core.changes 2014-03-05 
15:37:44.000000000 +0100
@@ -1,0 +2,278 @@
+Sat Feb 22 08:51:00 UTC 2014 - [email protected]
+
+- Update to 3.2.8
+  + On armhf, VFP scratch registers are now properly preserved across method 
calls.
+  + A potential codegen bug on armhf for methods with lots of arguments has 
been fixed.
+  + We now emit shorter floating point load/store sequences on armhf when 
possible.
+  + Bugs surrounding alignment and mono_gc_bzero () / mono_gc_memmove () have 
been fixed.
+  + A typo in the BigInteger.Cosh () implementation has been fixed.
+  + Tuple<...> classes now implement ITuple and have a correct ITuple.ToString 
() implementation.
+  + Bug #17589 has been fixed.
+  + Bug #17558 has been fixed.
+  + A stack alignment change that broke debugging on Android/x86 has been 
reverted (#17410).
+  + Bug #17201 has been fixed.
+  + The AOT compiler now adds types for method headers for gshared methods.
+  + Bug #17632 has been fixed.
+  + The DISABLE_JIT build has been fixed.
+  + Bug #4510 has been fixed.
+  + A potential crash in mono_method_desc_full_match () has been fixed.
+  + Various build system fixes so that make dist works again.
+
+- Changes from 3.2.7
+  + [jit] Fix the handling of OP_ISUB_IMM in abcrem.
+  + [jit] Improve ABCREM on 64-bits architectures
+  + [jit] Implement the delegate ctor optimization in AOT mode too.
+  + [jit] Some work towards a win64 port.
+  + [jit] Use vectorized exception handling on windows.
+  + [jit] Initial support for the hardfp ABI on ARM.
+  + [jit] Add beginnings of a mach image writer for use with xdebug.
+  + [jit] Implement proper TLS offset translation on mach based kernels.
+  + [jit] Add a simple loop invariant loop motion pass for use with LLVM, 
which moves loop invariant instructions out of loop headers into the preceeding 
bblock.
+  + [jit] Avoid linking the try block with the EH block as this produces 
spurious BBs during inlining.
+  + [jit] The AggressiveInlining hint now triggers class initialization so 
more stuff gets force-inlined.
+  + [jit] Add an alias analysis pass to the JIT.
+  + [jit] ARM can dynamically switch between modes.
+  + [jit] Atomics and hardware fences revamped and improved.
+  + [jit] Add 64bits atomics on 32bits systems , this makes PLINQ 
significantly faster on multicore systems.
+  + [llvm] Implement support for OP_TLS_GET_REG on osx/amd64.
+  + [llvm] Update list of optimizations passed to 'opt'.
+  + [runtime] Scalability work: reduce usage of the loader lock
+  + [runtime] Removed the old debugger from the runtime.
+  + [runtime] socket-io: make it possible to specify an interface index as a 
MulticastInterface SocketOption on linux.
+  + [runtime] Don't expand variant generic interfaces on arrays.
+  + [runtime] Implemented g_win32_getlocale function to return correct locale.
+  + [runtime] Revamped hardware caps detection.
+  + [runtime] Add LLDB support to mono_gdb_render_native_backtraces () on 
POSIX.
+  + [runtime] Promote the reference queue API to the public.
+  + [runtime] Provide more public API to inspect MonoTypes, MonoClasses and 
MonoMethodSignatures.
+  + [runtime] Improving the retrieval of the user's locale on Apple systems.
+  + [runtime] Async stack walking with AOT
+  + [sdb] Allow users to specify a suspension policy when enabling an event
+  + [sdb] Add async variants to the InvokeMethod methods.
+  + [sdb] Support a setpgid=y/n option to --debugger-agent.
+  + [sdb] Emit better debugger attribute for stepping over state machine 
initialization
+  + [sgen] Reverse the free-list after sweeping to be in address-order.
+  + [sgen] Only enqueue LOS objects if they contain references.
+  + [sgen] Use gcc bitcount intrinsics where appropriate.
+  + [corlib] Implementation of System.Reflection.ParameterInfo.HasDefaultValue
+  + [corlib] Implemented System.Threading.Monitor.IsEntered
+  + [corlib] LogicalSet/GetData implementation in CallContext
+  + [corlib] Implement CultureInfo.DefaultThreadCurrentUICulture.
+  + [corlib] Implement CultureInfo.DefaultThreadCurrentCulture.
+  + [corlib] Add 
'System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken' stub.
+  + [Mono.Options] Improve error message for badly bundled args.
+  + [pcl] Add new 'System.Runtime.InteropServices.WindowsRuntime' Facade 
Assembly.
+  + [rx] Updated Rx to 2.2 release.
+  + [System] Add IsIPv6Teredo to System.Net.IpAddress
+  + [System] Add more of System.ComponentModel to MOBILE profile.
+  + [System.Core] Update MonoTouch System.Linq.Expression to be 4.5 compatible
+  + [System.Core] Add dynamic interpreter
+  + [System.Core] Support IReadOnlyList in System.Linq.Enumerable.ElementAt 
and ElementAtOrDefault
+  + [classlib] Introduce the mobile_static build.
+  + [classlib] Add OrderedDictionary to the mobile profile.
+  + [mcs] Suport recursive references of non-FX assemblies
+  + [mcs] Implements definite assignment of expressions
+  + [linker] Allow overriding MarkCustomAttribute and expose the 
MarkDefaultConstructor feature to subclasses
+  + [xbuild] Initial MSBuild 12.0 support.
+  + [xbuild] Improved xbuild diagnostics.
+  + [xbuild] implement "skip target due to previous success" feature.
+  + [xbuild] Add xbuild support for BuildManager
+  + [Microsoft.Build.Engine] Fix the escaping/unescaping of FullPath metadata
+  + Properly compare assembly versions when performing binding. Fixes #17368.
+  + [sdb] Fix setting of byref variables in registers. Fixes #17185.
+  + [System.Net.Http] Add parsing of multi-value strings. Fixes #17132
+  + [io-layer] Properly check write permission of a file. Fixes #3501.
+  +  Don't raise an exception if we can't find the src assembly on a shadow 
copy appdomain
+  + [corlib] Update en-GB first day of week. Fixes #17151
+  + [mcs] Check type of index used in pointer array aritmetic. Fixes #17145
+  + [runtime] Fix large file support on android, it doesn't support 
-D_FILE_OFFSET_BITS=64, so call lseek64 directly. Fixes #17128.
+  + Fix bug #11335.
+  + Fix bug #11336.
+  + [io-layer] Correctly implement permission checking for File.Move. Fixes 
#17009.
+  + The old check was simply for open sharing status, which is incorrect. The 
right thing to do is to check for FileShare.Delete and not FileAccess.
+  + [jit] Fix some checks in the arm dyn call code. Fixes #17101.
+  + BXC14584 - Console windows pop up during build with mono runtime
+  + [PCL]: Add ReadOnlyDictionary type-forwarder for XI. Fixes #16951.
+  + [corlib] Mark all promise-style task exceptions observed. Fixes #17015
+  + [mcs] Emit Debuggable attribute. Fixes #16924
+  + [mcs] Method group caching needs to consider type arguments as well. Fixes 
#17059
+  + [jit] Save/restore all-callee saved registers in methods using some atomic 
opcodes on x86, since the opcode implementations use these registers, and the 
push/pop code used by these opcodes is not async safe, since the unwind code 
doesn't know about it. Fixes part of #16808.
+  + [runtime] Fix yet another metadata problem with dynamically created types. 
Fixes #14977.
+  + [jit] Emit calls to class init trampolines for fields accesses inside 
inline methods in AOT mode. Fixes #16461.
+  + [runtime] Avoid RuntimeHelpers.EnsureSufficientExecutionStack () failing 
on windows. Works around #16776.
+  + [runtime] Call mono_class_setup_methods () before accessing 
klass->method.count. Fixes #16883.
+  + [corlib] Update datetime patters. Fixes #17044
+  + [mcs] Better check for value type base call. Fixes #16806
+  + [mcs] Await flow analysis uses resolved expression. Fixes #16840
+  + [gsharedvt] Avoid using the variable size code paths for non-variable size 
types with some array opcodes. Fixes #17023.
+  + [jit] Avoid nullifying class init trampolines for recursive calls to class 
initializers. Fixes #16489
+  + [WindowsBase] Implement GroupDescription based on moonlight implementation
+  + Remove usage of mini_replace_type () from mono_jit_runtime_invoke (), 
runtime invokes care about the precise types of parameters. Fixes #16830.
+  + [aot] Sanitize utf8 characters in symbol names. Fixes #16851.
+  + Fix for PkgConfig cache orphaned entries bug (xam bug #11133)
+  + [mcs] Don't wrap reference type values in explicit nullable conversion. 
Fixes #16900
+  + [mcs] Restore async modifiers context after nested enums declaration. 
Fixes #16997
+  + [corlib] Promise style tasks cannot be started manually. Fixes #16857
+  + [corlib] Thread.GetNamedDataSlot allocates slot on failure. Fixes #16788
+  + Use LIFO policy for CancellationTokenSource Fixes #16992
+  + Fix CancellationTokenSourceTest.ReEntrantRegistrationTest
+  + Make tuple hash function consistent with the F# implementation
+  + Don't call CFNetworkCopyProxiesForAutoConfigurationScript from more than 
one thread. Fixes #7923, comment 21.
+  + Check for null item in BindingList<T>.InsertItem. Fixes #16902
+  + Do not assume the first certificate of a PKCS12 file is the one matching 
the key (even if it's the most common way).
+  + [System] Change S.N.S.NetworkStream's param name on ctor #16832
+  + [System] When starting a process with UseShellExecute=true, don't return a 
process. Fixes #16119
+  + [io-layer] On OSX don't pass -W to open as we don't care for it waiting.
+  + [runtime] A thread without a domain set cannot be running managed code. 
Fixes #16794.
+  + [aot] Give the compilation unit entries in the DWARF debug info different 
names, the osx tools seem to need this (#15202).
+  + [aot] Add runtime wrappers for methods of generic classes and generic 
methods. Fixes #16747.
+  + [gsharedvt] Add a wrapper to the mono_gsharedvt_constrained_call () icall, 
since it calls mono_runtime_invoke () which can throw exceptions. Fixes #16439.
+  + [jit] Fix TLS+AOT support in the monitor enter/exit trampolines.
+  + [jit] Fix memory leaks in get_gsharedvt_type (). Fixes #16787.
+  + [corlib] Mark ConcurrentDictionary serializable. Fixes #16730
+  + [bcl] When finalizing a Process object, don't touch the streams as they 
are finalized on their own. Fixes #10883.
+  + [mcs] Clone labeled statements cache in probing mode. Fixes #16376
+  + [jit]Emit explicit float rounding on amd64. Fixes #15987
+  + [mcs] Update populated member cache of dynamic containers manually for 
additional entries. Fixes #16659
+  + [mcs] Show correct #line location for files in other than current location 
referenced as relative files. Fixes #16576
+  + [system] Redirect of put requests was converted to get. Fixes #16670
+  + [corlib] Multiple fixes to TPL.
+  + [Bug 14664] LogicalSet/GetData implementation in CallContext
+  + [sgen]Fix a deadlock when the GC try to free a JI during world restart. 
Fixes #15759
+  + [bcl] Invoke assembly resolve hooks even if the assembly name has a parse 
error. Fixes #16487.
+  + [corlib] Optimize one string Join<T> overload. Fixes #16647
+  + [bcl] Handle BigInt -> long conversions that should overflow but dont. 
Fixes #16526
+  + [System.Net.Http] Don't throw on invalid input in TryGetValues. Fixes 
#16634
+  + [mcs] Don't stop type inference when a unique construction of the generic 
interface cannot be found. Fixes #16567
+  + [mcs] Add better type conversion to unary mutators. Fixes #16578
+  + [corlib] Implement task awaiters running on custom task scheduler. Fixes 
#16587
+  + [corlib] Better conversion betwen system locale and CultureInfo. Fixes 
#15875
+  + [xbuild]: Check a <Target>'s "Returns" first, then fall-back to "Outputs".
+  + [xbuild]: Allow expressions inside a dynamic <ItemGroup>'s metadata. Fixes 
#14661.
+  + [sgen] Never invoke libc’s memmove() or bzero(). Fixes #16449
+  + [mcs] Report nice error instead of crash for cyclic type forwarders. Fixes 
#16385
+  + [mcs] Report all failure errors in lambda conversions. Fixes #16513
+  + [xbuild]: Implement task batching for properties; fixes #16403.
+  + [linq] Enumerable.Join and GroupJoin needs to ignore null keys. Fixes 
#16530
+  + [corlib] DebuggerTypeProxyAttribute.ProxyName needs to return an assembly 
qualified type name. Fixes #16527
+  + [jit] Implement double->uintptr conversions on 64 bit platforms. Fixes 
#16529.
+  + [sdb] Fix step-over with recursive functions. Fixes #5700.
+  + [corlib] Consider all unicode separators in ToTitleCase. Fixes #16365
+  + [corlib] Set initialized List<T> capacity to match input enumeration. 
Fixes #16318
+  + [mcs] Report ambiguity in attribute types in expanded mode. Fixes #16342
+  + [mcs] Emit this initializer for structs. Fixes #16430
+  + [sgen] Implement our own qsort() so as not do deadlock. #16432
+  + [mcs] Dynamically calculate size of flow-analysis bitset. Fixes #4210
+  + [Bug 16334] Fix ConcurrentBag.TryTake and TryPeek
+  + [Bug 16267] SemaphoreSlim.Wait fix when no timeout
+  + [runtime] Avoid caching member_ref tokens of dynamic images. Fixes #16096
+  + Fix the `nop` opcode on some MIPS-based Loongson CPUs. 
https://sourceware.org/ml/binutils/2009-11/msg00387.html
+  + [Bug 16186] SqlCommand.BeginExecuteInternal fix
+  + [sdb] Add an ExitCode property to VMDeathEvent. Fixes #16113.
+  + [aot] Increase a buffer size to avoid an assert. Fixes #16239.
+  + [runtime]Type parsing of generics should not rely on the presence of a 
backtick. Fixes #15124.
+  + [mcs] Assignment to value type readonly generated variables needs to check 
all member access expressions. Fixes #15832
+  + [mcs] Missing type forwarded types should not cause type collision. Fixes 
#16196
+  + [linker] Do not import something that is not marked when sweeping type 
references (otherwise we might re-intoduce dependencies we're not including or 
need)   + [#16213]
+  + Always show error message when type resolver produces ambiguous type. 
Fixes #16115
+  + Setting ReceiveBufferSize & SendBufferSize on Socket (Bug 16021 & Bug 
12754)
+  + [sle] Enable char equality comparison. Fixes #15582
+  + Update currency separators. Fixes #15425
+  + Extract CurrencyDecimalDigits using currency and not territory info. Fixes 
#15895
+  + [jit] Use unsigned comparisons with the IMT thunks as they can live in 
high memory addresses.
+  + Task.WhenAllCore<T> now handles empty argument list correctly. Fixes #15956
+  + TimeZone.GetUtcOffset should use Standard UTC offsets for the period when 
daylight savings ends.
+  + [runtime] Preserve the call chain in mono_arch_setup_async_callback () on 
amd64 to prevent crashes in the libgcc unwinder (#15969).
+  + Return empty result array when calling Task.WhenAllCore<T> with empty 
argument list. Fixes #15956
+  + [runtime] Fix stack size detection on osx mavericks. Fixes #15890.
+  + [runtime]Split thread unregistration in two steps, one with no locks, one 
with locks taken. Fixes #15916.
+  + [runtime] Handle unaligned access in all interlocked icalls. Fixes #15925.
+  + [sdb] Implement support for DebuggerStepThrough attribute. Fixes #15139.
+  + [System] Avoid an NRE when Close() and Write() are concurrent. #15857
+  + [sdb] Fix an assertion if a single step breakpoint is hit in a thread 
other than the thread the single stepping is done on. Fixes #14950.
+  + [Mono.Debugger.Soft] Implemented inheritance for 
TypeMirror.GetCustomAttributes() Fixes bug #15320
+  + [runtime] Fix an assertion in mono_arch_context_get_int_reg () on amd64. 
Fixes #15786.
+  + When parsing documentation cref text turn on error probing for tokenizer 
as well. Fixes #15511
+  + Better error message when member does not implement interface. Fixes #15369
+  + Variables from diffent parameter block still need to be captures even if 
async block has no await. Fixes #15719
++++ 81 more lines (skipped)
++++ between /work/SRC/openSUSE:Factory/mono-core/mono-core.changes
++++ and /work/SRC/openSUSE:Factory/.mono-core.new/mono-core.changes

Old:
----
  _service
  mono-3.2.3.tar.bz2

New:
----
  mono-3.2.8.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ mono-core.spec ++++++
--- /var/tmp/diff_new_pack.qr7TeZ/_old  2014-03-05 15:37:47.000000000 +0100
+++ /var/tmp/diff_new_pack.qr7TeZ/_new  2014-03-05 15:37:47.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mono-core
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -21,7 +21,7 @@
 %define sgen yes
 
 Name:           mono-core
-Version:        3.2.3
+Version:        3.2.8
 Release:        0
 Summary:        Cross-platform, Open Source, .NET development framework
 License:        LGPL-2.1 and MIT and MS-PL
@@ -32,7 +32,7 @@
 Patch2:         mono-arm-cpuinfo-v7.patch
 Patch3:         mono-arm-vfp.patch
 # PATCH-FIX-OPENSUSE ppc.patch [email protected] -- fix ppc build failures
-Patch4:         ppc.patch
+#Patch4:         ppc.patch
 # PATCH-FIX-UPSTREAM mono-core-target-4.0.patch [email protected] -- Use 
runtime 4.0 as default for cairo and nunit
 Patch5:         mono-core-target-4.0.patch
 BuildRequires:  autoconf
@@ -99,7 +99,7 @@
 %patch2 -p1
 %patch3 -p1
 %endif
-%patch4 -p1
+#%patch4 -p1
 %patch5 -p1
 
 %build
@@ -177,20 +177,26 @@
 chmod +x %{buildroot}%{_bindir}/mono-gdb.py
 chmod +x %{buildroot}%{_bindir}/mono-sgen-gdb.py
 
+#ERROR: link target doesn't exist (neither in build root nor in installed 
system):
+rm -rf %{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Microsoft.Build.dll
+rm -rf 
%{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Microsoft.Build.Engine.dll
+rm -rf %{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Mono.XBuild.Tasks.dll
+rm -rf 
%{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Microsoft.Build.Framework.dll
+rm -rf 
%{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Microsoft.Build.Tasks.v12.0.dll
+rm -rf 
%{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Microsoft.Build.Utilities.v12.0.dll
+
 %fdupes %{buildroot}%{_prefix}
+
 %find_lang mcs
+
 %if %sgen == no
 # installed anyway but not packaged
 rm %{buildroot}%{_bindir}/mono-sgen-gdb.py
 %endif
 
-# Fix error: Symlink points to BuildRoot:
-rm %{buildroot}%{_bindir}/mono
-ln -s %{_bindir}/mono-sgen %{buildroot}%{_bindir}/mono
-
 %files -f mcs.lang
 %defattr(-, root, root)
-%doc AUTHORS COPYING.LIB ChangeLog NEWS README
+%doc AUTHORS COPYING.LIB LICENSE ChangeLog NEWS README.md
 %config %{_sysconfdir}/mono/2.0/machine.config
 %config %{_sysconfdir}/mono/2.0/settings.map
 %config %{_sysconfdir}/mono/4.0/machine.config
@@ -948,8 +954,10 @@
 %config %{_sysconfdir}/mono/2.0/Browsers
 %config %{_sysconfdir}/mono/2.0/DefaultWsdlHelpGenerator.aspx
 %config %{_sysconfdir}/mono/2.0/web.config
+%config %{_sysconfdir}/mono/4.0/Browsers
 %config %{_sysconfdir}/mono/4.0/DefaultWsdlHelpGenerator.aspx
 %config %{_sysconfdir}/mono/4.0/web.config
+%config %{_sysconfdir}/mono/4.5/Browsers
 %config %{_sysconfdir}/mono/4.5/DefaultWsdlHelpGenerator.aspx
 %config %{_sysconfdir}/mono/4.5/web.config
 %config %{_sysconfdir}/mono/browscap.ini
@@ -1258,6 +1266,7 @@
 %{_libdir}/pkgconfig/mono-lineeditor.pc
 %{_libdir}/pkgconfig/mono-options.pc
 %{_libdir}/pkgconfig/mono.pc
+%{_libdir}/pkgconfig/xbuild12.pc
 %{_mandir}/man1/al.1%ext_man
 %{_mandir}/man1/ccrewrite.1%ext_man
 %{_mandir}/man1/cccheck.1%ext_man
@@ -1307,6 +1316,7 @@
 %{_prefix}/lib/mono/2.0/resgen.exe*
 %{_prefix}/lib/mono/2.0/xbuild.exe*
 %{_prefix}/lib/mono/2.0/xbuild.rsp
+%{_prefix}/lib/mono/2.0/Mono.XBuild.Tasks.dll
 %{_prefix}/lib/mono/3.5/MSBuild
 %{_prefix}/lib/mono/3.5/Microsoft.Build.Engine.dll
 %{_prefix}/lib/mono/3.5/Microsoft.Build.Framework.dll
@@ -1319,20 +1329,15 @@
 %{_prefix}/lib/mono/3.5/Microsoft.VisualBasic.targets
 %{_prefix}/lib/mono/3.5/xbuild.exe*
 %{_prefix}/lib/mono/3.5/xbuild.rsp
-%{_prefix}/lib/mono/4.0/MSBuild
+%{_prefix}/lib/mono/3.5/Mono.XBuild.Tasks.dll
 %{_prefix}/lib/mono/4.0/Microsoft.Build.dll
 %{_prefix}/lib/mono/4.0/Microsoft.Build.Engine.dll
 %{_prefix}/lib/mono/4.0/Microsoft.Build.Framework.dll
 %{_prefix}/lib/mono/4.0/Microsoft.Build.Tasks.v4.0.dll
 %{_prefix}/lib/mono/4.0/Microsoft.Build.Utilities.v4.0.dll
-%{_prefix}/lib/mono/4.0/Microsoft.Build.xsd
-%{_prefix}/lib/mono/4.0/Microsoft.CSharp.targets
-%{_prefix}/lib/mono/4.0/Microsoft.Common.targets
-%{_prefix}/lib/mono/4.0/Microsoft.Common.tasks
-%{_prefix}/lib/mono/4.0/Microsoft.Portable.CSharp.targets
-%{_prefix}/lib/mono/4.0/Microsoft.VisualBasic.targets
 %{_prefix}/lib/mono/4.0/Mono.Debugger.Soft.dll
 %{_prefix}/lib/mono/4.0/PEAPI.dll
+%{_prefix}/lib/mono/4.0/Mono.XBuild.Tasks.dll
 %{_prefix}/lib/mono/4.5/Microsoft.Build.dll
 %{_prefix}/lib/mono/4.5/Microsoft.Build.Engine.dll
 %{_prefix}/lib/mono/4.5/Microsoft.Build.Framework.dll
@@ -1371,20 +1376,32 @@
 %{_prefix}/lib/mono/4.5/signcode.exe*
 %{_prefix}/lib/mono/4.5/xbuild.exe*
 %{_prefix}/lib/mono/4.5/xbuild.rsp
+%{_prefix}/lib/mono/4.5/MSBuild/
+%{_prefix}/lib/mono/4.5/Microsoft.Build.xsd
+%{_prefix}/lib/mono/4.5/Microsoft.CSharp.targets
+%{_prefix}/lib/mono/4.5/Microsoft.Common.targets
+%{_prefix}/lib/mono/4.5/Microsoft.Common.tasks
+%{_prefix}/lib/mono/4.5/Microsoft.VisualBasic.targets
+%{_prefix}/lib/mono/4.5/Mono.XBuild.Tasks.dll
 %{_prefix}/lib/mono/gac/Microsoft.Build
 %{_prefix}/lib/mono/gac/Microsoft.Build.Engine
 %{_prefix}/lib/mono/gac/Microsoft.Build.Framework
 %{_prefix}/lib/mono/gac/Microsoft.Build.Tasks
 %{_prefix}/lib/mono/gac/Microsoft.Build.Tasks.v3.5
 %{_prefix}/lib/mono/gac/Microsoft.Build.Tasks.v4.0
+%{_prefix}/lib/mono/gac/Microsoft.Build.Tasks.v12.0/
 %{_prefix}/lib/mono/gac/Microsoft.Build.Utilities
 %{_prefix}/lib/mono/gac/Microsoft.Build.Utilities.v3.5
 %{_prefix}/lib/mono/gac/Microsoft.Build.Utilities.v4.0
+%{_prefix}/lib/mono/gac/Microsoft.Build.Utilities.v12.0/
 %{_prefix}/lib/mono/gac/Mono.CodeContracts
 %{_prefix}/lib/mono/gac/Mono.Debugger.Soft
+%{_prefix}/lib/mono/gac/Mono.XBuild.Tasks/
 %{_prefix}/lib/mono/gac/PEAPI
 %{_prefix}/lib/mono/xbuild
 %{_prefix}/lib/mono/xbuild-frameworks
+%{_prefix}/lib/mono/xbuild/12.0/
+%{_prefix}/lib/mono/xbuild/12.0/bin/
 
 %package -n mono-entityframework
 Summary:        Entity Framework (EF) is an object-relational mapper
@@ -1429,6 +1446,7 @@
 %{_prefix}/lib/mono/4.5/System.Reactive.Experimental.dll
 %{_prefix}/lib/mono/4.5/System.Reactive.Interfaces.dll
 %{_prefix}/lib/mono/4.5/System.Reactive.Linq.dll
+%{_prefix}/lib/mono/4.5/System.Reactive.Observable.Aliases.dll
 %{_prefix}/lib/mono/4.5/System.Reactive.PlatformServices.dll
 %{_prefix}/lib/mono/4.5/System.Reactive.Providers.dll
 %{_prefix}/lib/mono/4.5/System.Reactive.Runtime.Remoting.dll
@@ -1439,6 +1457,7 @@
 %{_prefix}/lib/mono/gac/System.Reactive.Experimental/
 %{_prefix}/lib/mono/gac/System.Reactive.Interfaces/
 %{_prefix}/lib/mono/gac/System.Reactive.Linq/
+%{_prefix}/lib/mono/gac/System.Reactive.Observable.Aliases/
 %{_prefix}/lib/mono/gac/System.Reactive.PlatformServices/
 %{_prefix}/lib/mono/gac/System.Reactive.Providers/
 %{_prefix}/lib/mono/gac/System.Reactive.Runtime.Remoting/

++++++ mono-3.2.3.tar.bz2 -> mono-3.2.8.tar.bz2 ++++++
/work/SRC/openSUSE:Factory/mono-core/mono-3.2.3.tar.bz2 
/work/SRC/openSUSE:Factory/.mono-core.new/mono-3.2.8.tar.bz2 differ: char 11, 
line 1

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to