From owner-svn-ports-head@freebsd.org Fri May 6 09:12:03 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 DFFC4B2EBCC; Fri, 6 May 2016 09:12:03 +0000 (UTC) (envelope-from lwhsu@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 ACCA51F8A; Fri, 6 May 2016 09:12:03 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u469C207089935; Fri, 6 May 2016 09:12:02 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u469C2Ev089934; Fri, 6 May 2016 09:12:02 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201605060912.u469C2Ev089934@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Fri, 6 May 2016 09:12:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414688 - head/Mk 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: Fri, 06 May 2016 09:12:04 -0000 Author: lwhsu Date: Fri May 6 09:12:02 2016 New Revision: 414688 URL: https://svnweb.freebsd.org/changeset/ports/414688 Log: - Add pypi.io to MASTER_SITE_CHEESESHOP, which supports redirection for package-version-based URL scheme. This eases python ports updating. Modified: head/Mk/bsd.sites.mk Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Fri May 6 09:03:28 2016 (r414687) +++ head/Mk/bsd.sites.mk Fri May 6 09:12:02 2016 (r414688) @@ -105,7 +105,8 @@ MASTER_SITE_BERLIOS+= \ # Removal of the PyPI Mirror Auto Discovery and Naming Scheme # Reference: https://www.python.org/dev/peps/pep-0449/ MASTER_SITE_CHEESESHOP+= \ - https://pypi.python.org/packages/%SUBDIR%/ + https://pypi.python.org/packages/%SUBDIR%/ \ + https://pypi.io/packages/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_COMP_SOURCES)