RE: Builduing PAR under CygWin?

2006-01-20 Thread Roderich Schupp \(ext\)
> > This undefined reference is caused by a superfluous blank > > in /usr/lib/perl5/5.8/cygwin/Config_heavy.pl: > > > > ... > > static_ext=' Win32CORE' > > ^ > > ... > > > > Removing it results in a successful build, but "make test" > > fails in t/2-pp.t with > > > > The perl executa

RE: Builduing PAR under CygWin?

2006-01-23 Thread Roderich Schupp \(ext\)
> Malcolm Nooning wrote: > The -v problem may get better or worse with this fix. The file > automated_pp_test.pl already uses POSIX uname to get the $os, > so please > try making the change below. > > my $_out = $Config{_exe} || '.out'; > if ($os =~ m/CYGWIN/i) { > $_out = '.out'; > } Thank

RE: [Fwd: Problem with PAR, autouse, and Linux 32/64?]

2006-02-17 Thread Roderich Schupp \(ext\)
> I got some further hints (via perlbug): it does seem that the > resulting > archive is not fully self-contained and relies on the local > perl having > an "autouse.pm": is this the way it's meant to be? Definitely not. Actually it's a bug in Module::ScanDeps (which is used to scan your script

RE: [Fwd: Problem with PAR, autouse, and Linux 32/64?]

2006-02-17 Thread Roderich Schupp \(ext\)
> > If this works for you, I'll follow up with a fix > > for Module::ScanDeps. Here it is, it actually fixes three bugs w.r.t. to "autouse": - return not just the autouse'd module, but also "autouse.pm" itself (that's the cause of your problem) - the autouse'd module may also be given as a barew

RE: LWP::User agent vs PAR

2006-02-24 Thread Roderich Schupp \(ext\)
> >I wonder how to compile such small script using PAR to make it work: > > > >#!perl > >use warnings; > >use strict; > >use LWP::UserAgent; > >my $ua = new LWP::UserAgent; > >my $req = new HTTP::Request(GET => 'http://www.google.com'); > >my $res = $ua->request($req);

RE: par requires disk space in /tmp ?

2006-02-24 Thread Roderich Schupp \(ext\)
> and on both systems the commands pp or par or running resulting > executables, > will take some space in /tmp. > the files there will not be removed. > i set the env variable PAR_TEMP to /usr/tmp with no effect. PAR_TEMP is used by the pp'ed application to know where it has been extracted to (e.

RE: PAR 0.92 preflight

2006-02-27 Thread Roderich Schupp \(ext\)
> it's time for another PAR release. Primarily because the SIGNATURE of > the 0.91 release was broken. I'm really sorry for that mistake. > > You can find the preflight version at http://steffen-mueller.net/tmp > > Please test and report your findings to me directly or as an > answer to this po

RE: just a "pebcak" ? or something more .. PAR 0.92

2006-03-09 Thread Roderich Schupp \(ext\)
From: Eadon, Bryant [mailto:[EMAIL PROTECTED] > ./par -I"/home/beadon1/build/PAR-0.92/inc" -I"/app/gmd/pm" > -I"/home/beadon1/perl587/lib/5.8.7/sun4-solaris-thread-multi" > -I"/home/beadon1/perl587/lib/5.8.7" > -I"/home/beadon1/perl587/lib/site_perl/5.8.7/sun4-solaris-thre > ad-multi" -I"/home

RE: just a "pebcak" ? or something more .. PAR 0.92

2006-03-10 Thread Roderich Schupp \(ext\)
> From: Eadon, Bryant [mailto:[EMAIL PROTECTED] > Well, since I couldn't find main, maybe this will help ? > > .oO([EMAIL PROTECTED] ~/build/PAR-0.92) readelf -s myldr/par > Symbol table '.dynsym' contains 256 entries: >Num:Value Size TypeBind Vis Ndx Name > 0:

RE: problems with Scalar::Util

2006-03-30 Thread Roderich Schupp \(ext\)
> I'm trying to create a packed exe to deploy on windows servers. Build > as 'pp -o file.exe script.pl' . Builds fine, but when I run it I get: > > Undefined subroutine &Scalar::Util::refaddr called at overload.pm > line92. > > In an attempt to troubleshoot this, I added: > use Scalar::Util qw(

RE: problems with Scalar::Util

2006-03-30 Thread Roderich Schupp \(ext\)
> I'm trying to create a packed exe to deploy on windows servers. Build > as 'pp -o file.exe script.pl' . Builds fine, but when I run it I get: Following up my previous mail: Did you build pp.exe from the same version of perl and Scalar::Util that is now on the machine you are packing script.pl?

RE: problems with Scalar::Util

2006-03-30 Thread Roderich Schupp \(ext\)
> pp.exe is from ActiveState's package manager. I suppose I > can build it > by hand, and see if I get anything different, however, the correct > version of Scalar::Util is packed into the exe. Actually there are TWO versions of Scalar::Util etc in the executable created by pp from my oneline

RE: Caching additional files

2006-03-30 Thread Roderich Schupp \(ext\)
> The parl.exe executable is stored on the local users pc. The > .par file is > stored on the network drive. Due to security issues, .exe > files are not > allowed on the network drive. > The files are being cached on the local users pc under > c:\documents and > settings\{user}\local settting

RE: problems with Scalar::Util

2006-03-31 Thread Roderich Schupp \(ext\)
> You are right on. The packed exe has version 1.07, and the script is > written, and using 1.18. Now, if only I can get it to use 1.18 > > use Scalar::Util 1.18 qw/refaddr/ doesn't seem to work > > Oddly, when I unzip the exe that I have created with pp, the 1.18 > version is actuall i

RE: Problems with pp-ed binaries and RPMs

2006-05-04 Thread Roderich Schupp \(ext\)
Steffen Mueller wrote: > http://rt.cpan.org/Ticket/Display.html?id=19030 > > Finally, we have https://rt.cpan.org/Ticket/Display.html?id=18536 Oops, I just added a comment to #19030 before reading up on #18536. As explained in my comment to #19030, pp'ed executables (on any ELF system, e.g. Lin

RE: Possible clarification on a possible found problem

2006-05-11 Thread Roderich Schupp \(ext\)
> I am currently using PAR v0.90. The problem I am running into is if I > have a Perl script (lets call it A) that has been converted to an exe > that calls another Perl script (lets call it B) which has also been > converted to an exe, I get an error message that command line > parameters > are

RE: Exclude core modules from executable?

2006-06-07 Thread Roderich Schupp \(ext\)
> Is there a reasonable way to turn off -B in pp to make a nearly- > standalone executable? I'm working on a specialized app that will > run only on MacOSX 10.4, and therefore is guaranteed to have Perl > 5.8.6 installed. I'd like to shrink my multiple 5 MB executables by > using the syste

RE: PAR::Lipo?

2006-06-19 Thread Roderich Schupp (ext)
> Is there documentation somewhere of what comprises the non-ZIP > portion of a PAR standalone executable and/or a PAR standalone > script? http://search.cpan.org/~smueller/PAR-0.94/script/par.pl#Stand-alone_exec utable_format > Most importantly: besides the ZIP portion, does the PAR exe >

RE: Problems with "use diagnostics;"

2006-07-12 Thread Roderich Schupp \(ext\)
[cc'ed the Module:ScanDeps maintainer, see below] > When I do the following on Windows: > > pp -v -o out.exe -e "use diagnostics;" > > and then run .\out.exe, it gives the following error message: > > No diagnostics? at diagnostics.pm line 429. > Compilation failed in require at script/ppCTAFk.pl

RE: Problems with "use diagnostics;"

2006-07-17 Thread Roderich Schupp \(ext\)
Steffen Mueller wrote: > Since nobody answered to my previous suggestion, I just Sorry, that post never made it to my mailbox. > The diffs for ScanDeps.pm and PAR/Filter/PatchContent.pm are > attached. The Module::ScanDeps patch seems to do the job, but is there a reason why you implemented

RE: Module::ScanDeps wrong heuristic on detecting Tk

2006-07-19 Thread Roderich Schupp \(ext\)
> Due to twisted nature of Tk Module::ScanDeps has some > heuristic to deal with it, which appears to give false > positive in my case. And twisted it is: line 626 of Module::ScanDeps return $1 if /\b(\w[\w:]*)::\w+\(/; runs afoul of lines in Tcl/Tk.pm like $bot->pack(-side => "bott

RE: Module::ScanDeps wrong heuristic on detecting Tk

2006-07-24 Thread Roderich Schupp \(ext\)
> Is it possible to populate "my %Preload" hash with Tcl::Tk as > a special case?? That won't help, because listing Foo.pm in %Preload doesn't prevent Foo.pm from being scanned, it only adds to the list of stuff to scan. > this is probably FAQ item, but why not tracking all these "require" > str

RE: Module::ScanDeps wrong heuristic on detecting Tk

2006-07-24 Thread Roderich Schupp \(ext\)
> I return into this already discussed item, because something > other is broken. > > Namely, ScanDeps contains "case-sensitive FS" heuristic also, > and it seem to fail in my case: This heuristic looks bogus, but what is it that actually fails for you? (AFAICT, finding "Tk.pm" when looking for

RE: Module::ScanDeps wrong heuristic on detecting Tk

2006-07-24 Thread Roderich Schupp \(ext\)
> > This heuristic looks bogus, but what is it that actually > > fails for you? > > Because heuristic looks bogus :) > > > > (AFAICT, finding "Tk.pm" when looking for the incorrectly deduced > > "tk.pm" > > has nothing to do with this and is in fact unavoidable when using > > a case-insensitive

RE: Where does par/pp get the perl58.dll file from?

2006-08-04 Thread Roderich Schupp \(ext\)
> XP Pro + SP2 > ActivePerl v5.8.8.817 > PAR 0.942 > > I am compiling a perl script using pp, and was wondering > where it gets > its copy of perl58.dll from that is unpacked into the cache dir? I am > running ActivePerl v5.8.8.817, but the file version in the unpacked > cache dir is v5.8.6.81

RE: Where does par/pp get the perl58.dll file from?

2006-08-04 Thread Roderich Schupp \(ext\)
> I installed it via ppm. This should actually be in the FAQ: the Perl where you built the PAR tools (esp. parl.exe) and the Perl where you actually pp something must be equivalent (i.e. same Perl version and same build options, e.g. threaded or not). Potentially even the versions of assorted cor

RE: Module found by scandeps, but not included in par file

2006-08-14 Thread Roderich Schupp \(ext\)
> The command I use to create the par file 'update_create.par' > from my script 'update_create.pl' is: > pp -vvv -x -n -p -o update_create.par update_create.pl > ... > One of the modules that is missing is 'Digest::MD5'. > I also tried to add this module by adding '-M Digest::MD5' > to the pp comm

RE: PATH invocation wierdness

2006-08-24 Thread Roderich Schupp \(ext\)
> Can someone explain what is going on. Platform is Solaris 2.8 First check that Tk::Event has really been packed in by pp: $ unzip -l /lch/tst/swp/swptst/system/scmon and look for .../Tk/Event.pm. If it isn't, try adding "-M Tk::Event" on your pp command line. Might be that Module::ScanDeps di

RE: PATH invocation wierdness

2006-08-24 Thread Roderich Schupp \(ext\)
> > First check that Tk::Event has really been packed in by pp: > Yes, it is included, both Event.so binary and the perl Event.pm > The output of the unzip is attached. Strange. > [EMAIL PROTECTED]:/lch/tst/swp/swptst$ print_inc > INC=/tmp/par-swptst/cache-da39a3ee5e6b4b0d3255bfef95601890afd8 >

RE: PATH invocation wierdness

2006-08-24 Thread Roderich Schupp \(ext\)
> using PAR, but I cannot claim to understand that much about it), but I > *do* believe that PAR executables sometimes (...) revert to the local > installation... now and then... Behaviour on Windows (native, not cygwin) is definitely different than on *nix (tried Solaris, Linux, cygwin - basica

[rt.cpan.org #129005] Issue with Tk::PNG

2019-04-03 Thread Roderich Schupp via RT
Wed Apr 03 16:50:43 2019: Request 129005 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Issue with Tk::PNG Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: m_barraz...@hotmail.com Status: new Ticket http

[rt.cpan.org #129312] Code signing for OSX

2019-04-29 Thread Roderich Schupp via RT
Mon Apr 29 04:55:56 2019: Request 129312 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Code signing for OSX Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: phi...@kime.org.uk Status: open Ticket https:

[rt.cpan.org #130180] upx packed par pp exe does not work

2019-07-26 Thread Roderich Schupp via RT
Fri Jul 26 10:46:35 2019: Request 130180 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: upx packed par pp exe does not work Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: noobposter...@yandex.com Status

[rt.cpan.org #130685] core module detection doesn't work with -Duserelocatableinc

2019-10-11 Thread Roderich Schupp via RT
Fri Oct 11 17:51:58 2019: Request 130685 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: core module detection doesn't work with -Duserelocatableinc Broken in: 1.049 Severity: Important Owner: Nobody Requestors: frank.lichtenh...@s

[rt.cpan.org #127918] PAR::Packer produces executable with virus

2020-01-04 Thread Roderich Schupp via RT
Sat Jan 04 08:45:38 2020: Request 127918 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: PAR::Packer produces executable with virus Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: j...@hemmerling.net Stat

[rt.cpan.org #132055] PodStrip filter corrupts __FILE__ in modules

2020-03-05 Thread Roderich Schupp via RT
Thu Mar 05 03:31:08 2020: Request 132055 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: PodStrip filter corrupts __FILE__ in modules Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: db...@cpan.org Status:

[rt.cpan.org #132055] PodStrip filter corrupts __FILE__ in modules

2020-03-06 Thread Roderich Schupp via RT
Fri Mar 06 06:27:12 2020: Request 132055 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: PodStrip filter corrupts __FILE__ in modules Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: db...@cpan.org Status:

[rt.cpan.org #132055] PodStrip filter corrupts __FILE__ in modules

2020-03-06 Thread Roderich Schupp via RT
Fri Mar 06 06:33:30 2020: Request 132055 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: PodStrip filter corrupts __FILE__ in modules Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: db...@cpan.org Status:

[rt.cpan.org #132398] PAR::Packer and fork

2020-04-22 Thread Roderich Schupp via RT
Wed Apr 22 09:14:05 2020: Request 132398 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: PAR::Packer and fork Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: vld@sfr.fr Status: new Ticket https://rt.

[rt.cpan.org #132398] PAR::Packer and fork

2020-04-22 Thread Roderich Schupp via RT
Wed Apr 22 11:49:39 2020: Request 132398 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: PAR::Packer and fork Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: vld@sfr.fr Status: open Ticket https://rt

[rt.cpan.org #132398] PAR::Packer and fork

2020-04-25 Thread Roderich Schupp via RT
Sat Apr 25 07:00:18 2020: Request 132398 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: PAR::Packer and fork Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: vld@sfr.fr Status: open Ticket https://rt

[rt.cpan.org #132431] Implicit modules

2020-04-27 Thread Roderich Schupp via RT
Mon Apr 27 10:17:13 2020: Request 132431 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: Module-ScanDeps Subject: Implicit modules Broken in: 1.27 Severity: Normal Owner: Nobody Requestors: j...@cpan.org Status: new Ticket https://rt.cpan.org/T

[rt.cpan.org #132811] Win32: Crash a week after start

2020-06-14 Thread Roderich Schupp via RT
Sun Jun 14 11:24:18 2020: Request 132811 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Win32: Crash a week after start Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: ralf.neuba...@wido.bv.aok.de Status

[rt.cpan.org #132811] Win32: Crash a week after start

2020-06-14 Thread Roderich Schupp via RT
Sun Jun 14 11:49:03 2020: Request 132811 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Win32: Crash a week after start Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: ralf.neuba...@wido.bv.aok.de Status

[rt.cpan.org #133081] [cperl] panic: attempt to copy freed scalar ... to ... at /Tie/Hash/NamedCapture.pm

2020-07-30 Thread Roderich Schupp via RT
Thu Jul 30 08:35:46 2020: Request 133081 was acted upon. Transaction: Ticket created by RSCHUPP Queue: PAR-Packer Subject: [cperl] panic: attempt to copy freed scalar ... to ... at /Tie/Hash/NamedCapture.pm Broken in: (no value) Severity: (no value) Owner: Nobody Reques

[rt.cpan.org #133172] Missing entry in Changes file for 1.29

2020-08-17 Thread Roderich Schupp via RT
Mon Aug 17 11:10:16 2020: Request 133172 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: Module-ScanDeps Subject: Missing entry in Changes file for 1.29 Broken in: 1.29 Severity: (no value) Owner: Nobody Requestors: tin...@cpan.org Status: new

[rt.cpan.org #132067] fix for Archive::Zip related test failures due to symlinks

2020-11-11 Thread Roderich Schupp via RT
Wed Nov 11 03:30:07 2020: Request 132067 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Dist Subject: fix for Archive::Zip related test failures due to symlinks Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: slaf...@cpan.or

[rt.cpan.org #132067] fix for Archive::Zip related test failures due to symlinks

2020-11-12 Thread Roderich Schupp via RT
Thu Nov 12 10:07:34 2020: Request 132067 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Dist Subject: fix for Archive::Zip related test failures due to symlinks Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: slaf...@cpan.or

[rt.cpan.org #132067] fix for Archive::Zip related test failures due to symlinks

2020-11-17 Thread Roderich Schupp via RT
Tue Nov 17 04:52:17 2020: Request 132067 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Dist Subject: fix for Archive::Zip related test failures due to symlinks Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: slaf...@cpan.or

[rt.cpan.org #129312] Code signing for OSX

2020-11-30 Thread Roderich Schupp via RT
Mon Nov 30 03:33:38 2020: Request 129312 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Code signing for OSX Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: phi...@kime.org.uk Status: open Ticket https:

[rt.cpan.org #129312] Code signing for OSX

2020-11-30 Thread Roderich Schupp via RT
Mon Nov 30 11:16:26 2020: Request 129312 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Code signing for OSX Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: phi...@kime.org.uk Status: open Ticket https:

[rt.cpan.org #133999] PAR::Filter::Bleach

2021-01-06 Thread Roderich Schupp via RT
Wed Jan 06 17:25:55 2021: Request 133999 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: PAR::Filter::Bleach Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: bonaventura.ingen...@hvbg.hessen.de Status: new

[rt.cpan.org #75193] [PATCH] Fix build on Win32/VC++

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:11:37 2021: Request 75193 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: [PATCH] Fix build on Win32/VC++ Broken in: 1.012 Severity: Important Owner: RSCHUPP Requestors: s...@cpan.org Status: open Ticket https:

[rt.cpan.org #79120] Include a 'name' in results hash, with module name

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:12:51 2021: Request 79120 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: Module-ScanDeps Subject: Include a 'name' in results hash, with module name Broken in: 1.08 Severity: Wishlist Owner: Nobody Requestors: ne...@cpan.org Statu

[rt.cpan.org #117955] LICENSE does not agree with lib/Module/ScanDeps.pm

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:14:55 2021: Request 117955 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: Module-ScanDeps Subject: LICENSE does not agree with lib/Module/ScanDeps.pm Broken in: 1.22 Severity: (no value) Owner: Nobody Requestors: jples...@redhat.com

[rt.cpan.org #24165] Have you thought of providing a graphical output of the dependencies?

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:15:43 2021: Request 24165 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: Module-ScanDeps Subject: Have you thought of providing a graphical output of the dependencies? Broken in: 0.69 Severity: Wishlist Owner: Nobody Requestors: adrian

[rt.cpan.org #132431] Implicit modules

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:18:17 2021: Request 132431 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: Module-ScanDeps Subject: Implicit modules Broken in: 1.27 Severity: Normal Owner: Nobody Requestors: j...@cpan.org Status: open Ticket https://rt.cpan.org/

[rt.cpan.org #102019] Windows 7 exe issue / Perl probram compiled with PP

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:19:36 2021: Request 102019 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: Windows 7 exe issue / Perl probram compiled with PP Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: vidalc...@yahoo.com S

[rt.cpan.org #13508] cannot find Glib.dll on win32, despite being packaged in the exe

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:22:53 2021: Request 13508 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: cannot find Glib.dll on win32, despite being packaged in the exe Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: schm...@schmorp.

[rt.cpan.org #61927] $ENV{PAR_GLOBAL_TMPDIR} not used

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:24:39 2021: Request 61927 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: $ENV{PAR_GLOBAL_TMPDIR} not used Broken in: 1.002 Severity: Important Owner: Nobody Requestors: jf...@cpan.org Status: open Ticket https://rt.c

[rt.cpan.org #30742] binmode() on closed filehandle $fh at c:/perl/site/lib/PAR.pm line 776, <_FH> chunk 1.

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:26:14 2021: Request 30742 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: binmode() on closed filehandle $fh at c:/perl/site/lib/PAR.pm line 776, <_FH> chunk 1. Broken in: (no value) Severity: (no value) Owner: Nobody Reque

[rt.cpan.org #48240] MODULE object version 1.YYY does not match $MODULE::VERSION 1.XXX at /usr/lib/perl/5.10/DynaLoader.pm

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:28:14 2021: Request 48240 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: MODULE object version 1.YYY does not match $MODULE::VERSION 1.XXX at /usr/lib/perl/5.10/DynaLoader.pm Broken in: 0.994 Severity: Critical Owner: Nobody

[rt.cpan.org #53555] The procedure entry point Perl_croak_xs_usage could not be located in the dynamic link library perl510.dll

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:28:49 2021: Request 53555 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: The procedure entry point Perl_croak_xs_usage could not be located in the dynamic link library perl510.dll Broken in: (no value) Severity: (no value) O

[rt.cpan.org #55942] Problems experienced when trying to build PAR-Packer-1.002

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:29:38 2021: Request 55942 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: Problems experienced when trying to build PAR-Packer-1.002 Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: rich_d_tho...@yahoo.co

[rt.cpan.org #59616] Can't spawn "parlGmV73vs.exe": No error at C:/Perl/site/lib/PAR/Packer.pm line 1

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:30:02 2021: Request 59616 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: Can't spawn "parlGmV73vs.exe": No error at C:/Perl/site/lib/PAR/Packer.pm line 1 Broken in: (no value) Severity: (no value) Owner: Nobody Requestors:

[rt.cpan.org #23379] $user->"su"->root ==> /tmp/par-$user owned by root

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:31:22 2021: Request 23379 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: $user->"su"->root ==> /tmp/par-$user owned by root Broken in: 0.959 Severity: Unimportant Owner: Nobody Requestors: smuel...@cpan.org Status: op

[rt.cpan.org #26614] Problem with __FILE__

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:32:01 2021: Request 26614 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: Problem with __FILE__ Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: fa...@gmx.de Status: open Ticket https://rt.cpan.org

[rt.cpan.org #28019] URL to filename munging results in unsupportedly long file names

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:32:31 2021: Request 28019 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: URL to filename munging results in unsupportedly long file names Broken in: 0.972 Severity: Normal Owner: Nobody Requestors: smuel...@cpan.org S

[rt.cpan.org #6676] Separate install/run modes

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:32:52 2021: Request 6676 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: Separate install/run modes Broken in: (no value) Severity: Wishlist Owner: Nobody Requestors: mik...@excelsql.com Status: open Ticket https://rt

[rt.cpan.org #30686] 0.976 - needs config_heavy.pl for both compilation and distributing .exe

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:33:26 2021: Request 30686 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: 0.976 - needs config_heavy.pl for both compilation and distributing .exe Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: colling

[rt.cpan.org #5114] TK window does not open as active/foreground window when pp --gui is used

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:34:14 2021: Request 5114 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: TK window does not open as active/foreground window when pp --gui is used Broken in: (no value) Severity: Normal Owner: Nobody Requestors: pwhit...@mi

[rt.cpan.org #16173] Win XP Task Bar Group Icon is incorrect

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:34:35 2021: Request 16173 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: Win XP Task Bar Group Icon is incorrect Broken in: 0.87 Severity: Important Owner: Nobody Requestors: a2bo...@yahoo.ca Status: new Ticket https

[rt.cpan.org #17576] clean flags do not work (and META.yml is not processed)

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:35:00 2021: Request 17576 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: clean flags do not work (and META.yml is not processed) Broken in: 0.90 Severity: Important Owner: Nobody Requestors: doug_c...@redclock.net Sta

[rt.cpan.org #6792] Module::ScanDeps 0.45 - ".pmc

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:35:20 2021: Request 6792 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: Module::ScanDeps 0.45 - ".pmc Broken in: (no value) Severity: Normal Owner: SMUELLER Requestors: u11ir6...@sneakemail.com Status: new Ticket htt

[rt.cpan.org #22538] PAR - No such file or directory at -e line 761 PART II

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:35:34 2021: Request 22538 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR Subject: PAR - No such file or directory at -e line 761 PART II Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: ru...@skyarchive.org

[rt.cpan.org #128186] Win10, Strawberry Perl 32bit, how to create exe to get https webpages

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:41:12 2021: Request 128186 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Win10, Strawberry Perl 32bit, how to create exe to get https webpages Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: li

[rt.cpan.org #68892] perl-threads @ Linux => Segment fault

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:42:42 2021: Request 68892 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: perl-threads @ Linux => Segment fault Broken in: (no value) Severity: Important Owner: Nobody Requestors: p...@cpan.org Status: open Tic

[rt.cpan.org #81556] automated_pp_test.pl fails when run in harness, but works correctly when called directly

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:43:16 2021: Request 81556 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: automated_pp_test.pl fails when run in harness, but works correctly when called directly Broken in: 1.013 Severity: Important Owner: Nobody Re

[rt.cpan.org #84353] cpan install pp fails

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:43:35 2021: Request 84353 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: cpan install pp fails Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: david_gei...@agilent.com Status: open Ticket

[rt.cpan.org #84949] procedure entry point __gxx_personality_sj0 could not be located in the dynamic link library libstdc++-6.dll

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:44:03 2021: Request 84949 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: procedure entry point __gxx_personality_sj0 could not be located in the dynamic link library libstdc++-6.dll Broken in: (no value) Severity: (no value)

[rt.cpan.org #94250] PAR::Packer on OS X and the Classic environment

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:44:23 2021: Request 94250 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: PAR::Packer on OS X and the Classic environment Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: corina...@gmail.com

[rt.cpan.org #100686] Window executable crashes when including Wx::Html in PAR::PACKER build

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:44:42 2021: Request 100686 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Window executable crashes when including Wx::Html in PAR::PACKER build Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: d

[rt.cpan.org #102690] Error with packing Check.xs.dll

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:47:17 2021: Request 102690 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Error with packing Check.xs.dll Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: z...@cpan.org Status: open Ticket

[rt.cpan.org #102709] Unable to handle SIG interrupts

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:47:41 2021: Request 102709 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Unable to handle SIG interrupts Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: gab...@gmail.com Status: open Tick

[rt.cpan.org #41866] Warning message for file sha1.c when doing a 'make'

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:48:51 2021: Request 41866 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Warning message for file sha1.c when doing a 'make' Broken in: (no value) Severity: Important Owner: Nobody Requestors: bhaska...@thbs.com

[rt.cpan.org #37690] PAR::StrippedPARL::Static->get_raw() did not return the raw binary data

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:48:38 2021: Request 37690 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: PAR::StrippedPARL::Static->get_raw() did not return the raw binary data Broken in: (no value) Severity: Important Owner: Nobody Requestors: f.

[rt.cpan.org #45074] pp -M should trump the core-module-rejection of -B (Was: PAR doesn't include Time::Local)

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:49:05 2021: Request 45074 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: pp -M should trump the core-module-rejection of -B (Was: PAR doesn't include Time::Local) Broken in: (no value) Severity: Normal Owner: Nobody

[rt.cpan.org #48770] $0 is not working when PAR is used

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:49:20 2021: Request 48770 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: $0 is not working when PAR is used Broken in: (no value) Severity: Wishlist Owner: Nobody Requestors: mianro...@hotmail.com Status: open

[rt.cpan.org #53329] Spelling errors in tkpp

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:51:16 2021: Request 53329 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Spelling errors in tkpp Broken in: 1.002 Severity: Unimportant Owner: Nobody Requestors: jaw...@cpan.org Status: new Ticket https://rt.c

[rt.cpan.org #55389] Cannot package with GTK on Windows

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:51:40 2021: Request 55389 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Cannot package with GTK on Windows Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: david.tul...@airservicesaustralia.com

[rt.cpan.org #55390] Cannot package with GTK on Windows

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:51:54 2021: Request 55390 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Cannot package with GTK on Windows Broken in: 1.002 Severity: Important Owner: Nobody Requestors: david.tul...@airservicesaustralia.com S

[rt.cpan.org #26571] [PAR 0973] Create an exe including image::magick, Dll problem

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:52:08 2021: Request 26571 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: [PAR 0973] Create an exe including image::magick, Dll problem Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: djibr...@ya

[rt.cpan.org #56946] pp -i clarification

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:52:28 2021: Request 56946 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: pp -i clarification Broken in: 1.004 Severity: Normal Owner: Nobody Requestors: jpie...@cpan.org Status: new Ticket https://rt.cpan.org/

[rt.cpan.org #60257] die messages not visible in pp generated binaries

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:52:46 2021: Request 60257 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: die messages not visible in pp generated binaries Broken in: (no value) Severity: Important Owner: Nobody Requestors: javier...@gmail.com

[rt.cpan.org #60697] Switch to pp pack only architecture-independent (pure-perl) code

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:52:59 2021: Request 60697 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Switch to pp pack only architecture-independent (pure-perl) code Broken in: (no value) Severity: Wishlist Owner: Nobody Requestors: dor...@cpan

[rt.cpan.org #61346] Cannot add object files to PAR tree

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:53:17 2021: Request 61346 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Cannot add object files to PAR tree Broken in: 1.007 Severity: Important Owner: Nobody Requestors: philk...@cpan.org Status: open Ticket

[rt.cpan.org #35882] pp -P => Can't locate PAR/Heavy.pm

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:53:35 2021: Request 35882 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: pp -P => Can't locate PAR/Heavy.pm Broken in: 0.978 Severity: Normal Owner: Nobody Requestors: d...@cpan.org, jsailor-c...@jesnetplus.com

[rt.cpan.org #62552] disabling taint mode (or: passing options from PERLRUN(1))

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:53:50 2021: Request 62552 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: disabling taint mode (or: passing options from PERLRUN(1)) Broken in: (no value) Severity: Wishlist Owner: Nobody Requestors: bitc...@post2.25u

[rt.cpan.org #67124] Unable to run pp binaries as login shell

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:54:05 2021: Request 67124 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: Unable to run pp binaries as login shell Broken in: 1.009 Severity: Normal Owner: Nobody Requestors: b...@desync.com Status: new Ticket

[rt.cpan.org #67221] cant make (unknown error)

2021-01-13 Thread Roderich Schupp via RT
Wed Jan 13 05:54:22 2021: Request 67221 was acted upon. Transaction: Correspondence added by RSCHUPP Queue: PAR-Packer Subject: cant make (unknown error) Broken in: 1.009 Severity: Important Owner: Nobody Requestors: memo.garcia...@gmail.com Status: open Ticket ht

<    1   2   3   4   5   6   7   8   9   10   >