[nodejs-glob/f18] really initial import

T.C. Hollingsworth patches at fedoraproject.org
Sun Jan 13 11:29:43 UTC 2013


commit 9e7fc3f8587537fe0b22c36ee5654376c3713234
Author: T.C. Hollingsworth <tchollingsworth at gmail.com>
Date:   Sun Jan 13 04:29:02 2013 -0700

    really initial import

 .gitignore       |    1 +
 nodejs-glob.spec |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources          |    1 +
 3 files changed, 55 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..beef2db 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/glob-3.1.14.tgz
diff --git a/nodejs-glob.spec b/nodejs-glob.spec
new file mode 100644
index 0000000..bc08317
--- /dev/null
+++ b/nodejs-glob.spec
@@ -0,0 +1,53 @@
+Name:       nodejs-glob
+Version:    3.1.14
+Release:    2%{?dist}
+Summary:    A little globber for Node.js
+License:    BSD
+Group:      System Environment/Libraries
+URL:        https://github.com/isaacs/node-glob
+Source0:    http://registry.npmjs.org/glob/-/glob-%{version}.tgz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:  noarch
+
+BuildRequires:  nodejs-devel
+
+%description
+This is a glob implementation in pure JavaScript. It uses the minimatch library
+to do its matching.
+
+%prep
+%setup -q -n package
+
+%build
+#nothing to do
+
+%install
+rm -rf %{buildroot}
+
+mkdir -p %{buildroot}%{nodejs_sitelib}/glob
+cp -pr glob.js package.json %{buildroot}%{nodejs_sitelib}/glob
+
+%nodejs_symlink_deps
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%{nodejs_sitelib}/glob
+%doc LICENSE README.md examples
+
+%changelog
+* Tue Jan 08 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 3.1.14-2
+- add missing build section
+- adjust summary/description slightly
+
+* Mon Dec 31 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 3.1.14-1
+- new upstream release 3.1.14
+- clean up for submission
+
+* Thu Mar 22 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 3.1.9-1
+- new upstream release 3.1.9
+
+* Fri Mar 16 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 3.1.6-1
+- initial package
diff --git a/sources b/sources
index e69de29..e927a2f 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+d40f26bb046ff8228d76e8645ab87dfa  glob-3.1.14.tgz


More information about the scm-commits mailing list