Update to current Perl

This commit is contained in:
Joeri de Bruin 2026-02-06 13:40:47 +01:00
parent ebd46d86d4
commit 3cc88f8150
57 changed files with 11638 additions and 665 deletions

View file

@ -137,7 +137,7 @@ checkModule('JavaScript::Packer', '1.002' );
checkModule('CSS::Packer', '1.000' );
checkModule('HTML::Packer', "1.000" );
checkModule('Business::Tax::VAT::Validation', '0.20' );
checkModule('Crypt::SSLeay', '0.57' );
#checkModule('Crypt::SSLeay', '0.57' );
checkModule('Scope::Guard', '0.20' );
checkModule('Digest::SHA', '5.47' );
checkModule("CSS::Minifier::XS", "0.03" );

19
sbin/wgd Executable file
View file

@ -0,0 +1,19 @@
#!/usr/bin/perl
package
App::WGDev;
# ABSTRACT: WebGUI Developer Utilities
use strict;
use warnings;
use 5.008008;
use WGDev::Command;
our $PACKED;
our @PACKED;
my $return = eval { WGDev::Command->run(@ARGV) };
if ( my $message = $@ ) {
$message =~ s/\n?\z/\n/msx;
die $message;
}
exit( $return ? 0 : 1 );