From owner-svn-ports-head@freebsd.org Fri May 17 11:41:49 2019 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 68780159238C; Fri, 17 May 2019 11:41:49 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-ed1-f43.google.com (mail-ed1-f43.google.com [209.85.208.43]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E650D6FA86; Fri, 17 May 2019 11:41:48 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by mail-ed1-f43.google.com with SMTP id b8so10090416edm.11; Fri, 17 May 2019 04:41:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=9WSviFtv7twrK/Pwe5j0m4CHgkzB1MWzz2iH/RLyajU=; b=JePa6UXz8mW+IcpJATOkzKxDtJSxOUGRXVlUlXluVcPcHgX/NA1Jq0rvgya1Yb91M0 9zz+mk1HZLkLaNloNVwGKJttxSdVkRyX8+M3rbpPU+47yCfhRe+Sk7fIoMDZANKqvw9V nVMxZjNVsWCERf9tb1fV9wqwbQuScmq4J54UUtq6/8MSpgstC5Q+o87WP/pxfAJQ3pxV ssWdDumMSKt6nFxyBrHGfgylGRysWvZriY6IkY1CZRjaTe17SuNgBzX5aL7DA+VI7THV KhMDGbhZmMHDdGtDVUF5NlLpdgdBbe2JCQ+FaGI2bUaN0Pv1jZBHZ/KO5XnH91OaJ33K sHPg== X-Gm-Message-State: APjAAAUu4odREc7hoZzYHhfhEXQ2ZYbaoke61Gzx/fEzCU5uf6BWCkOU B44xhUWhdoxlnChy+OcbhPECgEp3qK5X8WZpW3Uq2oRU X-Google-Smtp-Source: APXvYqxSzIq+ibjlCZEZoaL/Zu3jRePb0Z0v/DEkDixBWCQrCpQySuNhnSYmQoT5YOSC8Kgcp2RJjXBmPPu6yYUuM7Y= X-Received: by 2002:a17:906:4988:: with SMTP id p8mr8629319eju.220.1558093307345; Fri, 17 May 2019 04:41:47 -0700 (PDT) MIME-Version: 1.0 References: <201905170822.x4H8MRgW081754@repo.freebsd.org> <186d3850-2cf7-bac4-f568-2c370c3554bc@FreeBSD.org> In-Reply-To: <186d3850-2cf7-bac4-f568-2c370c3554bc@FreeBSD.org> From: Antoine Brodin Date: Fri, 17 May 2019 13:41:35 +0200 Message-ID: Subject: Re: svn commit: r501839 - head/www/py-websocket-client To: Kubilay Kocak Cc: ports-committers , svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: E650D6FA86 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.99)[-0.994,0]; REPLY(-4.00)[]; TAGGED_FROM(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 17 May 2019 11:41:49 -0000 On Fri, May 17, 2019 at 12:58 PM Kubilay Kocak wrote: > Thanks Antoine, but what was the actual error observed? > > I QA'd this pretty thoroughly (including a full test suite run/pass) so > it would be handy to know the exact failure mode > > Python > 2.7.9 has match_hostname and websocket-client checks for the > stdlib before falling back to backports: > > if hasattr(ssl, "match_hostname"): > from ssl import match_hostname > else: > from backports.ssl_match_hostname import match_hostname Did you check the generated package? # cat /usr/local/lib/python2.7/site-packages/websocket_client-0.56.0-py2.7.egg-info/requires.txt six backports.ssl_match_hostname Antoine