pause - A CLI for PAUSE
This document describes version 0.659 of main (from Perl distribution App-pause), released on 2022-11-02.
First create a config file ~/pause.conf containing:
~/pause.conf
username=<Your PAUSE ID> password=<Your PAUSE password>
or if you have ~/.pause from cpan-upload, pause can read it too (encrypted .pause is currently not supported).
~/.pause
pause
.pause
Then:
# upload one or more files % pause upload Foo-Bar-0.12.tar.gz Baz-2.24.tar.gz % pause upload Foo-Bar-0.12.tar.gz --subdir old/2014; # upload to a subdir # list your files % pause ls % pause ls 'App-*'; # accept filenames/wildcard patterns, note: quote first % pause ls -l ; # see file sizes/mtimes/etc instead of just names # list your dists % pause ls-dists # delete files % pause rm Foo-Bar-0.12.tar.gz Foo-Bar-0.12.readme Foo-Bar-0.12.meta % pause rm 'Foo-Bar-*'; # accept wildcard patterns, but quote first # undelete files scheduled for deletion (but not actually deleted yet) % pause undelete Foo-Bar-0.12.tar.gz Foo-Bar-0.12.readme Foo-Bar-0.12.meta % pause undelete 'Foo-Bar-*'; # accept wildcard patterns, but quote first # force reindexing % pause reindex Foo-Bar-0.12.tar.gz Foo-Bar-0.12.meta % pause reindex 'Foo-Bar-*'; # accept wildcard patterns, but quote first # clean old releases, by default will only leave the newest non-dev version % pause cleanup % pause cleanup -n 3 ; # keep 3 versions (newest + previous two)
To view permissions:
# list all modules that you have permissions of % pause ls-mods % pause ls-mods -l ; # show detail # list all modules matching a wildcard % pause ls-mods -l 'Unix*' # list all modules you have co-maint of % pause ls-mods -l --type co-maint
To change permissions (not yet implemented):
...
To change your password (not yet implemented):
To view your account info (not yet implemented):
To change your email forwarding (not yet implemented):
Delete older versions of distributions.
Currently does not look for releases in subdirectories.
By default does not include developer (trial) releases. To include that, use --include-dev.
--include-dev
To only cleanup developer releases, you can use --include-dev and --exclude-nondev.
--exclude-nondev
List files.
List distributions.
Distribution names will be extracted from tarball/zip filenames.
Unknown/unparseable filenames will be skipped.
List modules (permissions).
Force reindexing.
Delete files.
When a file is deleted, it is not immediately deleted but has scheduled_for_deletion status for 72 hours, then deleted. During that time, the file can be undeleted.
Undelete files.
Upload file(s).
* marks required options.
*
Set path to configuration file.
Can actually be specified multiple times to instruct application to read from multiple configuration files (and merge them).
Can be specified multiple times.
Set configuration profile to use.
A single configuration file can contain profiles, i.e. alternative sets of values that can be selected. For example:
[profile=dev] username=foo pass=beaver [profile=production] username=bar pass=honey
When you specify --config-profile=dev, username will be set to foo and password to beaver. When you specify --config-profile=production, username will be set to bar and password to honey.
--config-profile=dev
username
foo
password
beaver
--config-profile=production
bar
honey
Shortcut for --log-level=debug.
Choose output format, e.g. json, text.
Default value:
undef
Output can be displayed in multiple formats, and a suitable default format is chosen depending on the application and/or whether output destination is interactive terminal (i.e. whether output is piped). This option specifically chooses an output format.
Display help message and exit.
Set output format to json.
Set log level.
By default, these log levels are available (in order of increasing level of importance, from least important to most): trace, debug, info, warn/warning, error, fatal. By default, the level is usually set to warn, which means that log statements with level info and less important levels will not be shown. To increase verbosity, choose info, debug, or trace.
trace
debug
info
warn
warning
error
fatal
For more details on log level and logging, as well as how new logging levels can be defined or existing ones modified, see Log::ger.
When outputing as JSON, strip result envelope.
0
By default, when outputing as JSON, the full enveloped result is returned, e.g.:
[200,"OK",[1,2,3],{"func.extra"=>4}]
The reason is so you can get the status (1st element), status message (2nd element) as well as result metadata/extra result (4th element) instead of just the result (3rd element). However, sometimes you want just the result, e.g. when you want to pipe the result for more post-processing. In this case you can use --naked-res so you just get:
--naked-res
[1,2,3]
Do not use any configuration file.
If you specify --no-config, the application will not read any configuration file.
--no-config
Do not read environment for default options.
If you specify --no-env, the application wil not read any environment variable.
--no-env
Filter output through a pager.
This option will pipe the output to a specified pager program. If pager program is not specified, a suitable default e.g. less is chosen.
less
PAUSE password.
If unset, default value will be searched from ~/.pause. Encrypted .pause is not yet supported.
Shortcut for --log-level=error.
Number of retries when received 5xx HTTP error from server.
5
The retry uses an exponential backoff strategy of delaying 3, 6, 12, 24, ..., 3600, 3600, ... seconds.
List available subcommands.
Shortcut for --log-level=trace.
PAUSE ID.
Shortcut for --log-level=info.
Display program's version and exit.
View output using a viewer.
This option will first save the output to a temporary file, then open a viewer program to view the temporary file. If a viewer program is not chosen, a suitable default, e.g. the browser, is chosen.
Whether to return detailed records.
Exclude specified distributions.
Exclude specified distributions (JSON-encoded).
See --exclude-dist.
--exclude-dist
(No description)
Whether to include cleaning up non-dev releases.
Only include specified distributions.
Only include specified distributions (JSON-encoded).
See --include-dist.
--include-dist
Number of new versions (including newest) to keep.
1
1 means to only keep the newest version, 2 means to keep the newest and the second newest, and so on.
Protect some files/wildcard patterns from delete/cleanup.
Protect some files/wildcard patterns from delete/cleanup (JSON-encoded).
See --protect-file.
--protect-file
Only list files which are scheduled for deletion.
File name/wildcard pattern.
Can also be specified as the 1st command-line argument and onwards.
File names/wildcard patterns (JSON-encoded).
See --file.
--file
Only show newest non-dev version.
Dev versions will be skipped.
Only show this number of newest versions.
Module name/wildcard pattern.
Module names/wildcard patterns (JSON-encoded).
See --module.
--module
Only list modules matching certain type.
Pause a number of seconds between files.
If you upload a lot of files (e.g. 7-10 or more) at a time, the PAUSE indexer currently might choke with SQLite database locking problem and thus fail to index your releases. Giving a delay of say 2-3 minutes (120-180 seconds) between files will alleviate this problem.
Subdirectory to put the file(s) into.
""
This script has shell tab completion capability with support for several shells.
To activate bash completion for this script, put:
complete -C pause pause
in your bash startup (e.g. ~/.bashrc). Your next shell session will then recognize tab completion for the command. Or, you can also directly execute the line above in your shell to activate immediately.
~/.bashrc
It is recommended, however, that you install modules using cpanm-shcompgen which can activate shell completion for scripts immediately.
To activate tcsh completion for this script, put:
complete pause 'p/*/`pause`/'
in your tcsh startup (e.g. ~/.tcshrc). Your next shell session will then recognize tab completion for the command. Or, you can also directly execute the line above in your shell to activate immediately.
~/.tcshrc
It is also recommended to install shcompgen (see above).
shcompgen
For fish and zsh, install shcompgen as described above.
This script can read configuration files. Configuration files are in the format of IOD, which is basically INI with some extra features.
By default, these names are searched for configuration filenames (can be changed using --config-path): /home/u1/.config/pause.conf, /home/u1/pause.conf, or /etc/pause.conf.
--config-path
All found files will be read and merged.
To disable searching for configuration files, pass --no-config.
To put configuration for a certain subcommand only, use a section name like [subcommand=NAME] or [SOMESECTION subcommand=NAME].
[subcommand=NAME]
[SOMESECTION subcommand=NAME]
You can put multiple profiles in a single file by using section names like [profile=SOMENAME] or [SOMESECTION profile=SOMENAME] or [subcommand=SUBCOMMAND_NAME profile=SOMENAME] or [SOMESECTION subcommand=SUBCOMMAND_NAME profile=SOMENAME]. Those sections will only be read if you specify the matching --config-profile SOMENAME.
[profile=SOMENAME]
[SOMESECTION profile=SOMENAME]
[subcommand=SUBCOMMAND_NAME profile=SOMENAME]
[SOMESECTION subcommand=SUBCOMMAND_NAME profile=SOMENAME]
--config-profile SOMENAME
You can also put configuration for multiple programs inside a single file, and use filter program=NAME in section names, e.g. [program=NAME ...] or [SOMESECTION program=NAME]. The section will then only be used when the reading program matches.
program=NAME
[program=NAME ...]
[SOMESECTION program=NAME]
You can also filter a section by environment variable using the filter env=CONDITION in section names. For example if you only want a section to be read if a certain environment variable is true: [env=SOMEVAR ...] or [SOMESECTION env=SOMEVAR ...]. If you only want a section to be read when the value of an environment variable equals some string: [env=HOSTNAME=blink ...] or [SOMESECTION env=HOSTNAME=blink ...]. If you only want a section to be read when the value of an environment variable does not equal some string: [env=HOSTNAME!=blink ...] or [SOMESECTION env=HOSTNAME!=blink ...]. If you only want a section to be read when the value of an environment variable includes some string: [env=HOSTNAME*=server ...] or [SOMESECTION env=HOSTNAME*=server ...]. If you only want a section to be read when the value of an environment variable does not include some string: [env=HOSTNAME!*=server ...] or [SOMESECTION env=HOSTNAME!*=server ...]. Note that currently due to simplistic parsing, there must not be any whitespace in the value being compared because it marks the beginning of a new section filter or section name.
env=CONDITION
[env=SOMEVAR ...]
[SOMESECTION env=SOMEVAR ...]
[env=HOSTNAME=blink ...]
[SOMESECTION env=HOSTNAME=blink ...]
[env=HOSTNAME!=blink ...]
[SOMESECTION env=HOSTNAME!=blink ...]
[env=HOSTNAME*=server ...]
[SOMESECTION env=HOSTNAME*=server ...]
[env=HOSTNAME!*=server ...]
[SOMESECTION env=HOSTNAME!*=server ...]
To load and configure plugins, you can use either the -plugins parameter (e.g. -plugins=DumpArgs or -plugins=DumpArgs@before_validate_args), or use the [plugin=NAME ...] sections, for example:
-plugins
-plugins=DumpArgs
-plugins=DumpArgs@before_validate_args
[plugin=NAME ...]
[plugin=DumpArgs] -event=before_validate_args -prio=99 [plugin=Foo] -event=after_validate_args arg1=val1 arg2=val2
which is equivalent to setting -plugins=-DumpArgs@before_validate_args@99,-Foo@after_validate_args,arg1,val1,arg2,val2.
-plugins=-DumpArgs@before_validate_args@99,-Foo@after_validate_args,arg1,val1,arg2,val2
List of available configuration parameters:
format (see --format) log_level (see --log-level) naked_res (see --naked-res) password (see --password) retries (see --retries) username (see --username)
detail (see --detail) exclude_dists (see --exclude-dist) include_dev (see --include-dev) include_dists (see --include-dist) include_nondev (see --exclude-nondev) num_keep (see --num-keep) protect_files (see --protect-file)
del (see --del) detail (see --detail) files (see --file) mtime_max (see --mtime-max) mtime_min (see --mtime-min) size_max (see --size-max) size_min (see --size-min)
detail (see --detail) exclude_dists (see --exclude-dist) include_dev (see --include-dev) include_dists (see --include-dist) include_nondev (see --exclude-nondev) newest (see --newest) newest_n (see --newest-n)
detail (see --detail) modules (see --module) type (see --type)
files (see --file)
files (see --file) protect_files (see --protect-file)
delay (see --delay) files (see --file) subdir (see --subdir)
String. Specify additional command-line options.
Please visit the project's homepage at https://metacpan.org/release/App-pause.
Source repository is at https://github.com/perlancar/perl-App-pause.
To clean up, there are also: pause-cleanup (from App::PAUSE::cleanup), WWW::PAUSE::CleanUpHomeDir (CLI in example).
perlancar <perlancar@cpan.org>
To contribute, you can send patches by email/via RT, or send pull requests on GitHub.
Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then test via:
% prove -l
If you want to build the distribution (e.g. to try to install it locally on your system), you can install Dist::Zilla, Dist::Zilla::PluginBundle::Author::PERLANCAR, Pod::Weaver::PluginBundle::Author::PERLANCAR, and sometimes one or two other Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond that are considered a bug and can be reported to me.
This software is copyright (c) 2022, 2021, 2020, 2017, 2016, 2015 by perlancar <perlancar@cpan.org>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=App-pause
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
To install App::pause, copy and paste the appropriate command in to your terminal.
cpanm
cpanm App::pause
CPAN shell
perl -MCPAN -e shell install App::pause
For more information on module installation, please visit the detailed CPAN module installation guide.