Accepting request 352067 from home:cbosdonnat:branches:Virtualization

Update for libsass with libsass-devel rather than libsass0-devel.

OBS-URL: https://build.opensuse.org/request/show/352067
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libsass?expand=0&rev=1
This commit is contained in:
Dirk Mueller 2016-01-05 17:29:19 +00:00 committed by Git OBS Bridge
commit e2b9a53dd4
5 changed files with 103 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
libsass-3.3.2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:affb7efaa7e152e576cc1d510c662ebe067b0b9e9228ad2937dcafdd4431b573
size 281408

4
libsass.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Tue Jan 04 08:43:58 UTC 2016 - cbosdonnat@suse.com
- Release 3.3.2

72
libsass.spec Normal file
View File

@ -0,0 +1,72 @@
#
# spec file for package libsass
#
# Copyright (c) 2015 SUSE LINUX Products 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: libsass
Version: 3.3.2
Release: 0
License: MIT
Summary: C/C++ Sass compiler library
Url: https://github.com/sass/libsass
Group: Development/Libraries/C and C++
Source: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
BuildRequires: gcc-c++
BuildRequires: pkg-config
%description
Sass is a CSS pre-processor language to add on exciting, new, awesome
features to CSS. LibSass is a C/C++ port of the Sass CSS precompiler.
The original version was written in Ruby, but this version is meant
for efficiency and portability.
This library strives to be light, simple, and easy to build and integrate
with a variety of platforms and languages.
%package devel
Summary: C/C++ Sass compiler library development files
Group: Development/Libraries/C and C++
%description devel
This package provides development header files for libsass
%prep
%setup -q
%build
autoreconf -fi
# libsass doesn't support being used as a shared-library so far
%configure --with-pic --disable-shared
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot} %{?_smp_mflags}
rm %{buildroot}/%{_libdir}/libsass.la
%files devel
%defattr(-,root,root)
%dir %{_includedir}/sass
%{_includedir}/sass/*.h
%{_includedir}/sass.h
%{_includedir}/sass2scss.h
%{_libdir}/pkgconfig/libsass.pc
%{_libdir}/libsass.a
%changelog