]> git.pld-linux.org Git - packages/ruby-slop.git/commitdiff
new, version 3.4.3
authorElan Ruusamäe <glen@delfi.ee>
Wed, 25 Sep 2013 17:48:28 +0000 (20:48 +0300)
committerElan Ruusamäe <glen@delfi.ee>
Wed, 25 Sep 2013 17:49:15 +0000 (20:49 +0300)
created with gem2rpm

ruby-slop.spec [new file with mode: 0644]

diff --git a/ruby-slop.spec b/ruby-slop.spec
new file mode 100644 (file)
index 0000000..b4c355e
--- /dev/null
@@ -0,0 +1,58 @@
+#
+# Conditional build:
+%bcond_with    tests           # build without tests
+
+%define        pkgname slop
+Summary:       Option gathering made easy
+Name:          ruby-%{pkgname}
+Version:       3.4.3
+Release:       1
+License:       GPL v2+ or Ruby
+Group:         Development/Languages
+Source0:       http://rubygems.org/downloads/%{pkgname}-%{version}.gem
+# Source0-md5: -
+URL:           http://github.com/injekt/slop
+BuildRequires: rpm-rubyprov
+BuildRequires: rpmbuild(macros) >= 1.656
+BuildRequires: sed >= 4.0
+%if %{with tests}
+BuildRequires: ruby-minitest
+BuildRequires: ruby-rake
+%endif
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A simple DSL for gathering options and parsing the command line.
+
+%package doc
+Summary:       Documentation for %{name}
+Group:         Documentation
+Requires:      %{name} = %{version}-%{release}
+
+%description doc
+Documentation for %{name}.
+
+%prep
+%setup -q -n %{pkgname}-%{version}
+
+%build
+%if %{with tests}
+# if running via testrb, modify the check for invoked testing binary
+sed -i 's|Usage: rake_test_loader \[options\]|Usage: testrb: SlopTest#test_printing_help_with__help____true [options]|' test/slop_test.rb
+testrb test/*_test.rb
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{ruby_vendorlibdir}
+cp -a lib/* $RPM_BUILD_ROOT%{ruby_vendorlibdir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README.md CHANGES.md LICENSE
+%{ruby_vendorlibdir}/slop.rb
+%{ruby_vendorlibdir}/slop
This page took 0.073083 seconds and 4 git commands to generate.