| 1 |
#%define svnver 138447
|
| 2 |
|
| 3 |
Name: mono
|
| 4 |
Version: 2.6
|
| 5 |
Release: 1%{?dist}
|
| 6 |
Summary: A .NET runtime environment
|
| 7 |
|
| 8 |
Group: Development/Languages
|
| 9 |
License: MIT
|
| 10 |
URL: http://www.mono-project.com/Main_Page
|
| 11 |
# Prereleases are available here
|
| 12 |
# http://mono.ximian.com/monobuild/preview/sources-preview/
|
| 13 |
Source0: http://mono.ximian.com/monobuild/snapshot/sources-trunk/%name-%version.tar.bz2
|
| 14 |
Source1: monodir.c
|
| 15 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
| 16 |
|
| 17 |
BuildRequires: bison
|
| 18 |
BuildRequires: glib2-devel
|
| 19 |
BuildRequires: pkgconfig
|
| 20 |
BuildRequires: libicu-devel
|
| 21 |
BuildRequires: libgdiplus-devel >= 2.6
|
| 22 |
BuildRequires: zlib-devel
|
| 23 |
%ifarch ia64
|
| 24 |
BuildRequires: libunwind
|
| 25 |
BuildRequires: libunwind-devel
|
| 26 |
%endif
|
| 27 |
# Required for mono-libdir.patch
|
| 28 |
BuildRequires: automake libtool gettext-devel
|
| 29 |
Obsoletes: monodoc, monodoc-devel
|
| 30 |
|
| 31 |
# Yes, mono actually depends on itself, because
|
| 32 |
# we deleted the bootstrapping binaries. If you
|
| 33 |
# need to bootstrap mono, comment out this BuildRequires
|
| 34 |
# and don't delete the binaries in %%prep.
|
| 35 |
|
| 36 |
BuildRequires: mono-core
|
| 37 |
|
| 38 |
# JIT only availible on these:
|
| 39 |
ExclusiveArch: %ix86 x86_64 ia64 armv4l sparcv9 alpha s390 s390x ppc ppc64
|
| 40 |
|
| 41 |
Patch0: mono-2.2-ppc-threading.patch
|
| 42 |
Patch1: mono-libdir-126.patch
|
| 43 |
Patch2: mono-1.2.3-use-monodir.patch
|
| 44 |
Patch3: mono-2.2-uselibdir.patch
|
| 45 |
Patch4: mono-2.0-monoservice.patch
|
| 46 |
Patch5: mono-2.6-metadata-makefile.patch
|
| 47 |
Patch6: mono-242-libgdiplusconfig.patch
|
| 48 |
Patch7: mono-26-libdir.patch
|
| 49 |
|
| 50 |
%description
|
| 51 |
The Mono runtime implements a JIT engine for the ECMA CLI
|
| 52 |
virtual machine (as well as a byte code interpreter, the
|
| 53 |
class loader, the garbage collector, threading system and
|
| 54 |
metadata access libraries.
|
| 55 |
|
| 56 |
%package core
|
| 57 |
Summary: The Mono CIL runtime, suitable for running .NET code
|
| 58 |
Group: Development/Languages
|
| 59 |
Requires: libgdiplus
|
| 60 |
|
| 61 |
%description core
|
| 62 |
This package contains the core of the Mono runtime including its
|
| 63 |
Virtual Machine, Just-in-time compiler, C# compiler, security
|
| 64 |
tools and libraries (corlib, XML, System.Security, ZipLib,
|
| 65 |
I18N, Cairo and Mono.*).
|
| 66 |
|
| 67 |
%package devel
|
| 68 |
Summary: Development tools for Mono
|
| 69 |
Group: Development/Languages
|
| 70 |
Requires: mono-core = %{version}-%{release}
|
| 71 |
Requires: pkgconfig
|
| 72 |
Requires: glib2-devel
|
| 73 |
|
| 74 |
%description devel
|
| 75 |
This package completes the Mono developer toolchain with the mono profiler,
|
| 76 |
assembler and other various tools.
|
| 77 |
|
| 78 |
%package nunit
|
| 79 |
Summary: NUnit Testing Framework
|
| 80 |
License: zlib with acknowledgement
|
| 81 |
Group: Development/Languages
|
| 82 |
Requires: mono-core = %{version}-%{release}
|
| 83 |
Requires: glib2-devel
|
| 84 |
|
| 85 |
%description nunit
|
| 86 |
NUnit is a unit-testing framework for all .Net languages. Initially
|
| 87 |
ported from JUnit, the current release, version 2.2, is the fourth
|
| 88 |
major release of this Unit based unit testing tool for Microsoft .NET.
|
| 89 |
It is written entirely in C# and has been completely redesigned to
|
| 90 |
take advantage of many .NET language features, for example
|
| 91 |
custom attributes and other reflection related capabilities. NUnit
|
| 92 |
brings xUnit to all .NET languages.
|
| 93 |
|
| 94 |
%package nunit-devel
|
| 95 |
Summary: pkgconfig for nunit
|
| 96 |
Group: Development/Libraries
|
| 97 |
Requires: mono-core = %{version}-%{release}, pkgconfig
|
| 98 |
Requires: mono-nunit = %{version}-%{release}
|
| 99 |
|
| 100 |
%description nunit-devel
|
| 101 |
Development files for nunit
|
| 102 |
|
| 103 |
%package locale-extras
|
| 104 |
Summary: Extra locale information for Mono
|
| 105 |
Group: Development/Languages
|
| 106 |
Requires: mono-core = %{version}-%{release}
|
| 107 |
|
| 108 |
%description locale-extras
|
| 109 |
This package contains assemblies to support I18N applications for
|
| 110 |
non-latin alphabets.
|
| 111 |
|
| 112 |
%package jscript
|
| 113 |
Summary: JScript .NET support for Mono
|
| 114 |
Group: Development/Languages
|
| 115 |
Requires: mono-core = %{version}-%{release}
|
| 116 |
|
| 117 |
%description jscript
|
| 118 |
This package contains the JScript .NET compiler and language runtime.
|
| 119 |
This allows you to compile and run JScript.NET application and
|
| 120 |
assemblies.
|
| 121 |
|
| 122 |
%package extras
|
| 123 |
Summary: Provides the infrastructure for running and building daemons and services with Mono as well as various stub assemblies
|
| 124 |
Group: Development/Languages
|
| 125 |
Requires: mono-core = %{version}-%{release}
|
| 126 |
|
| 127 |
%description extras
|
| 128 |
This package provides the libary and application to run services
|
| 129 |
and daemons with Mono. It also includes stubs for the following
|
| 130 |
.NET 1.1 and 2.0 assemblies: Microsoft.Vsa,
|
| 131 |
System.Configuration.Install, System.Management, System.Messaging.
|
| 132 |
|
| 133 |
%package winforms
|
| 134 |
Summary: Windows Forms implementation for Mono
|
| 135 |
Group: Development/Languages
|
| 136 |
Requires: mono-core = %{version}-%{release}
|
| 137 |
|
| 138 |
%description winforms
|
| 139 |
This package provides a fully managed implementation of
|
| 140 |
System.Windows.Forms, the default graphical toolkit for .NET
|
| 141 |
applications.
|
| 142 |
|
| 143 |
%package wcf
|
| 144 |
Summary: Mono implementation of Windows Communication Foundation
|
| 145 |
Group: Development/Languages
|
| 146 |
Requires: mono-core = %{version}-%{release}
|
| 147 |
|
| 148 |
%description wcf
|
| 149 |
This package provides an implementation of WCF, the Windows Communication
|
| 150 |
Foundation.
|
| 151 |
|
| 152 |
%package web
|
| 153 |
Summary: ASP.NET, Remoting, and Web Services for Mono
|
| 154 |
Group: Development/Languages
|
| 155 |
Requires: mono-core = %{version}-%{release}
|
| 156 |
|
| 157 |
%description web
|
| 158 |
This package provides the ASP.NET libraries and runtime for
|
| 159 |
development of web application, web services and remoting support.
|
| 160 |
|
| 161 |
%package web-devel
|
| 162 |
Summary: Development files for system.web
|
| 163 |
Group: Development/Languages
|
| 164 |
Requires: mono-core = %{version}-%{release}
|
| 165 |
Requires: mono-web = %{version}-%{release} pkgconfig
|
| 166 |
|
| 167 |
%description web-devel
|
| 168 |
This package provides the .pc file for mono-web
|
| 169 |
|
| 170 |
%package data
|
| 171 |
Summary: Database connectivity for Mono
|
| 172 |
Group: Development/Languages
|
| 173 |
Requires: mono-core = %{version}-%{release}
|
| 174 |
|
| 175 |
%description data
|
| 176 |
This package provides a Mono assembly to facilitate data access
|
| 177 |
and manipulation with databases, LDAP compatible directory servers
|
| 178 |
and/or XML data exchange. Beyond the ADO.NET, Novell.LDAP and
|
| 179 |
System.DirectoryServices assemblies, it also includes a command
|
| 180 |
line sql application as well as the Microsoft SQL Server and ODBC
|
| 181 |
data providers.
|
| 182 |
|
| 183 |
%package data-sqlite
|
| 184 |
Summary: sqlite database connectivity for Mono
|
| 185 |
Group: Development/Languages
|
| 186 |
Requires: mono-core = %{version}-%{release}
|
| 187 |
Requires: sqlite
|
| 188 |
|
| 189 |
%description data-sqlite
|
| 190 |
This package contains the ADO.NET Data provider for the sqlite
|
| 191 |
database.
|
| 192 |
|
| 193 |
%package data-sybase
|
| 194 |
Summary: Sybase database connectivity for Mono
|
| 195 |
Group: Development/Languages
|
| 196 |
Requires: mono-core = %{version}-%{release}
|
| 197 |
|
| 198 |
%description data-sybase
|
| 199 |
This package contains the ADO.NET Data provider for the Sybase
|
| 200 |
database.
|
| 201 |
|
| 202 |
%package data-oracle
|
| 203 |
Summary: Oracle database connectivity for Mono
|
| 204 |
Group: Development/Languages
|
| 205 |
Requires: mono-core = %{version}-%{release}
|
| 206 |
|
| 207 |
%description data-oracle
|
| 208 |
This package contains the ADO.NET Data provider for the Oracle
|
| 209 |
database.
|
| 210 |
|
| 211 |
%package data-postgresql
|
| 212 |
Summary: Postgresql database connectivity for Mono
|
| 213 |
Group: Development/Languages
|
| 214 |
Requires: mono-core = %{version}-%{release}
|
| 215 |
|
| 216 |
%description data-postgresql
|
| 217 |
This package contains the ADO.NET Data provider for the PostgreSQL
|
| 218 |
database.
|
| 219 |
|
| 220 |
%package data-firebird
|
| 221 |
Summary: Firebird database connectivity for Mono
|
| 222 |
Group: Development/Languages
|
| 223 |
Requires: mono-core = %{version}-%{release}
|
| 224 |
|
| 225 |
%description data-firebird
|
| 226 |
This package contains the ADO.NET Data provider for the Firebird
|
| 227 |
database.
|
| 228 |
|
| 229 |
%package -n ibm-data-db2
|
| 230 |
Summary: IBM DB2 database connectivity for Mono
|
| 231 |
Group: Development/Languages
|
| 232 |
Requires: mono-core = %{version}-%{release}
|
| 233 |
|
| 234 |
%description -n ibm-data-db2
|
| 235 |
This package contains the ADO.NET Data provider for the IBM DB2
|
| 236 |
Universal database.
|
| 237 |
|
| 238 |
%package -n bytefx-data-mysql
|
| 239 |
Summary: MySQL database connectivity for Mono
|
| 240 |
Group: Development/Languages
|
| 241 |
Requires: mono-core = %{version}-%{release}
|
| 242 |
|
| 243 |
%description -n bytefx-data-mysql
|
| 244 |
This package contains the ADO.NET Data provider for MySQL. This is
|
| 245 |
no longer maintained. MySQL AB now provides MySQL Connector/Net
|
| 246 |
which is fully managed and actively maintained.
|
| 247 |
|
| 248 |
%package -n monodoc
|
| 249 |
Summary: The mono documentation system
|
| 250 |
Group: Documentation
|
| 251 |
Requires: mono-core = %{version}-%{release}
|
| 252 |
|
| 253 |
%description -n monodoc
|
| 254 |
monodoc is the documentation package for the mono .NET environment
|
| 255 |
|
| 256 |
%package -n monodoc-devel
|
| 257 |
Summary: .pc file for monodoc
|
| 258 |
Group: Documentation
|
| 259 |
Requires: monodoc = %{version}-%{release} pkgconfig
|
| 260 |
Requires: mono-core = %{version}-%{release}
|
| 261 |
|
| 262 |
%description -n monodoc-devel
|
| 263 |
Development file for monodoc
|
| 264 |
|
| 265 |
%define monodir %{_libdir}/mono
|
| 266 |
%define gac_dll(dll) %{monodir}/gac/%{1} \
|
| 267 |
%{monodir}/?.0/%{1}.dll \
|
| 268 |
%{nil}
|
| 269 |
%define gac_dll_2(dll) %{monodir}/gac/%{1} \
|
| 270 |
%{monodir}/?.5/%{1}.dll \
|
| 271 |
%{nil}
|
| 272 |
%define moon_dll(dll) %{monodir}/gac/%{1} \
|
| 273 |
%{monodir}/2.1/%{1}.dll \
|
| 274 |
%{nil}
|
| 275 |
%define mono_bin(bin) %{_bindir}/%{1} \
|
| 276 |
%{monodir}/?.0/%{1}.exe \
|
| 277 |
%{monodir}/?.0/%{1}.exe.* \
|
| 278 |
%{nil}
|
| 279 |
%define mono_bin_1(bin, dll) %{_bindir}/%{1} \
|
| 280 |
%{monodir}/1.0/%{2}.exe \
|
| 281 |
%{monodir}/1.0/%{2}.exe.* \
|
| 282 |
%{nil}
|
| 283 |
%define mono_bin_2(bin, dll) %{_bindir}/%{1} \
|
| 284 |
%{monodir}/2.0/%{2}.exe \
|
| 285 |
%{monodir}/2.0/%{2}.exe.* \
|
| 286 |
%{nil}
|
| 287 |
|
| 288 |
%prep
|
| 289 |
%setup -q
|
| 290 |
|
| 291 |
%patch0 -p1 -b .ppc-threading
|
| 292 |
%patch1 -p1 -b .libdir
|
| 293 |
%patch2 -p1 -b .usemonodir
|
| 294 |
%patch3 -p1 -b .uselibdir
|
| 295 |
%patch4 -p1 -b .monoservice
|
| 296 |
%patch5 -p1 -b .metadata-makefile
|
| 297 |
%patch6 -p1 -b .libgdiplus
|
| 298 |
sed -i -e 's!@libdir@!%{_libdir}!' %{PATCH7}
|
| 299 |
%patch7 -p1 -b .libdir-22
|
| 300 |
sed -i -e 's!%{_libdir}!@libdir@!' %{PATCH7}
|
| 301 |
sed -i -e 's!@prefix@/lib/!%{_libdir}/!' data/mono.web.pc.in
|
| 302 |
sed -i -e 's!@prefix@/lib/!%{_libdir}/!' data/system.web.extensions_1.0.pc.in
|
| 303 |
sed -i -e 's!@prefix@/lib/!%{_libdir}/!' data/system.web.extensions.design_1.0.pc.in
|
| 304 |
sed -i -e 's!$(prefix)/lib/!%{_libdir}/!' docs/Makefile.{am,in}
|
| 305 |
|
| 306 |
autoreconf -f -i -s
|
| 307 |
|
| 308 |
# Add undeclared Arg
|
| 309 |
sed -i "61a #define ARG_MAX _POSIX_ARG_MAX" mono/io-layer/wapi_glob.h
|
| 310 |
|
| 311 |
# Remove prebuilt binaries
|
| 312 |
rm -rf mcs/class/lib/monolite/*
|
| 313 |
|
| 314 |
%build
|
| 315 |
%ifarch ia64 s390 s390x
|
| 316 |
export CFLAGS="-O2 -fno-strict-aliasing"
|
| 317 |
%else
|
| 318 |
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
| 319 |
%endif
|
| 320 |
|
| 321 |
gcc -o monodir %{SOURCE1} -DMONODIR=\"%{_libdir}/mono\"
|
| 322 |
|
| 323 |
%configure --with-ikvm-native=yes --with-jit=yes --with-xen_opt=yes \
|
| 324 |
--with-moonlight=yes --with-profile2=yes \
|
| 325 |
--with-libgdiplus=installed
|
| 326 |
make
|
| 327 |
|
| 328 |
|
| 329 |
%install
|
| 330 |
%{__rm} -rf %{buildroot}
|
| 331 |
make DESTDIR=%{buildroot} install
|
| 332 |
install monodir %{buildroot}%{_bindir}
|
| 333 |
|
| 334 |
%{__rm} %{buildroot}%{_libdir}/*.la
|
| 335 |
%{__rm} %{buildroot}%{_libdir}/*.a
|
| 336 |
|
| 337 |
# We put these inside rpm
|
| 338 |
%{__rm} %{buildroot}%{_bindir}/mono-find-provides
|
| 339 |
%{__rm} %{buildroot}%{_bindir}/mono-find-requires
|
| 340 |
|
| 341 |
# This was removed upstream:
|
| 342 |
%{__rm} -fr %{buildroot}%{monodir}/gac/Mono.Security.Win32/[12]*
|
| 343 |
%{__rm} -rf %{buildroot}%{monodir}/1.0/Mono.Security.Win32.dll
|
| 344 |
%{__rm} -rf %{buildroot}%{monodir}/2.0/Mono.Security.Win32.dll
|
| 345 |
%{__rm} %{buildroot}%{_datadir}/libgc-mono/README*
|
| 346 |
%{__rm} %{buildroot}%{_datadir}/libgc-mono/barrett_diagram
|
| 347 |
%{__rm} %{buildroot}%{_datadir}/libgc-mono/*.html
|
| 348 |
%{__rm} %{buildroot}%{_datadir}/libgc-mono/gc.man
|
| 349 |
%{__rm} %{buildroot}/%_bindir/jay
|
| 350 |
%{__rm} -r %{buildroot}%{_datadir}/jay
|
| 351 |
%{__rm} %{buildroot}%{_mandir}/man1/jay.1
|
| 352 |
%{__rm} %{buildroot}%{_mandir}/man1/monostyle.1
|
| 353 |
%{__rm} %{buildroot}%{_mandir}/man1/oldmono.1
|
| 354 |
%{__rm} %{buildroot}%{_mandir}/man1/mint.1
|
| 355 |
%{__rm} %{buildroot}%{monodir}/1.0/browsercaps-updater.exe*
|
| 356 |
%{__rm} -rf %{buildroot}%{monodir}/xbuild/Microsoft
|
| 357 |
|
| 358 |
%find_lang mcs
|
| 359 |
|
| 360 |
%post -p /sbin/ldconfig
|
| 361 |
|
| 362 |
%postun -p /sbin/ldconfig
|
| 363 |
|
| 364 |
%post devel -p /sbin/ldconfig
|
| 365 |
|
| 366 |
%postun devel -p /sbin/ldconfig
|
| 367 |
|
| 368 |
%clean
|
| 369 |
%{__rm} -rf %{buildroot}
|
| 370 |
|
| 371 |
%files core -f mcs.lang
|
| 372 |
%defattr(-,root,root,-)
|
| 373 |
%doc AUTHORS COPYING.LIB ChangeLog NEWS README
|
| 374 |
%{_bindir}/mono
|
| 375 |
%{_bindir}/monodir
|
| 376 |
%{_bindir}/mono-test-install
|
| 377 |
%mono_bin certmgr
|
| 378 |
%mono_bin chktrust
|
| 379 |
%mono_bin csharp
|
| 380 |
%mono_bin gacutil
|
| 381 |
%{_bindir}/gacutil1
|
| 382 |
%{_bindir}/gacutil2
|
| 383 |
%mono_bin gmcs
|
| 384 |
%mono_bin mcs
|
| 385 |
%{_bindir}/mcs1
|
| 386 |
%mono_bin mozroots
|
| 387 |
%mono_bin setreg
|
| 388 |
%mono_bin sn
|
| 389 |
%mono_bin pdb2mdb
|
| 390 |
%mono_bin sqlmetal
|
| 391 |
%mono_bin svcutil
|
| 392 |
%{monodir}/2.0/System.Xml.Linq.dll
|
| 393 |
%{_libdir}/libmono.so.*
|
| 394 |
%{_libdir}/libmono-profiler-logging.so.*
|
| 395 |
%{_mandir}/man1/certmgr.1.gz
|
| 396 |
%{_mandir}/man1/chktrust.1.gz
|
| 397 |
%{_mandir}/man1/gacutil.1.gz
|
| 398 |
%{_mandir}/man1/mcs.1.gz
|
| 399 |
%{_mandir}/man1/mono.1.gz
|
| 400 |
%{_mandir}/man1/mozroots.1.gz
|
| 401 |
%{_mandir}/man1/setreg.1.gz
|
| 402 |
%{_mandir}/man1/sn.1.gz
|
| 403 |
%{_mandir}/man5/mono-config.5.gz
|
| 404 |
%{_mandir}/man1/csharp.1.gz
|
| 405 |
%{_mandir}/man1/pdb2mdb.1.gz
|
| 406 |
%{_libdir}/libMonoPosixHelper.so
|
| 407 |
%dir %{monodir}
|
| 408 |
%dir %{monodir}/1.0
|
| 409 |
%dir %{monodir}/2.0
|
| 410 |
%dir %{monodir}/3.5
|
| 411 |
%dir %{monodir}/gac
|
| 412 |
%dir %{monodir}/compat-*
|
| 413 |
%gac_dll Commons.Xml.Relaxng
|
| 414 |
%gac_dll I18N
|
| 415 |
%gac_dll I18N.West
|
| 416 |
%gac_dll ICSharpCode.SharpZipLib
|
| 417 |
%{monodir}/compat-*/ICSharpCode.SharpZipLib.dll
|
| 418 |
%{monodir}/gac/Mono.Cecil
|
| 419 |
%{monodir}/gac/Mono.Cecil.Mdb
|
| 420 |
%gac_dll cscompmgd
|
| 421 |
%gac_dll CustomMarshalers
|
| 422 |
%gac_dll Microsoft.VisualC
|
| 423 |
%gac_dll Mono.C5
|
| 424 |
%gac_dll Mono.Cairo
|
| 425 |
%gac_dll Mono.CompilerServices.SymbolWriter
|
| 426 |
%gac_dll Mono.CSharp
|
| 427 |
%gac_dll System.Drawing
|
| 428 |
%gac_dll Mono.GetOptions
|
| 429 |
%gac_dll Mono.Management
|
| 430 |
%gac_dll Mono.Posix
|
| 431 |
%gac_dll Mono.Security
|
| 432 |
%gac_dll Mono.Simd
|
| 433 |
%gac_dll OpenSystem.C
|
| 434 |
%gac_dll System
|
| 435 |
%gac_dll System.Configuration
|
| 436 |
%gac_dll System.Core
|
| 437 |
%gac_dll System.Security
|
| 438 |
%gac_dll System.Xml
|
| 439 |
%gac_dll Mono.Tasklets
|
| 440 |
%gac_dll WindowsBase
|
| 441 |
%{monodir}/gac/System.Xml.Linq
|
| 442 |
%{monodir}/?.0/mscorlib.dll
|
| 443 |
%{monodir}/?.0/mscorlib.dll.mdb
|
| 444 |
%dir %{_sysconfdir}/mono
|
| 445 |
%dir %{_sysconfdir}/mono/1.0
|
| 446 |
%dir %{_sysconfdir}/mono/2.0
|
| 447 |
%dir %{_sysconfdir}/mono/mconfig
|
| 448 |
%config (noreplace) %{_sysconfdir}/mono/config
|
| 449 |
%config (noreplace) %{_sysconfdir}/mono/1.0/machine.config
|
| 450 |
%config (noreplace) %{_sysconfdir}/mono/2.0/machine.config
|
| 451 |
%config (noreplace) %{_sysconfdir}/mono/2.0/settings.map
|
| 452 |
%{_libdir}/mono-source-libs/
|
| 453 |
|
| 454 |
%files devel
|
| 455 |
%defattr(-,root,root,-)
|
| 456 |
%{_bindir}/mono-api-*
|
| 457 |
%{monodir}/?.0/mono-api-info*
|
| 458 |
%{_bindir}/monodis
|
| 459 |
%{_bindir}/al1
|
| 460 |
%mono_bin_1 al al
|
| 461 |
%mono_bin_2 al2 al
|
| 462 |
%mono_bin caspol
|
| 463 |
%mono_bin cert2spc
|
| 464 |
%mono_bin cilc
|
| 465 |
%mono_bin dtd2xsd
|
| 466 |
%mono_bin dtd2rng
|
| 467 |
%mono_bin_1 genxs1 genxs
|
| 468 |
%{_bindir}/genxs
|
| 469 |
%mono_bin sgen
|
| 470 |
%{monodir}/?.0/installutil.*
|
| 471 |
%mono_bin installvst
|
| 472 |
%mono_bin_1 ilasm ilasm
|
| 473 |
%{_bindir}/ilasm1
|
| 474 |
%mono_bin_2 ilasm2 ilasm
|
| 475 |
%mono_bin macpack
|
| 476 |
%mono_bin makecert
|
| 477 |
%mono_bin mkbundle
|
| 478 |
%{_bindir}/mkbundle1
|
| 479 |
%{_bindir}/mkbundle2
|
| 480 |
%mono_bin mono-cil-strip
|
| 481 |
%mono_bin monolinker
|
| 482 |
%mono_bin_1 monop monop
|
| 483 |
%{_bindir}/monop1
|
| 484 |
%mono_bin_2 monop2 monop
|
| 485 |
%mono_bin mono-shlib-cop
|
| 486 |
%mono_bin mono-xmltool
|
| 487 |
%{_bindir}/pedump
|
| 488 |
%mono_bin permview
|
| 489 |
%mono_bin prj2make
|
| 490 |
%{_bindir}/resgen1
|
| 491 |
%mono_bin_1 resgen resgen
|
| 492 |
%mono_bin_2 resgen2 resgen
|
| 493 |
%{_mandir}/man1/resgen.1.gz
|
| 494 |
%mono_bin secutil
|
| 495 |
%mono_bin signcode
|
| 496 |
%mono_bin xbuild
|
| 497 |
%{monodir}/1.0/ictool.exe
|
| 498 |
%{monodir}/1.0/ictool.exe.mdb
|
| 499 |
%{_mandir}/man1/al.1.gz
|
| 500 |
%{_mandir}/man1/cert2spc.1.gz
|
| 501 |
%{_mandir}/man1/cilc.1.gz
|
| 502 |
%{_mandir}/man1/dtd2xsd.1.gz
|
| 503 |
%{_mandir}/man1/genxs.1.gz
|
| 504 |
%{_mandir}/man1/ilasm.1.gz
|
| 505 |
%{_mandir}/man1/macpack.1.gz
|
| 506 |
%{_mandir}/man1/makecert.1.gz
|
| 507 |
%{_mandir}/man1/mkbundle.1.gz
|
| 508 |
%{_mandir}/man1/mono-cil-strip.1.gz
|
| 509 |
%{_mandir}/man1/monolinker.1.gz
|
| 510 |
%{_mandir}/man1/mono-shlib-cop.1.gz
|
| 511 |
%{_mandir}/man1/mono-xmltool.1.gz
|
| 512 |
%{_mandir}/man1/monodis.1.gz
|
| 513 |
%{_mandir}/man1/monop.1.gz
|
| 514 |
%{_mandir}/man1/permview.1.gz
|
| 515 |
%{_mandir}/man1/prj2make.1.gz
|
| 516 |
%{_mandir}/man1/secutil.1.gz
|
| 517 |
%{_mandir}/man1/sgen.1.gz
|
| 518 |
%{_mandir}/man1/signcode.1.gz
|
| 519 |
%{_mandir}/man1/xbuild.1.gz
|
| 520 |
%gac_dll PEAPI
|
| 521 |
%gac_dll Microsoft.Build.Engine
|
| 522 |
%gac_dll Microsoft.Build.Framework
|
| 523 |
%gac_dll Microsoft.Build.Tasks
|
| 524 |
%gac_dll Microsoft.Build.Utilities
|
| 525 |
%gac_dll_2 Microsoft.Build.Tasks.v3.5
|
| 526 |
%gac_dll_2 Microsoft.Build.Utilities.v3.5
|
| 527 |
%{monodir}/2.0/MSBuild
|
| 528 |
%{monodir}/2.0/Microsoft.Build.xsd
|
| 529 |
%{monodir}/2.0/Microsoft.*.targets
|
| 530 |
%{monodir}/2.0/Microsoft.Common.tasks
|
| 531 |
%{monodir}/2.0/xbuild.rsp
|
| 532 |
%{monodir}/3.5/Microsoft.Build.Engine.dll
|
| 533 |
%{monodir}/3.5/Microsoft.Build.Framework.dll
|
| 534 |
%{_bindir}/monograph
|
| 535 |
%{_libdir}/libmono-profiler-aot.*
|
| 536 |
%{_libdir}/libmono-profiler-cov.*
|
| 537 |
%{_libdir}/libmono.so
|
| 538 |
%{_libdir}/libMonoSupportW.so
|
| 539 |
%{_libdir}/libmono-profiler-logging.so
|
| 540 |
%{_libdir}/libikvm-native.so
|
| 541 |
%{_libdir}/pkgconfig/dotnet.pc
|
| 542 |
%{_libdir}/pkgconfig/mono-cairo.pc
|
| 543 |
%{_libdir}/pkgconfig/mono.pc
|
| 544 |
%{_libdir}/pkgconfig/cecil.pc
|
| 545 |
%{_libdir}/pkgconfig/dotnet35.pc
|
| 546 |
%{_libdir}/pkgconfig/mono-lineeditor.pc
|
| 547 |
%{_libdir}/pkgconfig/mono-options.pc
|
| 548 |
%{_libdir}/pkgconfig/wcf.pc
|
| 549 |
%{_includedir}/mono-1.0
|
| 550 |
%{_datadir}/mono-1.0/mono/cil/cil-opcodes.xml
|
| 551 |
%dir %{_datadir}/mono-1.0
|
| 552 |
%dir %{_datadir}/mono-1.0/mono
|
| 553 |
%dir %{_datadir}/mono-1.0/mono/cil
|
| 554 |
%{_libdir}/mono/1.0/culevel*
|
| 555 |
|
| 556 |
%files nunit
|
| 557 |
%defattr(-,root,root,-)
|
| 558 |
%mono_bin_1 nunit-console nunit-console
|
| 559 |
%mono_bin_2 nunit-console2 nunit-console
|
| 560 |
%gac_dll nunit.core
|
| 561 |
%gac_dll nunit.framework
|
| 562 |
%gac_dll nunit.util
|
| 563 |
%gac_dll nunit.mocks
|
| 564 |
%gac_dll nunit-console-runner
|
| 565 |
%gac_dll nunit.core.extensions
|
| 566 |
%gac_dll nunit.core.interfaces
|
| 567 |
%gac_dll nunit.framework.extensions
|
| 568 |
|
| 569 |
%files nunit-devel
|
| 570 |
%defattr(-,root,root,-)
|
| 571 |
%{_libdir}/pkgconfig/mono-nunit.pc
|
| 572 |
|
| 573 |
%files locale-extras
|
| 574 |
%defattr(-,root,root,-)
|
| 575 |
%gac_dll I18N.MidEast
|
| 576 |
%gac_dll I18N.Rare
|
| 577 |
%gac_dll I18N.CJK
|
| 578 |
%gac_dll I18N.Other
|
| 579 |
|
| 580 |
%files jscript
|
| 581 |
%defattr(-,root,root,-)
|
| 582 |
%mono_bin mjs
|
| 583 |
%gac_dll Microsoft.JScript
|
| 584 |
|
| 585 |
%files extras
|
| 586 |
%defattr(-,root,root,-)
|
| 587 |
%{_mandir}/man1/mono-service.1.gz
|
| 588 |
%mono_bin_1 mono-service mono-service
|
| 589 |
%mono_bin_2 mono-service2 mono-service
|
| 590 |
%{monodir}/gac/mono-service
|
| 591 |
%gac_dll System.Configuration.Install
|
| 592 |
%gac_dll System.Management
|
| 593 |
%gac_dll System.Messaging
|
| 594 |
%gac_dll System.ServiceProcess
|
| 595 |
%gac_dll Microsoft.Vsa
|
| 596 |
%gac_dll Mono.Messaging.RabbitMQ
|
| 597 |
%gac_dll Mono.Messaging
|
| 598 |
%gac_dll RabbitMQ.Client
|
| 599 |
|
| 600 |
%files wcf
|
| 601 |
%defattr(-, root, root, -)
|
| 602 |
%gac_dll System.IdentityModel
|
| 603 |
%gac_dll System.IdentityModel.Selectors
|
| 604 |
%gac_dll System.Runtime.Serialization
|
| 605 |
%gac_dll System.ServiceModel
|
| 606 |
%gac_dll System.ServiceModel.Web
|
| 607 |
|
| 608 |
%files web
|
| 609 |
%defattr(-,root,root,-)
|
| 610 |
%gac_dll Mono.Http
|
| 611 |
%gac_dll Mono.Web
|
| 612 |
%gac_dll System.ComponentModel.DataAnnotations
|
| 613 |
%gac_dll System.Runtime.Remoting
|
| 614 |
%gac_dll System.Runtime.Serialization.Formatters.Soap
|
| 615 |
%gac_dll System.Web
|
| 616 |
%gac_dll System.Web.Abstractions
|
| 617 |
%gac_dll System.Web.DynamicData
|
| 618 |
%gac_dll System.Web.Extensions
|
| 619 |
%gac_dll System.Web.Extensions.Design
|
| 620 |
%{monodir}/compat-2.0/System.Web.Extensions*dll
|
| 621 |
%{monodir}/3.5/System.Web.Extensions*
|
| 622 |
%gac_dll System.Web.Mvc
|
| 623 |
%gac_dll System.Web.Routing
|
| 624 |
%gac_dll System.Web.Services
|
| 625 |
%mono_bin disco
|
| 626 |
%mono_bin mconfig
|
| 627 |
%mono_bin soapsuds
|
| 628 |
%mono_bin_1 wsdl wsdl
|
| 629 |
%{_bindir}/wsdl1
|
| 630 |
%mono_bin_2 wsdl2 wsdl
|
| 631 |
%mono_bin_2 xsd2 xsd
|
| 632 |
%mono_bin_1 xsd xsd
|
| 633 |
%{_mandir}/man1/disco.1.gz
|
| 634 |
%{_mandir}/man1/mconfig.1.gz
|
| 635 |
%{_mandir}/man1/soapsuds.1.gz
|
| 636 |
%{_mandir}/man1/wsdl.1.gz
|
| 637 |
%{_mandir}/man1/xsd.1.gz
|
| 638 |
%config (noreplace) %{_sysconfdir}/mono/browscap.ini
|
| 639 |
%config (noreplace) %{_sysconfdir}/mono/2.0/Browsers/Compat.browser
|
| 640 |
%config (noreplace) %{_sysconfdir}/mono/1.0/DefaultWsdlHelpGenerator.aspx
|
| 641 |
%config (noreplace) %{_sysconfdir}/mono/2.0/DefaultWsdlHelpGenerator.aspx
|
| 642 |
%config (noreplace) %{_sysconfdir}/mono/mconfig/config.xml
|
| 643 |
%config (noreplace) %{_sysconfdir}/mono/2.0/web.config
|
| 644 |
%mono_bin httpcfg
|
| 645 |
%{_mandir}/man1/httpcfg.1.gz
|
| 646 |
|
| 647 |
%files web-devel
|
| 648 |
%defattr(-,root,root,-)
|
| 649 |
%{_libdir}/pkgconfig/mono.web.pc
|
| 650 |
%{_libdir}/pkgconfig/system.web.extensions_1.0.pc
|
| 651 |
%{_libdir}/pkgconfig/system.web.extensions.design_1.0.pc
|
| 652 |
%{_libdir}/pkgconfig/system.web.mvc.pc
|
| 653 |
|
| 654 |
%files winforms
|
| 655 |
%defattr(-,root,root,-)
|
| 656 |
%gac_dll Accessibility
|
| 657 |
%gac_dll System.Design
|
| 658 |
%gac_dll System.Drawing.Design
|
| 659 |
%gac_dll System.Windows.Forms
|
| 660 |
# Put here temporarily to break dependency issues
|
| 661 |
# (cf. openSUSE packaging). Will be fixed post 1.2.5
|
| 662 |
%gac_dll Mono.WebBrowser
|
| 663 |
|
| 664 |
%files data
|
| 665 |
%defattr(-,root,root,-)
|
| 666 |
%mono_bin sqlsharp
|
| 667 |
%{_mandir}/man1/sqlsharp.1.gz
|
| 668 |
%gac_dll System.Data
|
| 669 |
%gac_dll System.Data.DataSetExtensions
|
| 670 |
%gac_dll System.Data.Linq
|
| 671 |
%gac_dll Mono.Data
|
| 672 |
%gac_dll Mono.Data.Tds
|
| 673 |
%gac_dll Mono.Data.TdsClient
|
| 674 |
%gac_dll System.EnterpriseServices
|
| 675 |
%gac_dll Novell.Directory.Ldap
|
| 676 |
%gac_dll System.DirectoryServices
|
| 677 |
%gac_dll System.Transactions
|
| 678 |
|
| 679 |
%files data-sqlite
|
| 680 |
%defattr(-,root,root,-)
|
| 681 |
%gac_dll Mono.Data.SqliteClient
|
| 682 |
%gac_dll Mono.Data.Sqlite
|
| 683 |
|
| 684 |
%files data-sybase
|
| 685 |
%defattr(-,root,root,-)
|
| 686 |
%gac_dll Mono.Data.SybaseClient
|
| 687 |
|
| 688 |
%files data-oracle
|
| 689 |
%defattr(-,root,root,-)
|
| 690 |
%gac_dll System.Data.OracleClient
|
| 691 |
|
| 692 |
%files data-postgresql
|
| 693 |
%defattr(-,root,root,-)
|
| 694 |
%gac_dll Npgsql
|
| 695 |
|
| 696 |
%files data-firebird
|
| 697 |
%defattr(-,root,root,-)
|
| 698 |
%gac_dll FirebirdSql.Data.Firebird
|
| 699 |
|
| 700 |
%files -n bytefx-data-mysql
|
| 701 |
%defattr(-,root,root,-)
|
| 702 |
%gac_dll ByteFX.Data
|
| 703 |
|
| 704 |
%files -n ibm-data-db2
|
| 705 |
%defattr(-,root,root,-)
|
| 706 |
%gac_dll IBM.Data.DB2
|
| 707 |
|
| 708 |
%files -n monodoc
|
| 709 |
%defattr(-, root, root)
|
| 710 |
%{_libdir}/mono/gac/monodoc
|
| 711 |
%{_libdir}/monodoc/*
|
| 712 |
%{_libdir}/mono/monodoc/monodoc.dll
|
| 713 |
%mono_bin mdoc
|
| 714 |
%{_bindir}/mdoc-*
|
| 715 |
%{_bindir}/mdass*
|
| 716 |
%{_bindir}/mdval*
|
| 717 |
%mono_bin mod
|
| 718 |
%{_bindir}/monodoc*
|
| 719 |
%{_mandir}/man1/md*
|
| 720 |
%{_mandir}/man1/monodoc*
|
| 721 |
%{_mandir}/man5/mdoc*
|
| 722 |
|
| 723 |
%files -n monodoc-devel
|
| 724 |
%defattr (-, root, root)
|
| 725 |
%{_libdir}/pkgconfig/monodoc.pc
|
| 726 |
|
| 727 |
%changelog
|
| 728 |
* Wed Sep 30 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.6-1
|
| 729 |
- Bump to 2.6
|
| 730 |
- Fix metadata makefiles patch
|
| 731 |
- Removed metadata-appconf patch (not required)
|
| 732 |
- Removed moonlight subpackage
|
| 733 |
- Fix configure options
|
| 734 |
|
| 735 |
* Tue Aug 25 2009 Michel Salim <salimma@fedoraproject.org> - 2.4.2.3-2
|
| 736 |
- Rearrange assemblies to properly fix bz 434709:
|
| 737 |
* mono-core can now be installed on its own, no longer pulling in
|
| 738 |
monodoc, mono-extras and mono-web
|
| 739 |
* mono-web no longer pull in mono-extras
|
| 740 |
|
| 741 |
* Wed Jul 29 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4.2.3.1
|
| 742 |
- Update to 2.4.2.3
|
| 743 |
|
| 744 |
* Fri Jul 17 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4.2.2-1
|
| 745 |
- Patch for cve-2009-0217
|
| 746 |
|
| 747 |
* Thu Jul 09 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4.2.1-1
|
| 748 |
- Bump to 2.4.2.1 release
|
| 749 |
- Add system.web.mvc
|
| 750 |
|
| 751 |
* Tue Jun 30 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4.2-5
|
| 752 |
- Bump to 2.4.2 official release
|
| 753 |
- Move mkbundle2 to devel (BZ 497187)
|
| 754 |
|
| 755 |
* Mon Jun 22 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4.2-4
|
| 756 |
- Bump to 2.4.2 RC 1
|
| 757 |
|
| 758 |
* Wed Jun 17 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4.2-3
|
| 759 |
- Bump to 2.4.2 preview 2
|
| 760 |
- Fix libgdiplus winform patch
|
| 761 |
|
| 762 |
* Sun Jun 14 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4.2-2
|
| 763 |
- Fix metadata makefile (duplicates appconf.h during make install)
|
| 764 |
- Move System.Web to mono-core (bz 434709)
|
| 765 |
- Move System.Configuration.Install to mono-core (bz 434709)
|
| 766 |
|
| 767 |
* Tue Jun 09 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4.2-1
|
| 768 |
- Bump to 2.4.2 preview
|
| 769 |
- remove ppc glocks patch
|
| 770 |
|
| 771 |
* Wed Apr 15 2009 Toshio Kuratomi <toshio@fedoraproject.org> 2.4-19
|
| 772 |
- And turn off bootstrapping and make sure it rebuilds on all platforms.
|
| 773 |
|
| 774 |
* Wed Apr 15 2009 Toshio Kuratomi <toshio@fedoraproject.org> 2.4-18
|
| 775 |
- Enable bootstrap code and ppc64. If this succeeds we'll build -19 right
|
| 776 |
afterwards with bootstrap code turned off.
|
| 777 |
Remember: you can't merge the ppc64 enabling to older branches without first
|
| 778 |
bootstrapping once.
|
| 779 |
|
| 780 |
* Tue Apr 14 2009 Toshio Kuratomi <toshio@fedoraproject.org> 2.4-17
|
| 781 |
- Update to 2.4 final.
|
| 782 |
- Statically link mono to libmono to work around bz #494026
|
| 783 |
|
| 784 |
* Mon Apr 13 2009 Dennis Gilmore <ausil@fedoraproject.org> - 2.4-16
|
| 785 |
- set sparc32 to build sparcv9
|
| 786 |
|
| 787 |
* Mon Apr 13 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 2.4-15
|
| 788 |
- Revert to RC1 with changes to the spec file such as enabling moonlight so
|
| 789 |
that we have a working build for F11.
|
| 790 |
|
| 791 |
* Mon Apr 13 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 2.4-14
|
| 792 |
- Remove bootstrap changes as it's not necessary.
|
| 793 |
- remove ppc64 as we only had ppc before.
|
| 794 |
- Correct release number format
|
| 795 |
- Fix Source and URL.
|
| 796 |
|
| 797 |
* Fri Apr 10 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> - 2.4-13.2
|
| 798 |
- Re-enable PPC and PPC64
|
| 799 |
- sub point build for scratch build and bootstrap
|
| 800 |
|
| 801 |
* Mon Apr 06 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> - 2.4-13.1
|
| 802 |
- Remove ppc support
|
| 803 |
- moonlight parts are now in their own subpackage
|
| 804 |
|
| 805 |
* Thu Apr 02 2009 Xavier Lamien <lxtnow@gmail.com> - 2.4-13
|
| 806 |
- Enable moonlight support.
|
| 807 |
|
| 808 |
* Thu Mar 26 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4-12
|
| 809 |
- Full 2.4 release
|
| 810 |
|
| 811 |
* Wed Mar 18 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4-11.RC3
|
| 812 |
- Bump to RC3
|
| 813 |
|
| 814 |
* Tue Mar 10 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4-10.RC2
|
| 815 |
- Bump to RC2
|
| 816 |
|
| 817 |
* Sat Mar 07 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4-9.RC1
|
| 818 |
- Fix libdir issue with mono-cairo
|
| 819 |
|
| 820 |
* Fri Feb 27 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4-8.RC1
|
| 821 |
- Built using official tarball release
|
| 822 |
- BR now uses libgdiplus >= 2.4
|
| 823 |
- Bump to RC1
|
| 824 |
|
| 825 |
* Tue Feb 10 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4-6.pre2.20091002svn126522
|
| 826 |
- Update from svn
|
| 827 |
- removed big array support (seems to be causing some problems)
|
| 828 |
- removed genxs2
|
| 829 |
|
| 830 |
* Thu Feb 05 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4-5.pre2.20090502svn125515
|
| 831 |
- Update from svn
|
| 832 |
- rename to pre2
|
| 833 |
|
| 834 |
* Sat Jan 24 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4-2.20092401svn124412
|
| 835 |
- Update from svn
|
| 836 |
- Added support for big arrays (64 bit archs only)
|
| 837 |
|
| 838 |
* Sun Jan 18 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4-1.20091801svn123751
|
| 839 |
- Update from svn
|
| 840 |
|
| 841 |
* Fri Jan 16 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.4-1.20091601svn123642
|
| 842 |
- Move to 2.4 branch
|
| 843 |
- Update from svn
|
| 844 |
|
| 845 |
* Sun Jan 11 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-17.RC2.20091101svn122991
|
| 846 |
- Updates from svn
|
| 847 |
- Change to RC2
|
| 848 |
- Removed mono-api-diff.exe and transform.exe from spec
|
| 849 |
- Fixes some problems with winforms on some boxes
|
| 850 |
- Added gettext-devel
|
| 851 |
|
| 852 |
* Sun Jan 04 2009 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-15.RC1.20090401svn122388
|
| 853 |
- Updates from svn
|
| 854 |
|
| 855 |
* Wed Dec 31 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-15.RC1.20081231svn122288
|
| 856 |
- Important updates from svn
|
| 857 |
|
| 858 |
* Mon Dec 29 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-15.RC1.20081229svn122181
|
| 859 |
- Update from svn
|
| 860 |
|
| 861 |
* Tue Dec 23 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-14.RC1.20081223svn122032
|
| 862 |
- Remove ppc self-build parts and ppc reordering patch
|
| 863 |
- Update from svn
|
| 864 |
- Minor spec file cleanups
|
| 865 |
|
| 866 |
* Fri Dec 19 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-14.pre3.20081219svn121833
|
| 867 |
- Get PPC to build itself, will be disabled from the next build
|
| 868 |
|
| 869 |
* Fri Dec 19 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-13.pre3.20081219svn121833
|
| 870 |
- Lots more fixes
|
| 871 |
- New patch for ppc archs
|
| 872 |
- Re-enable ppc build
|
| 873 |
|
| 874 |
* Wed Dec 17 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-12.pre3.20081217svn121664
|
| 875 |
- Fix libdir issue with monodoc
|
| 876 |
|
| 877 |
* Tue Dec 16 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-11.pre3.20081216svn121605
|
| 878 |
- Fixes problems with web references
|
| 879 |
- Fixes x86_64 build problems
|
| 880 |
- Added new web-devel subpackage
|
| 881 |
|
| 882 |
* Mon Dec 15 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-11.pre3.20081215svn121536
|
| 883 |
- Exclude ppc due to build problems (temporary)
|
| 884 |
- Moved to pre3 in sync with Novell releases
|
| 885 |
|
| 886 |
* Wed Dec 10 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-10.pre2.20081215svn121507
|
| 887 |
- removed the winform patch
|
| 888 |
- move to svn
|
| 889 |
- removed files no longer built
|
| 890 |
- removed vbnc manual
|
| 891 |
|
| 892 |
* Tue Dec 09 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-9.pre2
|
| 893 |
- remove the seds and just use patches
|
| 894 |
|
| 895 |
* Fri Dec 05 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-8.pre2
|
| 896 |
- Bump to 2.2 preview 2
|
| 897 |
- More sed fixes
|
| 898 |
|
| 899 |
* Thu Dec 04 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-7.pre1
|
| 900 |
- Add fix so that winforms doesn't need libgdiplus-devel
|
| 901 |
- Add fix so the sed script works correctly on x86_64
|
| 902 |
|
| 903 |
* Sun Nov 30 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-6.pre1
|
| 904 |
- missed a sed invocation
|
| 905 |
|
| 906 |
* Sun Nov 30 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-5.pre1
|
| 907 |
- new patch for winforms problems
|
| 908 |
- reorganised patches
|
| 909 |
- use sed to fix the incorrect libdir issues - experimental!!!!
|
| 910 |
|
| 911 |
* Wed Nov 26 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-4.pre1
|
| 912 |
- mono.pc libfile fix
|
| 913 |
|
| 914 |
* Tue Nov 25 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-2.pre1
|
| 915 |
- fix monodoc libdir issues
|
| 916 |
|
| 917 |
* Tue Nov 25 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-1.1.pre1
|
| 918 |
- rebuild
|
| 919 |
|
| 920 |
* Mon Nov 18 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.2-1.pre1
|
| 921 |
- Bump to 2.2 preview 1
|
| 922 |
- remove old patches
|
| 923 |
- add build information for monodoc
|
| 924 |
|
| 925 |
* Sun Nov 02 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0.13
|
| 926 |
- Add in mono-api-diff and mono-api-info
|
| 927 |
|
| 928 |
* Fri Oct 24 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0.12
|
| 929 |
- Update to 2.0.1
|
| 930 |
- remove selinux patch
|
| 931 |
- remove s390 disable
|
| 932 |
|
| 933 |
* Tue Oct 21 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-11.2
|
| 934 |
- fixed no ownership of etc-mono-mconfig directory
|
| 935 |
|
| 936 |
* Sat Oct 18 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-11.1
|
| 937 |
- fix the last fix...
|
| 938 |
|
| 939 |
* Thu Oct 16 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-11
|
| 940 |
- correct libdir in mono-cairo.pc file (BZ 467294)
|
| 941 |
|
| 942 |
* Fri Oct 03 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-10
|
| 943 |
- bump to RC4
|
| 944 |
|
| 945 |
* Sun Sep 28 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-9
|
| 946 |
- backported binaryserialisation and datatable patches
|
| 947 |
- backported stringreplace optimisation
|
| 948 |
- bump to RC3
|
| 949 |
|
| 950 |
* Thu Sep 18 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-8
|
| 951 |
- MimeIcon patch added
|
| 952 |
|
| 953 |
* Wed Sep 17 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-7
|
| 954 |
- TableLayoutSettings fix (bz 462005)
|
| 955 |
|
| 956 |
* Tue Sep 09 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-6
|
| 957 |
- Bump to RC1
|
| 958 |
- Removed XIM patch
|
| 959 |
- Added additional configure options
|
| 960 |
- Fixed spec file
|
| 961 |
|
| 962 |
* Fri Aug 29 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-5
|
| 963 |
- moved libMonoPosixHelper back to the main package
|
| 964 |
|
| 965 |
* Fri Aug 22 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-4
|
| 966 |
- fix for XIM with en_GB.UTF locale plus others
|
| 967 |
|
| 968 |
* Mon Aug 18 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-3
|
| 969 |
- removed canna-devel requirements
|
| 970 |
- bump to preview 2
|
| 971 |
- removed further bits for moonlight
|
| 972 |
|
| 973 |
* Sun Aug 17 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-2
|
| 974 |
- added Canna-devel BR and R Canna for mwf
|
| 975 |
- removed the build of moonlight parts
|
| 976 |
- disable-static on configure
|
| 977 |
|
| 978 |
* Sat Aug 02 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 2.0-1
|
| 979 |
- bump to 2.0 preview 1
|
| 980 |
- alter licence to MIT only
|
| 981 |
- renamed and clean up patch files
|
| 982 |
- spec file fixes
|
| 983 |
|
| 984 |
* Mon Apr 21 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 1.9.1-2
|
| 985 |
- pc file fixes
|
| 986 |
|
| 987 |
* Tue Apr 15 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 1.9.1-1
|
| 988 |
- bump to new beta
|
| 989 |
|
| 990 |
* Fri Apr 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.9-7
|
| 991 |
- since we're not bootstrapping with prebuilt binaries, BR: mono-core
|
| 992 |
|
| 993 |
* Fri Apr 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.9-6
|
| 994 |
- Remove prebuilt binaries
|
| 995 |
|
| 996 |
* Wed Apr 09 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.9-5
|
| 997 |
- fix licensing
|
| 998 |
|
| 999 |
* Mon Apr 07 2008 Xavier Lamien <lxtnow@gmail.com> - 1.9-4
|
| 1000 |
- Added undeclared function bug #xxxx.
|
| 1001 |
|
| 1002 |
* Mon Mar 17 2008 Xavier Lamien <lxtnow@gmail.com> - 1.9-3
|
| 1003 |
- Added require on mono-nunit-devel
|
| 1004 |
|
| 1005 |
* Thu Mar 06 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 1.9-2
|
| 1006 |
- bump to preview 4
|
| 1007 |
|
| 1008 |
* Mon Feb 04 2008 Paul F. Johnson <paul@all-the-johnsons.co.uk> 1.9-1
|
| 1009 |
- bump to preview 2
|
| 1010 |
- spec file fixes
|
| 1011 |
|
| 1012 |
* Wed Dec 19 2007 Paul F. Johnson <paul@all-the-johnsons.co.uk> 1.2.6-6.1
|
| 1013 |
- added BR libunwind-devel for ia64 (bz426180)
|
| 1014 |
- fix for LIBDIR problem
|
| 1015 |
|
| 1016 |
* Tue Dec 16 2007 Paul F. Johnson <paul@all-the-johnsons.co.uk> 1.2.6-4
|
| 1017 |
- bump new version
|
| 1018 |
- removed more redundant bits
|
| 1019 |
- url fix
|
| 1020 |
|
| 1021 |
* Thu Nov 22 2007 Paul F. Johnson <paul@all-the-johnsons.co.uk> 1.2.6-1
|
| 1022 |
- bump to preview 2
|
| 1023 |
- removed redundant bits of the spec file
|
| 1024 |
|
| 1025 |
* Thu Nov 15 2007 Paul F. Johnson <paul@all-the-johnsons.co.uk> 1.2.5.2-2
|
| 1026 |
- Added R libgdiplus to the winforms package. Fixes BZ 380131
|
| 1027 |
|
| 1028 |
* Sun Nov 11 2007 Paul F. Johnson <paul@all-the-johnsons.co.uk> 1.2.5.2-1
|
| 1029 |
- Bump to next version
|
| 1030 |
|
| 1031 |
* Fri Nov 9 2007 Ray Strode <rstrode@redhat.com> - 1.2.5.1-4
|
| 1032 |
- Apply dropped patch (bug 371781), found by Eskil Bylund
|
| 1033 |
|
| 1034 |
* Wed Nov 7 2007 Alexander Larsson <alexl@redhat.com> - 1.2.5.1-3
|
| 1035 |
- Fix overflow in Mono.Math.BigInteger class (#367551)
|
| 1036 |
CVE-2007-5197
|
| 1037 |
|
| 1038 |
* Fri Oct 05 2007 Paul F. Johnson <paul@all-the-johnsons.co.uk> - 1.2.5.1-1
|
| 1039 |
- bump
|
| 1040 |
- added new parts (mono-linker, resgen and mono-cecil)
|
| 1041 |
|
| 1042 |
* Thu Apr 21 2007 Paul F. Johnson <paul@all-the-johnsons.co.uk> - 1.2.4-1
|
| 1043 |
- update from 1.2.3
|
| 1044 |
|
| 1045 |
* Sun Apr 1 2007 Matthias Clasen <mclasen@redhat.com> - 1.2.3-3
|
| 1046 |
- Fix a spec format error (#210633)
|
| 1047 |
|
| 1048 |
* Thu Mar 29 2007 Alexander Larsson <alexl@redhat.com> - 1.2.3-2
|
| 1049 |
- Also build on alpha (#232268)
|
| 1050 |
|
| 1051 |
* Thu Feb 8 2007 Alexander Larsson <alexl@redhat.com> - 1.2.3-1
|
| 1052 |
- update to 1.2.3
|
| 1053 |
|
| 1054 |
* Mon Dec 4 2006 Alexander Larsson <alexl@redhat.com> - 1.2.2-1
|
| 1055 |
- update to 1.2.2
|
| 1056 |
- Mark config files as noreplace
|
| 1057 |
- Require pkgconfig in mono-devel
|
| 1058 |
- Run ldconfig in post/postun
|
| 1059 |
|
| 1060 |
* Thu Oct 12 2006 Alexander Larsson <alexl@redhat.com> - 1.1.17.1-3
|
| 1061 |
- Don't use slow TLS approach under xen (#210001)
|
| 1062 |
|
| 1063 |
* Fri Oct 6 2006 Caolan McNamara <caolanm@redhat.com> - 1.1.17.1-2
|
| 1064 |
- CVE-2006-5072
|
| 1065 |
|
| 1066 |
* Mon Sep 4 2006 Alexander Larsson <alexl@redhat.com> - 1.1.17.1-1
|
| 1067 |
- update to 1.1.17.1
|
| 1068 |
- Add one file nunit-devel package due to packaging guidelines (#205056)
|
| 1069 |
|
| 1070 |
* Fri Aug 18 2006 Alexander Larsson <alexl@redhat.com> - 1.1.16.1-2
|
| 1071 |
- Move gac to libdir to be multilib compat
|
| 1072 |
- rename mono-devtools back to mono-devel
|
| 1073 |
- kill mono-lib and mono-lib-devel
|
| 1074 |
|
| 1075 |
* Mon Aug 10 2006 Alexander Larsson <alexl@redhat.com> - 1.1.16.1-1
|
| 1076 |
- Update to 1.1.16.1
|
| 1077 |
- Split out mono libs and devel headers to fix lib64 conflicts (#199790)
|
| 1078 |
|
| 1079 |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.1.16-1.1
|
| 1080 |
- rebuild
|
| 1081 |
|
| 1082 |
* Fri Jul 7 2006 Alexander Larsson <alexl@redhat.com> - 1.1.16-1
|
| 1083 |
- update to 1.1.16
|
| 1084 |
|
| 1085 |
* Wed Jun 7 2006 Alexander Larsson <alexl@redhat.com> - 1.1.15-1
|
| 1086 |
- Disabled s390 & s390x for now due to build failure
|
| 1087 |
- Update to 1.1.15
|
| 1088 |
|
| 1089 |
* Wed Apr 26 2006 Alexander Larsson <alexl@redhat.com> - 1.1.13.7-2
|
| 1090 |
- Update to 1.1.13.7
|
| 1091 |
|
| 1092 |
* Fri Mar 10 2006 Bill Nottingham <notting@redhat.com> - 1.1.13.4-2
|
| 1093 |
- rebuild for ppc TLS issue (#184446)
|
| 1094 |
|
| 1095 |
* Fri Mar 3 2006 Christopher Aillon <caillon@redhat.com> - 1.1.13.4-1
|
| 1096 |
- Update to 1.1.13.4
|
| 1097 |
- Add patch so mono doesn't segfault on PPC SMP machines
|
| 1098 |
- Minor spec cleanup
|
| 1099 |
|
| 1100 |
* Thu Mar 2 2006 Ray Strode <rstrode@redhat.com> - 1.1.13.2-5
|
| 1101 |
- Updated patch from Jakub (1.1.13.2-3 to 1.1.13.2-5 are
|
| 1102 |
for bug 182965)
|
| 1103 |
|
| 1104 |
* Tue Feb 28 2006 Ray Strode <rstrode@redhat.com> - 1.1.13.2-4
|
| 1105 |
- Updated patch from Paolo Molaro <lupus@ximian.com>
|
| 1106 |
|
| 1107 |
* Mon Feb 27 2006 Ray Strode <rstrode@redhat.com> - 1.1.13.2-3
|
| 1108 |
- Patch from Jakub to make work with SELinux better
|
| 1109 |
|
| 1110 |
* Sun Feb 12 2006 Christopher Aillon <caillon@redhat.com> - 1.1.13.2-2
|
| 1111 |
- Rebuild
|
| 1112 |
|
| 1113 |
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.1.13.2-1.1
|
| 1114 |
- rebuilt for new gcc4.1 snapshot and glibc changes
|
| 1115 |
|
| 1116 |
* Tue Jan 31 2006 Christopher Aillon <caillon@redhat.com> - 1.1.13.2-1
|
| 1117 |
- Update to 1.1.13.2
|
| 1118 |
|
| 1119 |
* Fri Jan 13 2006 Alexander Larsson <alexl@redhat.com> - 1.1.13-1
|
| 1120 |
- Update to 1.13
|
| 1121 |
- Add libgdiplus dep to mono-core
|
| 1122 |
- Add s390x to build
|
| 1123 |
|
| 1124 |
* Mon Jan 9 2006 Alexander Larsson <alexl@redhat.com> - 1.1.12.1-1
|
| 1125 |
- Update to 1.1.12.1
|
| 1126 |
|
| 1127 |
* Mon Jan 9 2006 Alexander Larsson <alexl@redhat.com> - 1.1.10-4
|
| 1128 |
- rebuild
|
| 1129 |
|
| 1130 |
* Fri Nov 18 2005 Alexander Larsson <alexl@redhat.com> 1.1.10-3
|
| 1131 |
- Disable s390 due to some build failure
|
| 1132 |
|
| 1133 |
* Thu Nov 17 2005 Alexander Larsson <alexl@redhat.com> 1.1.10-2
|
| 1134 |
- Build on s390 and x86-64 now
|
| 1135 |
|
| 1136 |
* Tue Nov 15 2005 Alexander Larsson <alexl@redhat.com> - 1.1.10-1
|
| 1137 |
- Initial version
|