[nodejs-once/f18] initial import

T.C. Hollingsworth patches at fedoraproject.org
Thu Jan 17 07:27:35 UTC 2013


commit 5048dd0ef473f428972c3d53ddb6067c65e32011
Author: T.C. Hollingsworth <tchollingsworth at gmail.com>
Date:   Thu Jan 17 00:27:21 2013 -0700

    initial import

 .gitignore       |    1 +
 nodejs-once.spec |   45 +++++++++++++++++++++++++++++++++++++++++++++
 sources          |    1 +
 3 files changed, 47 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..33b21cf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/once-1.1.1.tgz
diff --git a/nodejs-once.spec b/nodejs-once.spec
new file mode 100644
index 0000000..57d81f8
--- /dev/null
+++ b/nodejs-once.spec
@@ -0,0 +1,45 @@
+Name:           nodejs-once
+Version:        1.1.1
+Release:        2%{?dist}
+Summary:        Run a function exactly one time
+BuildArch:      noarch
+
+Group:          System Environment/Libraries
+License:        BSD
+URL:            https://github.com/isaacs/once
+Source0:        http://registry.npmjs.org/once/-/once-%{version}.tgz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires:  nodejs-devel
+
+%description
+Run a function exactly one time.
+
+%prep
+%setup -q -n package
+
+%build
+#nothing to do
+
+%install
+rm -rf %buildroot
+mkdir -p %{buildroot}%{nodejs_sitelib}/once
+cp -pr package.json once.js %{buildroot}%{nodejs_sitelib}/once
+
+%nodejs_symlink_deps
+
+%clean
+rm -rf %buildroot
+
+%files
+%defattr(-,root,root,-)
+%{nodejs_sitelib}/once
+%doc LICENSE README.md
+
+%changelog
+* Tue Jan 08 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.1.1-2
+- add missing build section
+- sentences end with a period
+
+* Mon Dec 31 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.1.1-1
+- initial package generated by npm2rpm
diff --git a/sources b/sources
index e69de29..53f4586 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+a8228f14ad37805f5fde76f8a6d28605  once-1.1.1.tgz


More information about the scm-commits mailing list