[nodejs-inherits/f18] initial import

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


commit 9644e6f9f2656783df8e6de0c3b7d9d7d800403d
Author: T.C. Hollingsworth <tchollingsworth at gmail.com>
Date:   Thu Jan 10 01:19:25 2013 -0700

    initial import

 .gitignore           |    1 +
 nodejs-inherits.spec |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++
 sources              |    1 +
 3 files changed, 58 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..b422834 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/inherits-1.0.0.tgz
diff --git a/nodejs-inherits.spec b/nodejs-inherits.spec
new file mode 100644
index 0000000..a026938
--- /dev/null
+++ b/nodejs-inherits.spec
@@ -0,0 +1,56 @@
+Name:       nodejs-inherits
+Version:    1.0.0
+Release:    6%{?dist}
+Summary:    A tiny simple way to do classic inheritance in js
+License:    WTFPL
+Group:      Development/Libraries
+URL:        https://github.com/isaacs/inherits
+Source0:    http://registry.npmjs.org/inherits/-/inherits-%{version}.tgz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:  noarch
+
+BuildRequires:  nodejs-devel
+
+%description
+%{summary}.
+
+%prep
+%setup -q -n package
+
+%build
+#nothing to do
+
+%install
+rm -rf %{buildroot}
+
+mkdir -p %{buildroot}%{nodejs_sitelib}/inherits
+cp -pr inherits.js package.json %{buildroot}%{nodejs_sitelib}/inherits
+
+%nodejs_symlink_deps
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%{nodejs_sitelib}/inherits
+%doc README.md
+
+%changelog
+* Tue Jan 08 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.0-6
+- add missing build section
+
+* Thu Jan 03 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.0-5
+- correct license tag (thanks to Robin Lee)
+
+* Mon Dec 31 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.0-4
+- clean up for submission
+
+* Fri Apr 27 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.0-3
+- guard Requires for F17 automatic depedency generation
+
+* Sat Feb 11 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.0-2
+- switch to automatically generated provides/requires
+
+* Sat Jan 21 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.0-1
+- initial package
diff --git a/sources b/sources
index e69de29..b762988 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+ec96e0e077a0320f598975bae6000316  inherits-1.0.0.tgz


More information about the scm-commits mailing list