Re: module availability problem

2019-07-31 Thread Marcel Timmerman
Hi JJ Merelo, Thanks for your answer. I must have packaged it wrong indeed. I'll try to fix that... M Just the former is available: ID|From                             |Package  

Re: module availability problem

2019-07-31 Thread JJ Merelo
Takes a couple of hours, in general. What module was it? You obviously bumped up the version number, right? El mié., 31 jul. 2019 a las 11:19, Marcel Timmerman () escribió: > Hi, > > I've a problem with zef that it is not installing the newest module in > town. I had uploaded a module a few days

Re: module availability problem

2019-07-31 Thread JJ Merelo
Just the former is available: ID|From |Package|Description

module availability problem

2019-07-31 Thread Marcel Timmerman
Hi, I've a problem with zef that it is not installing the newest module in town. I had uploaded a module a few days ago to CPAN to remove a bug but zef does not notice it. On http://modules.perl6.org/ I also see that there isn't the newest yet. How does the process work and how much time

Re: module availability problem

2019-07-31 Thread Marcel Timmerman
Hi JJ Merelo, Takes a couple of hours, in general. What module was it? You obviously bumped up the version number, right? Yes I did. Available is Gnome::Gdk3 version 0.14.6 but on CPAN there's already 0.14.7 uploaded on wed 24th of Juli. El mié., 31 jul. 2019 a las 11:19, Marcel Timmerman

Re: while(<>){...} analog?

2019-07-31 Thread William Michels via perl6-users
Hi Patrick, I used both your examples as perl6 one-liners. I'm not sure why, but I had to change .split(':') either to .split(":") or .split(/\:/) for both example to work. Maybe it's a command-line thing? Possibly because I'm on a Mac? Also, to get the second example to work I change the 'for

Re: while(<>){...} analog?

2019-07-31 Thread Andy Bach
> , but I had to change .split(':') either to .split(":") or because your -e ' ' quotes are the same, so bash breaks it up into 3 chunks say .split( : )[0, 2, 1, 5].join("\t") for and perl just gets the first as the "program" From: William Michels via

Re: while(<>){...} analog?

2019-07-31 Thread Brad Gilbert
See https://docs.perl6.org/language/quoting for more information. Really you only need to remember that ' ' is very bare-bones, while " " has more features. --- Single quotes only allow \\, \qq[...] and escaping the delimiter with \ (All other backslashes are left as they are in the text.)

Re: while(<>){...} analog?

2019-07-31 Thread William Michels via perl6-users
Great explanation, Andy. Thank you! Actually it's pretty exciting that split now works as a method in perl6, including splitting on a regex as in ".split(/\:+/)" ...see first line below (REPL example): > say $_ = "apple:banana:carrot:dragonfruit::favabean".split(/\:+/).join("\t"); apple banana

Re: module availability problem

2019-07-31 Thread Marcel Timmerman
Hi JJ Merelo, Everything is ok now, I can install newest version. Thank you very much for finding this error. In the mean time I've been busy making an uploader yesterday which saves me some handwork making the git archive and uploading it to PAUSE using its webinterface. It makes use of

Re: module availability problem

2019-07-31 Thread Elizabeth Mattijsen
Have not looked at the code. How does that compare to App::Mi6 ?? (which also uses CPAN::Uploader::Tiny, btw). > On 31 Jul 2019, at 20:08, Marcel Timmerman wrote: > > Hi JJ Merelo, > > Everything is ok now, I can install newest version. Thank you very much for > finding this error. > > In