Skip to content

Instantly share code, notes, and snippets.

View directhex's full-sized avatar
🐝
Gosh I hope there are no bees around here

Jo Shields directhex

🐝
Gosh I hope there are no bees around here
View GitHub Profile
root@breakfast:/tmp# /usr/bin/mock --init --dnf -r /etc/mock/fedora-29-x86_64.cfg
INFO: mock.py version 1.4.13-0xamarin1 starting (python version = 3.5.2)...
Start: init plugins
WARNING: specified 'pigz' as the root cache compress program but not available; using gzip
INFO: selinux disabled
Finish: init plugins
Start: run
Start: clean chroot
Finish: clean chroot
Start: chroot init
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="cakes" value="/tmp/cakes" />
</packageSources>
<disabledPackageSources>
<add key="nuget.org" value="true" />
</disabledPackageSources>
</configuration>
class GtkSharp3 < Formula
homepage "http://www.mono-project.com/GtkSharp"
url "https://github.com/mono/gtk-sharp/archive/2.99.3.tar.gz"
version "2.99.3"
sha256 "6212a59809951e032f6d2712d5a6680203d0d6869f1c09127c4b9fb3c35ad384"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "pkg-config"
directhex@flame:~/Projects/monodevelop-hackweek$ make run
cd main && make run
make[1]: Entering directory '/home/directhex/Projects/monodevelop-hackweek/main'
MONODEVELOP_LOCALE_PATH="/home/directhex/Projects/monodevelop-hackweek/main/build/locale" UBUNTU_MENUPROXY=0 LIBOVERLAY_SCROLLBAR=0 exec -a "monodevelop" /usr/bin/mono-sgen --debug /home/directhex/Projects/monodevelop-hackweek/main/build/bin/MonoDevelop.exe --no-redirect
INFO [2018-07-26 16:15:16Z]: Starting MonoDevelop 7.7 Preview (7.7)
INFO [2018-07-26 16:15:16Z]: Build Information
6297e23bb508db28e41df042a255aef1d95a389d
INFO [2018-07-26 16:15:16Z]: Running on Mono 5.14.0.167 (tarball Sun Jul 15 09:13:24 UTC 2018) (64-bit)
INFO [2018-07-26 16:15:16Z]: Operating System: Linux
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86
cd main
external\nuget-binary\nuget.exe restore -DisableParallelProcessing
msbuild /t:Restore /p:RestoreDisableParallel=true external\RefactoringEssentials\RefactoringEssentials\RefactoringEssentials.csproj
external\fsharpbinding\.paket\paket.bootstrapper.exe
cd external\fsharpbinding\
.paket\paket.exe restore
cd %WORKSPACE%\main
msbuild /p:Configuration=DebugWin32 /p:Platform="Any CPU" Main.sln
directhex@flame:~/Projects/monodroid-samples/Phoneword$ msbuild /t:signAndroidPackage /p:androidSdkDirectory=/home/directhex/androidsdk
Microsoft (R) Build Engine version 15.6.0.0 ( Fri Apr 6 15:55:10 UTC 2018) for Mono
Copyright (C) Microsoft Corporation. All rights reserved.
Build started 03/05/2018 13:06:45.
Project "/home/directhex/Projects/monodroid-samples/Phoneword/Phoneword.sln" on node 1 (signAndroidPackage target(s)).
ValidateSolutionConfiguration:
Building solution configuration "Debug|Any CPU".
Project "/home/directhex/Projects/monodroid-samples/Phoneword/Phoneword.sln" (1) is building "/home/directhex/Projects/monodroid-samples/Phoneword/Phoneword/Phoneword.csproj" (2) on node 1 (signAndroidPackage target(s)).
_CreatePropertiesCache:
#!/bin/sh
set -e
# Automatically added by dh_monoaot
if [ "$1" = "configure" ]
then
MONOARCH=`mono --version | grep Architecture | sed 's/.*: //' | sed 's/el,.*//'`
mkdir -p /usr/lib/mono/aot-cache/${MONOARCH}/
/usr/bin/mono --aot=outfile=/usr/lib/mono/aot-cache/${MONOARCH}/`basename /usr/lib/mono/4.5/mscorlib.dll.so` -O=all /usr/lib/mono/4.5/mscorlib.dll > /dev/null 2>&1 || true
fi
# End automatically added section
--- /home/directhex/Projects/mono/external/boringssl/crypto/sha/asm/sha512-armv4.pl 2016-11-10 09:06:52.505845000 -0500
+++ crypto/fipsmodule/sha/asm/sha512-armv4.pl 2018-04-09 13:37:28.119648976 -0400
@@ -201,6 +208,10 @@
# define VFP_ABI_POP
#endif
+@ Silence ARMv8 deprecated IT instruction warnings. This file is used by both
+@ ARMv7 and ARMv8 processors and does not use ARMv8 instructions.
+.arch armv7-a
+
Exception Type:
System.EntryPointNotFoundException
Exception Message:
ige_mac_menu_set_global_key_handler_enabled
Exception StackTrace:
at (wrapper managed-to-native) IgeMacIntegration.IgeMacMenu:ige_mac_menu_set_global_key_handler_enabled (bool)
at IgeMacIntegration.IgeMacMenu.set_GlobalKeyHandlerEnabled (System.Boolean value) [0x00001] in <759e3226a68c4d99981055802cb0cde6>:0
at Smuxi.Frontend.Gnome.MenuWidget..ctor (Gtk.Window parent, Smuxi.Frontend.Gnome.ChatViewManager chatViewManager) [0x00261] in <759e3226a68c4d99981055802cb0cde6>:0
directhex@flame:~/Projects/consoleproject/consoleproject$ cat Program.cs
using System;
namespace consoleproject
{
class MainClass
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");