[nodejs-retry/f18] initial import

T.C. Hollingsworth patches at fedoraproject.org
Sun Jan 13 11:41:15 UTC 2013


commit dde88fe293ea8a510b157f8e5a65746facf10931
Author: T.C. Hollingsworth <tchollingsworth at gmail.com>
Date:   Sun Jan 13 04:40:11 2013 -0700

    initial import

 .gitignore        |    1 +
 nodejs-retry.spec |   45 +++++++++++++++++++++++++++++++++++++++++++++
 sources           |    1 +
 3 files changed, 47 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..92feacc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/retry-0.6.0.tgz
diff --git a/nodejs-retry.spec b/nodejs-retry.spec
new file mode 100644
index 0000000..cb81590
--- /dev/null
+++ b/nodejs-retry.spec
@@ -0,0 +1,45 @@
+Name:           nodejs-retry
+Version:        0.6.0
+Release:        2%{?dist}
+Summary:        Retry strategies for failed operations
+BuildArch:      noarch
+
+Group:          System Environment/Libraries
+License:        MIT
+URL:            https://github.com/felixge/node-retry
+Source0:        http://registry.npmjs.org/retry/-/retry-%{version}.tgz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires:  nodejs-devel
+
+%description
+Abstraction for exponential and custom retry strategies for failed operations.
+
+%prep
+%setup -q -n package
+
+%build
+#nothing to do
+
+%install
+rm -rf %buildroot
+mkdir -p %{buildroot}%{nodejs_sitelib}/retry
+cp -pr package.json index.js lib %{buildroot}%{nodejs_sitelib}/retry
+
+%nodejs_symlink_deps
+
+%clean
+rm -rf %buildroot
+
+%files
+%defattr(-,root,root,-)
+%{nodejs_sitelib}/retry
+%doc License Readme.md equation.gif example
+
+%changelog
+* Tue Jan 08 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 0.6.0-2
+- add missing build section
+- fix License tag
+
+* Mon Dec 31 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 0.6.0-1
+- initial package generated by npm2rpm
diff --git a/sources b/sources
index e69de29..2313160 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+1f8567a864418f39263a4f6f81eac30e  retry-0.6.0.tgz


More information about the scm-commits mailing list