mono-vl.spec 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032
  1. %define bootstrap 1
  2. Name: mono
  3. Version: 3.12.1
  4. Release: 1%{?_dist_release}
  5. Summary: A .NET runtime environment
  6. Summary(ja): .NET ランタイム環境
  7. Group: Development/Languages
  8. License: LGPLv2.1 and MIT and MS-PL
  9. URL: http://www.mono-project.com/
  10. Source0: http://download.mono-project.com/sources/mono/mono-%{version}.tar.bz2
  11. #Source1: monodir.c
  12. Patch0: 0001-Workaround-for-X509Certificate.RSA-throwing-an-unhan.patch
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  14. BuildRequires: bison
  15. BuildRequires: gettext-devel
  16. BuildRequires: glib2-devel
  17. BuildRequires: pkgconfig
  18. BuildRequires: libicu-devel
  19. BuildRequires: libgdiplus-devel >= 2.10
  20. BuildRequires: libX11-devel
  21. BuildRequires: valgrind-devel
  22. BuildRequires: zlib-devel
  23. # Yes, mono actually depends on itself, because
  24. # we deleted the bootstrapping binaries. If you
  25. # need to bootstrap mono, comment out this BuildRequires
  26. # and don't delete the binaries in %%prep.
  27. %if !%{bootstrap}
  28. BuildRequires: mono-core
  29. %endif
  30. # JIT only availible on these:
  31. ExclusiveArch: %{ix86} x86_64 %{arm} sparcv9 alpha s390x ppc ppc64
  32. Distribution: Vine Linux
  33. Vendor: Project Vine
  34. Packager: owa
  35. %description
  36. The Mono runtime implements a JIT engine for the ECMA CLI
  37. virtual machine (as well as a byte code interpreter, the
  38. class loader, the garbage collector, threading system and
  39. metadata access libraries.
  40. %description -l ja
  41. Mono ランタイムは ECMA CLI 仮想機械用 JIT エンジンの実装です。バイト
  42. コードインタプリタ、クラスローダ、ガベージコレクタ、スレッドシステム
  43. およびメタデータアクセスライブラリの機能を持ちます。
  44. %package core
  45. Summary: The Mono CIL runtime, suitable for running .NET code
  46. Summary(ja): .NET コードの実行に適した Mono CIL ランタイム
  47. License: LGPLv2.1 and MIT and MS-PL
  48. Group: Development/Languages
  49. Requires: libgdiplus
  50. %description core
  51. This package contains the core of the Mono runtime including its
  52. Virtual Machine, Just-in-time compiler, C# compiler, security
  53. tools and libraries (corlib, XML, System.Security, ZipLib,
  54. I18N, Cairo and Mono.*).
  55. %description -l ja core
  56. このパッケージには、仮想マシン、Just-In-Time コンパイラ、C# コンパイラ、セキュリティツール及びライブラリ (corlib, XML, System.Security, ZipLib, I18N, Cairo and Mono.*) を含む Mono ランタイムが含まれています。
  57. %package devel
  58. Summary: Development tools for Mono
  59. Summary(ja): Mono 開発ツール
  60. License: LGPLv2
  61. Group: Development/Tools
  62. Requires: mono-core = %{version}-%{release}
  63. # Required because they are referenced by .pc files
  64. Requires: mono-data = %{version}
  65. Requires: mono-extras = %{version}
  66. Requires: mono-web = %{version}
  67. Requires: mono-winforms = %{version}
  68. Requires: libgdiplus-devel
  69. Requires: pkgconfig
  70. %description devel
  71. This package completes the Mono developer toolchain with the mono profiler,
  72. assembler and other various tools.
  73. %package nunit
  74. Summary: NUnit Testing Framework
  75. Summary(ja): NUnit テストフレームワーク
  76. License: LGPLv2
  77. Group: Development/Languages
  78. Requires: mono-core = %{version}-%{release}
  79. Provides: mono-nunit-devel = %{version}-%{release}
  80. %description nunit
  81. NUnit is a unit-testing framework for all .NET languages. Initially
  82. ported from JUnit, the current release, version 2.2, is the fourth
  83. major release of this Unit based unit testing tool for Microsoft .NET.
  84. It is written entirely in C# and has been completely redesigned to
  85. take advantage of many .NET language features, for example
  86. custom attributes and other reflection related capabilities. NUnit
  87. brings xUnit to all .NET languages.
  88. %package locale-extras
  89. Summary: Extra locale information for Mono
  90. Summary(ja): Mono 用追加ロケール情報
  91. License: LGPLv2
  92. Group: Development/Languages
  93. Requires: mono-core = %{version}-%{release}
  94. %description locale-extras
  95. This package contains assemblies to support I18N applications for non-latin alphabets.
  96. %package extras
  97. Summary: Provides the infrastructure for running and building daemons and services with Mono as well as various stub assemblies
  98. License: LGPLv2
  99. Group: Development/Languages
  100. Requires: mono-core = %{version}-%{release}
  101. %description extras
  102. This package provides the libary and application to run services
  103. and daemons with Mono. It also includes stubs for the following
  104. .NET 1.1 and 2.0 assemblies: Microsoft.Vsa,
  105. System.Configuration.Install, System.Management, System.Messaging.
  106. %package winforms
  107. Summary: Windows Forms implementation for Mono
  108. Summary(ja): Windows フォームの Mono による実装
  109. License: LGPLv2
  110. Group: Development/Languages
  111. Requires: mono-core = %{version}-%{release}
  112. %description winforms
  113. This package provides a fully managed implementation of
  114. System.Windows.Forms, the default graphical toolkit for .NET
  115. applications.
  116. %package wcf
  117. Summary: Mono implementation of Windows Communication Foundation
  118. Summary(ja): Windows Communication Foundation の Mono による実装
  119. License: MIT and MS-PL
  120. Group: Development/Languages
  121. Requires: mono-core = %{version}-%{release}
  122. Provides: mono-wcf-devel = %{version}-%{release}
  123. %description wcf
  124. This package provides an implementation of WCF, the Windows Communication
  125. Foundation.
  126. %package winfx
  127. Summary: Mono implementation of core WinFX APIs
  128. Summary(ja): コア WinFX API の Mono による実装
  129. License: MIT and MS-PL
  130. Group: Development/Languages
  131. Requires: mono-core = %{version}-%{release}
  132. %description winfx
  133. Open source implementation of core WinFX APIs
  134. %package web
  135. Summary: ASP.NET, Remoting, and Web Services for Mono
  136. Summary(ja): Mono 用の ASP.NET, リモート,Web サービス
  137. License: MIT and MS-PL
  138. Group: Development/Languages
  139. Requires: mono-core = %{version}-%{release}
  140. %description web
  141. This package provides the ASP.NET libraries and runtime for
  142. development of web application, web services and remoting support.
  143. %package mvc
  144. Summary: Mono implementation of ASP.NET MVC
  145. Summary(ja): ASP.NET MVC の Mono による実装
  146. License: MIT and MS-PL
  147. Group: Development/Languages
  148. Requires: mono-core = %{version}-%{release}
  149. Provides: mono-mvc-devel = %{version}-%{release}
  150. %description mvc
  151. This is the Mono implementation of ASP.NET MVC
  152. %package entityframework
  153. Summary: Entity Framework (EF) is an object-relational mapper
  154. License: Apache
  155. Group: Development/Languages
  156. Requires: mono-core = %{version}-%{release}
  157. %description entityframework
  158. Entity Framework (EF) is an object-relational mapper that enables .NET
  159. developers to work with relational data using domain-specific objects.
  160. It eliminates the need for most of the data-access code that developers
  161. usually need to write
  162. %package reactive
  163. Summary: Reactive Extensions
  164. License: Apache
  165. Group: Development/Languages
  166. Requires: mono-core = %{version}-%{release}
  167. Provides: mono-reactive-devel = %{version}-%{release}
  168. %description reactive
  169. This is the Mono implementation of Microsoft's Reactive Extensions.
  170. #'
  171. %package data
  172. Summary: Database connectivity for Mono
  173. License: LGPLv2
  174. Group: Development/Languages
  175. Requires: mono-core = %{version}-%{release}
  176. %description data
  177. This package provides a Mono assembly to facilitate data access
  178. and manipulation with databases, LDAP compatible directory servers
  179. and/or XML data exchange. Beyond the ADO.NET, Novell.LDAP and
  180. System.DirectoryServices assemblies, it also includes a command
  181. line sql application as well as the Microsoft SQL Server and ODBC
  182. data providers.
  183. %package data-sqlite
  184. Summary: sqlite database connectivity for Mono
  185. License: LGPLv2
  186. Group: Development/Languages
  187. Requires: mono-core = %{version}-%{release}
  188. Requires: mono-data = %{version}-%{release}
  189. %description data-sqlite
  190. This package contains the ADO.NET Data provider for the sqlite
  191. database.
  192. %package data-oracle
  193. Summary: Oracle database connectivity for Mono
  194. License: LGPLv2
  195. Group: Development/Languages
  196. Requires: mono-core = %{version}-%{release}
  197. Requires: mono-data = %{version}-%{release}
  198. %description data-oracle
  199. This package contains the ADO.NET Data provider for the Oracle
  200. database.
  201. %package data-postgresql
  202. Summary: Postgresql database connectivity for Mono
  203. License: LGPLv2
  204. Group: Development/Languages
  205. Requires: mono-core = %{version}-%{release}
  206. Requires: mono-data = %{version}-%{release}
  207. %description data-postgresql
  208. This package contains the ADO.NET Data provider for the PostgreSQL
  209. database.
  210. %package -n ibm-data-db2
  211. Summary: IBM DB2 database connectivity for Mono
  212. License: LGPLv2
  213. Group: Development/Languages
  214. Requires: mono-core = %{version}-%{release}
  215. Requires: mono-data = %{version}-%{release}
  216. %description -n ibm-data-db2
  217. This package contains the ADO.NET Data provider for the IBM DB2
  218. Universal database.
  219. %package -n monodoc
  220. Summary: The Mono documentation system
  221. Summary(ja): Mono ドキュメントシステム
  222. License: LGPLv2
  223. Group: Development/Tools
  224. Requires: mono-core = %{version}-%{release}
  225. # Added to uncompress and compare documentation used by build-compare
  226. Requires: unzip
  227. Provides: monodoc-devel = %{version}-%{release}
  228. Obsoletes: monodoc-core <= 2.0-1vl5
  229. %description -n monodoc
  230. monodoc is the documentation package for the mono .NET environment
  231. ## macros
  232. %define mono_dir %{_prefix}/lib/mono
  233. %define mono_doc %{_prefix}/lib/monodoc
  234. %define gac_dll(dll) %{mono_dir}/gac/%{1} \
  235. %{mono_dir}/?.?/%{1}.dll \
  236. %{nil}
  237. %define mono_bin(bin) %{_bindir}/%{1} \
  238. %{mono_dir}/?.?/%{1}.exe \
  239. %{mono_dir}/?.?/%{1}.exe.* \
  240. %{nil}
  241. %prep
  242. %setup -q -n mono-%{version}
  243. %patch0 -p1
  244. %build
  245. export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
  246. %configure \
  247. --with-ikvm-native=yes \
  248. --with-jit=yes \
  249. --with-xen_opt=yes \
  250. --with-sgen=no \
  251. %ifnarch %ix86 x86_64
  252. --disable-system-aot \
  253. %endif
  254. %ifarch ppc
  255. --with-mcs-docs=no \
  256. --with-sigaltstack=no \
  257. %endif
  258. --with-moonlight=no \
  259. --with-monotouch=no \
  260. --with-libgdiplus=installed
  261. make %{?_smp_mflags}
  262. %install
  263. [ -n "%{buildroot}" -a "%{buildroot}" != / ] && %{__rm} -rf %{buildroot}
  264. make install DESTDIR=%{buildroot}
  265. ## Remove unused files
  266. rm -f %{buildroot}%{_libdir}/*.la
  267. rm -f %{buildroot}%{_libdir}/*.a
  268. # We put these inside rpm
  269. rm -f %{buildroot}%{_bindir}/mono-find-provides
  270. rm -f %{buildroot}%{_bindir}/mono-find-requires
  271. # This was removed upstream:
  272. rm -rf %{buildroot}%{mono_dir}/*/Mono.Security.Win32*
  273. rm -f %{buildroot}%{_libdir}/libMonoSupportW.*
  274. rm %{buildroot}%{_datadir}/libgc-mono/README*
  275. rm %{buildroot}%{_datadir}/libgc-mono/barrett_diagram
  276. rm %{buildroot}%{_datadir}/libgc-mono/*.html
  277. rm %{buildroot}%{_datadir}/libgc-mono/gc.man
  278. rm -f %{buildroot}%{mono_dir}/2.0/mscorlib.dll.so
  279. rm -f %{buildroot}%{mono_dir}/2.0/mcs.exe.so
  280. rm -f %{buildroot}%{mono_dir}/2.0/gmcs.exe.so
  281. rm -rf %{buildroot}%{mono_dir}/xbuild/Microsoft
  282. rm -f %{buildroot}%{mono_dir}/4.0/mscorlib.dll.so
  283. rm -f %{buildroot}%{mono_dir}/4.5/mscorlib.dll.so
  284. #rm -rf %{buildroot}%{_bindir}/mono-configuration-crypto
  285. #rm -rf %{buildroot}%{_mandir}/man?/mono-configuration-crypto*
  286. # remove stuff that we don't package
  287. rm -f %{buildroot}%{_bindir}/cilc
  288. rm -f %{buildroot}%{_mandir}/man1/cilc.1*
  289. rm -f %{buildroot}%{_prefix}/lib/mono/*/browsercaps-updater.exe*
  290. rm -f %{buildroot}%{_prefix}/lib/mono/*/culevel.exe*
  291. rm -f %{buildroot}%{_prefix}/lib/mono/2.0/cilc.exe*
  292. # Fix non-executable-in-bin
  293. chmod +x %{buildroot}%{_bindir}/mono-gdb.py
  294. rm -f %{buildroot}%{_bindir}/mono-sgen-gdb.py
  295. #ERROR: link target doesn't exist (neither in build root nor in installed system):
  296. rm -rf %{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Microsoft.Build.dll
  297. rm -rf %{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Microsoft.Build.Engine.dll
  298. rm -rf %{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Mono.XBuild.Tasks.dll
  299. rm -rf %{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Microsoft.Build.Framework.dll
  300. rm -rf %{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Microsoft.Build.Tasks.v12.0.dll
  301. rm -rf %{buildroot}%{_prefix}/lib/mono/xbuild/12.0/bin/Microsoft.Build.Utilities.v12.0.dll
  302. %find_lang mcs
  303. %clean
  304. [ -n "%{buildroot}" -a "%{buildroot}" != / ] && %{__rm} -rf %{buildroot}
  305. %post core -p /sbin/ldconfig
  306. %postun core -p /sbin/ldconfig
  307. %files core -f mcs.lang
  308. %defattr(-,root,root,-)
  309. %doc AUTHORS COPYING.LIB LICENSE ChangeLog NEWS README.md
  310. %dir %{mono_dir}
  311. %dir %{mono_dir}/2.0
  312. %dir %{mono_dir}/3.5
  313. %dir %{mono_dir}/4.0
  314. %dir %{mono_dir}/4.5
  315. %dir %{mono_dir}/4.5/Facades
  316. %dir %{mono_dir}/compat-2.0
  317. %dir %{mono_dir}/gac
  318. %dir %{_sysconfdir}/mono
  319. %dir %{_sysconfdir}/mono/2.0
  320. %dir %{_sysconfdir}/mono/4.0
  321. %dir %{_sysconfdir}/mono/4.5
  322. %config %{_sysconfdir}/mono/2.0/machine.config
  323. %config %{_sysconfdir}/mono/2.0/settings.map
  324. %config %{_sysconfdir}/mono/4.0/machine.config
  325. %config %{_sysconfdir}/mono/4.0/settings.map
  326. %config %{_sysconfdir}/mono/4.5/machine.config
  327. %config %{_sysconfdir}/mono/4.5/settings.map
  328. %config %{_sysconfdir}/mono/config
  329. %mono_bin al
  330. %{_bindir}/al2
  331. %mono_bin certmgr
  332. %mono_bin chktrust
  333. %mono_bin crlupdate
  334. %mono_bin csharp
  335. %{_bindir}/dmcs
  336. %mono_bin gacutil
  337. %{_bindir}/gacutil2
  338. %{_bindir}/gmcs
  339. %mono_bin ikdasm
  340. %mono_bin mcs
  341. %{_bindir}/mono
  342. %{_bindir}/mono-boehm
  343. %{_bindir}/mono-configuration-crypto
  344. %{_bindir}/mono-test-install
  345. %mono_bin mozroots
  346. %{_bindir}/peverify
  347. %mono_bin setreg
  348. %mono_bin sn
  349. %{_mandir}/man1/al.1.gz
  350. %{_mandir}/man1/certmgr.1.gz
  351. %{_mandir}/man1/chktrust.1.gz
  352. %{_mandir}/man1/crlupdate.1.gz
  353. %{_mandir}/man1/csharp.1.gz
  354. %{_mandir}/man1/gacutil.1.gz
  355. %{_mandir}/man1/mcs.1.gz
  356. %{_mandir}/man1/mono.1.gz
  357. %{_mandir}/man1/mono-configuration-crypto.1.gz
  358. %{_mandir}/man1/mozroots.1.gz
  359. %{_mandir}/man1/setreg.1.gz
  360. %{_mandir}/man1/sn.1.gz
  361. %{_mandir}/man5/mono-config.5.gz
  362. %{_libdir}/libMonoPosixHelper.so
  363. %{_libdir}/libikvm-native.so
  364. %{_libdir}/libmono*-2.0.so.*
  365. %{_libdir}/libmono-profiler-*.so.*
  366. %gac_dll Commons.Xml.Relaxng
  367. %gac_dll CustomMarshalers
  368. %gac_dll I18N
  369. %gac_dll I18N.CJK
  370. %gac_dll I18N.West
  371. %gac_dll ICSharpCode.SharpZipLib
  372. %gac_dll Microsoft.CSharp
  373. %gac_dll Microsoft.VisualC
  374. %gac_dll Mono.C5
  375. %gac_dll Mono.CSharp
  376. %gac_dll Mono.Cairo
  377. %gac_dll Mono.CompilerServices.SymbolWriter
  378. %gac_dll Mono.Management
  379. %gac_dll Mono.Parallel
  380. %gac_dll Mono.Posix
  381. %gac_dll Mono.Security
  382. %gac_dll Mono.Simd
  383. %gac_dll Mono.Tasklets
  384. %gac_dll System
  385. %gac_dll System.Configuration
  386. %gac_dll System.Core
  387. %gac_dll System.Drawing
  388. %gac_dll System.Dynamic
  389. %gac_dll System.IO.Compression
  390. %gac_dll System.IO.Compression.FileSystem
  391. %gac_dll System.Json
  392. %gac_dll System.Json.Microsoft
  393. %gac_dll System.Net
  394. %gac_dll System.Net.Http
  395. %gac_dll System.Net.Http.Formatting
  396. %gac_dll System.Net.Http.WebRequest
  397. %gac_dll System.Numerics
  398. %gac_dll System.Security
  399. %gac_dll System.Threading.Tasks.Dataflow
  400. %gac_dll System.Windows
  401. %gac_dll System.Xml
  402. %gac_dll System.Xml.Linq
  403. %gac_dll System.Xml.Serialization
  404. %gac_dll cscompmgd
  405. %{mono_dir}/2.0/mscorlib.dll
  406. %{mono_dir}/2.0/mscorlib.dll.mdb
  407. %{mono_dir}/4.0/mscorlib.dll
  408. %{mono_dir}/4.5/Facades/System*
  409. %{mono_dir}/4.5/mscorlib.dll
  410. %{mono_dir}/4.5/mscorlib.dll.mdb
  411. %{mono_dir}/compat-2.0/ICSharpCode.SharpZipLib.dll
  412. %{mono_dir}/gac/Mono.Cecil
  413. %{mono_dir}/gac/Mono.Cecil.Mdb
  414. %{mono_dir}/mono-configuration-crypto/4.5/mono-config*
  415. %{mono_dir}/mono-configuration-crypto/4.5/Mono.Configuration.Crypto.dll*
  416. %files devel
  417. %defattr(-,root,root,-)
  418. %mono_bin caspol
  419. %mono_bin cccheck
  420. %mono_bin ccrewrite
  421. %mono_bin cert-sync
  422. %mono_bin cert2spc
  423. %mono_bin dtd2rng
  424. %mono_bin dtd2xsd
  425. %mono_bin genxs
  426. %mono_bin httpcfg
  427. %mono_bin ilasm
  428. %mono_bin installvst
  429. %mono_bin lc
  430. %mono_bin macpack
  431. %mono_bin makecert
  432. %mono_bin mdbrebase
  433. %mono_bin mkbundle
  434. %{_bindir}/mono-api-info
  435. %mono_bin mono-cil-strip
  436. %{_bindir}/mono-gdb.py
  437. %{_bindir}/mono-heapviz
  438. %mono_bin mono-shlib-cop
  439. %mono_bin mono-xmltool
  440. %{_bindir}/monodis
  441. %{_bindir}/monograph
  442. %mono_bin monolinker
  443. %mono_bin monop
  444. %{_bindir}/monop2
  445. %{_bindir}/mprof-report
  446. %mono_bin pdb2mdb
  447. %{_bindir}/pedump
  448. %mono_bin permview
  449. %{_bindir}/prj2make
  450. %mono_bin resgen
  451. %{_bindir}/resgen2
  452. %mono_bin secutil
  453. %mono_bin sgen
  454. %mono_bin signcode
  455. %mono_bin xbuild
  456. %{_prefix}/lib/mono-source-libs/
  457. %{_mandir}/man1/cccheck.1.gz
  458. %{_mandir}/man1/ccrewrite.1.gz
  459. %{_mandir}/man1/cert2spc.1.gz
  460. %{_mandir}/man1/resgen.1.gz
  461. %{_mandir}/man1/dtd2xsd.1.gz
  462. %{_mandir}/man1/genxs.1.gz
  463. %{_mandir}/man1/httpcfg.1.gz
  464. %{_mandir}/man1/ilasm.1.gz
  465. %{_mandir}/man1/lc.1.gz
  466. %{_mandir}/man1/macpack.1.gz
  467. %{_mandir}/man1/makecert.1.gz
  468. %{_mandir}/man1/mkbundle.1.gz
  469. %{_mandir}/man1/mono-api-info.1.gz
  470. %{_mandir}/man1/mono-cil-strip.1.gz
  471. %{_mandir}/man1/mono-shlib-cop.1.gz
  472. %{_mandir}/man1/mono-xmltool.1.gz
  473. %{_mandir}/man1/monodis.1.gz
  474. %{_mandir}/man1/monolinker.1.gz
  475. %{_mandir}/man1/monop.1.gz
  476. %{_mandir}/man1/mprof-report.1.gz
  477. %{_mandir}/man1/pdb2mdb.1.gz
  478. %{_mandir}/man1/permview.1.gz
  479. %{_mandir}/man1/prj2make.1.gz
  480. %{_mandir}/man1/secutil.1.gz
  481. %{_mandir}/man1/sgen.1.gz
  482. %{_mandir}/man1/signcode.1.gz
  483. %{_mandir}/man1/xbuild.1.gz
  484. %{_datadir}/mono-2.0/mono/cil/cil-opcodes.xml
  485. %gac_dll Mono.CodeContracts
  486. %gac_dll Mono.Debugger.Soft
  487. %gac_dll Mono.XBuild.Tasks
  488. %gac_dll PEAPI
  489. %gac_dll Microsoft.Build
  490. %gac_dll Microsoft.Build.Engine
  491. %gac_dll Microsoft.Build.Framework
  492. %gac_dll Microsoft.Build.Tasks
  493. %gac_dll Microsoft.Build.Utilities
  494. %gac_dll Microsoft.Build.Tasks.v3.5
  495. %gac_dll Microsoft.Build.Utilities.v3.5
  496. %gac_dll Microsoft.Build.Tasks.v4.0
  497. %gac_dll Microsoft.Build.Utilities.v4.0
  498. %{mono_dir}/2.0/MSBuild
  499. %{mono_dir}/2.0/Microsoft.Build.xsd
  500. %{mono_dir}/2.0/Microsoft.*.targets
  501. %{mono_dir}/?.0/Microsoft.Common.tasks
  502. %{mono_dir}/3.5/MSBuild/Microsoft.Build*
  503. %{mono_dir}/3.5/Microsoft.Build.xsd
  504. %{mono_dir}/3.5/Microsoft.CSharp.targets
  505. %{mono_dir}/3.5/Microsoft.Common.ta*
  506. %{mono_dir}/3.5/Microsoft.VisualBasic.targets
  507. %{mono_dir}/4.5/Microsoft.Build.xsd
  508. %{mono_dir}/4.5/MSBuild/Microsoft*
  509. %{mono_dir}/4.5/Microsoft.CSharp.targets
  510. %{mono_dir}/4.5/Microsoft.Common.ta*
  511. %{mono_dir}/4.5/Microsoft.VisualBasic.targets
  512. %{mono_dir}/4.5/mono-api-info.exe
  513. %{mono_dir}/4.5/installutil*
  514. %{mono_dir}/4.5/ictool*
  515. %{mono_dir}/?.?/xbuild.rsp
  516. %{mono_dir}/gac/Microsoft.Build.Tasks.v12.0/
  517. %{mono_dir}/gac/Microsoft.Build.Utilities.v12.0/
  518. %{_libdir}/libmono*-2.0.so
  519. %{_libdir}/libmono-profiler-*.so
  520. %{_libdir}/pkgconfig/aspnetwebstack.pc
  521. %{_libdir}/pkgconfig/cecil.pc
  522. %{_libdir}/pkgconfig/dotnet.pc
  523. %{_libdir}/pkgconfig/dotnet35.pc
  524. %{_libdir}/pkgconfig/mono.pc
  525. %{_libdir}/pkgconfig/mono-cairo.pc
  526. %{_libdir}/pkgconfig/mono-lineeditor.pc
  527. %{_libdir}/pkgconfig/mono-options.pc
  528. %{_libdir}/pkgconfig/mono-2.pc
  529. %{_libdir}/pkgconfig/xbuild12.pc
  530. %{_includedir}/mono-2.0/mono/jit/jit.h
  531. %{_includedir}/mono-2.0/mono/metadata/*.h
  532. %{_includedir}/mono-2.0/mono/utils/*.h
  533. %{_includedir}/mono-2.0/mono/cil/opcode.def
  534. %{mono_dir}/xbuild
  535. %{mono_dir}/xbuild-frameworks
  536. %files nunit
  537. %defattr(-,root,root,-)
  538. %mono_bin nunit-console
  539. %{_bindir}/nunit-console2
  540. %{_bindir}/nunit-console4
  541. %gac_dll nunit-console-runner
  542. %gac_dll nunit.core
  543. %gac_dll nunit.core.extensions
  544. %gac_dll nunit.core.interfaces
  545. %gac_dll nunit.framework
  546. %gac_dll nunit.framework.extensions
  547. %gac_dll nunit.mocks
  548. %gac_dll nunit.util
  549. # devel
  550. %{_libdir}/pkgconfig/mono-nunit.pc
  551. %files locale-extras
  552. %defattr(-,root,root,-)
  553. %gac_dll I18N.MidEast
  554. %gac_dll I18N.Rare
  555. %gac_dll I18N.Other
  556. %files extras
  557. %defattr(-,root,root,-)
  558. %mono_bin mono-service
  559. %{_bindir}/mono-service2
  560. %{_mandir}/man1/mono-service.1.gz
  561. %gac_dll Mono.Messaging
  562. %gac_dll Mono.Messaging.RabbitMQ
  563. %gac_dll RabbitMQ.Client
  564. %gac_dll System.Configuration.Install
  565. %gac_dll System.Management
  566. %gac_dll System.Messaging
  567. %gac_dll System.Runtime.Caching
  568. %gac_dll System.ServiceProcess
  569. %gac_dll System.Xaml
  570. %{mono_dir}/?.?/RabbitMQ.Client.Apigen*
  571. %{mono_dir}/gac/mono-service
  572. %files winforms
  573. %defattr(-,root,root,-)
  574. %gac_dll Accessibility
  575. %gac_dll Mono.WebBrowser
  576. %gac_dll System.Design
  577. %gac_dll System.Drawing.Design
  578. %gac_dll System.Windows.Forms
  579. %gac_dll System.Windows.Forms.DataVisualization
  580. %files wcf
  581. %defattr(-, root, root, -)
  582. %mono_bin svcutil
  583. %gac_dll System.Data.Services
  584. %gac_dll System.IdentityModel
  585. %gac_dll System.IdentityModel.Selectors
  586. %gac_dll System.Runtime.DurableInstancing
  587. %gac_dll System.ServiceModel
  588. %gac_dll System.ServiceModel.Activation
  589. %gac_dll System.ServiceModel.Discovery
  590. %gac_dll System.ServiceModel.Routing
  591. %gac_dll System.ServiceModel.Web
  592. # wcf-devel
  593. %{_libdir}/pkgconfig/wcf.pc
  594. %files winfx
  595. %defattr(-, root, root)
  596. %gac_dll System.Data.Services.Client
  597. %gac_dll WindowsBase
  598. %files web
  599. %defattr(-,root,root,-)
  600. %dir %{_sysconfdir}/mono/mconfig
  601. %config (noreplace) %{_sysconfdir}/mono/browscap.ini
  602. %config (noreplace) %{_sysconfdir}/mono/mconfig/config.xml
  603. %config (noreplace) %{_sysconfdir}/mono/2.0/Browsers
  604. %config (noreplace) %{_sysconfdir}/mono/2.0/DefaultWsdlHelpGenerator.aspx
  605. %config (noreplace) %{_sysconfdir}/mono/2.0/web.config
  606. %config (noreplace) %{_sysconfdir}/mono/4.0/Browsers
  607. %config (noreplace) %{_sysconfdir}/mono/4.0/DefaultWsdlHelpGenerator.aspx
  608. %config (noreplace) %{_sysconfdir}/mono/4.0/web.config
  609. %config (noreplace) %{_sysconfdir}/mono/4.5/Browsers
  610. %config (noreplace) %{_sysconfdir}/mono/4.5/DefaultWsdlHelpGenerator.aspx
  611. %config (noreplace) %{_sysconfdir}/mono/4.5/web.config
  612. %mono_bin disco
  613. %mono_bin mconfig
  614. %mono_bin soapsuds
  615. %mono_bin wsdl
  616. %{_bindir}/wsdl2
  617. %mono_bin xsd
  618. %{_mandir}/man1/disco.1.gz
  619. %{_mandir}/man1/mconfig.1.gz
  620. %{_mandir}/man1/soapsuds.1.gz
  621. %{_mandir}/man1/wsdl.1.gz
  622. %{_mandir}/man1/xsd.1.gz
  623. %gac_dll Microsoft.Web.Infrastructure
  624. %gac_dll Mono.Http
  625. %gac_dll System.ComponentModel.Composition
  626. %gac_dll System.ComponentModel.DataAnnotations
  627. %gac_dll System.Runtime.Remoting
  628. %gac_dll System.Runtime.Serialization.Formatters.Soap
  629. %gac_dll System.Web
  630. %gac_dll System.Web.Abstractions
  631. %gac_dll System.Web.ApplicationServices
  632. %gac_dll System.Web.Http
  633. %gac_dll System.Web.Http.SelfHost
  634. %gac_dll System.Web.Http.WebHost
  635. %gac_dll System.Web.Razor
  636. %gac_dll System.Web.Routing
  637. %gac_dll System.Web.Services
  638. %gac_dll System.Web.WebPages
  639. %gac_dll System.Web.WebPages.Deployment
  640. %gac_dll System.Web.WebPages.Razor
  641. %files mvc
  642. %defattr(-, root, root,-)
  643. %gac_dll System.Web.DynamicData
  644. %gac_dll System.Web.Extensions
  645. %gac_dll System.Web.Extensions.Design
  646. %gac_dll System.Web.Mvc
  647. %{mono_dir}/compat-2.0/System.Web.Extensions.Design.dll
  648. %{mono_dir}/compat-2.0/System.Web.Extensions.dll
  649. %{mono_dir}/compat-2.0/System.Web.Mvc.dll
  650. # mvc-devel
  651. %{_libdir}/pkgconfig/system.web.extensions.design_1.0.pc
  652. %{_libdir}/pkgconfig/system.web.extensions_1.0.pc
  653. %{_libdir}/pkgconfig/system.web.mvc.pc
  654. %{_libdir}/pkgconfig/system.web.mvc2.pc
  655. %{_libdir}/pkgconfig/system.web.mvc3.pc
  656. %files entityframework
  657. %defattr(-, root, root)
  658. %gac_dll EntityFramework
  659. %gac_dll EntityFramework.SqlServer
  660. %files reactive
  661. %defattr(-, root, root)
  662. %gac_dll System.Reactive.Core
  663. %gac_dll System.Reactive.Debugger
  664. %gac_dll System.Reactive.Experimental
  665. %gac_dll System.Reactive.Interfaces
  666. %gac_dll System.Reactive.Linq
  667. %gac_dll System.Reactive.Observable.Aliases
  668. %gac_dll System.Reactive.PlatformServices
  669. %gac_dll System.Reactive.Providers
  670. %gac_dll System.Reactive.Runtime.Remoting
  671. %gac_dll System.Reactive.Windows.Forms
  672. %gac_dll System.Reactive.Windows.Threading
  673. # reactive-devel
  674. %{_libdir}/pkgconfig/reactive.pc
  675. %files data
  676. %defattr(-,root,root,-)
  677. %mono_bin sqlsharp
  678. %mono_bin sqlmetal
  679. %{_mandir}/man1/sqlsharp.1.gz
  680. %gac_dll Mono.Data.Tds
  681. %gac_dll Novell.Directory.Ldap
  682. %gac_dll System.Data
  683. %gac_dll System.Data.DataSetExtensions
  684. %gac_dll System.Data.Linq
  685. %gac_dll System.DirectoryServices
  686. %gac_dll System.DirectoryServices.Protocols
  687. %gac_dll System.EnterpriseServices
  688. %gac_dll System.Runtime.Serialization
  689. %gac_dll System.Transactions
  690. %gac_dll WebMatrix.Data
  691. %files data-sqlite
  692. %defattr(-,root,root,-)
  693. %gac_dll Mono.Data.Sqlite
  694. %files data-oracle
  695. %defattr(-,root,root,-)
  696. %gac_dll System.Data.OracleClient
  697. %files data-postgresql
  698. %defattr(-,root,root,-)
  699. %gac_dll Npgsql
  700. %files -n ibm-data-db2
  701. %defattr(-,root,root,-)
  702. %gac_dll IBM.Data.DB2
  703. %files -n monodoc
  704. %defattr(-, root, root)
  705. %{_bindir}/mdass*
  706. %mono_bin mdoc
  707. %{_bindir}/mdoc-*
  708. %{_bindir}/mdval*
  709. %mono_bin mod
  710. %{_bindir}/monodoc*
  711. %{_mandir}/man1/md*
  712. %{_mandir}/man1/monodoc*
  713. %{_mandir}/man5/mdoc*
  714. %{mono_dir}/4.0/monodoc.dll
  715. %{mono_dir}/gac/monodoc
  716. %{mono_dir}/monodoc/*
  717. %ifnarch ppc
  718. %{_prefix}/lib/monodoc
  719. %endif
  720. # monodoc-devel
  721. %{_libdir}/pkgconfig/monodoc.pc
  722. %changelog
  723. * Thu Mar 26 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 3.12.1-1
  724. - updated to 3.12.1
  725. * Fri Dec 27 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.8-2
  726. - rebuild with VineSeed environment
  727. - remove Requires:libgluezilla in monodoc
  728. * Sun Jan 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.8-1
  729. - updated mono to 2.10.8
  730. * Sun Jan 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.8-1
  731. - updated mono to 2.10.8
  732. * Sat Oct 08 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.6-1
  733. - updated mono to 2.10.6
  734. * Sat May 07 2011 Shu KONNO <owa@bg.wakwak.com> 2.10.2-1
  735. - updated mono to 2.10.2
  736. - dropt Patch1: mono-2.10.1-ppc-len.patch (fixed in the upstream)
  737. * Sun Apr 24 2011 Shu KONNO <owa@bg.wakwak.com> 2.10.1-3
  738. - added '--with-sgen=no' to all arch
  739. - dropt %%{mono_dir}/2.0/{mcs.exe,mscorlib.dll}.so
  740. * Sat Apr 16 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.10.1-2
  741. - remove the old ppc patch (similar codes already in the upstream)
  742. - add Patch1 (from Gentoo)
  743. - mono/2.0/mcs.exe.so not available on ppc - remove from the filelist
  744. (TODO: see the Fedora's srpm - removing mono/2.0/{mcs,gmcs}.exe.so etc.)
  745. * Sun Apr 03 2011 Shu KONNO <owa@bg.wakwak.com> 2.10.1-1
  746. - updated mono to 2.10.1
  747. * Sat Jan 08 2011 Shu KONNO <owa@bg.wakwak.com> 2.8.2-1
  748. - updated mono to 2.8.2
  749. * Tue Dec 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.1-2
  750. - add Patch0 (mono-2.8.1-ppc.patch)
  751. - add configure option "--with-sgen=no" and "--disable-system-aot" (ppc only)
  752. - fix %%files (add %%ifnarch ppc)
  753. * Sun Nov 21 2010 Shu KONNO <owa@bg.wakwak.com> 2.8.1-1
  754. - updated mono to 2.8.1
  755. * Sat Nov 06 2010 Shu KONNO <owa@bg.wakwak.com> 2.8-2
  756. - comment out script that removes prebuilt binaries, because gmcs.exe require
  757. * Fri Oct 08 2010 Shu KONNO <owa@bg.wakwak.com> 2.8-1
  758. - updated mono to 2.8
  759. - modified macros used in %%files
  760. - removed below:
  761. - packages:
  762. %{name}-jscript, %{name}-data-sybase, %{name}-data-firebird, bytefx-data-mysql
  763. - libraries:
  764. ByteFX.Data, FirebirdSql.Data.Firebird
  765. Mono.Data Mono.Data.TdsClient, Mono.Data.SybaseClient, Mono.Data.SqliteClient
  766. Microsoft.JScript, Microsoft.Vsa
  767. - commands:
  768. cilc, mjs, prj2make (replaced by xbuild)
  769. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 2.6.7-2
  770. - build with rpm-4.8.1-1 for pkg-config file
  771. * Mon Jul 26 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.7-1
  772. - updated mono to 2.6.7
  773. * Thu Apr 08 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.4-1
  774. - updated mono to 2.6.4
  775. * Thu Apr 08 2010 Shu KONNO <owa@bg.wakwak.com> 2.6.3-1
  776. - updated mono to 2.6.3
  777. added RabbitMQ.Client.Apigen.exe
  778. * Thu Dec 31 2009 Shu KONNO <owa@bg.wakwak.com> 2.6.1-2
  779. - unuse _smp_mflags
  780. * Sat Dec 26 2009 Shu KONNO <owa@bg.wakwak.com> 2.6.1-1
  781. - updated mono to 2.6.1
  782. - simplified macros
  783. * Mon Dec 14 2009 Shu KONNO <owa@bg.wakwak.com> 2.4.3-1
  784. - updated mono to 2.4.3
  785. added %%{mono_dir}/2.0/lc.exe*
  786. added %%gac_dll System.Web.Mvc
  787. added %%{mono_dir}/xbuild/*
  788. added %%{_mandir}/man1/lc.1.gz
  789. added %%{_mandir}/man1/xbuild.1.gz
  790. * Wed Jul 29 2009 Shu KONNO <owa@bg.wakwak.com> 2.4.2.3-1
  791. - updated mono to 2.4.2.3
  792. * Fri Jul 24 2009 Shu KONNO <owa@bg.wakwak.com> 2.4.2.2-1
  793. - updated mono to 2.4.2.2
  794. * Tue Jul 07 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.4.2.1-1
  795. - new upstream release
  796. - build with latest rpm to update mono-dependencies
  797. * Thu Jul 02 2009 Shu KONNO <owa@bg.wakwak.com> 2.4.2-1
  798. - updated mono to 2.4.2
  799. * Mon Apr 27 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.4-3
  800. - fix temporary workaround against build failure on ppc,
  801. from RH bugzilla #494026
  802. - statically link mono to libmono: remove "--disable-static" from configure
  803. - ensure removing *.a files in the install section
  804. - remove prebuilt binaries under mcs/class/lib/monolite/ before building
  805. * Sun Apr 5 2009 Shu KONNO <owa@bg.wakwak.com> 2.4-2
  806. - fixed paths using %%mono_dir, %%mono_doc macros
  807. - added Requires:libgluezilla >= 2.4 in monodoc
  808. * Sat Apr 4 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.4-1
  809. - new upstream release
  810. - added monodoc package (Obsoletes: monodoc-core <= 2.0-1vl5)
  811. * Mon Nov 03 2008 Shu KONNO <owa@bg.wakwak.com> 2.0.1-1
  812. - new upstream release
  813. - dropt %%{_bindir}/mono-find-{provides,requires}
  814. - added --with-libgdiplus=installed
  815. * Mon Oct 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-3
  816. - update to mono-2.0 released source
  817. - BR: libgdiplus-devel >= 2.0
  818. * Fri Sep 26 2008 Shu KONNO <owa@bg.wakwak.com> 2.0-2vl5
  819. - removed *.la
  820. * Wed Sep 17 2008 Shu KONNO <owa@bg.wakwak.com> 2.0-1vl5
  821. - updated mono to 2.0
  822. - updated url
  823. - changed macro %%monodir to %%mono_dir
  824. - dropt mono-1.1.13.4-selinux-ia64.patch
  825. - dropt mono-1.1.13.4-ppc-threading.patch
  826. - dropt mono-1.2.3-use-monodir.patch
  827. * Tue Aug 26 2008 Shu KONNO <owa@bg.wakwak.com> 1.2.5.1-1vl5
  828. - applied new versioning policy, spec in utf-8
  829. - dropt mono-1.2.5-libdir.patch
  830. - reverted monodir macro to using %%{_prefix}/lib/mono
  831. * Sat Dec 29 2007 Shu KONNO <owa@bg.wakwak.com> 1.2.5.1-0vl2
  832. - updated monodir to %%{_libdir}/mono
  833. * Sat Sep 22 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.5.1-0vl1
  834. - new upstream release
  835. - splited mono-basic package
  836. * Sat Oct 14 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.13.8.1-0vl1
  837. - new upstream release
  838. * Fri May 5 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.13.6-0vl1
  839. - new upstream release
  840. * Thu Apr 13 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.1.13.4-2vl2
  841. - disabled Patch2 on Vine/ppc environment
  842. * Wed Mar 29 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.13.4-2vl1
  843. - updated source and sub-packages based on Fedora packages
  844. * Tue Feb 22 2005 Satoshi MACHINO <machino@vinelinux.org> 1.0.6-0vl1
  845. - new upstream version(mono-1.0.6)
  846. * Sun Jan 16 2005 Satoshi MACHINO <machino@vinelinux.org> 1.0.5-0vl1
  847. - new upstream version(mono-1.0.5)
  848. * Sat Nov 06 2004 Satoshi MACHINO <machino@vinelinux.org> 1.0.4-0vl1
  849. - new upstream version(mono-1.0.4)
  850. -- changed to use configure
  851. * Sun Oct 24 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.2-0vl1
  852. - rebuild for Vine Linux (based on mono.spec inside src archive)
  853. - Fixed BuildRequires: gc-devel, libicu-devel
  854. - add Japanese translation
  855. * Fri Mar 10 2006 Bill Nottingham <notting@redhat.com> - 1.1.13.4-2
  856. - rebuild for ppc TLS issue (#184446)
  857. * Fri Mar 3 2006 Christopher Aillon <caillon@redhat.com> - 1.1.13.4-1
  858. - Update to 1.1.13.4
  859. - Add patch so mono doesn't segfault on PPC SMP machines
  860. - Minor spec cleanup
  861. * Thu Mar 2 2006 Ray Strode <rstrode@redhat.com> - 1.1.13.2-5
  862. - Updated patch from Jakub (1.1.13.2-3 to 1.1.13.2-5 are
  863. for bug 182965)
  864. * Tue Feb 28 2006 Ray Strode <rstrode@redhat.com> - 1.1.13.2-4
  865. - Updated patch from Paolo Molaro <lupus@ximian.com>
  866. * Mon Feb 27 2006 Ray Strode <rstrode@redhat.com> - 1.1.13.2-3
  867. - Patch from Jakub to make work with SELinux better
  868. * Sun Feb 12 2006 Christopher Aillon <caillon@redhat.com> - 1.1.13.2-2
  869. - Rebuild
  870. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.1.13.2-1.1
  871. - rebuilt for new gcc4.1 snapshot and glibc changes
  872. * Tue Jan 31 2006 Christopher Aillon <caillon@redhat.com> - 1.1.13.2-1
  873. - Update to 1.1.13.2
  874. * Fri Jan 13 2006 Alexander Larsson <alexl@redhat.com> - 1.1.13-1
  875. - Update to 1.13
  876. - Add libgdiplus dep to mono-core
  877. - Add s390x to build
  878. * Mon Jan 9 2006 Alexander Larsson <alexl@redhat.com> - 1.1.12.1-1
  879. - Update to 1.1.12.1
  880. * Mon Jan 9 2006 Alexander Larsson <alexl@redhat.com> - 1.1.10-4
  881. - rebuild
  882. * Fri Nov 18 2005 Alexander Larsson <alexl@redhat.com> 1.1.10-3
  883. - Disable s390 due to some build failure
  884. * Thu Nov 17 2005 Alexander Larsson <alexl@redhat.com> 1.1.10-2
  885. - Build on s390 and x86-64 now
  886. * Tue Nov 15 2005 Alexander Larsson <alexl@redhat.com> - 1.1.10-1
  887. - Initial version