diff options
author | adam <adam@pkgsrc.org> | 2018-02-26 08:09:27 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2018-02-26 08:09:27 +0000 |
commit | 19ef82927a96c58ec4e2856749a68f471cfb96f8 (patch) | |
tree | f64b345a5abaab1f4992a14edd837b73e6aa9fc3 | |
parent | 4e80a42c38393979c909fd8c47dbecf47ef919d9 (diff) | |
download | pkgsrc-19ef82927a96c58ec4e2856749a68f471cfb96f8.tar.gz |
libsass: updated to 3.4.9
3.4.9:
Fix math with multiple units
Make error indicator Unicode aware
Make sourcemaps fully Unicode aware
Fix parser state column following static values
Fix memory leak of custom functions signature
Adding the missing scope identifier std::
Fix fall-trough warning in latest gnu gcc
Tweak warning message format
Fix msvc compiler warning
-rw-r--r-- | www/libsass/Makefile | 4 | ||||
-rw-r--r-- | www/libsass/distinfo | 12 | ||||
-rw-r--r-- | www/libsass/patches/patch-src_units.hpp | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/www/libsass/Makefile b/www/libsass/Makefile index 3fe28967547..e6ff76498c0 100644 --- a/www/libsass/Makefile +++ b/www/libsass/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2017/11/17 11:36:30 adam Exp $ +# $NetBSD: Makefile,v 1.9 2018/02/26 08:09:27 adam Exp $ -DISTNAME= libsass-3.4.7 +DISTNAME= libsass-3.4.9 CATEGORIES= www devel MASTER_SITES= ${MASTER_SITE_GITHUB:=sass/} diff --git a/www/libsass/distinfo b/www/libsass/distinfo index fa40a343ee5..ce9684b4103 100644 --- a/www/libsass/distinfo +++ b/www/libsass/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.9 2017/12/08 12:37:05 adam Exp $ +$NetBSD: distinfo,v 1.10 2018/02/26 08:09:27 adam Exp $ -SHA1 (libsass-3.4.7.tar.gz) = 011ebff7a592d00de274fceea2bb93d8234aee90 -RMD160 (libsass-3.4.7.tar.gz) = 6e8b801143491465447417633be5deafa7bb9b03 -SHA512 (libsass-3.4.7.tar.gz) = 5d743d4345b11e9e5315aa858637d3388d2b464150a46bc8a712e1e5d1b3df9c1e6b4dcac26f91827f1c38db24a5a084d04c0962a428f2994f42ad66a25b35a8 -Size (libsass-3.4.7.tar.gz) = 319824 bytes -SHA1 (patch-src_units.hpp) = f3d4d926e2cf9517bea9fc4ee47e597908c150cc +SHA1 (libsass-3.4.9.tar.gz) = c089a0ada7c2b3f00eddec90c6af3b352e383c6d +RMD160 (libsass-3.4.9.tar.gz) = f2eb0b7ae13b3c628d08257ba4c1f1f54bb4a4c0 +SHA512 (libsass-3.4.9.tar.gz) = f81c6cea533090f7d94395792fa5b9dad8f8e912673f764e75d2350ba0bb51c80ad22f64d9bff6a20d04be21b7a7fb802f75a745a0fceca9c2ecc5ca7ace0988 +Size (libsass-3.4.9.tar.gz) = 321503 bytes +SHA1 (patch-src_units.hpp) = 7d00a300e65b3e0dd042c8d8661ce3f30ebad4b0 diff --git a/www/libsass/patches/patch-src_units.hpp b/www/libsass/patches/patch-src_units.hpp index 571b7442519..2f9e8d26a91 100644 --- a/www/libsass/patches/patch-src_units.hpp +++ b/www/libsass/patches/patch-src_units.hpp @@ -1,12 +1,12 @@ -$NetBSD: patch-src_units.hpp,v 1.1 2017/06/13 12:44:07 fhajny Exp $ +$NetBSD: patch-src_units.hpp,v 1.2 2018/02/26 08:09:27 adam Exp $ Avoid macro conflict on SunOS. ---- src/units.hpp.orig 2017-03-05 04:57:36.000000000 +0000 +--- src/units.hpp.orig 2018-02-05 23:14:08.000000000 +0000 +++ src/units.hpp -@@ -5,6 +5,10 @@ - #include <string> +@@ -6,6 +6,10 @@ #include <sstream> + #include <vector> +#if defined(SEC) +#undef SEC |