# Generated from benry-unixcmd-0.9.0.gem by gem2rpm -*- rpm-spec -*- %global gem_name benry-unixcmd Name: rubygem-%{gem_name} Version: 0.9.0 Release: 1%{?dist} Summary: Unix commands implementation like 'fileutils.rb' License: MIT URL: https://github.com/kwatch/benry-ruby/tree/ruby/benry-unixcmd Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem BuildRequires: ruby(release) BuildRequires: rubygems-devel BuildRequires: ruby # BuildRequires: rubygem(oktest) >= 1 # BuildRequires: rubygem(oktest) < 2 BuildArch: noarch %description Unix commnads implementation, like `fileutils.rb`. Features compared to `fileutils.rb`: * supports file patterns (`*`, `.`, `{}`) directly. * provides `cp :r`, `mv :p`, `rm :rf`, ... instead of `cp_r`, `mv_p`, `rm_rf`, ... * prints command prompt `$ ` before command echoback. * provides `pushd` which is similar to `cd` but supports nested calls naturally. * implements `capture2`, `capture2e`, and `capture3` which calls `Popen3.capture2`, `Popen3.capture2`, and `Popen3.capture3` respectively. * supports `touch -r reffile`. * provides `sys` command which is similar to `sh` in Rake but different in details. * provides `zip` and `unzip` commands (requires `rubyzip` gem). * provides `store` command which copies files recursively into target directory, keeping file path. * provides `atomic_symlink!` command which switches symlink atomically. ``` cp Dir['*.rb'], 'tmpdir' ## fileutils.rb cp '*.rb', 'tmpdir' ## benry-unixcmd ``` Benry-unixcmd provides `cp_p` and `cp_pr` which are equivarent to `cp -p` and `cp -pr` respectively and not provided by `fileutiles.rb`. %package doc Summary: Documentation for %{name} Requires: %{name} = %{version}-%{release} BuildArch: noarch %description doc Documentation for %{name}. %prep %setup -q -n %{gem_name}-%{version} %build # Create the gem as gem install only works on a gem file gem build ../%{gem_name}-%{version}.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 mkdir -p %{buildroot}%{gem_dir} cp -a .%{gem_dir}/* \ %{buildroot}%{gem_dir}/ %check pushd .%{gem_instdir} # Run the test suite. popd %files %dir %{gem_instdir} %{gem_instdir}/CHANGES.md %license %{gem_instdir}/MIT-LICENSE %{gem_instdir}/Rakefile.rb %{gem_libdir} %exclude %{gem_cache} %{gem_spec} %files doc %doc %{gem_docdir} %doc %{gem_instdir}/README.md %{gem_instdir}/benry-unixcmd.gemspec %{gem_instdir}/test %changelog * Mon Apr 18 2022 mockbuilder - 0.9.0-1 - Initial package