view release on metacpan or search on metacpan
lib/CIPP/Manual.pm view on Meta::CPAN
=over 8
=item B<NAME>
This is the name of the module you want to use. Nested module names are delimited by ::. This is exactly what the Perl use pragma expects (you guessed right, CIPP simply translates <?USE> to use :-).
It is not possible to use a variable or expression for NAME, you must always use a literal string here.
=back
view all matches for this distribution
view release on metacpan or search on metacpan
devdata/youtube-dl.help.2015.02.23.1 view on Meta::CPAN
--abort-on-error Abort downloading of further videos (in the playlist or the command line) if an error occurs
--dump-user-agent display the current browser identification
--list-extractors List all supported extractors and the URLs they would handle
--extractor-descriptions Output descriptions of all supported extractors
--default-search PREFIX Use this prefix for unqualified URLs. For example "gvsearch2:" downloads two videos from google videos for youtube-dl "large apple". Use the value "auto"
to let youtube-dl guess ("auto_warning" to emit a warning when guessing). "error" just throws an error. The default value "fixup_error" repairs broken
URLs, but emits an error if this is not possible instead of searching.
--ignore-config Do not read configuration files. When given in the global configuration file /etc/youtube-dl.conf: Do not read the user configuration in ~/.config
/youtube-dl/config (%APPDATA%/youtube-dl/config.txt on Windows)
--flat-playlist Do not extract the videos of a playlist, only list them.
--no-color Do not emit color codes in output.
view all matches for this distribution
view release on metacpan or search on metacpan
devdata/youtube-dl.help.2015.02.23.1 view on Meta::CPAN
--abort-on-error Abort downloading of further videos (in the playlist or the command line) if an error occurs
--dump-user-agent display the current browser identification
--list-extractors List all supported extractors and the URLs they would handle
--extractor-descriptions Output descriptions of all supported extractors
--default-search PREFIX Use this prefix for unqualified URLs. For example "gvsearch2:" downloads two videos from google videos for youtube-dl "large apple". Use the value "auto"
to let youtube-dl guess ("auto_warning" to emit a warning when guessing). "error" just throws an error. The default value "fixup_error" repairs broken
URLs, but emits an error if this is not possible instead of searching.
--ignore-config Do not read configuration files. When given in the global configuration file /etc/youtube-dl.conf: Do not read the user configuration in ~/.config
/youtube-dl/config (%APPDATA%/youtube-dl/config.txt on Windows)
--flat-playlist Do not extract the videos of a playlist, only list them.
--no-color Do not emit color codes in output.
view all matches for this distribution
view release on metacpan or search on metacpan
easyxs/ppport.h view on Meta::CPAN
print "It may very well be supported all the way back to ",
format_version(5.003_07), ".\n";
}
else {
print "But given the things $f depends on, it's a good",
" guess that it isn't\n",
"supported prior to ", format_version($todo), ".\n";
}
}
}
}
easyxs/ppport.h view on Meta::CPAN
#ifndef IVSIZE
# ifdef LONGSIZE
# define IVSIZE LONGSIZE
# else
# define IVSIZE 4 /* A bold guess, but the best we can make. */
# endif
#endif
#ifndef UVTYPE
# define UVTYPE unsigned IVTYPE
#endif
view all matches for this distribution
view release on metacpan or search on metacpan
#ifndef IVSIZE
# ifdef LONGSIZE
# define IVSIZE LONGSIZE
# else
# define IVSIZE 4 /* A bold guess, but the best we can make. */
# endif
#endif
#ifndef UVTYPE
# define UVTYPE unsigned IVTYPE
#endif
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CORBA/IDLtree.pm view on Meta::CPAN
# input file:
# - Add `use utf8`.
# - Require module Encode::Guess.
# - In sub get_items:
# - On encountering a non printable character call
# Encode::Guess->guess.
# - If the call returns a ref then a decoder was found
# and no special action is required.
# - If the call returns "No appropriate encodings found"
# then assign $l from Encode::decode("cp-1252", $l).
# - If the call returns none of the above then print a
lib/CORBA/IDLtree.pm view on Meta::CPAN
if ($firstline) {
$l = discard_bom($l);
$firstline = 0;
}
if ($l =~ /[^\t\f[:print:]]/) {
my $decoder = Encode::Guess->guess($l);
unless (ref $decoder) {
# info($decoder);
if ($decoder =~ /No appropriate encodings found/) {
$l = Encode::decode("cp-1252", $l);
} else {
view all matches for this distribution
view release on metacpan or search on metacpan
README.win32 view on Meta::CPAN
The win32 build procedure for MICO Perl interface tries to stick as closely
as possible to the general build procedure of most CPAN modules, ie. the
same used for building CORBA::MICO on Unix systems.
One difference however is guessing the location of MICO's header- and
compiled library files, which are required for compiling CORBA::MICO.
In contrast to Unix, there is no "standard" location for those files on
win32 systems (like /lib, /usr/lib, /usr/include, etc.)
Therefore you have to specify the location of your win32 build of MICO
view all matches for this distribution
view release on metacpan or search on metacpan
README.win32 view on Meta::CPAN
The win32 build procedure for the omniORB Perl interface tries to
stick as closely as possible to the general build procedure of most
CPAN modules, i.e., the same used for building CORBA::omniORB on Unix
systems.
One difference, however, is the method used for guessing the location
of omniORB's header- and compiled library files, which are required
for compiling CORBA::omniORB, since there is no pkg-config database
available on Win32. Therefore, you have to specify the location of
your win32 build of omniORB in a separate configuration file
(CONFIG.win32)
view all matches for this distribution
view release on metacpan or search on metacpan
1.6500: Fri Jan 20 2012
- added support for http ranges from rfc2616§14
1.6000: Tue Jan 03 2012
- Nobody really uses this but me I guess; otherwise someone
surely would have noticed the various timing problems with
the cache by now.
I have resolved them with lockfiles (for now). I haven't
thought of a better solution, and I think this will work
view all matches for this distribution
view release on metacpan or search on metacpan
bin/tidy_changelog view on Meta::CPAN
$opt{token} ||= qr/\{\{\$NEXT\}\}/;
my $changelog = shift;
unless ( $changelog ) {
# try to guess it
opendir my $dir, '.';
my @files = grep { -f $_ and /^change/i } readdir $dir;
die "changelog not provided and couldn't be guessed\n"
unless @files == 1;
$changelog = shift @files;
warn "changelog not provided, guessing '$changelog'\n\n";
}
if ($opt{check}) {
require Test::CPAN::Changes;
require Test::More;
view all matches for this distribution
view release on metacpan or search on metacpan
* Normalize dist() for CGI.pm [Michael G. Schwern]
0.08 -- Wed May 6 09:21:47 CDT 2009
* make a better guess at the meaning of Dist-Name-undef.tar.gz
* add tests for the .tar.bz2 feature added in 0.07
0.07 -- Mon Jun 30 09:27:04 CDT 2008
* Added support for .tar.bz2 archive extension
view all matches for this distribution
view release on metacpan or search on metacpan
bin/cpandeps-diff view on Meta::CPAN
If you don't provide a command then it will generate a report about all known
modules.
=head2 help
Can you guess what this does?
=head1 ARGUMENTS
=head2 perl $version
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CPAN/InGit.pm view on Meta::CPAN
eval {
my $cm= CPAN::Meta->load_yaml_string($meta_yml->get_content);
$meta= $cm->as_struct({ version => 2 });
} or warn "Failed to load $file_path/${prefix}META.yml: $@";
}
# TODO: add some fall-back that guesses at prereqs.
$meta //= {};
# If the meta didn't contain "provides", add that using Module::Metadata
if (!$meta->{provides}) {
my $provides= $meta->{provides}= {};
for my $pm_fname (grep /\.pm\z/ && !m{^(t|xt|inc|script|bin)/}, keys %files) {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CPAN/Info/FromRepoName.pm view on Meta::CPAN
$mod;
}
$SPEC{extract_cpan_info_from_repo_name} = {
v => 1.1,
summary => 'Extract/guess information from a repo name',
description => <<'_',
Guess information from a repo name and return a hash (or undef if nothing can be
guessed). Possible keys include `dist` (Perl distribution name).
_
args => {
repo_name => {
schema => 'str*',
lib/CPAN/Info/FromRepoName.pm view on Meta::CPAN
}
$res;
}
1;
# ABSTRACT: Extract/guess information from a repo name
__END__
=pod
=encoding UTF-8
=head1 NAME
CPAN::Info::FromRepoName - Extract/guess information from a repo name
=head1 VERSION
This document describes version 0.001 of CPAN::Info::FromRepoName (from Perl distribution CPAN-Info-FromRepoName), released on 2020-10-02.
lib/CPAN/Info/FromRepoName.pm view on Meta::CPAN
Usage:
extract_cpan_info_from_repo_name($repo_name) -> hash
ExtractE<sol>guess information from a repo name.
Examples:
=over
lib/CPAN/Info/FromRepoName.pm view on Meta::CPAN
extract_cpan_info_from_repo_name("\@foo"); # -> undef
=back
Guess information from a repo name and return a hash (or undef if nothing can be
guessed). Possible keys include C<dist> (Perl distribution name).
This function is not exported by default, but exportable.
Arguments ('*' denotes required arguments):
view all matches for this distribution
view release on metacpan or search on metacpan
{
"abstract" : "Extract/guess information from a URL",
"author" : [
"perlancar <perlancar@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010",
view all matches for this distribution