Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: perl-PAR-Packer | Distribution: SUSE Linux Enterprise 15 SP5 |
Version: 1.057 | Vendor: openSUSE |
Release: bp155.1.4 | Build date: Thu May 18 11:16:03 2023 |
Group: Unspecified | Build host: s390zl22 |
Size: 8408546 | Source RPM: perl-PAR-Packer-1.057-bp155.1.4.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://metacpan.org/release/PAR-Packer | |
Summary: PAR Packager |
This module implements the *App::Packer::Backend* interface, for generating stand-alone executables, perl scripts and PAR files. Currently, this module is used by the command line tool *pp* internally, as well as by the contributed _contrib/gui_pp/gpp_ program. Since version 0.97 of PAR, this module and its related tools such as 'pp' have been stripped from the PAR distribution and are now distributed as the 'PAR-Packer' distribution so that PAR users need not necessarily have a C compiler.
Artistic-1.0 OR GPL-1.0-or-later
* Wed Nov 30 2022 Tina Müller <timueller+perl@suse.de> - updated to 1.057 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.057 2022-11029 - use a different method to mark executable built from "pp --clean ..." - scripts/par.pl: don't patch the string "__PASS_PAR_CLEAN__ \0" in the "boot" section of the executable and ... - myldr/boot.c: ... stop looking for the patched string - scripts/par.pl: add "\0CLEAN" in lieu of "\0CACHE" (and drop the 40-byte cache name below that) in the "trailer" section when generating a packed executable when META.yml indicates "--clean" was specified) - myldr/mktmpdir.c: allow "\0CLEAN" as an alternative to "\0CACHE" and set PAR_CLEAN=1 in that case - myldr/mktmpdir.c: implement find_par_magic() akin the one in script/par.pl - better CLT detection in MacOS (#70) [plk <Philip@kime.org.uk>] - use Getopt::ArgvFile with resolveEnvVars=1 suggested by Johan Vromans (@sciurius on GitHub) * Tue Sep 06 2022 Tina Müller <timueller+perl@suse.de> - updated to 1.056 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.056 2022-09-05 - Fix #66: patch myldr/boot for "pp --clean ..." without side effects - make sure myldr/boot contains exactly one string of the form "__PASS_PAR_CLEAN__ \0" so that there are no duplicates that may get split on chunk boundaries (myldr/boot_embedded_files.c) - simplify patching of this string (in $loader) to "__PASS_PAR_CLEAN__=1 \0" in script/par.pl - add a test for #66 (check for ephemeral vs persistent cache directory) - Revert "Fixes #62: rs6000_71 (AIX) "An offset in the .loader section header is too large."" PAR_CLEAN is set too late: at this point PAR_TEMP has already been set (and populated) to a persistent cache directory (/tmp/par-USER/cache-SHA1) instead of an ephemeral one (/tmp/par-USER/temp-PID). - Some code cleanup - replace some magic numbers with constants - use string interpolation (instead of concatenation) - clean up some convoluted C code * Mon Jul 04 2022 Tina Müller <timueller+perl@suse.de> - updated to 1.055 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.055 2022-07-03 - Fix #62: rs6000_71 (AIX) "An offset in the .loader section header is too large." Communicate pp option "--clean" to the generated executable in a different way. Previously this was done by patching "__ENV_PAR_..." strings * *in the executable being built** and interpreting these strings in par.pl **at runtime**. Though hacky, this seemingly worked on any OS (without rendering the executable invalid). But the only information ever passed was the value of PAR_CLEAN and this was gleaned at build time from the value of JSONPath $par.clean from META.yml in the zip (set by pp by option "--clean"). Instead read and interpret "META.yml" in par.pl **at runtime**. - Fix: merge PR #58 from Philip@kime.org.uk: Adding support for running MacOS Universal binaries created via 'lipo' from already pp'ed and signed thin binaries - Make writing stuff more robust: check return value of print() and close() in some places. * Wed Mar 02 2022 Tina Müller <timueller+perl@suse.de> - updated to 1.054 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.054 2022-01-27 - Temporarily disable t/90-gh41.t (system("\\\\?\\some-absolute-path") fails) * Wed Jan 26 2022 Tina Müller <timueller+perl@suse.de> - updated to 1.053 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.053 2022-01-25 - Fix: merge PR #56 from from Philip Kime <Philip@kime.org.uk>: Updating OSX codesign fix util with fix for automatically added ad-hoc signatures on OSX 12+ - Fix: merge PR #42 from Andrew-Kulpa/master: Get exe size from file handle instead of path - Fix: prevent TABs in literal makefile fragments from being expanded - Cleanups: - par_findprog(): pass a copy of argument `path´ to strtok() - simplify searching for PAR magic - consolidate die()s - add a test for GitHub #41 - add error message when exec'ing the custom perl fails in myldr/boot - untangle %require_list and %ModuleCache * Thu Jan 14 2021 Tina Müller <timueller+perl@suse.de> - updated to 1.052 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.052 2021-01-13 - add note that --filter and __DATA__ are incompatible (cf. #36, #39) - change bugtracker to GitHub issues - when embedding FILEs, normalize paths in @INC - code cleanup: - rename _tempfile() to _save_as() - there is no $PAR::Heavy::ModuleCache, so make it a "my" variable - consistent formatting in outs() calls - demystify reading <$fh> with $/ = \$number: use "read $fh, $buf, $number" instead - use "open $fh, '<:raw', ..." instead of "open $fh, '<', ...; binmode($fh);" - make error messages more consistent - make extract-embedded.pl more robust - t/90-rt129312.t fails when Archive::Unzip::Burst is used * Mon Nov 30 2020 Tina Müller <timueller+perl@suse.de> - updated to 1.051 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.051 2020-11-29 - Fix #27: "pp -u broken in perl 5.32" ignore "pp -u ..." (with a warning) for Perl >= 5.31.6 - Fix #25: unexpected interaction between pp options "--compile" and "--module Foo::" scan_deps_runtime() is called for all detected Foo:: modules, but modules by themselves are typically not suitable for dynamic scanning (causing lots of spurious warnings for "--compile"). - cleanup argv handling in myldr/main.c - placate cperl ("Attempt to change hash while iterating over it.") * Thu Mar 19 2020 <timueller+perl@suse.de> - updated to 1.050 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.050 2020-03-18 - Rethink use of Filter::PodStrip. Do not add directives [#]line 1 "file" to packed modules except for "embdeded" files. We still add these directives to "embedded" files as these are extracted with mangled names which makes it hard to make sense of warn() or die() messages caused by them. These are all core modules and don't reference __FILE__. This should make use of __FILE__ in packed modules work without workarounds. __FILE__ is typically used to refer to installed non-module resources, e.g. [#] MIME::Types my $db = File::Spec->catfile(dirname(__FILE__), 'types.db'); [#] Mozilla::CA my $ca_file = File::Spec->catfile(dirname(__FILE__), "CA", "cacert.pem"); [#] Mojo::File (__FILE__ used implicitly by caller()) sub curfile { __PACKAGE__->new(Cwd::realpath((caller)[1])) } Hence, remove known workarounds from Filter::PatchContent and add a test. - Fix RT#130685: core module detection doesn't work with -Duserelocatableinc Original patch by Frank.Lichtenheld@Sophos.com, thanx! Added a test for this. * Thu Aug 29 2019 Tina Mueller <tina.mueller@suse.com> - Remove 50ff73f26855151910e039b8480473024ae08b8a.patch (not needed anymore) * Sat Jun 01 2019 Stephan Kulow <coolo@suse.com> - updated to 1.049 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.049 2019-05-31 - Fix RT#129312: Code signing for OSX Avoid Archive::Zip::Archive error "can't find EOCD signature" for pp'ed executables with lots of stuff appended (e.g. by OSX codesign). Note: This requires the corresponding fix in PAR in 1.016, hence bump its required version. Add a test by appending 512 kB to a pp'ed executable. - Fix issue GitHub#15 (doesn't build with a relocatable version of perl) If the perl used to build PAR::Packer is a relocatable perl, i.e. it was build with -Duserelocatableinc, then myldr/par will also be relocatable. Hence, the automagical default @INC for myldr/par is something like ("myldr/../lib/5.x.y", "myldr/../lib/site_perl/5.x.y", ...) which won't find any modules. * Tue Apr 30 2019 Stephan Kulow <coolo@suse.com> - updated to 1.048 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.048 2019-04-29 - Fix RT#129312: Code signing for OSX Apply pull request from Philip Kime, adds a small program that will fix up an executable generated by pp so that MacOS codesigning will accept it, see contrib/pp_osx_codesign_fix/pp_osx_codesign_fix.c Since codesigning will append currently ~180 KB to an executable, increase the offsets from the end of the file where Archive::Zip and PAR::Packer will look for their respective signatures. - Fix GitHub issue #12: sha1.c warnings due to inconsistent USE_64_BIT_INT Do not "inline" sha1.c (into main.c and boot.c vi mktmp.c), instead just link to it. There's no reason that callers of sha_init/sha_update/sha_final should know about the implementation of SHA_INFO. myldr/sha1.c: stop including perl.h etc, instead pass the necessary #define's via the compile command - Fix GitHub issue #13: `par.exe -b` failure with Portable::Config Note to users of Strawberry Perl *portable* installations: There's a bad interaction between a Strawberry *portable* installation if you also have a *standard* Strawberry installation installed in C:\strawberry. Under certain conditions, parl created by the portable installation may have have a built-in @INC of [ C:\strawberry\perl\lib, C:\strawberry\perl\site\lib, C:\strawberry\perl\vendor\lib ], i.e. pointing to the *standard* installation. This will cause it to load modules from the *standard* installation. If the versions of the two installations are different, this may cause weird failures. - Always require Digest::SHA, remove ugly alternatives - Make "pp -e 0" work, apparently nobody noticed * Wed Apr 03 2019 Stephan Kulow <coolo@suse.com> - updated to 1.047 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.047 2018-08-19 Disable failing test cases in (Windows only) test t/90-rt122949.t Add .SEQUENTIAL to force non-parallel build when using dmake (e.g. on Windows) 1.046 2018-08-18 - Fix RT#126280: 90-rt122949.t fails when "Use Unicode UTF-8 for worldwide language support" is enabled - Fix https://github.com/rschupp/PAR-Packer/issues/7 "Parallel build rules dependancy problem" Instead of fighting GNU make and EUMM, just punt and add a .NOTPARALLEL target. Yeah, I know that this is specific to GNU make (though some other make implementations support it, too). - Add bugtracker to META.yml 1.045 2018-06-12 - Fix RT#125503: Fix build with 64-bit perl-5.28.0 Merged patch by Steve Hay, thanks! 1.044 2018-06-06 - Cope with the fact that PL_statbuf is gone since Perl 5.27.x. This breaks PAR::Packer on systems where Perl's "Stat_t" is not the same as "struct stat", notably Windows. - Extract-embedded.pl: list (but not extract) the embedded files if no directory is given - Use the long option name "--link" in messages (as "-l" may easily be confused with "-I" when view in a sans serif font). 1.043 2018-04-03 - Fix test failures on Windows 1.042 2018-04-02 - Fix PAR-Packer#5 "unintended glob expansion on strawberry win32?" On Windows using Mingw set _CRT_glob=0 also in parl (the custom Perl interpreter). - Fix RT #124445 "Par-Packer 'falsifies' PerlTk server() and Win32 GetOSName() and GetOSVersion() output on Windows 10" Add <compatibility> section to pp.manifest (cf. https://msdn.microsoft.com/en-us/library/windows/desktop/dn481241(v=vs.85).aspx) to make par.exe "Windows 10 aware". - Add dependencies on stuff in myldr/winres to myldr/Makefile - Fix parallel make: install modules into blib *before* recursing into "myldr" 1.041 2017-11-08 - Fix problem with --link libraries on MacOS - libraries where packed into the wrong location in the zip - hence they were not extracted into the cache area where they could be found via DYLD_LIBRARY_PATH - hence the packed executable either couldn't find them or found incompatible versions outside the cache area - reported by Phil Kime 1.040 2017-10-21 - no changes to modules and scripts, only fixes for configure, build and test - require a version of IPC::Run3 that gets shell quoting on Windows right - restructure how we find the files to embed into boot.c - avoid an error with newer gcc: "error: 'for' loop initial declarations are only allowed in C99 or C11 mode" - fix tests when running without "." in @INC even (even in tests) * Sun Oct 08 2017 coolo@suse.com - remove -test subspec (which ignored errors in make check anyway) - add 50ff73f26855151910e039b8480473024ae08b8a.patch to fix tests with latest perl * Sun Oct 08 2017 coolo@suse.com - updated to 1.039 see /usr/share/doc/packages/perl-PAR-Packer/Changes 1.039 2017-09-28 - Brown paper bag: add missing t/utils.pl 1.038 2017-09-27 - Fix "RT#122949: PAR-Packer-1.37 executables split arguments containing whitespace" - on Windows, quote elements of argv array passed to spawnvp(); algorithm stolen from Win32::ShellQuote. - introduce helper t/utils.pl to streamline tests - require IPC::Run3 for test - make test work with "dot-less" perl and PERL_USE_UNSAFE_INC=0 1.037 2017-05-28 - Fix RT#121268 for PAR-Packer: error installing PAR-Packer on windows10 ( 64Bit ) - on Windows, make dl_findfile() search first in the directory containing the perl executable (to avoid erroneous hits in other members of PATH) - Fix RT#120038: [PATCH] Fix build for VS2015 (VC++ 14) and merge pull request from Steve Hay (shay@cpan.org) - makes PAR::Packer work with VisualStudio 2015. Thanks, Steve! - Fix RT#120041: --exclude gets confused by missing modules - guard against Module::ScanDeps::_find_in_inc() returning () - Fail early when packing with a version of Perl that's different frome the one PAR::Packer was built with. Scenario: User has built and installed PAR::Packer (or got it pre-packaged), then installs a newer version of Perl, then does pp -o foo.exe foo.pl But running foo.exe then fails with foo.exe C:\Users\jon\AppData\Local\Temp\parlzcPb.exe: Perl lib version (5.24.1) doesn't match executable 'perl.exe' version (5.24.0) at C:/Perl64/lib/Config.pm line 62. Compilation failed in require at C:/Perl64/lib/Errno.pm line 10. ... C:\Perl64\site in/pp: Failed to extract a parl from 'PAR::StrippedPARL::Static' to file 'C:\Users\jon\AppData\Local\Temp\parl3swwQJc.exe' at C:/Perl64/site/lib/PAR/Packer.pm line 1184, <DATA> line 1. Now, pp will fail and with a more useful message. - Switch from Module::Install to ExtUtils::MakeMaker - Rewrite the library search (for "pp --link ...") - start with $Config{libpth} which is *not* the runtime loader (e.g. ld.so on Linux) search path, but rather the linker (ld) search path - but it's the best guess without having to grok /etc/ld.so.conf - augment that with $ENV{LD_LIBRARY_PATH} or similar - Rework how we determine the name under which a library should be installed - use objdump (on Linux and other ELF-based OS) and otool on Darwin - fall back to "chasing symlinks" otherwise - Remove PAR_ARGV_*, PAR_ARGC stuff from script/par.pl and myldr/boot.c. - Dunno what problem this obscure way of passing the command line arguments from a packed executable to the custom Perl interpreter was intended to fix, but arguments pass just fine through execvp (or spawnvp) to perl_parse. - Only set the environment variable for the shared library search path (e.g. LD_LIBRARY_PATH) that is relevant for the operating system that we're running on - Use DynaLoader::dl_findfile to locate DLLs instead of homegrown stuff. - Remove "par_base" - prebuilt .par's haven't been available for ages * Wed Feb 01 2017 josef.moellers@suse.com - Update to 1.036: - Fix RT#118094: Race condition exists when building cache for pp built executables - guard against concurrent extraction attempts - bump "requires" on PAR to a version with additional guards - Fix RT#118903: Does not install when '.' is not in @INC - apply patch from Graham Ollis (PLICEASE), thanks! - make the Module::Install stuff work in the "author" case NOTE: "use lib '.'" does *not* work in this case - Move to GitHub. Thanks, OpenFoundry, for years of service. - add Perl_5 LICENSE file, make "repository" point to GitHub - always refer to the included LICENSE file - point bug reports to bug-par-packer@rt.cpan.org - add an empty file "inc/.author/.keep" as Git doesn't track empty directories - Fix RT #118053: Problem with packed perl archive for biber on 64-bit Cygwin - embed cygcrypt-0.dll since it isn't (anymore) in the set of default Cygwin packages - Upgrade to Module::Install 1.17 - Update to 1.035: - Fix RT#116254: Compilation error under strawberry perl 5.24 x64 s/PP_VERSION/PAR_PACKER_VERSION/ as Strawberry Perl also defines PP_VERSION (in c/x86_64-w64-mingw32/include/wincrypt.h) - Update to 1.034: - Fix RT#116056: Fixes for Cygwin build of PAR::Packer - detect whether we're using a 32-bit or 64-bit perl - fix elision of "-l<perl lib>" from $static_ldflags - add $static_ldflags back to $boot_ldflags - Add information to packed executable about which version of PAR::Packer was used to build it (suggested by Johan Vromans): - accessible from the packaged Perl script as $PAR::Packer::VERSION - by looking for the string "Packed by PAR::Packer ..." in the executable itself (using "strings exe | grep ..." or the like) - Use ldd on cygwin, too - NOTE: a "system lib" on cygwin is either in /usr/bin or a Windows "system lib" * Fri Jun 17 2016 thb@libreoffice.org - Update to 1.033: - Fix RT#114229: v1.32 still won't install on strawberry perl v5.22.2 - Drop the "re-exec myself" in myldr/internals.c - Really suppress generation of myldr/MYMETA.* and don't install man pages for myldr/{Dynamic,Static}.pm - Update to 1.032: - Unbreak PAR::Packer for Perl 5.23.9 and higher - Fix RT#114155: Makefile.PL error - not loading ExtUtils::MakeMaker - extract-embedded.pl: show starting offset of embedded files - Update to 1.031: - Fix RT#113618: Strange issue with not packing libperl.dylib - Implement namespace options for "-M" like ActiveState's perlapp - Fix RT#113463: Fix spelling error in manpage - Update to 1.030: - Fix RT#111455: unable to use -x and -u with pp - Fix RT#110480: Unpacking exe: File exists - Fix RT#111896: PAR Question Solaris 10 - file2c.pl: switch back from array of unsiged to (hex encoded) strings. - Skip a test if Archive::Unzip::Burst is detected (this messes up expected mtimes for extracted files). - Make a test work with early versions of Perl 5.8.x (x < 9) that have a bug with compiled regexes and the /m modifier. - Update to 1.029: - Add option "-u" ("--unicode") to pp to explicitly package Unicode support - Remove all references to http://par.perl.org/, doesn't exist anymore - Remove Internals::PAR::CLEARSTACK - Update to 1.028: - Fix RT#109123: v1.027 tests are not passed under windows - Update to 1.027: - Add option -M Foo::Bar:: to pp (note the trailing double colon) - Fix RT#109110: Incompatible with Module::ScanDeps 1.20 - Update to 1.026: - Fix RT#101800: [PATCH] Reinstate files to inc dir if deleted by external process - Find the "\nPAR.pm\n" signature in a .par (or packed executable) - Fix RT#104635 for PAR-Packer: IO error the first time an executable built by the packer - Fix RT#104509: Problem signing PAR file, and RT#104560: [PATCH] list added files in manifest - Make MIME::Types work "out of the box" - Bump requirement on PAR (for the fix for RT #103861), add a test. - Update tkpp ito 1.5: - Make pp fail when an unknown option is encountered. - Remove PAR::Packer::_append_parl(), not called anywhere. - Add license; update repository OpenFoundry repository URL - Update to 1.025: - Fix PAR::Packer "make test" problem with Strawberry Portable - Fix for PAR-Packer 1.024 with a nonstandard libperl.so name Patch from markus.jansen@ericsson.com, thanks! - Fix #101662: Prevent shared libs from being cached in memory on AIX Applied patch from Thoke@northpeak.org, thanks. Note: this is one half of the fix, the other is in PAR - Update to 1.024: - Fix RT #99231: Problem with PAR::Packer 1.022 on Perl 5.20.1 and earlier - Update to 1.023: - Fix RT #99231: Problem with PAR::Packer 1.022 on Perl 5.20.1 and earlier - Fix RT #63939: The behaviour of "pp --link ..." is subtly different between OSX and Linux - Bump required version of Module::ScanDeps, makes t/90-rt59710.t pass again on perl 5.21.x - die if a requested shared library (option -l) can't be found. - Add a patch rule so that Mozilla::CA finds its (extracted) cacert.pem file. - Upgrade to Module::Install 1.14. - Update to 1.022: - Fix RT#98955: installation fails | Can't locate String/ShellQuote.pm - Simply enclose the filenames in double quotes, should work on both * nix and Windows in all reasonable scenarios. - Drop incorrectly specified 'Digital signature support' "feature": simply "recommends" the required modules. - Update to 1.021: - Fix #98791: PAR-Packer fails to build with DWIMPerl/Strawberry Perl due to unquoted path name - Update to 1.020: - Implement option --xargs for pp - Update to Module::Install 1.10 - Update to 1.019: - Fix RT #96288: PAR::Packer unable to build under Win32/ActivePerl v5.14.2 RT #96739: "bsd_glob" is not defined on perl 5.14.x and earlier RT #97018 (Issue while upgrading PAR::Packer ) - Fix RT #59224 (make error with version 1.006 on aix 5.3) - Update documentation wrt the name of the cache directory. - Update to 1.018: - [DJIBEL] tkpp 1.4 : Since PAR::Packer 1.015, tkpp doesn't work - Use bsd_glob() instead of glob() to avoid problems with patterns that contain whitespace - Fix RT #93008: install failure with ubuntu / puppet
/usr/bin/par.pl /usr/bin/parl /usr/bin/parldyn /usr/bin/pp /usr/bin/tkpp /usr/lib/perl5/vendor_perl/5.26.1/App /usr/lib/perl5/vendor_perl/5.26.1/App/Packer /usr/lib/perl5/vendor_perl/5.26.1/App/Packer/PAR.pm /usr/lib/perl5/vendor_perl/5.26.1/PAR /usr/lib/perl5/vendor_perl/5.26.1/PAR/Filter /usr/lib/perl5/vendor_perl/5.26.1/PAR/Filter.pm /usr/lib/perl5/vendor_perl/5.26.1/PAR/Filter/Bleach.pm /usr/lib/perl5/vendor_perl/5.26.1/PAR/Filter/Bytecode.pm /usr/lib/perl5/vendor_perl/5.26.1/PAR/Filter/Obfuscate.pm /usr/lib/perl5/vendor_perl/5.26.1/PAR/Filter/PatchContent.pm /usr/lib/perl5/vendor_perl/5.26.1/PAR/Filter/PodStrip.pm /usr/lib/perl5/vendor_perl/5.26.1/PAR/Packer.pm /usr/lib/perl5/vendor_perl/5.26.1/PAR/StrippedPARL /usr/lib/perl5/vendor_perl/5.26.1/PAR/StrippedPARL/Base.pm /usr/lib/perl5/vendor_perl/5.26.1/PAR/StrippedPARL/Dynamic.pm /usr/lib/perl5/vendor_perl/5.26.1/PAR/StrippedPARL/Static.pm /usr/lib/perl5/vendor_perl/5.26.1/pp.pm /usr/lib/perl5/vendor_perl/5.26.1/s390x-linux-thread-multi /usr/lib/perl5/vendor_perl/5.26.1/s390x-linux-thread-multi/auto/PAR /usr/lib/perl5/vendor_perl/5.26.1/s390x-linux-thread-multi/auto/PAR/Packer /usr/share/doc/packages/perl-PAR-Packer /usr/share/doc/packages/perl-PAR-Packer/AUTHORS /usr/share/doc/packages/perl-PAR-Packer/Changes /usr/share/doc/packages/perl-PAR-Packer/README /usr/share/licenses/perl-PAR-Packer /usr/share/licenses/perl-PAR-Packer/LICENSE /usr/share/man/man1/par.pl.1.gz /usr/share/man/man1/parl.1.gz /usr/share/man/man1/pp.1.gz /usr/share/man/man1/tkpp.1.gz /usr/share/man/man3/App::Packer::PAR.3pm.gz /usr/share/man/man3/PAR::Filter.3pm.gz /usr/share/man/man3/PAR::Filter::Bleach.3pm.gz /usr/share/man/man3/PAR::Filter::Bytecode.3pm.gz /usr/share/man/man3/PAR::Filter::Obfuscate.3pm.gz /usr/share/man/man3/PAR::Filter::PatchContent.3pm.gz /usr/share/man/man3/PAR::Filter::PodStrip.3pm.gz /usr/share/man/man3/PAR::Packer.3pm.gz /usr/share/man/man3/PAR::StrippedPARL::Base.3pm.gz /usr/share/man/man3/pp.3pm.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 18:25:27 2024