2020-08-28 15:08:30 +08:00
|
|
|
%global gem_name sass-rails
|
2021-08-06 14:38:27 +08:00
|
|
|
Name: rubygem-%{gem_name}
|
2022-03-03 11:20:03 +08:00
|
|
|
Version: 6.0.0
|
|
|
|
|
Release: 1
|
2021-08-06 14:38:27 +08:00
|
|
|
Summary: Sass adapter for the Rails asset pipeline
|
|
|
|
|
License: MIT
|
|
|
|
|
URL: https://github.com/rails/sass-rails
|
|
|
|
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
|
|
|
|
BuildRequires: ruby(release) rubygems-devel ruby rubygem(bundler) rubygem(rails) rubygem(sass)
|
|
|
|
|
BuildRequires: rubygem(sqlite3) rubygem(tilt)
|
|
|
|
|
BuildArch: noarch
|
2020-08-28 15:08:30 +08:00
|
|
|
%description
|
|
|
|
|
Sass adapter for the Rails asset pipeline.
|
|
|
|
|
|
|
|
|
|
%package doc
|
2021-08-06 14:38:27 +08:00
|
|
|
Summary: Documentation for %{name}
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
BuildArch: noarch
|
2020-08-28 15:08:30 +08:00
|
|
|
%description doc
|
2021-08-06 14:38:27 +08:00
|
|
|
Documentation for %{name}.
|
2020-08-28 15:08:30 +08:00
|
|
|
|
|
|
|
|
%prep
|
2022-03-03 11:20:03 +08:00
|
|
|
%setup -q -n %{gem_name}-%{version}
|
2020-08-28 15:08:30 +08:00
|
|
|
|
|
|
|
|
%build
|
2021-08-06 14:38:27 +08:00
|
|
|
gem build ../%{gem_name}-%{version}.gemspec
|
2020-08-28 15:08:30 +08:00
|
|
|
%gem_install
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
mkdir -p %{buildroot}%{gem_dir}
|
|
|
|
|
cp -a .%{gem_dir}/* \
|
|
|
|
|
%{buildroot}%{gem_dir}/
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
pushd .%{gem_instdir}
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%dir %{gem_instdir}
|
|
|
|
|
%license %{gem_instdir}/MIT-LICENSE
|
|
|
|
|
%{gem_libdir}
|
|
|
|
|
%exclude %{gem_cache}
|
|
|
|
|
%{gem_spec}
|
|
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
|
%doc %{gem_docdir}
|
|
|
|
|
%doc %{gem_instdir}/README.md
|
|
|
|
|
|
|
|
|
|
%changelog
|
2022-06-09 02:22:48 +00:00
|
|
|
* Thu Mar 3 2022 liqiuyu <liqiuyu@kylinos.cn> - 6.0.0-1
|
2022-03-03 11:20:03 +08:00
|
|
|
- update to 6.0.0
|
|
|
|
|
|
2021-08-06 14:38:27 +08:00
|
|
|
* Fri Aug 6 2021 liqiuyu <liqiuyu@kylinos.cn> - 5.0.7-2
|
|
|
|
|
- revert to 5.0.7
|
|
|
|
|
|
2021-06-25 15:19:08 +08:00
|
|
|
* Fri Jun 25 2021 liqiuyu <liqiuyu@kylinos.cn> - 6.0.0-1
|
|
|
|
|
- update to 6.0.0
|
2021-08-06 14:38:27 +08:00
|
|
|
|
2020-08-28 15:08:30 +08:00
|
|
|
* Wed Aug 19 2020 xiezheng <xiezheng4@huawei.com> - 5.0.7-1
|
2021-08-06 14:38:27 +08:00
|
|
|
- package init
|