forked from pool/mono-core
Accepting request 440163 from Mono:Factory
1 OBS-URL: https://build.opensuse.org/request/show/440163 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mono-core?expand=0&rev=106
This commit is contained in:
commit
85b6a1b55c
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Nov 12 14:36:43 CET 2016 - ro@suse.de
|
||||||
|
|
||||||
|
- add boehm define in specfile to exclude boehm parts on aarch64
|
||||||
|
- enable buildrequires for valgrind on aarch64
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Oct 16 08:46:34 UTC 2016 - mailaender@opensuse.org
|
Sun Oct 16 08:46:34 UTC 2016 - mailaender@opensuse.org
|
||||||
|
|
||||||
|
@ -19,6 +19,11 @@
|
|||||||
%{!?ext_man: %define ext_man .gz}
|
%{!?ext_man: %define ext_man .gz}
|
||||||
%define llvm no
|
%define llvm no
|
||||||
%define sgen yes
|
%define sgen yes
|
||||||
|
%ifarch aarch64
|
||||||
|
%define boehm no
|
||||||
|
%else
|
||||||
|
%define boehm yes
|
||||||
|
%endif
|
||||||
|
|
||||||
Name: mono-core
|
Name: mono-core
|
||||||
Version: 4.6.1
|
Version: 4.6.1
|
||||||
@ -51,7 +56,7 @@ BuildRequires: pkgconfig(libgdiplus)
|
|||||||
BuildRequires: pkgconfig(x11)
|
BuildRequires: pkgconfig(x11)
|
||||||
BuildRequires: pkgconfig(xinerama)
|
BuildRequires: pkgconfig(xinerama)
|
||||||
BuildRequires: pkgconfig(zlib)
|
BuildRequires: pkgconfig(zlib)
|
||||||
%ifnarch ia64 %arm aarch64 s390
|
%ifnarch ia64 %arm s390
|
||||||
BuildRequires: pkgconfig(valgrind)
|
BuildRequires: pkgconfig(valgrind)
|
||||||
%endif
|
%endif
|
||||||
%if %llvm == yes
|
%if %llvm == yes
|
||||||
@ -296,7 +301,9 @@ rm %{buildroot}%{_bindir}/mono-sgen-gdb.py
|
|||||||
%{_bindir}/ikdasm
|
%{_bindir}/ikdasm
|
||||||
%{_bindir}/mcs
|
%{_bindir}/mcs
|
||||||
%{_bindir}/mono
|
%{_bindir}/mono
|
||||||
|
%if %boehm == yes
|
||||||
%{_bindir}/mono-boehm
|
%{_bindir}/mono-boehm
|
||||||
|
%endif
|
||||||
%{_bindir}/mono-configuration-crypto
|
%{_bindir}/mono-configuration-crypto
|
||||||
%if %sgen == yes
|
%if %sgen == yes
|
||||||
%{_bindir}/mono-sgen
|
%{_bindir}/mono-sgen
|
||||||
@ -492,6 +499,7 @@ Development files for libmono.
|
|||||||
%{_libdir}/libmono-2.0.so
|
%{_libdir}/libmono-2.0.so
|
||||||
%{_libdir}/pkgconfig/mono-2.pc
|
%{_libdir}/pkgconfig/mono-2.pc
|
||||||
|
|
||||||
|
%if %boehm == yes
|
||||||
%package -n libmonoboehm-2_0-1
|
%package -n libmonoboehm-2_0-1
|
||||||
Summary: A Library for embedding Mono in your Application (Boehm GC)
|
Summary: A Library for embedding Mono in your Application (Boehm GC)
|
||||||
License: LGPL-2.1
|
License: LGPL-2.1
|
||||||
@ -535,6 +543,7 @@ Development files for libmonoboehm
|
|||||||
%files -n libmonoboehm-2_0-devel
|
%files -n libmonoboehm-2_0-devel
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
%{_libdir}/libmonoboehm-2.0.so
|
%{_libdir}/libmonoboehm-2.0.so
|
||||||
|
%endif
|
||||||
|
|
||||||
%if %sgen == yes
|
%if %sgen == yes
|
||||||
%package -n libmonosgen-2_0-1
|
%package -n libmonosgen-2_0-1
|
||||||
@ -1182,7 +1191,9 @@ Mono development tools.
|
|||||||
%{_bindir}/monop2
|
%{_bindir}/monop2
|
||||||
%{_bindir}/mprof-report
|
%{_bindir}/mprof-report
|
||||||
%{_bindir}/pdb2mdb
|
%{_bindir}/pdb2mdb
|
||||||
|
%if %boehm == yes
|
||||||
%{_bindir}/pedump
|
%{_bindir}/pedump
|
||||||
|
%endif
|
||||||
%{_bindir}/permview
|
%{_bindir}/permview
|
||||||
%{_bindir}/prj2make
|
%{_bindir}/prj2make
|
||||||
%{_bindir}/resgen
|
%{_bindir}/resgen
|
||||||
@ -1408,8 +1419,10 @@ Requires: libmono-llvm0 = %{version}
|
|||||||
Requires: libmonosgen-2_0-1 = %{version}
|
Requires: libmonosgen-2_0-1 = %{version}
|
||||||
Requires: libmonosgen-2_0-devel = %{version}
|
Requires: libmonosgen-2_0-devel = %{version}
|
||||||
%endif
|
%endif
|
||||||
|
%if %boehm == yes
|
||||||
Requires: libmonoboehm-2_0-1 = %{version}
|
Requires: libmonoboehm-2_0-1 = %{version}
|
||||||
Requires: libmonoboehm-2_0-devel = %{version}
|
Requires: libmonoboehm-2_0-devel = %{version}
|
||||||
|
%endif
|
||||||
Requires: mono-data = %{version}
|
Requires: mono-data = %{version}
|
||||||
Requires: mono-data-oracle = %{version}
|
Requires: mono-data-oracle = %{version}
|
||||||
Requires: mono-data-sqlite = %{version}
|
Requires: mono-data-sqlite = %{version}
|
||||||
|
Loading…
Reference in New Issue
Block a user