On Wed, Apr 4, 2012 at 3:59 AM, Laurent Carlier <lordhea...@gmail.com> wrote: >> Hi. I'm having trouble creating an Archlinux installation package. It >> seems to create it successfully, but when i check the destination >> folder it's empty and there is no PKGBUILD file. Can somebody >> reproduce this? >> >> Thanks! >> > > Can you post a project that reproduce the issue ? > Can you post the log of the package building process ? > > The first step is to fill an issue on the bug tracker https://code.google.com/p/gambas/wiki/Help?tm=3 > > Currently i cannot reproduce this bug, but i'm on the way to add some new features (extra dependencies and extra files support) > > ++ > > > ------------------------------------------------------------------------------ > Better than sec? Nothing is better than sec when it comes to > monitoring Big Data applications. Try Boundary one-second > resolution app monitoring today. Free. > http://p.sf.net/sfu/Boundary-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user
This issue is not project specific. If you take a look at the Packager.module line #1547(rev 4594) [0] you should see the command: RunCommand("cp " & String.LCase$($sName) & "-" & $sVersion & "-1*.tar.* " & Path &/ "", sBuildDir) If you execute it (ergo, try to build a package) on a path containing at least 1 space character, it will fail to copy the built files. The <Path> and <String.LCase$($sName)> variables should be escaped using Shell$(VAR) for it to work without failing. Other variables should also be escaped to avoid issues. Thanks! [0] http://gambas.svn.sourceforge.net/viewvc/gambas/gambas/trunk/app/src/gambas3/.src/Packager/Package.module?revision=4594&view=markup&pathrev=4594#l1547 ------------------------------------------------------------------------------ Better than sec? Nothing is better than sec when it comes to monitoring Big Data applications. Try Boundary one-second resolution app monitoring today. Free. http://p.sf.net/sfu/Boundary-dev2dev _______________________________________________ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user