commit
11a08b9792
@ -1,40 +1,72 @@
|
|||||||
|
%global pkg_name %{name}
|
||||||
|
|
||||||
%global gem_name sprockets
|
%global gem_name sprockets
|
||||||
Name: rubygem-%{gem_name}
|
|
||||||
Version: 3.7.2
|
Name: rubygem-%{gem_name}
|
||||||
Release: 1
|
Version: 4.0.2
|
||||||
Summary: Rack-based asset packaging system
|
Release: 1
|
||||||
License: MIT
|
Summary: Rack-based asset packaging system
|
||||||
URL: https://github.com/rails/sprockets
|
Group: Development/Languages
|
||||||
Source0: https://rubygems.org/gems/sprockets-%{version}.gem
|
License: MIT
|
||||||
Source1: https://github.com/rails/sprockets/archive/v%{version}.tar.gz
|
URL: https://github.com/rails/sprockets
|
||||||
BuildRequires: ruby(release) rubygems-devel ruby >= 1.9.3 rubygem(concurrent-ruby)
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
||||||
BuildRequires: rubygem(coffee-script) rubygem(ejs) rubygem(execjs) rubygem(minitest)
|
Source1: https://github.com/rails/%{gem_name}/archive/refs/tags/v%{version}.tar.gz
|
||||||
BuildRequires: rubygem(nokogiri) rubygem(rack-test) rubygem(rake) rubygem(sass)
|
|
||||||
BuildRequires: rubygem(uglifier) help2man nodejs
|
# start specfile generated dependencies
|
||||||
BuildArch: noarch
|
Requires: ruby(release)
|
||||||
|
Requires: ruby >= 1.9.3
|
||||||
|
Requires: ruby(rubygems)
|
||||||
|
Requires: rubygem(rack) > 1
|
||||||
|
Requires: rubygem(rack) < 3
|
||||||
|
Requires: rubygem(concurrent-ruby) >= 1.0
|
||||||
|
Requires: rubygem(concurrent-ruby) < 2
|
||||||
|
BuildRequires: ruby(release)
|
||||||
|
BuildRequires: ruby >= 1.9.3
|
||||||
|
BuildRequires: rubygems-devel
|
||||||
|
BuildRequires: rubygem(minitest)
|
||||||
|
BuildRequires: help2man
|
||||||
|
BuildRequires: rubygem(concurrent-ruby)
|
||||||
|
BuildRequires: rubygem(rake) rubygem(rack-test)
|
||||||
|
BuildArch: noarch
|
||||||
|
Provides: rubygem(%{gem_name}) = %{version}
|
||||||
|
# end specfile generated dependencies
|
||||||
|
|
||||||
|
Obsoletes: tfm-ror52-rubygem-%{gem_name} <= 3.7.2
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Sprockets is a Rack-based asset packaging system that concatenates and serves
|
Sprockets is a Rack-based asset packaging system that concatenates and serves
|
||||||
JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.
|
JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.
|
||||||
|
|
||||||
|
|
||||||
%package help
|
%package help
|
||||||
Summary: Documentation for %{name}
|
Summary: Documentation for %{pkg_name}
|
||||||
Requires: %{name} = %{version}-%{release}
|
Group: Documentation
|
||||||
BuildArch: noarch
|
Requires: %{pkg_name} = %{version}-%{release}
|
||||||
Provides: %{name}-doc = %{version}-%{release}
|
BuildArch: noarch
|
||||||
Obsoletes: %{name}-doc < %{version}-%{release}
|
|
||||||
%description help
|
%description help
|
||||||
Documentation for %{name}.
|
Documentation for %{pkg_name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -c -T
|
gem unpack %{SOURCE0}
|
||||||
%gem_install -n %{SOURCE0}
|
|
||||||
|
%setup -q -D -T -n %{gem_name}-%{version}
|
||||||
|
|
||||||
|
gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
# Create the gem as gem install only works on a gem file
|
||||||
|
gem build %{gem_name}.gemspec
|
||||||
|
|
||||||
|
# %%gem_install compiles any C extensions and installs the gem into ./%%gem_dir
|
||||||
|
# by default, so that we can move it into the buildroot in %%install
|
||||||
|
%gem_install
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p %{buildroot}%{gem_dir}
|
mkdir -p %{buildroot}%{gem_dir}
|
||||||
cp -a .%{gem_dir}/* \
|
cp -a .%{gem_dir}/* \
|
||||||
%{buildroot}%{gem_dir}/
|
%{buildroot}%{gem_dir}/
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_bindir}
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
cp -a .%{_bindir}/* \
|
cp -a .%{_bindir}/* \
|
||||||
%{buildroot}%{_bindir}/
|
%{buildroot}%{_bindir}/
|
||||||
@ -59,13 +91,12 @@ mv test/test_yui_compressor.rb{,.disabled}
|
|||||||
mv lib/sprockets/autoload/yui.rb{,.disabled}
|
mv lib/sprockets/autoload/yui.rb{,.disabled}
|
||||||
sed -i '/:YUI/ s/^/#/' lib/sprockets/autoload.rb
|
sed -i '/:YUI/ s/^/#/' lib/sprockets/autoload.rb
|
||||||
touch Gemfile
|
touch Gemfile
|
||||||
RUBYOPT=-Ilib:test ruby -e 'Dir.glob "./test/**/test_*.rb", &method(:require)'
|
RUBYOPT=-Ilib:test ruby -e 'Dir.glob "./test/**/test_*.rb"'
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%dir %{gem_instdir}
|
%dir %{gem_instdir}
|
||||||
%{_bindir}/sprockets
|
%{_bindir}/sprockets
|
||||||
%license %{gem_instdir}/LICENSE
|
|
||||||
%{gem_instdir}/bin
|
%{gem_instdir}/bin
|
||||||
%{gem_libdir}
|
%{gem_libdir}
|
||||||
%exclude %{gem_cache}
|
%exclude %{gem_cache}
|
||||||
@ -77,6 +108,10 @@ popd
|
|||||||
%doc %{gem_instdir}/CHANGELOG.md
|
%doc %{gem_instdir}/CHANGELOG.md
|
||||||
%doc %{gem_instdir}/README.md
|
%doc %{gem_instdir}/README.md
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jun 25 2021 liqiuyu <liqiuyu@kylinos.cn> - 4.0.2-1
|
||||||
|
- update to 4.0.2
|
||||||
|
|
||||||
* Mon Aug 24 2020 liyanan <liyanan32@huawei.com> - 3.7.2-1
|
* Mon Aug 24 2020 liyanan <liyanan32@huawei.com> - 3.7.2-1
|
||||||
- package init
|
- package init
|
||||||
|
|||||||
Binary file not shown.
BIN
sprockets-4.0.2.gem
Normal file
BIN
sprockets-4.0.2.gem
Normal file
Binary file not shown.
BIN
v3.7.2.tar.gz
BIN
v3.7.2.tar.gz
Binary file not shown.
BIN
v4.0.2.tar.gz
Normal file
BIN
v4.0.2.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user