[nodejs-child-process-close/el6] initial import

T.C. Hollingsworth patches at fedoraproject.org
Mon Jun 3 02:05:29 UTC 2013


commit 6b4c5a12d9d5bb83630950eeadce222eeccffe6e
Author: T.C. Hollingsworth <tchollingsworth at gmail.com>
Date:   Sun Jun 2 19:04:39 2013 -0700

    initial import

 .gitignore                      |    1 +
 nodejs-child-process-close.spec |   50 +++++++++++++++++++++++++++++++++++++++
 sources                         |    1 +
 3 files changed, 52 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..0fdd7f7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/child-process-close-0.1.1.tgz
diff --git a/nodejs-child-process-close.spec b/nodejs-child-process-close.spec
new file mode 100644
index 0000000..ce38b54
--- /dev/null
+++ b/nodejs-child-process-close.spec
@@ -0,0 +1,50 @@
+%{?nodejs_find_provides_and_requires}
+
+Name:           nodejs-child-process-close
+Version:        0.1.1
+Release:        1%{?dist}
+Summary:        Make child_process objects emit 'close' events
+BuildArch:      noarch
+
+Group:          Development/Libraries
+#MIT license included in README file
+License:        MIT
+URL:            https://github.com/piscisaureus/child-process-close
+Source0:        http://registry.npmjs.org/child-process-close/-/child-process-close-%{version}.tgz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires:  nodejs-devel
+
+%description
+This module makes child process objects, (created with spawn, fork, exec or 
+execFile) emit the close event in node v0.6 like they do in node v0.8. This 
+makes it easier to write code that works correctly on both versions of node.
+
+%prep
+%setup -q -n package
+
+%build
+#nothing to do
+
+%install
+rm -rf %buildroot
+
+mkdir -p %{buildroot}%{nodejs_sitelib}/child-process-close
+cp -pr index.js package.json %{buildroot}%{nodejs_sitelib}/child-process-close
+
+%nodejs_symlink_deps
+
+%check
+%{__nodejs} test/test.js
+
+%clean
+rm -rf %buildroot
+
+%files
+%defattr(-,root,root,-)
+%{nodejs_sitelib}/child-process-close
+%doc README.md
+
+%changelog
+* Thu May 30 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 0.1.1-1
+- initial package
diff --git a/sources b/sources
index e69de29..ce61166 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+873271c55c02f4745aa0ef36ac119c44  child-process-close-0.1.1.tgz


More information about the scm-commits mailing list