diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..864c312 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/unc-path-regex-0.1.1.tgz diff --git a/.rh-nodejs4-nodejs-unc-path-regex.metadata b/.rh-nodejs4-nodejs-unc-path-regex.metadata new file mode 100644 index 0000000..a2e70a7 --- /dev/null +++ b/.rh-nodejs4-nodejs-unc-path-regex.metadata @@ -0,0 +1 @@ +d31b790d0c474579441f1fbf954801f626b73fe0 SOURCES/unc-path-regex-0.1.1.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-unc-path-regex.spec b/SPECS/nodejs-unc-path-regex.spec new file mode 100644 index 0000000..d4440f8 --- /dev/null +++ b/SPECS/nodejs-unc-path-regex.spec @@ -0,0 +1,45 @@ +%{?scl:%scl_package nodejs-%{npm_name}} +%{!?scl:%global pkg_name %{name}} +%{?nodejs_find_provides_and_requires} + +%global npm_name unc-path-regex + +Summary: Test if a file path is a windows UNC file path +Name: %{?scl_prefix}nodejs-%{npm_name} +Version: 0.1.1 +Release: 3%{?dist} +License: MIT +URL: https://github.com/jonschlinkert/unc-path-regex +Source0: http://registry.npmjs.org/%{npm_name}/-/%{npm_name}-%{version}.tgz +BuildRequires: nodejs010-runtime +ExclusiveArch: %{nodejs_arches} noarch +BuildArch: noarch +Provides: %{?scl_prefix}nodejs-%{npm_name} = %{version} + +%description +Regular expression for testing if a file path is a +windows UNC file path. Can also be used as a component +of another regexp via the .source property. + +%prep +%setup -q -n package + +%build + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{npm_name} +cp -pr index.js package.json %{buildroot}%{nodejs_sitelib}/%{npm_name} + +%files +%doc README.md LICENSE +%{nodejs_sitelib}/%{npm_name} + +%changelog +* Sun Feb 14 2016 Zuzana Svetlikova - 0.1.1-3 +- rebuilt + +* Tue Dec 01 2015 Tomas Hrcka - 0.1.1-2 +- Enable scl macros + +* Tue Nov 17 2015 Troy Dawson - 0.1.1-1 +- Initial package