[nodejs-graceful-fs] import from review

T.C. Hollingsworth patches at fedoraproject.org
Thu Jan 10 08:14:14 UTC 2013


commit 62f8ce432c8c4a5c2fd417e64b9369ed55d708eb
Author: T.C. Hollingsworth <tchollingsworth at gmail.com>
Date:   Thu Jan 10 01:13:53 2013 -0700

    import from review

 .gitignore              |    1 +
 nodejs-graceful-fs.spec |   72 +++++++++++++++++++++++++++++++++++++++++++++++
 sources                 |    1 +
 3 files changed, 74 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..6dcd237 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/graceful-fs-1.1.14.tgz
diff --git a/nodejs-graceful-fs.spec b/nodejs-graceful-fs.spec
new file mode 100644
index 0000000..aa4424e
--- /dev/null
+++ b/nodejs-graceful-fs.spec
@@ -0,0 +1,72 @@
+Name:       nodejs-graceful-fs
+Version:    1.1.14
+Release:    2%{?dist}
+Summary:    'fs' module with incremental back-off on EMFILE
+License:    MIT
+Group:      Development/Libraries
+URL:        https://github.com/isaacs/node-graceful-fs
+Source0:    http://registry.npmjs.org/graceful-fs/-/graceful-fs-%{version}.tgz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:  noarch
+
+BuildRequires:  nodejs-devel
+
+%description
+Just like node.js' fs module, but it does an incremental back-off when EMFILE is
+encountered.  Useful in asynchronous situations where one needs to try to open
+lots and lots of files.
+
+%prep
+%setup -q -n package
+
+%build
+#nothing to do
+
+%install
+rm -rf %{buildroot}
+
+mkdir -p %{buildroot}%{nodejs_sitelib}/graceful-fs
+cp -p graceful-fs.js package.json %{buildroot}%{nodejs_sitelib}/graceful-fs
+
+%nodejs_symlink_deps
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%{nodejs_sitelib}/graceful-fs
+%doc README.md LICENSE
+
+%changelog
+* Tue Jan 08 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.1.14-2
+- add missing build section
+
+* Mon Dec 31 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.1.14-1
+- new upstream release 1.1.14
+- clean up for submission
+
+* Fri Apr 27 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.1.8-2
+- guard Requires for F17 automatic depedency generation
+
+* Thu Mar 22 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.1.8-1
+- new upstream release 1.1.8
+
+* Sun Jan 29 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.1.5-1
+- new upstream release 1.1.5
+
+* Sat Jan 21 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.1.4-2
+- missing Group field for EL5
+
+* Sat Jan 21 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.1.4-1
+- new upstream release 1.1.4
+
+* Thu Nov 10 2011 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.2-0.1.20111109git33dee97
+- new upstream release
+- Node v0.6.0 compatibility fixes
+
+* Tue Oct 25 2011 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.1-1
+- new upstream release
+
+* Mon Aug 22 2011 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.0-1
+- initial package
diff --git a/sources b/sources
index e69de29..26bc563 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+fb46c820a063a666be04b2c416d51b29  graceful-fs-1.1.14.tgz


More information about the scm-commits mailing list