diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2018-11-26 05:43:00 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2018-11-26 05:43:00 +0000 |
commit | 4432f9810db2b75b567f3b47f3c6438fb00abf69 (patch) | |
tree | 5ae724e014ef1bb5949fc292ce4763915d9909ae | |
parent | Pursuant to r483670, PORTREVISION should have been bumped. (diff) |
www/py-libsass: Update 0.16.0 -> 0.16.1
Reported by: portscout
Notes
Notes:
svn path=/head/; revision=485916
-rw-r--r-- | www/py-libsass/Makefile | 2 | ||||
-rw-r--r-- | www/py-libsass/distinfo | 6 | ||||
-rw-r--r-- | www/py-libsass/files/patch-setup.py | 20 |
3 files changed, 4 insertions, 24 deletions
diff --git a/www/py-libsass/Makefile b/www/py-libsass/Makefile index a3ff7aa04f76..6c83900b1098 100644 --- a/www/py-libsass/Makefile +++ b/www/py-libsass/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libsass -DISTVERSION= 0.16.0 +DISTVERSION= 0.16.1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/py-libsass/distinfo b/www/py-libsass/distinfo index 6113e2973c9b..e6828223d072 100644 --- a/www/py-libsass/distinfo +++ b/www/py-libsass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1542244782 -SHA256 (libsass-0.16.0.tar.gz) = ee756c684b5524099254d55a17169a81255ed7e03e11c97e9761dc9673c71bad -SIZE (libsass-0.16.0.tar.gz) = 309924 +TIMESTAMP = 1543210711 +SHA256 (libsass-0.16.1.tar.gz) = 5043f64d37254a6cfff8f1d2adcf13efecfda7e31ea09eb809269e117c8d8736 +SIZE (libsass-0.16.1.tar.gz) = 309030 diff --git a/www/py-libsass/files/patch-setup.py b/www/py-libsass/files/patch-setup.py deleted file mode 100644 index 107d046aac6b..000000000000 --- a/www/py-libsass/files/patch-setup.py +++ /dev/null @@ -1,20 +0,0 @@ ---- setup.py.orig 2018-11-13 19:39:18 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 - - - def _maybe_macos(flags): -@@ -54,7 +54,7 @@ def _maybe_macos(flags): - if sys.platform == 'win32': - extra_link_args = [] - elif platform.system() in {'Darwin', 'FreeBSD'}: -- extra_link_args = ['-fPIC', '-lc++'] -+ extra_link_args = ['-fPIC', '-lstdc++'] - else: - extra_link_args = ['-fPIC', '-lstdc++'] - |