From owner-svn-ports-head@freebsd.org Sun Jun 11 07:10:43 2017 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 572FABFFD1C; Sun, 11 Jun 2017 07:10:43 +0000 (UTC) (envelope-from dbn@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 2672276636; Sun, 11 Jun 2017 07:10:43 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5B7Ag5f023795; Sun, 11 Jun 2017 07:10:42 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5B7AgTT023793; Sun, 11 Jun 2017 07:10:42 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706110710.v5B7AgTT023793@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sun, 11 Jun 2017 07:10:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443148 - in head/emulators: i386-wine-devel/files i386-wine/files 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.23 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, 11 Jun 2017 07:10:43 -0000 Author: dbn Date: Sun Jun 11 07:10:42 2017 New Revision: 443148 URL: https://svnweb.freebsd.org/changeset/ports/443148 Log: emulators/i386-wine: switch to using https for downloads - ftp downloads are no longer provided upstream - PORTREVISION is not bumped: - on amd64 there is no change as the upstream binaries have not been rebuilt; and - on i386 the build is IGNOREd by default - the next round of binary updates to wine will include this change PR: 219775 Submitted by: rozhuk.im@gmail.com Modified: head/emulators/i386-wine-devel/files/nvidia.sh head/emulators/i386-wine/files/nvidia.sh Modified: head/emulators/i386-wine-devel/files/nvidia.sh ============================================================================== --- head/emulators/i386-wine-devel/files/nvidia.sh Sun Jun 11 06:17:39 2017 (r443147) +++ head/emulators/i386-wine-devel/files/nvidia.sh Sun Jun 11 07:10:42 2017 (r443148) @@ -72,6 +72,8 @@ # - handle nvidia-driver with package name suffix # - handle i386-wine with arbitary package name suffix # - remove support for old pkg_ tools +# Version 1.16 - 2017/06/04 +# - use https download site set -e @@ -170,9 +172,9 @@ if [ ! -f NVIDIA-FreeBSD-x86-${NV}.tar.gz ] || !(tar - then [ -n "$NO_FETCH" ] \ && terminate 8 "NVIDIA-FreeBSD-x86-${NV}.tar.gz unavailable" - echo "=> Downloading NVIDIA-FreeBSD-x86-${NV}.tar.gz from ftp://download.nvidia.com..." + echo "=> Downloading NVIDIA-FreeBSD-x86-${NV}.tar.gz from https://download.nvidia.com..." rm -f NVIDIA-FreeBSD-x86-${NV}.tar.gz - fetch -apRr ftp://download.nvidia.com/XFree86/FreeBSD-x86/${NV}/NVIDIA-FreeBSD-x86-${NV}.tar.gz \ + fetch -aRr https://download.nvidia.com/XFree86/FreeBSD-x86/${NV}/NVIDIA-FreeBSD-x86-${NV}.tar.gz \ || terminate 2 "Failed to download NVIDIA-FreeBSD-x86-${NV}.tar.gz" echo "=> Downloaded NVIDIA-FreeBSD-x86-${NV}.tar.gz" echo "Please check the following information against /usr/ports/x11/nvidia-driver/distinfo" Modified: head/emulators/i386-wine/files/nvidia.sh ============================================================================== --- head/emulators/i386-wine/files/nvidia.sh Sun Jun 11 06:17:39 2017 (r443147) +++ head/emulators/i386-wine/files/nvidia.sh Sun Jun 11 07:10:42 2017 (r443148) @@ -72,6 +72,8 @@ # - handle nvidia-driver with package name suffix # - handle i386-wine with arbitary package name suffix # - remove support for old pkg_ tools +# Version 1.16 - 2017/06/04 +# - use https download site set -e @@ -170,9 +172,9 @@ if [ ! -f NVIDIA-FreeBSD-x86-${NV}.tar.gz ] || !(tar - then [ -n "$NO_FETCH" ] \ && terminate 8 "NVIDIA-FreeBSD-x86-${NV}.tar.gz unavailable" - echo "=> Downloading NVIDIA-FreeBSD-x86-${NV}.tar.gz from ftp://download.nvidia.com..." + echo "=> Downloading NVIDIA-FreeBSD-x86-${NV}.tar.gz from https://download.nvidia.com..." rm -f NVIDIA-FreeBSD-x86-${NV}.tar.gz - fetch -apRr ftp://download.nvidia.com/XFree86/FreeBSD-x86/${NV}/NVIDIA-FreeBSD-x86-${NV}.tar.gz \ + fetch -aRr https://download.nvidia.com/XFree86/FreeBSD-x86/${NV}/NVIDIA-FreeBSD-x86-${NV}.tar.gz \ || terminate 2 "Failed to download NVIDIA-FreeBSD-x86-${NV}.tar.gz" echo "=> Downloaded NVIDIA-FreeBSD-x86-${NV}.tar.gz" echo "Please check the following information against /usr/ports/x11/nvidia-driver/distinfo"