Re: Mono Develop 5.0.1_1 Not Launching?
So a search on GitHub of FileSystemWatcher yields this: https://github.com/mono/monodevelop/search?utf8=%E2%9C%93&q=FileSystemWatcher SO There seems to be something called *MonoExecutionParameters *that has an option called ManagedWatcher with the description of: "When set, System.IO.FileSystemWatcher will use the default managed implementation (slow)." If I can figure out how to set that, perhaps I can at least get through this problem and load MonoDevelop and work backwards from there. Then I can look at the two candidates: Logging and Workbenches. Interestingly, IDEStartup.Main() initializes it's logging outside of a try catch. Night, Russ On Sun, Aug 9, 2015 at 11:37 PM, Russell Haley wrote: > Very insightful. Thank you I have something to move forward with. There > also seems to be another little clue: The "Welcome Page Updated" info > message is comming from WelcomePageNewsFeed.cs, So I need to find where > that is loaded and look for a filewatcher somewhere after that. > > Thanks > > Russ > > On Sun, Aug 9, 2015 at 1:30 AM, Ivan Radovanovic > wrote: > >> On 08/09/15 10:17, Russell Haley napisa: >> >>> The REAL error is this: >>> [ERROR] FATAL UNHANDLED EXCEPTION: System.IO.IOException: persistent >>> kevent() error, error code = '22' >>>at System.IO.KqueueMonitor.Monitor () [0x0] in >> unknown>:0 >>>at System.IO.KqueueMonitor.DoMonitor () [0x0] in >> unknown>:0 >>> >>> I'm still stuck on this. I have no idea where KqueueMonitor is being >>> called >>> from. Any input would be helpful. >>> >>> Thanks, >>> >>> Russ >>> >>> On Mon, Aug 3, 2015 at 11:41 PM, Russell Haley >>> wrote: >>> >>> Okay, last post, I promise. I need some sleep! So what I reported previously is not a real issue ERROR [2015-08-03 22:24:30Z]: GLib-Critical: Source ID 2077 was not found when attempting to remove it Stack trace: at GLib.Source.g_source_remove(UInt32 ) at GLib.Source.Remove(UInt32 tag) at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) at GLib.Timeout+TimeoutProxy.Finalize() Is only a warning apparently??? Anyway, are we running an old version of gtk-sharp? Seems to be updated here: https://github.com/mono/gtk-sharp/commit/7ea0c4afaf405df2dfc5a42e098e9023ecc1c51c The REAL error is this: [ERROR] FATAL UNHANDLED EXCEPTION: System.IO.IOException: persistent kevent() error, error code = '22' at System.IO.KqueueMonitor.Monitor () [0x0] in >>> unknown>:0 at System.IO.KqueueMonitor.DoMonitor () [0x0] in >>> unknown>:0 I drilled into KqueueMonitor and found that in the Monitor() routine it throws this exception if it retries three times with no success. '22' is called fromMarshall.GetLastWin32Error, so it could be: 0x0016 ERROR_BAD_COMMAND or 0x0022 ERROR_WRONG_DISK Depending how you interpret '22'. :D Once again, hope I'm helping more than hindering. Goodnight, Russ On Mon, Aug 3, 2015 at 10:30 PM, Russell Haley wrote: Ha! So I worked through it and I installed the following ports: > > p5-XML-LibXML: > cd /usr/ports/textproc/p5-XML-LibXML/ && make install clean > > gtk-sharp20 -> gtk-sharp30 doesn't work! oops > /ports/x11-toolkits/gtk-sharp20/ && make install clean > > gnome-sharp20 > cd /usr/ports/x11-toolkits/gnome-sharp20/ && make install clean -> had > to run REinstall for this one??? > > and finished the build, but I get a runtime error. When running > monodevelop --no-redirect I get this: > > INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.CBinding > INFO [2015-08-03 22:24:26Z]: > [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: > MonoDevelop.CBinding > INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.GtkCore > INFO [2015-08-03 22:24:26Z]: > [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: > MonoDevelop.GtkCore > ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1927 was not > found > when attempting to remove it > Stack trace: > at GLib.Source.g_source_remove(UInt32 ) > at GLib.Source.Remove(UInt32 tag) > at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) > at GLib.Timeout+TimeoutProxy.Finalize() > ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1924 was not > found > when attempting to remove it > Stack trace: > at GLib.Source.g_source_remove(UInt32 ) > at GLib.Source.Remove(UInt32 tag) > at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) > at GLib.Timeout+TimeoutProxy.Finalize() > ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1923 was not > found > when attempting to remove it > > Ad-nausium. NOW I am out of my depth... > >>>
Re: Mono Develop 5.0.1_1 Not Launching?
Very insightful. Thank you I have something to move forward with. There also seems to be another little clue: The "Welcome Page Updated" info message is comming from WelcomePageNewsFeed.cs, So I need to find where that is loaded and look for a filewatcher somewhere after that. Thanks Russ On Sun, Aug 9, 2015 at 1:30 AM, Ivan Radovanovic wrote: > On 08/09/15 10:17, Russell Haley napisa: > >> The REAL error is this: >> [ERROR] FATAL UNHANDLED EXCEPTION: System.IO.IOException: persistent >> kevent() error, error code = '22' >>at System.IO.KqueueMonitor.Monitor () [0x0] in :0 >>at System.IO.KqueueMonitor.DoMonitor () [0x0] in > unknown>:0 >> >> I'm still stuck on this. I have no idea where KqueueMonitor is being >> called >> from. Any input would be helpful. >> >> Thanks, >> >> Russ >> >> On Mon, Aug 3, 2015 at 11:41 PM, Russell Haley >> wrote: >> >> Okay, last post, I promise. I need some sleep! >>> >>> So what I reported previously is not a real issue >>> >>> ERROR [2015-08-03 22:24:30Z]: GLib-Critical: Source ID 2077 was not found >>> when attempting to remove it >>> Stack trace: >>> at GLib.Source.g_source_remove(UInt32 ) >>> at GLib.Source.Remove(UInt32 tag) >>> at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) >>> at GLib.Timeout+TimeoutProxy.Finalize() >>> >>> Is only a warning apparently??? Anyway, are we running an old version of >>> gtk-sharp? Seems to be updated here: >>> >>> >>> https://github.com/mono/gtk-sharp/commit/7ea0c4afaf405df2dfc5a42e098e9023ecc1c51c >>> >>> The REAL error is this: >>> [ERROR] FATAL UNHANDLED EXCEPTION: System.IO.IOException: persistent >>> kevent() error, error code = '22' >>>at System.IO.KqueueMonitor.Monitor () [0x0] in >> unknown>:0 >>>at System.IO.KqueueMonitor.DoMonitor () [0x0] in >> unknown>:0 >>> >>> I drilled into KqueueMonitor and found that in the Monitor() routine it >>> throws this exception if it retries three times with no success. '22' is >>> called fromMarshall.GetLastWin32Error, so it could be: >>> >>> 0x0016 ERROR_BAD_COMMAND >>> >>> or >>> >>> 0x0022 ERROR_WRONG_DISK >>> >>> Depending how you interpret '22'. :D >>> >>> >>> Once again, hope I'm helping more than hindering. >>> >>> Goodnight, >>> >>> Russ >>> >>> On Mon, Aug 3, 2015 at 10:30 PM, Russell Haley >>> wrote: >>> >>> Ha! So I worked through it and I installed the following ports: p5-XML-LibXML: cd /usr/ports/textproc/p5-XML-LibXML/ && make install clean gtk-sharp20 -> gtk-sharp30 doesn't work! oops /ports/x11-toolkits/gtk-sharp20/ && make install clean gnome-sharp20 cd /usr/ports/x11-toolkits/gnome-sharp20/ && make install clean -> had to run REinstall for this one??? and finished the build, but I get a runtime error. When running monodevelop --no-redirect I get this: INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.CBinding INFO [2015-08-03 22:24:26Z]: [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: MonoDevelop.CBinding INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.GtkCore INFO [2015-08-03 22:24:26Z]: [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: MonoDevelop.GtkCore ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1927 was not found when attempting to remove it Stack trace: at GLib.Source.g_source_remove(UInt32 ) at GLib.Source.Remove(UInt32 tag) at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) at GLib.Timeout+TimeoutProxy.Finalize() ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1924 was not found when attempting to remove it Stack trace: at GLib.Source.g_source_remove(UInt32 ) at GLib.Source.Remove(UInt32 tag) at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) at GLib.Timeout+TimeoutProxy.Finalize() ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1923 was not found when attempting to remove it Ad-nausium. NOW I am out of my depth... Yay, I'm helping! :D Russ On Mon, Aug 3, 2015 at 9:35 PM, Russell Haley wrote: Okay, so this is where I am at: > > 1) built mono from /usr/ports/lang/mono (version 4.0.1.28) > 2) downloaded current Monodevelop from github. > 3) Tried to build, but ran into the following issues: > a) *%-recursive: $(CONFIG_MAKE)* -> Doesn't work with make. I called > gmake and got past this. > b) *DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"* -> This > fails in tcsh. Not sure what the repalcement is. Hard coded path got me > past this. > c) Monodevelop/main contains a (generated?) Makefile has a target > called > restore-packages which has the following line: *nuget restore* (or > something like that) It fails for two reasons. > i) it needs to be replaces wi
Re: Mono Develop 5.0.1_1 Not Launching?
On 08/09/15 10:17, Russell Haley napisa: The REAL error is this: [ERROR] FATAL UNHANDLED EXCEPTION: System.IO.IOException: persistent kevent() error, error code = '22' at System.IO.KqueueMonitor.Monitor () [0x0] in :0 at System.IO.KqueueMonitor.DoMonitor () [0x0] in :0 I'm still stuck on this. I have no idea where KqueueMonitor is being called from. Any input would be helpful. Thanks, Russ On Mon, Aug 3, 2015 at 11:41 PM, Russell Haley wrote: Okay, last post, I promise. I need some sleep! So what I reported previously is not a real issue ERROR [2015-08-03 22:24:30Z]: GLib-Critical: Source ID 2077 was not found when attempting to remove it Stack trace: at GLib.Source.g_source_remove(UInt32 ) at GLib.Source.Remove(UInt32 tag) at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) at GLib.Timeout+TimeoutProxy.Finalize() Is only a warning apparently??? Anyway, are we running an old version of gtk-sharp? Seems to be updated here: https://github.com/mono/gtk-sharp/commit/7ea0c4afaf405df2dfc5a42e098e9023ecc1c51c The REAL error is this: [ERROR] FATAL UNHANDLED EXCEPTION: System.IO.IOException: persistent kevent() error, error code = '22' at System.IO.KqueueMonitor.Monitor () [0x0] in :0 at System.IO.KqueueMonitor.DoMonitor () [0x0] in :0 I drilled into KqueueMonitor and found that in the Monitor() routine it throws this exception if it retries three times with no success. '22' is called fromMarshall.GetLastWin32Error, so it could be: 0x0016 ERROR_BAD_COMMAND or 0x0022 ERROR_WRONG_DISK Depending how you interpret '22'. :D Once again, hope I'm helping more than hindering. Goodnight, Russ On Mon, Aug 3, 2015 at 10:30 PM, Russell Haley wrote: Ha! So I worked through it and I installed the following ports: p5-XML-LibXML: cd /usr/ports/textproc/p5-XML-LibXML/ && make install clean gtk-sharp20 -> gtk-sharp30 doesn't work! oops /ports/x11-toolkits/gtk-sharp20/ && make install clean gnome-sharp20 cd /usr/ports/x11-toolkits/gnome-sharp20/ && make install clean -> had to run REinstall for this one??? and finished the build, but I get a runtime error. When running monodevelop --no-redirect I get this: INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.CBinding INFO [2015-08-03 22:24:26Z]: [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: MonoDevelop.CBinding INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.GtkCore INFO [2015-08-03 22:24:26Z]: [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: MonoDevelop.GtkCore ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1927 was not found when attempting to remove it Stack trace: at GLib.Source.g_source_remove(UInt32 ) at GLib.Source.Remove(UInt32 tag) at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) at GLib.Timeout+TimeoutProxy.Finalize() ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1924 was not found when attempting to remove it Stack trace: at GLib.Source.g_source_remove(UInt32 ) at GLib.Source.Remove(UInt32 tag) at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) at GLib.Timeout+TimeoutProxy.Finalize() ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1923 was not found when attempting to remove it Ad-nausium. NOW I am out of my depth... Yay, I'm helping! :D Russ On Mon, Aug 3, 2015 at 9:35 PM, Russell Haley wrote: Okay, so this is where I am at: 1) built mono from /usr/ports/lang/mono (version 4.0.1.28) 2) downloaded current Monodevelop from github. 3) Tried to build, but ran into the following issues: a) *%-recursive: $(CONFIG_MAKE)* -> Doesn't work with make. I called gmake and got past this. b) *DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"* -> This fails in tcsh. Not sure what the repalcement is. Hard coded path got me past this. c) Monodevelop/main contains a (generated?) Makefile has a target called restore-packages which has the following line: *nuget restore* (or something like that) It fails for two reasons. i) it needs to be replaces with *mono /usr/home/rhaley/git/monodevelop/main/external/nuget-binary/NuGet.exe restore* ii) *mozroots --import --sync* -> NuGet.exe needs this run or download fail with WARNING: Error: SendFailure (Error writing headers). Not sure what it does Now I am getting build errors and i think it is because I don't have mono-addins (gtk failing). When I try to run mono-addins from /usr/ports/devel/mono-addins, I get the following error: *make install clean===> Installing for mono-addins-1.1===> mono-addins-1.1 depends on executable: mono - found===> mono-addins-1.1 depends on file: /usr/local/libdata/pkgconfig/gtk-sharp-2.0.pc - not found===> mono-addins-1.1 depends on file: /usr/local/libdata/pkgconfig/gtk-sharp-2.0.pc - not found*** Error code 1Stop.make[1]: stopped in /usr/ports/devel/mono-addins*** Error code 1Stop.make: stopped in /usr/ports/devel/mono-addins* Few! okay, that's as far as I got. Why is the mon
Re: Mono Develop 5.0.1_1 Not Launching?
The REAL error is this: [ERROR] FATAL UNHANDLED EXCEPTION: System.IO.IOException: persistent kevent() error, error code = '22' at System.IO.KqueueMonitor.Monitor () [0x0] in :0 at System.IO.KqueueMonitor.DoMonitor () [0x0] in :0 I'm still stuck on this. I have no idea where KqueueMonitor is being called from. Any input would be helpful. Thanks, Russ On Mon, Aug 3, 2015 at 11:41 PM, Russell Haley wrote: > Okay, last post, I promise. I need some sleep! > > So what I reported previously is not a real issue > > ERROR [2015-08-03 22:24:30Z]: GLib-Critical: Source ID 2077 was not found > when attempting to remove it > Stack trace: >at GLib.Source.g_source_remove(UInt32 ) >at GLib.Source.Remove(UInt32 tag) >at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) >at GLib.Timeout+TimeoutProxy.Finalize() > > Is only a warning apparently??? Anyway, are we running an old version of > gtk-sharp? Seems to be updated here: > > https://github.com/mono/gtk-sharp/commit/7ea0c4afaf405df2dfc5a42e098e9023ecc1c51c > > The REAL error is this: > [ERROR] FATAL UNHANDLED EXCEPTION: System.IO.IOException: persistent > kevent() error, error code = '22' > at System.IO.KqueueMonitor.Monitor () [0x0] in :0 > at System.IO.KqueueMonitor.DoMonitor () [0x0] in :0 > > I drilled into KqueueMonitor and found that in the Monitor() routine it > throws this exception if it retries three times with no success. '22' is > called fromMarshall.GetLastWin32Error, so it could be: > > 0x0016 ERROR_BAD_COMMAND > > or > > 0x0022 ERROR_WRONG_DISK > > Depending how you interpret '22'. :D > > > Once again, hope I'm helping more than hindering. > > Goodnight, > > Russ > > On Mon, Aug 3, 2015 at 10:30 PM, Russell Haley > wrote: > >> Ha! So I worked through it and I installed the following ports: >> >> p5-XML-LibXML: >> cd /usr/ports/textproc/p5-XML-LibXML/ && make install clean >> >> gtk-sharp20 -> gtk-sharp30 doesn't work! oops >> /ports/x11-toolkits/gtk-sharp20/ && make install clean >> >> gnome-sharp20 >> cd /usr/ports/x11-toolkits/gnome-sharp20/ && make install clean -> had >> to run REinstall for this one??? >> >> and finished the build, but I get a runtime error. When running >> monodevelop --no-redirect I get this: >> >> INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.CBinding >> INFO [2015-08-03 22:24:26Z]: >> [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: >> MonoDevelop.CBinding >> INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.GtkCore >> INFO [2015-08-03 22:24:26Z]: >> [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: >> MonoDevelop.GtkCore >> ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1927 was not found >> when attempting to remove it >> Stack trace: >>at GLib.Source.g_source_remove(UInt32 ) >>at GLib.Source.Remove(UInt32 tag) >>at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) >>at GLib.Timeout+TimeoutProxy.Finalize() >> ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1924 was not found >> when attempting to remove it >> Stack trace: >>at GLib.Source.g_source_remove(UInt32 ) >>at GLib.Source.Remove(UInt32 tag) >>at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) >>at GLib.Timeout+TimeoutProxy.Finalize() >> ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1923 was not found >> when attempting to remove it >> >> Ad-nausium. NOW I am out of my depth... >> >> >> Yay, I'm helping! :D >> >> Russ >> >> >> On Mon, Aug 3, 2015 at 9:35 PM, Russell Haley >> wrote: >> >>> Okay, so this is where I am at: >>> >>> 1) built mono from /usr/ports/lang/mono (version 4.0.1.28) >>> 2) downloaded current Monodevelop from github. >>> 3) Tried to build, but ran into the following issues: >>> a) *%-recursive: $(CONFIG_MAKE)* -> Doesn't work with make. I called >>> gmake and got past this. >>> b) *DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"* -> This >>> fails in tcsh. Not sure what the repalcement is. Hard coded path got me >>> past this. >>> c) Monodevelop/main contains a (generated?) Makefile has a target called >>> restore-packages which has the following line: *nuget restore* (or >>> something like that) It fails for two reasons. >>> i) it needs to be replaces with *mono >>> /usr/home/rhaley/git/monodevelop/main/external/nuget-binary/NuGet.exe >>> restore* >>> ii) *mozroots --import --sync* -> NuGet.exe needs this run or download >>> fail with WARNING: Error: SendFailure (Error writing headers). Not sure >>> what it does >>> >>> Now I am getting build errors and i think it is because I don't have >>> mono-addins (gtk failing). >>> >>> When I try to run mono-addins from /usr/ports/devel/mono-addins, I get >>> the following error: >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> *make install clean===> Installing for mono-addins-1.1===> >>> mono-addins-1.1 depends on executable: mono - found===> mono-addins-1.1 >>> depends on file: /usr/local/libdata/pkgconfig/gtk-shar
Re: Mono Develop 5.0.1_1 Not Launching?
Okay, last post, I promise. I need some sleep! So what I reported previously is not a real issue ERROR [2015-08-03 22:24:30Z]: GLib-Critical: Source ID 2077 was not found when attempting to remove it Stack trace: at GLib.Source.g_source_remove(UInt32 ) at GLib.Source.Remove(UInt32 tag) at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) at GLib.Timeout+TimeoutProxy.Finalize() Is only a warning apparently??? Anyway, are we running an old version of gtk-sharp? Seems to be updated here: https://github.com/mono/gtk-sharp/commit/7ea0c4afaf405df2dfc5a42e098e9023ecc1c51c The REAL error is this: [ERROR] FATAL UNHANDLED EXCEPTION: System.IO.IOException: persistent kevent() error, error code = '22' at System.IO.KqueueMonitor.Monitor () [0x0] in :0 at System.IO.KqueueMonitor.DoMonitor () [0x0] in :0 I drilled into KqueueMonitor and found that in the Monitor() routine it throws this exception if it retries three times with no success. '22' is called fromMarshall.GetLastWin32Error, so it could be: 0x0016 ERROR_BAD_COMMAND or 0x0022 ERROR_WRONG_DISK Depending how you interpret '22'. :D Once again, hope I'm helping more than hindering. Goodnight, Russ On Mon, Aug 3, 2015 at 10:30 PM, Russell Haley wrote: > Ha! So I worked through it and I installed the following ports: > > p5-XML-LibXML: > cd /usr/ports/textproc/p5-XML-LibXML/ && make install clean > > gtk-sharp20 -> gtk-sharp30 doesn't work! oops > /ports/x11-toolkits/gtk-sharp20/ && make install clean > > gnome-sharp20 > cd /usr/ports/x11-toolkits/gnome-sharp20/ && make install clean -> had to > run REinstall for this one??? > > and finished the build, but I get a runtime error. When running > monodevelop --no-redirect I get this: > > INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.CBinding > INFO [2015-08-03 22:24:26Z]: > [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: > MonoDevelop.CBinding > INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.GtkCore > INFO [2015-08-03 22:24:26Z]: > [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: > MonoDevelop.GtkCore > ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1927 was not found > when attempting to remove it > Stack trace: >at GLib.Source.g_source_remove(UInt32 ) >at GLib.Source.Remove(UInt32 tag) >at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) >at GLib.Timeout+TimeoutProxy.Finalize() > ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1924 was not found > when attempting to remove it > Stack trace: >at GLib.Source.g_source_remove(UInt32 ) >at GLib.Source.Remove(UInt32 tag) >at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) >at GLib.Timeout+TimeoutProxy.Finalize() > ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1923 was not found > when attempting to remove it > > Ad-nausium. NOW I am out of my depth... > > > Yay, I'm helping! :D > > Russ > > > On Mon, Aug 3, 2015 at 9:35 PM, Russell Haley > wrote: > >> Okay, so this is where I am at: >> >> 1) built mono from /usr/ports/lang/mono (version 4.0.1.28) >> 2) downloaded current Monodevelop from github. >> 3) Tried to build, but ran into the following issues: >> a) *%-recursive: $(CONFIG_MAKE)* -> Doesn't work with make. I called >> gmake and got past this. >> b) *DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"* -> This >> fails in tcsh. Not sure what the repalcement is. Hard coded path got me >> past this. >> c) Monodevelop/main contains a (generated?) Makefile has a target called >> restore-packages which has the following line: *nuget restore* (or >> something like that) It fails for two reasons. >> i) it needs to be replaces with *mono >> /usr/home/rhaley/git/monodevelop/main/external/nuget-binary/NuGet.exe >> restore* >> ii) *mozroots --import --sync* -> NuGet.exe needs this run or download >> fail with WARNING: Error: SendFailure (Error writing headers). Not sure >> what it does >> >> Now I am getting build errors and i think it is because I don't have >> mono-addins (gtk failing). >> >> When I try to run mono-addins from /usr/ports/devel/mono-addins, I get >> the following error: >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> *make install clean===> Installing for mono-addins-1.1===> >> mono-addins-1.1 depends on executable: mono - found===> mono-addins-1.1 >> depends on file: /usr/local/libdata/pkgconfig/gtk-sharp-2.0.pc - not >> found===> mono-addins-1.1 depends on file: >> /usr/local/libdata/pkgconfig/gtk-sharp-2.0.pc - not found*** Error code >> 1Stop.make[1]: stopped in /usr/ports/devel/mono-addins*** Error code >> 1Stop.make: stopped in /usr/ports/devel/mono-addins* >> >> Few! okay, that's as far as I got. Why is the mono-addins port not >> fetching dependencies? >> >> Thanks, >> >> Russ >> >> On Mon, Aug 3, 2015 at 6:45 PM, Russell Haley >> wrote: >> >>> Very exciting. I would like to be involved if you need a tester. I >>> just read about creating ports in BSD Journal and I started l
Re: Mono Develop 5.0.1_1 Not Launching?
Ha! So I worked through it and I installed the following ports: p5-XML-LibXML: cd /usr/ports/textproc/p5-XML-LibXML/ && make install clean gtk-sharp20 -> gtk-sharp30 doesn't work! oops /ports/x11-toolkits/gtk-sharp20/ && make install clean gnome-sharp20 cd /usr/ports/x11-toolkits/gnome-sharp20/ && make install clean -> had to run REinstall for this one??? and finished the build, but I get a runtime error. When running monodevelop --no-redirect I get this: INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.CBinding INFO [2015-08-03 22:24:26Z]: [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: MonoDevelop.CBinding INFO [2015-08-03 22:24:26Z]: Add-in loaded: MonoDevelop.GtkCore INFO [2015-08-03 22:24:26Z]: [MonoDevelop.DesignerSupport.Toolbox.ExternalLoader] Add-in loaded: MonoDevelop.GtkCore ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1927 was not found when attempting to remove it Stack trace: at GLib.Source.g_source_remove(UInt32 ) at GLib.Source.Remove(UInt32 tag) at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) at GLib.Timeout+TimeoutProxy.Finalize() ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1924 was not found when attempting to remove it Stack trace: at GLib.Source.g_source_remove(UInt32 ) at GLib.Source.Remove(UInt32 tag) at GLib.Timeout+TimeoutProxy.Dispose(Boolean disposing) at GLib.Timeout+TimeoutProxy.Finalize() ERROR [2015-08-03 22:24:26Z]: GLib-Critical: Source ID 1923 was not found when attempting to remove it Ad-nausium. NOW I am out of my depth... Yay, I'm helping! :D Russ On Mon, Aug 3, 2015 at 9:35 PM, Russell Haley wrote: > Okay, so this is where I am at: > > 1) built mono from /usr/ports/lang/mono (version 4.0.1.28) > 2) downloaded current Monodevelop from github. > 3) Tried to build, but ran into the following issues: > a) *%-recursive: $(CONFIG_MAKE)* -> Doesn't work with make. I called > gmake and got past this. > b) *DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"* -> This > fails in tcsh. Not sure what the repalcement is. Hard coded path got me > past this. > c) Monodevelop/main contains a (generated?) Makefile has a target called > restore-packages which has the following line: *nuget restore* (or > something like that) It fails for two reasons. > i) it needs to be replaces with *mono > /usr/home/rhaley/git/monodevelop/main/external/nuget-binary/NuGet.exe > restore* > ii) *mozroots --import --sync* -> NuGet.exe needs this run or download > fail with WARNING: Error: SendFailure (Error writing headers). Not sure > what it does > > Now I am getting build errors and i think it is because I don't have > mono-addins (gtk failing). > > When I try to run mono-addins from /usr/ports/devel/mono-addins, I get the > following error: > > > > > > > > > > > > > > > *make install clean===> Installing for mono-addins-1.1===> > mono-addins-1.1 depends on executable: mono - found===> mono-addins-1.1 > depends on file: /usr/local/libdata/pkgconfig/gtk-sharp-2.0.pc - not > found===> mono-addins-1.1 depends on file: > /usr/local/libdata/pkgconfig/gtk-sharp-2.0.pc - not found*** Error code > 1Stop.make[1]: stopped in /usr/ports/devel/mono-addins*** Error code > 1Stop.make: stopped in /usr/ports/devel/mono-addins* > > Few! okay, that's as far as I got. Why is the mono-addins port not > fetching dependencies? > > Thanks, > > Russ > > On Mon, Aug 3, 2015 at 6:45 PM, Russell Haley > wrote: > >> Very exciting. I would like to be involved if you need a tester. I >> just read about creating ports in BSD Journal and I started looking >> into why make was failing on the source from the github repository >> (some bash specific stuff, NuGet gets called incorrectly and fails >> etc) but that's as far as I got. >> >> Thanks, >> >> Russell >> >> On Mon, Aug 3, 2015 at 4:11 PM, Tony Narlock wrote: >> > Thank you for posting this. I also am getting the same experience as >> you and >> > others on the thread. >> > >> > I made a bugzilla issue at >> > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202067 and linked to >> the >> > thread here as well. >> > >> > Also, there is a patch to update monodevelop (to 5.5) at >> > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194915. This was last >> > modified 2014-12-19 12:38 PST. Unfortunately no one caught it. Sergey, >> I am >> > CC'ing you on this. >> > >> > It being almost 9 months since, I think we may as well make a patch for >> the >> > newest monodevelop if possible (latest release as of August 3rd, 2015 is >> > 5.9.5.5) >> > >> > On Wed, Jul 29, 2015 at 1:16 AM, Russell Haley >> wrote: >> >> >> >> Hi there, >> >> >> >> I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports >> >> wouldn't build any of the dependency files and then when I finally got >> >> it installed through the AppCafe using a binary, the application fails >> >> to start. There is no error or pop-up. It just fails to start. >> >> >> >> I'd really like to debug this and fix th
Re: Mono Develop 5.0.1_1 Not Launching?
Okay, so this is where I am at: 1) built mono from /usr/ports/lang/mono (version 4.0.1.28) 2) downloaded current Monodevelop from github. 3) Tried to build, but ran into the following issues: a) *%-recursive: $(CONFIG_MAKE)* -> Doesn't work with make. I called gmake and got past this. b) *DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"* -> This fails in tcsh. Not sure what the repalcement is. Hard coded path got me past this. c) Monodevelop/main contains a (generated?) Makefile has a target called restore-packages which has the following line: *nuget restore* (or something like that) It fails for two reasons. i) it needs to be replaces with *mono /usr/home/rhaley/git/monodevelop/main/external/nuget-binary/NuGet.exe restore* ii) *mozroots --import --sync* -> NuGet.exe needs this run or download fail with WARNING: Error: SendFailure (Error writing headers). Not sure what it does Now I am getting build errors and i think it is because I don't have mono-addins (gtk failing). When I try to run mono-addins from /usr/ports/devel/mono-addins, I get the following error: *make install clean===> Installing for mono-addins-1.1===> mono-addins-1.1 depends on executable: mono - found===> mono-addins-1.1 depends on file: /usr/local/libdata/pkgconfig/gtk-sharp-2.0.pc - not found===> mono-addins-1.1 depends on file: /usr/local/libdata/pkgconfig/gtk-sharp-2.0.pc - not found*** Error code 1Stop.make[1]: stopped in /usr/ports/devel/mono-addins*** Error code 1Stop.make: stopped in /usr/ports/devel/mono-addins* Few! okay, that's as far as I got. Why is the mono-addins port not fetching dependencies? Thanks, Russ On Mon, Aug 3, 2015 at 6:45 PM, Russell Haley wrote: > Very exciting. I would like to be involved if you need a tester. I > just read about creating ports in BSD Journal and I started looking > into why make was failing on the source from the github repository > (some bash specific stuff, NuGet gets called incorrectly and fails > etc) but that's as far as I got. > > Thanks, > > Russell > > On Mon, Aug 3, 2015 at 4:11 PM, Tony Narlock wrote: > > Thank you for posting this. I also am getting the same experience as you > and > > others on the thread. > > > > I made a bugzilla issue at > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202067 and linked to > the > > thread here as well. > > > > Also, there is a patch to update monodevelop (to 5.5) at > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194915. This was last > > modified 2014-12-19 12:38 PST. Unfortunately no one caught it. Sergey, I > am > > CC'ing you on this. > > > > It being almost 9 months since, I think we may as well make a patch for > the > > newest monodevelop if possible (latest release as of August 3rd, 2015 is > > 5.9.5.5) > > > > On Wed, Jul 29, 2015 at 1:16 AM, Russell Haley > wrote: > >> > >> Hi there, > >> > >> I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports > >> wouldn't build any of the dependency files and then when I finally got > >> it installed through the AppCafe using a binary, the application fails > >> to start. There is no error or pop-up. It just fails to start. > >> > >> I'd really like to debug this and fix the issue. Is there any logging > >> or any way I can figure out what the next step in debuggin this issue > >> is? > >> > >> Thanks, > >> > >> Russ > >> ___ > >> freebsd-mono@freebsd.org mailing list > >> http://lists.freebsd.org/mailman/listinfo/freebsd-mono > >> To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" > > > > > ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"
Re: Mono Develop 5.0.1_1 Not Launching?
Very exciting. I would like to be involved if you need a tester. I just read about creating ports in BSD Journal and I started looking into why make was failing on the source from the github repository (some bash specific stuff, NuGet gets called incorrectly and fails etc) but that's as far as I got. Thanks, Russell On Mon, Aug 3, 2015 at 4:11 PM, Tony Narlock wrote: > Thank you for posting this. I also am getting the same experience as you and > others on the thread. > > I made a bugzilla issue at > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202067 and linked to the > thread here as well. > > Also, there is a patch to update monodevelop (to 5.5) at > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194915. This was last > modified 2014-12-19 12:38 PST. Unfortunately no one caught it. Sergey, I am > CC'ing you on this. > > It being almost 9 months since, I think we may as well make a patch for the > newest monodevelop if possible (latest release as of August 3rd, 2015 is > 5.9.5.5) > > On Wed, Jul 29, 2015 at 1:16 AM, Russell Haley wrote: >> >> Hi there, >> >> I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports >> wouldn't build any of the dependency files and then when I finally got >> it installed through the AppCafe using a binary, the application fails >> to start. There is no error or pop-up. It just fails to start. >> >> I'd really like to debug this and fix the issue. Is there any logging >> or any way I can figure out what the next step in debuggin this issue >> is? >> >> Thanks, >> >> Russ >> ___ >> freebsd-mono@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-mono >> To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" > > ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"
Re: Mono Develop 5.0.1_1 Not Launching?
Thank you for posting this. I also am getting the same experience as you and others on the thread. I made a bugzilla issue at https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202067 and linked to the thread here as well. Also, there is a patch to update monodevelop (to 5.5) at https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194915. This was last modified 2014-12-19 12:38 PST. Unfortunately no one caught it. Sergey, I am CC'ing you on this. It being almost 9 months since, I think we may as well make a patch for the newest monodevelop if possible (latest release as of August 3rd, 2015 is 5.9.5.5) On Wed, Jul 29, 2015 at 1:16 AM, Russell Haley wrote: > Hi there, > > I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports > wouldn't build any of the dependency files and then when I finally got > it installed through the AppCafe using a binary, the application fails > to start. There is no error or pop-up. It just fails to start. > > I'd really like to debug this and fix the issue. Is there any logging > or any way I can figure out what the next step in debuggin this issue > is? > > Thanks, > > Russ > ___ > freebsd-mono@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-mono > To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" > ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"
Re: Mono Develop 5.0.1_1 Not Launching?
Hi guys, I didn't realize how old the monodevelop port was. I close the bug with Xamarian as there is no way they would want to support something almost 10 editions old. I'll see if I can't figure out how to build it form source and update the ports/packages tree. Stay tuned. Russ On Fri, Jul 31, 2015 at 2:18 AM, Ivan Radovanovic wrote: > On 07/31/15 07:34, Jeff Sukow napisa: > >> I'm not sure what the mono/monodevelop project changed, but the prior >> version of MonoDevelop worked great on freeBSD. I upgraded and that was >> it. >> >> >> After the mono upgrade: >> >> I tried running an old package of monodevelop with the latest version of >> mono but that didn't work. >> >> >> http://pkg.freebsd.org/freebsd:10:x86:64/release_0/All/monodevelop-4.0.12.txz >> >> >> That led me to believe it was a mono framework change that affect this >> (have no proof or time to look into it). >> >> I still run a couple of websites (Asp.Net MVC) in freeBSD jails that >> work great but I'm worried about future .Net/mono support. I have >> reverted to Visual Studio for my builds. >> >> Jeff >> >> >> On 07/31/15 00:06, Russell Haley wrote: >>> >>> Yup, that's it. Thanks Jeff! First step to fixing it is identification... >>> >>> >>> Russ >>> >>> Sent from my BlackBerry 10 smartphone on the Koodo network. >>>Original Message >>> From: Jeff Sukow >>> Sent: Thursday, July 30, 2015 10:03 PM >>> To: Russell Haley; m...@freebsd.org >>> Subject: Re: Mono Develop 5.0.1_1 Not Launching? >>> >>> Hi Russ, >>> >>> I'm running FreeBSD but I bet it is the same problem that I'm seeing. >>> >>> System.IO.FileNotFoundException: Could not load file or assembly >>> 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, >>> PublicKeyToken=0738eb9f132ed756' or one of its dependencies. >>> >>> >>>> From the cli, run 'monodevelop --no-redirect' >>> >>> >>> >>> >>> INFO [2015-07-30 23:59:41Z]: Starting MonoDevelop 5.0.1 >>> INFO [2015-07-30 23:59:41Z]: Running on Mono 4.0.1 (tarball Sun Jul 5 >>> 01:37:28 UTC 2015) (64-bit) >>> INFO [2015-07-30 23:59:41Z]: Using GTK+ 2.24.28 >>> ERROR [2015-07-30 23:59:41Z]: MonoDevelop failed to start. Some of the >>> assemblies required to run MonoDevelop (for example gtk-sharp)may not be >>> properly installed in the GAC. >>> System.Exception: Toolkit could not be loaded ---> >>> System.IO.FileNotFoundException: Could not load file or assembly >>> 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, >>> PublicKeyToken=0738eb9f132ed756' or one of its dependencies. >>> File name: 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, >>> PublicKeyToken=0738eb9f132ed756' >>> at System.Reflection.MonoCMethod.InternalInvoke (System.Object obj, >>> System.Object[] parameters) [0x0] in :0 >>> ... >>> >>> >>> I haven't found a fix yet. Let me know if you find a solution. >>> >>> Jeff >>> >>> >>> On 07/29/15 01:16, Russell Haley wrote: >>>> >>>> Hi there, >>>> >>>> I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports >>>> wouldn't build any of the dependency files and then when I finally got >>>> it installed through the AppCafe using a binary, the application fails >>>> to start. There is no error or pop-up. It just fails to start. >>>> >>>> I'd really like to debug this and fix the issue. Is there any logging >>>> or any way I can figure out what the next step in debuggin this issue >>>> is? >>>> >>>> Thanks, >>>> >>>> Russ >>>> ___ >>>> freebsd-mono@freebsd.org mailing list >>>> http://lists.freebsd.org/mailman/listinfo/freebsd-mono >>>> To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" >>>> >>> >> ___ >> freebsd-mono@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-mono >> To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" > > > Hi guys, > > I suspect what you are experiencing is rather some bug in mono 4.0 (or in > FreeBSD port) - I am running at the moment MonoDevelop 5.7.1 and 6.0 beta > (for D) on older version of mono (3.2.3 and 3.10) and everything works > normally (although I always built MonoDevelop manually from their source, > because port was out of date) > > Kind regards, > Ivan ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"
Re: Mono Develop 5.0.1_1 Not Launching?
On 07/31/15 07:34, Jeff Sukow napisa: I'm not sure what the mono/monodevelop project changed, but the prior version of MonoDevelop worked great on freeBSD. I upgraded and that was it. After the mono upgrade: I tried running an old package of monodevelop with the latest version of mono but that didn't work. http://pkg.freebsd.org/freebsd:10:x86:64/release_0/All/monodevelop-4.0.12.txz That led me to believe it was a mono framework change that affect this (have no proof or time to look into it). I still run a couple of websites (Asp.Net MVC) in freeBSD jails that work great but I'm worried about future .Net/mono support. I have reverted to Visual Studio for my builds. Jeff On 07/31/15 00:06, Russell Haley wrote: Yup, that's it. Thanks Jeff! First step to fixing it is identification... Russ Sent from my BlackBerry 10 smartphone on the Koodo network. Original Message From: Jeff Sukow Sent: Thursday, July 30, 2015 10:03 PM To: Russell Haley; m...@freebsd.org Subject: Re: Mono Develop 5.0.1_1 Not Launching? Hi Russ, I'm running FreeBSD but I bet it is the same problem that I'm seeing. System.IO.FileNotFoundException: Could not load file or assembly 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' or one of its dependencies. From the cli, run 'monodevelop --no-redirect' INFO [2015-07-30 23:59:41Z]: Starting MonoDevelop 5.0.1 INFO [2015-07-30 23:59:41Z]: Running on Mono 4.0.1 (tarball Sun Jul 5 01:37:28 UTC 2015) (64-bit) INFO [2015-07-30 23:59:41Z]: Using GTK+ 2.24.28 ERROR [2015-07-30 23:59:41Z]: MonoDevelop failed to start. Some of the assemblies required to run MonoDevelop (for example gtk-sharp)may not be properly installed in the GAC. System.Exception: Toolkit could not be loaded ---> System.IO.FileNotFoundException: Could not load file or assembly 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' or one of its dependencies. File name: 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' at System.Reflection.MonoCMethod.InternalInvoke (System.Object obj, System.Object[] parameters) [0x0] in :0 ... I haven't found a fix yet. Let me know if you find a solution. Jeff On 07/29/15 01:16, Russell Haley wrote: Hi there, I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports wouldn't build any of the dependency files and then when I finally got it installed through the AppCafe using a binary, the application fails to start. There is no error or pop-up. It just fails to start. I'd really like to debug this and fix the issue. Is there any logging or any way I can figure out what the next step in debuggin this issue is? Thanks, Russ ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" Hi guys, I suspect what you are experiencing is rather some bug in mono 4.0 (or in FreeBSD port) - I am running at the moment MonoDevelop 5.7.1 and 6.0 beta (for D) on older version of mono (3.2.3 and 3.10) and everything works normally (although I always built MonoDevelop manually from their source, because port was out of date) Kind regards, Ivan ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"
Re: Mono Develop 5.0.1_1 Not Launching?
https://bugzilla.xamarin.com/show_bug.cgi?id=32656 Russ On Thu, Jul 30, 2015 at 10:43 PM, Russell Haley wrote: > Yes, it worked on a 10.0 VM I have but I have moved to bare metal thinking > everything would be the same. Surprise! > > I will try poking around the mono forums. I will keep you aprised of any > progress. > > Russ > > Sent from my BlackBerry 10 smartphone on the Koodo network. > Original Message > From: Jeff Sukow > Sent: Thursday, July 30, 2015 10:34 PM > To: Russell Haley; m...@freebsd.org > Subject: Re: Mono Develop 5.0.1_1 Not Launching? > > I'm not sure what the mono/monodevelop project changed, but the prior > version of MonoDevelop worked great on freeBSD. I upgraded and that was it. > > > After the mono upgrade: > > I tried running an old package of monodevelop with the latest version of > mono but that didn't work. > > http://pkg.freebsd.org/freebsd:10:x86:64/release_0/All/monodevelop-4.0.12.txz > > That led me to believe it was a mono framework change that affect this > (have no proof or time to look into it). > > I still run a couple of websites (Asp.Net MVC) in freeBSD jails that > work great but I'm worried about future .Net/mono support. I have > reverted to Visual Studio for my builds. > > Jeff > > > On 07/31/15 00:06, Russell Haley wrote: >> Yup, that's it. Thanks Jeff! First step to fixing it is identification... >> >> >> Russ >> >> Sent from my BlackBerry 10 smartphone on the Koodo network. >> Original Message >> From: Jeff Sukow >> Sent: Thursday, July 30, 2015 10:03 PM >> To: Russell Haley; m...@freebsd.org >> Subject: Re: Mono Develop 5.0.1_1 Not Launching? >> >> Hi Russ, >> >> I'm running FreeBSD but I bet it is the same problem that I'm seeing. >> >> System.IO.FileNotFoundException: Could not load file or assembly >> 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, >> PublicKeyToken=0738eb9f132ed756' or one of its dependencies. >> >> >>>From the cli, run 'monodevelop --no-redirect' >> >> >> >> INFO [2015-07-30 23:59:41Z]: Starting MonoDevelop 5.0.1 >> INFO [2015-07-30 23:59:41Z]: Running on Mono 4.0.1 (tarball Sun Jul 5 >> 01:37:28 UTC 2015) (64-bit) >> INFO [2015-07-30 23:59:41Z]: Using GTK+ 2.24.28 >> ERROR [2015-07-30 23:59:41Z]: MonoDevelop failed to start. Some of the >> assemblies required to run MonoDevelop (for example gtk-sharp)may not be >> properly installed in the GAC. >> System.Exception: Toolkit could not be loaded ---> >> System.IO.FileNotFoundException: Could not load file or assembly >> 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, >> PublicKeyToken=0738eb9f132ed756' or one of its dependencies. >> File name: 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, >> PublicKeyToken=0738eb9f132ed756' >> at System.Reflection.MonoCMethod.InternalInvoke (System.Object obj, >> System.Object[] parameters) [0x0] in :0 >> ... >> >> >> I haven't found a fix yet. Let me know if you find a solution. >> >> Jeff >> >> >> On 07/29/15 01:16, Russell Haley wrote: >>> Hi there, >>> >>> I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports >>> wouldn't build any of the dependency files and then when I finally got >>> it installed through the AppCafe using a binary, the application fails >>> to start. There is no error or pop-up. It just fails to start. >>> >>> I'd really like to debug this and fix the issue. Is there any logging >>> or any way I can figure out what the next step in debuggin this issue >>> is? >>> >>> Thanks, >>> >>> Russ >>> ___ >>> freebsd-mono@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-mono >>> To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" >>> >> ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"
Re: Mono Develop 5.0.1_1 Not Launching?
Yes, it worked on a 10.0 VM I have but I have moved to bare metal thinking everything would be the same. Surprise! I will try poking around the mono forums. I will keep you aprised of any progress. Russ Sent from my BlackBerry 10 smartphone on the Koodo network. Original Message From: Jeff Sukow Sent: Thursday, July 30, 2015 10:34 PM To: Russell Haley; m...@freebsd.org Subject: Re: Mono Develop 5.0.1_1 Not Launching? I'm not sure what the mono/monodevelop project changed, but the prior version of MonoDevelop worked great on freeBSD. I upgraded and that was it. After the mono upgrade: I tried running an old package of monodevelop with the latest version of mono but that didn't work. http://pkg.freebsd.org/freebsd:10:x86:64/release_0/All/monodevelop-4.0.12.txz That led me to believe it was a mono framework change that affect this (have no proof or time to look into it). I still run a couple of websites (Asp.Net MVC) in freeBSD jails that work great but I'm worried about future .Net/mono support. I have reverted to Visual Studio for my builds. Jeff On 07/31/15 00:06, Russell Haley wrote: > Yup, that's it. Thanks Jeff! First step to fixing it is identification... > > > Russ > > Sent from my BlackBerry 10 smartphone on the Koodo network. > Original Message > From: Jeff Sukow > Sent: Thursday, July 30, 2015 10:03 PM > To: Russell Haley; m...@freebsd.org > Subject: Re: Mono Develop 5.0.1_1 Not Launching? > > Hi Russ, > > I'm running FreeBSD but I bet it is the same problem that I'm seeing. > > System.IO.FileNotFoundException: Could not load file or assembly > 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, > PublicKeyToken=0738eb9f132ed756' or one of its dependencies. > > >>From the cli, run 'monodevelop --no-redirect' > > > > INFO [2015-07-30 23:59:41Z]: Starting MonoDevelop 5.0.1 > INFO [2015-07-30 23:59:41Z]: Running on Mono 4.0.1 (tarball Sun Jul 5 > 01:37:28 UTC 2015) (64-bit) > INFO [2015-07-30 23:59:41Z]: Using GTK+ 2.24.28 > ERROR [2015-07-30 23:59:41Z]: MonoDevelop failed to start. Some of the > assemblies required to run MonoDevelop (for example gtk-sharp)may not be > properly installed in the GAC. > System.Exception: Toolkit could not be loaded ---> > System.IO.FileNotFoundException: Could not load file or assembly > 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, > PublicKeyToken=0738eb9f132ed756' or one of its dependencies. > File name: 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, > PublicKeyToken=0738eb9f132ed756' > at System.Reflection.MonoCMethod.InternalInvoke (System.Object obj, > System.Object[] parameters) [0x0] in :0 > ... > > > I haven't found a fix yet. Let me know if you find a solution. > > Jeff > > > On 07/29/15 01:16, Russell Haley wrote: >> Hi there, >> >> I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports >> wouldn't build any of the dependency files and then when I finally got >> it installed through the AppCafe using a binary, the application fails >> to start. There is no error or pop-up. It just fails to start. >> >> I'd really like to debug this and fix the issue. Is there any logging >> or any way I can figure out what the next step in debuggin this issue >> is? >> >> Thanks, >> >> Russ >> ___ >> freebsd-mono@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-mono >> To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" >> > ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"
Re: Mono Develop 5.0.1_1 Not Launching?
I'm not sure what the mono/monodevelop project changed, but the prior version of MonoDevelop worked great on freeBSD. I upgraded and that was it. After the mono upgrade: I tried running an old package of monodevelop with the latest version of mono but that didn't work. http://pkg.freebsd.org/freebsd:10:x86:64/release_0/All/monodevelop-4.0.12.txz That led me to believe it was a mono framework change that affect this (have no proof or time to look into it). I still run a couple of websites (Asp.Net MVC) in freeBSD jails that work great but I'm worried about future .Net/mono support. I have reverted to Visual Studio for my builds. Jeff On 07/31/15 00:06, Russell Haley wrote: Yup, that's it. Thanks Jeff! First step to fixing it is identification... Russ Sent from my BlackBerry 10 smartphone on the Koodo network. Original Message From: Jeff Sukow Sent: Thursday, July 30, 2015 10:03 PM To: Russell Haley; m...@freebsd.org Subject: Re: Mono Develop 5.0.1_1 Not Launching? Hi Russ, I'm running FreeBSD but I bet it is the same problem that I'm seeing. System.IO.FileNotFoundException: Could not load file or assembly 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' or one of its dependencies. From the cli, run 'monodevelop --no-redirect' INFO [2015-07-30 23:59:41Z]: Starting MonoDevelop 5.0.1 INFO [2015-07-30 23:59:41Z]: Running on Mono 4.0.1 (tarball Sun Jul 5 01:37:28 UTC 2015) (64-bit) INFO [2015-07-30 23:59:41Z]: Using GTK+ 2.24.28 ERROR [2015-07-30 23:59:41Z]: MonoDevelop failed to start. Some of the assemblies required to run MonoDevelop (for example gtk-sharp)may not be properly installed in the GAC. System.Exception: Toolkit could not be loaded ---> System.IO.FileNotFoundException: Could not load file or assembly 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' or one of its dependencies. File name: 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' at System.Reflection.MonoCMethod.InternalInvoke (System.Object obj, System.Object[] parameters) [0x0] in :0 ... I haven't found a fix yet. Let me know if you find a solution. Jeff On 07/29/15 01:16, Russell Haley wrote: Hi there, I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports wouldn't build any of the dependency files and then when I finally got it installed through the AppCafe using a binary, the application fails to start. There is no error or pop-up. It just fails to start. I'd really like to debug this and fix the issue. Is there any logging or any way I can figure out what the next step in debuggin this issue is? Thanks, Russ ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"
Re: Mono Develop 5.0.1_1 Not Launching?
Yup, that's it. Thanks Jeff! First step to fixing it is identification... Russ Sent from my BlackBerry 10 smartphone on the Koodo network. Original Message From: Jeff Sukow Sent: Thursday, July 30, 2015 10:03 PM To: Russell Haley; m...@freebsd.org Subject: Re: Mono Develop 5.0.1_1 Not Launching? Hi Russ, I'm running FreeBSD but I bet it is the same problem that I'm seeing. System.IO.FileNotFoundException: Could not load file or assembly 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' or one of its dependencies. >From the cli, run 'monodevelop --no-redirect' INFO [2015-07-30 23:59:41Z]: Starting MonoDevelop 5.0.1 INFO [2015-07-30 23:59:41Z]: Running on Mono 4.0.1 (tarball Sun Jul 5 01:37:28 UTC 2015) (64-bit) INFO [2015-07-30 23:59:41Z]: Using GTK+ 2.24.28 ERROR [2015-07-30 23:59:41Z]: MonoDevelop failed to start. Some of the assemblies required to run MonoDevelop (for example gtk-sharp)may not be properly installed in the GAC. System.Exception: Toolkit could not be loaded ---> System.IO.FileNotFoundException: Could not load file or assembly 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' or one of its dependencies. File name: 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' at System.Reflection.MonoCMethod.InternalInvoke (System.Object obj, System.Object[] parameters) [0x0] in :0 ... I haven't found a fix yet. Let me know if you find a solution. Jeff On 07/29/15 01:16, Russell Haley wrote: > Hi there, > > I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports > wouldn't build any of the dependency files and then when I finally got > it installed through the AppCafe using a binary, the application fails > to start. There is no error or pop-up. It just fails to start. > > I'd really like to debug this and fix the issue. Is there any logging > or any way I can figure out what the next step in debuggin this issue > is? > > Thanks, > > Russ > ___ > freebsd-mono@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-mono > To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" > ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"
Re: Mono Develop 5.0.1_1 Not Launching?
Hi Russ, I'm running FreeBSD but I bet it is the same problem that I'm seeing. System.IO.FileNotFoundException: Could not load file or assembly 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' or one of its dependencies. From the cli, run 'monodevelop --no-redirect' INFO [2015-07-30 23:59:41Z]: Starting MonoDevelop 5.0.1 INFO [2015-07-30 23:59:41Z]: Running on Mono 4.0.1 (tarball Sun Jul 5 01:37:28 UTC 2015) (64-bit) INFO [2015-07-30 23:59:41Z]: Using GTK+ 2.24.28 ERROR [2015-07-30 23:59:41Z]: MonoDevelop failed to start. Some of the assemblies required to run MonoDevelop (for example gtk-sharp)may not be properly installed in the GAC. System.Exception: Toolkit could not be loaded ---> System.IO.FileNotFoundException: Could not load file or assembly 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' or one of its dependencies. File name: 'Mono.Cairo, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' at System.Reflection.MonoCMethod.InternalInvoke (System.Object obj, System.Object[] parameters) [0x0] in :0 ... I haven't found a fix yet. Let me know if you find a solution. Jeff On 07/29/15 01:16, Russell Haley wrote: Hi there, I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports wouldn't build any of the dependency files and then when I finally got it installed through the AppCafe using a binary, the application fails to start. There is no error or pop-up. It just fails to start. I'd really like to debug this and fix the issue. Is there any logging or any way I can figure out what the next step in debuggin this issue is? Thanks, Russ ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org" ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"
Mono Develop 5.0.1_1 Not Launching?
Hi there, I am trying to run Monodevelop on PC-BSD 10.1 release 25. First, ports wouldn't build any of the dependency files and then when I finally got it installed through the AppCafe using a binary, the application fails to start. There is no error or pop-up. It just fails to start. I'd really like to debug this and fix the issue. Is there any logging or any way I can figure out what the next step in debuggin this issue is? Thanks, Russ ___ freebsd-mono@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mono To unsubscribe, send any mail to "freebsd-mono-unsubscr...@freebsd.org"