Date: Saturday, October 6, 2012 @ 19:53:27
  Author: tomegun
Revision: 168257

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  mono/repos/testing-i686/
  mono/repos/testing-i686/PKGBUILD
    (from rev 168256, mono/trunk/PKGBUILD)
  mono/repos/testing-i686/bug434892.patch
    (from rev 168256, mono/trunk/bug434892.patch)
  mono/repos/testing-i686/mini_amd64.patch
    (from rev 168256, mono/trunk/mini_amd64.patch)
  mono/repos/testing-i686/mono.binfmt.d
    (from rev 168256, mono/trunk/mono.binfmt.d)
  mono/repos/testing-x86_64/
  mono/repos/testing-x86_64/PKGBUILD
    (from rev 168256, mono/trunk/PKGBUILD)
  mono/repos/testing-x86_64/bug434892.patch
    (from rev 168256, mono/trunk/bug434892.patch)
  mono/repos/testing-x86_64/mini_amd64.patch
    (from rev 168256, mono/trunk/mini_amd64.patch)
  mono/repos/testing-x86_64/mono.binfmt.d
    (from rev 168256, mono/trunk/mono.binfmt.d)

---------------------------------+
 testing-i686/PKGBUILD           |   52 ++++++++++++++++++++++++++++++++++++++
 testing-i686/bug434892.patch    |   11 ++++++++
 testing-i686/mini_amd64.patch   |   13 +++++++++
 testing-i686/mono.binfmt.d      |    1 
 testing-x86_64/PKGBUILD         |   52 ++++++++++++++++++++++++++++++++++++++
 testing-x86_64/bug434892.patch  |   11 ++++++++
 testing-x86_64/mini_amd64.patch |   13 +++++++++
 testing-x86_64/mono.binfmt.d    |    1 
 8 files changed, 154 insertions(+)

Copied: mono/repos/testing-i686/PKGBUILD (from rev 168256, mono/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD                               (rev 0)
+++ testing-i686/PKGBUILD       2012-10-06 23:53:27 UTC (rev 168257)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Daniel Isenmann <[email protected]>
+# Contributor: Brice Carpentier <[email protected]>
+
+pkgname=mono
+pkgver=2.10.8
+pkgrel=2
+pkgdesc="Free implementation of the .NET platform including runtime and 
compiler"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL2' 'MPL' 'custom:MITX11')
+url="http://www.mono-project.com/";
+depends=('zlib' 'libgdiplus>=2.10' 'sh')
+makedepends=('pkgconfig')
+options=('!libtool' '!makeflags')
+provides=('monodoc')
+conflicts=('monodoc')
+source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz
+        mono.binfmt.d)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # build mono
+  ./configure --prefix=/usr --sysconfdir=/etc \
+              --with-libgdiplus=installed 
+  make || return 1
+
+  # build jay
+  cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
+  make || return 1
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install || return 1
+
+  # install jay
+  cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
+  make DESTDIR=${pkgdir} prefix=/usr INSTALL=../../install-sh install
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # install binfmt conf file and pathes
+  install -D -m644 ${srcdir}/mono.binfmt.d ${pkgdir}/usr/lib/binfmt.d/mono.conf
+
+  #install license
+  mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 mcs/MIT.X11 ${pkgdir}/usr/share/licenses/${pkgname}/
+  
+  #fix .pc file to be able to request mono on what it depends, fixes #go-oo 
build
+  sed -i -e "s:#Requires:Requires:" ${pkgdir}/usr/lib/pkgconfig/mono.pc
+}
+md5sums=('411a2d9bcfc37a61eb9aedba88b40533'
+         'b9ef8a65fea497acf176cca16c1e2402')

Copied: mono/repos/testing-i686/bug434892.patch (from rev 168256, 
mono/trunk/bug434892.patch)
===================================================================
--- testing-i686/bug434892.patch                                (rev 0)
+++ testing-i686/bug434892.patch        2012-10-06 23:53:27 UTC (rev 168257)
@@ -0,0 +1,11 @@
+--- 
trunk/mcs/class/System.Web.Services/System.Web.Services.Description/BasicProfileChecker.cs
 2008/07/01 20:17:46     107006
++++ 
trunk/mcs/class/System.Web.Services/System.Web.Services.Description/BasicProfileChecker.cs
 2008/10/28 09:32:46     117243
+@@ -177,7 +177,7 @@
+                               foreach (OperationMessage om in op.Messages) {
+                                       Message msg = ctx.Services.GetMessage 
(om.Message);
+                                       foreach (MessagePart part in msg.Parts)
+-                                              parts.Add (part,part);
++                                              parts [part] = part; // do not 
use Add() - there could be the same MessagePart instance.
+                               }
+                       }
+                       

Copied: mono/repos/testing-i686/mini_amd64.patch (from rev 168256, 
mono/trunk/mini_amd64.patch)
===================================================================
--- testing-i686/mini_amd64.patch                               (rev 0)
+++ testing-i686/mini_amd64.patch       2012-10-06 23:53:27 UTC (rev 168257)
@@ -0,0 +1,13 @@
+--- mono/mini/mini-amd64.c     2009-03-19 21:08:18 UTC (rev 129824)
++++ mono/mini/mini-amd64.c     2009-03-19 21:09:53 UTC (rev 129825)
+@@ -1009,7 +1009,7 @@
+               locals_size += mono_type_size (ins->inst_vtype, &ialign);
+       }
+ 
+-      if ((cfg->num_varinfo > 10000) || (locals_size >= (1 << 15))) {
++      if ((cfg->num_varinfo > 5000) || (locals_size >= (1 << 15)) || 
(header->code_size > 110000)) {
+               /* Avoid hitting the stack_alloc_size < (1 << 16) assertion in 
emit_epilog () */
+               cfg->arch.omit_fp = FALSE;
+       }
+
+                       

Copied: mono/repos/testing-i686/mono.binfmt.d (from rev 168256, 
mono/trunk/mono.binfmt.d)
===================================================================
--- testing-i686/mono.binfmt.d                          (rev 0)
+++ testing-i686/mono.binfmt.d  2012-10-06 23:53:27 UTC (rev 168257)
@@ -0,0 +1 @@
+:CLR:M::MZ::/usr/bin/mono:

Copied: mono/repos/testing-x86_64/PKGBUILD (from rev 168256, 
mono/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD                             (rev 0)
+++ testing-x86_64/PKGBUILD     2012-10-06 23:53:27 UTC (rev 168257)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Daniel Isenmann <[email protected]>
+# Contributor: Brice Carpentier <[email protected]>
+
+pkgname=mono
+pkgver=2.10.8
+pkgrel=2
+pkgdesc="Free implementation of the .NET platform including runtime and 
compiler"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL2' 'MPL' 'custom:MITX11')
+url="http://www.mono-project.com/";
+depends=('zlib' 'libgdiplus>=2.10' 'sh')
+makedepends=('pkgconfig')
+options=('!libtool' '!makeflags')
+provides=('monodoc')
+conflicts=('monodoc')
+source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz
+        mono.binfmt.d)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # build mono
+  ./configure --prefix=/usr --sysconfdir=/etc \
+              --with-libgdiplus=installed 
+  make || return 1
+
+  # build jay
+  cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
+  make || return 1
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install || return 1
+
+  # install jay
+  cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
+  make DESTDIR=${pkgdir} prefix=/usr INSTALL=../../install-sh install
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # install binfmt conf file and pathes
+  install -D -m644 ${srcdir}/mono.binfmt.d ${pkgdir}/usr/lib/binfmt.d/mono.conf
+
+  #install license
+  mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 mcs/MIT.X11 ${pkgdir}/usr/share/licenses/${pkgname}/
+  
+  #fix .pc file to be able to request mono on what it depends, fixes #go-oo 
build
+  sed -i -e "s:#Requires:Requires:" ${pkgdir}/usr/lib/pkgconfig/mono.pc
+}
+md5sums=('411a2d9bcfc37a61eb9aedba88b40533'
+         'b9ef8a65fea497acf176cca16c1e2402')

Copied: mono/repos/testing-x86_64/bug434892.patch (from rev 168256, 
mono/trunk/bug434892.patch)
===================================================================
--- testing-x86_64/bug434892.patch                              (rev 0)
+++ testing-x86_64/bug434892.patch      2012-10-06 23:53:27 UTC (rev 168257)
@@ -0,0 +1,11 @@
+--- 
trunk/mcs/class/System.Web.Services/System.Web.Services.Description/BasicProfileChecker.cs
 2008/07/01 20:17:46     107006
++++ 
trunk/mcs/class/System.Web.Services/System.Web.Services.Description/BasicProfileChecker.cs
 2008/10/28 09:32:46     117243
+@@ -177,7 +177,7 @@
+                               foreach (OperationMessage om in op.Messages) {
+                                       Message msg = ctx.Services.GetMessage 
(om.Message);
+                                       foreach (MessagePart part in msg.Parts)
+-                                              parts.Add (part,part);
++                                              parts [part] = part; // do not 
use Add() - there could be the same MessagePart instance.
+                               }
+                       }
+                       

Copied: mono/repos/testing-x86_64/mini_amd64.patch (from rev 168256, 
mono/trunk/mini_amd64.patch)
===================================================================
--- testing-x86_64/mini_amd64.patch                             (rev 0)
+++ testing-x86_64/mini_amd64.patch     2012-10-06 23:53:27 UTC (rev 168257)
@@ -0,0 +1,13 @@
+--- mono/mini/mini-amd64.c     2009-03-19 21:08:18 UTC (rev 129824)
++++ mono/mini/mini-amd64.c     2009-03-19 21:09:53 UTC (rev 129825)
+@@ -1009,7 +1009,7 @@
+               locals_size += mono_type_size (ins->inst_vtype, &ialign);
+       }
+ 
+-      if ((cfg->num_varinfo > 10000) || (locals_size >= (1 << 15))) {
++      if ((cfg->num_varinfo > 5000) || (locals_size >= (1 << 15)) || 
(header->code_size > 110000)) {
+               /* Avoid hitting the stack_alloc_size < (1 << 16) assertion in 
emit_epilog () */
+               cfg->arch.omit_fp = FALSE;
+       }
+
+                       

Copied: mono/repos/testing-x86_64/mono.binfmt.d (from rev 168256, 
mono/trunk/mono.binfmt.d)
===================================================================
--- testing-x86_64/mono.binfmt.d                                (rev 0)
+++ testing-x86_64/mono.binfmt.d        2012-10-06 23:53:27 UTC (rev 168257)
@@ -0,0 +1 @@
+:CLR:M::MZ::/usr/bin/mono:

Reply via email to