ยปรถยซ Welcome to Perl 6! | perl6.org/ | evalbot usage: 'p6: say 3;' or /msg camelia p6: ... | irclog: irc.perl6.org or colabti.org/irclogger/irclogger_log/perl6 | UTF-8 is our friend! ๐ฆ Set by Zoffix on 25 July 2018. |
|||
squashable6 | ๐ zoffixznet++ opened issue โ.coll method is referenced but leads to 404โ: github.com/perl6/doc/issues/2435 | 00:02 | |
๐ zoffixznet++ labeled issue โ.coll method is referenced but leads to 404โ (docs): github.com/perl6/doc/issues/2435 | |||
๐ zoffixznet++ labeled issue โLTA placement of collation docsโ (docs): github.com/perl6/doc/issues/2434 | |||
00:04
markk left,
markk joined
00:05
xi- left,
p6bannerbot sets mode: +v markk,
xi- joined
|
|||
Geth | doc: 07ece9ba13 | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Language/experimental.pod6 Fix `coll` URL Fixes github.com/perl6/doc/issues/2435 D#2435 |
00:05 | |
synopsebot | Link: doc.perl6.org/language/experimental | ||
D#2435 [closed]: github.com/perl6/doc/issues/2435 [docs] .coll method is referenced but leads to 404 | |||
squashable6 | ๐ zoffixznet++ closed issue โ.coll method is referenced but leads to 404โ: github.com/perl6/doc/issues/2435 | ||
00:06
p6bannerbot sets mode: +v xi-,
bhm left,
tobs` left
00:07
bhm joined,
p6bannerbot sets mode: +v bhm
00:10
kiwi_29 joined,
p6bannerbot sets mode: +v kiwi_29
|
|||
buggable | New CPAN upload: Symbol-Scan-0.0.1.tar.gz by DOOM cpan.metacpan.org/authors/id/D/DO/...0.1.tar.gz | 00:11 | |
New CPAN upload: Augment-Util-0.0.1.tar.gz by DOOM cpan.metacpan.org/authors/id/D/DO/...0.1.tar.gz | |||
New CPAN upload: Object-Examine-0.0.1.tar.gz by DOOM cpan.metacpan.org/authors/id/D/DO/...0.1.tar.gz | |||
New CPAN upload: method-menu-0.0.1.tar.gz by DOOM cpan.metacpan.org/authors/id/D/DO/...0.1.tar.gz | |||
00:17
pecastro left,
w_richard_w joined
00:18
p6bannerbot sets mode: +v w_richard_w
00:19
dct joined,
p6bannerbot sets mode: +v dct
00:21
kiwi_29 left
00:28
w_richard_w left
00:53
justsomeguy joined,
p6bannerbot sets mode: +v justsomeguy
01:14
fake_space_whale joined
01:15
p6bannerbot sets mode: +v fake_space_whale
01:16
Bucciarati left,
Bucciarati joined
01:17
p6bannerbot sets mode: +v Bucciarati
|
|||
Xliff | Is there any way to use the Perl6 grammar to match perl6 code in a string? | 01:18 | |
For example... I want to be able to add to method calls, so I'd like to invoke the parser to catch all methods. Is that possible? | |||
timotimo | you can invoke the parser, but it'll also do stuff like execute begin blocks for you | 01:20 | |
or the values for constants, as well as traits | |||
even if you stop it at stage parse, it won't help against arbitrary code being run | 01:21 | ||
01:23
atta left,
atta joined
01:24
p6bannerbot sets mode: +v atta
|
|||
Xliff | Ah. I was just hoping it would help make parsing method definitions easier. | 01:33 | |
Thanks for that. I have to roll my own, then. | |||
01:34
silug left
01:56
bitemyapp19 joined
01:57
bitemyapp19 left
02:04
justsomeguy left
02:25
titsuki left
02:32
kurahaupo left
02:37
leont left
02:52
cognominal-p6 joined
02:53
p6bannerbot sets mode: +v cognominal-p6
|
|||
Geth | doc: 0fe41437e7 | (Richard Hainsworth)++ (committed using GitHub Web editor) | doc/Language/iterating.pod6 Update iterating.pod6 typo: 'a' before 'uniform' |
02:55 | |
synopsebot | Link: doc.perl6.org/language/iterating | ||
squashable6 | ๐๐๐ First contribution by finanalyst++! โฅ | ||
02:57
cognominal-p6 left,
cognominal-p6 joined,
silug joined
02:58
p6bannerbot sets mode: +v cognominal-p6,
p6bannerbot sets mode: +v silug
|
|||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ aa; | 03:05 | |
camelia | ===SORRY!=== Cannot find method 'match': no method cache and no .^find_method |
||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ &aa; | ||
camelia | ๏ฝขaa๏ฝฃ | ||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ &("aa"); | ||
camelia | True | ||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ ::("&aa"); | ||
camelia | ๏ฝขaa๏ฝฃ | ||
03:11
ufobat___ joined,
p6bannerbot sets mode: +v ufobat___
|
|||
Geth | doc: 40b4ae3d3e | (Zoffix Znet)++ | 2 files [v6.d REVIEW] .iterator is given by Mu not Any Propspec: github.com/perl6/roast/commit/1e19...d1ac7cf0f8 |
03:12 | |
03:14
ufobat_ left
03:16
cognominal-p6 left
03:21
pp_ joined,
p6bannerbot sets mode: +v pp_
|
|||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ ::("&aa"); say $/; | 03:21 | |
camelia | ๏ฝขaa๏ฝฃ ๏ฝขaa๏ฝฃ |
||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ aa | 03:22 | |
camelia | ===SORRY!=== Cannot find method 'match': no method cache and no .^find_method |
||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ &aa | ||
camelia | ๏ฝขaa๏ฝฃ | ||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ aa() | 03:23 | |
camelia | ===SORRY!=== Cannot find method 'match': no method cache and no .^find_method |
||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ aa | ||
camelia | ===SORRY!=== Cannot find method 'match': no method cache and no .^find_method |
||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ &aa | ||
camelia | ๏ฝขaa๏ฝฃ | ||
Xliff | m: my regex aa { 'aa' }; say "aa" ~~ /<aa>/ | 03:24 | |
camelia | ๏ฝขaa๏ฝฃ aa => ๏ฝขaa๏ฝฃ |
||
03:38
pp_ left
04:04
ryn1x joined,
p6bannerbot sets mode: +v ryn1x
|
|||
squashable6 | ๐ zoffixznet++ opened issue โMulti-dim `{...}` access not explainedโ: github.com/perl6/doc/issues/2436 | 04:16 | |
๐ zoffixznet++ labeled issue โMulti-dim `{...}` access not explainedโ (new): github.com/perl6/doc/issues/2436 | |||
๐ zoffixznet++ labeled issue โMulti-dim `{...}` access not explainedโ (easy to resolve): github.com/perl6/doc/issues/2436 | |||
๐ zoffixznet++ labeled issue โMulti-dim `{...}` access not explainedโ (docs): github.com/perl6/doc/issues/2436 | |||
๐ zoffixznet++ labeled issue โMulti-dim `{...}` access not explainedโ (good first issue): github.com/perl6/doc/issues/2436 | |||
๐ zoffixznet++ edited issue โMulti-dim `{...}` access not explainedโ: github.com/perl6/doc/issues/2436 | 04:17 | ||
04:20
xi- left
04:21
xi- joined
04:22
p6bannerbot sets mode: +v xi-
04:26
kerframil left,
kerframil joined,
p6bannerbot sets mode: +v kerframil
04:38
kurahaupo joined,
p6bannerbot sets mode: +v kurahaupo
04:59
fake_space_whale left
05:12
troys left
05:15
ryn1x left
06:12
cognominal-p6 joined
06:13
p6bannerbot sets mode: +v cognominal-p6,
cognominal-p6 left
06:14
cognominal-p6 joined,
p6bannerbot sets mode: +v cognominal-p6
|
|||
holyghost | .tell Zoffix I've added Mathx::Stat to github.com/theholyghost2, it compiles and needs tests | 06:22 | |
yoleaux | holyghost: I'll pass your message to Zoffix. | ||
holyghost | .tell Zoffix as I'm busy with personal things next week, I'll manage compiles for Bayes::Learn, Game::Markov, AI::Agent next week starting from wednesday | 06:27 | |
yoleaux | holyghost: I'll pass your message to Zoffix. | ||
06:30
lizmat_ joined,
p6bannerbot sets mode: +v lizmat_
06:33
lizmat left
06:36
cognominal-p6 left
06:45
kerframil left
|
|||
squashable6 | ๐ JJ++ wrote a comment on โMissing /language/createโฆโ: github.com/perl6/doc/issues/2433#i...-435566049 | 07:05 | |
07:06
jabits joined,
p6bannerbot sets mode: +v jabits
07:10
jmerelo joined
07:11
p6bannerbot sets mode: +v jmerelo,
jabits left
07:15
domidumont joined
07:16
p6bannerbot sets mode: +v domidumont
|
|||
squashable6 | ๐ JJ++ wrote a comment on โMissing /language/createโฆโ: github.com/perl6/doc/issues/2433#i...-435566827 | 07:20 | |
Geth | doc: b6f61012be | (JJ Merelo)++ | 2 files create-cli added back You have to add them by hand to the control file, or they will disappear. Also some reformatting. Refs #2433 but does not close until all the missing files are discovered. |
07:27 | |
07:27
AlexDaniel left
|
|||
squashable6 | ๐ JJ++ opened issue โCheck that all files in โฆโ: github.com/perl6/doc/issues/2437 | 07:35 | |
๐ JJ++ labeled issue โCheck that all files in โฆโ (site): github.com/perl6/doc/issues/2437 | |||
Geth | doc: JJ self-assigned Check that all files in /language appear in the control file github.com/perl6/doc/issues/2437 007bb6af36 | (JJ Merelo)++ | util/manage-page-order.p6 |
||
07:36
dakkar joined
07:37
p6bannerbot sets mode: +v dakkar
|
|||
squashable6 | ๐ JJ++ closed issue โCheck that all files in โฆโ: github.com/perl6/doc/issues/2437 | ||
Geth | doc: JJ self-assigned Missing /language/create-cli and possibly other pages from live site github.com/perl6/doc/issues/2433 8a61a9ca23 | (JJ Merelo)++ | 2 files |
07:45 | |
squashable6 | ๐ JJ++ closed issue โMissing /language/createโฆโ: github.com/perl6/doc/issues/2433 | ||
08:00
dct left
08:03
dct joined,
p6bannerbot sets mode: +v dct
08:15
holyghost left
08:17
dct left
08:18
dct joined,
p6bannerbot sets mode: +v dct
|
|||
squashable6 | ๐ JJ++ wrote a comment on โLTA placement of collation docsโ: github.com/perl6/doc/issues/2434#i...-435570157 | 08:25 | |
08:30
dct left
|
|||
Geth | doc: cc34198964 | (JJ Merelo)++ | 2 files Adds example for multi-dim {} slicing closes #2436 |
08:40 | |
squashable6 | ๐ JJ++ closed issue โMulti-dim `{...}` access not explainedโ: github.com/perl6/doc/issues/2436 | ||
08:54
dct joined,
p6bannerbot sets mode: +v dct
|
|||
squashable6 | ๐ JJ++ labeled issue โThere are two kinds of aโฆโ (docs): github.com/perl6/doc/issues/2409 | 08:56 | |
๐ JJ++ labeled issue โThere are two kinds of aโฆโ (update): github.com/perl6/doc/issues/2409 | |||
Geth | doc: e6f2ee66d3 | (JJ Merelo)++ | doc/Language/regexes.pod6 Rephrases sentence, closes #2409 |
09:01 | |
synopsebot | Link: doc.perl6.org/language/regexes | ||
squashable6 | ๐ JJ++ closed issue โThere are two kinds of aโฆโ: github.com/perl6/doc/issues/2409 | ||
Geth | doc: 3302ebe6d0 | (JJ Merelo)++ | doc/Language/regexes.pod6 In fact, they are matching adverbs. Reindexed. Closes #2408 |
09:05 | |
synopsebot | Link: doc.perl6.org/language/regexes | ||
squashable6 | ๐ JJ++ closed issue โRegex or matching adverbs?โ: github.com/perl6/doc/issues/2408 | ||
09:16
dct left
|
|||
Geth | doc: f13ba5d8a3 | (JJ Merelo)++ | doc/Type/Scalar.pod6 Adds sub as suggested to close #2393 |
09:21 | |
synopsebot | Link: doc.perl6.org/type/Scalar | ||
squashable6 | ๐ JJ++ closed issue โcas docs don't mention iโฆโ: github.com/perl6/doc/issues/2393 | ||
09:24
dct joined,
p6bannerbot sets mode: +v dct
09:32
cognominal-p6 joined
09:33
p6bannerbot sets mode: +v cognominal-p6
09:38
sno left,
cognominal-p6 left,
cognominal-p6 joined
09:39
p6bannerbot sets mode: +v cognominal-p6,
sno joined
09:40
p6bannerbot sets mode: +v sno
09:46
rindolf joined
09:47
p6bannerbot sets mode: +v rindolf
09:55
census left
|
|||
squashable6 | ๐ JJ++ opened issue โRearrange the pragmas pageโ: github.com/perl6/doc/issues/2438 | 10:00 | |
๐ JJ++ labeled issue โRearrange the pragmas pageโ (docs): github.com/perl6/doc/issues/2438 | |||
๐ JJ++ labeled issue โRearrange the pragmas pageโ (update): github.com/perl6/doc/issues/2438 | |||
10:01
jmerelo left
|
|||
Xliff | Can someone help me get debugging set up with Commma? | 10:04 | |
10:07
dct left
10:16
icey22 joined,
icey22 left
10:17
joy_ left
|
|||
Xliff | m: $a = "aa"; $a ~~ s!a!a{!; say $a | 10:18 | |
camelia | 5===SORRY!5=== Error while compiling <tmp> Variable '$a' is not declared at <tmp>:1 ------> 3<BOL>7โ5$a = "aa"; $a ~~ s!a!a{!; say $a |
||
Xliff | m: my $a = "aa"; $a ~~ s!a!a{!; say $a | ||
camelia | 5===SORRY!5=== Error while compiling <tmp> Prefix ! requires an argument, but no valid term found at <tmp>:1 ------> 3my $a = "aa"; $a ~~ s!a!a{!7โ5; say $a expecting any of: prefix |
||
10:18
|oLa| left
|
|||
Xliff | m: my $a = "aa"; $a ~~ s!a!a\{!; say $a | 10:18 | |
camelia | a{a | ||
Xliff | m: my $a = "aa"; $a ~~ s!a!a{'{'}!; say $a | 10:19 | |
camelia | a{a | ||
10:21
joy_ joined,
p6bannerbot sets mode: +v joy_,
dct joined,
p6bannerbot sets mode: +v dct
10:25
HaraldJoerg joined,
p6bannerbot sets mode: +v HaraldJoerg
10:27
dct left
10:41
lizmat_ is now known as lizmat
10:53
molaf joined
10:54
p6bannerbot sets mode: +v molaf
10:56
pecastro joined
10:57
p6bannerbot sets mode: +v pecastro
11:03
leont joined
11:04
p6bannerbot sets mode: +v leont
11:14
cognominal-p6 left
11:24
HaraldJoerg left
|
|||
Geth | ecosystem: 7f952cb9e9 | (Ahmad M. Zawawi)++ (committed using GitHub Web editor) | META.list ๐ฅ Move MagickWand to CPAN |
11:44 | |
doc: chsanch++ created pull request #2439: Fix #2438. Change items to level-2 headers in pragmas page |
11:58 | ||
squashable6 | ๐ chsanch++ opened pull request โFix #2438. Change items โฆโ: github.com/perl6/doc/pull/2439 | ||
12:07
molaf left
|
|||
Xliff | lizmat? | 12:15 | |
.tell lizmat Do you know if Method::Also will ever be able to handle multi's? | 12:16 | ||
yoleaux | Xliff: I'll pass your message to lizmat. | ||
12:23
jogi joined,
p6bannerbot sets mode: +v jogi
12:24
jogi left
12:27
Skarsnik joined
12:28
p6bannerbot sets mode: +v Skarsnik
12:36
lucasb joined
12:37
p6bannerbot sets mode: +v lucasb
|
|||
buggable | New CPAN upload: MagickWand-0.1.0.tar.gz by AZAWAWI cpan.metacpan.org/authors/id/A/AZ/...1.0.tar.gz | 12:51 | |
12:58
lucasb left
|
|||
squashable6 | ๐ zoffixznet++ wrote a comment on โFix #2438. Change items โฆโ: github.com/perl6/doc/pull/2439#iss...-435586837 | 13:10 | |
๐ zoffixznet++ wrote a comment on โLTA placement of collation docsโ: github.com/perl6/doc/issues/2434#i...-435587040 | 13:14 | ||
13:27
bichu joined,
p6bannerbot sets mode: +v bichu
|
|||
bichu | i am that common on this chat. I was using Debian and noticed that we can install perl6 using apt-get | 13:28 | |
not that* | |||
perl6-zef is being reviewed still for Debian 9 Stretch | |||
i just installed it, so thought I should let the communithy know, as the online docs didnt have something relating to that. | 13:29 | ||
so on Debian 9, we are not forced to build. | |||
bye for now | 13:30 | ||
13:30
marmor joined,
bichu left,
p6bannerbot sets mode: +v marmor
13:53
fake_space_whale joined
13:54
p6bannerbot sets mode: +v fake_space_whale,
benjikun joined
13:55
p6bannerbot sets mode: +v benjikun
14:03
poohman joined,
p6bannerbot sets mode: +v poohman
14:08
cognominal-p6 joined
14:09
p6bannerbot sets mode: +v cognominal-p6
|
|||
buggable | New CPAN upload: Libclang-0.2.0.tar.gz by AZAWAWI modules.perl6.org/dist/Libclang:cpan:AZAWAWI | 14:11 | |
timotimo | cool | 14:17 | |
14:48
shareable6 left,
shareable6 joined,
ChanServ sets mode: +v shareable6
14:49
p6bannerbot sets mode: +v shareable6
14:57
marmor left
14:58
cognominal-p6 left,
cognominal-p6 joined
14:59
p6bannerbot sets mode: +v cognominal-p6
15:01
Twipply13 joined,
Twipply13 left,
marmor joined
15:02
p6bannerbot sets mode: +v marmor
|
|||
Geth | doc: 12181fc94c | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Type/Encoding/Registry.pod6 Concisify Encoding::Registry subtitle |
15:08 | |
synopsebot | Link: doc.perl6.org/type/Encoding::Registry | ||
squashable6 | ๐ zoffixznet++ wrote a comment on โEncoding::Encoder / Encoโฆโ: github.com/perl6/doc/issues/2415#i...-435595054 | 15:09 | |
15:18
stmuk_ joined
15:31
titsuki joined
15:32
p6bannerbot sets mode: +v titsuki
15:36
titsuki left
15:41
nativecallable6 left,
nativecallable6 joined,
p6bannerbot sets mode: +v nativecallable6
15:42
AlexDaniel joined,
p6bannerbot sets mode: +v AlexDaniel
15:49
patrickb joined
15:50
p6bannerbot sets mode: +v patrickb
|
|||
squashable6 | ๐ chsanch++ synchronize pull request โFix #2438. Change items โฆโ: github.com/perl6/doc/pull/2439 | 16:03 | |
16:06
molaf joined,
p6bannerbot sets mode: +v molaf
16:10
cognominal-p6 left
16:15
froggytoad joined,
froggytoad left
16:25
uzl joined,
p6bannerbot sets mode: +v uzl
|
|||
uzl | Hello #perl6! | 16:26 | |
Yesterday I uploaded a module to/through PAUSE to CPAN but it hasn't showed up to neither metacpan nor P6 module directory. | 16:27 | ||
Skarsnik | Hello, what is the name of the module? | 16:28 | |
uzl | This is it: cpan.metacpan.org/authors/id/U/UZ/...ISF/Perl6/ | ||
Skarsnik: ENIGMA::Machine | |||
Skarsnik | hm yes it does not show on modules.perl6.org | 16:29 | |
sorry I am not familiar with cpan module sadly | |||
MasterDuke | uzl: are you sure your META6.json is correct? i don't know cpan either, but i believe some error in the META6.json is a common cause of modules not showing up | 16:30 | |
uzl | MasterDuke: gitlab.com/uzluisf/ENIGMA-Machine/...META6.json <- This is the module's META6.json | 16:32 | |
16:33
titsuki joined,
dakkar left
|
|||
Skarsnik | I think it's Test::Meta to test metafile? | 16:33 | |
MasterDuke | uzl: nothing jumps out at me, but yeah, have you run it through Test::Meta? | 16:34 | |
16:34
p6bannerbot sets mode: +v titsuki
16:35
poohman left
|
|||
uzl | MasterDuke: so `zef install Test::Meta` and feed the META6.json to it? | 16:35 | |
MasterDuke | uzl: i'd guess so, but i haven't used it myself | 16:38 | |
16:39
cjkinni left
|
|||
uzl | Thanks. I'll see what I can do. | 16:40 | |
MasterDuke: Everything seems to be okay with META6.json -> i.imgur.com/s1GRiR2.png | 16:44 | ||
16:47
Zoffix joined,
p6bannerbot sets mode: +v Zoffix
|
|||
Zoffix | uzl: did you get any email from PAUSE? Does it say all was OK? There should be a third .meta file for the dist in cpan.metacpan.org/authors/id/U/UZ/...ISF/Perl6/ (like in cpan.metacpan.org/authors/id/Z/ZO/ZOFFIX/Perl6/ ) | 16:48 | |
uzl | Zoffix: Hold on a sec, let me check my email. | 16:49 | |
Zoffix | uzl: and how did you make that .tar? By hand or with App::Mi6 or something? | ||
16:50
noganex_ left,
noganex joined
16:51
uzl left,
uzl joined,
p6bannerbot sets mode: +v noganex
16:52
p6bannerbot sets mode: +v uzl
|
|||
Zoffix | Though this person got .meta files but the modules are also not on modules.perl6.org cpan.metacpan.org/authors/id/D/DO/DOOM/Perl6/ | 16:52 | |
16:53
lizmat left
|
|||
Zoffix | ah, k, those are just invalid META.json files | 16:53 | |
(well, "just"... we'll need to teach PAUSE to reject such uploads) | |||
uzl | Zoffix: What I received regarding the upload -> i.imgur.com/4p1KTAp.png | 16:54 | |
Zoffix | uzl: were you using App::Mi6 to make the tarball? | 16:55 | |
16:56
lizmat joined,
p6bannerbot sets mode: +v lizmat
|
|||
uzl | Zoffix: just the tar command I posted earlier. | 16:57 | |
Zoffix | try reuploading with the Mi6 maybe | 16:59 | |
eco: App::Mi6 | |||
buggable | Zoffix, App::Mi6 'minimal authoring tool for Perl6': modules.perl6.org/dist/App::Mi6:cpan:SKAJI | ||
Zoffix | PSA: check the tarball before putting it on CPAN. When I tried with my modules long ago, it nuked my README content | ||
Zoffix & | 17:00 | ||
17:00
Zoffix left
|
|||
uzl | Alright, I'll try to do that! | 17:02 | |
17:02
uzl left
17:05
cognominal-p6 joined
17:06
p6bannerbot sets mode: +v cognominal-p6,
cognominal-p6 left
17:07
cognominal-p6 joined
17:08
p6bannerbot sets mode: +v cognominal-p6,
roguelazer joined
17:09
p6bannerbot sets mode: +v roguelazer
17:21
beo17 joined,
beo17 left
|
|||
squashable6 | ๐ zoffixznet++ wrote a comment on โLTA placement of collation docsโ: github.com/perl6/doc/issues/2434#i...-435605895 | 17:28 | |
๐ zoffixznet++ edited issue โLTA placement of collation docsโ: github.com/perl6/doc/issues/2434 | |||
17:32
MasterDuke left
|
|||
AlexDaniel | squashable6: status | 17:32 | |
squashable6 | AlexDaniel, ๐๐ SQUASHathon is in progress! The end of the event in โ18 hours. See github.com/rakudo/rakudo/wiki/Mont...Squash-Day | ||
AlexDaniel, Log and stats: gist.github.com/0d386e671b5786cb36...b1cd002562 | |||
AlexDaniel | had a thing to do today, unfortunately. Hopefully will have some time tonight for the squashathon | 17:33 | |
squashable6 | ๐ zoffixznet++ opened issue โLock::Async vs. Lockโ: github.com/perl6/doc/issues/2440 | 17:35 | |
Geth | doc: a3c764bf49 | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Language/experimental.pod6 Bravery is optional |
17:37 | |
synopsebot | Link: doc.perl6.org/language/experimental | ||
squashable6 | ๐ zoffixznet++ labeled issue โLock::Async vs. Lockโ (docs): github.com/perl6/doc/issues/2440 | 17:40 | |
Geth | mu: f4f135337c | (Zoffix Znet)++ (committed using GitHub Web editor) | misc/perl6advent-2018/schedule Add "Those lazy Perl 6 developers!" article to schedule |
17:45 | |
17:50
ufobat joined,
ufobat left,
marmor left
17:54
jmerelo joined
17:55
p6bannerbot sets mode: +v jmerelo
|
|||
jmerelo | squashable: status | 17:55 | |
squashable6 | jmerelo, ๐๐ SQUASHathon is in progress! The end of the event in โ18 hours. See github.com/rakudo/rakudo/wiki/Mont...Squash-Day | ||
jmerelo, Log and stats: gist.github.com/4a125cb35a67bc6665...6686a5bd06 | |||
๐ JJ++ labeled issue โLock::Async vs. Lockโ (update): github.com/perl6/doc/issues/2440 | 17:58 | ||
18:01
ryao10 joined,
ryao10 left
|
|||
squashable6 | ๐ jnthn++ wrote a comment on โLock::Async vs. Lockโ: github.com/perl6/doc/issues/2440#i...-435608480 | 18:03 | |
๐ JJ++ submitted a review on pull request โFix #2438. Change items โฆโ: github.com/perl6/doc/pull/2439#pul...-171336177 | |||
๐ JJ++ wrote a comment on a review for โFix #2438. Change items โฆโ: github.com/perl6/doc/pull/2439#dis...r230562898 | |||
๐ JJ++ submitted a review on pull request โFix #2438. Change items โฆโ: github.com/perl6/doc/pull/2439#pul...-171336186 | 18:04 | ||
๐ rorphanos++ opened issue โBroken link on page httpโฆโ: github.com/perl6/doc/issues/2441 | 18:17 | ||
๐๐๐ First contribution by rorphanos++! โฅ | |||
๐ zoffixznet++ wrote a comment on a review for โFix #2438. Change items โฆโ: github.com/perl6/doc/pull/2439#dis...r230563351 | 18:18 | ||
๐ zoffixznet++ submitted a review on pull request โFix #2438. Change items โฆโ: github.com/perl6/doc/pull/2439#pul...-171336623 | |||
๐ JJ++ wrote a comment on โBroken link on page httpโฆโ: github.com/perl6/doc/issues/2441#i...-435610130 | 18:25 | ||
TimToady | ~/me agrees that |Z is problematically ambiguous with lots of other infixes, and notes that he was reserving F in his head for a generalized flattening metaop, in the absence of any better suggestion | ||
TimToady goes back to vacating | |||
jmerelo | TimToady: why not _? As in, well, flattening to the ground. | ||
Geth | doc: 58811aced3 | (JJ Merelo)++ | doc/Language/regexes.pod6 Eliminates extra e and reflows, closes #2441 |
18:28 | |
synopsebot | Link: doc.perl6.org/language/regexes | ||
squashable6 | ๐ JJ++ closed issue โBroken link on page httpโฆโ: github.com/perl6/doc/issues/2441 | ||
18:28
noganex_ joined
18:29
p6bannerbot sets mode: +v noganex_
|
|||
squashable6 | ๐ JJ++ wrote a comment on a review for โFix #2438. Change items โฆโ: github.com/perl6/doc/pull/2439#dis...r230563697 | 18:30 | |
๐ JJ++ submitted a review on pull request โFix #2438. Change items โฆโ: github.com/perl6/doc/pull/2439#pul...-171336990 | |||
18:32
noganex left
|
|||
TimToady | yes, _ is another possibility that I've considered, and could yet settle on, if we decide that flat() is inadequate | 18:34 | |
but 6d is a good time to consider it | 18:35 | ||
Geth | doc: 36c1c7c3a2 | (JJ Merelo)++ | doc/Type/Num.pod6 Improves documentation for Infinity Adding examples which represent different uses as requested. Closes #2341 |
18:39 | |
synopsebot | Link: doc.perl6.org/type/Num | ||
squashable6 | ๐ JJ++ closed issue โRFE: wording change to Inf in the documentationโ: github.com/perl6/doc/issues/2341 | ||
18:39
poohman joined,
p6bannerbot sets mode: +v poohman
|
|||
poohman | m: say "Hello" | 18:39 | |
camelia | Hello | ||
poohman | m: enum Spendtype < Food Conv Misc> | 18:40 | |
camelia | ( no output ) | ||
poohman | If ($*IN.get.Str ~~ Spendtype) { .. } | 18:41 | |
does that make sense?? | 18:42 | ||
jmerelo | poohman: which one? | ||
enums are not strings | |||
You might want to use a Set | |||
poohman | Can I check the std input against the enum Spendtype like I have done above?? | ||
jmerelo | poohman: not really. Enums are different types. But, as said above, you might want to simply use a set and the "belongsto" operator. | 18:43 | |
poohman | if I create a variable of type Spendtype - what can I assign to it?? | 18:45 | |
can I directly say? | |||
my Spendtype $a = Food;? | 18:46 | ||
moritz | just try it? | ||
poohman | sorry | ||
will do that first | |||
moritz | m: enum Spendtype < Food Conv Misc>; my Stendtype $a = Food; say $a | ||
camelia | 5===SORRY!5=== Type 'Stendtype' is not declared. Did you mean any of these? Spendtype SeekType at <tmp>:1 ------> 3pendtype < Food Conv Misc>; my Stendtype7โ5 $a = Food; say $a Malformed my at <tmp>:1 ------> 3enuโฆ |
||
moritz | m: enum Spendtype < Food Conv Misc>; my Spendtype $a = Food; say $a | ||
camelia | Food | ||
poohman | m: enum Spendtype < Food Conv Misc>; my Spendtype $a = Food; say $a.^name | 18:47 | |
camelia | Spendtype | ||
tobs | m: enum SpendType <Food Conv Misc>; my $input = "Food"; say SpendType::{$input}; say SpendType::{"Non$input"} | 18:48 | |
camelia | Food (Any) |
||
tobs | ^ That's what I use when I get input that directly maps to an Enum | ||
18:50
molaf left
|
|||
poohman | ok so since it is not stored as Strings - to check if my input matches I will have to make a set with the same and individually compare and assign to the variable | 18:51 | |
no way to coerce the input directly to the enum members | |||
? | |||
geekosaur | that's what tobs showed you | 18:52 | |
but no, an enum is not made of strings | |||
m: enum Spendtype < Food Conv Misc>; say Food.^mro | 18:53 | ||
camelia | ((Spendtype) (Int) (Cool) (Any) (Mu)) | ||
geekosaur | (there's a stash with string to value mappings, which is what tobs used) | 18:54 | |
poohman | cool | ||
timotimo | you can have a stringy enum | 18:55 | |
can't you? | |||
m: enum Spendtype is Str < Food Conv Misc >; say Food.^mro | |||
camelia | 5===SORRY!5=== Error while compiling <tmp> Base type has already been set for Spendtype at <tmp>:1 |
||
geekosaur | I tjhink that's an open bug? | ||
timotimo | m: enum Str Spendtype < Food Conv Misc >; say Food.^mro | ||
camelia | 5===SORRY!5=== Error while compiling <tmp> An enum must supply an expression using <>, ยซยป, or () at <tmp>:1 ------> 3enum Str7โ5 Spendtype < Food Conv Misc >; say Food. |
||
timotimo | m: Str enum Spendtype < Food Conv Misc >; say Food.^mro | ||
camelia | 5===SORRY!5=== Error while compiling <tmp> Two terms in a row at <tmp>:1 ------> 3Str7โ5 enum Spendtype < Food Conv Misc >; say expecting any of: infix infix stopper statement end statemenโฆ |
||
timotimo | m: my Str enum Spendtype < Food Conv Misc >; say Food.^mro | ||
camelia | ===SORRY!=== Incompatible MROs in P6opaque rebless for types Int and Spendtype |
||
timotimo | m: enum Spendtype of Str < Food Conv Misc >; say Food.^mro | 18:56 | |
camelia | 5===SORRY!5=== Error while compiling <tmp> No such method 'set_of' for invocant of type 'Perl6::Metamodel::EnumHOW'. Did you mean 'set_rw'? at <tmp>:1 |
||
geekosaur | you're supposed to but it doesn't currently work | ||
timotimo | well, that's not one of those | ||
poohman | m: enum Spendtype <"Food" "Conv" "Misc"> | ||
camelia | ( no output ) | ||
timotimo | m: enum SpendType Food => "food", Conv => "conv", Misc => "misc"; say Misc.^mro; say Misc.Str | 18:57 | |
camelia | 5===SORRY!5=== Error while compiling <tmp> An enum must supply an expression using <>, ยซยป, or () at <tmp>:1 ------> 3enum SpendType7โ5 Food => "food", Conv => "conv", Misc => |
||
timotimo | m: enum SpendType (Food => "food", Conv => "conv", Misc => "misc"); say Misc.^mro; say Misc.Str | ||
camelia | ((SpendType) (Str) (Cool) (Any) (Mu)) misc |
||
timotimo | m: enum SpendType ("Food", "Conv", "Misc"); say Misc.^mro; say Misc.Str | ||
camelia | ((SpendType) (Int) (Cool) (Any) (Mu)) Misc |
||
timotimo | ok, so only with pairs, it seems like | ||
poohman | m: enum SpendType ("Food", "Conv", "Misc"); say Misc.^mro; say Misc.Str.^mro | 18:58 | |
camelia | ((SpendType) (Int) (Cool) (Any) (Mu)) ((Str) (Cool) (Any) (Mu)) |
||
geekosaur | tbh if I wanted to use strings there I'd probably use a Set instead | 18:59 | |
timotimo | it won't give you a symbol for them then, though, no? | ||
geekosaur | the question is whether I'd care in that case. usually, I wouldn't | 19:00 | |
jmerelo | Hey y'all, there's a Squashathon going on: github.com/perl6/ecosystem/wiki/SQUASHathon May I interest you in solving 1 or 10 documentation issues? github.com/perl6/doc/issues | 19:01 | |
Don't let me win the plush Camelia (again)! | |||
poohman | m: enum SpendType ("Food", "Conv", "Misc"); say Misc.^mro; say "Misc".^mro | ||
camelia | ((SpendType) (Int) (Cool) (Any) (Mu)) ((Str) (Cool) (Any) (Mu)) |
||
timotimo | i'm sitting right next to a plush camelia right now :) | ||
poohman: "Misc" there isn't related to the enum any more | |||
jmerelo | timotimo: do it for the lols. | 19:02 | |
poohman | just playing around - got it the first time around | ||
timotimo | right, no problem :) | ||
poohman | jmerelo: Can I be of some help? - be warned - am a newbie | 19:03 | |
but you would have guessed that by now | |||
geekosaur | for doc issues tht can be an advantage: you'd be more likely to spot things that make more sense to developers than users, when the users are the ones who most need the docs | 19:04 | |
and newcomers | |||
Geth | doc: 916307b96e | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Language/glossary.pod6 It's Raku colabti.org/irclogger/irclogger_lo...11-03#l276 |
19:06 | |
synopsebot | Link: doc.perl6.org/language/glossary | ||
Geth | doc: 52f8241460 | (Zoffix Znet)++ | doc/Language/glossary.pod6 s/Perl 6/Perlย 6/ |
19:08 | |
jmerelo | poohman: by all means. Just checking out the documents, seeing if they work for you, raising issues if they don't, will help | ||
poohman: you can check out the issues, see if you can help with any of them. | 19:09 | ||
poohman | jmerelo: will do - had a look already - ill take some time and see if there is something I can do | 19:13 | |
jmerelo | poohman++ | ||
poohman | thanks everybody for the help - later | 19:14 | |
19:14
cognominal-p6 left
|
|||
timotimo | \o/ | 19:14 | |
jmerelo | so, timotimo, where were we? Ah, yes, you were going to help with a doc issue :-) | 19:15 | |
timotimo | um ... well volunteered:? | ||
jmerelo | timotimo: shanghaied, more like :-) | 19:16 | |
timotimo: maybe you can help with this one? github.com/perl6/doc/issues/711 | |||
timotimo: or this one? github.com/perl6/doc/issues/2009 | 19:17 | ||
Geth | ยฆ doc: JJ self-unassigned Lack of Regex Assertions Documentation github.com/perl6/doc/issues/2009 | ||
mu: 13b49bcebe | (Zoffix Znet)++ (committed using GitHub Web editor) | misc/perl6advent-2018/schedule Swap to preferred lang name |
19:25 | ||
19:28
reisinge joined,
p6bannerbot sets mode: +v reisinge,
Cabanossi joined
19:29
p6bannerbot sets mode: +v Cabanossi
|
|||
lizmat sighs | 19:31 | ||
19:32
lucasb joined
19:33
p6bannerbot sets mode: +v lucasb
|
|||
lucasb | yay, can we change the mascot now? :D | 19:33 | |
yoleaux | 15 Oct 2018 15:14Z <Zoffix> lucasb: R#2131 is blocked by R#1289, so it's deferred until 6.e or later. And R#1842 is a Rakudo issue, not a language issue (neither of the classes involved are part of the spec). | ||
synopsebot | R#2131 [open]: github.com/rakudo/rakudo/issues/2131 [@LARRY][consistency] Behavior of match occurrence adverbs: :nth(*) and :nth(*-1) | ||
yoleaux | 15 Oct 2018 15:17Z <Zoffix> lucasb: to clarify, R#2131 is blocked by R#1289, because current behaviour is part of 6.c spec ( github.com/perl6/roast/blob/6.c-er...#L218-L220 ) and any modificationsโif agreed onโwould have to be behind a language version pragma | ||
synopsebot | R#1289 [open]: github.com/rakudo/rakudo/issues/1289 [6.e] Implement a Way to Know Caller's Language | ||
R#1842 [closed]: github.com/rakudo/rakudo/pull/1842 Revert "JSONException -> Rakudo::Internals::JSONException" | |||
lizmat | and so another round begins :-( | 19:34 | |
19:34
Zoffix joined,
p6bannerbot sets mode: +v Zoffix
|
|||
Zoffix | lucasb: nope | 19:34 | |
lucasb | hehe, j/k, I'm pretty happy with camelia | 19:35 | |
Zoffix | lizmat: round of branding? :) | ||
Nah, I don't think logo/mascot has any chance or need to change :) | |||
lizmat | round of confusion :-( | ||
lucasb | lizmat, agreed | ||
Zoffix | I'll take it. | 19:36 | |
lucasb | "Is it Rakudo or Raku?" | ||
jmerelo | Plus, what would be do with all the plush Camelias? | ||
lucasb | "Oh, they are not the same thing?" | ||
timotimo | "do" is the new word for "compiler" | ||
Zoffix | Yeah | ||
Makes a lot of sense. What's Rakudo? Well, "-do" suffix is like a "compiler" and it's a compiler for Raku language :) | 19:37 | ||
lizmat | .oO( it's the thing that does Raku ) |
19:38 | |
Zoffix | I think there's an Issue in user exp. repo saying user went to install "Perl 6" but is being told to download "Rakudo".. Raku resolves that :) | ||
lizmat | at the moment it feels to me as the start of my withdrawal | ||
Zoffix | Withdrawal? | 19:39 | |
timotimo | and when the gnu people build a compiler into the gcc, it'll be gRakuc maybe | ||
Zoffix | Withdrawal from what? | ||
lizmat | from this | 19:40 | |
Zoffix | Not a bad idea :) | ||
19:40
Zoffix left
|
|||
buggable | New CPAN upload: ENIGMA-Machine-0.0.2.tar.gz by UZLUISF cpan.metacpan.org/authors/id/U/UZ/...0.2.tar.gz | 19:41 | |
19:41
domidumont left
19:43
domidumont joined
19:44
p6bannerbot sets mode: +v domidumont
19:49
lucasb left
|
|||
lizmat notes that it is going to take too much time to follow the string "raku" on Twitter | 19:53 | ||
El_Che | is it common? | ||
lizmat | twitter.com/search?f=tweets&ve...amp;q=raku | ||
19:53
domidumont left
|
|||
timotimo | hum, it also finds every tweet from all people named *raku* | 19:54 | |
lizmat | yup | ||
@raku doesn't make it better | |||
20:11
jmerelo left
20:14
patrickb left
20:18
ryn1x joined,
p6bannerbot sets mode: +v ryn1x
20:20
reisinge left
|
|||
Geth | doc: uzluisf++ created pull request #2442: Text reflow and ... |
20:21 | |
squashable6 | ๐ uzluisf++ opened pull request โText reflow and ...โ: github.com/perl6/doc/pull/2442 | ||
20:23
xinming_ is now known as xinming
20:26
khisanth_ joined,
p6bannerbot sets mode: +v khisanth_
20:29
molaf joined
20:30
Guest13389 left,
p6bannerbot sets mode: +v molaf
20:37
cognominal-p6 joined
20:38
p6bannerbot sets mode: +v cognominal-p6
20:47
Actualey` left,
Actualey` joined
20:48
p6bannerbot sets mode: +v Actualey`
20:53
johnjohn101 joined
20:54
p6bannerbot sets mode: +v johnjohn101,
cognominal-p6 left,
cognominal-p6 joined
20:55
Juerd left,
p6bannerbot sets mode: +v cognominal-p6,
Juerd joined
20:56
p6bannerbot sets mode: +v Juerd
21:07
sftp left
21:08
sftp joined,
p6bannerbot sets mode: +v sftp
21:22
sftp left
21:24
sftp joined,
p6bannerbot sets mode: +v sftp,
thundergnat joined
21:25
p6bannerbot sets mode: +v thundergnat
21:26
ugexe left
21:28
roguelazer left
|
|||
thundergnat | m: gist.github.com/thundergnat/1808af...83225099e9 | 21:36 | |
camelia | "1.234K" "1.234K" "-1.234K" Cannot convert string to number: trailing characters after number in '031.234โ5K' (indicated by โ) in block <unit> at <tmp> line 11 |
||
thundergnat | I notice that I am confused... | ||
Is there something special about method style subroutine calling? Seems like it insists that any return value that LOOKS like a negative number, by god, IS, regardless of any Str coercion. | 21:39 | ||
b2gills | www.google.com/search?q=Raku+glaze&tbm=isch | 21:41 | |
method calls are tighter than prefix - | 21:43 | ||
meaning is is seen as `-(1234.&k)` | |||
twitter.com/dccreationsaz/status/1...9004124160 #raku pottery | 21:47 | ||
21:50
Bucciarati left,
Bucciarati joined
21:51
p6bannerbot sets mode: +v Bucciarati
21:53
ugexe joined
21:54
p6bannerbot sets mode: +v ugexe
|
|||
thundergnat | b2gills: Doh! Of course. Thanks. | 21:56 | |
21:59
HaraldJoerg1 joined
22:00
p6bannerbot sets mode: +v HaraldJoerg1
22:03
HaraldJoerg joined
22:04
HaraldJoerg1 left,
p6bannerbot sets mode: +v HaraldJoerg
22:05
dct joined,
p6bannerbot sets mode: +v dct
|
|||
Ulti | is there a nice way to declare operating system dependence in modules? | 22:06 | |
is it part of the META6 spec? | |||
22:07
zakharyas joined
|
|||
Skarsnik | it's ... weird | 22:08 | |
22:08
p6bannerbot sets mode: +v zakharyas
|
|||
ugexe | is the os an actually dependency? or is something that only runs on that os? | 22:08 | |
Ulti | both? | ||
ugexe | i.e. what do you *actually* need access to | ||
Ulti | so for example I wanted to try out Red and it depends on DB::Pg that module depends on epoll which is a profoundly Linux specific thing | ||
ugexe | so you would declare a native dependency on epoll | 22:09 | |
Ulti | and stuff like libuuid assumed to be on the system is a very Linux thing too | ||
ugexe | again, a dependency on libuuid | ||
Ulti | ugexe: sure but its also the operating system not everyone down the chain will know epoll implies Linux only | ||
so if you have a choice of two DB modules like say DB::Pg and DBIish which one are you going to use if you want to have maximum user share? | 22:10 | ||
ugexe | so add os dependency management to allow finding maximum use share asier? | 22:11 | |
s/use/user/ | |||
Ulti | no so that when I try and install it just says its never going to happen | ||
not just deps need to be found | |||
Skarsnik | damn. I had the syntax somwewhere to do that | ||
ugexe | it will do that if epoll cannot be found | ||
Ulti | libuuid I installed then I just got to ohhhh its never going to work so it was 30 minutes of my life wasted | 22:12 | |
geekosaur | it's nto going to know the difference between nto installed and not installable | ||
ugexe | why wont it work? | ||
because the tests assume case sensitivity? | |||
Ulti | ugexe: yes but as a user I want to know it doesnt matter that it cant be found, I want to know it will *never* be found on your system | ||
ugexe: epoll is a Linux system for doing polling BSD/macOS have their own so does Windows | 22:13 | ||
libuv abstracts them | |||
ugexe | you said libuuid doesn't work | ||
geekosaur | libuuid /per se/ is part of linux ext2 utils | ||
Ulti | no I said epoll and I said I got more disgruntled when I got past one dependency I need to find, to discover I was never going to install anyway because a later dep was platform level incompatible | ||
libuuid its more its always hanging around Linux | 22:14 | ||
ugexe | "libuuid I installed then I just got to ohhhh its never going to work" | ||
Ulti | macOS you just have to go fish which is a little annoying but totally fine | ||
ugexe | so you didnt meant libuuid, just transitive dependency somewhere before? | ||
Ulti | ugexe: oh its never going to work the next dep is epoll failing | ||
geekosaur | they said first they fought with libuuid neding to eb installed, then they fought with epoll | 22:15 | |
Ulti | if you could check the chain of deps to see one of them isnt for my operating system I wouldnt have even had to go looking at libuuid | ||
straight away you'd see epoll further back | |||
ugexe | fwiw if you are installing DB::Pg you don't need epoll if you don't use the reactive stuff | ||
Ulti | and just tell me this module is uninstallable | ||
ugexe | i commented that stuff out | ||
Ulti | yeah its not any slight on DB::Pg thats just where I hit this | 22:16 | |
but there have been a couple others | |||
at the moment the Perl 6 ecosystem is actually quite hostile if you're on Mac | |||
and given its a unix thats kind of super bad news for Windows users | |||
Skarsnik | only if your module use libraries | 22:17 | |
ugexe | so you can declare stuff like github.com/niner/Inline-Python/blo...on#L13-L20 | ||
Ulti | Skarsnik: yeah sure | ||
ugexe | so atm you could declare a win32 depenency on say Windows::Does::Not::Work or some such | ||
Ulti | yeah like some Win32 native GUI module is another good example | 22:18 | |
Skarsnik | Ui is perl6 is dead anyways, not until we have Qt/Gtk3 binding | 22:19 | |
22:20
khisanth_ left
|
|||
Ulti | modules.perl6.org/dist/Libui:cpan:GARLANDG there's this | 22:20 | |
which is kind of neat | |||
ugexe | "name" : { "by-distro.name" : { "debian" : "epoll", "macosx" : "Doesnt::Work::On::OSX", "win32" : "Doesnt::Work::On::Windows" "" : "Only::Works::On::Linux" } } | 22:21 | |
Ulti | that has some binaries it pulls down iirc so even more in need of being able to give that level of info | ||
ugexe | which at least kinda does that, until some jerk uploads modules matching those names | ||
Ulti | :D | 22:22 | |
yeah and I guess the modules just explode with an exception on use | |||
I guess the issue is people might go hog wild and start specifying OS when its not really necessary | 22:23 | ||
then you'll have the opposite problem to now | |||
every module is some tiny island | |||
ugexe | not just OS, but like above with distro, or however specific | ||
Ulti | yeah :( | ||
might be more you want hinting rather than control over deps | 22:24 | ||
like tested on X | |||
Skarsnik | Os X is annoying for deps anyways | ||
Ulti | true enough | ||
Skarsnik | depends too much how a lib get installed | ||
Ulti | at least for GNU deps | ||
a big chunk is probably tests specifically need this maybe | 22:27 | ||
if you made something cross platform with tests for the native stuff for each is there a nice way to avoid that in tests? I've never actually looked into it | 22:28 | ||
I guess you can just do an if on it and just choose tests | 22:29 | ||
Skarsnik | you can eval a test file according to the Os value | ||
DBIish do stuff like this | |||
Ulti | also I kind of want all the event loop DB::Pg niceness :P | 22:30 | |
I guess I can just Docker myself to victory | 22:31 | ||
buggable | New CPAN upload: App-Mi6-0.2.3.tar.gz by SKAJI modules.perl6.org/dist/App::Mi6:cpan:SKAJI | ||
22:31
zakharyas left
22:33
khisanth_ joined
22:34
zakharyas joined,
p6bannerbot sets mode: +v khisanth_,
p6bannerbot sets mode: +v zakharyas
|
|||
Xliff | lizmat: Still there? | 22:36 | |
lizmat | Xliff: sorta | ||
Xliff | :) | ||
I am using Method::Also, now. Thanks so much. Makes aliasing easier. | |||
I've noticed that it doesn't work for multi methods. Is this because the strategy you are using for aliasing doesn't support such? | 22:37 | ||
lizmat | could you gist me an example ? | ||
Xliff | Er... sure. | 22:38 | |
Take me a minute. | |||
Ulti | hmm thinking more about it, why isnt there a trans operating system meta package manager? that unifies the various tools and namespaces | 22:43 | |
22:43
johnjohn101 left
|
|||
Geth | doc: c0647af913 | Coke++ | doc/Language/glossary.pod6 Anything requiring a version needs :solo |
22:44 | |
doc: a6cba7f80d | Coke++ | doc/Language/subscripts.pod6 Fix example compilation error |
|||
doc: 2b004c6699 | Coke++ | doc/Language/experimental.pod6 whitespace |
|||
synopsebot | Link: doc.perl6.org/language/glossary | ||
Link: doc.perl6.org/language/subscripts | |||
Link: doc.perl6.org/language/experimental | |||
Ulti | so you declare you want libuuid or something and then it just translates that to: port install libuuid or brew install ossp-uuid depending on which packagemanger you use on MacOS or yum/apt-get install libuuid etc. | ||
geekosaur | because it's nearly impossible to write and even more impossible to maintain? | ||
Ulti | windows there is choco too | ||
Skarsnik | zef could do it | ||
the best thing is to suggest | 22:45 | ||
not do it | |||
Ulti | geekosaur: sure but probably not a great deal more impossible than the volunteer contribution of something like homebrew macports | ||
like most of the time it could just try the plain name and see if it installs | |||
Xliff | lizmat: gist.github.com/Xliff/34b9d2e3e27c...6791075634 | ||
Skarsnik | like "type apt-get install libpiko before installing this module' | ||
Ulti | Skarsnik: you'd still want the db of mappings of package names | 22:46 | |
for that to be a nice experience | |||
lizmat | Xliff: so you want *all* candidates of .m to be also handled by .M ? | ||
Xliff | lizmat: Yeah | ||
If declared. | |||
lizmat | add a proto: | ||
proto method m(|) is also<M> {*} | 22:47 | ||
and don't put it on the candidates | |||
Xliff | AH! OK! | ||
22:49
kardan joined
22:50
ryn1x left,
p6bannerbot sets mode: +v kardan
|
|||
Ulti | news.ycombinator.com/item?id=10395535 in case anyone is interested this is almost the only place I've seen mention of an idea for this, and the suggestion of "conda" being this tool isnt too far off, apart from its not meta and playing nice with the host OS | 22:51 | |
Xliff | lizmat: Gist updated. Thanks! | 22:53 | |
(and yes, I called you "fab") | |||
lizmat | :-) | 22:54 | |
23:01
HaraldJoerg left,
ryn1x joined,
p6bannerbot sets mode: +v ryn1x
23:02
zakharyas left
23:05
kst joined,
p6bannerbot sets mode: +v kst
23:07
dct left
23:09
ambs left
23:11
rouking joined,
kurahaupo_ joined
23:12
ambs joined,
p6bannerbot sets mode: +v kurahaupo_,
p6bannerbot sets mode: +v ambs
23:13
kurahaupo left
23:20
ryn1x left
|
|||
Geth | doc: 86856f0514 | (Luis F. Uceta)++ | doc/Language/modules.pod6 Text reflow and ... Also added "If everything was fine with your dist, you should see your module tar file in your C<Perl6> directory along with both a meta and a readme file named after your module filename." to the "Upload your module to CPAN" section. |
23:31 | |
synopsebot | Link: doc.perl6.org/language/modules | ||
squashable6 | ๐ AlexDaniel++ merged pull request โText reflow and ...โ: github.com/perl6/doc/pull/2442 | ||
๐๐๐ First contribution by AlexDaniel++! โฅ | |||
Geth | doc: 4df8cb2364 | (Aleks-Daniel Jakimenko-Aleksejev)++ (committed using GitHub Web editor) | doc/Language/modules.pod6 Merge pull request #2442 from uzluisf/master Text reflow and ... |
||
23:34
kardan left
23:38
ambs left
23:40
khisanth_ left
23:41
isBEKaml joined,
p6bannerbot sets mode: +v isBEKaml,
pecastro left,
ambs joined
23:42
p6bannerbot sets mode: +v ambs
|
|||
lucs | 23:56 |