Re: [Coapp-developers] shallow forking feedback

2011-06-09 Thread Andreas Schiffler
I'd like to add SDL_gfx to the mix as well ... Does the dependency markup |uses||:| |bld||-||cfg||=||"..\path"| |;| work? Presumably this refers the github path as well as the local installation. Is there a way to subgroup |targets||:| |{| |.||.||.| |}| |;| for example to keep a library separa

Re: [Coapp-developers] Volunteer to help with GCC command line analysis...

2011-06-09 Thread Lee Fisher
Where is the CoApp spec that discusses what kind of mappings you're talking about in this email? I'm unclear of the goals. There's some data here that might help: http://sourceforge.net/apps/mediawiki/predef/index.php?title=Main_Page and to a lesser degree: http://www.cmake.org/Wiki/CMake_Platfo

Re: [Coapp-developers] Volunteer to help with GCC command line analysis...

2011-06-09 Thread Rafael Rivera
var s = "private static readonly Dictionary SuppressedSwitches = new Dictionary {"; $.each($('ul.index-op li a code'), function() { s = s + '{\"' + this.innerHTML + '\", \"(no description)\"}'; }); document.write(s); It's a start (requires jQuery) :D.  Maybe one could fo

Re: [Coapp-developers] Shallow-forking contest!

2011-06-09 Thread Garrett Serack
Did anyone else have any feedback before I go purchase prizes? I might be able to slip a netbook or two into the mix, if that's interesting. Any other ideas? Last Chance? G From: Andreas Schiffler [mailto:aschiff...@ferzkopp.net] Sent: Thursday, June 02, 2011 11:23 PM To: Garrett Serack Cc: coa

[Coapp-developers] Volunteer to help with GCC command line analysis...

2011-06-09 Thread Garrett Serack
I just took a look at the GCC command line list. (http://gcc.gnu.org/onlinedocs/gcc/Option-Index.html) There are 1,993 different command lines... And while yes, a heck of a lot are warning flags, they still have to all categorized so that I can parse out the command line correctly. And then we

Re: [Coapp-developers] Ptk exception

2011-06-09 Thread Garrett Serack
Ok, I've fixed PEInfo so that it doesn't throw anymore... It now supports a "IsPEBinary" property, and returns 0.0 for version info for non-pebinaries. G From: coapp-developers-bounces+garretts=microsoft@lists.launchpad.net [mailto:coapp-developers-bounces+garretts=microsoft@lists.launc

Re: [Coapp-developers] Ptk exception

2011-06-09 Thread Garrett Serack
Well, technically percent signs too. From: Eric Schultz [mailto:wwaha...@gmail.com] Sent: Thursday, June 09, 2011 8:13 AM To: Trevor Dennis Cc: Garrett Serack; coapp-developers Subject: Re: [Coapp-developers] Ptk exception *tests making a folder with semicolons* YOU HAVE GOT TO BE KIDDING ME.

Re: [Coapp-developers] Ptk exception

2011-06-09 Thread Garrett Serack
LOL If someone is dippy enough to put a semicolon in a folder name, they deserve to be smacked. Hard. Repeatedly. I've updated the GetFullPath() extension method to trim quotes (something I should have done a long time ago) G From: Trevor Dennis [mailto:tre...@dennis-it.com] Sent: Thursday,

Re: [Coapp-developers] Ptk exception

2011-06-09 Thread Eric Schultz
*tests making a folder with semicolons* YOU HAVE GOT TO BE KIDDING ME. No way. *shakes head in disbelief* On Thu, Jun 9, 2011 at 10:10 AM, Trevor Dennis wrote: > Hi, > > > > Semi-colons are also valid path characters, so splitting on the ';' in the > string may not be valid. You'll need to ig

Re: [Coapp-developers] Ptk exception

2011-06-09 Thread Trevor Dennis
Hi, Semi-colons are also valid path characters, so splitting on the ';' in the string may not be valid. You'll need to ignore the semi-colons within the quoted paths. (not that anyone should be crazy enough to put semi-colons in their folder names). Trev. From: coapp-developers-

Re: [Coapp-developers] Ptk exception

2011-06-09 Thread Garrett Serack
Hmm. Some Recent changes have angered the gods. ... // ... probably should have put a bug it github for this :D Lemme dig on this one right now. G From: Eric Schultz [mailto:wwaha...@gmail.com] Sent: Thursday, June 09, 2011 7:19 AM To: Garrett Serack Cc: coapp-developers Subject: Re: [Coapp-dev

Re: [Coapp-developers] Ptk exception

2011-06-09 Thread Eric Schultz
One of my search paths had double quotes around it. That is acceptable to Windows and it handles it properly but Path.GetFullPath doesn't like it I guess. Now I get the following exciting error when it tries to find git: C:\Users\Eric\Desktop\bzip2-1.0.6>ptk build CoApp Project pTk Version 1.0.3

Re: [Coapp-developers] Ptk exception

2011-06-09 Thread Garrett Serack
In ProgramFinder.AddPathsToList() add this at the top of the function: foreach (var p in Environment.ExpandEnvironmentVariables(paths).Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries)) { Console.WriteLine(p); } And tell me what you see... something has got an illegal c

[Coapp-developers] Ptk exception

2011-06-09 Thread Eric Schultz
I've been having this problem with ptk in previous versions and now no matter what I do. It clearly works for others so I'm not sure what's going on. Anytime I run ptk, I get an exception which I've attached to this message. Also, I've attached the input file. (Yes this was to make a fork of bzip2