diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9310552 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/micromatch-2.3.5.tgz diff --git a/.rh-nodejs4-nodejs-micromatch.metadata b/.rh-nodejs4-nodejs-micromatch.metadata new file mode 100644 index 0000000..3026fea --- /dev/null +++ b/.rh-nodejs4-nodejs-micromatch.metadata @@ -0,0 +1 @@ +d8dfed89e28419d073489be55c33f0b05c273217 SOURCES/micromatch-2.3.5.tgz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/nodejs-micromatch.spec b/SPECS/nodejs-micromatch.spec new file mode 100644 index 0000000..b675d8f --- /dev/null +++ b/SPECS/nodejs-micromatch.spec @@ -0,0 +1,63 @@ +%{?scl:%scl_package nodejs-%{npm_name}} +%{!?scl:%global pkg_name %{name}} + +%{?nodejs_find_provides_and_requires} +%global npm_name micromatch + +Summary: Glob matching for javascript/node.js +Name: %{?scl_prefix}nodejs-%{npm_name} +Version: 2.3.5 +Release: 7%{?dist} +License: MIT +URL: https://github.com/jonschlinkert/micromatch +Source0: http://registry.npmjs.org/%{npm_name}/-/%{npm_name}-%{version}.tgz +BuildRequires: %{?scl_prefix}runtime +BuildRequires: %{?scl_prefix}nodejs-devel +ExclusiveArch: %{nodejs_arches} noarch +BuildArch: noarch +#Provides: %{?scl_prefix}nodejs-%{npm_name} = %{version} + +%description +Glob matching for javascript/node.js. +A drop-in replacement and faster alternative to minimatch and multimatch. +Just use micromatch.isMatch() instead of minimatch(), +or use micromatch() instead of multimatch(). + +%prep +%setup -q -n package + +%nodejs_fixdep lazy-cache +#%nodejs_fixdep optimist +%nodejs_fixdep normalize-path + +chmod 644 index.js LICENSE package.json README.md + +%build + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{npm_name} +cp -pr index.js lib package.json %{buildroot}%{nodejs_sitelib}/%{npm_name} + +%nodejs_symlink_deps + +%files +%{!?_licensedir:%global license %doc} +%doc README.md +%license LICENSE +%{nodejs_sitelib}/%{npm_name} + +%changelog +* Thu Mar 03 2016 Zuzana Svetlikova - 2.3.5-7 +- Remove redundant dependency + +* Wed Feb 24 2016 Zuzana Svetlikova - 2.3.5-6 +- Fix dependency on collection metapackage + +* Thu Jan 07 2016 Tomas Hrcka - 2.3.5-3 +- Enable scl macros + +* Thu Dec 17 2015 Troy Dawson - 2.3.5-2 +- Fix dependencies + +* Wed Dec 16 2015 Troy Dawson - 2.3.5-1 +- Initial package