From owner-svn-ports-all@freebsd.org Mon Mar 11 09:04:53 2019 Return-Path: Delivered-To: svn-ports-all@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 B5B651538A10; Mon, 11 Mar 2019 09:04:53 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (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 "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 372E28BCAB; Mon, 11 Mar 2019 09:04:53 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from icepick.vmeta.jp (unknown [IPv6:2405:6586:2280:1200:bcd7:6ea1:3b39:ada8]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: meta/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 7B3CA12DB2; Mon, 11 Mar 2019 09:04:51 +0000 (UTC) (envelope-from meta@FreeBSD.org) Date: Mon, 11 Mar 2019 18:04:47 +0900 From: Koichiro Iwao To: Tobias Kortkamp Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r495328 - head/textproc/kibana6 Message-ID: <20190311090447.nq2342raycdsw5z5@icepick.vmeta.jp> References: <201903110808.x2B88SeT099711@repo.freebsd.org> <20190311082837.GA52711@urd.tobik.me> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20190311082837.GA52711@urd.tobik.me> X-Operating-System: FreeBSD 12.0-STABLE amd64 User-Agent: NeoMutt/20180716 X-Rspamd-Queue-Id: 372E28BCAB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.86 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.86)[-0.860,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2019 09:04:53 -0000 On Mon, Mar 11, 2019 at 09:28:38AM +0100, Tobias Kortkamp wrote: > Thanks, but the package now barely installs any files: Oops, sorry again :( I noticed that exclusion mistake but committed wrong revision. This is more firm and works good enough. To be absolutely sure, I'd appreciate if you review the change. Index: Makefile =================================================================== --- Makefile (revision 495328) +++ Makefile (working copy) @@ -33,8 +33,8 @@ ${INSTALL_DATA} ${WRKSRC}/config/kibana.yml ${STAGEDIR}${ETCDIR}/kibana.yml.sample (cd ${WRKSRC} && \ ${RM} -r config node optimize && \ - ${COPYTREE_BIN} bin ${STAGEDIR}${WWWDIR} && \ - ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} "-not -name bin -type d") + ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} && \ + ${COPYTREE_BIN} bin ${STAGEDIR}${WWWDIR}) ${INSTALL} -lrs ${STAGEDIR}${ETCDIR} ${STAGEDIR}${WWWDIR}/config post-install: -- meta