[nodejs-read/f18] initial import

T.C. Hollingsworth patches at fedoraproject.org
Sun Jan 13 11:08:33 UTC 2013


commit 304a11f77d4ce534e6e531c8677e591eac436afe
Author: T.C. Hollingsworth <tchollingsworth at gmail.com>
Date:   Sun Jan 13 04:07:13 2013 -0700

    initial import

 .gitignore       |    1 +
 nodejs-read.spec |   59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources          |    1 +
 3 files changed, 61 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..3087337 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/read-1.0.4.tgz
diff --git a/nodejs-read.spec b/nodejs-read.spec
new file mode 100644
index 0000000..10d9407
--- /dev/null
+++ b/nodejs-read.spec
@@ -0,0 +1,59 @@
+Name:       nodejs-read
+Version:    1.0.4
+Release:    4%{dist}
+Summary:    An implementation of read(1) for node programs
+License:    BSD
+Group:      Development/Libraries
+URL:        https://github.com/isaacs/read
+Source0:    http://registry.npmjs.org/read/-/read-%{version}.tgz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:  noarch
+
+BuildRequires:  nodejs-devel
+
+%description
+A method for reading user input from stdin in node.js.  Similar to readline's
+"question()" method, but with a few more features.
+
+%prep
+%setup -q -n package
+
+%build
+#nothing to do
+
+%install
+rm -rf %{buildroot}
+
+mkdir -p %{buildroot}%{nodejs_sitelib}/read
+cp -pr lib package.json %{buildroot}%{nodejs_sitelib}/read
+
+%nodejs_symlink_deps
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%{nodejs_sitelib}/read
+%doc LICENCE README.md example
+
+%changelog
+* Thu Jan 10 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.4-4
+- add missing build section
+
+* Mon Jan 07 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.4-2
+- fix description
+- add no-op build section
+
+* Mon Dec 31 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1.0.4-1
+- new upstream release 1.0.4
+- clean up for submission
+
+* Fri Apr 27 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 0.0.2-2
+- guard Requires for F17 automatic depedency generation
+
+* Mon Apr 02 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 0.0.2-1
+- New upstream release 0.0.2
+
+* Sat Jan 21 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 0.0.1-1
+- initial package
diff --git a/sources b/sources
index e69de29..8c51a35 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+b88c8ee1c1785e89461733a020e0c07a  read-1.0.4.tgz


More information about the scm-commits mailing list