From bugmaster at FreeBSD.org Mon Nov 3 03:08:00 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Nov 3 03:09:41 2008 Subject: Current problem reports assigned to perl@FreeBSD.org Message-ID: <200811031107.mA3B7xlP012237@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/127720 perl [update] update net/p5-perl-ldap to 0.38 o ports/123912 perl [PATCH] Mk/bsd.perl.mk: Fix WANT_PERL5 related typos o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau 3 problems total. From tobez at freebsd.org Mon Nov 3 04:50:36 2008 From: tobez at freebsd.org (Anton Berezin) Date: Mon Nov 3 04:50:48 2008 Subject: ports/128187: [PATCH] devel/p5-Parse-RecDescent: simplfy dependency In-Reply-To: <759236930810180813r415eaae2of299ebed951632a8@mail.gmail.com> References: <200810181406.m9IE6jW8067588@freefall.freebsd.org> <759236930810180813r415eaae2of299ebed951632a8@mail.gmail.com> Message-ID: <20081103125035.GA66067@heechee.tobez.org> Hi, Sorry for not answering for such a long time. On Sat, Oct 18, 2008 at 08:13:34AM -0700, Yen-Ming Lee wrote: > 2008/10/18 : > > Synopsis: [PATCH] devel/p5-Parse-RecDescent: simplfy dependency > > > > State-Changed-From-To: open->feedback > > State-Changed-By: tobez > > State-Changed-When: Sat Oct 18 16:02:19 CEST 2008 > > State-Changed-Why: > > With regard making the dependency conditional on the perl version, > > I actually think that the better way to do it is to add modifications > > to bsd.perl.mk that we developed together with lth. But I do not have a > > principal objection to this. > > > > With regard to getting rid of BUILD_DEPENDS altogether, could > > you explain your reasoning behind it? In my view, by not > > doing the BUILD_DEPENDS bit, we a) introduce a spurious warning > > into the configure stage in at least some cases, and b) make it more > > difficult than necessary to do the testing without installing the > > modules. > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=128187 > > > > Hi, > > The main reason is to keep minimal dependencies. I explained once in > another PR, and asked for feedbacks. However, nobody replied, so I > just assume that everyone agreed. (see solution 2) > > About the dependencies, we have the following solutions: > > 1. (I did so before) put 'requires' in BUILD_DEPENDS and RUN_DEPENDS, > and then append 'build_requires' to BUILD_DEPENDS. The trade-off is > that we will bring a lot of unnecessary dependencies, like some > dual-life modules or some p5-Test-* that only needed for tests, and > des@ doesn't like that. Well, until we have a bit more automatic and a bit more comprehensive solution, don't you think that we should consider such things on a case-by-case basis? I understand your arguments, and I have presented my own arguments, sometimes agreeing with you, sometimes not, but this discussion is larger than this particular PR. In *this* particular case, do you have a good reason of dropping Text::Balanced from the BUILD_DEPENDS? I don't see any, whatever way I slice it and dice it. > http://lists.freebsd.org/pipermail/freebsd-perl/2008-February/001745.html > http://lists.freebsd.org/pipermail/freebsd-perl/2008-February/001748.html > > 2. (I'm doing so now) put 'requires' in RUN_DEPENDS, and put something > in BUILD_DEPENDS if really needed. Also use conditional dependencies > to avoid dual-life modules. It complains during the configure stage, > but it works well. "Really needed" is in the eye of the beholder. You know that Makefile.PL bitching is harmless, I know it is harmless, but a person installing the module does not. > http://lists.freebsd.org/pipermail/freebsd-perl/2008-July/001900.html > > 3. use PERL_DEPENDS, but we still need to find out the relationship > between the minimum version of the required module and the package > version fulfill that minimum version of the module. In fact I > encounter this problem again recently: Net::Amazon::S3-0.45 requires > IO::File-0.14, which is from IO, but obviously not IO-0.14 Yes, this is a drawback of our proposed solution. I still think it is better to rely on distributions and not on individual modules, though. > http://lists.freebsd.org/pipermail/freebsd-perl/2008-April/001834.html > > We discussed about it several times, please make a decision this time > and put it somewhere in the porters handbook. Hey, *who* is it you want to make a decision? Cheers, \Anton. -- We're going for 'working' here. 'clean' is for people with skills... -- Flemming Jacobsen From jadawin at FreeBSD.org Tue Nov 4 07:34:56 2008 From: jadawin at FreeBSD.org (jadawin@FreeBSD.org) Date: Tue Nov 4 07:35:02 2008 Subject: ports/127720: [update] update net/p5-perl-ldap to 0.38 Message-ID: <200811041534.mA4FYuZY029106@freefall.freebsd.org> Synopsis: [update] update net/p5-perl-ldap to 0.38 State-Changed-From-To: open->closed State-Changed-By: jadawin State-Changed-When: Tue Nov 4 15:33:55 UTC 2008 State-Changed-Why: 0.39 is out. Will be update soon. http://www.freebsd.org/cgi/query-pr.cgi?pr=127720 From leeym at leeym.com Wed Nov 5 08:10:51 2008 From: leeym at leeym.com (Yen-Ming Lee) Date: Wed Nov 5 08:10:56 2008 Subject: ports/128187: [PATCH] devel/p5-Parse-RecDescent: simplfy dependency In-Reply-To: <20081103125035.GA66067@heechee.tobez.org> References: <200810181406.m9IE6jW8067588@freefall.freebsd.org> <759236930810180813r415eaae2of299ebed951632a8@mail.gmail.com> <20081103125035.GA66067@heechee.tobez.org> Message-ID: <759236930811050810t2150d000w741b8e2b5e7b9aae@mail.gmail.com> 2008/11/3 Anton Berezin : > Well, until we have a bit more automatic and a bit more comprehensive > solution, don't you think that we should consider such things on a > case-by-case basis? I understand your arguments, and I have presented my > own arguments, sometimes agreeing with you, sometimes not, but this > discussion is larger than this particular PR. > > In *this* particular case, do you have a good reason of dropping > Text::Balanced from the BUILD_DEPENDS? I don't see any, whatever way I > slice it and dice it. I use conditional dependency because it is the core module for 5.7.3, and I remove it from BUILD_DEPENDS since Parse::RecDescent can build without Text::Balanced. It will complain, but just complain. In *this* particular case, conditional dependency is my main purpose, and I'm fine if you want to keep it in BUILD_DEPENDS. >> http://lists.freebsd.org/pipermail/freebsd-perl/2008-February/001745.html >> http://lists.freebsd.org/pipermail/freebsd-perl/2008-February/001748.html >> >> 2. (I'm doing so now) put 'requires' in RUN_DEPENDS, and put something >> in BUILD_DEPENDS if really needed. Also use conditional dependencies >> to avoid dual-life modules. It complains during the configure stage, >> but it works well. > > "Really needed" is in the eye of the beholder. You know that Makefile.PL > bitching is harmless, I know it is harmless, but a person installing the > module does not. In my opinion, "really needed" means if we don't have that module installed, Makefile.PL will download it from CPAN or do whatever we don't want. If it just complains, never mind, we will install it later when we 'make install'. If you and all the perl@ developers prefer solution 1, to install all the modules so Makefile.PL will never complain, no problem, just put it in porters handbook, in case some users argue that we install unnecessary modules, I can show them that it's our conclusion. We can still review them case by case, but in solution 1, the Makefile should look like this: RUN_DEPENDS= the ones needed for run BUILD_DEPENDS= ${RUN_DEPENDS} BUILD_DEPENDS+= the ones needed for tests (if any) right? >> http://lists.freebsd.org/pipermail/freebsd-perl/2008-July/001900.html >> >> 3. use PERL_DEPENDS, but we still need to find out the relationship >> between the minimum version of the required module and the package >> version fulfill that minimum version of the module. In fact I >> encounter this problem again recently: Net::Amazon::S3-0.45 requires >> IO::File-0.14, which is from IO, but obviously not IO-0.14 > > Yes, this is a drawback of our proposed solution. I still think it is > better to rely on distributions and not on individual modules, though. Since it's the only drawback, and we think it's acceptable, why don't we just do it ? >> http://lists.freebsd.org/pipermail/freebsd-perl/2008-April/001834.html >> >> We discussed about it several times, please make a decision this time >> and put it somewhere in the porters handbook. > > Hey, *who* is it you want to make a decision? > > Cheers, > \Anton. At least not me. You are the better candidate, the core perl ports maintainer. :-) Regards, -- Yen-Ming Lee From lists at nrd.fr Fri Nov 7 09:20:26 2008 From: lists at nrd.fr (Benat Dagorret) Date: Fri Nov 7 09:20:33 2008 Subject: FreeBSD Port: p5-GD-SecurityImage-1.66,1 Message-ID: <20081107181226.5002036b.lists@nrd.fr> Hello, I'm writing a webapp that uses the Catalyst::Plugin::Captcha module, which depends on GD::SecurityImage. As far as I understand the GD::SecurityImage documentation, using the ImageMagick backend is optional : the module needs to be loaded only if GD::SecurityImage is "required" by other modules. So, my question is whether it would be possible to include an option in the GD::SecurityImage Makefile to allow the user build the port without ImageMagick. Or am I missing a way to do that with the current port ? (I use FreeBSD RELEASE 7.0). Thanks for the great work to the FreeBSD developers and maintainers. Regards. -- Benat Dagorret From skreuzer at exit2shell.com Fri Nov 7 12:21:16 2008 From: skreuzer at exit2shell.com (Steven Kreuzer) Date: Fri Nov 7 12:21:30 2008 Subject: FreeBSD Port: p5-GD-SecurityImage-1.66,1 In-Reply-To: <20081107181226.5002036b.lists@nrd.fr> References: <20081107181226.5002036b.lists@nrd.fr> Message-ID: On Nov 7, 2008, at 12:12 PM, Benat Dagorret wrote: > > Hello, > > I'm writing a webapp that uses the Catalyst::Plugin::Captcha module, > which depends on GD::SecurityImage. > > As far as I understand the GD::SecurityImage documentation, using the > ImageMagick backend is optional : the module needs to be loaded only > if > GD::SecurityImage is "required" by other modules. > > So, my question is whether it would be possible to include an option > in > the GD::SecurityImage Makefile to allow the user build the port > without > ImageMagick. Or am I missing a way to do that with the current port ? > (I use FreeBSD RELEASE 7.0). > > Thanks for the great work to the FreeBSD developers and maintainers. > > Regards. > > -- > Benat Dagorret > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org > " Try out the attached patch and let me know how it works for you Steven Kreuzer http://www.exit2shell.com/~skreuzer -------------- next part -------------- A non-text attachment was scrubbed... Name: p5-GD-SecurityImage.patch Type: application/octet-stream Size: 721 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-perl/attachments/20081107/4fc40ad6/p5-GD-SecurityImage.obj -------------- next part -------------- From bugmaster at FreeBSD.org Mon Nov 10 03:07:57 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Nov 10 03:09:57 2008 Subject: Current problem reports assigned to perl@FreeBSD.org Message-ID: <200811101107.mAAB7vdR051035@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/123912 perl [PATCH] Mk/bsd.perl.mk: Fix WANT_PERL5 related typos o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau 2 problems total. From erwin at FreeBSD.org Thu Nov 13 18:29:49 2008 From: erwin at FreeBSD.org (Erwin Lansing) Date: Thu Nov 13 18:29:56 2008 Subject: [ports-i386@FreeBSD.org: p5-Net-Amazon-S3-0.45 failed on i386 6] Message-ID: <20081114022948.GM857@droso.net> FYI; can you please investigate and/or report to the developers? If you are already aware of this problem but do not yet have a fix, please mark the port BROKEN in the appropriate case, so that users do not unexpectedly encounter it. See http://pointyhat.freebsd.org for the full log. Thanks, -erwin ----- Forwarded message from User Ports-i386 ----- Date: Thu, 13 Nov 2008 00:30:21 GMT From: User Ports-i386 To: erwin@FreeBSD.org, linimon@FreeBSD.org Subject: p5-Net-Amazon-S3-0.45 failed on i386 6 You can also find this build log at http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/a.6.20081111095232/p5-Net-Amazon-S3-0.45.log building p5-Net-Amazon-S3-0.45 on gohan54.freebsd.org in directory /x/tmp/6/20081111095232/chroot/49 building for: 6.3-STABLE i386 maintained by: perl@FreeBSD.org port directory: /usr/ports/net/p5-Net-Amazon-S3 Makefile ident: $FreeBSD: ports/net/p5-Net-Amazon-S3/Makefile,v 1.11 2008/08/23 06:36:46 leeym Exp $ build started at Thu Nov 13 00:28:28 UTC 2008 FETCH_DEPENDS= PATCH_DEPENDS=perl-5.8.8_1.tbz EXTRACT_DEPENDS=perl-5.8.8_1.tbz BUILD_DEPENDS=p5-Compress-Raw-Zlib-2.015.tbz p5-Compress-Zlib-2.015.tbz p5-Digest-MD5-File-0.07.tbz p5-HTML-Parser-3.56_1.tbz p5-HTML-Tagset-3.20.tbz p5-IO-Compress-Base-2.015.tbz p5-IO-Compress-Zlib-2.015.tbz p5-URI-1.37.tbz p5-libwww-5.820.tbz perl-5.8.8_1.tbz RUN_DEPENDS=libiconv-1.11_1.tbz libxml2-2.6.32_1.tbz p5-Class-Accessor-0.31.tbz p5-Compress-Raw-Zlib-2.015.tbz p5-Compress-Zlib-2.015.tbz p5-Digest-HMAC-1.01.tbz p5-Digest-SHA1-2.11.tbz p5-HTML-Parser-3.56_1.tbz p5-HTML-Tagset-3.20.tbz p5-IO-1.2301.tbz p5-IO-Compress-Base-2.015.tbz p5-IO-Compress-Zlib-2.015.tbz p5-LWP-UserAgent-Determined-1.03.tbz p5-URI-1.37.tbz p5-XML-LibXML-1.66000.tbz p5-XML-LibXML-Common-0.13.tbz p5-XML-NamespaceSupport-1.09_1.tbz p5-XML-SAX-0.96.tbz p5-libwww-5.820.tbz perl-5.8.8_1.tbz pkg-config-0.23_1.tbz prefixes: LOCALBASE=usr/local X11BASE=usr/local add_pkg ================================================================ ======================================== => Net-Amazon-S3-0.45.tar.gz doesn't seem to exist in /tmp/distfiles/. => Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/. Net-Amazon-S3-0.45.tar.gz 19 kB 871 kBps => MD5 Checksum OK for Net-Amazon-S3-0.45.tar.gz. => SHA256 Checksum OK for Net-Amazon-S3-0.45.tar.gz. ================================================================ ======================================== add_pkg perl-5.8.8_1.tbz adding dependencies pkg_add perl-5.8.8_1.tbz Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl Symlinking /usr/local/bin/perl5.8.8 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. ===> Extracting for p5-Net-Amazon-S3-0.45 => MD5 Checksum OK for Net-Amazon-S3-0.45.tar.gz. => SHA256 Checksum OK for Net-Amazon-S3-0.45.tar.gz. ===> p5-Net-Amazon-S3-0.45 depends on file: /usr/local/bin/perl5.8.8 - found Deleting perl-5.8.8_1 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. ================================================================ ======================================== add_pkg perl-5.8.8_1.tbz adding dependencies pkg_add perl-5.8.8_1.tbz Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl Symlinking /usr/local/bin/perl5.8.8 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. ===> Patching for p5-Net-Amazon-S3-0.45 ===> p5-Net-Amazon-S3-0.45 depends on file: /usr/local/bin/perl5.8.8 - found Deleting perl-5.8.8_1 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. ================================================================ ======================================== add_pkg p5-Compress-Raw-Zlib-2.015.tbz p5-Compress-Zlib-2.015.tbz p5-Digest-MD5-File-0.07.tbz p5-HTML-Parser-3.56_1.tbz p5-HTML-Tagset-3.20.tbz p5-IO-Compress-Base-2.015.tbz p5-IO-Compress-Zlib-2.015.tbz p5-URI-1.37.tbz p5-libwww-5.820.tbz perl-5.8.8_1.tbz adding dependencies pkg_add p5-Compress-Raw-Zlib-2.015.tbz Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl Symlinking /usr/local/bin/perl5.8.8 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 p5-Compress-Zlib-2.015.tbz pkg_add p5-Digest-MD5-File-0.07.tbz pkg_add p5-HTML-Parser-3.56_1.tbz skipping p5-HTML-Parser-3.56_1, already added pkg_add p5-HTML-Tagset-3.20.tbz skipping p5-HTML-Tagset-3.20, already added pkg_add p5-IO-Compress-Base-2.015.tbz skipping p5-IO-Compress-Base-2.015, already added pkg_add p5-IO-Compress-Zlib-2.015.tbz skipping p5-IO-Compress-Zlib-2.015, already added pkg_add p5-URI-1.37.tbz skipping p5-URI-1.37, already added pkg_add p5-libwww-5.820.tbz skipping p5-libwww-5.820, already added pkg_add perl-5.8.8_1.tbz skipping perl-5.8.8_1, already added ===> p5-Net-Amazon-S3-0.45 depends on package: p5-Digest-MD5-File>=0 - found ===> p5-Net-Amazon-S3-0.45 depends on file: /usr/local/bin/perl5.8.8 - found ===> Configuring for p5-Net-Amazon-S3-0.45 WARNING: LICENSE is not a known parameter. Warning: prerequisite Class::Accessor::Fast 0 not found. Warning: prerequisite Digest::HMAC_SHA1 0 not found. Warning: prerequisite IO::File 1.14 not found. We have 1.13. Warning: prerequisite LWP::UserAgent::Determined 0 not found. Checking if your kit is complete... Looks good Warning: prerequisite XML::LibXML 0 not found. Warning: prerequisite XML::LibXML::XPathContext 0 not found. 'LICENSE' is not a known MakeMaker parameter name. Writing Makefile for Net::Amazon::S3 ===> Building for p5-Net-Amazon-S3-0.45 cp lib/Net/Amazon/S3/Bucket.pm blib/lib/Net/Amazon/S3/Bucket.pm cp lib/Net/Amazon/S3.pm blib/lib/Net/Amazon/S3.pm Manifying blib/man3/Net::Amazon::S3::Bucket.3 Manifying blib/man3/Net::Amazon::S3.3 ================================================================ ======================================== make: don't know how to make regression-test(continuing) ================================================================ ======================================== add_pkg libiconv-1.11_1.tbz libxml2-2.6.32_1.tbz p5-Class-Accessor-0.31.tbz p5-Compress-Raw-Zlib-2.015.tbz p5-Compress-Zlib-2.015.tbz p5-Digest-HMAC-1.01.tbz p5-Digest-SHA1-2.11.tbz p5-HTML-Parser-3.56_1.tbz p5-HTML-Tagset-3.20.tbz p5-IO-1.2301.tbz p5-IO-Compress-Base-2.015.tbz p5-IO-Compress-Zlib-2.015.tbz p5-LWP-UserAgent-Determined-1.03.tbz p5-URI-1.37.tbz p5-XML-LibXML-1.66000.tbz p5-XML-LibXML-Common-0.13.tbz p5-XML-NamespaceSupport-1.09_1.tbz p5-XML-SAX-0.96.tbz p5-libwww-5.820.tbz perl-5.8.8_1.tbz pkg-config-0.23_1.tbz adding dependencies pkg_add libiconv-1.11_1.tbz pkg_add libxml2-2.6.32_1.tbz pkg_add p5-Class-Accessor-0.31.tbz pkg_add p5-Compress-Raw-Zlib-2.015.tbz skipping p5-Compress-Raw-Zlib-2.015, already added pkg_add p5-Compress-Zlib-2.015.tbz skipping p5-Compress-Zlib-2.015, already added pkg_add p5-Digest-HMAC-1.01.tbz pkg_add p5-Digest-SHA1-2.11.tbz skipping p5-Digest-SHA1-2.11, already added pkg_add p5-HTML-Parser-3.56_1.tbz skipping p5-HTML-Parser-3.56_1, already added pkg_add p5-HTML-Tagset-3.20.tbz skipping p5-HTML-Tagset-3.20, already added pkg_add p5-IO-1.2301.tbz pkg_add p5-IO-Compress-Base-2.015.tbz skipping p5-IO-Compress-Base-2.015, already added pkg_add p5-IO-Compress-Zlib-2.015.tbz skipping p5-IO-Compress-Zlib-2.015, already added pkg_add p5-LWP-UserAgent-Determined-1.03.tbz pkg_add p5-URI-1.37.tbz skipping p5-URI-1.37, already added pkg_add p5-XML-LibXML-1.66000.tbz pkg_add p5-XML-LibXML-Common-0.13.tbz skipping p5-XML-LibXML-Common-0.13, already added pkg_add p5-XML-NamespaceSupport-1.09_1.tbz skipping p5-XML-NamespaceSupport-1.09_1, already added pkg_add p5-XML-SAX-0.96.tbz skipping p5-XML-SAX-0.96, already added pkg_add p5-libwww-5.820.tbz skipping p5-libwww-5.820, already added pkg_add perl-5.8.8_1.tbz skipping perl-5.8.8_1, already added pkg_add pkg-config-0.23_1.tbz skipping pkg-config-0.23_1, already added ===> Installing for p5-Net-Amazon-S3-0.45 ===> p5-Net-Amazon-S3-0.45 depends on package: p5-Class-Accessor>=0 - found ===> p5-Net-Amazon-S3-0.45 depends on package: p5-Digest-HMAC>=0 - found ===> p5-Net-Amazon-S3-0.45 depends on package: p5-LWP-UserAgent-Determined>=0 - found ===> p5-Net-Amazon-S3-0.45 depends on package: p5-URI>=0 - found ===> p5-Net-Amazon-S3-0.45 depends on package: p5-XML-LibXML>=0 - found ===> p5-Net-Amazon-S3-0.45 depends on package: p5-libwww>=0 - found ===> p5-Net-Amazon-S3-0.45 depends on package: p5-IO>=1.14 - found ===> p5-Net-Amazon-S3-0.45 depends on file: /usr/local/bin/perl5.8.8 - found ===> Generating temporary packing list ===> Checking if net/p5-Net-Amazon-S3 already installed Installing /usr/local/lib/perl5/site_perl/5.8.8/Net/Amazon/S3.pm Installing /usr/local/lib/perl5/site_perl/5.8.8/Net/Amazon/S3/Bucket.pm Installing /usr/local/lib/perl5/5.8.8/man/man3/Net::Amazon::S3::Bucket.3 Installing /usr/local/lib/perl5/5.8.8/man/man3/Net::Amazon::S3.3 Writing /usr/local/lib/perl5/site_perl/5.8.8/mach/auto/Net/Amazon/S3/.packlist ===> Compressing manual pages for p5-Net-Amazon-S3-0.45 ===> Registering installation for p5-Net-Amazon-S3-0.45 ================================================================ ======================================== ===> Building package for p5-Net-Amazon-S3-0.45 Creating package /tmp/packages/All/p5-Net-Amazon-S3-0.45.tbz Registering depends: p5-LWP-UserAgent-Determined-1.03 p5-libwww-5.820 p5-Compress-Zlib-2.015 p5-IO-Compress-Zlib-2.015 p5-Compress-Raw-Zlib-2.015 p5-IO-Compress-Base-2.015 p5-XML-LibXML-1.66000 p5-XML-LibXML-Common-0.13 libxml2-2.6.32_1 libiconv-1.11_1 p5-Class-Accessor-0.31 p5-IO-1.2301 pkg-config-0.23_1 p5-HTML-Parser-3.56_1 p5-HTML-Tagset-3.20 p5-URI-1.37 p5-Digest-HMAC-1.01 p5-Digest-SHA1-2.11 p5-XML-SAX-0.96 p5-XML-NamespaceSupport-1.09_1 perl-5.8.8_1. Creating bzip'd tar ball in '/tmp/packages/All/p5-Net-Amazon-S3-0.45.tbz' Deleting p5-Net-Amazon-S3-0.45 ================================================================ === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 119275 4 drwxr-xr-x 2 root wheel 512 Nov 13 00:30 usr/local/lib/perl5/site_perl/5.8.8/mach/auto/Net ================================================================ build of /usr/ports/net/p5-Net-Amazon-S3 ended at Thu Nov 13 00:30:20 UTC 2008 ----- End forwarded message ----- -- Erwin Lansing http://droso.org erwin@FreeBSD.org You are now free to move around the cabin erwin@aauug.dk -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 187 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-perl/attachments/20081114/4745ff21/attachment.pgp From QAT at FreeBSD.org Sun Nov 16 03:08:48 2008 From: QAT at FreeBSD.org (QAT@FreeBSD.org) Date: Sun Nov 16 05:39:01 2008 Subject: www/p5-RTx-Statistics - fails: install_error Message-ID: <20081116105047.E516A12E42E0@quark.ds9.tecnik93.com> Hi, The build which triggered this email is done under tinderbox-2.4.3, on 7-STABLE on amd64, with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the "official" up-to-date Ports Tree, with the following vars set: NOPORTDOCS=yes, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. The build of this port was tried 2 times since last BotMail (probably while trying to build ports that depend on it). Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/p5-RTx-Statistics-0.1.8_1.log : building p5-RTx-Statistics-0.1.8_1 in directory /var/tinderbox/7-STABLE-FTP maintained by: perl@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/www/p5-RTx-Statistics Makefile ident: $FreeBSD: ports/www/p5-RTx-Statistics/Makefile,v 1.5 2007/09/08 01:11:38 linimon Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sun Nov 16 10:49:45 UTC 2008 ................................................... Installing /usr/local/rt3/share/html/RTx/Statistics/Elements/DateSelectRow Installing /usr/local/rt3/share/html/RTx/Statistics/Elements/StatColumnMap Installing /usr/local/rt3/share/html/RTx/Statistics/Elements/SelectMultiQueue Installing /usr/local/rt3/share/html/RTx/Statistics/Elements/DurationAsString Installing /usr/local/rt3/share/html/RTx/Statistics/Elements/ControlsAsTable/UpdatePage Installing /usr/local/rt3/share/html/RTx/Statistics/Elements/ControlsAsTable/ControlBox Installing /usr/local/rt3/share/html/RTx/Statistics/Elements/CollectionAsTable/Row Installing /usr/local/rt3/share/html/RTx/Statistics/Elements/CollectionAsTable/Header Installing /usr/local/rt3/share/html/RTx/Statistics/Elements/CollectionAsTable/ParseFormat Installing /usr/local/rt3/share/html/RTx/Statistics/CallsMultiQueue/index.html Installing /usr/local/rt3/share/html/RTx/Statistics/CallsMultiQueue/Elements/Chart Installing /usr/local/rt3/share/html/RTx/Statistics/DayOfWeek/index.html Installing /usr/local/rt3/share/html/RTx/Statistics/DayOfWeek/Elements/Chart Installing /usr/local/rt3/share/html/RTx/Statistics/TimeToResolve/index.html Installing /usr/local/rt3/share/html/RTx/Statistics/TimeToResolve/Elements/Chart Installing /usr/local/rt3/share/html/RTx/Statistics/CallsQueueDay/Results.tsv Installing /usr/local/rt3/share/html/RTx/Statistics/CallsQueueDay/index.html Installing /usr/local/rt3/share/html/RTx/Statistics/CallsQueueDay/Elements/Chart Installing /usr/local/rt3/share/html/RTx/Statistics/OpenStalled/Results.tsv Installing /usr/local/rt3/share/html/RTx/Statistics/OpenStalled/index.html Installing /usr/local/rt3/share/html/RTx/Statistics/OpenStalled/Elements/Chart Installing /usr/local/rt3/share/html/RTx/Statistics/Resolution/index.html Installing /usr/local/rt3/share/html/RTx/Statistics/Resolution/Elements/Chart Installing /usr/local/rt3/share/html/RTx/Statistics/FAQ/index.html Installing /usr/local/rt3/share/html/Callbacks/kStatistics/Elements/Tabs/Default ===> Registering installation for p5-RTx-Statistics-0.1.8_1 ================================================================ ======================================== ===> Building package for p5-RTx-Statistics-0.1.8_1 tar: rt3/local/lib/auto/RTx/Statistics/.packlist: 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-RTx-Statistics-0.1.8_1.tbz Registering depends: rt-3.4.5 p5-Test-WWW-Mechanize-1.20 p5-WWW-Mechanize-1.50 p5-HTTP-Response-Encoding-0.05_1 p5-Apache-DBI-1.06_1 p5-libapreq-1.33 mod_perl-1.30 p5-libwww-5.820 p5-Compress-Zlib-2.015 p5-IO-Compress-Zlib-2.015 p5-Compress-Raw-Zlib-2.015 p5-IO-Compress-Base-2.015 p5-MIME-Tools-5.427,2 p5-Convert-BinHex-1.119 p5-DBIx-SearchBuilder-1.54 p5-Encode-2.26 p5-MIME-Base64-3.07 p5-DBD-mysql-4.006 mysql-client-5.0.67_1 p5-DBIx-DBSchema-0.36 p5-DBI-1.60.4 p5-MLDBM-2.01 p5-HTTP-Server-Simple-Mason-0.09 p5-HTML-Mason-1.39_1 p5-Cache-Cache-1.05_1 p5-Cache-2.04_1 p5-Cache-Simple-TimedExpiry-0.27 p5-Carp-Assert-More-1.12_1 p5-Carp-Assert-0.20 p5-Class-Accessor-0.31 p5-Class-Container-0.12 p5-Exception-Class-1.26 p5-Class-Data-Inheritable-0.08 p5-XML-RSS-1.36 p5-DateTime-Format-W3CDTF-0.04 p5-DateTime-Format-Mail-0.30.01 p5-DateTime-0.43.02 p5-Class-Factory-Util-1.7 p5-Class-ReturnValue-0.55 p5-DateTime-TimeZone-0.77.01 p5-Class-Singleton-1.4 p5-Clone-0.29 p5-DateTime-Locale -0.40.01_2 p5-Devel-StackTrace-1.20 p5-capitalization-0.03 p5-Devel-Symdump-2.0800 p5-File-NFSLock-1.20 p5-File-Temp-0.20 p5-FreezeThaw-0.43 p5-Getopt-Long-2.37 p5-Heap-0.80 p5-Hook-LexWrap-0.20 p5-IO-String-1.08 p5-IO-stringy-2.110 p5-IPC-ShareLite-0.13 p5-Locale-Maketext-Fuzzy-0.10 p5-Locale-Maketext-Lexicon-0.66 p5-Locale-Maketext-1.13 p5-Log-Dispatch-2.21 p5-Module-Refresh-0.13 p5-Module-Versions-Report-1.06 p5-Params-Validate-0.89 p5-CGI.pm-3.42,1 p5-PathTools-3.2900 p5-Storable-2.18 p5-Term-ReadKey-2.30 p5-Test-LongString-0.11 p5-Text-Quoted-2.05 p5-Test-Simple-0.86 p5-Time-HiRes-1.9715,1 p5-Time-Local-1.18 p5-Time-modules-2006.0814 p5-Mail-Tools-2.04 p5-TimeDate-1.16,1 p5-Tree-Simple-1.18 p5-Want-0.18 p5-Text-Autoformat-1.14.0 p5-Text-Reform-1.12.2_1 p5-version-0.76 p5-GD-Graph-1.44.01_1 p5-GD-TextUtil-0.86_1 p5-GD-2.41 gd-2.0.35,1 freetype2-2.3.7 pkg-config-0.23_1 jpeg-6b_7 png-1.2.33 p5-Error-0.17015 p5-List-MoreUtils-0.22 p5-Text-WikiFormat-0.79 p5-Scalar-List-Util s-1.19,1 apache-1.3.41 p5-Net-1.22_1,1 p5-Authen-SASL-2.12 p5-Digest-HMAC-1.01 p5-Digest-SHA1-2.11 p5-HTML-Format-2.04 p5-HTML-Tree-3.23 p5-HTML-Parser-3.56_1 p5-HTTP-Server-Simple-0.35 p5-URI-1.37 p5-HTML-Tagset-3.20 p5-Apache-Session-1.87 p5-Digest-MD5-2.38 p5-Font-AFM-1.20 p5-HTML-Scrubber-0.08 p5-Mail-Sendmail-0.79 p5-GSSAPI-0.26 p5-Regexp-Common-2.122 p5-IO-Socket-SSL-1.17 p5-Net-SSLeay-1.35 p5-Text-Template-1.45 p5-Text-Wrapper-1.02 p5-XML-Parser-2.36 perl-5.8.8_1 expat-2.0.1. Creating bzip'd tar ball in '/tmp/packages/All/p5-RTx-Statistics-0.1.8_1.tbz' *** Error code 1 Stop in /a/ports/www/p5-RTx-Statistics. ================================================================ build of /usr/ports/www/p5-RTx-Statistics ended at Sun Nov 16 10:50:46 UTC 2008 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, -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B From bugmaster at FreeBSD.org Mon Nov 17 03:07:57 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Nov 17 03:09:59 2008 Subject: Current problem reports assigned to perl@FreeBSD.org Message-ID: <200811171107.mAHB7u7G083842@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/123912 perl [PATCH] Mk/bsd.perl.mk: Fix WANT_PERL5 related typos o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau 2 problems total. From bugmaster at FreeBSD.org Mon Nov 24 03:08:34 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Nov 24 03:10:09 2008 Subject: Current problem reports assigned to perl@FreeBSD.org Message-ID: <200811241108.mAOB8Yha021316@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/123912 perl [PATCH] Mk/bsd.perl.mk: Fix WANT_PERL5 related typos o ports/121472 perl Loading perl scripts causes irc/xchat segmentation fau 2 problems total. From admin2 at enabled.com Mon Nov 24 19:53:37 2008 From: admin2 at enabled.com (Noah) Date: Mon Nov 24 19:53:45 2008 Subject: perl from /usr/ports Errno architecture Message-ID: <492B7211.2060600@enabled.com> Hi there, any clues why I am getting a mismatch between architectures? How can I cure this issue? perl -V below as well. portinstall p5-Mail-SpamAssassin [Gathering depends for mail/p5-Mail-SpamAssassin ................................................................................................................................ done] ---> Installing 'p5-Net-DNS-0.63' from a port (dns/p5-Net-DNS) ---> Building '/usr/ports/dns/p5-Net-DNS' ===> Cleaning for p5-Net-DNS-0.63 ===> Vulnerability check disabled, database not found ===> Found saved configuration for p5-Net-DNS-0.59 ===> Extracting for p5-Net-DNS-0.63 => MD5 Checksum OK for Net-DNS-0.63.tar.gz. => SHA256 Checksum OK for Net-DNS-0.63.tar.gz. ===> p5-Net-DNS-0.63 depends on file: /usr/local/bin/perl5.8.8 - found ===> Patching for p5-Net-DNS-0.63 ===> p5-Net-DNS-0.63 depends on file: /usr/local/bin/perl5.8.8 - found ===> p5-Net-DNS-0.63 depends on file: /usr/local/bin/perl5.8.8 - found ===> Configuring for p5-Net-DNS-0.63 Errno architecture (i386-freebsd-64int-6.2-release) does not match executable architecture (i386-freebsd-64int-6.2-release-p11) at /usr/local/lib/perl5/site_perl/5.8.8/Errno.pm line 11. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.8.8/mach/IO/Socket.pm line 17. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.8.8/mach/IO/Socket.pm line 17. Compilation failed in require at ./Makefile.PL line 8. BEGIN failed--compilation aborted at ./Makefile.PL line 8. *** Error code 255 Stop in /usr/ports/dns/p5-Net-DNS. *** Error code 1 Stop in /usr/ports/dns/p5-Net-DNS. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portinstall.53149.0 env make ** Fix the problem and try again. ---> Skipping 'mail/p5-Mail-SpamAssassin' because a requisite port 'dns/p5-Net-DNS' failed (specify -k to force) ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! dns/p5-Net-DNS (unknown build error) * mail/p5-Mail-SpamAssassin perl -V Summary of my perl5 (revision 5 version 8 subversion 8) configuration: Platform: osname=freebsd, osvers=6.2-release-p11, archname=i386-freebsd-64int uname='freebsd typhoon.enabled.com 6.2-release-p11 freebsd 6.2-release-p11 #0: thu mar 6 01:58:49 pst 2008 root@typhoon.enabled.com:usrobjusrsrcsyssmp i386 ' config_args='-sde -Dprefix=/usr/local -Darchlib=/usr/local/lib/perl5/5.8.8/mach -Dprivlib=/usr/local/lib/perl5/5.8.8 -Dman3dir=/usr/local/lib/perl5/5.8.8/perl/man/man3 -Dman1dir=/usr/local/man/man1 -Dsitearch=/usr/local/lib/perl5/site_perl/5.8.8/mach -Dsitelib=/usr/local/lib/perl5/site_perl/5.8.8 -Dscriptdir=/usr/local/bin -Dsiteman3dir=/usr/local/lib/perl5/5.8.8/man/man3 -Dsiteman1dir=/usr/local/man/man1 -Ui_malloc -Ui_iconv -Uinstallusrbinperl -Dcc=cc -Duseshrplib -Dccflags=-DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -Doptimize=-O2 -fno-strict-aliasing -pipe -march=pentiumpro -Ud_dosuid -Ui_gdbm -Dusethreads=n -Dusemymalloc=y -Duse64bitint' hint=recommended, useposix=true, d_sigaction=define usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef useperlio=define d_sfio=undef uselargefiles=define usesocks=undef use64bitint=define use64bitall=undef uselongdouble=undef usemymalloc=y, bincompat5005=undef Compiler: cc='cc', ccflags ='-DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include', optimize='-O2 -fno-strict-aliasing -pipe -march=pentiumpro', cppflags='-DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include' ccversion='', gccversion='3.4.6 [FreeBSD] 20060305', gccosandvers='' intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=12345678 d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12 ivtype='long long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8 alignbytes=4, prototype=define Linker and Libraries: ld='cc', ldflags =' -Wl,-E -L/usr/local/lib' libpth=/usr/lib /usr/local/lib libs=-lgdbm -lm -lcrypt -lutil perllibs=-lm -lcrypt -lutil libc=, so=so, useshrplib=true, libperl=libperl.so gnulibc_version='' Dynamic Linking: dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=' -Wl,-R/usr/local/lib/perl5/5.8.8/mach/CORE' cccdlflags='-DPIC -fPIC', lddlflags='-shared -L/usr/local/lib' Characteristics of this binary (from libperl): Compile-time options: MYMALLOC PERL_MALLOC_WRAP USE_64_BIT_INT USE_LARGE_FILES USE_PERLIO Locally applied patches: defined-or Built under freebsd Compiled at Nov 24 2008 17:22:32 @INC: /usr/local/lib/perl5/5.8.8/BSDPAN /usr/local/lib/perl5/site_perl/5.8.8/mach /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 . From tobez at tobez.org Tue Nov 25 00:56:47 2008 From: tobez at tobez.org (Anton Berezin) Date: Tue Nov 25 00:56:55 2008 Subject: perl from /usr/ports Errno architecture In-Reply-To: <492B7211.2060600@enabled.com> References: <492B7211.2060600@enabled.com> Message-ID: <20081125084034.GA96108@heechee.tobez.org> On Mon, Nov 24, 2008 at 07:33:37PM -0800, Noah wrote: > any clues why I am getting a mismatch between architectures? How can I > cure this issue? > ===> Configuring for p5-Net-DNS-0.63 > Errno architecture (i386-freebsd-64int-6.2-release) does not match > executable architecture (i386-freebsd-64int-6.2-release-p11) at > /usr/local/lib/perl5/site_perl/5.8.8/Errno.pm line 11. You will have to update p5-Errno port which you have installed before you updated your FreeBSD installation. Better yet, just remove it with pkg_delete -f p5-Errno\* I do not see any reason to use it, as the version of this module included into perl distribution is very likely to be adequate to your needs. Hope this helps, \Anton. -- There is no beauty in entropy. -- Eliezer Yudkowsky From sem at FreeBSD.org Sat Nov 29 11:07:29 2008 From: sem at FreeBSD.org (sem@FreeBSD.org) Date: Sat Nov 29 11:07:35 2008 Subject: ports/123912: [PATCH] Mk/bsd.perl.mk: Fix WANT_PERL5 related typos Message-ID: <200811291907.mATJ7Sss096546@freefall.freebsd.org> Synopsis: [PATCH] Mk/bsd.perl.mk: Fix WANT_PERL5 related typos State-Changed-From-To: open->closed State-Changed-By: sem State-Changed-When: Sat Nov 29 19:07:28 UTC 2008 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=123912 From dfilter at FreeBSD.ORG Sat Nov 29 11:10:03 2008 From: dfilter at FreeBSD.ORG (dfilter service) Date: Sat Nov 29 11:10:10 2008 Subject: ports/123912: commit references a PR Message-ID: <200811291910.mATJA30x096652@freefall.freebsd.org> The following reply was made to PR ports/123912; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/123912: commit references a PR Date: Sat, 29 Nov 2008 19:07:03 +0000 (UTC) sem 2008-11-29 19:06:55 UTC FreeBSD ports repository Modified files: Mk bsd.perl.mk Log: - Fix typos in a comment: WANT_PERL5 -> WANT_PERL, is -> if PR: ports/123912 (based on) Submitted by: Philip M. Gollucci Revision Changes Path 1.9 +2 -2 ports/Mk/bsd.perl.mk _______________________________________________ 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"