From owner-svn-ports-head@freebsd.org Mon May 13 09:04:22 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 13D7615881D4; Mon, 13 May 2019 09:04:22 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AE8E06FF73; Mon, 13 May 2019 09:04:21 +0000 (UTC) (envelope-from madpilot@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 6904F7B19; Mon, 13 May 2019 09:04:21 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4D94Lag040720; Mon, 13 May 2019 09:04:21 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4D94KFw040717; Mon, 13 May 2019 09:04:20 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201905130904.x4D94KFw040717@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 13 May 2019 09:04:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501536 - in head/devel: geany geany-plugin-geanypy geany-plugin-lua X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in head/devel: geany geany-plugin-geanypy geany-plugin-lua X-SVN-Commit-Revision: 501536 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AE8E06FF73 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.962,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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: Mon, 13 May 2019 09:04:22 -0000 Author: madpilot Date: Mon May 13 09:04:20 2019 New Revision: 501536 URL: https://svnweb.freebsd.org/changeset/ports/501536 Log: - Add USES=shebangfix where required in geany and geany-plugin-* ports. This fixes build issues reported by users [1] - Only bump PORTREVISION for geany-plugin-geanypy since the file modified in it by shebangfix is actually installed with the pkg PR: 237862 [1] Submitted by: Christopher MFH: 2019Q2 Modified: head/devel/geany-plugin-geanypy/Makefile head/devel/geany-plugin-lua/Makefile head/devel/geany/Makefile Modified: head/devel/geany-plugin-geanypy/Makefile ============================================================================== --- head/devel/geany-plugin-geanypy/Makefile Mon May 13 09:01:34 2019 (r501535) +++ head/devel/geany-plugin-geanypy/Makefile Mon May 13 09:04:20 2019 (r501536) @@ -2,6 +2,7 @@ PORTNAME= geany-plugin-geanypy PORTVERSION= ${GEANY_VER} +PORTREVISION= 1 PKGNAMESUFFIX= -gtk2 CATEGORIES= devel @@ -12,8 +13,10 @@ LIB_DEPENDS= libgeany.so:devel/geany@gtk2 FLAVORS= # intentionally left empty -USES= python:2.7 +USES= python:2.7 shebangfix USE_GNOME= pygtk2 + +SHEBANG_FILES= geanypy/geany/console.py OPTIONS_DEFINE= DOCS Modified: head/devel/geany-plugin-lua/Makefile ============================================================================== --- head/devel/geany-plugin-lua/Makefile Mon May 13 09:01:34 2019 (r501535) +++ head/devel/geany-plugin-lua/Makefile Mon May 13 09:04:20 2019 (r501536) @@ -7,7 +7,11 @@ CATEGORIES= devel MAINTAINER= madpilot@FreeBSD.org COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC} -USES= lua:51 +USES= lua:51 shebangfix + +SHEBANG_FILES= geanylua/util/mkiface.lua \ + geanylua/util/mk-keytab.lua \ + geanylua/util/keywords.lua .include "${.CURDIR}/../geany-plugins/files/Makefile.common" .include Modified: head/devel/geany/Makefile ============================================================================== --- head/devel/geany/Makefile Mon May 13 09:01:34 2019 (r501535) +++ head/devel/geany/Makefile Mon May 13 09:04:20 2019 (r501536) @@ -23,13 +23,14 @@ gtk2_PKGNAMESUFFIX= -gtk2 gtk3_CONFLICTS_INSTALL= geany-gtk2 USES= compiler:c++11-lang desktop-file-utils gettext-tools gmake \ - gnome libtool localbase pathfix pkgconfig tar:bzip2 + gnome libtool localbase pathfix pkgconfig shebangfix tar:bzip2 USE_GNOME= cairo intltool USE_LDCONFIG= yes GNU_CONFIGURE= yes INSTALLS_ICONS= yes INSTALL_TARGET= install-strip +SHEBANG_FILES= scripts/gen-api-gtkdoc.py OPTIONS_DEFINE= VTE NLS DOCS OPTIONS_DEFAULT= VTE