Re: [EXTERNAL] [RESEND(4) PATCH] archival: disallow path traversals (CVE-2023-39810)

2025-04-05 Thread Ian Norton
allow path traversals (CVE-2023-39810) Will this patch be accepted? Or is it not suitable for busybox for some reason? Regards, Qi On 10/11/24 15: 54, Ian Norton wrote: FYI, This seems also related to https: //bugs. busybox. net/show_bug. cgi?id=16018 (my patch for fixing that seems to Will thi

[RESEND][PATCH] fix masking of malicious path traversals in archive content listings

2024-10-11 Thread Ian Norton
Prevent unprintable bytes including terminal escapes being printed when listing tar file contents in a terminal as this can be used to hide malicious archive content from users prior to unpacking a file. Re #16018 Also added bb_safe_dump_str() to include/libbb.h --- archival/libarchive/header_lis

Re: [EXTERNAL] [RESEND(4) PATCH] archival: disallow path traversals (CVE-2023-39810)

2024-10-11 Thread Ian Norton
FYI, This seems also related to https://bugs.busybox.net/show_bug.cgi?id=16018 (my patch for fixing that seems to have got lost in the mailing list noise) From: busybox on behalf of Peter Kaestle Date: Wednesday 2 October 2024 at 09:12 To: "busybox@busybox.net" , Denys Vlasenko Cc: "martin.

Re: [PATCH 1/1] Stop tar printing unsafe archive lists to stdout ?

2024-08-27 Thread Ian Norton
Hi all, I'm not really sure what to do now? My change works and is included as patches from my earlier messages but I've not seen it be merged or any questions/changes requested. Ian On 2024-07-30, 09:17, "Ian Norton" mailto:ian.nor...@entrust.com>> wrote: > >

Re: [PATCH 1/1] Stop tar printing unsafe archive lists to stdout

2024-07-30 Thread Ian Norton
Is there anything more I need to do for this fix? --- On 09/07/2024, 09:27, "Ian Norton" mailto:ian.nor...@entrust.com>> wrote: Prevent unprintable bytes including terminal escapes being printed when listing tar file contents in a terminal as this can be used to hide malicious

Re: [EXTERNAL] RE: AW: Re busybox tar hidden filename exploit

2024-07-15 Thread Ian Norton
On 15 July 2024 16:39 David Laight wrote: > On 03 July 2024 01:29 'Michael Conrad' wrote: > > The underlying root problem here is the same as SQL injection or HTML > > cross-site scripting attacks. You have data, and you emit it in a > > context that is expecting a language/protocol > I'm sure s

Re: [EXTERNAL] networking: compilation error on ubuntu 24

2024-07-11 Thread Ian Norton
This looks like: http://lists.busybox.net/pipermail/busybox-cvs/2024-January/041752.html On 11/07/2024, 14:15, "Ian Norton" mailto:ian.nor...@entrust.com>> wrote: Is it failing to find rtnetlink.h ? Have you installed linux-libc6-dev ? From: busybox mailto:busybox-boun...@

Re: [EXTERNAL] networking: compilation error on ubuntu 24

2024-07-11 Thread Ian Norton
Is it failing to find rtnetlink.h ? Have you installed linux-libc6-dev ? From: busybox on behalf of "dalton.c.russell" Date: Thursday 11 July 2024 at 13:14 To: "busybox@busybox.net" Subject: [EXTERNAL] networking: compilation error on ubuntu 24 hey all, I'm running into multiple errors whil

[PATCH 1/1] Stop tar printing unsafe archive lists to stdout

2024-07-09 Thread Ian Norton
Prevent unprintable bytes including terminal escapes being printed when listing tar file contents in a terminal as this can be used to hide malicious archive content from users prior to unpacking a file. Re #16018 Also added bb_safe_dump_str() to include/libbb.h --- archival/libarchive/header_li

Re: [EXTERNAL] Re: [PATCH 1/1] Stop tar printing unsafe archive lists to stdout

2024-07-09 Thread Ian Norton
On 08/07/2024, 20:58, "Ian Norton" mailto:ian.nor...@entrust.com>> wrote: > On Monday 8 July 2024 Steffen Nurpmeso <mailto:stef...@sdaoden.eu>> wrote: > > But then I did a grep and found unicode_conv_to_printable(). > > How about simply using this?? &g

Re: [EXTERNAL] Re: [PATCH 1/1] Stop tar printing unsafe archive lists to stdout

2024-07-08 Thread Ian Norton
On Monday 8 July 2024 Steffen Nurpmeso wrote: > Seeing diff hunk context i myself would then do (maybe, likely) char c; while((c = *msg++) != '\0') fputc((isprint_asciionly(c) ? c : '?'), fd); |+ } else { |+ fprintf(fd, "%s",

[PATCH 1/1] Stop tar printing unsafe archive lists to stdout

2024-07-08 Thread Ian Norton
Fixes #16018 by preventing the output of terminal/formatting codes to stdout when listing archive content See https://bugs.busybox.net/show_bug.cgi?id=16018 If stdout is a TTY unsafe chars are replaced with '?': Before: $ busybox tar -tf bad.tar a-totally-innocent-looking-filename.txt After: $

Re: [EXTERNAL] Re: Re busybox tar hidden filename exploit

2024-07-08 Thread Ian Norton
I will try to produce a small patch to solve the main issue (masking filenames when listing archive content) my back-of-the napkin idea is to simply replace the following bytes with “?” when printing them via the header list function: 0x08 (backspace) 0x09 (htab) 0x0a (line feed) 0x0b (vtab) 0x0

Re: [EXTERNAL] Re: AW: Re busybox tar hidden filename exploit

2024-07-08 Thread Ian Norton
From: busybox on behalf of Michael Conrad mcon...@intellitree.com > The underlying root problem here is the same as SQL injection or HTML > cross-site scripting attacks. > You have data, and you emit it in a context that is expecting a > language/protocol of some

Re: Re busybox tar hidden filename exploit

2024-06-27 Thread Ian Norton
Looking at header_list() and header_verbose_list(). Fixing it _properly_ would include some awareness of the current charset and terminal type I think. At the very least I guess we could transform all the escape chars and feed chars to a “?” maybe? From: busybox on behalf of Ian Norton Date

Re: Re busybox tar hidden filename exploit

2024-06-25 Thread Ian Norton
that would escape any non-ascii would have been my first instinct too though perhaps that would not work so well on non 8-bit charsets. Ian From: Walter Harms Date: Monday, 24 June 2024 at 09:04 To: Ian Norton , busybox@busybox.net Subject: [EXTERNAL] AW: Re busybox tar hidden filename

Re busybox tar hidden filename exploit

2024-06-13 Thread Ian Norton
Hello all. A few weeks back I logged https://bugs.busybox.net/show_bug.cgi?id=16018 but it doesn’t seem to have had any attention so I thought I’d reach out here. The bug in question shouldn’t be a serious issue for any kind of well written automated scripting, but anyone using a terminal to vi

creating a new package?

2023-10-25 Thread Ian Norton
Hi, It's probably somehow obvious, but I can't find anywhere what the process is to create/request a new package repo. For my my python app (gitlab-emulator) I'm happy to put the debian package build scripting in my repo. Would the salsa package simply be a synchronised mirror of the upstream repo

Re: Python module packaging request to help me maintain apt-listchanges

2023-10-24 Thread Ian Norton
Pytest-subprocess looks interesting, I'd probably myself have done the mocks directly using pytest-mock but it's good to know this exists. On Mon, 23 Oct 2023, 12:49 Jonathan Kamens, wrote: > Hello all, > > I'm writing to ask for your assistance in getting pytest-subprocess > packaged into Debia

Request access to salsa for python package for gitlab-emulator

2023-10-23 Thread Ian Norton
Hi, I'm the owner/maintainer of the gitlab-emulator project https://gitlab.com/cunity/gitlab-emulator I'd like to request access to Salsa to introduce a debian package for gitlab-emulator. I've submitted a registration request for Salsa and have read https://salsa.debian.org/python-team/tools/pyt

Re: can pip be made using local Debian packages for any dependencies

2023-02-15 Thread Ian Norton
I agree that is "easiest" but what I was after was the ability to restrict myself to the curated and signed packages from debian, pypi is just as bad as old CPAN when it comes to packages disappearing or being broken or depending on totally random versions On Wed, 15 Feb 2023, 22:01 Jeremy Stanley

Re: can pip be made using local Debian packages for any dependencies

2023-02-15 Thread Ian Norton
My suggestion to the pip folks was a plugin system and extension point for "install x" package that distros could provide implementations for On Wed, 15 Feb 2023, 16:35 Stefano Rivera, wrote: > Hi Philippe (2023.02.13_01:11:28_+) > > On Sun, Feb 12, 2023 at 7:31 PM Donald Stufft wrote: > >

Re: can pip be made using local Debian packages for any dependencies

2023-02-12 Thread Ian Norton
instead. Just thinking out-loud Ian On Sun, 12 Feb 2023 at 08:18, Ian Norton wrote: > > https://packaging.python.org/en/latest/specifications/recording-installed-packages/ > defines the python spec where a package such as pyparsing would create > a tree of files under: > site-pac

Re: can pip be made using local Debian packages for any dependencies

2023-02-12 Thread Ian Norton
some others. On Sun, 12 Feb 2023 at 08:12, Ian Norton wrote: > > You've made me wonder if it would be feasible to have a debian-centric > tool that populates .dist-info from debs? > > On Sun, 12 Feb 2023 at 08:05, Ian Norton wrote: > > > > I requested this kin

Re: can pip be made using local Debian packages for any dependencies

2023-02-12 Thread Ian Norton
You've made me wonder if it would be feasible to have a debian-centric tool that populates .dist-info from debs? On Sun, 12 Feb 2023 at 08:05, Ian Norton wrote: > > I requested this kind of thing from the pip folks as > https://github.com/pypa/pip/issues/11644 and others have reque

Re: can pip be made using local Debian packages for any dependencies

2023-02-12 Thread Ian Norton
I requested this kind of thing from the pip folks as https://github.com/pypa/pip/issues/11644 and others have requested similar, such as https://github.com/pypa/pip/issues/11607 On Sun, 12 Feb 2023 at 04:56, Philippe Cerfon wrote: > > Hey. > > I hope this is not too off topic. > > As far as I und

[issue43749] venv module does not copy the correct python exe

2021-04-06 Thread Ian Norton
Change by Ian Norton : -- keywords: +patch pull_requests: +23954 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25216 ___ Python tracker <https://bugs.python.org/issu

[issue43749] venv module does not copy the correct python exe

2021-04-06 Thread Ian Norton
Ian Norton added the comment: This may also cause https://bugs.python.org/issue35644 -- ___ Python tracker <https://bugs.python.org/issue43749> ___ ___ Pytho

[issue43749] venv module does not copy the correct python exe

2021-04-06 Thread Ian Norton
New submission from Ian Norton : On windows, the venv module does not copy the correct python exe if the current running exe (eg sys.executable) has been renamed (eg, named python3.exe) venv will only make copies of python.exe, pythonw.exe, python_d.exe or pythonw_d.exe. If for example the

[issue39619] os.chroot is not enabled on HP-UX builds

2020-02-12 Thread Ian Norton
New submission from Ian Norton : When building on HP-UX using: The configure stage fails to detect chroot(). This is due to setting _XOPEN_SOURCE to a value higher than 500. The fix for this is to not set _XOPEN_SOURCE when configuring for HP-UX -- components: Interpreter Core

Re: Are concurrent git operations on the same repo safe?

2018-02-06 Thread Ian Norton
me of which were quite large (1-2Gb history) Afterwards, I had trouble doing "git pull -r" in my submodules to pull in newer changes. On 6 February 2018 at 20:10, Jonathan Nieder wrote: > Ian Norton wrote: > >> Specifically I'm trying to speed up &q

Are concurrent git operations on the same repo safe?

2018-02-05 Thread Ian Norton
Hi all, I'm generally used to the idea that if a thing is not marked as "thread-safe" then it isn't thread safe, but I thought I'd ask anyway to be sure. Is it safe for me to do several operations with git concurrently on the same local repo? Specifically I'm trying to speed up "git submodule upd

Re: [ccache] who is using ccache ?

2017-11-03 Thread Ian Norton via ccache
Hiya, I and most of my co-workers have been using ccache daily for years, It's hard to calculate the whole cost/time saving. But my ccache stats on my work desktop are: cache directory /home/inb/.ccache cache hit (direct) 1868638 cache hit (preprocessed)

[opennms-devel] Issues with HTTPNotificationStrategy when event clears - bug or user error?

2015-08-19 Thread Ian Norton
ms/blob/master/features/events/daemon/src/main/java/org/opennms/netmgt/eventd/AbstractEventUtil.java - which doesn't seem to make the text message variable availa

Re: [opennms-devel] Release of a few docs

2015-05-27 Thread Ian Norton
gt; To *unsubscribe* or change your subscription options, see the bottom of this > page: > https://lists.sourceforge.net/lists/listinfo/opennms-devel -- Ian Norton --

Re: [Mono-dev] .NET Announcement

2014-11-12 Thread Ian Norton
Rather cool! On 12 November 2014 16:24, Andrea Francesco Iuorio < andreafrancesco.iuo...@gmail.com> wrote: > > http://news.microsoft.com/2014/11/12/microsoft-takes-net-open-source-and-cross-platform-adds-new-development-capabilities-with-visual-studio-2015-net-2015-and-visual-studio-online/ > > O

Re: [Mono-dev] Fantom on Mono

2014-04-02 Thread Ian Norton
You could probably run it under IKVM, (JVM hosted by .Net/Mono) On 1 April 2014 15:58, Hertz wrote: > Hi, > > There is a programming language called Fantom that aims to make > cross-platform development easier. It is designed to run on the JVM, .NET > CLR, and JavaScript. Right now the only m

Re: [Openslp-devel] Patches for openslp

2014-03-26 Thread Ian Norton
Hi John. I don't think any of us here do. The person you might be remembering is Matt Pendlebury. On 26 Mar 2014 15:04, "John Calcote" wrote: > Hi Richard, > > Thanks so much for all the work you've done. Don't take this wrong, but > don't you have an employee there at Thales that has commit righ

Re: [Mono-dev] crn.com: »Sources: Microsoft In Talks To Acquire Mobile App Development Startup Xamarin«

2014-03-20 Thread Ian Norton
rom the rumor > mongering of a -- possibly fictional -- anonymous source. > > Regards, David > > > On 2014-03-20 09:55, Ian Norton wrote: >> >> whaat!? >> >> article looks far from clear though. does this mean monodevelop is going >> to quietly die?

Re: [Mono-dev] crn.com: »Sources: Microsoft In Talks To Acquire Mobile App Development Startup Xamarin«

2014-03-20 Thread Ian Norton
whaat!? article looks far from clear though. does this mean monodevelop is going to quietly die? or a license change? :/ On 19 Mar 2014 23:07, "theUser BL" wrote: > "Microsoft is in the final stages of negotiations that could lead to > either an acquisition or major investment in Xamarin, ..." >

Re: [Mono-list] How attach class sources to Xamarin?

2014-03-13 Thread Ian Norton
Oh right, if you build mono from source, then I think there is an option in XS somewhere about "step into framework sources". Other than that, you don't normally get that unless you have the mdb files and sources that match On 13 March 2014 18:40, Borneq wrote: > On github are sources but how at

Re: [Mono-list] How attach class sources to Xamarin?

2014-03-13 Thread Ian Norton
Look on github? On 13 Mar 2014 18:10, "Borneq" wrote: > I am Mono and Xamarin. I want see class from System.Collections. How attach > sources? > > > > -- > View this message in context: > http://mono.1490590.n4.nabble.com/How-attach-class-sources-to-Xamarin-tp466.html > Sent from the Mono - G

Re: [Mono-list] Not able to verify integrity of download

2014-03-13 Thread Ian Norton
no) > Sent: Wednesday, March 12, 2014 4:00 AM > To: Ian Norton > Cc: mono-list@lists.ximian.com; monolithic1 > Subject: Re: [Mono-list] Not able to verify integrity of download > > > From: Ian Norton [mailto:inor...@gmail.com] > > Sent: Tuesday, March 11, 2014 2:29 AM >

Re: [Mono-list] Not able to verify integrity of download

2014-03-10 Thread Ian Norton
I think our friend is wondering if our stable archive is trusted. if someone hasn't snuck in and inserted some nasty in the released tarball. I for one think that xamarin really really need to sha2 and sign the released stable sources! On 11 Mar 2014 02:52, "Edward Ned Harvey (mono)" < edward.harv

Re: [Mono-list] Embedding mono runtime

2014-03-10 Thread Ian Norton
oh sorry, I keep doing this.. I just described LGPL *not* GPL2. On 10 Mar 2014 23:37, "Ian Norton" wrote: > as far as I am aware it is apple's deployment model that means you can't > ship and give your end users the means to replace mono. > > under GPL2, techn

Re: [Mono-list] Embedding mono runtime

2014-03-10 Thread Ian Norton
as far as I am aware it is apple's deployment model that means you can't ship and give your end users the means to replace mono. under GPL2, technically if you give away linkable objects that allow someone to rebuild (relink) your app and replace any GPL2 parts you can use the GPL2 license. That i

Re: [Mono-list] Debug.Assert - a cross-platform issue

2014-03-09 Thread Ian Norton
Oops.. Anyway.. The reason why it is false by default is that there is no trace listener enabled by default. You can enable it in several ways. 1. export MONO_TRACE_LISTENER=Console.Error 2. Adding one. var tl = new System.Diagnostics.ConsoleTraceListener(); System.Diagnostics.Debug.Listeners.A

Re: [Mono-list] Size of thread in Mono (65MB per thread ?)

2013-12-21 Thread Ian Norton
What are you using to tell you that you are using 64mb? It sounds like vss increase rather than actual ram allocation. How much swap do you have? On 20 Dec 2013 09:14, "Nicolas Antoniazzi" wrote: > I tested the new version of Mono 3.2 using the sgen GC. > I still have the same problem: every new

Re: [Mono-list] Mono and Apache 2.4.6

2013-11-18 Thread Ian Norton
http://archive.apache.org/dist/httpd/ On 18 Nov 2013 09:20, "Ian Norton" wrote: > I'm pretty sure you can still get every Apache version > On 12 Nov 2013 22:50, "SteveS" wrote: > >> When will Mono be compatible with Apache 2.4.6? >> >> Apache

Re: [Mono-list] Mono and Apache 2.4.6

2013-11-18 Thread Ian Norton
I'm pretty sure you can still get every Apache version On 12 Nov 2013 22:50, "SteveS" wrote: > When will Mono be compatible with Apache 2.4.6? > > Apache 2.4.3 is no longer available. > > > > -- > View this message in context: > http://mono.1490590.n4.nabble.com/Mono-and-Apache-2-4-6-tp4661308.ht

[jira] [Updated] (CMIS-735) Multiple fixes from Drupal.org

2013-11-17 Thread Ian Norton (JIRA)
[ https://issues.apache.org/jira/browse/CMIS-735?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ian Norton updated CMIS-735: Attachment: drupal.org_fixes_merge.diff > Multiple fixes from Drupal.

[jira] [Updated] (CMIS-735) Multiple fixes from Drupal.org

2013-11-17 Thread Ian Norton (JIRA)
[ https://issues.apache.org/jira/browse/CMIS-735?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ian Norton updated CMIS-735: Attachment: (was: drupal.org_fixes_merge.diff) > Multiple fixes from Drupal.

[jira] [Updated] (CMIS-735) Multiple fixes from Drupal.org

2013-11-17 Thread Ian Norton (JIRA)
[ https://issues.apache.org/jira/browse/CMIS-735?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ian Norton updated CMIS-735: Attachment: drupal.org_fixes_merge.diff > Multiple fixes from Drupal.

[jira] [Created] (CMIS-735) Multiple fixes from Drupal.org

2013-11-17 Thread Ian Norton (JIRA)
Ian Norton created CMIS-735: --- Summary: Multiple fixes from Drupal.org Key: CMIS-735 URL: https://issues.apache.org/jira/browse/CMIS-735 Project: Chemistry Issue Type: Bug Components

[jira] [Updated] (CMIS-734) Query breaks with Alfresco 4.2

2013-11-12 Thread Ian Norton (JIRA)
[ https://issues.apache.org/jira/browse/CMIS-734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ian Norton updated CMIS-734: Attachment: alfresco_4_2_queryfix_atom.diff > Query breaks with Alfresco

[jira] [Updated] (CMIS-734) Query breaks with Alfresco 4.2

2013-11-12 Thread Ian Norton (JIRA)
[ https://issues.apache.org/jira/browse/CMIS-734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ian Norton updated CMIS-734: Attachment: (was: alfresco_4_2_queryfix.diff) > Query breaks with Alfresco

[jira] [Updated] (CMIS-734) Query breaks with Alfresco 4.2

2013-11-12 Thread Ian Norton (JIRA)
[ https://issues.apache.org/jira/browse/CMIS-734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ian Norton updated CMIS-734: Attachment: alfresco_4_2_queryfix.diff > Query breaks with Alfresco

[jira] [Updated] (CMIS-734) Query breaks with Alfresco 4.2

2013-11-12 Thread Ian Norton (JIRA)
[ https://issues.apache.org/jira/browse/CMIS-734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ian Norton updated CMIS-734: Attachment: alfresco_4_2_queryfix.diff > Query breaks with Alfresco

[jira] [Created] (CMIS-734) Query breaks with Alfresco 4.2

2013-11-12 Thread Ian Norton (JIRA)
Ian Norton created CMIS-734: --- Summary: Query breaks with Alfresco 4.2 Key: CMIS-734 URL: https://issues.apache.org/jira/browse/CMIS-734 Project: Chemistry Issue Type: Bug Components

Re: [ccache] direct mode

2013-10-23 Thread Ian Norton
On 23 Oct 2013 11:01, "Andrew Stubbs" wrote: > > On 20/10/13 10:18, Joel Rosdahl wrote: >>> >>> bug? >> >> >> Yes, see the discussion on >> http://www.mail-archive.com/ccache@lists.samba.org/msg00920.html. >> >> By the way: I'm still torn on what to do, but I'm leaning towards keeping >> direct mo

Re: [ccache] direct mode

2013-10-18 Thread Ian Norton
I've updated https://bugzilla.samba.org/show_bug.cgi?id=8424. Perhaps a rename is needed as the title implies it is ubuntu specific and intermittant? On 18 October 2013 11:05, Ian Norton wrote: > Ok. I should have tried it before hand. ccache *doesnt't* notice the > addition o

Re: [ccache] direct mode

2013-10-18 Thread Ian Norton
Ok. I should have tried it before hand. ccache *doesnt't* notice the addition of the new header and still gives me a .o file from the first invocation. bug? On 18 October 2013 10:54, Ian Norton wrote: > Hello All, > > I have a question about direct mode, it follows on from an old

[ccache] direct mode

2013-10-18 Thread Ian Norton
Hello All, I have a question about direct mode, it follows on from an old thread I've seen in the archives: http://www.mail-archive.com/ccache@lists.samba.org/msg00150.html I'll quote inline and follow on. Joel Rosdahl wrote: > tridge wrote: > > Also, does the hashtable used for included_files

Re: [Mono-dev] P/Invoking a VS2012 C++ DLL, DLL behavior is materially different in 3.2.3 than in 3.1 and .net

2013-09-27 Thread Ian Norton
Er.. How are you calling this? Surely the function name gets mangled? On 27 Sep 2013 09:01, "Dennis Fantoni" wrote: > (running on windows 7) > > In short, if I wrote this in a dll in .net or mono 3.1 i would get to > “this shows” > > void tester() { > try { > throw(foo); > cerr<<”this never sh

Re: [Mono-list] setuid behavior?

2013-09-12 Thread Ian Norton
On 12 September 2013 14:21, mickeyf wrote: > > My app also accesses a library written in c which uses a socket to read > canbus messages. On startup it tries a "ip link set blah blah..." > I'd be tempted to make a helper process that you can invoke via sudo (and set an appropriate sudo NOPASSWD

Re: [Mono-list] setuid behavior?

2013-09-12 Thread Ian Norton
For setuid on the program to work you'd have to setuid mono itself. Depending on your deployment scenario you could mkbundle your program and setuid the result. On 11 September 2013 23:32, mickeyf wrote: > I have an application that uses a udp socket. If I run it "sudo mono > myapp.exe" it work

Re: [Mono-list] What exactly is UIA* stuff and how do I get it to work?

2013-09-12 Thread Ian Norton
Sounds like the stuff that makes screen readers work on windows, doubt you will have much luck On 12 Sep 2013 21:37, "Steffen Winkler" wrote: > Hi, > > I'm currently trying to get one of my programs to work under Linuxoid > systems. Now, when I try to start my program, I get an error which says >

Re: [Mono-list] open sourcing all of Microsoft .net

2013-09-06 Thread Ian Norton
Some are pretty big :) we've got some chunky mono stuff on the way. On 6 Sep 2013 18:20, "Andrew Clancy" wrote: > That's not open source, that's readable source, you can't fork it or use > it, nor merge it with mono & have an official .net framework for linux etc. > My thoughts are, if we did hav

[Mono-list] gdiplus source releases

2013-09-04 Thread Ian Norton
Hiya, I notice libgdiplus has been getting updates but don't see a new tarball or git tag. What version/changelist should we be using with stable mono 3.2? Regards Ian ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailma

[Mono-list] pmono deb repo updated to 3.2.1 and monodevelop 4.1.10

2013-09-03 Thread Ian Norton
Hi Folks, I've uploaded a new build of packages for pmono for amd64 and i386. I've built these on debian 7 so they should work for most ubuntu and debian people. Apologies if for some reason it doesnt work on older debian 6 installs. http://inorton.wordpress.com/pmono-parallel-mono-debian-pacakge

Re: [Mono-list] Mono & MediaBrowser3

2013-08-28 Thread Ian Norton
Hiya, I'd almost forgotten that I have a fork of mediabrowser that is part way towards building on mono, I've had problems getting my head around it's use of the PCL and nuget but have got parts building now. https://github.com/inorton/MediaBrowser/tree/inb-mono On 20 August 2013 23:36, Airbande

Re: [Mono-list] Command line debugging

2013-08-13 Thread Ian Norton
You can run a program that will listen for monodevelop on a TCP port before it enters it's main method. $ mono --debug --debugger-agent=transport=dt_socket,address=0.0.0.0:12345,server=y,suspend=y myprogram.exe That will sit listening on port 12345 for a debugger to attach. On another host you

Re: [Mono-list] Where is the source of libgdiplus-3.0.tar.gz

2013-08-01 Thread Ian Norton
And gdiplus tarballs live here http://download.mono-project.com/sources/libgdiplus/ On 1 Aug 2013 18:05, "Ian Norton" wrote: > http://inorton.wordpress.com/pmono-parallel-mono-debian-pacakges/ > On 1 Aug 2013 18:02, "TheColonel26" wrote: > >> Where would

Re: [Mono-list] Where is the source of libgdiplus-3.0.tar.gz

2013-08-01 Thread Ian Norton
http://inorton.wordpress.com/pmono-parallel-mono-debian-pacakges/ On 1 Aug 2013 18:02, "TheColonel26" wrote: > Where would I find this pmono? Does it support ASP.net MVC 4? > > that still doesn't answer the question of why the mono-project website is > out of date and neglected > > also where doe

Re: [Mono-list] Where is the source of libgdiplus-3.0.tar.gz

2013-08-01 Thread Ian Norton
Try out pmono, I include a gdiplus build. Afaik gdiplus isn't at v 3.0 , it has its own numbers On 1 Aug 2013 17:35, "TheColonel26" wrote: > Thread necromancer here > > Are the release notes and download page ever going to be updated with > relevant information? such as where to get libgdiplus-3

Re: [Mono-list] Can't get a simple shared object to be used - DllNotFoundException

2013-07-30 Thread Ian Norton
Here we go, I was on my nexus yesterday so couldnt easily grab these: http://www.mono-project.com/Interop_with_Native_Libraries http://www.mono-project.com/DllNotFoundException http://www.mono-project.com/Config_DllMap Ian On 31 July 2013 03:33, Jonathan Pryor wrote: > On Jul 30, 2013, at 5:3

Re: [Mono-list] Can't get a simple shared object to be used - DllNotFoundException

2013-07-30 Thread Ian Norton
Dllimport tells the loader the library name. A large combination of things work as library loading and shared objects differ greatly on windows and unix. On windows, the library could be installed in the side-by-side cache or in the same folder as your assembly etc. If you have a file called lib

Re: [Mono-dev] Aptget

2013-07-26 Thread Ian Norton
You need to ask your distro really, else you can use pmono which is currently 3.0 I think, ill update it soon On 26 Jul 2013 16:59, "Greg Young" wrote: > Anyone know if aptgets will be updated with 3.2? > > > > -- > Le doute n'est pas une condition agréable, mais la certitude est absurde. > > ___

Re: [Mono-list] mscorlib.dll was not found or could not be located

2013-07-03 Thread Ian Norton
Sounds like you need to solve the deployment of mono for your target first. Expecting the gac to work in the situations you describe isn't going to work. If you are distributing your program internally to your company or home stuff you can try the static linking option to mkbundle On 3 Jul 2013 1

Re: [Mono-list] Install Mono on Vosual Studio

2013-07-02 Thread Ian Norton
Don't get lazy with file paths either, make use of Path.Combine() rather than just joining strings with "\" :) On 2 July 2013 16:12, Abe Gillespie wrote: > By and large you develop for Mono without changing any of your > Win/.Net habits. Often you can write your app top-to-bottom on > Windows,

[Mono-list] monodevelop perforce addin work

2013-07-02 Thread Ian Norton
Hiya, I'm trying to add some command extensions for my p4 addin for monodevelop, I've got a bit lost. https://github.com/inorton/XR.Mono.Perforce/blob/master/XR.MonoDevelop.Perforce/XR.MonoDevelop.Perforce.addin.xml The xml results in menu items rather than "Edit file.." or "Submit changes.." a

[Mono-dev] Monodevelop VCS plugins

2013-06-30 Thread Ian Norton
Hiya Everyone, I've asked this on the MD-devel list but didn't get any responses. I've started work (again) on a perforce plugin for MD. I've not got very far yet and am implementing the Repository and have some questions. 1. What is a RevisionPath? how does it map to files, local changes and rep

Re: [Mono-dev] sub-process invocation on posix

2013-06-11 Thread Ian Norton
ot;"; > return escapedArg; > } > > internal static string QuoteCommandLineArgUnix(string arg) > { > // Mono uses the GNOME g_shell_parse_argv() function to > convert the arg string into an argv > // Just prepend " and \ w

Re: [Mono-dev] sub-process invocation on posix

2013-06-10 Thread Ian Norton
e, > } > ); > } > > Obviously this could be done more efficiently with a StringBuilder. > > Apologies for any errors, I'm writing this on my phone... > > - Michael > On Jun 6, 2013 1:18 PM, "Ian Norton" wrote: > >> Hiya, I'm aware

Re: [Mono-dev] [HELP] error when start mono

2013-06-07 Thread Ian Norton
looks like you have bits of gnome2 missing. On 7 June 2013 09:34, rewcrell wrote: > guys, please help me... > when im installed mono, and success but when im create new there is > something wring with my mono... please help me > > im using linux manjaro 32 bit > and see the error.. >

Re: [Mono-list] How to start a process? (Crossplatform)

2013-06-06 Thread Ian Norton
I find the binfmt-misc support to be mainly controlled by distro things, so usually for me invoking ./program.exe will wind up using the archaic mono installed in /usr. If I were you I'd stick to running mono apps by calling "mono program.exe args". One possibly mad idea if the subprocess was a c#

[Mono-dev] sub-process invocation on posix

2013-06-06 Thread Ian Norton
Hiya, I'm aware that I can use Process.Start() but I'd really really like to be able to directly pass a list of strings to my child process as arguments rather than having to escape shell characters and spaces etc. Ie, In perl or C I'd do: system("df","-m","/home/foo/Documents/Pictures/My Holiday

Re: [Mono-dev] Fwd: Re: Mono on Solaris

2013-06-05 Thread Ian Norton
FWIW I'd be very interested in mono support for solaris sparc and amd64 On 23 May 2013 14:21, Burkhard Linke wrote: > Forgot the CC to the list > > Original Message > Subject: Re: [Mono-dev] Mono on Solaris Date: Thu, 23 May 2013 > 15:16:46 +0200 From: Burkhard Linke

Re: [Mono-list] Can this linq be optimised?

2013-06-05 Thread Ian Norton
can you give us some example strings? On 5 June 2013 00:32, Paul Johnson wrote: > Hi, > > I have a class containing ints, strings and anything else you'd expect to > find in a class. I create a list of the class and then extract the strings > and perform a Distinct() on them. That bit is easy.

mono-list@lists.ximian.com

2013-06-02 Thread Ian Norton
Why don't you write a shell script that does your redirection etc and include this with your program ( eg, run that ). Use the right tool for the job. Else run the original program and parse the output directly On 31 May 2013 13:28, Edward Ned Harvey (mono) < edward.harvey.m...@clevertrove.com>

Re: [etherlab-users] e1000e

2013-05-31 Thread Ian Norton
Hi, It appears the e1000e driver does not work. The work around is to use the generic driver, which seems to be OK. At least for what we're doing. regards Ian -Original Message- From: Ian Norton Sent: 08 May 2013 17:46 To: Ian Norton; etherlab-users@etherlab.org Subjec

Re: [Mono-list] ZipArchive?

2013-05-28 Thread Ian Norton
I tend to use ionic.zip On 28 May 2013 13:51, "Madsn" wrote: > Hi, I had hoped to find the System.IO.Compression.ZipArchive class when > using > mono .net 4.5, but didn't find it. > > Will it be supported or are there copyright issues or something? (Or didn't > I just look hard enough) > > In cas

Re: [Mono-list] Adding a reference to SDL in a mono project

2013-05-17 Thread Ian Norton
Sdl.net ? On 17 May 2013 17:09, "ajellis" wrote: > Hi, I'm looking to use SDL in a Mono project, but I can't find a way to > add a reference to it. Can somone please tell me what I need to ass a > reference to an SDL project. Thanks in advance Andrew > -- > View this m

Re: [Mono-list] Need Mono x64 for Linux

2013-05-08 Thread Ian Norton
Pmono has a 64bit build for debian http://inorton.wordpress.com/2013/05/05/mono-3-0-10-and-monodevelop-4-0-4-for-linux-i386-and-amd64/ As does mono-d http://mono-d.alexanderbothe.com/?p=958 Your 64bit app cant call a 32bit library though. On 8 May 2013 19:41, "BitFlipper" wrote: > I have a sim

Re: [etherlab-users] e1000e

2013-05-08 Thread Ian Norton
mmit;h=03e6d819c2cb2cc8ce5642669a0a7c72336ee7a2 What's the way around this? regards ian -Original Message- From: etherlab-users-boun...@etherlab.org [mailto:etherlab-users-boun...@etherlab.org]On Behalf Of Ian Norton Sent: 02 May 2013 11:07 To: etherlab-users@etherlab.org Subject: [eth

Re: [Mono-list] What is current status of GTK#

2013-05-07 Thread Ian Norton
On Tue, May 07, 2013 at 03:28:30PM +0100, Petr Bena wrote: > Hey, I already posted gtk-sharp-list but given that it's rather dead I > don't expect any answer soon there. > > > I am using gtk# as a primary graphical framework for at least 2 or > more of my applications, but I haven't seen many upd

Re: [Mono-dev] [Mono-list] Parallel Mono Debs for 3.0.10 and Monodevelop 4.0.4 builds availible

2013-05-07 Thread Ian Norton
No xsp yet, ill bear that in mind, should be quite simple to add. Daniel Lo Nigro wrote: >Thanks Ian, nice work. Nice to see i386 packages as I think there was >only AMD64 last time I checked? > > >Have you packaged XSP? > > > >On Mon, May 6, 2013 at 3:42 AM, I

Re: [Mono-list] [Mono-dev] Parallel Mono Debs for 3.0.10 and Monodevelop 4.0.4 builds availible

2013-05-06 Thread Ian Norton
No xsp yet, ill bear that in mind, should be quite simple to add. Daniel Lo Nigro wrote: >Thanks Ian, nice work. Nice to see i386 packages as I think there was >only AMD64 last time I checked? > > >Have you packaged XSP? > > > >On Mon, May 6, 2013 at 3:42 AM, I

[Mono-list] Parallel Mono Debs for 3.0.10 and Monodevelop 4.0.4 builds availible

2013-05-05 Thread Ian Norton
Hi all, I've finally gotten *both* the i386 and AMD64 builds ready again. I had hoped to use the new debian experimental builds to bootstrap it but had to resort to monolite for this version. More info here https://inorton.wordpress.com/ Enjoy! ___ Mo

[Mono-dev] Parallel Mono Debs for 3.0.10 and Monodevelop 4.0.4 builds availible

2013-05-05 Thread Ian Norton
Hi all, I've finally gotten *both* the i386 and AMD64 builds ready again. I had hoped to use the new debian experimental builds to bootstrap it but had to resort to monolite for this version. More info here https://inorton.wordpress.com/ Enjoy! ___ Mo

  1   2   3   4   >