forked from pool/mono-core
Accepting request 253976 from home:Mailaender:branches:Mono:Factory
OBS-URL: https://build.opensuse.org/request/show/253976 OBS-URL: https://build.opensuse.org/package/show/Mono:Factory/mono-core?expand=0&rev=133
This commit is contained in:
parent
bab7217c02
commit
7ddc0c7344
3
mono-3.10.0.tar.bz2
Normal file
3
mono-3.10.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fd74d1a6810d2d9b4733b4affbda67958e61520aade531c73103568dc18ab0b4
|
||||
size 73485820
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:71b80d555f334a05a8db386e1c41e1a2f61a845c57726205f846e563a5ee2a4b
|
||||
size 73495543
|
@ -1,13 +0,0 @@
|
||||
Index: mono-3.4.0/mcs/Makefile
|
||||
===================================================================
|
||||
--- mono-3.4.0.orig/mcs/Makefile
|
||||
+++ mono-3.4.0/mcs/Makefile
|
||||
@@ -83,7 +83,7 @@ all-local $(STD_TARGETS:=-local):
|
||||
@:
|
||||
|
||||
dir-check:
|
||||
- @if [ "$(NO_DIR_CHECK)" = "" -a "$(PROFILE)" != "basic" ]; then make -C ../runtime; fi
|
||||
+ @if [ "$(NO_DIR_CHECK)" = "" -a "$(PROFILE)" != "basic" ]; then $(MAKE) -C ../runtime; fi
|
||||
|
||||
# fun specialty targets
|
||||
|
@ -1,3 +1,59 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 4 18:46:11 UTC 2014 - mailaender@opensuse.org
|
||||
|
||||
- Removed upstreamed mono-core-parallel-build.diff patch
|
||||
- Updated to 3.10.0
|
||||
+ Implemented System.IO.Compression.FileSystem.
|
||||
+ Uri now implements the .NET 4.5 behavior, it can be reverted to the old behavior in the same way by setting the System.Uri::s_IriParsing static field to false.
|
||||
+ Remove unnecessary locking from core metadata parsing functions.
|
||||
+ Avoid cache thrashing of locals array when looping over enumerator.
|
||||
+ Fix support for unaligned offsets in the store_membase_imm opcodes. bxc#23267.
|
||||
+ Fix the lookup of nested types which have a namespace. bxc#21653.
|
||||
+ Increase some opcode sizes. bxc#23026.
|
||||
+ Always pass the imt arg to interface calls in gsharedvt methods. bxc#22624.
|
||||
+ Store the epilog length in MonoArchEHJitInfo instead of encoding it in jinfo->unwind_desc, since the latter can overflow for methods with large epilogs. bxc#22685.
|
||||
+ Add a mono_thread_detach_if_exiting () public api function which can be called by embedding code to detach the runtime if the code is running from a pthread dtor. bxc#21164.
|
||||
+ Fix yet another native types problem. bxc#22053.
|
||||
+ Fix the leaking of mach ports introduced by 98bbf8512aec0fa01b4426583280f6d231d22187. bxc#22068.
|
||||
+ Add support for constrained calls with vtype return types in gsharedvt code. bxc#22109.
|
||||
+ Fix the PLATFORM_GNU check so it works with gnueabi etc. as well. bxc#21520.
|
||||
+ Don’t make runtime invoke signatures generic. bxc#21973.
|
||||
+ Allow v8..v15 in unwind info on arm64. Fixes part of #21615.
|
||||
+ Fix Process.PrivateMemorySize64 etc. on ios. bxc#21882.
|
||||
+ Fix enum->int casts in gsharedvt code. bxc#21893.
|
||||
+ Don’t assert when loading a generic methodspec with 0 arity. bxc#19097.
|
||||
+ Avoid asserting when a cattr cannot be loaded. bxc#21653.
|
||||
+ Avoid making generic calls from gsharedvt methods normally, go through the rgctx infrastructure instead. bxc#21677.
|
||||
+ Fix Uri UserInfo parsing. Fixes 23246.
|
||||
+ Update RequestMessage.RequestUri.AbsoluteUri after redirect. bxc#22383.
|
||||
+ Fixes XContainer attempt to create a XNode from a null value. bxc#20151.
|
||||
+ Changed XObject OnChanged and OnChanging to use Owner. When XObject.Owner is not a XElement XObject.Parent returns null and the owner would not be notified of changing and changed events. bxc#18772.
|
||||
+ Process XslLiteralElements with only child attributes as empty ones. bxc#14751.
|
||||
+ ‘finally’ protect ClientRuntimeChannel.Begin/EndProcess(). bxc#22179.
|
||||
+ WebClient.OpenWrite() must get the response on close. bxc#10163.
|
||||
+ Fix WebClient.UploadValuesTaskAsync(); bxc#20359.
|
||||
+ Improve System.Security.Claims. bxc#22282.
|
||||
+ Fixed serialization of XmlNode field with attribute XmlAnyElement. bxc#3211.
|
||||
+ Handle String::Format with escaped closing }. bxc#22114
|
||||
+ Add a missing check to TypeBuilder.CreateType (). bxc#22059.
|
||||
+ Xml Serialization of Base class w/o a parameterless constructor. Removed validation code that did not allowed serialization of base classes without a parameterless constructor. bxc#6913.
|
||||
+ Fixed XmlSerializer to handle attribute XmlSchemePrivider.IsAny. XmlSerializer no longer outputs a root element with class name when the class has the attribute + XmlSchemeProvider and IsAny is true. bxc#11916
|
||||
+ Test that DeflateStream.Read does read an empty stream. Covers #19313.
|
||||
+ Reseting all private key values to null is required because a new import may not overwrite existing values. bxc#18482.
|
||||
+ Handle quoted filename value. bxc#21960.
|
||||
+ Dispose XmlReader using correct value. bxc#21771.
|
||||
+ Don’t use `1 naming for compiler generated second level and deeper nested types. bxc#22893.
|
||||
+ Extend missing type check to type lookups. bxc#20933.
|
||||
+ Fix copy and paste error in constraints checker. bxc#22131.
|
||||
+ Speed up nullable tokenizer. bxc#20195.
|
||||
+ Coalescing operator if the lhs of a null is a integer type that is larger than the integer type on the rhs. bxc#22054.
|
||||
+ Check for duplicate destructors. bxc#21983.
|
||||
+ Switch statement with constant block at first label. bxc#21805.
|
||||
+ Decimal constants modulo folding. bxc#21743.
|
||||
+ Update codegen for boolean loads. bxc#21685.
|
||||
+ Workaround for issues with CreateItem task where metadata are not generated due to up-to-data inputs. bxc#23022.
|
||||
+ Add KeepDuplicates etc. to 4.0 as internal. bxc#20961.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 6 15:12:18 UTC 2014 - mailaender@opensuse.org
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
%define sgen yes
|
||||
|
||||
Name: mono-core
|
||||
Version: 3.8.0
|
||||
Version: 3.10.0
|
||||
Release: 0
|
||||
Summary: Cross-platform, Open Source, .NET development framework
|
||||
License: LGPL-2.1 and MIT and MS-PL
|
||||
@ -31,8 +31,6 @@ Source0: http://download.mono-project.com/sources/mono/mono-%{version}.ta
|
||||
Source1: mono-core.rpmlintrc
|
||||
# PATCH-FIX-UPSTREAM mono-core-target-4.0.patch dimstar@opensuse.org -- Use runtime 4.0 as default for cairo and nunit -- https://github.com/mono/mono/pull/1209
|
||||
Patch5: mono-core-target-4.0.patch
|
||||
# PATCH-FIX-UPSTREAM -- ro@suse.de -- https://github.com/mono/mono/pull/1210
|
||||
Patch6: mono-core-parallel-build.diff
|
||||
# PATCH-MISSING-TAG -- See http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
|
||||
Patch7: mono-core-ppc64le.diff
|
||||
# PATCH-MISSING-TAG -- See http://en.opensuse.org/openSUSE:Packaging_Patches_guidelines
|
||||
@ -98,7 +96,6 @@ technologies that have been submitted to the ECMA for standardization.
|
||||
%prep
|
||||
%setup -q -n mono-%{version}
|
||||
%patch5 -p1
|
||||
%patch6 -p1
|
||||
%ifarch ppc64
|
||||
%patch7 -p1
|
||||
%patch8 -p1
|
||||
|
Loading…
x
Reference in New Issue
Block a user