[nodejs-deep-equal/f18] initial import

T.C. Hollingsworth patches at fedoraproject.org
Wed Feb 13 01:41:37 UTC 2013


commit 96aa9bb5d868d1dd96446a32c26a4c9cafa0b9b3
Author: T.C. Hollingsworth <tchollingsworth at gmail.com>
Date:   Tue Feb 12 18:41:22 2013 -0700

    initial import

 .gitignore             |    1 +
 nodejs-deep-equal.spec |   51 ++++++++++++++++++++++++++++++++++++++++++++++++
 sources                |    1 +
 3 files changed, 53 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..91b6caa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/deep-equal-0.0.0.tgz
diff --git a/nodejs-deep-equal.spec b/nodejs-deep-equal.spec
new file mode 100644
index 0000000..32d4feb
--- /dev/null
+++ b/nodejs-deep-equal.spec
@@ -0,0 +1,51 @@
+Name:           nodejs-deep-equal
+Version:        0.0.0
+Release:        2%{?dist}
+Summary:        Node's assert.deepEqual algorithm
+BuildArch:      noarch
+
+Group:          System Environment/Libraries
+#no license file included; "MIT/X11" indicated in package.json
+License:        MIT
+URL:            https://github.com/substack/node-deep-equal
+Source0:        http://registry.npmjs.org/deep-equal/-/deep-equal-%{version}.tgz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires:  nodejs-devel
+#BuildRequires:  npm(tap)
+
+%description
+Node's `assert.deepEqual()` algorithm implemented as a standalone module.
+
+%prep
+%setup -q -n package
+
+%build
+#nothing to do
+
+%install
+rm -rf %buildroot
+
+mkdir -p %{buildroot}%{nodejs_sitelib}/deep-equal
+cp -pr package.json index.js %{buildroot}%{nodejs_sitelib}/deep-equal
+
+%nodejs_symlink_deps
+
+#recursive deps are recursive
+#%%check
+#%%tap test/*.js
+
+%clean
+rm -rf %buildroot
+
+%files
+%defattr(-,root,root,-)
+%{nodejs_sitelib}/deep-equal
+%doc README.markdown example
+
+%changelog
+* Thu Jan 17 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 0.0.0-2
+- comment out BuildRequires on npm(tap)
+
+* Tue Jan 08 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 0.0.0-1
+- initial package generated by npm2rpm
diff --git a/sources b/sources
index e69de29..980acf6 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+bae45b18291b1c3b318471a11e93589c  deep-equal-0.0.0.tgz


More information about the scm-commits mailing list