1 2009-05-22 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
3 * while releasing the MIME fix discovered a wrongly broken long line in
4 3876519 which isn't parsed "correctly". I mean the line is buggy in
5 itself and our way to parse it doesn't correct for the bug in the
6 original report. No time and inclination to deal with that. Here are the
9 config_args='-sde -Darchname=powerpc-netbsd -Dcc=cc -Doptimize=-O2 -pthread -I/usr/include -Ui_malloc -Uusemymalloc -Uinstallusrbinperl -Dinstallstyle=lib/perl5 -Dprefix=/usr/pkg -Dsiteprefix=/usr/pkg -Dvendorprefix=/usr/pkg -Dscriptdir=/usr/pkg/lib/perl5/bin -Dsitescript=/usr/pkg/lib/perl5/site_perl/bin -Dvendorscript=/usr/pkg/lib/perl5/vendor_perl/bin -Dsitebin=/usr/pkg/lib/perl5/site_perl/bin -Dvendorbin=/usr/pkg/lib/perl5/vendor_perl/bin -Dprivlib=/usr/pkg/lib/perl5/5.10.0 -Dsitelib=/usr/pkg/lib/perl5/site_perl/5.10.0 -Dvendorlib=/usr/pkg/lib/perl5/vendor_perl/5.10.0 -Dsitelib_stem=/usr/pkg/lib/perl5/site_perl -Dvendorlib_stem=/usr/pkg/lib/perl5/vendor_perl -Dman1ext=1 -Dman1dir=/usr/pkg/lib/perl5/man/man1 -Dsiteman1dir=/usr/pkg/lib/perl5/site_perl/man/man1 -Dvendorman1dir=/usr/pkg/lib/perl5/vendor_perl/man/man1 -Dman3ext=3 -Dman3dir=/usr/pkg/lib/perl5/man/man3 -Dsiteman3dir=/usr/pkg/lib/perl5/site_perl/man/man3 -Dvendorman3dir=/usr/pkg/lib/perl5/vendor_perl/man/man3
10 -Duseshrplib -Daphostname=/bin/hostname -Dln=/bin/ln -Dsed=/usr/bin/sed -Dsh=/bin/sh -Dissymlink=test -h -Dperl5=false -Duseithreads -Dlibswanted=m crypt '
12 2008-12-18 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
14 * collect oneliners. here we filter the testreports from
15 ctgetreports.out after APC@34000, only 5.10 and 5.11 and only look at
19 use strict; use YAML::Syck;
20 my $y = YAML::Syck::LoadFile "ctgetreports.out";
21 for my $r (@{$y->{"==DATA=="}}){
22 next unless $r->{"meta:perl"} =~ /^(.+)\@(\d+)/;
24 next if $n < 34000 || $b !~ /\.1/;
25 print join " ", @$r{"id","meta:ok","meta:perl","meta:from"}, "\n";
30 2008-12-14 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
32 * report bug in nntp server:
34 DB<147> x $N = Net::NNTP->new("nntp.perl.org")
35 0 Net::NNTP=GLOB(0x9307f7c)
37 FileHandle({*Symbol::GEN7}) => fileno(8)
38 DB<148> x $N->group("perl.cpan.testers")
43 DB<149> x map { ref $N->head($_) } 1000000,2000000,2500000,2599999,2600000
51 2008-11-06 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
53 * perl -MNet::NNTP -e '$nntp=Net::NNTP->new("nntp.perl.org"); $nntp->group("perl.cpan.testers"); warn "@{$nntp->head(shift)}"' 123456
55 above was posted by Slaven to cpantesters-discuss -- a late thanks, Slaven!
57 PASS 2323945 meta:perl[5.8.4] conf:archname[i386-netbsd-thread-multi-64int] conf:usethreads[define] conf:optimize[-O] meta:writer[CPANPLUS::Dist::YACSmoke 0.10] meta:from[chris]
59 2008-10-30 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
61 * Bug: FileArchiveIndexer produced not a singel result for --solve. In
62 such a case we must write a word about the nothingness. DONE
64 2008-10-02 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
68 * Todo: --solve switch
70 * env seems to be stepping into config, I see env:optimize for example.
72 2008-10-01 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
74 * Todo: entities, namely & good to test in overload-eval and -q
77 2008-09-29 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
79 * Todo: write a test that parses copies of these downloaded files and
80 does not write to ~/var. Needs further options.
82 2008-09-07 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
84 * ENV? We seem to neglect the parsing of the environment! DONE
86 2008-08-21 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
88 * Bug: vdistro and ctformat=yaml do not seem to work together:
90 /home/src/perl/repoperls/installed-perls/*/p*/perl-*@32642/bin/perl -I lib bin/ctgetreports --q conf:archname --q mod:Perl::Critic -q mod:Test:Perl:Critic --ctformat=yaml --vdistro=Shipwright-1.13 Shipwright
91 SELECTED: Shipwright-1.13_10
94 Without the ctformat it indeed gets me 1.13
96 2008-06-24 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
98 * write a real-download-test, but ask for permission during Build.PL
100 2008-06-15 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
102 * should not be dependent on the HTML markup provided by cpantesters
103 (should read NNTP version)
105 * Should be able to produce CPAN::Testers::Report objects. Should be
106 able to parse individual test results.
108 2008-06-14 Andreas J. Koenig <andreas.koenig.7os6VVqR@franz.ak.mind.de>
110 * POE-Component-Proxy-TCP: the html page exposes a bug, maybe the same
111 as DateTime-Format-Strptime-1.0702: the HTML is not up to date while the
114 * write a test for the switches
116 * new switch: --cpantesters-format=yaml DONE
121 change-log-default-name: "TODO"