[nodejs-rimraf/f18] initial import

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


commit 156023040529b50920a139113224a71d0507c220
Author: T.C. Hollingsworth <tchollingsworth at gmail.com>
Date:   Thu Jan 10 01:23:14 2013 -0700

    initial import

 .gitignore         |    1 +
 nodejs-rimraf.spec |   61 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources            |    1 +
 3 files changed, 63 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..f5515f5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/rimraf-2.1.1.tgz
diff --git a/nodejs-rimraf.spec b/nodejs-rimraf.spec
new file mode 100644
index 0000000..7d8f72e
--- /dev/null
+++ b/nodejs-rimraf.spec
@@ -0,0 +1,61 @@
+Name:       nodejs-rimraf
+Version:    2.1.1
+Release:    2%{?dist}
+Summary:    A deep deletion module for node.js
+License:    MIT
+Group:      System Environment/Libraries
+URL:        https://github.com/isaacs/rimraf
+Source0:    http://registry.npmjs.org/rimraf/-/rimraf-%{version}.tgz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:  noarch
+
+BuildRequires:  nodejs-devel
+
+%description
+%summary (like `rm -rf`).
+
+%prep
+%setup -q -n package
+
+%build
+#nothing to do
+
+%install
+rm -rf %{buildroot}
+
+mkdir -p %{buildroot}%{nodejs_sitelib}/rimraf
+cp -pr rimraf.js package.json %{buildroot}%{nodejs_sitelib}/rimraf
+
+%nodejs_symlink_deps
+
+%check
+cd test
+bash run.sh
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%{nodejs_sitelib}/rimraf
+%doc AUTHORS LICENSE README.md
+
+%changelog
+* Tue Jan 08 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 2.1.1-2
+- add missing build section
+
+* Mon Dec 31 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 2.1.1-1
+- new upstream release 2.1.1
+- clean up for submission
+
+* Fri Apr 27 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 2.0.1-2
+- guard Requires for F17 automatic depedency generation
+
+* Thu Feb 09 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 2.0.1-1
+- new upstream release 2.0.1
+
+* Tue Oct 25 2011 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.9-1
+- new upstream release
+
+* Tue Aug 23 2011 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.3-1
+- initial package
diff --git a/sources b/sources
index e69de29..e1eca34 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+1819d3facb8df2e99d28033e4383f579  rimraf-2.1.1.tgz


More information about the scm-commits mailing list