From b022d24c95d79d329cc38edfd60c229fcb5c8f70 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Fri, 10 Mar 2023 14:12:33 +0000 Subject: automatic import of rubygem-guard --- rubygem-guard.spec | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 rubygem-guard.spec (limited to 'rubygem-guard.spec') diff --git a/rubygem-guard.spec b/rubygem-guard.spec new file mode 100644 index 0000000..4e2f08d --- /dev/null +++ b/rubygem-guard.spec @@ -0,0 +1,83 @@ +%global _empty_manifest_terminate_build 0 +%global gem_name guard +Name: rubygem-guard +Version: 2.18.0 +Release: 1 +Summary: Guard keeps an eye on your file modifications +License: MIT +URL: http://guardgem.org +Source0: https://rubygems.org/gems/guard-2.18.0.gem +BuildArch: noarch + +Requires: rubygem-formatador +Requires: rubygem-listen +Requires: rubygem-lumberjack +Requires: rubygem-nenv +Requires: rubygem-notiffany +Requires: rubygem-pry +Requires: rubygem-shellany +Requires: rubygem-thor +BuildRequires: ruby +BuildRequires: ruby-devel +BuildRequires: rubygems +BuildRequires: rubygems-devel +BuildRequires: rsync +Provides: rubygem-guard + +%description +Guard is a command line tool to easily handle events on file system modifications. + +%package help +Summary: Development documents and examples for guard +Provides: rubygem-guard-doc +BuildArch: noarch + +%description help +Guard is a command line tool to easily handle events on file system modifications. + +%prep +%autosetup -n guard-2.18.0 +gem spec %{SOURCE0} -l --ruby > guard.gemspec + +%build +gem build guard.gemspec +%gem_install + +%install +mkdir -p %{buildroot}%{gem_dir} +cp -a .%{gem_dir}/* %{buildroot}%{gem_dir}/ +rsync -a --exclude=".*" .%{gem_dir}/* %{buildroot}%{gem_dir}/ +if [ -d .%{_bindir} ]; then + mkdir -p %{buildroot}%{_bindir} + cp -a .%{_bindir}/* %{buildroot}%{_bindir}/ +fi +if [ -d ext ]; then + mkdir -p %{buildroot}%{gem_extdir_mri}/%{gem_name} + if [ -d .%{gem_extdir_mri}/%{gem_name} ]; then + cp -a .%{gem_extdir_mri}/%{gem_name}/*.so %{buildroot}%{gem_extdir_mri}/%{gem_name} + else + cp -a .%{gem_extdir_mri}/*.so %{buildroot}%{gem_extdir_mri}/%{gem_name} +fi + cp -a .%{gem_extdir_mri}/gem.build_complete %{buildroot}%{gem_extdir_mri}/ + rm -rf %{buildroot}%{gem_instdir}/ext/ +fi +pushd %{buildroot} +touch filelist.lst +if [ -d %{buildroot}%{_bindir} ]; then + find .%{_bindir} -type f -printf "/%h/%f\n" >> filelist.lst +fi +popd +mv %{buildroot}/filelist.lst . + +%files -n rubygem-guard -f filelist.lst +%dir %{gem_instdir} +%{gem_instdir}/* +%exclude %{gem_cache} +%{gem_spec} + +%files help +%{gem_docdir}/* + +%changelog +* Fri Mar 10 2023 Ruby_Bot +- Package Spec generated -- cgit v1.2.3