Package Details: mono-git 6.12.0.205.r1487.89f1d3cc22f-1

Git Clone URL: https://aur.archlinux.org/mono-git.git (read-only, click to copy)
Package Base: mono-git
Description: Free implementation of the .NET platform including runtime and compiler
Upstream URL: http://www.mono-project.com/
Keywords: mono
Licenses: GPL, BSD, MPL, LGPL2.1, custom=MITX11, custom=MSPL
Conflicts: mono, monodoc
Provides: mono, monodoc
Submitter: Ziemas
Maintainer: LinuxUserGD
Last Packager: LinuxUserGD
Votes: 13
Popularity: 0.000000
First Submitted: 2011-03-25 16:52 (UTC)
Last Updated: 2023-12-20 16:02 (UTC)

Required by (262)

Sources (23)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

carlosal1015 commented on 2021-12-07 02:47 (UTC)

Thank you @hugegameartgd, now is working and takes 45 minutes to build in GitLab CI pipeline.

LinuxUserGD commented on 2021-12-07 00:41 (UTC)

@carlosal1015 Should be fixed now, see https://aur.archlinux.org/cgit/aur.git/commit/?h=mono-git&id=fccbec145e0856b7ad66589c674ce989e6cb2e6e

carlosal1015 commented on 2021-12-06 14:48 (UTC)

Hi, I have the following message error. I do not know.

Submodule 'external/llvm-project' (https://github.com/dotnet/llvm-project.git) registered for path 'external/llvm-project'
Cloning into '/tmp/makepkg/mono-git/src/mono/external/llvm-project'...
done.
From /tmp/makepkg/mono-git/src/llvm-project
 * branch                    7dfdea1267f0a40955e02567dcbcd1bcb987e825 -> FETCH_HEAD
Submodule path 'external/llvm-project': checked out '7dfdea1267f0a40955e02567dcbcd1bcb987e825'
error: pathspec 'external/helix-binaries' did not match any file(s) known to git
==> ERROR: A failure occurred in prepare().
    Aborting...

LinuxUserGD commented on 2020-07-09 13:01 (UTC)

This package has been flagged out of date but because it's VCS and cloned from git, it should always be mono=${pkgver} which is the latest dev source possible. Correct me if I'm wrong but it should be still valid without a rebuild, only if there are any issues with the PKGBUILD itself.

LinuxUserGD commented on 2020-03-14 15:49 (UTC) (edited on 2020-03-14 15:54 (UTC) by LinuxUserGD)

@FabioLolix Thanks for adding me as co-maintainer, I tried to contact you but now just pushed the diff below and some second fix. Last patch in provides ensures that msbuild-git detects correct version of mono. Not sure how it should correctly look like in .srcinfo though.

LinuxUserGD commented on 2019-12-18 17:28 (UTC) (edited on 2020-01-02 19:33 (UTC) by LinuxUserGD)

@RononDex

diff --git a/PKGBUILD b/PKGBUILD
index cb8a9f3..71b1560 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@

 pkgname='mono-git'
 _gitname='mono'
-pkgver=5.18.0.225.r1530.d1a5fa3783b
+pkgver=6.6.0.161.r1685.ff6294d2311
 pkgrel=1
 pkgdesc='Free implementation of the .NET platform including runtime and compiler'
 url='http://www.mono-project.com/'
@@ -36,13 +36,14 @@ source=(
   'git+https://github.com/mono/xunit-binaries.git'
   'git+https://github.com/mono/api-doc-tools.git'
   'git+https://github.com/mono/api-snapshot.git'
-  'git+https://github.com/mono/llvm.git#branch=release_60'
+  'git+https://github.com/dotnet/llvm-project.git'
   'git+https://github.com/mono/helix-binaries.git'
+  'git+https://github.com/Unity-Technologies/bdwgc.git'
   'mono.binfmt.d'
 )
 sha256sums=(
   'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP'
-  'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP'
+  'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP'
   '9a657fc153ef4ce23bf5fc369a26bf4a124e9304bde3744d04c583c54ca47425'
 )

@@ -80,8 +81,9 @@ prepare() {
     'xunit-binaries'
     'api-doc-tools'
     'api-snapshot'
-    'llvm'
+    'llvm-project'
     'helix-binaries'
+    'bdwgc'
   )

   for module in "${submodules[@]}"; do
@@ -139,12 +141,12 @@ package() {

   # Fix .pc file to be able to request mono on what it depends, fixes
   # go-oo build:
-  sed -i -e           \
-    "s:/2.0/:/4.5/:g" \
-    "${pkgdir}/usr/lib/pkgconfig/mono-nunit.pc"
-  sed -i -e                 \
-    "s:#Requires:Requires:" \
-    "${pkgdir}/usr/lib/pkgconfig/mono.pc"
+  #sed -i -e           \
+    #"s:/2.0/:/4.5/:g" \
+    #"${pkgdir}/usr/lib/pkgconfig/mono-nunit.pc"
+  #sed -i -e                 \
+    #"s:#Requires:Requires:" \
+    #"${pkgdir}/usr/lib/pkgconfig/mono.pc"
 }

 # vim: ts=2 sw=2 et:

RononDex commented on 2019-11-26 08:43 (UTC) (edited on 2019-11-26 08:43 (UTC) by RononDex)

I keep getting this error when trying to build this package: error: pathspec 'external/llvm' did not match any file(s) known to git

PedroHLC commented on 2019-08-29 12:30 (UTC)

@hugegameartgd for now, delete that line...

LinuxUserGD commented on 2019-08-28 15:03 (UTC)

@PedroHLC I get the same error. Is there any fix available?

PedroHLC commented on 2019-08-22 12:23 (UTC)

sed: can't read /home/main-builder/pkgwork/pkg/mono-git/usr/lib/pkgconfig/mono-nunit.pc: No such file or directory

In extra they don't seem to do these seds, are they really necessary?