From owner-svn-ports-branches@freebsd.org Tue Oct 22 16:13:24 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6875815EC89; Tue, 22 Oct 2019 16:13:24 +0000 (UTC) (envelope-from sunpoet@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 46yJTJ28Npz3ynn; Tue, 22 Oct 2019 16:13:24 +0000 (UTC) (envelope-from sunpoet@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 2DBA9EE6A; Tue, 22 Oct 2019 16:13:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9MGDObZ059132; Tue, 22 Oct 2019 16:13:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9MGDNOr059130; Tue, 22 Oct 2019 16:13:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201910221613.x9MGDNOr059130@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 22 Oct 2019 16:13:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r515204 - in branches/2019Q4/textproc/rubygem-sassc: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in branches/2019Q4/textproc/rubygem-sassc: . files X-SVN-Commit-Revision: 515204 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.29 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: Tue, 22 Oct 2019 16:13:24 -0000 Author: sunpoet Date: Tue Oct 22 16:13:23 2019 New Revision: 515204 URL: https://svnweb.freebsd.org/changeset/ports/515204 Log: MFH: r515060 Disable optimization - Bump PORTREVISION for package change PR: 241063 Submitted by: swills Approved by: ports-secteam (blanket) Modified: branches/2019Q4/textproc/rubygem-sassc/Makefile branches/2019Q4/textproc/rubygem-sassc/files/patch-ext-extconf.rb Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/textproc/rubygem-sassc/Makefile ============================================================================== --- branches/2019Q4/textproc/rubygem-sassc/Makefile Tue Oct 22 15:59:39 2019 (r515203) +++ branches/2019Q4/textproc/rubygem-sassc/Makefile Tue Oct 22 16:13:23 2019 (r515204) @@ -3,6 +3,7 @@ PORTNAME= sassc PORTVERSION= 2.2.1 +PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG Modified: branches/2019Q4/textproc/rubygem-sassc/files/patch-ext-extconf.rb ============================================================================== --- branches/2019Q4/textproc/rubygem-sassc/files/patch-ext-extconf.rb Tue Oct 22 15:59:39 2019 (r515203) +++ branches/2019Q4/textproc/rubygem-sassc/files/patch-ext-extconf.rb Tue Oct 22 16:13:23 2019 (r515204) @@ -1,11 +1,21 @@ ---- ext/extconf.rb.orig 2019-09-07 21:32:44 UTC +--- ext/extconf.rb.orig 2019-10-20 13:40:05 UTC +++ ext/extconf.rb -@@ -28,7 +28,7 @@ end - if enable_config('lto', true) - $CFLAGS << ' -flto' - $CXXFLAGS << ' -flto' -- $LDFLAGS << ' -flto' -+ $LDFLAGS << ' -flto -fuse-ld=lld' +@@ -19,18 +19,6 @@ if enable_config('static-stdlib', false) + $LDFLAGS << ' -static-libgcc -static-libstdc++' end +-# Set to false when building binary gems +-if enable_config('march-tune-native', true) +- $CFLAGS << ' -march=native -mtune=native' +- $CXXFLAGS << ' -march=native -mtune=native' +-end +- +-if enable_config('lto', true) +- $CFLAGS << ' -flto' +- $CXXFLAGS << ' -flto' +- $LDFLAGS << ' -flto' +-end +- # Disable noisy compilation warnings. + $warnflags = '' + $CFLAGS.gsub!(/[\s+](-ansi|-std=[^\s]+)/, '')