From owner-svn-ports-head@freebsd.org Thu Nov 16 21:33:20 2017 Return-Path: Delivered-To: svn-ports-head@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 AE888DE9F6D; Thu, 16 Nov 2017 21:33:20 +0000 (UTC) (envelope-from yuri@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 mx1.freebsd.org (Postfix) with ESMTPS id 7B12A6B74B; Thu, 16 Nov 2017 21:33:20 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAGLXJxg023275; Thu, 16 Nov 2017 21:33:19 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAGLXJ1M023272; Thu, 16 Nov 2017 21:33:19 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711162133.vAGLXJ1M023272@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 16 Nov 2017 21:33:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454341 - in head/www/py-libsass: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/www/py-libsass: . files X-SVN-Commit-Revision: 454341 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 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: Thu, 16 Nov 2017 21:33:20 -0000 Author: yuri Date: Thu Nov 16 21:33:19 2017 New Revision: 454341 URL: https://svnweb.freebsd.org/changeset/ports/454341 Log: www/py-libsass: Update to 0.13.4 Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13115 Added: head/www/py-libsass/files/ head/www/py-libsass/files/patch-setup.py (contents, props changed) Modified: head/www/py-libsass/Makefile head/www/py-libsass/distinfo Modified: head/www/py-libsass/Makefile ============================================================================== --- head/www/py-libsass/Makefile Thu Nov 16 21:31:37 2017 (r454340) +++ head/www/py-libsass/Makefile Thu Nov 16 21:33:19 2017 (r454341) @@ -2,15 +2,16 @@ # $FreeBSD$ PORTNAME= libsass -PORTVERSION= 0.13.3 +DISTVERSION= 0.13.4 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= yuri@rawbw.com +MAINTAINER= yuri@FreeBSD.org COMMENT= Straightforward binding of libsass for Python LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_powerpc64= fails to compile: cc1plus: error: unrecognized command line option -std=c++0x Modified: head/www/py-libsass/distinfo ============================================================================== --- head/www/py-libsass/distinfo Thu Nov 16 21:31:37 2017 (r454340) +++ head/www/py-libsass/distinfo Thu Nov 16 21:33:19 2017 (r454341) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508391364 -SHA256 (libsass-0.13.3.tar.gz) = 27a9ae91e2f2f2c2462555951fd6ea2b5916452b7c7bc73b49708d518970fe7f -SIZE (libsass-0.13.3.tar.gz) = 297821 +TIMESTAMP = 1510810077 +SHA256 (libsass-0.13.4.tar.gz) = 113af1377418e87457636f3c9aa36486bf5283c62ac9bc00e4694f8e53c3802c +SIZE (libsass-0.13.4.tar.gz) = 298486 Added: head/www/py-libsass/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-libsass/files/patch-setup.py Thu Nov 16 21:33:19 2017 (r454341) @@ -0,0 +1,11 @@ +--- setup.py.orig 2017-11-16 05:28:26 UTC ++++ setup.py +@@ -37,7 +37,7 @@ def _maybe_clang(flags): + compiler.linker_so[0] = os.environ['CXX'] + return compiler + distutils.sysconfig.customize_compiler = customize_compiler +- flags[:] = ['-c', '-O3'] + flags + ['-stdlib=libc++'] ++ flags[:] = ['-c'] + flags + ['-stdlib=libc++'] + + + def _maybe_macos(flags):