From owner-svn-ports-head@freebsd.org Sun May 15 21:07:01 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9507CB3A168; Sun, 15 May 2016 21:07:01 +0000 (UTC) (envelope-from alfred@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 642C513CE; Sun, 15 May 2016 21:07:01 +0000 (UTC) (envelope-from alfred@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4FL70LU087191; Sun, 15 May 2016 21:07:00 GMT (envelope-from alfred@FreeBSD.org) Received: (from alfred@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4FL70Jw087190; Sun, 15 May 2016 21:07:00 GMT (envelope-from alfred@FreeBSD.org) Message-Id: <201605152107.u4FL70Jw087190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: alfred set sender to alfred@FreeBSD.org using -f From: Alfred Perlstein Date: Sun, 15 May 2016 21:07:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415285 - head/www/py-websocket-client X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 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: Sun, 15 May 2016 21:07:01 -0000 Author: alfred (src committer) Date: Sun May 15 21:07:00 2016 New Revision: 415285 URL: https://svnweb.freebsd.org/changeset/ports/415285 Log: Comment why we do magic to DISTNAME This is to preserve compat with old package name. Modified: head/www/py-websocket-client/Makefile (contents, props changed) Modified: head/www/py-websocket-client/Makefile ============================================================================== --- head/www/py-websocket-client/Makefile Sun May 15 21:05:02 2016 (r415284) +++ head/www/py-websocket-client/Makefile Sun May 15 21:07:00 2016 (r415285) @@ -6,6 +6,9 @@ PORTVERSION= 0.37.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +# Newer version is called "websocket_client" +# but to keep compat with old portname we fixup +# "-" to "_" here. DISTNAME= ${PORTNAME:S/-/_/g}-${DISTVERSION} MAINTAINER= alfred@FreeBSD.org