From dfca1408332687ea80ac5db6e69a208cd9229f8b Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Tue, 21 Apr 2020 15:52:12 -0700 Subject: [PATCH] Deprecate certbot-auto on Gentoo --- letsencrypt-auto-source/letsencrypt-auto | 38 +----------------------- 1 file changed, 1 insertion(+), 37 deletions(-) diff --git a/letsencrypt-auto-source/letsencrypt-auto b/letsencrypt-auto-source/letsencrypt-auto index ca0bda2d5..8fd0bdcb2 100755 --- a/letsencrypt-auto-source/letsencrypt-auto +++ b/letsencrypt-auto-source/letsencrypt-auto @@ -656,38 +656,6 @@ BootstrapArchCommon() { fi } -# If new packages are installed by BootstrapGentooCommon below, this version -# number must be increased. -BOOTSTRAP_GENTOO_COMMON_VERSION=1 - -BootstrapGentooCommon() { - PACKAGES=" - dev-lang/python:2.7 - dev-python/virtualenv - app-admin/augeas - dev-libs/openssl - dev-libs/libffi - app-misc/ca-certificates - virtual/pkgconfig" - - ASK_OPTION="--ask" - if [ "$ASSUME_YES" = 1 ]; then - ASK_OPTION="" - fi - - case "$PACKAGE_MANAGER" in - (paludis) - cave resolve --preserve-world --keep-targets if-possible $PACKAGES -x - ;; - (pkgcore) - pmerge --noreplace --oneshot $ASK_OPTION $PACKAGES - ;; - (portage|*) - emerge --noreplace --oneshot $ASK_OPTION $PACKAGES - ;; - esac -} - # If new packages are installed by BootstrapFreeBsd below, this version number # must be increased. BOOTSTRAP_FREEBSD_VERSION=1 @@ -910,10 +878,7 @@ elif [ -f /etc/manjaro-release ]; then } BOOTSTRAP_VERSION="BootstrapArchCommon $BOOTSTRAP_ARCH_COMMON_VERSION" elif [ -f /etc/gentoo-release ]; then - Bootstrap() { - DeprecationBootstrap "Gentoo" BootstrapGentooCommon - } - BOOTSTRAP_VERSION="BootstrapGentooCommon $BOOTSTRAP_GENTOO_COMMON_VERSION" + DEPRECATED_OS=1 elif uname | grep -iq FreeBSD ; then Bootstrap() { DeprecationBootstrap "FreeBSD" BootstrapFreeBsd @@ -979,7 +944,6 @@ BootstrapMageiaCommon 1 BootstrapRpmCommon 1 BootstrapSuseCommon 1 BootstrapArchCommon 1 -BootstrapGentooCommon 1 BootstrapFreeBsd 1 BootstrapMac 1 BootstrapSmartOS 1