diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..94ed9c4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/is-builtin-module-1.0.0.tgz diff --git a/.nodejs010-nodejs-is-builtin-module.metadata b/.nodejs010-nodejs-is-builtin-module.metadata new file mode 100644 index 0000000..c701ff9 --- /dev/null +++ b/.nodejs010-nodejs-is-builtin-module.metadata @@ -0,0 +1 @@ +540572d34f7ac3119f8f76c30cbc1b1e037affbe SOURCES/is-builtin-module-1.0.0.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-is-builtin-module.spec b/SPECS/nodejs-is-builtin-module.spec new file mode 100644 index 0000000..3a61723 --- /dev/null +++ b/SPECS/nodejs-is-builtin-module.spec @@ -0,0 +1,70 @@ +%{?scl:%scl_package nodejs-is-builtin-module} +%{!?scl:%global pkg_name %{name}} + +# spec file for package nodejs-nodejs-is-builtin-module + +%global npm_name is-builtin-module +%{?nodejs_find_provides_and_requires} + +%global enable_tests 0 + +Name: %{?scl_prefix}nodejs-is-builtin-module +Version: 1.0.0 +Release: 1%{?dist} +Summary: Check if a string matches the name of a Node.js builtin module +Url: https://github.com/sindresorhus/is-builtin-module +Source0: https://registry.npmjs.org/%{npm_name}/-/%{npm_name}-%{version}.tgz +License: MIT + +BuildArch: noarch + +%if 0%{?fedora} >= 19 +ExclusiveArch: %{nodejs_arches} noarch +%else +ExclusiveArch: %{ix86} x86_64 %{arm} noarch +%endif + +BuildRequires: %{?scl_prefix}nodejs-devel +BuildRequires: nodejs010-runtime + +%if 0%{?enable_tests} +BuildRequires: %{?scl_prefix}npm(ava) +%endif + +BuildRequires: %{?scl_prefix}npm(builtin-modules) + +Requires: %{?scl_prefix}npm(builtin-modules) + +%description +Check if a string matches the name of a Node.js builtin module + +%prep +%setup -q -n package + +rm -rf node_modules + +%build + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{npm_name} + +cp -pr package.json *.js \ +%{buildroot}%{nodejs_sitelib}/%{npm_name} + +%{nodejs_symlink_deps} + +%if 0%{?enable_tests} + +%check +%{nodejs_symlink_deps} --check + +%endif + +%files +%{nodejs_sitelib}/is-builtin-module + +%doc readme.md license + +%changelog +* Tue Dec 01 2015 Tomas Hrcka - 1.0.0-1 +- Initial build