From 412d554b9b0372465dbce56d1735ae5c2dd7cdb6 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Nov 16 2015 14:07:35 +0000 Subject: import nodejs010-nodejs-isarray-0.0.1-3.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0f21754 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/isarray-0.0.1.tgz diff --git a/.nodejs010-nodejs-isarray.metadata b/.nodejs010-nodejs-isarray.metadata new file mode 100644 index 0000000..d699237 --- /dev/null +++ b/.nodejs010-nodejs-isarray.metadata @@ -0,0 +1 @@ +8a18acfca9a8f4177e09abfc6038939b05d1eedf SOURCES/isarray-0.0.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-isarray.spec b/SPECS/nodejs-isarray.spec new file mode 100644 index 0000000..1dfa39a --- /dev/null +++ b/SPECS/nodejs-isarray.spec @@ -0,0 +1,61 @@ +# spec file for package nodejs-nodejs-isarray +%{?scl:%scl_package nodejs-nodejs-isarray} +%{!?scl:%global pkg_name %{name}} + +%global npm_name isarray +%{?nodejs_find_provides_and_requires} + +%global enable_tests 0 + +Name: %{?scl_prefix}nodejs-isarray +Version: 0.0.1 +Release: 3%{?dist} +Summary: Array#isArray for older browsers +Url: https://github.com/juliangruber/isarray +Source0: https://registry.npmjs.org/%{npm_name}/-/%{npm_name}-%{version}.tgz +License: MIT +# License text is included in README.md file +BuildArch: noarch +ExclusiveArch: %{ix86} x86_64 %{arm}} noarch + +BuildRequires: %{?scl_prefix}nodejs-devel +#BuildRequires: nodejs-packaging + +%if 0%{?enable_tests} +BuildRequires: npm(tap) +%endif + +%description +Array#isArray for older browsers + +%prep +%setup -q -n package + +%build +#nothing to do + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{npm_name} + +cp -pr build/ component.json package.json *.js \ + %{buildroot}%{nodejs_sitelib}/%{npm_name} + +%{nodejs_symlink_deps} + +%if 0%{?enable_tests} +%check +%{nodejs_symlink_deps} --check +tap test/*.js +%endif + +%files +%{nodejs_sitelib}/isarray + +%doc README.md + +%changelog +* Tue Sep 22 2015 Zuzana Svetlikova - 0.0.1-3 +- Add build/ to %%install + +* Thu Aug 13 2015 Zuzana Svetlikova - 0.0.1-2 +- Initial build