Hi Bill
Looks like the certbot-auto also has some support for Macports
curl -O https://dl.eff.org/certbot-auto
LINE 435:
BootstrapMac() {
if hash brew 2>/dev/null; then
echo "Using Homebrew to install dependencies..."
pkgman=brew
pkgcmd="brew install"
elif hash port 2>/dev/null; then
echo "Using MacPorts to install dependencies..."
pkgman=port
pkgcmd="$SUDO port install"
else
echo "No Homebrew/MacPorts; installing Homebrew..."
ruby -e "$(curl -fsSL
https://raw.githubusercontent.com/Homebrew/install/master/install)"
pkgman=brew
pkgcmd="brew install"
fi
Although it looks like it insists on setting up a python virtualenv for you.
and then pulls in python dependancies with pip, which is not the normal
macports way.
https://letsencrypt.readthedocs.org/en/latest/contributing.html#prerequisites
I'll set up a VM and try it and let you know (don't want to break my main Mac).
Mike
> On 22/11/2016, at 10:38 AM, Bill Christensen <[email protected]>
> wrote:
>
> Any chance of a Certbot port? https://certbot.eff.org/
> <https://certbot.eff.org/>
>
> They've got an install with Homebrew, but I'd rather do everything with
> MacPorts.
>
> (yeah, I know, I could learn to build ports myself and become the maintainer.
> And maybe I will at some point, but not right now)