Files
python-libsass/python-libsass.spec

87 lines
2.5 KiB
RPMSpec
Raw Permalink Normal View History

#
# spec file for package python-libsass
#
# Copyright (c) 2024 SUSE LLC
#
# 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.
- Update to 0.18.0: * Add support for previous import path to importer callbacks [#287 #291 by Frankie Dintino] * Add several new cli options [#279 #268 by Frankie Dintino] * Fix compilation on macos mojave [#276 #277 by @asottile] * Use -lc++ link flag when compiling with clang [#270 by Christian Thieme #271 by Anthony Sottile] * Honor strip_extension in SassMiddleware [#274 by Anthony Sottile] * Fix invalid escape sequences [#249 by Anthony Sottile] * Add code of conduct [#251 by Nick Schonning] * Add support for python3.7 and remove testing for python3.4 [#254 by Anthony Sottile] * Add strip_extension option for wsgi / distutils builder [#55 #258 by Anthony Sottile #260 by Morten Brekkevold] * Deprecate sassc (replaced by pysassc). [#262 by Anthony Sottile] * Import abc classes from collections.abc to remove DeprecationWarning [#264 by Gary van der Merwe #265 by Anthony Sottile] * Add ability to specify imports for custom extensions * SassList type gained an additional option bracketed=False to match the upstream changes to the sass_list type. [#184 by Anthony Sottile] * libsass-python has moved to the sass organization! * Sort input files for determinism [#212 by Bernhard M. Wiedemann] * Include LICENSE file in distributions [#216 by Dougal J. Sutherland] * Add a pysassc entry to replace sassc [#218 by Anthony Sottile] * Enable building with dynamic linking [#219 by Marcel Plch] * Always add cwd to import paths [#208 by Anthony Sottile] * Use getfullargspec when available in python 3. [#188 by Thom Wiggers] * Use sass_copy_c_string instead of strdup for portability [#196 by Anthony Sottile] * Use -std=gnu++0x to fix installation under cygwin [#195 #197 by Anthony Sottile] * Correct source map url [#201 #202 by Anthony Sottile] * Remove --watch [#203 by Anthony Sottile] - Remove merged patch reproducible.patch - Do not use bundled libsass OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-libsass?expand=0&rev=8
2019-04-05 11:42:33 +00:00
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
%define _name libsass-python
Name: python-libsass
Version: 0.23.0
Release: 0
Summary: Python binding for libsass
License: MIT
Group: Development/Languages/Python
- Update to 0.18.0: * Add support for previous import path to importer callbacks [#287 #291 by Frankie Dintino] * Add several new cli options [#279 #268 by Frankie Dintino] * Fix compilation on macos mojave [#276 #277 by @asottile] * Use -lc++ link flag when compiling with clang [#270 by Christian Thieme #271 by Anthony Sottile] * Honor strip_extension in SassMiddleware [#274 by Anthony Sottile] * Fix invalid escape sequences [#249 by Anthony Sottile] * Add code of conduct [#251 by Nick Schonning] * Add support for python3.7 and remove testing for python3.4 [#254 by Anthony Sottile] * Add strip_extension option for wsgi / distutils builder [#55 #258 by Anthony Sottile #260 by Morten Brekkevold] * Deprecate sassc (replaced by pysassc). [#262 by Anthony Sottile] * Import abc classes from collections.abc to remove DeprecationWarning [#264 by Gary van der Merwe #265 by Anthony Sottile] * Add ability to specify imports for custom extensions * SassList type gained an additional option bracketed=False to match the upstream changes to the sass_list type. [#184 by Anthony Sottile] * libsass-python has moved to the sass organization! * Sort input files for determinism [#212 by Bernhard M. Wiedemann] * Include LICENSE file in distributions [#216 by Dougal J. Sutherland] * Add a pysassc entry to replace sassc [#218 by Anthony Sottile] * Enable building with dynamic linking [#219 by Marcel Plch] * Always add cwd to import paths [#208 by Anthony Sottile] * Use getfullargspec when available in python 3. [#188 by Thom Wiggers] * Use sass_copy_c_string instead of strdup for portability [#196 by Anthony Sottile] * Use -std=gnu++0x to fix installation under cygwin [#195 #197 by Anthony Sottile] * Correct source map url [#201 #202 by Anthony Sottile] * Remove --watch [#203 by Anthony Sottile] - Remove merged patch reproducible.patch - Do not use bundled libsass OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-libsass?expand=0&rev=8
2019-04-05 11:42:33 +00:00
URL: https://github.com/sass/libsass-python
Source: https://github.com/sass/libsass-python/archive/%{version}.tar.gz
BuildRequires: %{python_module Cython}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: libsass-devel >= 3.6.4
BuildRequires: python-rpm-macros
Requires: python-setuptools
Requires(post): update-alternatives
Requires(postun):update-alternatives
# SECTION test requirements
BuildRequires: %{python_module Werkzeug}
BuildRequires: %{python_module pytest}
# /SECTION
%python_subpackages
%description
A straightforward binding of libsass for Python. Compile Sass/SCSS in Python
with no Ruby stack at all!
%prep
%setup -q -n libsass-python-%{version}
%build
sed -i -e '/^#!\//, 1d' *.py
- Update to 0.18.0: * Add support for previous import path to importer callbacks [#287 #291 by Frankie Dintino] * Add several new cli options [#279 #268 by Frankie Dintino] * Fix compilation on macos mojave [#276 #277 by @asottile] * Use -lc++ link flag when compiling with clang [#270 by Christian Thieme #271 by Anthony Sottile] * Honor strip_extension in SassMiddleware [#274 by Anthony Sottile] * Fix invalid escape sequences [#249 by Anthony Sottile] * Add code of conduct [#251 by Nick Schonning] * Add support for python3.7 and remove testing for python3.4 [#254 by Anthony Sottile] * Add strip_extension option for wsgi / distutils builder [#55 #258 by Anthony Sottile #260 by Morten Brekkevold] * Deprecate sassc (replaced by pysassc). [#262 by Anthony Sottile] * Import abc classes from collections.abc to remove DeprecationWarning [#264 by Gary van der Merwe #265 by Anthony Sottile] * Add ability to specify imports for custom extensions * SassList type gained an additional option bracketed=False to match the upstream changes to the sass_list type. [#184 by Anthony Sottile] * libsass-python has moved to the sass organization! * Sort input files for determinism [#212 by Bernhard M. Wiedemann] * Include LICENSE file in distributions [#216 by Dougal J. Sutherland] * Add a pysassc entry to replace sassc [#218 by Anthony Sottile] * Enable building with dynamic linking [#219 by Marcel Plch] * Always add cwd to import paths [#208 by Anthony Sottile] * Use getfullargspec when available in python 3. [#188 by Thom Wiggers] * Use sass_copy_c_string instead of strdup for portability [#196 by Anthony Sottile] * Use -std=gnu++0x to fix installation under cygwin [#195 #197 by Anthony Sottile] * Correct source map url [#201 #202 by Anthony Sottile] * Remove --watch [#203 by Anthony Sottile] - Remove merged patch reproducible.patch - Do not use bundled libsass OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-libsass?expand=0&rev=8
2019-04-05 11:42:33 +00:00
export SYSTEM_SASS=true
%python_build
%install
- Update to 0.18.0: * Add support for previous import path to importer callbacks [#287 #291 by Frankie Dintino] * Add several new cli options [#279 #268 by Frankie Dintino] * Fix compilation on macos mojave [#276 #277 by @asottile] * Use -lc++ link flag when compiling with clang [#270 by Christian Thieme #271 by Anthony Sottile] * Honor strip_extension in SassMiddleware [#274 by Anthony Sottile] * Fix invalid escape sequences [#249 by Anthony Sottile] * Add code of conduct [#251 by Nick Schonning] * Add support for python3.7 and remove testing for python3.4 [#254 by Anthony Sottile] * Add strip_extension option for wsgi / distutils builder [#55 #258 by Anthony Sottile #260 by Morten Brekkevold] * Deprecate sassc (replaced by pysassc). [#262 by Anthony Sottile] * Import abc classes from collections.abc to remove DeprecationWarning [#264 by Gary van der Merwe #265 by Anthony Sottile] * Add ability to specify imports for custom extensions * SassList type gained an additional option bracketed=False to match the upstream changes to the sass_list type. [#184 by Anthony Sottile] * libsass-python has moved to the sass organization! * Sort input files for determinism [#212 by Bernhard M. Wiedemann] * Include LICENSE file in distributions [#216 by Dougal J. Sutherland] * Add a pysassc entry to replace sassc [#218 by Anthony Sottile] * Enable building with dynamic linking [#219 by Marcel Plch] * Always add cwd to import paths [#208 by Anthony Sottile] * Use getfullargspec when available in python 3. [#188 by Thom Wiggers] * Use sass_copy_c_string instead of strdup for portability [#196 by Anthony Sottile] * Use -std=gnu++0x to fix installation under cygwin [#195 #197 by Anthony Sottile] * Correct source map url [#201 #202 by Anthony Sottile] * Remove --watch [#203 by Anthony Sottile] - Remove merged patch reproducible.patch - Do not use bundled libsass OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-libsass?expand=0&rev=8
2019-04-05 11:42:33 +00:00
export SYSTEM_SASS=true
%python_install
%python_clone -a %{buildroot}%{_bindir}/pysassc
%{python_expand \
# We don't want to install tests
rm %{buildroot}%{$python_sitearch}/sasstests.py \
%{buildroot}%{$python_sitearch}/__pycache__/sasstests.*.pyc
%fdupes %{buildroot}%{$python_sitearch}
}
%check
%pytest_arch sasstests.py
%post
%python_install_alternative pysassc
%postun
%python_uninstall_alternative pysassc
- Update to 0.18.0: * Add support for previous import path to importer callbacks [#287 #291 by Frankie Dintino] * Add several new cli options [#279 #268 by Frankie Dintino] * Fix compilation on macos mojave [#276 #277 by @asottile] * Use -lc++ link flag when compiling with clang [#270 by Christian Thieme #271 by Anthony Sottile] * Honor strip_extension in SassMiddleware [#274 by Anthony Sottile] * Fix invalid escape sequences [#249 by Anthony Sottile] * Add code of conduct [#251 by Nick Schonning] * Add support for python3.7 and remove testing for python3.4 [#254 by Anthony Sottile] * Add strip_extension option for wsgi / distutils builder [#55 #258 by Anthony Sottile #260 by Morten Brekkevold] * Deprecate sassc (replaced by pysassc). [#262 by Anthony Sottile] * Import abc classes from collections.abc to remove DeprecationWarning [#264 by Gary van der Merwe #265 by Anthony Sottile] * Add ability to specify imports for custom extensions * SassList type gained an additional option bracketed=False to match the upstream changes to the sass_list type. [#184 by Anthony Sottile] * libsass-python has moved to the sass organization! * Sort input files for determinism [#212 by Bernhard M. Wiedemann] * Include LICENSE file in distributions [#216 by Dougal J. Sutherland] * Add a pysassc entry to replace sassc [#218 by Anthony Sottile] * Enable building with dynamic linking [#219 by Marcel Plch] * Always add cwd to import paths [#208 by Anthony Sottile] * Use getfullargspec when available in python 3. [#188 by Thom Wiggers] * Use sass_copy_c_string instead of strdup for portability [#196 by Anthony Sottile] * Use -std=gnu++0x to fix installation under cygwin [#195 #197 by Anthony Sottile] * Correct source map url [#201 #202 by Anthony Sottile] * Remove --watch [#203 by Anthony Sottile] - Remove merged patch reproducible.patch - Do not use bundled libsass OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-libsass?expand=0&rev=8
2019-04-05 11:42:33 +00:00
%files %{python_files}
%python_alternative %{_bindir}/pysassc
%{python_sitearch}/pysassc.py
%{python_sitearch}/sass.py
%{python_sitearch}/_sass*.so
%{python_sitearch}/sassutils
%pycache_only %{python_sitearch}/__pycache__/*sass*.pyc
%{python_sitearch}/libsass-%{version}*-info
%changelog