forked from pool/mono-core
Accepting request 770740 from Mono:Factory
OBS-URL: https://build.opensuse.org/request/show/770740 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mono-core?expand=0&rev=123
This commit is contained in:
commit
c2f38b0345
@ -1,17 +1,17 @@
|
||||
diff -uprN mono-5.20.0.211.old/Makefile.am mono-5.20.0.211/Makefile.am
|
||||
--- mono-5.20.0.211.old/Makefile.am 2019-02-14 10:46:05.000000000 +0300
|
||||
+++ mono-5.20.0.211/Makefile.am 2019-02-14 20:01:25.206136053 +0300
|
||||
@@ -152,3 +152,6 @@ update-solution-files:
|
||||
diff -uprN mono.bak/Makefile.am mono-6.4.0.198/Makefile.am
|
||||
--- mono.bak/Makefile.am 2019-11-20 21:36:02.812573696 +0100
|
||||
+++ mono-6.4.0.198/Makefile.am 2019-11-20 21:36:28.188845471 +0100
|
||||
@@ -178,3 +178,6 @@ update-solution-files:
|
||||
|
||||
update-solution-files-with-tests:
|
||||
$(MAKE) "GENPROJ_ARGS=2012 true true" update-solution-files
|
||||
+
|
||||
+confighfixdir = $(includedir)/mono-2.0
|
||||
+dist_confighfix_DATA = config.h
|
||||
diff -uprN mono-5.20.0.211.old/mono/metadata/Makefile.am mono-5.20.0.211/mono/metadata/Makefile.am
|
||||
--- mono-5.20.0.211.old/mono/metadata/Makefile.am 2019-02-14 10:46:09.000000000 +0300
|
||||
+++ mono-5.20.0.211/mono/metadata/Makefile.am 2019-02-14 20:01:25.206136053 +0300
|
||||
@@ -444,6 +444,7 @@ libmonoruntimeinclude_HEADERS = \
|
||||
diff -uprN mono.bak/mono/metadata/Makefile.am mono-6.4.0.198/mono/metadata/Makefile.am
|
||||
--- mono.bak/mono/metadata/Makefile.am 2019-11-20 21:35:47.512409834 +0100
|
||||
+++ mono-6.4.0.198/mono/metadata/Makefile.am 2019-11-20 21:36:28.192845514 +0100
|
||||
@@ -461,6 +461,7 @@ libmonoruntimeinclude_HEADERS = \
|
||||
attrdefs.h \
|
||||
blob.h \
|
||||
class.h \
|
||||
@ -19,14 +19,14 @@ diff -uprN mono-5.20.0.211.old/mono/metadata/Makefile.am mono-5.20.0.211/mono/me
|
||||
debug-helpers.h \
|
||||
debug-mono-symfile.h \
|
||||
environment.h \
|
||||
diff -uprN mono-5.20.0.211.old/mono/utils/Makefile.am mono-5.20.0.211/mono/utils/Makefile.am
|
||||
--- mono-5.20.0.211.old/mono/utils/Makefile.am 2019-02-14 10:46:09.000000000 +0300
|
||||
+++ mono-5.20.0.211/mono/utils/Makefile.am 2019-02-14 20:03:48.353363004 +0300
|
||||
@@ -319,6 +319,7 @@ libmonoutilsinclude_HEADERS = \
|
||||
diff -uprN mono.bak/mono/utils/Makefile.am mono-6.4.0.198/mono/utils/Makefile.am
|
||||
--- mono.bak/mono/utils/Makefile.am 2019-11-20 21:35:47.552410263 +0100
|
||||
+++ mono-6.4.0.198/mono/utils/Makefile.am 2019-11-20 21:36:28.192845514 +0100
|
||||
@@ -328,6 +328,7 @@ libmonoutilsinclude_HEADERS = \
|
||||
mono-publib.h \
|
||||
mono-jemalloc.h \
|
||||
mono-dl-fallback.h \
|
||||
+ mono-compiler.h \
|
||||
mono-counters.h
|
||||
|
||||
EXTRA_DIST = mono-embed.h mono-embed.c ../../support/libm/complex.c
|
||||
EXTRA_DIST = mono-errno.h mono-embed.h mono-embed.c ../../support/libm/complex.c mono-experiments.def
|
||||
|
@ -1,79 +0,0 @@
|
||||
From 95316628378f3802f091a69a715a179e210fd1d8 Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Kyte <alexmkyte@gmail.com>
|
||||
Date: Mon, 11 Feb 2019 09:11:11 -0500
|
||||
Subject: [PATCH] [crash] Use safer invalid-free test (#12864)
|
||||
|
||||
When using the previous test, some memory unsafety was
|
||||
observed. It's rather unrecoverable memory unsafety, as
|
||||
it corrupts heap memory used by the sequence points, registered MERP
|
||||
paths, jit info internals, and output string.
|
||||
|
||||
Crashes seen here: https://github.com/mono/mono/pull/12387 reproduce
|
||||
with less than 100 iterations of this malloc test run as the stress
|
||||
test.
|
||||
|
||||
```
|
||||
(MonoJitInfoTable) $2 = {
|
||||
domain = 0x5050505050505050
|
||||
num_chunks = 1347440720
|
||||
num_valid = 1347440720
|
||||
chunks = {}
|
||||
}
|
||||
```
|
||||
|
||||
with
|
||||
|
||||
```
|
||||
(lldb) p/x 1347440720
|
||||
(int) $0 = 0x50505050
|
||||
```
|
||||
|
||||
And sometimes the mono crash
|
||||
|
||||
```
|
||||
(lldb) p *it
|
||||
(SeqPointIterator) $3 = {
|
||||
seq_point = (il_offset = 0, native_offset = 0, flags = 0, next_offset = 0, next_len = 0)
|
||||
ptr = 0x5050505050505050 <no value available>
|
||||
begin = 0x5050505050505050 <no value available>
|
||||
end = 0x5050505050505064 <no value available>
|
||||
has_debug_data = 0
|
||||
}
|
||||
```
|
||||
|
||||
===
|
||||
|
||||
These do not reproduce when doing a double free of legally allocated
|
||||
memory.
|
||||
|
||||
I think that the crash reporting tests aren't the place to check if the
|
||||
OS allows for wild heap corruption when doing these things. I don't
|
||||
think it's currently in scope for the runtime to do crash reporting
|
||||
after it's internal metadata tables have been corrupted. They're the
|
||||
source of truth for symbolication. We don't have many options to
|
||||
validate and reparse them, unless we want to make this all very
|
||||
heavyweight.
|
||||
---
|
||||
mono/tests/libtest.c | 9 +++++----
|
||||
1 file changed, 5 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/mono/tests/libtest.c b/mono/tests/libtest.c
|
||||
index ace5bab7c9bf..8688c3a76b5c 100644
|
||||
--- a/mono/tests/libtest.c
|
||||
+++ b/mono/tests/libtest.c
|
||||
@@ -7705,10 +7705,11 @@ mono_test_MerpCrashDladdr (void)
|
||||
LIBTEST_API void STDCALL
|
||||
mono_test_MerpCrashMalloc (void)
|
||||
{
|
||||
- void *mem = malloc (sizeof (char) * 10);
|
||||
- memset (mem, sizeof (mem) * 10, 'A');
|
||||
- int x = 100;
|
||||
- g_free (&x);
|
||||
+ gpointer x = g_malloc (sizeof(gpointer));
|
||||
+ g_free (x);
|
||||
+
|
||||
+ // Double free
|
||||
+ g_free (x);
|
||||
}
|
||||
|
||||
LIBTEST_API void STDCALL
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0574b61efb9bfc3364211d03d87a12c91dc7b03e8d6242cd4d8d953ef145d468
|
||||
size 246790204
|
3
mono-6.8.0.96.tar.xz
Normal file
3
mono-6.8.0.96.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ed5df4ec663a4e228e89e910e954fa18d33f72e790c11174e1b62fc8cca90ba0
|
||||
size 245059192
|
@ -1,3 +1,210 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 4 09:36:01 UTC 2020 - Mathias Homann <Mathias.Homann@opensuse.org>
|
||||
|
||||
- Update to the most current mono release, 6.8.0.96.
|
||||
for changes, please refer to the commits log on github: https://github.com/mono/mono/commits/master
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 17 12:16:41 UTC 2020 - Berthold Gunreben <azouhr@opensuse.org>
|
||||
|
||||
- enable btls for s390x
|
||||
- remove stale symlinks to prevent from brp-25-symlink errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 3 00:12:48 UTC 2019 - Philipp Seiler <p.seiler@linuxmail.org>
|
||||
|
||||
- removed a few internal dependencies because rpms internal dependency
|
||||
search accidently added those to the package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 21:11:38 UTC 2019 - Philipp Seiler <p.seiler@linuxmail.org>
|
||||
|
||||
- update to new version 6.4.0
|
||||
- removed libtest.patch because it was fixed upstream
|
||||
- New features and changes:
|
||||
* Highlights
|
||||
C# compiler support for C# 8 language version
|
||||
.NET Standard 2.1 support
|
||||
Updated libgdiplus to 6.0.2
|
||||
Notarized macOS installer package
|
||||
|
||||
* Hardened Runtime and Notarization support on macOS
|
||||
The Mono binary installed by the .pkg for macOS is now using the Hardened Runtime capabilities and the package was notarized to comply with Apple’s new restrictions: https://developer.apple.com/documentation/security/notarizing_your_app_before_distribution.
|
||||
This allows the package to work on the upcoming macOS 10.15 Catalina without showing warning dialogs.
|
||||
|
||||
* Interpreter improvements
|
||||
The Mono interpreter was updated to support the Windows operating system.
|
||||
We also completed a lot of groundwork for upcoming future optimizations in the interpreter, like constant folding.
|
||||
|
||||
* Bitness independent AOT cross compiler
|
||||
The Ahead-Of-Time (AOT) cross compiler was updated to no longer require being executed with the same bitness that it should generate code for. This means a 64bit Mono can now emit AOT code for 32bit targets.
|
||||
|
||||
This work was mainly done to support executing the AOT cross compiler on macOS 10.15 Catalina (which is 64bit only) as we still need to generate code for 32bit targets like older iPhone and Apple Watch devices.
|
||||
|
||||
* WebAssembly
|
||||
We continue to work on making our WebAssembly support better. Various sets of issues with the debugger have been resolved in this release and general performance and feature work is happening as well.
|
||||
|
||||
* LLVM improvements
|
||||
We now leave it up to the LLVM framework to insert safepoints. Later optimizations can understand safepoints then which leads to better generated code. See https://github.com/mono/mono/pull/11789
|
||||
The LLVM backend is also supported on the Windows operating system now.
|
||||
|
||||
* PPC JIT optimizations
|
||||
The PowerPC JIT received a bunch of optimization from community contributor Calvin Buckley (@NattyNarwhal).
|
||||
|
||||
* Experimental build support for Fuchsia
|
||||
A very minimal and experimental support for building Mono targeting the Fuchsia OS landed in the build system.
|
||||
|
||||
* .NET Standard 2.1 support
|
||||
We updated our class libraries to support the latest additions to .NET Standard. You can now run a library compiled against the .NET Standard 2.1 specification on Mono.
|
||||
|
||||
* CoreFX integration
|
||||
We continued to replace some of our classes with the implementation from CoreFX to improve performance and compatibility with .NET.
|
||||
|
||||
* libgdiplus update to 6.0.2
|
||||
The libgdiplus native library is used for implementing System.Drawing on Unix platforms. This release contains many important improvements from our community members.
|
||||
|
||||
* System.Windows.Forms
|
||||
More fixes and layout improvements for different controls made by external contributors have landed in this release .
|
||||
|
||||
* C# 8 language version support in csc and msbuild
|
||||
The C# compiler and msbuild tooling were updated to versions that support the final C# 8 language specification.
|
||||
The Default Interface Methods (DIM) feature also received a few runtime enhancements.
|
||||
|
||||
* NuGet
|
||||
Bundled NuGet version has been upgraded to 5.2 RTM.
|
||||
|
||||
- Resolved Issues
|
||||
* gh#mono/mono#7377 - [Mono.Debugger.Soft] Connections are not properly closed
|
||||
* gh#mono/mono#7452 - Download link for macOS is osbsolete (5.8 instead of 5.10)
|
||||
* gh#mono/mono#7845 - Don’t install monograph
|
||||
* gh#mono/mono#8360 - [System.Net.Sockets] flakey failures of SocketTest.TestSelect1 on Darwin systems
|
||||
* gh#mono/mono#8486 - struct with 3 bytes not marshaled correctly with LLVM on watchOS
|
||||
* gh#mono/mono#8747 - FileSystemWatcher calls event after it is Disposed
|
||||
* gh#mono/mono#9267 - Release tarballs should be compressed with xz
|
||||
* gh#mono/mono#9621 - 64 bit cross compilers targeting 32 bit platforms
|
||||
* gh#mono/mono#9664 - DateTime.Now or Timezone information do not transition out of DST for all time zones
|
||||
* gh#mono/mono#10101 - ref local of jagged array leads to InvalidProgramException
|
||||
* gh#mono/mono#10277 - [Reflection] Event accessors don’t inherit ReflectedType
|
||||
* gh#mono/mono#10645 - WebException is thrown when reading from WebException.Response.GetResponse() stream
|
||||
* gh#mono/mono#11431 - Add Brotli compression to existing System.IO.Compression assembly
|
||||
* gh#mono/mono#11489 - IronPython 2.7.9 strange issue on mono 5.16
|
||||
* gh#mono/mono#11643 - mkbudle problem - Illegal byte sequence
|
||||
* gh#mono/mono#12157 - new DriveInfo(Path.GetTempPath()) crashes on macOS
|
||||
* gh#mono/mono#12182 - LLVM AOT caches require SSE4.1-capable CPU
|
||||
* gh#mono/mono#12747 - System.Reflection.Emit.ParameterBuilder.SetCustomAttribute() throws undocumented ArgumentOutOfRangeException
|
||||
* gh#mono/mono#12831 - [iOS] Generic sharing with long float arguments list
|
||||
* gh#mono/mono#12839 - [Windows] block_guard_restore_aligment_on_exit.exe frequently times out on CI
|
||||
* gh#mono/mono#12843 - Mono Android debugger crashes using HttpClient wrapped in Async Method
|
||||
* gh#mono/mono#12871 - wasm var co = new System.Net.CookieContainer(); error System.DllNotFoundException: libc
|
||||
* gh#mono/mono#12881 - MonoDevelop SDB regressions
|
||||
* gh#mono/mono#12945 - corlib-xunit tests taking 10x longer in the coop configuration
|
||||
* gh#mono/mono#12964 - [debugger][wasm] Assertion at mono/metadata/loader.c:2500, condition ‘' not met
|
||||
* gh#mono/mono#12981 - [WASM] Transform.c:2856, condition `' not met
|
||||
* gh#mono/mono#12988 - [WASM] LLVM failed for ‘ObservableCollectionExtensions.InternalUpdate’: incoming phi sreg1
|
||||
* gh#mono/mono#12998 - [WASM] llvmonly-runtime.c:804, condition `' not met
|
||||
* gh#mono/mono#13028 - FSharpType.IsUnion broken inside of F# Interactive due to missing System.Reflection.Emit.AssemblyBuilder.ReflectionOnly implementation
|
||||
* gh#mono/mono#13030 - Directory.GetLogicalDrives () missing SystemNative_GetAllMountPoints pal function
|
||||
* gh#mono/mono#13056 - AV inside mono_local_cprop+0x23f
|
||||
* gh#mono/mono#13150 - [WinForms] Related Forms closing
|
||||
* gh#mono/mono#13163 - Task: Use async DNS resolution in Socket and web stack code.
|
||||
* gh#mono/mono#13195 - [wasm][ci] Intermittent failures with ChakraCore Tests
|
||||
* gh#mono/mono#13224 - iOS SDKs test app build doesn’t work when not in sdks/ios directory
|
||||
* gh#mono/mono#13231 - CGPattern causes “Attempting to JIT compile method” exception since VS 7.5
|
||||
* gh#mono/mono#13250 - Setting CustomErrorsMode for RemotingConfiguration throws NotImplementedException
|
||||
* gh#mono/mono#13261 - [sdb] StackOverflow when invoking many methods from client debugger
|
||||
* gh#mono/mono#13282 - [SWF] Method OnClosed should pass FormClosedEventArgs type, instead of EventArgs
|
||||
* gh#mono/mono#13284 - Checked ulong relational operation throws wrong OverflowException on armeabi-v7a
|
||||
* gh#mono/mono#13297 - [WASM] decompose.c:1471, condition `cfg->cbb == first_bb’ not met
|
||||
* gh#mono/mono#13311 - [sdb] Failure to suspend
|
||||
* gh#mono/mono#13319 - Crash executing static methods on interfaces
|
||||
* gh#mono/mono#13350 - MemberInfo.ReflectedType returns wrong reflected type for an event method
|
||||
* gh#mono/mono#13374 - Crash executing default implemented property in interface
|
||||
* gh#mono/mono#13412 - Bump netstandard.dll assembly version to 2.1
|
||||
* gh#mono/mono#13445 - Fork regression in Mojave due to MAP_JIT
|
||||
* gh#mono/mono#13452 - [Linux] Mono (5.18.0.268) crashes in String:IndexOf(char value, int startIndex)
|
||||
* gh#mono/mono#13454 - watchOS apps crash on launch if built with LLVM
|
||||
* gh#mono/mono#13455 - AOT crashes with “MVAR 0 (Ts) cannot be expanded with type 0x1e” when compiling monotouch_System.Core_xunit-test.dll
|
||||
* gh#mono/mono#13460 - AOT crashes with “Instruction does not dominate all uses” when compiling monotouch_System.Core_xunit-test.dll
|
||||
* gh#mono/mono#13463 - [WASM] Mixed Mode: function signature mismatch
|
||||
* gh#mono/mono#13466 - Crash at runtime likely related to protected accessibility of a method declared in an interface.
|
||||
* gh#mono/mono#13467 - Unexpected System.MethodAccessException is thrown for a protected method declared in an interface
|
||||
* gh#mono/mono#13478 - Undefined symbol ___sync_lock_test_and_set_4 on armv7 in xamarin-macios 2019-02
|
||||
* gh#mono/mono#13479 - System.Runtime.CompilerServices.UnsafeTests attempting to JIT compile on iOS devices
|
||||
* gh#mono/mono#13508 - ILAsm: adds ‘virtual’ attribute to sealed default interface methods
|
||||
* gh#mono/mono#13522 - AOT issue on WatchOS: “* Assertion at mini-llvm.c:9381, condition `fields [2 + i]’ not met “
|
||||
* gh#mono/mono#13526 - The repl (monotouch_tv_runtime) assemblies don’t work for tvOS
|
||||
* gh#mono/mono#13597 - Runtime Error when using span on LeetCode
|
||||
* gh#mono/mono#13607 - Assertion in xamarin-macios link sdk test: “mini-generic-sharing.c:568, condition `is_ok (error)’ not met, function:inflate_info, Could not inflate generic type, due to MVAR 0 (T_ULONG) cannot be expanded with type 0x1e”
|
||||
* gh#mono/mono#13610 - Returning tuple broken when enabling fullAOT+LLVM
|
||||
* gh#mono/mono#13639 - mono-cil-strip crashes when called against the monotouch_Microsoft.CSharp_xunit-test.dll
|
||||
* gh#mono/mono#13654 - Interpreter Crash When Doing Fancy Reflection
|
||||
* gh#mono/mono#13672 - [2019-02] Xamarin.Android runtime tests crash on free
|
||||
* gh#mono/mono#13714 - Exception during static constructor loading is not cleaned up
|
||||
* gh#mono/mono#13775 - New Mono drop crashing in C# symbol tests
|
||||
* gh#mono/mono#13787 - [wasm] Uint8ClampedArray.From(byte[]) invalid cast
|
||||
* gh#mono/mono#13804 - [MacSDK] pkg-config is 32-bit only
|
||||
* gh#mono/mono#13834 - Mac crash reports do not give the right SizeOfImage
|
||||
* gh#mono/mono#13878 - System.Reflection.Emit.DynamicMethod:CreateDelegate (?) crashes XM apps when under hardened runtime
|
||||
* gh#mono/mono#13888 - (FullAOT) Ran out of trampolines of type 3
|
||||
* gh#mono/mono#13889 - [llvm] Bounds checks are not eliminated
|
||||
* gh#mono/mono#13923 - [DIM] [CoreCLR Test] boring not working
|
||||
* gh#mono/mono#13925 - [DIM] [CoreCLR Test] abstractcalls not working
|
||||
* gh#mono/mono#13941 - Crash During AOT of ASP.NET Core Assemblies
|
||||
* gh#mono/mono#13974 - mono: symbol lookup error: /usr/lib/libmono-llvm.so: undefined symbol: mono_class_get_generic_class
|
||||
* gh#mono/mono#14005 - Method mono_type_is_generic_parameter is not exposed in shared libraries
|
||||
* gh#mono/mono#14079 - Interpreter Crash on Reference Source System.Web.Extensions
|
||||
* gh#mono/mono#14143 - Techempower Platform Plaintext Hangs on Every Request using LLVM JIT
|
||||
* gh#mono/mono#14170 - “Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR)” after debugger pauses and then continues on nested exception
|
||||
* gh#mono/mono#14181 - Pango modules.cache contains jenkins builder path
|
||||
* gh#mono/mono#14195 - 5.20.1.19 configure fails if enable-cxx but no C++ compiler found
|
||||
* gh#mono/mono#14214 - HttpClient.SendAsync() with > 2 GB response body.
|
||||
* gh#mono/mono#14215 - Suggestion: switch to 7z native format instead of ZIP for Mono archives
|
||||
* gh#mono/mono#14234 - SqliteMembershipProvider initialization bug (Failed to map path ‘/’).
|
||||
* gh#mono/mono#14243 - [Wasm] Assertion at mini-llvm.c:2106, condition 'clause->flags == MONO_EXCEPTION_CLAUSE_NONE || clause->flags == MONO_EXCEPTION_CLAUSE_FINALLY || clause->flags == MONO_EXCEPTION_CLAUSE_FAULT' not met
|
||||
* gh#mono/mono#14246 - Interpreter crashes when encountering build-in types
|
||||
* gh#mono/mono#14247 - Assertion on 32-bit iOS device with thumb code
|
||||
* gh#mono/mono#14255 - Copying from Mono port of Windows Forms doesn’t work in some programs on Linux
|
||||
* gh#mono/mono#14261 - LLVM Generates Wrong IndexOf Span code
|
||||
* gh#mono/mono#14290 - [ios] Non-public API usage when submitting app
|
||||
* gh#mono/mono#14543 - Decoded custom attribute values leak the encoded value receiver
|
||||
* gh#mono/mono#14551 - Result for EnumCompareTo differs from Core implementation
|
||||
* gh#mono/mono#14585 - [tests] Don’t send HTTP requests to Google
|
||||
* gh#mono/mono#14669 - mempool allocate bug?
|
||||
* gh#mono/mono#14729 - interpreter tests fail on iOS and tvOS for mscorlib tests
|
||||
* gh#mono/mono#14792 - [sdks][ios] Perform the appropriate cast of objc_msgSend and friends
|
||||
* gh#mono/mono#14793 - Mono-Native not working on MacOS Catalina
|
||||
* gh#mono/mono#14809 - Cannot box IsByRefLike type 'System.ReadOnlySpan'1' in Forms designer tests with 6.0
|
||||
* gh#mono/mono#14839 - [xamarin] TimeZoneInfo.Local always returns “Local” name
|
||||
* gh#mono/mono#14841 - opt: Unknown command line argument ‘-place-safepoints’ in XI 2019-06 integration
|
||||
* gh#mono/mono#14871 - [wasm] System.Text.Json struct serialization fails (but works on CoreCLR)
|
||||
* gh#mono/mono#14872 - System.Runtime.CompilerServices.UnsafeTests.ReadWriteDoublePointer test failure on devices in Xamarin.iOS
|
||||
* gh#mono/mono#14972 - Xamarin.iOS: System.ExecutionEngineException: Attempting to JIT compile method ‘(wrapper delegate-begin-invoke) System.IAsyncResult System.Func`2<ExecutionEngineExceptionTest.AppDelegate, bool>:begin_invoke_IAsyncResult__this___T_AsyncCallback_object (ExecutionEngineExceptionTest.AppDelegate,System.AsyncCallback,object)’
|
||||
* gh#mono/mono#14975 - Mono profiler crashes when running IDE leak tests for VSMac
|
||||
* gh#mono/mono#15048 - [aot] Duplicate .fnstart Directive Compiler Error
|
||||
* gh#mono/mono#15058 - [2019-06][iOS] Several tests on iOS fail on a 32b device
|
||||
* gh#mono/mono#15261 - [iOS][Tests] There are a number of System.Numeric tests that fail on iOS 32b devices
|
||||
* gh#mono/mono#15262 - [iOS][Tests] A number of linq tests fail on iOS 32b devices
|
||||
* gh#mono/mono#15263 - [iOS][Tests] A number of tests from Microsoft.CSharp fail on iOS 32b devices.
|
||||
* gh#mono/mono#15265 - [watchOS][Tests] The System_xunit-test.dll for watchOS includes tests that should be ignored
|
||||
* gh#mono/mono#15307 - [iOS][Tests] Several corelib tests crash on iOS32b devices.
|
||||
* gh#mono/mono#15328 - [MacOS][Tests] Several tests fail due to a System.IO exception
|
||||
* gh#mono/mono#15329 - [MacOS Modern][Tests] System.IO.AnonymousPipe tests are included when they are not supported.
|
||||
* gh#mono/mono#15330 - Runtime deadlock
|
||||
* gh#mono/mono#15366 - StringBuilder marshalling bug
|
||||
* gh#mono/mono#15441 - “pos undeclared” compilation error
|
||||
* gh#mono/mono#15692 - Catching IndexOutOfRange doesn’t provide message
|
||||
* gh#mono/mono#15751 - Memory leak in mono 6.0.0.313 for delegates with target that are passed to native code
|
||||
* gh#mono/mono#15825 - DeflateStream leaks native memory if not explicitly disposed
|
||||
* gh#mono/mono#15878 - Crash in mono_coop_mutex_lock while running VS for Mac
|
||||
* gh#mono/mono#15887 - [regression] File.GetLastWriteTime fails with specific (GMT+8) timezone
|
||||
* gh#mono/mono#15999 - [mini] run regression tests with fullaot+llvm
|
||||
* gh#mono/mono#16010 - typeof(object).GetMember(“”) does not return an empty array
|
||||
* gh#mono/mono#16024 - Native crash in ves_icall_System_Net_Sockets_Socket_Connect_internal
|
||||
* gh#mono/mono#16032 - IOException: Sharing violation on path …
|
||||
* gh#mono/mono#16122 - VS 16.2.0 regression: CopyToAsync from DeflateStream to GzipStream throws NotImplementedException
|
||||
* gh#mono/mono#16486 - FileSystemEventArgs.FullPath throws ArgumentNullException
|
||||
* gh#mono/mono#16712 - SIGSEGV in mono_class_setup_vtable_general
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 24 17:25:10 UTC 2019 - Martin Liška <mliska@suse.cz>
|
||||
|
||||
|
199
mono-core.spec
199
mono-core.spec
@ -1,7 +1,9 @@
|
||||
|
||||
|
||||
#
|
||||
# spec file for package mono-core
|
||||
#
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -12,10 +14,9 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%{!?ext_man: %define ext_man .gz}
|
||||
%define llvm no
|
||||
@ -26,7 +27,7 @@
|
||||
%define boehm yes
|
||||
%endif
|
||||
|
||||
%ifarch %ix86 x86_64 %{arm} aarch64 ppc64 ppc64le
|
||||
%ifarch %ix86 x86_64 %{arm} aarch64 ppc64 ppc64le s390x
|
||||
%define btls yes
|
||||
%else
|
||||
%define btls no
|
||||
@ -38,22 +39,20 @@
|
||||
%define roslyn no
|
||||
%endif
|
||||
|
||||
%define version_suffix 19
|
||||
%define version_suffix 96
|
||||
|
||||
Name: mono-core
|
||||
Version: 5.20.1
|
||||
Version: 6.8.0
|
||||
Release: 0
|
||||
Summary: Cross-platform, Open Source, .NET development framework
|
||||
License: LGPL-2.1 and MIT and MS-PL
|
||||
License: LGPL-2.1-only AND MIT AND MS-PL
|
||||
Group: Development/Languages/Mono
|
||||
Url: http://www.mono-project.com
|
||||
Source0: http://download.mono-project.com/sources/mono/mono-%{version}.%{version_suffix}.tar.bz2
|
||||
Source0: http://download.mono-project.com/sources/mono/mono-%{version}.%{version_suffix}.tar.xz
|
||||
Source1: mono-core.rpmlintrc
|
||||
Source2: gmcs
|
||||
# ppc build segfault so exclude it
|
||||
ExcludeArch: ppc
|
||||
# PATCH-FIX-UPSTREAM
|
||||
Patch2: libtest.patch
|
||||
# PATCH-FIX-OPENSUSE remove checks for libmono in mono-find-provides and mono-find-requires scripts
|
||||
Patch14: find-deps-fix.patch
|
||||
# PATCH-FIX-OPENSUSE revert Microsoft.Build.Tasks library to use old mcs compiler. This will make xbuild to use old mcs instead of csc - patch is used when roslyn is unavailable for current platform (big-endian systems).
|
||||
@ -64,23 +63,23 @@ Patch16: fix-dbg-headers.patch
|
||||
Patch20: xbuild-use-roslyn-vbc.patch
|
||||
# PATCH-FIX-OPENSUSE fix 64bit-portability-issue at exceptions-ppc.c:799
|
||||
Patch21: fix-ppc-64bit-portability-issue.patch
|
||||
BuildRequires: cmake
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: bison
|
||||
BuildRequires: ca-certificates
|
||||
BuildRequires: which
|
||||
BuildRequires: cmake
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libtool
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python
|
||||
BuildRequires: systemtap-sdt-devel
|
||||
BuildRequires: timezone
|
||||
BuildRequires: which
|
||||
BuildRequires: pkgconfig(libgdiplus)
|
||||
BuildRequires: pkgconfig(x11)
|
||||
BuildRequires: pkgconfig(xinerama)
|
||||
BuildRequires: pkgconfig(zlib)
|
||||
BuildRequires: python
|
||||
%ifnarch ia64 %arm s390
|
||||
BuildRequires: pkgconfig(valgrind)
|
||||
%endif
|
||||
@ -109,52 +108,31 @@ Provides: mono(I18N) = 2.0.0.0
|
||||
Provides: mono(I18N.West) = 1.0.5000.0
|
||||
Provides: mono(I18N.West) = 2.0.0.0
|
||||
Provides: mono(ICSharpCode.SharpZipLib) = 0.6.0.0
|
||||
Provides: mono(ICSharpCode.SharpZipLib) = 2.6.0.0
|
||||
Provides: mono(ICSharpCode.SharpZipLib) = 0.84.0.0
|
||||
Provides: mono(ICSharpCode.SharpZipLib) = 2.6.0.0
|
||||
Provides: mono(ICSharpCode.SharpZipLib) = 2.84.0.0
|
||||
Provides: mono(Mono.Cairo) = 1.0.5000.0
|
||||
Provides: mono(Mono.Cairo) = 2.0.0.0
|
||||
Provides: mono(Mono.CompilerServices.SymbolWriter) = 1.0.5000.0
|
||||
Provides: mono(Mono.CompilerServices.SymbolWriter) = 2.0.0.0
|
||||
Provides: mono(Mono.Configuration.Crypto) = 4.0.0.0
|
||||
Provides: mono(Mono.Posix) = 1.0.5000.0
|
||||
Provides: mono(Mono.Posix) = 2.0.0.0
|
||||
Provides: mono(Mono.Security) = 1.0.5000.0
|
||||
Provides: mono(Mono.Security) = 2.0.0.0
|
||||
Provides: mono(System) = 1.0.5000.0
|
||||
Provides: mono(System) = 2.0.0.0
|
||||
Provides: mono(System.Collections) = 4.0.0.0
|
||||
Provides: mono(System.Collections.Concurrent) = 4.0.0.0
|
||||
Provides: mono(System.ComponentModel) = 4.0.0.0
|
||||
Provides: mono(System.ComponentModel.Annotations) = 4.0.0.0
|
||||
Provides: mono(System.ComponentModel.EventBasedAsync) = 4.0.0.0
|
||||
Provides: mono(System.Configuration) = 1.0.5000.0
|
||||
Provides: mono(System.Configuration) = 2.0.0.0
|
||||
Provides: mono(System.Security) = 1.0.5000.0
|
||||
Provides: mono(System.Security) = 2.0.0.0
|
||||
Provides: mono(System.Xml) = 1.0.5000.0
|
||||
Provides: mono(System.Xml) = 2.0.0.0
|
||||
Provides: mono(System.Diagnostics.Contracts) = 4.0.0.0
|
||||
Provides: mono(System.Diagnostics.Debug) = 4.0.0.0
|
||||
Provides: mono(System.Diagnostics.Tools) = 4.0.0.0
|
||||
Provides: mono(System.Diagnostics.Tracing) = 4.0.0.0
|
||||
Provides: mono(System.Collections) = 4.0.0.0
|
||||
Provides: mono(System.Collections.Concurrent) = 4.0.0.0
|
||||
Provides: mono(System.Runtime) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.Extensions) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.InteropServices) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.InteropServices.WindowsRuntime) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.Numerics) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.Serialization.Json) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.Serialization.Primitives) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.Serialization.Xml) = 4.0.0.0
|
||||
Provides: mono(System.Reflection) = 4.0.0.0
|
||||
Provides: mono(System.Reflection.Emit) = 4.0.0.0
|
||||
Provides: mono(System.Reflection.Emit.ILGeneration) = 4.0.0.0
|
||||
Provides: mono(System.Reflection.Emit.Lightweight) = 4.0.0.0
|
||||
Provides: mono(System.Reflection.Extensions) = 4.0.0.0
|
||||
Provides: mono(System.Reflection.Primitives) = 4.0.0.0
|
||||
Provides: mono(System.ObjectModel) = 4.0.0.0
|
||||
Provides: mono(System.Xml.ReaderWriter) = 4.0.0.0
|
||||
Provides: mono(System.Xml.XDocument) = 4.0.0.0
|
||||
Provides: mono(System.Xml.XmlSerializer) = 4.0.0.0
|
||||
Provides: mono(System.ComponentModel) = 4.0.0.0
|
||||
Provides: mono(System.ComponentModel.Annotations) = 4.0.0.0
|
||||
Provides: mono(System.ComponentModel.EventBasedAsync) = 4.0.0.0
|
||||
Provides: mono(System.Dynamic.Runtime) = 4.0.0.0
|
||||
Provides: mono(System.Globalization) = 4.0.0.0
|
||||
Provides: mono(System.IO) = 4.0.0.0
|
||||
@ -165,7 +143,24 @@ Provides: mono(System.Linq.Queryable) = 4.0.0.0
|
||||
Provides: mono(System.Net.NetworkInformation) = 4.0.0.0
|
||||
Provides: mono(System.Net.Primitives) = 4.0.0.0
|
||||
Provides: mono(System.Net.Requests) = 4.0.0.0
|
||||
Provides: mono(System.ObjectModel) = 4.0.0.0
|
||||
Provides: mono(System.Reflection) = 4.0.0.0
|
||||
Provides: mono(System.Reflection.Emit) = 4.0.0.0
|
||||
Provides: mono(System.Reflection.Emit.ILGeneration) = 4.0.0.0
|
||||
Provides: mono(System.Reflection.Emit.Lightweight) = 4.0.0.0
|
||||
Provides: mono(System.Reflection.Extensions) = 4.0.0.0
|
||||
Provides: mono(System.Reflection.Primitives) = 4.0.0.0
|
||||
Provides: mono(System.Resources.ResourceManager) = 4.0.0.0
|
||||
Provides: mono(System.Runtime) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.Extensions) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.InteropServices) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.InteropServices.WindowsRuntime) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.Numerics) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.Serialization.Json) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.Serialization.Primitives) = 4.0.0.0
|
||||
Provides: mono(System.Runtime.Serialization.Xml) = 4.0.0.0
|
||||
Provides: mono(System.Security) = 1.0.5000.0
|
||||
Provides: mono(System.Security) = 2.0.0.0
|
||||
Provides: mono(System.Security.Principal) = 4.0.0.0
|
||||
Provides: mono(System.ServiceModel.Http) = 4.0.0.0
|
||||
Provides: mono(System.ServiceModel.Primitives) = 4.0.0.0
|
||||
@ -177,10 +172,14 @@ Provides: mono(System.Threading) = 4.0.0.0
|
||||
Provides: mono(System.Threading.Tasks) = 4.0.0.0
|
||||
Provides: mono(System.Threading.Tasks.Parallel) = 4.0.0.0
|
||||
Provides: mono(System.Threading.Timer) = 4.0.0.0
|
||||
Provides: mono(System.Xml) = 1.0.5000.0
|
||||
Provides: mono(System.Xml) = 2.0.0.0
|
||||
Provides: mono(System.Xml.ReaderWriter) = 4.0.0.0
|
||||
Provides: mono(System.Xml.XDocument) = 4.0.0.0
|
||||
Provides: mono(System.Xml.XmlSerializer) = 4.0.0.0
|
||||
Provides: mono(mscorlib) = 1.0.5000.0
|
||||
Provides: mono(mscorlib) = 2.0.0.0
|
||||
Provides: mono(mscorlib) = 4.0.0.0
|
||||
Provides: mono(Mono.Configuration.Crypto) = 4.0.0.0
|
||||
# mono-core provides System.DateTime functions, which rely on timezone information
|
||||
Requires: timezone
|
||||
|
||||
@ -194,7 +193,7 @@ Requires: timezone
|
||||
%define extra_req_filters grep -vE "%{buildroot}%{_prefix}/lib/mono/.*-api/Mono.Debugger.Soft.dll"
|
||||
|
||||
%define __find_provides env sh -c 'filelist=($(cat)) && { %{filtered_filelist} | /usr/lib/rpm/find-provides && %{filtered_filelist} | prefix=%{buildroot}%{_prefix} %{buildroot}%{_bindir}/mono-find-provides ; } | sort | uniq'
|
||||
%define __find_requires env sh -c 'filelist=($(cat)) && { %{filtered_filelist} | %{extra_req_filters} | /usr/lib/rpm/find-requires && %{filtered_filelist} | %{extra_req_filters} | prefix=%{buildroot}%{_prefix} %{buildroot}%{_bindir}/mono-find-requires ; } | sort | uniq'
|
||||
%define __find_requires env sh -c 'filelist=($(cat)) && { %{filtered_filelist} | %{extra_req_filters} | /usr/lib/rpm/find-requires && %{filtered_filelist} | %{extra_req_filters} | prefix=%{buildroot}%{_prefix} %{buildroot}%{_bindir}/mono-find-requires | grep -v "System.Numerics.Vectors" | grep -v "System.Buffers" | grep -v "Microsoft.Build.Framework" | grep -v "Microsoft.Build.Tasks.Core" | grep -v "Microsoft.Build.Utilities.Core" | grep -v "System.Runtime.Loader" | grep -v "System.Text.Encoding.CodePages" ; } | sort | uniq'
|
||||
|
||||
%description
|
||||
The Mono Project is an open development initiative that is working to
|
||||
@ -205,7 +204,6 @@ technologies that have been submitted to the ECMA for standardization.
|
||||
|
||||
%prep
|
||||
%setup -q -n mono-%{version}.%{version_suffix}
|
||||
%patch2 -p1
|
||||
%patch14 -p1
|
||||
%patch16 -p1
|
||||
%if %roslyn == no
|
||||
@ -349,6 +347,8 @@ rm -v %{buildroot}%{_bindir}/csc
|
||||
rm -v %{buildroot}%{_bindir}/csi
|
||||
rm -v %{buildroot}%{_bindir}/vbc
|
||||
rm -rfv %{msbuild_prefix}
|
||||
# also remove stale symlinks to prevent from brp-25-symlink errors:
|
||||
rm -v %{buildroot}%{_prefix}/lib/mono/msbuild/Current/bin/Roslyn/*
|
||||
%endif
|
||||
|
||||
%fdupes %{buildroot}%{_prefix}
|
||||
@ -362,7 +362,8 @@ rm %{buildroot}%{_bindir}/mono-sgen-gdb.py
|
||||
|
||||
%files -f mcs.lang
|
||||
%defattr(-, root, root)
|
||||
%doc COPYING.LIB LICENSE NEWS README.md
|
||||
%doc NEWS README.md
|
||||
%license COPYING.LIB LICENSE
|
||||
%config %{_sysconfdir}/mono/2.0/machine.config
|
||||
%config %{_sysconfdir}/mono/2.0/settings.map
|
||||
%config %{_sysconfdir}/mono/4.0/machine.config
|
||||
@ -372,7 +373,6 @@ rm %{buildroot}%{_bindir}/mono-sgen-gdb.py
|
||||
%config %{_sysconfdir}/mono/config
|
||||
%dir %{_prefix}/lib/mono
|
||||
%dir %{_prefix}/lib/mono/4.5
|
||||
%dir %{_prefix}/lib/mono/4.5/dim/
|
||||
%dir %{_prefix}/lib/mono/4.5/Facades
|
||||
%dir %{_prefix}/lib/mono/gac
|
||||
%dir %{_sysconfdir}/mono
|
||||
@ -386,8 +386,6 @@ rm %{buildroot}%{_bindir}/mono-sgen-gdb.py
|
||||
%{_bindir}/chktrust
|
||||
%{_bindir}/crlupdate
|
||||
%{_bindir}/csharp
|
||||
#csc-dim components still installed for non-roslyn builds, maybe this is a bug
|
||||
%{_bindir}/csc-dim
|
||||
%{_bindir}/dmcs
|
||||
%{_bindir}/gacutil
|
||||
%{_bindir}/gacutil2
|
||||
@ -395,6 +393,7 @@ rm %{buildroot}%{_bindir}/mono-sgen-gdb.py
|
||||
%{_bindir}/ikdasm
|
||||
%{_bindir}/mcs
|
||||
%{_bindir}/mono
|
||||
%{_bindir}/mono-hang-watchdog
|
||||
%if %boehm == yes
|
||||
%{_bindir}/mono-boehm
|
||||
%endif
|
||||
@ -461,6 +460,7 @@ rm %{buildroot}%{_bindir}/mono-sgen-gdb.py
|
||||
%{_prefix}/lib/mono/4.5/System.Dynamic.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Json.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Json.Microsoft.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Memory.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Net.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Net.Http.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Net.Http.Formatting.dll
|
||||
@ -468,8 +468,10 @@ rm %{buildroot}%{_bindir}/mono-sgen-gdb.py
|
||||
%{_prefix}/lib/mono/4.5/System.Numerics.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Numerics.Vectors.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Reflection.Context.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Runtime.CompilerServices.Unsafe.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Security.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Threading.Tasks.Extensions.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Web.Mobile.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Web.RegularExpressions.dll
|
||||
%{_prefix}/lib/mono/4.5/System.Workflow.Activities.dll
|
||||
@ -485,7 +487,6 @@ rm %{buildroot}%{_bindir}/mono-sgen-gdb.py
|
||||
%{_prefix}/lib/mono/4.5/Facades/System*
|
||||
%{_prefix}/lib/mono/4.5/Facades/Microsoft*
|
||||
%{_prefix}/lib/mono/4.5/Facades/netstandard*
|
||||
%{_prefix}/lib/mono/4.5/dim/*
|
||||
%{_prefix}/lib/mono/gac/Commons.Xml.Relaxng
|
||||
%{_prefix}/lib/mono/gac/CustomMarshalers
|
||||
%{_prefix}/lib/mono/gac/I18N
|
||||
@ -574,7 +575,7 @@ cert-sync /etc/ssl/ca-bundle.pem
|
||||
|
||||
%package -n libmono-2_0-1
|
||||
Summary: A Library for embedding Mono in your Application
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Libraries/C and C++
|
||||
%if %{sgen}
|
||||
Requires: libmonosgen-2_0-1
|
||||
@ -601,7 +602,7 @@ A Library for embedding Mono in your Application.
|
||||
|
||||
%package -n libmono-2_0-devel
|
||||
Summary: Development files for libmono
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: libmono-2_0-1 = %{version}
|
||||
%if %{sgen}
|
||||
@ -631,7 +632,7 @@ Development files for libmono.
|
||||
%if %boehm == yes
|
||||
%package -n libmonoboehm-2_0-1
|
||||
Summary: A Library for embedding Mono in your Application (Boehm GC)
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Libraries/C and C++
|
||||
|
||||
%description -n libmonoboehm-2_0-1
|
||||
@ -654,7 +655,7 @@ Boehm garbage collector.
|
||||
|
||||
%package -n libmonoboehm-2_0-devel
|
||||
Summary: Development files for libmonoboehm
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: libmono-2_0-devel
|
||||
Requires: libmonoboehm-2_0-1 = %{version}
|
||||
@ -677,7 +678,7 @@ Development files for libmonoboehm
|
||||
%if %sgen == yes
|
||||
%package -n libmonosgen-2_0-1
|
||||
Summary: A Library for embedding Mono in your Application (SGen GC)
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Libraries/C and C++
|
||||
|
||||
%description -n libmonosgen-2_0-1
|
||||
@ -700,7 +701,7 @@ garbage collector.
|
||||
|
||||
%package -n libmonosgen-2_0-devel
|
||||
Summary: Development files for libmonosgen
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: libmono-2_0-devel
|
||||
Requires: libmonosgen-2_0-1 = %{version}
|
||||
@ -725,7 +726,7 @@ Development files for libmonosgen.
|
||||
%if %llvm == yes
|
||||
%package -n libmono-llvm0
|
||||
Summary: Loadable LLVM libary for mono
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Libraries/C and C++
|
||||
|
||||
%description -n libmono-llvm0
|
||||
@ -748,7 +749,7 @@ Loadable LLVM libary for mono.
|
||||
|
||||
%package -n mono-locale-extras
|
||||
Summary: Extra locale information
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
Provides: mono(I18N.CJK) = 1.0.5000.0
|
||||
@ -782,7 +783,7 @@ Extra locale information.
|
||||
|
||||
%package -n mono-data
|
||||
Summary: Database connectivity for Mono
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
Provides: mono-directory = %{version}
|
||||
@ -846,7 +847,7 @@ Database connectivity for Mono.
|
||||
|
||||
%package -n mono-winforms
|
||||
Summary: Mono's Windows Forms implementation
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
Provides: mono-window-forms = %{version}
|
||||
@ -887,7 +888,7 @@ Mono's Windows Forms implementation.
|
||||
|
||||
%package -n ibm-data-db2
|
||||
Summary: Database connectivity for DB2
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
|
||||
@ -907,7 +908,7 @@ Database connectivity for DB2.
|
||||
|
||||
%package -n mono-extras
|
||||
Summary: Extra packages
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
Provides: mono-ms-extras = %{version}
|
||||
@ -972,7 +973,7 @@ Extra packages.
|
||||
|
||||
%package -n mono-data-sqlite
|
||||
Summary: Database connectivity for Mono
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
Requires: mono-data = %{version}
|
||||
@ -995,7 +996,7 @@ Database connectivity for Mono.
|
||||
|
||||
%package -n mono-wcf
|
||||
Summary: Mono implementation of WCF, Windows Communication Foundation
|
||||
License: MIT and MS-PL
|
||||
License: MIT AND MS-PL
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
|
||||
@ -1041,7 +1042,7 @@ Mono implementation of WCF, Windows Communication Foundation
|
||||
|
||||
%package -n mono-winfxcore
|
||||
Summary: Mono implementation of core WinFX APIs
|
||||
License: MIT and MS-PL
|
||||
License: MIT AND MS-PL
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
|
||||
@ -1063,7 +1064,7 @@ Mono implementation of core WinFX APIs
|
||||
|
||||
%package -n mono-web
|
||||
Summary: Mono implementation of ASP
|
||||
License: MIT and MS-PL
|
||||
License: MIT AND MS-PL
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
Provides: mono-remoting = %{version}
|
||||
@ -1169,7 +1170,7 @@ Mono implementation of ASP.NET, Remoting and Web Services.
|
||||
|
||||
%package -n mono-mvc
|
||||
Summary: Mono implementation of ASP
|
||||
License: MIT and MS-PL
|
||||
License: MIT AND MS-PL
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
|
||||
@ -1200,7 +1201,7 @@ Mono implementation of ASP.NET MVC.
|
||||
|
||||
%package -n mono-data-oracle
|
||||
Summary: Database connectivity for Mono
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
Requires: mono-data = %{version}
|
||||
@ -1221,52 +1222,9 @@ Database connectivity for Mono.
|
||||
%{_prefix}/lib/mono/4.5/System.Data.OracleClient.dll
|
||||
%{_prefix}/lib/mono/gac/System.Data.OracleClient
|
||||
|
||||
%package -n mono-nunit
|
||||
Summary: NUnit Testing Framework
|
||||
License: LGPL-2.1
|
||||
Group: Development/Languages/Mono
|
||||
Requires: mono-core = %{version}
|
||||
|
||||
%description -n mono-nunit
|
||||
NUnit is a unit-testing framework for all .Net languages. Initially
|
||||
ported from JUnit, the current release, version 2.2, is the fourth
|
||||
major release of this Unit based unit testing tool for Microsoft .NET.
|
||||
It is written entirely in C# and has been completely redesigned to
|
||||
take advantage of many .NET language features, for example custom
|
||||
attributes and other reflection related capabilities.
|
||||
|
||||
NUnit brings xUnit to all .NET languages.
|
||||
|
||||
%files -n mono-nunit
|
||||
%defattr(-, root, root)
|
||||
%{_libdir}/pkgconfig/mono-nunit.pc
|
||||
%{_bindir}/nunit-console
|
||||
%{_bindir}/nunit-console2
|
||||
%{_bindir}/nunit-console4
|
||||
%{_prefix}/lib/mono/4.5/nunit-console-runner.dll
|
||||
%{_prefix}/lib/mono/4.5/nunit-console.exe*
|
||||
%{_prefix}/lib/mono/4.5/nunit.core.dll
|
||||
%{_prefix}/lib/mono/4.5/nunit.core.extensions.dll
|
||||
%{_prefix}/lib/mono/4.5/nunit.core.interfaces.dll
|
||||
%{_prefix}/lib/mono/4.5/nunit.framework.dll
|
||||
%{_prefix}/lib/mono/4.5/nunit.framework.extensions.dll
|
||||
%{_prefix}/lib/mono/4.5/nunit.mocks.dll
|
||||
%{_prefix}/lib/mono/4.5/nunit.util.dll
|
||||
%{_prefix}/lib/mono/gac/nunit-console-runner
|
||||
%{_prefix}/lib/mono/gac/nunit.core
|
||||
%{_prefix}/lib/mono/gac/nunit.core.extensions
|
||||
%{_prefix}/lib/mono/gac/nunit.core.interfaces
|
||||
%{_prefix}/lib/mono/gac/nunit.framework
|
||||
%{_prefix}/lib/mono/gac/nunit.framework.extensions
|
||||
%{_prefix}/lib/mono/gac/nunit.mocks
|
||||
%{_prefix}/lib/mono/gac/nunit.util
|
||||
%if %roslyn == yes
|
||||
%{_prefix}/lib/mono/4.5/nunit-console.pdb
|
||||
%endif
|
||||
|
||||
%package -n mono-devel
|
||||
Summary: Mono development tools
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: libgdiplus-devel
|
||||
Requires: mono-core = %{version}
|
||||
@ -1287,11 +1245,11 @@ Provides: mono(PEAPI) = 2.0.0.0
|
||||
Provides: mono(resgen) = 1.0.5000.0
|
||||
Provides: mono(resgen) = 2.0.0.0
|
||||
#following 5 lines needed for a temporary build fix. According to https://github.com/mono/mono/commit/1f4133a06f252ec1b78637dd91e49f50836cf570, we shoud fix individual packages that rely on incorrect dependencies
|
||||
Provides: mono(System.ServiceModel) = 3.0.0.0
|
||||
Provides: mono(System.Core) = 3.5.0.0
|
||||
Provides: mono(Mono.Posix) = 2.0.0.0
|
||||
Provides: mono(System.Transactions) = 2.0.0.0
|
||||
Provides: mono(System.Configuration.Install) = 2.0.0.0
|
||||
Provides: mono(System.Core) = 3.5.0.0
|
||||
Provides: mono(System.ServiceModel) = 3.0.0.0
|
||||
Provides: mono(System.Transactions) = 2.0.0.0
|
||||
|
||||
%description -n mono-devel
|
||||
The Mono Project is an open development initiative that is working to
|
||||
@ -1308,6 +1266,10 @@ Mono development tools.
|
||||
|
||||
%files -n mono-devel
|
||||
%defattr(-, root, root)
|
||||
%{_bindir}/aprofutil
|
||||
%{_prefix}/lib/mono/4.5/aprofutil.exe
|
||||
%{_prefix}/lib/mono/4.5/aprofutil.pdb
|
||||
%{_mandir}/man1/aprofutil.1%ext_man
|
||||
%{_bindir}/caspol
|
||||
%{_bindir}/ccrewrite
|
||||
%{_bindir}/cccheck
|
||||
@ -1336,7 +1298,6 @@ Mono development tools.
|
||||
%{_bindir}/mono-xmltool
|
||||
%{_bindir}/monodis
|
||||
%{_bindir}/monolinker
|
||||
%{_bindir}/monograph
|
||||
%{_bindir}/monop
|
||||
%{_bindir}/monop2
|
||||
%{_bindir}/mprof-report
|
||||
@ -1397,6 +1358,7 @@ Mono development tools.
|
||||
%{_mandir}/man1/xbuild.1%ext_man
|
||||
%{_prefix}/lib/mono-source-libs
|
||||
%{_prefix}/lib/mono/4.0
|
||||
%{_prefix}/lib/mono/4.8-api
|
||||
%{_prefix}/lib/mono/4.7.2-api
|
||||
%{_prefix}/lib/mono/4.7.1-api
|
||||
%{_prefix}/lib/mono/4.7-api
|
||||
@ -1554,7 +1516,7 @@ Microsoft's Reactive Extensions.
|
||||
|
||||
%package -n monodoc-core
|
||||
Summary: Monodoc - Documentation tools for C# code
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Tools/Other
|
||||
Requires: mono-core = %{version}
|
||||
# Added to uncompress and compare documentation used by build-compare
|
||||
@ -1603,7 +1565,7 @@ Monodoc-core contains documentation tools for C#.
|
||||
|
||||
%package -n mono-complete
|
||||
Summary: Install everything built from the mono source tree
|
||||
License: LGPL-2.1
|
||||
License: LGPL-2.1-only
|
||||
Group: Development/Languages/Mono
|
||||
Requires: ibm-data-db2 = %{version}
|
||||
Requires: libmono-2_0-1 = %{version}
|
||||
@ -1627,7 +1589,6 @@ Requires: mono-devel = %{version}
|
||||
Requires: mono-extras = %{version}
|
||||
Requires: mono-locale-extras = %{version}
|
||||
Requires: mono-mvc = %{version}
|
||||
Requires: mono-nunit = %{version}
|
||||
Requires: mono-reactive = %{version}
|
||||
Requires: mono-wcf = %{version}
|
||||
Requires: mono-web = %{version}
|
||||
@ -1635,8 +1596,8 @@ Requires: mono-winforms = %{version}
|
||||
Requires: mono-winfxcore = %{version}
|
||||
Requires: monodoc-core = %{version}
|
||||
|
||||
Obsoletes: mono-entityframework < 4.0.0
|
||||
Obsoletes: mono-data-postgresql < 4.0.0
|
||||
Obsoletes: mono-entityframework < 4.0.0
|
||||
|
||||
%description -n mono-complete
|
||||
The Mono Project is an open development initiative that is working to
|
||||
|
Loading…
Reference in New Issue
Block a user