From bugmaster at FreeBSD.org Mon Jun 1 11:08:05 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Jun 1 11:11:09 2009 Subject: Current problem reports assigned to perl@FreeBSD.org Message-ID: <200906011108.n51B83p6022395@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/134952 perl [patch] security/p5-Net-SSLeay build shouldn't need in o ports/134379 perl net/p5-perl-ldap makes no mention of Net::LDAP o ports/131225 perl math/PDL: PDL-2.4.3_5: Unable to find PDL/pdldoc.db o ports/129626 perl lang/p5-Tcl segfaults on i386 and amd64 on FreeBSD 7 o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau 5 problems total. From demonjack42 at yahoo.com Thu Jun 4 20:00:37 2009 From: demonjack42 at yahoo.com (Demonjack) Date: Thu Jun 4 20:00:44 2009 Subject: GD::Image Can't locate object newFromPng Message-ID: <23876448.post@talk.nabble.com> FreeBSD 7.0 Perl 5.8.9 I installed... libpng-1.2.36 gd-2.0.35 GD-2.41 I made sure all compiled with PNG support. However, whenever I try and run the following line of code. my $myImage = newFromPng GD::Image(\*PNG); or alternatively.... my $myImage = GD::Image->newFromPng($imgFile, 1) I get the following error. Can't located object method "newFromPng" via package "GD::Image" at blah blah blah. I'm sure it's something I've missed but I can't find it. At this point I've looked at it so much I can't see the forest for the trees....... Any help would be appreciated. I'm going to go take a nap. thx Demon -- View this message in context: http://www.nabble.com/GD%3A%3AImage-Can%27t-locate-object-newFromPng-tp23876448p23876448.html Sent from the freebsd-perl mailing list archive at Nabble.com. From tobez at tobez.org Thu Jun 4 20:21:37 2009 From: tobez at tobez.org (Anton Berezin) Date: Thu Jun 4 20:21:44 2009 Subject: GD::Image Can't locate object newFromPng In-Reply-To: <23876448.post@talk.nabble.com> References: <23876448.post@talk.nabble.com> Message-ID: <20090604200521.GA84861@heechee.tobez.org> On Thu, Jun 04, 2009 at 12:41:24PM -0700, Demonjack wrote: > > FreeBSD 7.0 > Perl 5.8.9 > > I installed... > > libpng-1.2.36 > gd-2.0.35 > GD-2.41 > > I made sure all compiled with PNG support. However, whenever I try and run > the following line of code. > > my $myImage = newFromPng GD::Image(\*PNG); or alternatively.... > my $myImage = GD::Image->newFromPng($imgFile, 1) > > I get the following error. > > Can't located object method "newFromPng" via package "GD::Image" at blah > blah blah. > > I'm sure it's something I've missed but I can't find it. At this point I've > looked at it so much I can't see the forest for the trees....... > > Any help would be appreciated. I'm going to go take a nap. Works fine here. Can you post a complete script that exhibits the problem? Cheers, \Anton. -- There is no beauty in entropy. -- Eliezer Yudkowsky From demonjack42 at yahoo.com Thu Jun 4 20:25:11 2009 From: demonjack42 at yahoo.com (Demonjack) Date: Thu Jun 4 20:25:20 2009 Subject: GD::Image Can't locate object newFromPng In-Reply-To: <20090604200521.GA84861@heechee.tobez.org> References: <23876448.post@talk.nabble.com> <20090604200521.GA84861@heechee.tobez.org> Message-ID: <23877108.post@talk.nabble.com> Here's a piece of code that will generate the problem on my system. I think the problem is the the GD module doesn't have the PNG support in it, but it said it compiled with it so, I'm not sure how to determine if indeed it did or not? #!/usr/bin/perl # # use Cflow qw(:flowvars find); # for reading Cflowd data files use Socket; # for socket functions use POSIX; # for strftime use RRDs; # RRDTOOL stuff use Time::Local; # need the timelocal function use Storable; use Net::Patricia; use GD; use strict; use warnings; my $imgFile = "image-16790-0001.png"; my $newimage = new GD::Image(100,100); open (PNG, $imgFile) || die; my $myImage = newFromPng GD::Image(\*PNG); close PNG; _________________________________________ thx Demon Anton Berezin-2 wrote: > > On Thu, Jun 04, 2009 at 12:41:24PM -0700, Demonjack wrote: >> >> FreeBSD 7.0 >> Perl 5.8.9 >> >> I installed... >> >> libpng-1.2.36 >> gd-2.0.35 >> GD-2.41 >> >> I made sure all compiled with PNG support. However, whenever I try and >> run >> the following line of code. >> >> my $myImage = newFromPng GD::Image(\*PNG); or alternatively.... >> my $myImage = GD::Image->newFromPng($imgFile, 1) >> >> I get the following error. >> >> Can't located object method "newFromPng" via package "GD::Image" at blah >> blah blah. >> >> I'm sure it's something I've missed but I can't find it. At this point >> I've >> looked at it so much I can't see the forest for the trees....... >> >> Any help would be appreciated. I'm going to go take a nap. > > Works fine here. Can you post a complete script that exhibits the > problem? > > Cheers, > \Anton. > -- > There is no beauty in entropy. -- Eliezer Yudkowsky > _______________________________________________ > freebsd-perl@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-perl > To unsubscribe, send any mail to "freebsd-perl-unsubscribe@freebsd.org" > > -- View this message in context: http://www.nabble.com/GD%3A%3AImage-Can%27t-locate-object-newFromPng-tp23876448p23877108.html Sent from the freebsd-perl mailing list archive at Nabble.com. From tobez at tobez.org Thu Jun 4 20:30:39 2009 From: tobez at tobez.org (Anton Berezin) Date: Thu Jun 4 20:30:46 2009 Subject: GD::Image Can't locate object newFromPng In-Reply-To: <23877108.post@talk.nabble.com> References: <23876448.post@talk.nabble.com> <20090604200521.GA84861@heechee.tobez.org> <23877108.post@talk.nabble.com> Message-ID: <20090604203037.GB84861@heechee.tobez.org> On Thu, Jun 04, 2009 at 01:25:09PM -0700, Demonjack wrote: > > Here's a piece of code that will generate the problem on my system. I think > the problem is the the GD module doesn't have the PNG support in it, but it > said it compiled with it so, I'm not sure how to determine if indeed it did > or not? # ldd /usr/local/lib/perl5/site_perl/*/mach/auto/GD/GD.so should list "libpng.so". Other than that, I have no clue, the script certainly looks valid. > #!/usr/bin/perl > # > # > use Cflow qw(:flowvars find); # for reading Cflowd data files > use Socket; # for socket functions > use POSIX; # for strftime > use RRDs; # RRDTOOL stuff > use Time::Local; # need the timelocal function > use Storable; > use Net::Patricia; > use GD; > use strict; > use warnings; > > my $imgFile = "image-16790-0001.png"; > > my $newimage = new GD::Image(100,100); > > open (PNG, $imgFile) || die; > > my $myImage = newFromPng GD::Image(\*PNG); > > close PNG; > > > _________________________________________ > thx > Demon > > > Anton Berezin-2 wrote: > > > > On Thu, Jun 04, 2009 at 12:41:24PM -0700, Demonjack wrote: > >> > >> FreeBSD 7.0 > >> Perl 5.8.9 > >> > >> I installed... > >> > >> libpng-1.2.36 > >> gd-2.0.35 > >> GD-2.41 > >> > >> I made sure all compiled with PNG support. However, whenever I try and > >> run > >> the following line of code. > >> > >> my $myImage = newFromPng GD::Image(\*PNG); or alternatively.... > >> my $myImage = GD::Image->newFromPng($imgFile, 1) > >> > >> I get the following error. > >> > >> Can't located object method "newFromPng" via package "GD::Image" at blah > >> blah blah. > >> > >> I'm sure it's something I've missed but I can't find it. At this point > >> I've > >> looked at it so much I can't see the forest for the trees....... > >> > >> Any help would be appreciated. I'm going to go take a nap. > > > > Works fine here. Can you post a complete script that exhibits the > > problem? > > > > Cheers, > > \Anton. > > -- > > There is no beauty in entropy. -- Eliezer Yudkowsky > > _______________________________________________ > > freebsd-perl@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-perl > > To unsubscribe, send any mail to "freebsd-perl-unsubscribe@freebsd.org" > > > > > > -- > View this message in context: http://www.nabble.com/GD%3A%3AImage-Can%27t-locate-object-newFromPng-tp23876448p23877108.html > Sent from the freebsd-perl mailing list archive at Nabble.com. > > _______________________________________________ > freebsd-perl@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-perl > To unsubscribe, send any mail to "freebsd-perl-unsubscribe@freebsd.org" -- There is no beauty in entropy. -- Eliezer Yudkowsky From demonjack42 at yahoo.com Thu Jun 4 22:29:10 2009 From: demonjack42 at yahoo.com (Demonjack) Date: Thu Jun 4 22:29:17 2009 Subject: GD::Image Can't locate object newFromPng In-Reply-To: <20090604203037.GB84861@heechee.tobez.org> References: <23876448.post@talk.nabble.com> <20090604200521.GA84861@heechee.tobez.org> <23877108.post@talk.nabble.com> <20090604203037.GB84861@heechee.tobez.org> Message-ID: <23878993.post@talk.nabble.com> This is the output from the ldd command. /usr/local/lib/perl5/site_perl/5.8.9/mach/auto/GD/GD.so: libfontconfig.so.1 => /usr/local/lib/libfontconfig.so.1 (0x281a0000) libfreetype.so.9 => /usr/local/lib/libfreetype.so.9 (0x28300000) libpng12.so.0 => /usr/local/lib/libpng12.so.0 (0x281c9000) libm.so.5 => /lib/libm.so.5 (0x28372000) libgd.so.2 => /usr/local/lib/libgd.so.2 (0x28387000) libc.so.7 => /lib/libc.so.7 (0x28080000) libz.so.4 => /lib/libz.so.4 (0x281ec000) libexpat.so.6 => /usr/local/lib/libexpat.so.6 (0x283d9000) libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x283f9000) it lists libpng12.so.0 but not libpng.so? Is that right??? thx Demon Anton Berezin-2 wrote: > > On Thu, Jun 04, 2009 at 01:25:09PM -0700, Demonjack wrote: >> >> Here's a piece of code that will generate the problem on my system. I >> think >> the problem is the the GD module doesn't have the PNG support in it, but >> it >> said it compiled with it so, I'm not sure how to determine if indeed it >> did >> or not? > > # ldd /usr/local/lib/perl5/site_perl/*/mach/auto/GD/GD.so > > should list "libpng.so". > > Other than that, I have no clue, the script certainly looks valid. > >> #!/usr/bin/perl >> # >> # >> use Cflow qw(:flowvars find); # for reading Cflowd data files >> use Socket; # for socket functions >> use POSIX; # for strftime >> use RRDs; # RRDTOOL stuff >> use Time::Local; # need the timelocal function >> use Storable; >> use Net::Patricia; >> use GD; >> use strict; >> use warnings; >> >> my $imgFile = "image-16790-0001.png"; >> >> my $newimage = new GD::Image(100,100); >> >> open (PNG, $imgFile) || die; >> >> my $myImage = newFromPng GD::Image(\*PNG); >> >> close PNG; >> >> >> _________________________________________ >> thx >> Demon >> >> >> Anton Berezin-2 wrote: >> > >> > On Thu, Jun 04, 2009 at 12:41:24PM -0700, Demonjack wrote: >> >> >> >> FreeBSD 7.0 >> >> Perl 5.8.9 >> >> >> >> I installed... >> >> >> >> libpng-1.2.36 >> >> gd-2.0.35 >> >> GD-2.41 >> >> >> >> I made sure all compiled with PNG support. However, whenever I try and >> >> run >> >> the following line of code. >> >> >> >> my $myImage = newFromPng GD::Image(\*PNG); or alternatively.... >> >> my $myImage = GD::Image->newFromPng($imgFile, 1) >> >> >> >> I get the following error. >> >> >> >> Can't located object method "newFromPng" via package "GD::Image" at >> blah >> >> blah blah. >> >> >> >> I'm sure it's something I've missed but I can't find it. At this point >> >> I've >> >> looked at it so much I can't see the forest for the trees....... >> >> >> >> Any help would be appreciated. I'm going to go take a nap. >> > >> > Works fine here. Can you post a complete script that exhibits the >> > problem? >> > >> > Cheers, >> > \Anton. >> > -- >> > There is no beauty in entropy. -- Eliezer Yudkowsky >> > _______________________________________________ >> > freebsd-perl@freebsd.org mailing list >> > http://lists.freebsd.org/mailman/listinfo/freebsd-perl >> > To unsubscribe, send any mail to "freebsd-perl-unsubscribe@freebsd.org" >> > >> > >> >> -- >> View this message in context: >> http://www.nabble.com/GD%3A%3AImage-Can%27t-locate-object-newFromPng-tp23876448p23877108.html >> Sent from the freebsd-perl mailing list archive at Nabble.com. >> >> _______________________________________________ >> freebsd-perl@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-perl >> To unsubscribe, send any mail to "freebsd-perl-unsubscribe@freebsd.org" > > -- > There is no beauty in entropy. -- Eliezer Yudkowsky > _______________________________________________ > freebsd-perl@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-perl > To unsubscribe, send any mail to "freebsd-perl-unsubscribe@freebsd.org" > > -- View this message in context: http://www.nabble.com/GD%3A%3AImage-Can%27t-locate-object-newFromPng-tp23876448p23878993.html Sent from the freebsd-perl mailing list archive at Nabble.com. From demonjack42 at yahoo.com Thu Jun 4 22:35:08 2009 From: demonjack42 at yahoo.com (Demonjack) Date: Thu Jun 4 22:35:14 2009 Subject: GD::Image Can't locate object newFromPng In-Reply-To: <23878993.post@talk.nabble.com> References: <23876448.post@talk.nabble.com> <20090604200521.GA84861@heechee.tobez.org> <23877108.post@talk.nabble.com> <20090604203037.GB84861@heechee.tobez.org> <23878993.post@talk.nabble.com> Message-ID: <23879062.post@talk.nabble.com> Just checked that lib location and libpng.so is linked to libpng12.so.0 So that's probably right? :confused: thx Demon Demonjack wrote: > > This is the output from the ldd command. > > /usr/local/lib/perl5/site_perl/5.8.9/mach/auto/GD/GD.so: > libfontconfig.so.1 => /usr/local/lib/libfontconfig.so.1 > (0x281a0000) > libfreetype.so.9 => /usr/local/lib/libfreetype.so.9 (0x28300000) > libpng12.so.0 => /usr/local/lib/libpng12.so.0 (0x281c9000) > libm.so.5 => /lib/libm.so.5 (0x28372000) > libgd.so.2 => /usr/local/lib/libgd.so.2 (0x28387000) > libc.so.7 => /lib/libc.so.7 (0x28080000) > libz.so.4 => /lib/libz.so.4 (0x281ec000) > libexpat.so.6 => /usr/local/lib/libexpat.so.6 (0x283d9000) > libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x283f9000) > > it lists libpng12.so.0 but not libpng.so? Is that right??? > > thx > Demon > > > > > Anton Berezin-2 wrote: >> >> On Thu, Jun 04, 2009 at 01:25:09PM -0700, Demonjack wrote: >>> >>> Here's a piece of code that will generate the problem on my system. I >>> think >>> the problem is the the GD module doesn't have the PNG support in it, but >>> it >>> said it compiled with it so, I'm not sure how to determine if indeed it >>> did >>> or not? >> >> # ldd /usr/local/lib/perl5/site_perl/*/mach/auto/GD/GD.so >> >> should list "libpng.so". >> >> Other than that, I have no clue, the script certainly looks valid. >> >>> #!/usr/bin/perl >>> # >>> # >>> use Cflow qw(:flowvars find); # for reading Cflowd data files >>> use Socket; # for socket functions >>> use POSIX; # for strftime >>> use RRDs; # RRDTOOL stuff >>> use Time::Local; # need the timelocal function >>> use Storable; >>> use Net::Patricia; >>> use GD; >>> use strict; >>> use warnings; >>> >>> my $imgFile = "image-16790-0001.png"; >>> >>> my $newimage = new GD::Image(100,100); >>> >>> open (PNG, $imgFile) || die; >>> >>> my $myImage = newFromPng GD::Image(\*PNG); >>> >>> close PNG; >>> >>> >>> _________________________________________ >>> thx >>> Demon >>> >>> >>> Anton Berezin-2 wrote: >>> > >>> > On Thu, Jun 04, 2009 at 12:41:24PM -0700, Demonjack wrote: >>> >> >>> >> FreeBSD 7.0 >>> >> Perl 5.8.9 >>> >> >>> >> I installed... >>> >> >>> >> libpng-1.2.36 >>> >> gd-2.0.35 >>> >> GD-2.41 >>> >> >>> >> I made sure all compiled with PNG support. However, whenever I try >>> and >>> >> run >>> >> the following line of code. >>> >> >>> >> my $myImage = newFromPng GD::Image(\*PNG); or alternatively.... >>> >> my $myImage = GD::Image->newFromPng($imgFile, 1) >>> >> >>> >> I get the following error. >>> >> >>> >> Can't located object method "newFromPng" via package "GD::Image" at >>> blah >>> >> blah blah. >>> >> >>> >> I'm sure it's something I've missed but I can't find it. At this >>> point >>> >> I've >>> >> looked at it so much I can't see the forest for the trees....... >>> >> >>> >> Any help would be appreciated. I'm going to go take a nap. >>> > >>> > Works fine here. Can you post a complete script that exhibits the >>> > problem? >>> > >>> > Cheers, >>> > \Anton. >>> > -- >>> > There is no beauty in entropy. -- Eliezer Yudkowsky >>> > _______________________________________________ >>> > freebsd-perl@freebsd.org mailing list >>> > http://lists.freebsd.org/mailman/listinfo/freebsd-perl >>> > To unsubscribe, send any mail to >>> "freebsd-perl-unsubscribe@freebsd.org" >>> > >>> > >>> >>> -- >>> View this message in context: >>> http://www.nabble.com/GD%3A%3AImage-Can%27t-locate-object-newFromPng-tp23876448p23877108.html >>> Sent from the freebsd-perl mailing list archive at Nabble.com. >>> >>> _______________________________________________ >>> freebsd-perl@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-perl >>> To unsubscribe, send any mail to "freebsd-perl-unsubscribe@freebsd.org" >> >> -- >> There is no beauty in entropy. -- Eliezer Yudkowsky >> _______________________________________________ >> freebsd-perl@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-perl >> To unsubscribe, send any mail to "freebsd-perl-unsubscribe@freebsd.org" >> >> > > -- View this message in context: http://www.nabble.com/GD%3A%3AImage-Can%27t-locate-object-newFromPng-tp23876448p23879062.html Sent from the freebsd-perl mailing list archive at Nabble.com. From QAT at FreeBSD.org Fri Jun 5 09:26:22 2009 From: QAT at FreeBSD.org (QAT@FreeBSD.org) Date: Fri Jun 5 09:26:28 2009 Subject: [Custom PREFIX] devel/p5-Locale-libintl - fails: PLIST Message-ID: <20090605091037.947D28FCB7@release.ixsystems.com> The Restless Daemon identified a PLIST error while trying to build: p5-Locale-libintl-1.16_1 maintained by perl@FreeBSD.org Makefile ident: $FreeBSD: ports/devel/p5-Locale-libintl/Makefile,v 1.11 2009/01/29 17:40:17 erwin Exp $ THIS A BUILD WITH _CUSTOM_ PREFIX AND LOCALBASE, _standard_ env in rest. Patches for testing and commiting welcomed as a reply to this email. To check if the latest version port builds OK with standard PREFIX/LOCALBASE and with -DNOPORT* please see: http://qat.tecnik93.com/index.php?action=list_buildports&build=7-STABLE-FPT-NPD&search_port_name=p5-Locale-libintl PortsMon page for the port: http://portsmon.freebsd.org/portoverview.py?category=devel&portname=p5-Locale-libintl See http://docs.freebsd.org/cgi/mid.cgi?20090531085138.5bd9cc21 for some help Excerpt from http://QATty.TecNik93.com/logs/7-STABLE-FPT-CustDir/p5-Locale-libintl-1.16_1.log : building p5-Locale-libintl-1.16_1 in directory /usr/local/tinderbox/7-STABLE-FPT-CustDir build started at Fri Jun 5 09:09:49 UTC 2009 port directory: /usr/ports/devel/p5-Locale-libintl building for: 7.2-STABLE amd64 ............................................. ===> Compressing manual pages for p5-Locale-libintl-1.16_1 ===> Registering installation for p5-Locale-libintl-1.16_1 ================================================================ ======================================== ===> Building package for p5-Locale-libintl-1.16_1 tar: lib/perl5/site_perl/5.8.9/Locale/gettext_xs.pm: Cannot stat: No such file or directory tar: lib/perl5/site_perl/5.8.9/mach/auto/Locale/gettext_xs/gettext_xs.so: Cannot stat: No such file or directory tar: lib/perl5/site_perl/5.8.9/mach/auto/Locale/gettext_xs/gettext_xs.bs: Cannot stat: No such file or directory tar: Error exit delayed from previous errors. pkg_create: make_dist: tar command failed with code 256 Creating package /tmp/packages/All/p5-Locale-libintl-1.16_1.tbz Registering depends: gettext-0.17_1 libiconv-1.11_1 p5-PathTools-3.2900 perl-5.8.9_2. Creating bzip'd tar ball in '/tmp/packages/All/p5-Locale-libintl-1.16_1.tbz' *** Error code 1 Stop in /a/ports/devel/p5-Locale-libintl. Deleting p5-Locale-libintl-1.16_1 pkg_delete: file '/usr/PPP/lib/perl5/site_perl/5.8.9/Locale/gettext_xs.pm' doesn't exist pkg_delete: file '/usr/PPP/lib/perl5/site_perl/5.8.9/mach/auto/Locale/gettext_xs/gettext_xs.so' doesn't exist pkg_delete: file '/usr/PPP/lib/perl5/site_perl/5.8.9/mach/auto/Locale/gettext_xs/gettext_xs.bs' doesn't exist pkg_delete: file '/usr/PPP/lib/perl5/site_perl/5.8.9/mach/auto/Locale/gettext_xs' doesn't exist pkg_delete: unable to completely remove directory '/usr/PPP/lib/perl5/site_perl/5.8.9/mach/auto/Locale/gettext_xs' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) === Checking filesystem state Deleting p5-PathTools-3.2900 Deleting gettext-0.17_1 Deleting libiconv-1.11_1 Deleting perl-5.8.9_2 Removing stale symlinks from /usr/bin... Removing /usr/bin/perl Removing /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. === Checking filesystem state after all packages deleted ================================================================ build of /usr/ports/devel/p5-Locale-libintl ended at Fri Jun 5 09:10:35 UTC 2009 The tarballed WRKDIR can be found here: http://QATty.TecNik93.com/wrkdirs/7-STABLE-FPT-CustDir/p5-Locale-libintl-1.16_1.tbz The build which triggered this BotMail was done under tinderbox-devel-3.2_4; dsversion: 3.2 on RELENG_7 on amd64, kern.smp.cpus: 4 with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with: PREFIX=/usr/PPP, LOCALBASE=/usr/PPP, X11BASE=/usr/PPP. A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- QAT - your friendly neighborhood Daemon, preparing a heck of an error trapping system: - "HMC and EOI?" - "Halt, Melt and Catch fire or Execute Operator Immediately." From linimon at FreeBSD.org Sun Jun 7 06:28:18 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Jun 7 06:28:30 2009 Subject: FreeBSD ports that you maintain which are currently marked broken Message-ID: <20090607062817.14C3C1CCD7@mail.droso.net> Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 5.x/6.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: www/p5-HTML-Embperl broken because: does not compile; infinite loops build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=p5-HTML-Embperl If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From bugmaster at FreeBSD.org Mon Jun 8 11:08:04 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Jun 8 11:10:42 2009 Subject: Current problem reports assigned to perl@FreeBSD.org Message-ID: <200906081108.n58B83SQ021976@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/134952 perl [patch] security/p5-Net-SSLeay build shouldn't need in o ports/134379 perl net/p5-perl-ldap makes no mention of Net::LDAP o ports/131225 perl math/PDL: PDL-2.4.3_5: Unable to find PDL/pdldoc.db o ports/129626 perl lang/p5-Tcl segfaults on i386 and amd64 on FreeBSD 7 o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau 5 problems total. From itetcu at FreeBSD.org Tue Jun 9 20:22:41 2009 From: itetcu at FreeBSD.org (Ion-Mihai Tetcu) Date: Tue Jun 9 20:22:47 2009 Subject: [Custom PREFIX] x11-toolkits/p5-Wx-Perl-ProcessStream - fails: coredump In-Reply-To: <4A2EAFD1.10903@therek.net> References: <20090607085240.233A48FCB7@release.ixsystems.com> <4A2C23DD.3070108@therek.net> <20090608003510.0ae0f5d3@it.buh.tecnik93.com> <4A2EAFD1.10903@therek.net> Message-ID: <20090609232300.631a159b@it.buh.tecnik93.com> It's beyond me, I'm CC'ing or perl masters. On Tue, 09 Jun 2009 20:54:09 +0200 Cezary Morga wrote: > Ion-Mihai Tetcu pisze: > > Thanks for letting me know. Drop me the patch for testing and > > committing when ready. > > Well, I'm lost now and I need some help. Although I don't have > 7/amd64 available (that's where QAT build failed) I guess it might be > the same thing as with 8/i386. The problem is that Perl coredumps > when generating a Makefile for Wx::Perl::ProcessStream (though I'd > say it's probably more of a problem with x11-toolkits/p5-Wx, even > though it builds fine). It seems that all the Perl magic is going > fine and ends cleanly but somewhere when Perl finishes it spits out: > > Assertion failed: ((run->regs_mask[elm] & (1U << bit)) == 0), > function arena_run_reg_dalloc, file > /opt/tinderbox/jails/8-CURRENT/src/lib/libc/stdlib/malloc.c, line > 2543. Abort (core dumped) > > GDB says: > > Program terminated with signal 6, Aborted. > > The question I have to you is how should I interpret the > arena_run_reg_dalloc problem? > > PS. Similar problem: ports/131664 The log port the port in question is: http://qatty.tecnik93.com//errors/7-STABLE-FPT-CustDir/p5-Wx-Perl-ProcessStream-0.11.log -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 196 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-perl/attachments/20090609/9665da65/signature.pgp From pgollucci at p6m7g8.com Wed Jun 10 01:47:30 2009 From: pgollucci at p6m7g8.com (Philip M. Gollucci) Date: Wed Jun 10 01:47:36 2009 Subject: [Custom PREFIX] x11-toolkits/p5-Wx-Perl-ProcessStream - fails: coredump In-Reply-To: <20090609232300.631a159b@it.buh.tecnik93.com> References: <20090607085240.233A48FCB7@release.ixsystems.com> <4A2C23DD.3070108@therek.net> <20090608003510.0ae0f5d3@it.buh.tecnik93.com> <4A2EAFD1.10903@therek.net> <20090609232300.631a159b@it.buh.tecnik93.com> Message-ID: <4A2F0E50.8030009@p6m7g8.com> Ion-Mihai Tetcu wrote: > It's beyond me, I'm CC'ing or perl masters. I'll take a look, (/me puts his mod_perl hat on) > The log port the port in question is: > http://qatty.tecnik93.com//errors/7-STABLE-FPT-CustDir/p5-Wx-Perl-ProcessStream-0.11.log Clearly some paths are wrong re-X11 From QAT at FreeBSD.org Sat Jun 13 04:16:19 2009 From: QAT at FreeBSD.org (QAT@FreeBSD.org) Date: Sat Jun 13 04:16:25 2009 Subject: [Custom LOCALBASE/PREFIX] audio/p5-MusicBrainz-TRM - fails: compiler_error Message-ID: <20090613035928.D8F6F8FCB7@release.ixsystems.com> The Restless Daemon identified a compiler error while trying to build: p5-MusicBrainz-TRM-0.02 maintained by perl@FreeBSD.org Makefile ident: $FreeBSD: ports/audio/p5-MusicBrainz-TRM/Makefile,v 1.10 2008/04/17 14:24:09 araujo Exp $ THIS A BUILD WITH _CUSTOM_ PREFIX AND LOCALBASE, _standard_ env in rest. Patches for testing and committing welcomed as a reply to this email. To check if the latest version port builds OK with standard PREFIX/LOCALBASE and with -DNOPORT* please see: http://qat.tecnik93.com/index.php?action=list_buildports&build=7-STABLE-FPT-NPD&search_port_name=p5-MusicBrainz-TRM PortsMon page for the port: http://portsmon.freebsd.org/portoverview.py?category=audio&portname=p5-MusicBrainz-TRM See http://docs.freebsd.org/cgi/mid.cgi?20090531085138.5bd9cc21 for some help Excerpt from http://QATty.TecNik93.com/logs/7-STABLE-FPT-CustDir/p5-MusicBrainz-TRM-0.02.log : building p5-MusicBrainz-TRM-0.02 in directory /usr/local/tinderbox/7-STABLE-FPT-CustDir build started at Sat Jun 13 03:58:55 UTC 2009 port directory: /usr/ports/audio/p5-MusicBrainz-TRM building for: 7.2-STABLE amd64 ............................................. TRM.c:49: error: (Each undeclared identifier is reported only once TRM.c:49: error: for each function it appears in.) TRM.c:49: error: expected ';' before 'RETVAL' TRM.xs:30: error: 'RETVAL' undeclared (first use in this function) TRM.c: In function 'XS_MusicBrainz__TRM_DESTROY': TRM.c:74: error: 'trm_t' undeclared (first use in this function) TRM.c:74: error: expected ';' before 'trm' TRM.c:77: error: 'trm' undeclared (first use in this function) TRM.c: In function 'XS_MusicBrainz__TRM_set_proxy': TRM.c:105: error: 'trm_t' undeclared (first use in this function) TRM.c:105: error: expected ';' before 'trm' TRM.c:110: error: 'trm' undeclared (first use in this function) TRM.c: In function 'XS_MusicBrainz__TRM_set_pcm_data_info': TRM.c:136: error: 'trm_t' undeclared (first use in this function) TRM.c:136: error: expected ';' before 'o' TRM.c:142: error: 'o' undeclared (first use in this function) TRM.c: In function 'XS_MusicBrainz__TRM_set_song_length': TRM.c:167: error: 'trm_t' undeclared (first use in this function) TRM.c:167: error: expected ';' before 'o' TRM.c:171: error: 'o' undeclared (first use in this function) TRM.c: In function 'XS_MusicBrainz__TRM_generate_signature': TRM.c:198: error: 'trm_t' undeclared (first use in this function) TRM.c:198: error: expected ';' before 'o' TRM.c:202: error: 'o' undeclared (first use in this function) TRM.c: In function 'XS_MusicBrainz__TRM_finalize_signature': TRM.c:234: error: 'trm_t' undeclared (first use in this function) TRM.c:234: error: expected ';' before 'o' TRM.c:238: error: 'o' undeclared (first use in this function) TRM.c: In function 'XS_MusicBrainz__TRM_convert_sig_to_ascii': TRM.c:280: error: 'trm_t' undeclared (first use in this function) TRM.c:280: error: expected ';' before 'o' TRM.c:284: error: 'o' undeclared (first use in this function) *** Error code 1 Stop in /work/a/ports/audio/p5-MusicBrainz-TRM/work/MusicBrainz-TRM-0.02. *** Error code 1 Stop in /a/ports/audio/p5-MusicBrainz-TRM. ================================================================ build of /usr/ports/audio/p5-MusicBrainz-TRM ended at Sat Jun 13 03:59:26 UTC 2009 The tarballed WRKDIR can be found here: http://QATty.TecNik93.com/wrkdirs/7-STABLE-FPT-CustDir/p5-MusicBrainz-TRM-0.02.tbz The build which triggered this BotMail was done under tinderbox-devel-3.2_4; dsversion: 3.2 on RELENG_7 on amd64, kern.smp.cpus: 4 with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with: PREFIX=/usr/PPP, LOCALBASE=/usr/PPP, X11BASE=/usr/PPP. A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- QAT - your friendly neighborhood Daemon, preparing a heck of an error trapping system: - "HMC and EOI?" - "Halt, Melt and Catch fire or Execute Operator Immediately." From itetcu at FreeBSD.org Sun Jun 14 16:06:22 2009 From: itetcu at FreeBSD.org (Ion-Mihai Tetcu) Date: Sun Jun 14 16:06:28 2009 Subject: Fw: [Custom LOCALBASE/PREFIX] audio/p5-MusicBrainz-Queries - fails: ??? Message-ID: <20090614190640.6d88752f@it.buh.tecnik93.com> Begin forwarded message: Date: Fri, 12 Jun 2009 20:52:06 -0700 (PDT) From: QAT@FreeBSD.org To: itetcu@buh.tecnik93.com Cc: itetcu@buh.tecnik93.com Subject: [Custom LOCALBASE/PREFIX] audio/p5-MusicBrainz-Queries - fails: ??? The Restless Daemon identified a etc lib sql error while trying to build: p5-MusicBrainz-Queries-0.11 maintained by perl@FreeBSD.org Makefile ident: $FreeBSD: ports/audio/p5-MusicBrainz-Queries/Makefile,v 1.11 2008/04/17 14:24:09 araujo Exp $ THIS A BUILD WITH _CUSTOM_ PREFIX AND LOCALBASE, _standard_ env in rest. Patches for testing and committing welcomed as a reply to this email. To check if the latest version port builds OK with standard PREFIX/LOCALBASE and with -DNOPORT* please see: http://qat.tecnik93.com/index.php?action=list_buildports&build=7-STABLE-FPT-NPD&search_port_name=p5-MusicBrainz-Queries PortsMon page for the port: http://portsmon.freebsd.org/portoverview.py?category=audio&portname=p5-MusicBrainz-Queries See http://docs.freebsd.org/cgi/mid.cgi?20090531085138.5bd9cc21 for some help Excerpt from http://QATty.TecNik93.com/logs/7-STABLE-FPT-CustDir/p5-MusicBrainz-Queries-0.11.log : building p5-MusicBrainz-Queries-0.11 in directory /usr/local/tinderbox/7-STABLE-FPT-CustDir build started at Sat Jun 13 03:51:33 UTC 2009 port directory: /usr/ports/audio/p5-MusicBrainz-Queries building for: 7.2-STABLE amd64 ............................................. Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/PPP/bin/perl5.8.9 to /usr/bin/perl Symlinking /usr/PPP/bin/perl5.8.9 to /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Spamming /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. Spamming /etc/manpath.config... Done. pkg_add expat-2.0.1.tbz pkg_add pkg-config-0.23_1.tbz pkg_add libmusicbrainz-2.1.5.tbz ===> p5-MusicBrainz-Queries-0.11 depends on file: /usr/PPP/include/musicbrainz/queries.h - found ===> p5-MusicBrainz-Queries-0.11 depends on file: /usr/PPP/bin/perl5.8.9 - found ===> Configuring for p5-MusicBrainz-Queries-0.11 Checking if your kit is complete... Looks good Writing Makefile for MusicBrainz::Queries ===> Building for p5-MusicBrainz-Queries-0.11 cp Queries.pm blib/lib/MusicBrainz/Queries.pm AutoSplitting blib/lib/MusicBrainz/Queries.pm (blib/lib/auto/MusicBrainz/Queries) /usr/PPP/bin/perl5.8.9 /usr/PPP/lib/perl5/5.8.9/ExtUtils/xsubpp -typemap /usr/PPP/lib/perl5/5.8.9/ExtUtils/typemap Queries.xs > Queries.xsc && mv Queries.xsc Queries.c Please specify prototyping behavior for Queries.xs (see perlxs manual) cc -c -I../../include -I/usr/local/include -I. -O2 -fno-strict-aliasing -pipe -O2 -fno-strict-aliasing -pipe -DVERSION=\"0.11\" -DXS_VERSION=\"0.11\" -DPIC -fPIC "-I/usr/PPP/lib/perl5/5.8.9/mach/CORE" Queries.c In file included from Queries.xs:5: ppport.h:227:1: warning: "PERL_UNUSED_DECL" redefined In file included from Queries.xs:2: /usr/PPP/lib/perl5/5.8.9/mach/CORE/perl.h:204:1: warning: this is the location of the previous definition Queries.xs:7:33: error: musicbrainz/queries.h: No such file or directory *** Error code 1 Stop in /work/a/ports/audio/p5-MusicBrainz-Queries/work/MusicBrainz-Queries-0.11. *** Error code 1 Stop in /a/ports/audio/p5-MusicBrainz-Queries. ================================================================ build of /usr/ports/audio/p5-MusicBrainz-Queries ended at Sat Jun 13 03:52:04 UTC 2009 The tarballed WRKDIR can be found here: http://QATty.TecNik93.com/wrkdirs/7-STABLE-FPT-CustDir/p5-MusicBrainz-Queries-0.11.tbz The build which triggered this BotMail was done under tinderbox-devel-3.2_4; dsversion: 3.2 on RELENG_7 on amd64, kern.smp.cpus: 4 with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with: PREFIX=/usr/PPP, LOCALBASE=/usr/PPP, X11BASE=/usr/PPP. A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- QAT - your friendly neighborhood Daemon, preparing a heck of an error trapping system: - "HMC and EOI?" - "Halt, Melt and Catch fire or Execute Operator Immediately." -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 196 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-perl/attachments/20090614/77c11dbb/signature.pgp From bugmaster at FreeBSD.org Mon Jun 15 11:08:06 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Jun 15 11:10:35 2009 Subject: Current problem reports assigned to perl@FreeBSD.org Message-ID: <200906151108.n5FB85cs078265@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/134952 perl [patch] security/p5-Net-SSLeay build shouldn't need in o ports/134379 perl net/p5-perl-ldap makes no mention of Net::LDAP o ports/131225 perl math/PDL: PDL-2.4.3_5: Unable to find PDL/pdldoc.db o ports/129626 perl lang/p5-Tcl segfaults on i386 and amd64 on FreeBSD 7 o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau 5 problems total. From info at wiseinvestcr.com Wed Jun 17 03:17:36 2009 From: info at wiseinvestcr.com (info@wiseinvestcr.com) Date: Wed Jun 17 03:17:42 2009 Subject: New Costa Rica Homes 129,000! Message-ID: <200906170316.n5H3GFVq006383@mail.easycostarentals.com> Close to airport, beaches, shopping and health care. Visit: http://wiseinvestcr.com/a4rio3 for more details. Excellent returns. Rich Group SA Calle 3, Avenida 11, 150 metros norte del Banco Nacional San Jose Centro, San Jose, Costa Rica 0 800 0150 6631/877-900-1188 unsubscribe: http://wiseinvestcr.com/unsubscribe From info at ucanaffordit.com Wed Jun 17 19:22:51 2009 From: info at ucanaffordit.com (info@ucanaffordit.com) Date: Wed Jun 17 19:22:58 2009 Subject: 2 Costa Rican Gems! Message-ID: <200906171921.n5HJLV30005784@mail.easycostarentals.com> Just 119,000 for a new 3-bedroom bungalow! Visit: http://ucanaffordit.com/luzsol for details. Just 159,000 for a new 2 bedroom on beach alley! Furnished! Visit: http://sandysunnycr.com/luzsol for more details. Buy now,values are rising once again in Costa Rica. RCI SA Avenida 7 Calle 14 200 metros norte del parqueo Ronald San Jose, Costa Rica 877-900-1188 unsubscribe: http://ucanaffordit.com/unsubscribe From QAT at FreeBSD.org Thu Jun 18 00:17:02 2009 From: QAT at FreeBSD.org (QAT@FreeBSD.org) Date: Thu Jun 18 00:17:08 2009 Subject: [Custom LOCALBASE/PREFIX] lang/p5-Tcl - fails: compiler_error Message-ID: <20090617235932.0434E8FCB7@release.ixsystems.com> The Restless Daemon identified a compiler error while trying to build: p5-Tcl-0.97_2 maintained by perl@FreeBSD.org Makefile ident: $FreeBSD: ports/lang/p5-Tcl/Makefile,v 1.33 2009/03/05 11:36:12 mm Exp $ THIS A BUILD WITH _CUSTOM_ PREFIX AND LOCALBASE, _standard_ env in rest. Patches for testing and committing welcomed as a reply to this email. To check if the latest version port builds OK with standard PREFIX/LOCALBASE and with -DNOPORT* please see: http://qat.tecnik93.com/index.php?action=list_buildports&build=7-STABLE-FPT-NPD&search_port_name=p5-Tcl PortsMon page for the port: http://portsmon.freebsd.org/portoverview.py?category=lang&portname=p5-Tcl See http://docs.freebsd.org/cgi/mid.cgi?20090531085138.5bd9cc21 for some help Excerpt from http://QATty.TecNik93.com/logs/7-STABLE-FPT-CustDir/p5-Tcl-0.97_2.log : building p5-Tcl-0.97_2 in directory /usr/local/tinderbox/7-STABLE-FPT-CustDir build started at Wed Jun 17 23:58:56 UTC 2009 port directory: /usr/ports/lang/p5-Tcl building for: 7.2-STABLE amd64 ............................................. Tcl.xs:1757: error: 'tclIntTypePtr' undeclared (first use in this function) Tcl.xs:1758: error: 'tclListTypePtr' undeclared (first use in this function) Tcl.xs:1759: error: 'tclStringTypePtr' undeclared (first use in this function) Tcl.xs:1760: error: 'tclWideIntTypePtr' undeclared (first use in this function) Tcl.xs:1765: error: 'TCL_OK' undeclared (first use in this function) Tcl.xs:1767: error: 'TCL_RETURN' undeclared (first use in this function) Tcl.xs:1768: error: 'TCL_BREAK' undeclared (first use in this function) Tcl.xs:1769: error: 'TCL_CONTINUE' undeclared (first use in this function) Tcl.xs:1771: error: 'TCL_GLOBAL_ONLY' undeclared (first use in this function) Tcl.xs:1772: error: 'TCL_NAMESPACE_ONLY' undeclared (first use in this function) Tcl.xs:1773: error: 'TCL_APPEND_VALUE' undeclared (first use in this function) Tcl.xs:1774: error: 'TCL_LIST_ELEMENT' undeclared (first use in this function) Tcl.xs:1775: error: 'TCL_TRACE_READS' undeclared (first use in this function) Tcl.xs:1776: error: 'TCL_TRACE_WRITES' undeclared (first use in this function) Tcl.xs:1777: error: 'TCL_TRACE_UNSETS' undeclared (first use in this function) Tcl.xs:1778: error: 'TCL_TRACE_DESTROYED' undeclared (first use in this function) Tcl.xs:1779: error: 'TCL_INTERP_DESTROYED' undeclared (first use in this function) Tcl.xs:1780: error: 'TCL_LEAVE_ERR_MSG' undeclared (first use in this function) Tcl.xs:1781: error: 'TCL_TRACE_ARRAY' undeclared (first use in this function) Tcl.xs:1783: error: 'TCL_LINK_INT' undeclared (first use in this function) Tcl.xs:1784: error: 'TCL_LINK_DOUBLE' undeclared (first use in this function) Tcl.xs:1785: error: 'TCL_LINK_BOOLEAN' undeclared (first use in this function) Tcl.xs:1786: error: 'TCL_LINK_STRING' undeclared (first use in this function) Tcl.xs:1787: error: 'TCL_LINK_READ_ONLY' undeclared (first use in this function) Tcl.xs:1789: error: 'TCL_WINDOW_EVENTS' undeclared (first use in this function) Tcl.xs:1790: error: 'TCL_FILE_EVENTS' undeclared (first use in this function) Tcl.xs:1791: error: 'TCL_TIMER_EVENTS' undeclared (first use in this function) Tcl.xs:1792: error: 'TCL_IDLE_EVENTS' undeclared (first use in this function) Tcl.xs:1793: error: 'TCL_ALL_EVENTS' undeclared (first use in this function) Tcl.xs:1794: error: 'TCL_DONT_WAIT' undeclared (first use in this function) Tcl.xs:1796: error: 'TCL_EVAL_GLOBAL' undeclared (first use in this function) Tcl.xs:1797: error: 'TCL_EVAL_DIRECT' undeclared (first use in this function) *** Error code 1 Stop in /work/a/ports/lang/p5-Tcl/work/Tcl-0.97. *** Error code 1 Stop in /a/ports/lang/p5-Tcl. ================================================================ build of /usr/ports/lang/p5-Tcl ended at Wed Jun 17 23:59:30 UTC 2009 The tarballed WRKDIR can be found here: http://QATty.TecNik93.com/wrkdirs/7-STABLE-FPT-CustDir/p5-Tcl-0.97_2.tbz The build which triggered this BotMail was done under tinderbox-devel-3.2_4; dsversion: 3.2 on RELENG_7 on amd64, kern.smp.cpus: 4 with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with: PREFIX=/usr/PPP, LOCALBASE=/usr/PPP, X11BASE=/usr/PPP. A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- QAT - your friendly neighborhood Daemon, preparing a heck of an error trapping system: - "HMC and EOI?" - "Halt, Melt and Catch fire or Execute Operator Immediately." From info at ucanaffordit.com Fri Jun 19 14:02:06 2009 From: info at ucanaffordit.com (info@ucanaffordit.com) Date: Fri Jun 19 14:02:11 2009 Subject: Great climate, beaches, people.healthcare, and good government. Message-ID: <200906191400.n5JE0dBG008614@mail.easycostarentals.com> visit: http://ucanaffordit.com/luzsol5 RCG SA - 125 metros norte del Banco Nacional Liberia, Costa Rica unsubscribe: http://ucanaffordit.com/unsubscribe From bugmaster at FreeBSD.org Mon Jun 22 11:08:05 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Jun 22 11:10:43 2009 Subject: Current problem reports assigned to perl@FreeBSD.org Message-ID: <200906221108.n5MB849E019355@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/134952 perl [patch] security/p5-Net-SSLeay build shouldn't need in o ports/134379 perl net/p5-perl-ldap makes no mention of Net::LDAP o ports/131225 perl math/PDL: PDL-2.4.3_5: Unable to find PDL/pdldoc.db o ports/129626 perl lang/p5-Tcl segfaults on i386 and amd64 on FreeBSD 7 o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau 5 problems total. From linimon at FreeBSD.org Tue Jun 23 00:00:09 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Tue Jun 23 00:00:20 2009 Subject: ports/135939: net/p5-Net-Amazon-S3 0.51 has unresolved dependency on DateTimeX.pm Message-ID: <200906230000.n5N009od019234@freefall.freebsd.org> Old Synopsis: p5-Net-Amazon-S3-0.51 has unresolved dependency on DateTimeX.pm New Synopsis: net/p5-Net-Amazon-S3 0.51 has unresolved dependency on DateTimeX.pm Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jun 22 23:59:36 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=135939 From cm at therek.net Tue Jun 23 22:19:29 2009 From: cm at therek.net (Cezary Morga) Date: Tue Jun 23 22:19:52 2009 Subject: ports/135939: net/p5-Net-Amazon-S3 0.51 has unresolved dependency on DateTimeX.pm In-Reply-To: <200906230000.n5N009od019234@freefall.freebsd.org> References: <200906230000.n5N009od019234@freefall.freebsd.org> Message-ID: <4A414BE0.3000206@therek.net> Attached is a patch that: - adds a missing dependency entry in net/p5-Net-Amazon-S3/Makefile - adds devel/p5-MooseX-Types-DateTimeX and successive dependencies: - devel/p5-DateTime-Format-Flexible - devel/p5-DateTimeX-Easy - devel/p5-MooseX-Types-DateTime-ButMaintained - devel/p5-Olson-Abbreviations -- Cezary Morga -------------- next part -------------- diff -ruN net/p5-Net-Amazon-S3.orig/Makefile net/p5-Net-Amazon-S3/Makefile --- net/p5-Net-Amazon-S3.orig/Makefile 2009-06-02 09:14:14.404363000 +0200 +++ net/p5-Net-Amazon-S3/Makefile 2009-06-23 23:25:40.477998000 +0200 @@ -7,6 +7,7 @@ PORTNAME= Net-Amazon-S3 PORTVERSION= 0.51 +PORTREVISION= 1 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -23,6 +24,7 @@ p5-LWP-UserAgent-Determined>=0:${PORTSDIR}/www/p5-LWP-UserAgent-Determined \ p5-Moose>=0:${PORTSDIR}/devel/p5-Moose \ p5-MooseX-StrictConstructor>=0:${PORTSDIR}/devel/p5-MooseX-StrictConstructor \ + p5-MooseX-Types-DateTimeX>=0:${PORTSDIR}/devel/p5-MooseX-Types-DateTimeX \ p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common \ p5-URI>=0:${PORTSDIR}/net/p5-URI \ p5-XML-LibXML>=0:${PORTSDIR}/textproc/p5-XML-LibXML \ diff -ruN devel/p5-DateTime-Format-Flexible.orig/Makefile devel/p5-DateTime-Format-Flexible/Makefile --- devel/p5-DateTime-Format-Flexible.orig/Makefile 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-DateTime-Format-Flexible/Makefile 2009-06-23 23:21:39.898522000 +0200 @@ -0,0 +1,27 @@ +# New ports collection makefile for: devel/p5-DateTime-Format-Flexible +# Date created: 23 Jun 2009 +# Whom: Cezary Morga +# +# $FreeBSD$ +# + +PORTNAME= DateTime-Format-Flexible +PORTVERSION= 0.09 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= cm@therek.net +COMMENT= Flexibly parse strings and turn them into DateTime objects + +RUN_DEPENDS= p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \ + p5-DateTime-Format-Builder>=0.74:${PORTSDIR}/devel/p5-DateTime-Format-Builder \ + p5-DateTime-TimeZone>=0:${PORTSDIR}/devel/p5-DateTime-TimeZone \ + p5-Readonly>=0.06:${PORTSDIR}/devel/p5-Readonly +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= DateTime::Format::Flexible.3 + +.include diff -ruN devel/p5-DateTime-Format-Flexible.orig/distinfo devel/p5-DateTime-Format-Flexible/distinfo --- devel/p5-DateTime-Format-Flexible.orig/distinfo 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-DateTime-Format-Flexible/distinfo 2009-06-23 23:21:39.894523000 +0200 @@ -0,0 +1,3 @@ +MD5 (DateTime-Format-Flexible-0.09.tar.gz) = e7b7c8089f3da5c3872ae97028e06390 +SHA256 (DateTime-Format-Flexible-0.09.tar.gz) = 7b512b5a0f0c00cc95d829addd061f47f27142d39e4e3594391149f97758fc17 +SIZE (DateTime-Format-Flexible-0.09.tar.gz) = 55474 diff -ruN devel/p5-DateTime-Format-Flexible.orig/pkg-descr devel/p5-DateTime-Format-Flexible/pkg-descr --- devel/p5-DateTime-Format-Flexible.orig/pkg-descr 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-DateTime-Format-Flexible/pkg-descr 2009-06-23 23:21:39.896522000 +0200 @@ -0,0 +1,5 @@ +DateTime::Format::Flexible attempts to take any string you give it +and parse it into a DateTime object. The test file tests 2500+ +variations of date/time strings. + +WWW: http://search.cpan.org/dist/DateTime-Format-Flexible/ diff -ruN devel/p5-DateTime-Format-Flexible.orig/pkg-plist devel/p5-DateTime-Format-Flexible/pkg-plist --- devel/p5-DateTime-Format-Flexible.orig/pkg-plist 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-DateTime-Format-Flexible/pkg-plist 2009-06-23 23:21:39.897522000 +0200 @@ -0,0 +1,7 @@ +%%SITE_PERL%%/DateTime/Format/Flexible.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime/Format/Flexible/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime/Format/Flexible +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime/Format +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime +@dirrmtry %%SITE_PERL%%/DateTime/Format +@dirrmtry %%SITE_PERL%%/DateTime diff -ruN devel/p5-DateTimeX-Easy.orig/Makefile devel/p5-DateTimeX-Easy/Makefile --- devel/p5-DateTimeX-Easy.orig/Makefile 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-DateTimeX-Easy/Makefile 2009-06-23 23:21:39.971522000 +0200 @@ -0,0 +1,31 @@ +# New ports collection makefile for: devel/p5-DateTimeX-Easy +# Date created: 23 Jun 2009 +# Whom: Cezary Morga +# +# $FreeBSD$ +# + +PORTNAME= DateTimeX-Easy +PORTVERSION= 0.087 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= cm@therek.net +COMMENT= Parse a date/time string using the best method available + +RUN_DEPENDS= p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \ + p5-DateTime-Format-DateManip>=0:${PORTSDIR}/devel/p5-DateTime-Format-DateManip \ + p5-DateTime-Format-DateParse>=0:${PORTSDIR}/devel/p5-DateTime-Format-DateParse \ + p5-DateTime-Format-ICal>=0:${PORTSDIR}/devel/p5-DateTime-Format-ICal \ + p5-DateTime-Format-Natural>=0:${PORTSDIR}/devel/p5-DateTime-Format-Natural \ + p5-DateTime-Format-Flexible>=0:${PORTSDIR}/devel/p5-DateTime-Format-Flexible \ + p5-Scalar-List-Utils>=0:${PORTSDIR}/lang/p5-Scalar-List-Utils +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= DateTimeX::Easy.3 \ + DateTimeX::Easy::DateParse.3 + +.include diff -ruN devel/p5-DateTimeX-Easy.orig/distinfo devel/p5-DateTimeX-Easy/distinfo --- devel/p5-DateTimeX-Easy.orig/distinfo 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-DateTimeX-Easy/distinfo 2009-06-23 23:21:39.967522000 +0200 @@ -0,0 +1,3 @@ +MD5 (DateTimeX-Easy-0.087.tar.gz) = 231ff4345ff5f7a3092bfdc19c374d51 +SHA256 (DateTimeX-Easy-0.087.tar.gz) = 853ba6016cfd53bd66399b9008b72a94702aeef7d01449e74261610081d64b83 +SIZE (DateTimeX-Easy-0.087.tar.gz) = 33178 diff -ruN devel/p5-DateTimeX-Easy.orig/pkg-descr devel/p5-DateTimeX-Easy/pkg-descr --- devel/p5-DateTimeX-Easy.orig/pkg-descr 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-DateTimeX-Easy/pkg-descr 2009-06-23 23:21:39.968522000 +0200 @@ -0,0 +1,6 @@ +DateTimeX::Easy makes DateTime object creation quick and easy. It +uses a variety of DateTime::Format packages to do the bulk of the +parsing, with some custom tweaks to smooth out the rough edges +(mainly concerning timezone detection and selection). + +WWW: http://search.cpan.org/dist/DateTimeX-Easy/ diff -ruN devel/p5-DateTimeX-Easy.orig/pkg-plist devel/p5-DateTimeX-Easy/pkg-plist --- devel/p5-DateTimeX-Easy.orig/pkg-plist 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-DateTimeX-Easy/pkg-plist 2009-06-23 23:21:39.970522000 +0200 @@ -0,0 +1,7 @@ +%%SITE_PERL%%/DateTimeX/Easy/DateParse.pm +%%SITE_PERL%%/DateTimeX/Easy.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTimeX/Easy/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTimeX/Easy +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTimeX +@dirrmtry %%SITE_PERL%%/DateTimeX/Easy +@dirrmtry %%SITE_PERL%%/DateTimeX diff -ruN devel/p5-MooseX-Types-DateTime-ButMaintained.orig/Makefile devel/p5-MooseX-Types-DateTime-ButMaintained/Makefile --- devel/p5-MooseX-Types-DateTime-ButMaintained.orig/Makefile 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-MooseX-Types-DateTime-ButMaintained/Makefile 2009-06-23 23:21:40.095522000 +0200 @@ -0,0 +1,30 @@ +# New ports collection makefile for: devel/p5-MooseX-Types-DateTime-ButMaintained +# Date created: 23 Jun 2009 +# Whom: Cezary Morga +# +# $FreeBSD$ +# + +PORTNAME= MooseX-Types-DateTime-ButMaintained +PORTVERSION= 0.06 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= cm@therek.net +COMMENT= DateTime related constraints and coercions for Moose + +RUN_DEPENDS= p5-DateTime>=0.43:${PORTSDIR}/devel/p5-DateTime \ + p5-DateTime-Locale>=0.40:${PORTSDIR}/devel/p5-DateTime-Locale \ + p5-DateTime-TimeZone>=0.77:${PORTSDIR}/devel/p5-DateTime-TimeZone \ + p5-Moose>=0.41:${PORTSDIR}/devel/p5-Moose \ + p5-MooseX-Types>=0.04:${PORTSDIR}/devel/p5-MooseX-Types \ + p5-Olson-Abbreviations>=0:${PORTSDIR}/devel/p5-Olson-Abbreviations \ + p5-namespace-clean>=0.08:${PORTSDIR}/devel/p5-namespace-clean +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= MooseX::Types::DateTime::ButMaintained.3 + +.include diff -ruN devel/p5-MooseX-Types-DateTime-ButMaintained.orig/distinfo devel/p5-MooseX-Types-DateTime-ButMaintained/distinfo --- devel/p5-MooseX-Types-DateTime-ButMaintained.orig/distinfo 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-MooseX-Types-DateTime-ButMaintained/distinfo 2009-06-23 23:21:40.091522000 +0200 @@ -0,0 +1,3 @@ +MD5 (MooseX-Types-DateTime-ButMaintained-0.06.tar.gz) = 85d347494479254c4dc6ef8324437b5d +SHA256 (MooseX-Types-DateTime-ButMaintained-0.06.tar.gz) = 11dd5e7443a1dab35968b536a630c93077274341dde78d552a8a6f48ffd2749e +SIZE (MooseX-Types-DateTime-ButMaintained-0.06.tar.gz) = 24668 diff -ruN devel/p5-MooseX-Types-DateTime-ButMaintained.orig/pkg-descr devel/p5-MooseX-Types-DateTime-ButMaintained/pkg-descr --- devel/p5-MooseX-Types-DateTime-ButMaintained.orig/pkg-descr 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-MooseX-Types-DateTime-ButMaintained/pkg-descr 2009-06-23 23:21:40.093522000 +0200 @@ -0,0 +1,9 @@ +This module packages several Moose::Util::TypeConstraints with +coercions, designed to work with the DateTime suite of objects. + +This module is just the MooseX::Types::DateTime without the requirement +on DateTimeX::Easy (which requires DateTime::Manip). As of 0.05 +this module supports globally unique Olson abbreviations, and dies +when they are not globally unique. + +WWW: http://search.cpan.org/dist/MooseX-Types-DateTime-ButMaintained/ diff -ruN devel/p5-MooseX-Types-DateTime-ButMaintained.orig/pkg-plist devel/p5-MooseX-Types-DateTime-ButMaintained/pkg-plist --- devel/p5-MooseX-Types-DateTime-ButMaintained.orig/pkg-plist 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-MooseX-Types-DateTime-ButMaintained/pkg-plist 2009-06-23 23:21:40.094522000 +0200 @@ -0,0 +1,5 @@ +%%SITE_PERL%%/MooseX/Types/DateTime/ButMaintained.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/Types/DateTime/ButMaintained/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/Types/DateTime/ButMaintained +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/Types/DateTime +@dirrmtry %%SITE_PERL%%/MooseX/Types/DateTime diff -ruN devel/p5-MooseX-Types-DateTimeX.orig/Makefile devel/p5-MooseX-Types-DateTimeX/Makefile --- devel/p5-MooseX-Types-DateTimeX.orig/Makefile 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-MooseX-Types-DateTimeX/Makefile 2009-06-23 23:21:39.858523000 +0200 @@ -0,0 +1,29 @@ +# New ports collection makefile for: devel/p5-MooseX-Types-DateTimeX +# Date created: 23 Jun 2009 +# Whom: Cezary Morga +# +# $FreeBSD$ +# + +PORTNAME= MooseX-Types-DateTimeX +PORTVERSION= 0.06 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= cm@therek.net +COMMENT= Extensions to MooseX::Types::DateTime::ButMaintained + +RUN_DEPENDS= p5-DateTimeX-Easy>=0.085:${PORTSDIR}/devel/p5-DateTimeX-Easy \ + p5-Moose>=0.41:${PORTSDIR}/devel/p5-Moose \ + p5-MooseX-Types>=0.04:${PORTSDIR}/devel/p5-MooseX-Types \ + p5-MooseX-Types-DateTime-ButMaintained>=0.04:${PORTSDIR}/devel/p5-MooseX-Types-DateTime-ButMaintained \ + p5-Time-Duration-Parse>=0.06:${PORTSDIR}/devel/p5-Time-Duration-Parse \ + p5-namespace-clean>=0.08:${PORTSDIR}/devel/p5-namespace-clean +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= MooseX::Types::DateTimeX.3 + +.include diff -ruN devel/p5-MooseX-Types-DateTimeX.orig/distinfo devel/p5-MooseX-Types-DateTimeX/distinfo --- devel/p5-MooseX-Types-DateTimeX.orig/distinfo 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-MooseX-Types-DateTimeX/distinfo 2009-06-23 23:21:39.854522000 +0200 @@ -0,0 +1,3 @@ +MD5 (MooseX-Types-DateTimeX-0.06.tar.gz) = d8142d7f7b08af18de6d302da8d7f7b9 +SHA256 (MooseX-Types-DateTimeX-0.06.tar.gz) = f086253081e31025923dd209ff6392d3c9e4db4d186562189114365d254bd088 +SIZE (MooseX-Types-DateTimeX-0.06.tar.gz) = 23880 diff -ruN devel/p5-MooseX-Types-DateTimeX.orig/pkg-descr devel/p5-MooseX-Types-DateTimeX/pkg-descr --- devel/p5-MooseX-Types-DateTimeX.orig/pkg-descr 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-MooseX-Types-DateTimeX/pkg-descr 2009-06-23 23:21:39.855523000 +0200 @@ -0,0 +1,9 @@ +This module builds on MooseX::Types::DateTime to add additional +custom types and coercions. Since it builds on an existing type, +all coercions and constraints are inherited. + +The package name is left as is for legacy reasons: this module is +really a Type with coercions for DateTimeX::Easy. DateTimeX is just +a namespace for non-core or less-official DateTime modules. + +WWW: http://search.cpan.org/dist/MooseX-Types-DateTimeX/ diff -ruN devel/p5-MooseX-Types-DateTimeX.orig/pkg-plist devel/p5-MooseX-Types-DateTimeX/pkg-plist --- devel/p5-MooseX-Types-DateTimeX.orig/pkg-plist 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-MooseX-Types-DateTimeX/pkg-plist 2009-06-23 23:21:39.857522000 +0200 @@ -0,0 +1,7 @@ +%%SITE_PERL%%/MooseX/Types/DateTimeX.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/Types/DateTimeX/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/Types/DateTimeX +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/Types +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX +@dirrmtry %%SITE_PERL%%/MooseX/Typem +@dirrmtry %%SITE_PERL%%/MooseX diff -ruN devel/p5-Olson-Abbreviations.orig/Makefile devel/p5-Olson-Abbreviations/Makefile --- devel/p5-Olson-Abbreviations.orig/Makefile 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-Olson-Abbreviations/Makefile 2009-06-23 23:21:39.951521000 +0200 @@ -0,0 +1,27 @@ +# New ports collection makefile for: devel/p5-Olson-Abbreviations +# Date created: 23 Jun 2009 +# Whom: Cezary Morga +# +# $FreeBSD$ +# + +PORTNAME= Olson-Abbreviations +PORTVERSION= 0.02 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= ../by-authors/id/E/EC/ECARROLL +PKGNAMEPREFIX= p5- + +MAINTAINER= cm@therek.net +COMMENT= Globally unique timezones abbreviation handling + +RUN_DEPENDS= p5-Moose>=0.41:${PORTSDIR}/devel/p5-Moose \ + p5-MooseX-AttributeHelpers>=0:${PORTSDIR}/devel/p5-MooseX-AttributeHelpers \ + p5-MooseX-ClassAttribute>=0:${PORTSDIR}/devel/p5-MooseX-ClassAttribute +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= Olson::Abbreviations.3 + +.include diff -ruN devel/p5-Olson-Abbreviations.orig/distinfo devel/p5-Olson-Abbreviations/distinfo --- devel/p5-Olson-Abbreviations.orig/distinfo 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-Olson-Abbreviations/distinfo 2009-06-23 23:21:39.946523000 +0200 @@ -0,0 +1,3 @@ +MD5 (Olson-Abbreviations-0.02.tar.gz) = 19c1a8b91f0d2e393e0cf824deb36e3b +SHA256 (Olson-Abbreviations-0.02.tar.gz) = 45cd49b266cfe112167d8a2a2a39757e8520b3198bebf1cd5e07d2b9b8d6e306 +SIZE (Olson-Abbreviations-0.02.tar.gz) = 24307 diff -ruN devel/p5-Olson-Abbreviations.orig/pkg-descr devel/p5-Olson-Abbreviations/pkg-descr --- devel/p5-Olson-Abbreviations.orig/pkg-descr 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-Olson-Abbreviations/pkg-descr 2009-06-23 23:21:39.947522000 +0200 @@ -0,0 +1,4 @@ +This module should help you with converting commonly used and often +ambigious olson abbreviations into TZ offset notation. + +WWW: http://search.cpan.org/dist/Olson-Abbreviations/ diff -ruN devel/p5-Olson-Abbreviations.orig/pkg-plist devel/p5-Olson-Abbreviations/pkg-plist --- devel/p5-Olson-Abbreviations.orig/pkg-plist 1970-01-01 01:00:00.000000000 +0100 +++ devel/p5-Olson-Abbreviations/pkg-plist 2009-06-23 23:21:39.949522000 +0200 @@ -0,0 +1,5 @@ +%%SITE_PERL%%/Olson/Abbreviations.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Olson/Abbreviations/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Olson/Abbreviations +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Olson +@dirrmtry %%SITE_PERL%%/Olson From edwin at FreeBSD.org Fri Jun 26 08:40:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jun 26 08:40:17 2009 Subject: ports/136063: [PATCH] www/perlbal: Update to 1.72 Message-ID: <200906260840.n5Q8eBVa085537@freefall.freebsd.org> Synopsis: [PATCH] www/perlbal: Update to 1.72 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jun 26 08:40:11 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136063 From gslin at gslin.org Fri Jun 26 08:48:28 2009 From: gslin at gslin.org (Gea-Suan Lin) Date: Fri Jun 26 08:48:35 2009 Subject: [PATCH] www/perlbal: Update to 1.72 Message-ID: <20090626083010.846837E81B@colo-p.gslin.org> >Submitter-Id: current-users >Originator: Gea-Suan Lin >Organization: >Confidential: no >Synopsis: [PATCH] www/perlbal: Update to 1.72 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 7.1-STABLE i386 >Environment: System: FreeBSD colo-p.gslin.org 7.1-STABLE FreeBSD 7.1-STABLE #0: Sat Jan 31 21:46:23 UTC 2009 root@gslin:/usr/obj/usr/src/sys/KERNEL i386 >Description: - Update to 1.72 >How-To-Repeat: >Fix: diff -ruN /usr/ports/www/perlbal/Makefile perlbal/Makefile --- /usr/ports/www/perlbal/Makefile 2009-02-04 18:39:38.000000000 +0800 +++ perlbal/Makefile 2009-06-26 16:28:06.000000000 +0800 @@ -6,28 +6,28 @@ # PORTNAME= Perlbal -PORTVERSION= 1.70 -PORTREVISION= 1 +PORTVERSION= 1.72 CATEGORIES= www -MASTER_SITES= http://www.danga.com/dist/Perlbal/ \ - http://www.powertrip.co.za/distfiles/danga/ +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Reverse-proxy load balancer and webserver -RUN_DEPENDS= ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \ - ${SITE_PERL}/${PERL_ARCH}/BSD/Resource.pm:${PORTSDIR}/devel/p5-BSD-Resource \ +RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/BSD/Resource.pm:${PORTSDIR}/devel/p5-BSD-Resource \ ${SITE_PERL}/Danga/Socket.pm:${PORTSDIR}/devel/p5-Danga-Socket \ + ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \ ${SITE_PERL}/Net/Netmask.pm:${PORTSDIR}/net-mgmt/p5-Net-Netmask BUILD_DEPENDS= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN1= perlbal.1 -MAN3= Perlbal.3 Perlbal::Plugin::Palimg.3 \ +MAN3= Perlbal.3 \ + Perlbal::Plugin::Palimg.3 \ Perlbal::Plugin::Cgilike.3 \ Perlbal::Plugin::Include.3 \ + Perlbal::Test.3 \ Perlbal::Util.3 .include @@ -36,8 +36,8 @@ RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes .endif -post-install: .ifndef NOPORTDOCS +post-install: ${MKDIR} ${DOCSDIR} ${CP} -R ${WRKSRC}/doc/ ${DOCSDIR} .endif diff -ruN /usr/ports/www/perlbal/distinfo perlbal/distinfo --- /usr/ports/www/perlbal/distinfo 2008-04-14 12:04:59.000000000 +0800 +++ perlbal/distinfo 2009-06-26 16:04:08.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (Perlbal-1.70.tar.gz) = 3267a45b06cc187d177ad9b9ecc2f68f -SHA256 (Perlbal-1.70.tar.gz) = a2c0630548a22abc02be6b90c6663899a83b6236312f604815b4c78bcfaa2844 -SIZE (Perlbal-1.70.tar.gz) = 138324 +MD5 (Perlbal-1.72.tar.gz) = 041253900d7dfa98beee3d0aab9939b7 +SHA256 (Perlbal-1.72.tar.gz) = 346f414a28d783ec11f593986de581485a7f412112af81b4583ccf42cf83faa8 +SIZE (Perlbal-1.72.tar.gz) = 140642 diff -ruN /usr/ports/www/perlbal/pkg-plist perlbal/pkg-plist --- /usr/ports/www/perlbal/pkg-plist 2008-04-14 12:04:59.000000000 +0800 +++ perlbal/pkg-plist 2009-06-26 16:25:39.000000000 +0800 @@ -4,6 +4,7 @@ %%PORTDOCS%%%%DOCSDIR%%/hacking/hooks.txt %%PORTDOCS%%%%DOCSDIR%%/hacking/todo.txt %%PORTDOCS%%%%DOCSDIR%%/http-versions.txt +%%PORTDOCS%%%%DOCSDIR%%/pool-parameters.txt %%PORTDOCS%%%%DOCSDIR%%/reproxying.txt %%PORTDOCS%%%%DOCSDIR%%/service-parameters.txt %%SITE_PERL%%/Perlbal.pm From cm at therek.net Fri Jun 26 09:23:49 2009 From: cm at therek.net (Cezary Morga) Date: Fri Jun 26 09:24:24 2009 Subject: PERL_USE_SAFE_PUTENV (Re: [Custom PREFIX] x11-toolkits/p5-Wx-Perl-ProcessStream - fails: coredump) In-Reply-To: <20090609232300.631a159b@it.buh.tecnik93.com> References: <20090607085240.233A48FCB7@release.ixsystems.com> <4A2C23DD.3070108@therek.net> <20090608003510.0ae0f5d3@it.buh.tecnik93.com> <4A2EAFD1.10903@therek.net> <20090609232300.631a159b@it.buh.tecnik93.com> Message-ID: <4A4490CA.3050401@therek.net> Hi. Although this is a follow-up to my and Ion-Mihai Tetcu's corespondence, freebsd-perl@ folks, please bear with me till the end. Ion-Mihai, I've finally managed to locate the source of p5-Wx-Perl-ProcessStream's core dumping (at least on 8-CURRENT). It comes from p5-Wx memory leaks problems on which p5-Wx-Perl-ProcessStream depends on, which in turn comes from Perl trying to directly manipulate environment (see Envinronment access section: http://search.cpan.org/~rgarcia/perl-5.10.0/INSTALL#Environment_access). I'm currently testing a small patch for p5-Wx to try forcing the use of FreeBSD's putenv() and if it'll work then p5-Wx-Perl-ProcessStream issue should be resolved. But I think forcing Perl itself to use putenv() (-DPERL_USE_SAFE_PUTENV compilation flag) might be a solution worth at least a though. It would not only solve my problem but I believe other (like ports/131664) too. And here comes a question to skv@ and free-ports@: what do you think about it? In attachment I'm sending a patch for lang/perl5.10/Makefile but I think this should work for perl5.8 as well. -- Cezary Morga -------------- next part -------------- --- lang/perl5.10/Makefile.orig 2009-04-11 14:51:22.000000000 +0200 +++ lang/perl5.10/Makefile 2009-06-26 11:06:10.000000000 +0200 @@ -52,7 +52,8 @@ -Dsiteman1dir=${PREFIX}/man/man1 \ -Ui_malloc -Ui_iconv -Uinstallusrbinperl \ -Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \ - -Dccflags=-DAPPLLIB_EXP=\"${BSDPAN_DEST}\" + -Dccflags=-DAPPLLIB_EXP=\"${BSDPAN_DEST}\" \ + -DPERL_USE_SAFE_PUTENV -A append:ccflags=" -DPERL_USE_SAFE_PUTENV" LOCALE_CLEANUP= LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \ LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \ LC_TIME="" From jadawin at FreeBSD.org Fri Jun 26 11:52:17 2009 From: jadawin at FreeBSD.org (jadawin@FreeBSD.org) Date: Fri Jun 26 11:52:23 2009 Subject: ports/136063: [PATCH] www/perlbal: Update to 1.72 Message-ID: <200906261152.n5QBqFA6031200@freefall.freebsd.org> Synopsis: [PATCH] www/perlbal: Update to 1.72 State-Changed-From-To: open->closed State-Changed-By: jadawin State-Changed-When: Fri Jun 26 11:52:15 UTC 2009 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=136063 From dfilter at FreeBSD.ORG Fri Jun 26 12:00:13 2009 From: dfilter at FreeBSD.ORG (dfilter service) Date: Fri Jun 26 12:00:19 2009 Subject: ports/136063: commit references a PR Message-ID: <200906261200.n5QC0BYI031437@freefall.freebsd.org> The following reply was made to PR ports/136063; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/136063: commit references a PR Date: Fri, 26 Jun 2009 11:52:00 +0000 (UTC) jadawin 2009-06-26 11:51:46 UTC FreeBSD ports repository Modified files: www/perlbal Makefile distinfo pkg-plist Log: - Update to 1.72 PR: ports/136063 Submitted by: Gea-Suan Lin Revision Changes Path 1.18 +8 -8 ports/www/perlbal/Makefile 1.14 +3 -3 ports/www/perlbal/distinfo 1.10 +2 -1 ports/www/perlbal/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From QAT at FreeBSD.org Fri Jun 26 16:06:03 2009 From: QAT at FreeBSD.org (QAT@FreeBSD.org) Date: Fri Jun 26 16:06:10 2009 Subject: [Custom LOCALBASE/PREFIX] net-mgmt/p5-SNMP - fails: makefile Message-ID: <20090626154720.157638FCB7@release.ixsystems.com> The Restless Daemon identified a makefile error while trying to build: p5-SNMP-4.2.7.1 maintained by perl@FreeBSD.org Makefile ident: $FreeBSD: ports/net-mgmt/p5-SNMP/Makefile,v 1.27 2008/09/26 14:43:11 clsung Exp $ THIS A BUILD WITH _CUSTOM_ PREFIX AND LOCALBASE, _standard_ env in rest. Patches for testing and committing welcomed as a reply to this email. To check if the latest version port builds OK with standard PREFIX/LOCALBASE and with -DNOPORT* please see: http://qat.tecnik93.com/index.php?action=list_buildports&build=7-STABLE-FPT-NPD&search_port_name=p5-SNMP PortsMon page for the port: http://portsmon.freebsd.org/portoverview.py?category=net-mgmt&portname=p5-SNMP See http://docs.freebsd.org/cgi/mid.cgi?20090531085138.5bd9cc21 for some help Excerpt from http://QATty.TecNik93.com/logs/7-STABLE-FPT-CustDir/p5-SNMP-4.2.7.1.log : building p5-SNMP-4.2.7.1 in directory /usr/local/tinderbox/7-STABLE-FPT-CustDir build started at Fri Jun 26 15:46:43 UTC 2009 port directory: /usr/ports/net-mgmt/p5-SNMP building for: 7.2-STABLE amd64 ............................................. ======================================== add_pkg perl-5.8.9_3.tbz ucd-snmp-4.2.7.1.tbz adding dependencies pkg_add perl-5.8.9_3.tbz Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/PPP/bin/perl5.8.9 to /usr/bin/perl Symlinking /usr/PPP/bin/perl5.8.9 to /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Spamming /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. Spamming /etc/manpath.config... Done. pkg_add ucd-snmp-4.2.7.1.tbz ===> p5-SNMP-4.2.7.1 depends on file: /usr/PPP/bin/perl5.8.9 - found ===> p5-SNMP-4.2.7.1 depends on shared library: snmp.4 - found ===> Configuring for p5-SNMP-4.2.7.1 Where are the ucd-snmp include files? [/usr/local/include] /usr/local/include Where is the ucd-snmp library installed? [/usr/lib] /usr/lib Unable to open /usr/local/include/ucd-snmp/ucd-snmp-config.h, assuming no SSL Checking if your kit is complete... Looks good Writing Makefile for SNMP Unable to locate the MIBs, Please enter the path: [/usr/local/sbin] /usr/local/sbin Unable to locate "snmpd". Please enter the path: [/usr/local/sbin] /usr/local/sbin Unable to locate "snmptrapd". Please enter the path: [/usr/local/sbin] /usr/local/sbin Error: /usr/local/sbin/snmpd does not exist or is unreadable. 'make test' will not work. Error: /usr/local/sbin/snmptrapd does not exist or is unreadable. 'make test' will not work. ===> Building for p5-SNMP-4.2.7.1 cp SNMP.pm blib/lib/SNMP.pm AutoSplitting blib/lib/SNMP.pm (blib/lib/auto/SNMP) make: don't know how to make /usr/local/include/ucd-snmp/ucd-snmp-config.h. Stop *** Error code 1 Stop in /a/ports/net-mgmt/p5-SNMP. ================================================================ build of /usr/ports/net-mgmt/p5-SNMP ended at Fri Jun 26 15:47:17 UTC 2009 The tarballed WRKDIR can be found here: http://QATty.TecNik93.com/wrkdirs/7-STABLE-FPT-CustDir/p5-SNMP-4.2.7.1.tbz The build which triggered this BotMail was done under tinderbox-devel-3.2_4; dsversion: 3.2 on RELENG_7 on amd64, kern.smp.cpus: 4 with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with: PREFIX=/usr/PPP, LOCALBASE=/usr/PPP, X11BASE=/usr/PPP. A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- QAT - your friendly neighborhood Daemon, preparing a heck of an error trapping system: - "HMC and EOI?" - "Halt, Melt and Catch fire or Execute Operator Immediately." From edwin at FreeBSD.org Sat Jun 27 13:40:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jun 27 13:40:23 2009 Subject: ports/136090: Update port: www/perlbal: Add rc script Message-ID: <200906271340.n5RDeC3n098794@freefall.freebsd.org> Synopsis: Update port: www/perlbal: Add rc script Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jun 27 13:40:11 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136090 From jadawin at FreeBSD.org Mon Jun 29 07:55:53 2009 From: jadawin at FreeBSD.org (jadawin@FreeBSD.org) Date: Mon Jun 29 07:55:59 2009 Subject: ports/136090: Update port: www/perlbal: Add rc script Message-ID: <200906290755.n5T7tqip092550@freefall.freebsd.org> Synopsis: Update port: www/perlbal: Add rc script Responsible-Changed-From-To: perl->jadawin Responsible-Changed-By: jadawin Responsible-Changed-When: Mon Jun 29 07:55:51 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=136090 From bugmaster at FreeBSD.org Mon Jun 29 11:08:11 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Jun 29 11:10:29 2009 Subject: Current problem reports assigned to perl@FreeBSD.org Message-ID: <200906291108.n5TB89vI047684@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/135939 perl net/p5-Net-Amazon-S3 0.51 has unresolved dependency on o ports/134952 perl [patch] security/p5-Net-SSLeay build shouldn't need in o ports/134379 perl net/p5-perl-ldap makes no mention of Net::LDAP o ports/131225 perl math/PDL: PDL-2.4.3_5: Unable to find PDL/pdldoc.db o ports/129626 perl lang/p5-Tcl segfaults on i386 and amd64 on FreeBSD 7 o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau 6 problems total.