# This macro is needed at the start for building on EL6 %{?nodejs_find_provides_and_requires} %global enable_tests 1 %global srcname onetime %global commit a4aa1ce5291cc5f32ecb8f4b0a918b12cb47ea5e Name: nodejs-%{srcname} Version: 1.0.0 Release: 1%{?dist} Summary: Only call a function once License: MIT URL: https://github.com/sindresorhus/%{srcname} Source0: https://github.com/sindresorhus/%{srcname}/archive/%{commit}/%{srcname}-%{commit}.tar.gz BuildArch: noarch ExclusiveArch: %{nodejs_arches} noarch BuildRequires: nodejs-packaging %if 0%{?enable_tests} BuildRequires: mocha %endif %description Only call a function once. Unlike the module `once`, this one isn't naughty extending `Function.prototype`. %prep %setup -q -n %{srcname}-%{commit} rm -rf node_modules/ %build #nothing to do %install mkdir -p %{buildroot}%{nodejs_sitelib}/%{srcname} cp -pr index.js package.json %{buildroot}%{nodejs_sitelib}/%{srcname} %nodejs_symlink_deps %if 0%{?enable_tests} %check %nodejs_symlink_deps --check mocha %endif %files %doc readme.md %license license %{nodejs_sitelib}/%{srcname} %changelog * Wed Dec 31 2014 Piotr Popieluch - 1.0.0-1 - Initial package