From owner-freebsd-ports@freebsd.org Sat Dec 29 04:45:30 2018 Return-Path: Delivered-To: freebsd-ports@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 64A1414318F9 for ; Sat, 29 Dec 2018 04:45:30 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 991F18538A for ; Sat, 29 Dec 2018 04:45:27 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by gate.utahime.jp (Postfix) with ESMTPS id 35A04251E9; Sat, 29 Dec 2018 13:45:13 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id A3F0F2F3FB; Sat, 29 Dec 2018 13:45:12 +0900 (JST) Received: from localhost (rolling.home.utahime.org [192.168.174.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by eastasia.home.utahime.org (Postfix) with ESMTPSA id F190D2F3FA; Sat, 29 Dec 2018 13:45:10 +0900 (JST) Date: Sat, 29 Dec 2018 13:44:12 +0900 (JST) Message-Id: <20181229.134412.1093009159948437947.yasu@utahime.org> To: freebsd-ports@FreeBSD.org Subject: Request for help: remove bundler from ruby 2.6 port From: Yasuhiro KIMURA X-Mailer: Mew version 6.8 on Emacs 26.1 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Rspamd-Queue-Id: 991F18538A X-Spamd-Bar: + Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of yasu@utahime.org designates 183.180.29.210 as permitted sender) smtp.mailfrom=yasu@utahime.org X-Spamd-Result: default: False [1.68 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; NEURAL_HAM_MEDIUM(-0.04)[-0.044,0]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+a:spf-authorized.utahime.org]; MV_CASE(0.50)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; DMARC_NA(0.00)[utahime.org]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-0.42)[-0.417,0]; RCVD_COUNT_THREE(0.00)[4]; IP_SCORE(0.18)[ip: (0.47), ipnet: 183.180.0.0/16(0.23), asn: 2519(0.27), country: JP(-0.09)]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MX_GOOD(-0.01)[mx1.utahime.org,mx2.utahime.org]; MID_CONTAINS_FROM(1.00)[]; NEURAL_SPAM_SHORT(0.78)[0.778,0]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:2519, ipnet:183.180.0.0/16, country:JP]; RCVD_TLS_LAST(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Dec 2018 04:45:30 -0000 Hello all, Ruby 2.6.0 is released and I tried porting it. After creating start point by 'svn copy lang/ruby25 lang/ruby26', I made following changes. https://www.utahime.org/FreeBSD/ports/lang_ruby26.patch It is build successfully and works fine on 12.0-RELEASE amd64. But there is still one issue left. >From 2.6.0 ruby includes 'bundler'. But according to the convention of ruby port it should be removed from ruby core port in the same way as 'gem' and 'rake'. I learned from Makefile that it is achieved by removing related files from source tree at post-patch target. However I don't know enough about what files need to be removed to cleanly remove bundler from ruby 2.6 port. So would someone please help me about it? Best Regards. --- Yasuhiro KIMURA