aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-09-07 17:37:33 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-09-07 17:37:33 +1200
commit070320458eb2927b9e13ccb7e64da61707ff134c (patch)
treeb3f73318c3869134cd22a272e4461f8fc2508b83
parentMerge branch 'release/v10.5.0' into develop (diff)
downloaddotfiles-070320458eb2927b9e13ccb7e64da61707ff134c.tar.gz
dotfiles-070320458eb2927b9e13ccb7e64da61707ff134c.zip
Remove `plmu(1df)`
App::cpanoutdated does this better.
-rw-r--r--.gitignore1
-rw-r--r--Makefile1
-rw-r--r--README.md3
-rwxr-xr-x[-rw-r--r--]bin/plmu (renamed from bin/plmu.sh)1
-rw-r--r--man/man1/plmu.1df19
5 files changed, 1 insertions, 24 deletions
diff --git a/.gitignore b/.gitignore
index 8d022b56..126c3f52 100644
--- a/.gitignore
+++ b/.gitignore
@@ -90,7 +90,6 @@
/bin/phpcsff.m4
/bin/phpcsff.sh
/bin/pit
-/bin/plmu
/bin/pp
/bin/pph
/bin/pst
diff --git a/Makefile b/Makefile
index 487b835c..5139958b 100644
--- a/Makefile
+++ b/Makefile
@@ -164,7 +164,6 @@ BINS = bin/ap \
bin/ped \
bin/phpcsff \
bin/pit \
- bin/plmu \
bin/p \
bin/pp \
bin/pph \
diff --git a/README.md b/README.md
index 130caa01..1a25d102 100644
--- a/README.md
+++ b/README.md
@@ -577,9 +577,6 @@ These scripts are installed by the `install-bin` target:
* `paz(1df)` print its arguments terminated by NULL chars.
* `pit(1df)` runs its input through a pager if its standard output looks like a
terminal.
-* `plmu(1df)` retrieves a list of installed modules from
- [`plenv`](https://github.com/tokuhirom/plenv), filters out any modules in
- `~/.plenv/non-cpan-modules`, and updates them all.
* `pwg(1df)` generates just one decent password with `pwgen(1)`.
* `qat(1df)` disables `stty echo` for the duration of a paste.
* `rep(1df)` repeats a command a given number of times.
diff --git a/bin/plmu.sh b/bin/plmu
index 3f237ae2..bac2e434 100644..100755
--- a/bin/plmu.sh
+++ b/bin/plmu
@@ -1,3 +1,4 @@
+#!/bin/sh
# Upgrade plenv modules with cpanm(1)
# Set up exceptions file if it exists
diff --git a/man/man1/plmu.1df b/man/man1/plmu.1df
deleted file mode 100644
index 92e0a550..00000000
--- a/man/man1/plmu.1df
+++ /dev/null
@@ -1,19 +0,0 @@
-.TH PLMU 1df "June 2016" "Manual page for plmu"
-.SH NAME
-.B plmu
-\- upgrade plenv[1] modules with cpanm(1)
-.SH SYNOPSIS
-.B plmu
-.SH DESCRIPTION
-.B plmu
-iterates through a list of the modules installed in the current plenv(1)
-version of Perl, excluding any defined in ~/.plenv/non-cpanm-modules, and
-attempts to upgrade each of them, reporting any errors. It does not run any
-tests, so it's just a shortcut for your personal Perl installation tinkerings,
-and not for any production deployment of plenv[1].
-.SH SEE ALSO
-[1] plenv: https://github.com/tokuhirom/plenv
-.br
-cpanm(1)
-.SH AUTHOR
-Tom Ryder <tom@sanctum.geek.nz>