cpm icon indicating copy to clipboard operation
cpm copied to clipboard

fast CPAN client

Results 39 cpm issues
Sort by recently updated
recently updated
newest added

I often release a new version to CPAN and require it in our DarkPAN code immediatly. When not waiting long enough, even if the newest version is specified in cpanfile,...

perl 5.14.2 cpm 0.997007 I have used cpm to install this `on runtime => sub { requires 'Async', '== 0.12', git => '[email protected]:ap/Async.git', ref => 'v0.12'; };` dependency locally. ```text...

From the documentation, it seems `cpm` will install only the bundle module, not the bundle contents as specified by the main module's CONTENTS section. (See e.g. [Bundle::DBI](https://metacpan.org/pod/Bundle::DBI).) `cpan` supports installation...

From [documentation](https://metacpan.org/dist/App-cpm/view/script/cpm#OPTIONS) `save builds for CPAN distributions;` I can not figure out where prebuilds are stored. I want to mount this folder for my Dockerfile, to speedup installation when container...

This PR changes how to log to terminal. Previously, sometimes we're not sure which modules are being installed and which modules take a lot of time to be installed. I...

It seems strange that I'd get an error from cpm telling me to install a module so that it can read the list of modules I want it to install:...

First of all, thanks for CPM, it's fast and user-friendly (minimal, colorful etc). This is not a bug, just reporting my findings. ### NOT A BUG `IO::Tty` being a required...

Adding the environment variable `$ENV{PERL_CPM_MIRROR}` so that it is possible to set a mirror without invoking `cpm` directly with `--mirror`. A specific usecase for this: You create a base docker...

To reproduce: ``` docker run --platform linux/amd64 --rm -it perldocker/perl-tester:5.36 ``` In Docker container: ``` curl -O https://cpan.metacpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-3.16.1.tar.gz cpm install DBD-Pg-3.16.1.tar.gz ``` The result should be: ``` cpm install DBD-Pg-3.16.1.tar.gz...

I use `cpm` to install modules into container: ``` ## Modules WORKDIR ${APP_ROOT} RUN cpanm -n -L ./local App::cpm Carton::Snapshot && rm -rf /root/.cpanm COPY cpanfile ./ COPY cpanfile.snapshot ./...