Sophie

Sophie

distrib > Fedora > 20 > x86_64 > by-pkgid > 04a70e8d489041874fc690c0533a3cea > files > 2

nodejs-object-assign-2.0.0-2.fc20.src.rpm

%global enable_tests 1
%global module_name object-assign

Name:           nodejs-%{module_name}
Version:        2.0.0
Release:        2%{?dist}
Summary:        ES6 Object.assign() ponyfill

License:        MIT
URL:            https://github.com/sindresorhus/object-assign
Source0:        http://registry.npmjs.org/%{module_name}/-/%{module_name}-%{version}.tgz
Source1:        https://raw.githubusercontent.com/sindresorhus/object-assign/master/license
Source2:        https://raw.githubusercontent.com/sindresorhus/object-assign/master/test.js
BuildArch:      noarch
ExclusiveArch:  %{nodejs_arches} noarch

BuildRequires:  nodejs-packaging

%if 0%{?enable_tests}
BuildRequires:  npm(mocha)
%endif

%description
%{summary}.

%prep
%setup -q -n package
rm -rf node_modules

cp -p %{SOURCE1} %{SOURCE2} .

%build
# nothing to build

%install
mkdir -p %{buildroot}%{nodejs_sitelib}/%{module_name}
cp -pr package.json *.js %{buildroot}%{nodejs_sitelib}/%{module_name}
%nodejs_symlink_deps

%if 0%{?enable_tests}
%check
%nodejs_symlink_deps --check
mocha
%endif

%files
%doc readme.md license
%{nodejs_sitelib}/%{module_name}

%changelog
* Sun Dec 07 2014 Parag Nemade <pnemade AT redhat DOT com> - 2.0.0-2
- Add test.js from upstream and enable tests

* Thu Dec 04 2014 Parag Nemade <pnemade AT redhat DOT com> - 2.0.0-1
- Initial packaging