init
This commit is contained in:
parent
a553768854
commit
9698f73f8e
BIN
3.7.3.tar.gz
Normal file
BIN
3.7.3.tar.gz
Normal file
Binary file not shown.
15
rubygem-sass-3.5.6-use-listen.patch
Normal file
15
rubygem-sass-3.5.6-use-listen.patch
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
diff --git a/lib/sass/plugin/compiler.rb b/lib/sass/plugin/compiler.rb
|
||||||
|
index f3ae6e3d..3979bf30 100644
|
||||||
|
--- a/lib/sass/plugin/compiler.rb
|
||||||
|
+++ b/lib/sass/plugin/compiler.rb
|
||||||
|
@@ -377,8 +377,8 @@ module Sass::Plugin
|
||||||
|
|
||||||
|
# This is mocked out in compiler_test.rb.
|
||||||
|
def create_listener(*args, &block)
|
||||||
|
- require 'sass-listen'
|
||||||
|
- SassListen.to(*args, &block)
|
||||||
|
+ require 'listen'
|
||||||
|
+ Listen.to(*args, &block)
|
||||||
|
end
|
||||||
|
|
||||||
|
def remove_redundant_directories(directories)
|
||||||
82
rubygem-sass.spec
Normal file
82
rubygem-sass.spec
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
%global gem_name sass
|
||||||
|
Name: rubygem-%{gem_name}
|
||||||
|
Version: 3.7.3
|
||||||
|
Release: 1
|
||||||
|
Summary: A powerful but elegant CSS compiler that makes CSS fun again
|
||||||
|
License: MIT
|
||||||
|
URL: http://sass-lang.com/
|
||||||
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
||||||
|
Source1: https://github.com/sass/ruby-sass/archive/%{version}.tar.gz
|
||||||
|
Patch0: rubygem-sass-3.5.6-use-listen.patch
|
||||||
|
BuildRequires: ruby(release) rubygems-devel rubygem(listen) rubygem(minitest)
|
||||||
|
BuildArch: noarch
|
||||||
|
%description
|
||||||
|
Sass makes CSS fun again. Sass is an extension of CSS, adding
|
||||||
|
nested rules, variables, mixins, selector inheritance, and more.
|
||||||
|
It's translated to well-formatted, standard CSS using the
|
||||||
|
command line tool or a web-framework plugin.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Documentation for %{name}
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
BuildArch: noarch
|
||||||
|
%description doc
|
||||||
|
Documentation for %{name}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{gem_name}-%{version}
|
||||||
|
ln -s ruby-sass-%{version}/spec spec
|
||||||
|
ln -s ruby-sass-%{version}/test test
|
||||||
|
%gemspec_remove_dep -g sass-listen -s ../%{gem_name}-%{version}.gemspec
|
||||||
|
%gemspec_add_dep -g listen -s ../%{gem_name}-%{version}.gemspec
|
||||||
|
%patch0 -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
gem build ../%{gem_name}-%{version}.gemspec
|
||||||
|
%gem_install
|
||||||
|
|
||||||
|
%install
|
||||||
|
mkdir -p %{buildroot}%{gem_dir}
|
||||||
|
cp -a .%{gem_dir}/* \
|
||||||
|
%{buildroot}%{gem_dir}/
|
||||||
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
|
cp -a .%{_bindir}/* \
|
||||||
|
%{buildroot}%{_bindir}/
|
||||||
|
find %{buildroot}%{gem_instdir}/bin -type f | xargs chmod a+x
|
||||||
|
find %{buildroot}%{gem_instdir}/bin -type f | \
|
||||||
|
xargs sed -i 's|^#!/usr/bin/env ruby|#!/usr/bin/ruby|'
|
||||||
|
|
||||||
|
%check
|
||||||
|
pushd .%{gem_instdir}
|
||||||
|
tar xaf %{SOURCE1}
|
||||||
|
ruby -e 'Dir.glob "./test/**/*_test.rb", &method(:require)'
|
||||||
|
popd
|
||||||
|
|
||||||
|
%files
|
||||||
|
%dir %{gem_instdir}
|
||||||
|
%{_bindir}/sass
|
||||||
|
%{_bindir}/sass-convert
|
||||||
|
%{_bindir}/scss
|
||||||
|
%exclude %{gem_instdir}/.*
|
||||||
|
%license %{gem_instdir}/MIT-LICENSE
|
||||||
|
%{gem_instdir}/REVISION
|
||||||
|
%{gem_instdir}/VERSION
|
||||||
|
%{gem_instdir}/VERSION_DATE
|
||||||
|
%{gem_instdir}/VERSION_NAME
|
||||||
|
%{gem_instdir}/bin
|
||||||
|
%{gem_instdir}/extra
|
||||||
|
%{gem_instdir}/init.rb
|
||||||
|
%{gem_libdir}
|
||||||
|
%{gem_instdir}/rails
|
||||||
|
%exclude %{gem_cache}
|
||||||
|
%{gem_spec}
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%doc %{gem_docdir}
|
||||||
|
%doc %{gem_instdir}/CODE_OF_CONDUCT.md
|
||||||
|
%doc %{gem_instdir}/CONTRIBUTING.md
|
||||||
|
%doc %{gem_instdir}/README.md
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Aug 19 2020 xiezheng <xiezheng4@huawei.com> - 3.7.3-1
|
||||||
|
- package init
|
||||||
4
rubygem-sass.yaml
Normal file
4
rubygem-sass.yaml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
on_control: github
|
||||||
|
src_repo: sass/ruby-sass
|
||||||
|
tag_prefix: "v"
|
||||||
|
separator: "."
|
||||||
BIN
sass-3.7.3.gem
Normal file
BIN
sass-3.7.3.gem
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user