forked from pool/python-rcssmin
New dependency for python-django_compress 2.0 OBS-URL: https://build.opensuse.org/request/show/406818 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rcssmin?expand=0&rev=1
61 lines
2.0 KiB
RPMSpec
61 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package python-rcssmin
|
|
#
|
|
# Copyright (c) 2016 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: python-rcssmin
|
|
Version: 1.0.6
|
|
Release: 0
|
|
Summary: RCSSmin is a CSS minifier written in python
|
|
License: Apache-2.0
|
|
Group: Development/Languages/Python
|
|
Url: http://opensource.perlig.de/rcssmin/
|
|
Source: https://pypi.io/packages/source/r/rcssmin/rcssmin-%{version}.tar.gz
|
|
BuildRequires: python-devel
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%py_requires
|
|
|
|
%description
|
|
rCSSmin is a CSS minifier written in python.
|
|
|
|
The minifier is based on the semantics of the YUI compressor, which
|
|
itself is based on the rule list by Isaac Schlueter.
|
|
|
|
This module is a re-implementation aiming for speed instead of maximum
|
|
compression, so it can be used at runtime (rather than during a
|
|
preprocessing step). rCSSmin does syntactical compression only
|
|
(removing spaces, comments and possibly semicolons). It does not
|
|
provide semantic compression (like removing empty blocks, collapsing
|
|
redundant properties etc). It does, however, support various CSS hacks
|
|
(by keeping them working as intended).
|
|
|
|
%prep
|
|
%setup -q -n rcssmin-%{version}
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE README.rst
|
|
%{_datadir}/doc/rcssmin
|
|
%{python_sitearch}/*
|
|
|
|
%changelog
|