libsass: update to 3.5.5.
This commit is contained in:
parent
42b3194efd
commit
d7e992adec
3 changed files with 3 additions and 50 deletions
|
@ -1,23 +0,0 @@
|
|||
From b3374e3fd1a0c3658644d2bad24e4a0ff2e0dcea Mon Sep 17 00:00:00 2001
|
||||
From: xzyfer <xzyfer@gmail.com>
|
||||
Date: Thu, 21 Jun 2018 21:21:26 +1000
|
||||
Subject: [PATCH] Fix handling of unclosed interpolant in url
|
||||
|
||||
Fixes #2661
|
||||
---
|
||||
src/parser.cpp | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/src/parser.cpp b/src/parser.cpp
|
||||
index d99636dd4..66ca4dc94 100644
|
||||
--- a/src/parser.cpp
|
||||
+++ b/src/parser.cpp
|
||||
@@ -2163,6 +2163,7 @@ namespace Sass {
|
||||
while (pp && peek< exactly< hash_lbrace > >(pp)) {
|
||||
pp = sequence< interpolant, real_uri_value >(pp);
|
||||
}
|
||||
+ if (!pp) return 0;
|
||||
position = pp;
|
||||
return parse_interpolated_chunk(Token(p, position));
|
||||
}
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
From 38f4c3699d06b64128bebc7cf1e8b3125be74dc4 Mon Sep 17 00:00:00 2001
|
||||
From: xzyfer <xzyfer@gmail.com>
|
||||
Date: Wed, 4 Jul 2018 20:36:29 +1000
|
||||
Subject: [PATCH] Fix possible bug with handling empty reference combinators
|
||||
|
||||
Fixes #2665
|
||||
---
|
||||
src/inspect.cpp | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/inspect.cpp b/src/inspect.cpp
|
||||
index bd0389224..b56fd89aa 100644
|
||||
--- a/src/inspect.cpp
|
||||
+++ b/src/inspect.cpp
|
||||
@@ -1042,7 +1042,7 @@ namespace Sass {
|
||||
case Complex_Selector::REFERENCE:
|
||||
append_mandatory_space();
|
||||
append_string("/");
|
||||
- c->reference()->perform(this);
|
||||
+ if (c->reference()) c->reference()->perform(this);
|
||||
append_string("/");
|
||||
append_mandatory_space();
|
||||
break;
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'libsass'
|
||||
pkgname=libsass
|
||||
version=3.5.4
|
||||
revision=2
|
||||
version=3.5.5
|
||||
revision=1
|
||||
patch_args="-Np1"
|
||||
build_style=gnu-configure
|
||||
hostmakedepends="automake libtool"
|
||||
|
@ -10,7 +10,7 @@ maintainer="Gerardo Di Iorio <arete74@gmail.com>"
|
|||
license="MIT"
|
||||
homepage="http://www.sass-lang.com/libsass"
|
||||
distfiles="https://github.com/sass/${pkgname}/archive/${version}.tar.gz"
|
||||
checksum=5f61cbcddaf8e6ef7a725fcfa5d05297becd7843960f245197ebb655ff868770
|
||||
checksum=487ca58f1dfdc4055079af04f0ad120747385d3b3926b1c8f46e4b00540fdb70
|
||||
|
||||
pre_configure() {
|
||||
NOCONFIGURE=1 autoreconf -fi
|
||||
|
|
Loading…
Reference in a new issue