Astro-Constants

 view release on metacpan or  search on metacpan

dist.ini  view on Meta::CPAN


version = 0.1401

[Prereqs]
perl				= 5.006

[Prereqs / TestRequires]
Test::More			= 0
Test::Number::Delta	= 0
; authordep XML::LibXML 
; authordep Modern::Perl
; authordep Term::UI

[PkgVersion]

[Run::BeforeBuild]
run = script/xml_to_pm.pl

[@Basic]

[PodWeaver]

script/update_constant_values.pl  view on Meta::CPAN

#!/usr/bin/perl -w
#
# Checks the online sources for the values of the constants
# Boyd Duffee, Mar 2020
#
# hard coded to run from top directory and uses only data/PhysicalConstants.xml

use strict;
use autodie;
use Modern::Perl;
use XML::LibXML;
use LWP::Simple;
use List::Util qw/shuffle/;
use HTML::Parser;

#die "Usage: $0 infile outfile" unless @ARGV == 1;

my $TESTING = 0;
my $ONLINE = 1;
my $SLEEP = 0;

script/xml_to_pm.pl  view on Meta::CPAN

#!/usr/bin/perl -w
#
# builds the Astro::Constants modules from an xml definition file
# Boyd Duffee, Dec 2015
#
# hard coded to run from top directory and uses only data/PhysicalConstants.xml

use strict;
use autodie;
use Modern::Perl;
use XML::LibXML;

#die "Usage: $0 infile outfile" unless @ARGV == 1;

my ($tagname, );
my $dzil_methodtag = q{=method};

my $xml = XML::LibXML->load_xml(location => 'data/PhysicalConstants.xml');

my $lib = 'lib';	# where is the lib directory

script/xml_to_raku.pl  view on Meta::CPAN

#!/usr/bin/perl -w
#
# builds the Astro::Constants modules from an xml definition file
# Boyd Duffee, Feb 2019
#
# hard coded to run from top directory and uses only data/PhysicalConstants.xml

use strict;
use autodie;
use Modern::Perl;
use XML::LibXML;

#die "Usage: $0 infile outfile" unless @ARGV == 1;

my $VERSION = '0.0.4';
my ($tagname, );
my $dzil_methodtag = q{=head3};

my $xml = XML::LibXML->load_xml(location => 'data/PhysicalConstants.xml');

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 2.353 seconds using v1.00-cache-2.02-grep-82fe00e-cpan-d29e8ade9f55 )