summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-10 14:12:33 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-10 14:12:33 +0000
commitb022d24c95d79d329cc38edfd60c229fcb5c8f70 (patch)
treeca1e56f67d0bf24cf6e9836db8e385a18ff548e2
parentf4d381673d0e6ab3823d8dc6a2c6cbd4679ccedd (diff)
automatic import of rubygem-guardopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--rubygem-guard.spec83
-rw-r--r--sources1
3 files changed, 85 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..d914d36 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/guard-2.18.0.gem
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 <Ruby_Bot@openeuler.org>
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..0c756bb
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+20e9de866b5c499a7857da688ef3e431 guard-2.18.0.gem