Re: [Pharo-users] Saving to local git and "Loading all file names from http://...pharo5/inbox"

2016-06-03 Thread Dale Henrichs
On 6/3/16 2:43 AM, Otto Behrens wrote: For FileTree repos it is even better to just load the package (Monticello does a good job of only loading the changed packages and we're looking at packages already on disk) ... ... I have an extension to Metacello for Filetree repos (it's only been aroun

Re: [Pharo-users] [UFFI] Call a function where argument type is char ** (argv)

2016-06-03 Thread Blondeau Vincent
Hello, So, we tried with Thibault Raffaillac and we succeed to have this kind of code: | externalArray | parameters := #('R' '--no-save' 'silent'). [ externalArray := FFIExternalArray externalNewType: 'void*' size: parameters size. parameters wit

Re: [Pharo-users] SandstoneDB for Pharo maintainer?

2016-06-03 Thread Udo Schneider
On 02/06/16 22:11, Ramon Leon wrote: It's open commit, feel free to commit your fixes; I'm no longer maintaining and left it open for all. Will do - it's mostly only a FileReference vs. String mixup. CU, Udo

Re: [Pharo-users] Saving to local git and "Loading all file names from http://...pharo5/inbox"

2016-06-03 Thread Dale Henrichs
In the Monticello Browser, select the repository that you will be saving your package to and use the "Flush cached versions" menu item ... it seems that you have to do it before each package save... Dale On 6/3/16 12:13 AM, Peter Uhnak wrote: On Wed, Jun 01, 2016 at 10:28:12PM -0700, Dale Hen

Re: [Pharo-users] Saving to local git and "Loading all file names from http://...pharo5/inbox"

2016-06-03 Thread Otto Behrens
> For FileTree repos it is even better to just load the package (Monticello > does a good job of only loading the changed packages and we're looking at > packages already on disk) ... ... I have an extension to Metacello for > Filetree repos (it's only been around for about 3 years) that ignores >

Re: [Pharo-users] Saving to local git and "Loading all file names from http://...pharo5/inbox"

2016-06-03 Thread Peter Uhnak
On Wed, Jun 01, 2016 at 10:28:12PM -0700, Dale Henrichs wrote: > > FWIW, I've found that if I manually flush the cache for each package before > I save it, I don't have to wait the minute or so for all of the repos to be > refreshed ... > How can I do that? Peter