sassc/sassc.spec
Ronan Chagas 0270a70be7 Accepting request 539657 from home:z1trus:branches:devel:libraries:c_c++
- New upstream release 3.4.5:
   
   Features:
   * Implement trailing commas in parameters and arguments
   * Implement unary slash expressions
   Fixes:
   
   * Fix Attribute Selector equal compare operator
   * Fix segfault for varargs with non-string keys
   * Fix Element Selector compare operators
   * Fix compiler issue with spec regression on NetBSD 6.1
   * Fix some segfaults caused by the parser being too forgiving
   * Fix segfault with invalid map keys
   * Fix null pointer dereference in css_error
   * Fix bug when parsing selector schemas
   * Fix null pointer dereference in parse_selector_schema
   * Fix segfault when extending pseudo selectors failed
   * Fix parser for urls looking like ruleset selectors
   * Error for trailing rulesets comma
   * Improve selector and binominal look ahead
   * Improve hex escape handling in interpolation
   * Fix wrong parsing of calc functions as number units
   * Skip comment evaluation for compressed output
   * Improve parent selector handling in selector schema
   * Improve parameter vararg and keyword handling
   * Hotfix to avoid invalid nested :not selectors
   * Fix a few minor memory leaks

OBS-URL: https://build.opensuse.org/request/show/539657
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/sassc?expand=0&rev=5
2017-11-07 18:58:54 +00:00

58 lines
1.6 KiB
RPMSpec

#
# spec file for package sassc
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: sassc
Version: 3.4.5
Release: 0
Summary: Libsass command line driver
License: MIT
Group: Development/Tools/Other
Url: https://github.com/sass/sassc/
Source: https://github.com/sass/sassc/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gcc-c++
BuildRequires: libsass-devel
BuildRequires: libtool
BuildRequires: make
%description
SassC is a C/C++ port of the Sass engine. The point is to be
simple, fast, and easy to integrate.
Sass is a pre-processing language for CSS. It allows you to write
cleaner stylesheets and makes collaboration on your CSS a breeze.
%prep
%setup -q
%build
autoreconf -fiv
%configure
make %{?_smp_mflags}
%install
%make_install
%files
%defattr(-,root,root)
%doc LICENSE Readme.md
%{_bindir}/%{name}
%changelog