From owner-svn-ports-head@freebsd.org Mon Sep 10 20:31:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DFA8E109BB8D for ; Mon, 10 Sep 2018 20:31:09 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8EADD758D3 for ; Mon, 10 Sep 2018 20:31:09 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from mail-it0-f45.google.com (mail-it0-f45.google.com [209.85.214.45]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) (Authenticated sender: sunpoet) by smtp.freebsd.org (Postfix) with ESMTPSA id 6D6042492F for ; Mon, 10 Sep 2018 20:31:09 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: by mail-it0-f45.google.com with SMTP id h1-v6so30504387itj.4 for ; Mon, 10 Sep 2018 13:31:09 -0700 (PDT) X-Gm-Message-State: APzg51DIAM3sqiF99fPSOZPKLND0TAc/6VxbUcgCduJg8/DGk5lRstj5 MLBn22z91tp+LrSgF7eJ0QG8LhY2ihRlxzqcYkNCWg== X-Google-Smtp-Source: ANB0VdabHNP6qRg27Jx+1wnkWBEOU+9inK5wNtTN1M+1XrwN45SWA3GudntG/sDMQspUwTLZSlhd69uG8t2gvrEUivE= X-Received: by 2002:a24:fa49:: with SMTP id v70-v6mr19388280ith.76.1536611468815; Mon, 10 Sep 2018 13:31:08 -0700 (PDT) MIME-Version: 1.0 References: <201809080014.w880EmE7061146@repo.freebsd.org> <20180910181812.upvkftko5byhbikw@atuin.in.mat.cc> In-Reply-To: <20180910181812.upvkftko5byhbikw@atuin.in.mat.cc> From: Po-Chuan Hsieh Date: Tue, 11 Sep 2018 04:30:31 +0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r479218 - in head/security: py-acme py-certbot py-certbot-apache py-certbot-dns-cloudflare py-certbot-dns-cloudxns py-certbot-dns-digitalocean py-certbot-dns-dnsimple py-certbot-dns-dns... To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, Nicola Vitale Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.27 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Sep 2018 20:31:10 -0000 On Tue, Sep 11, 2018 at 2:18 AM Mathieu Arnold wrote: > On Sat, Sep 08, 2018 at 12:14:48AM +0000, Sunpoet Po-Chuan Hsieh wrote: > > Author: sunpoet > > Date: Sat Sep 8 00:14:48 2018 > > New Revision: 479218 > > URL: https://svnweb.freebsd.org/changeset/ports/479218 > > > > Log: > > Update to 0.27.1 > > After this update, when running certbot certonly, I get: > > An unexpected error occurred: > DistributionNotFound: The 'google-auth-httplib2>=0.0.3' distribution was > not found and is required by google-api-python-client > Hi mat, (Maintainer is cc'd.) It's a missing dependency of py-google-api-python-client. It should be fixed by adding security/py-google-auth-httplib2 to www/py-google-api-python-client. Index: www/py-google-api-python-client/Makefile =================================================================== --- www/py-google-api-python-client/Makefile (revision 479428) +++ www/py-google-api-python-client/Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= google-api-python-client PORTVERSION= 1.7.4 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,6 +15,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httplib2>=0.9.2:www/py-httplib2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}google-auth>=0:security/py-google-auth@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}google-auth-httplib2>=0.0.3:security/py-google-auth-httplib2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.6.1:devel/py-six@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}uritemplate>=3.0.0:net/py-uritemplate@${PY_FLAVOR} Please see the logfile '/tmp/tmp5csB7R' for more details. > > And that file has: > > 2018-09-10 20:15:53,534:DEBUG:certbot.log:Exiting abnormally: > Traceback (most recent call last): > File "/usr/local/bin/certbot", line 11, in > load_entry_point('certbot==0.27.1', 'console_scripts', 'certbot')() > File "/usr/local/lib/python2.7/site-packages/certbot/main.py", line > 1338, in main > plugins = plugins_disco.PluginsRegistry.find_all() > File "/usr/local/lib/python2.7/site-packages/certbot/plugins/disco.py", > line 206, in find_all > plugin_ep = PluginEntryPoint(entry_point) > File "/usr/local/lib/python2.7/site-packages/certbot/plugins/disco.py", > line 52, in __init__ > self.plugin_cls = entry_point.load() > File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", > line 2320, in load > self.require(*args, **kwargs) > File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", > line 2343, in require > items = working_set.resolve(reqs, env, installer, extras=self.extras) > File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", > line 777, in resolve > raise DistributionNotFound(req, requirers) > DistributionNotFound: The 'google-auth-httplib2>=0.0.3' distribution was > not found and is required by google-api-python-client > 2018-09-10 20:15:53,534:ERROR:certbot.log:An unexpected error occurred: > > -- > Mathieu Arnold >