From owner-svn-ports-branches@freebsd.org Thu Jan 18 14:09:11 2018 Return-Path: Delivered-To: svn-ports-branches@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 A817FE7C905; Thu, 18 Jan 2018 14:09:11 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 840476EB71; Thu, 18 Jan 2018 14:09:11 +0000 (UTC) (envelope-from dvl@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2CAF1F843; Thu, 18 Jan 2018 14:09:10 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0IE9A44016712; Thu, 18 Jan 2018 14:09:10 GMT (envelope-from dvl@FreeBSD.org) Received: (from dvl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0IE9A7o016711; Thu, 18 Jan 2018 14:09:10 GMT (envelope-from dvl@FreeBSD.org) Message-Id: <201801181409.w0IE9A7o016711@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dvl set sender to dvl@FreeBSD.org using -f From: Dan Langille Date: Thu, 18 Jan 2018 14:09:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r459325 - branches/2018Q1/www/rubygem-passenger X-SVN-Group: ports-branches X-SVN-Commit-Author: dvl X-SVN-Commit-Paths: branches/2018Q1/www/rubygem-passenger X-SVN-Commit-Revision: 459325 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jan 2018 14:09:11 -0000 Author: dvl Date: Thu Jan 18 14:09:10 2018 New Revision: 459325 URL: https://svnweb.freebsd.org/changeset/ports/459325 Log: MFH: r459268 Fix build was failing with: Error: '/bin/bash' is an invalid shebang you need USES=shebangfix for 'lib/ruby/gems/2.4/gems/passenger-5.1.12/dev/ci/tests/debian/run' Error: '/bin/bash' is an invalid shebang you need USES=shebangfix for 'lib/ruby/gems/2.4/gems/passenger-5.1.12/dev/ci/tests/rpm/run' Error: '/usr/local/bin/python2' is an invalid shebang you need USES=shebangfix for 'lib/ruby/gems/2.4/gems/passenger-5.1.12/src/cxx_supportlib/vendor-copy/libuv/gyp_uv.py' Approved by: portmgr@ (blanket approval) Modified: branches/2018Q1/www/rubygem-passenger/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/www/rubygem-passenger/Makefile ============================================================================== --- branches/2018Q1/www/rubygem-passenger/Makefile Thu Jan 18 13:33:30 2018 (r459324) +++ branches/2018Q1/www/rubygem-passenger/Makefile Thu Jan 18 14:09:10 2018 (r459325) @@ -3,6 +3,7 @@ PORTNAME= passenger PORTVERSION= 5.1.12 +PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMEPREFIX= rubygem- @@ -28,12 +29,14 @@ OPTIONS_DEFAULT= APACHE22 USE_RUBY= yes RAKE_BIN= ${LOCALBASE}/bin/rake -USES= cpe gem libtool shebangfix ssl +USES= cpe gem libtool python:env shebangfix ssl SHEBANG_FILES= \ src/cxx_supportlib/vendor-copy/libuv/gyp_uv.py \ dev/vagrant/nginx_start \ dev/vagrant/provision.sh \ dev/ci/run-tests-with-docker \ + dev/ci/tests/debian/run \ + dev/ci/tests/rpm/run \ dev/ci/scripts/setup-host-natively.sh \ dev/ci/scripts/docker-entrypoint-stage2.sh \ dev/ci/scripts/inituidgid \