Skip to content

Commit

Permalink
make separate GSL.pm to battle PAUSE nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Dec 9, 2024
1 parent b4f3ef4 commit af88c2f
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 6 deletions.
5 changes: 0 additions & 5 deletions CDF/gsl_cdf.pd
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
use strict;
use warnings;

{
package PDL::GSL;
our $VERSION = '2.098';
}

pp_addpm({At=>'Top'},<<'EOD');

use strict;
Expand Down
41 changes: 41 additions & 0 deletions GSL.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
package PDL::GSL;

use strict;
use warnings;

our $VERSION = '2.098';

=head1 NAME
PDL::GSL - PDL interface to the GNU Scientific Library
=head1 DESCRIPTION
This is an interface to the GNU Scientific Library. It contains the
following packages:
=over
=item L<PDL::GSL::CDF>
=item L<PDL::GSL::DIFF>
=item L<PDL::GSL::INTEG>
=item L<PDL::GSL::INTERP>
=item L<PDL::GSL::LINALG>
=item L<PDL::GSL::MROOT>
=item L<PDL::GSL::RNG>
=item L<PDL::GSL::SF>
=item L<PDL::Stats::Distr>
=back
=cut

1;
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ DIFF/t/gsl_diff.t
Distr/distr.pd
Distr/Makefile.PL
Distr/t/stats_distr.t
GSL.pm
gslerr.h
INTEG/FUNC.c
INTEG/gsl_integ.pd
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ my $package_name = "PDL::GSL";
$repo = "PDLPorters/$repo";
WriteMakefile(
NAME => $package_name,
VERSION_FROM => 'CDF/gsl_cdf.pd',
VERSION_FROM => 'GSL.pm',
AUTHOR => 'PerlDL Developers <[email protected]>',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
Expand Down

0 comments on commit af88c2f

Please sign in to comment.