%{?nodejs_find_provides_and_requires} %global packagename urix %global enable_tests 1 Name: nodejs-urix Version: 0.1.0 Release: 4%{?dist} Summary: Makes Windows-style paths more unix and URI friendly License: MIT URL: https://github.com/lydell/urix Source0: https://registry.npmjs.org/%{packagename}/-/%{packagename}-%{version}.tgz ExclusiveArch: %{nodejs_arches} noarch BuildArch: noarch BuildRequires: nodejs-packaging BuildRequires: dos2unix %if 0%{?enable_tests} BuildRequires: mocha %endif Requires: nodejs %description Makes Windows-style paths more unix and URI friendly. %prep %setup -q -n package dos2unix readme.md %build # nothing to do! %install mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename} cp -pr package.json index.js \ %{buildroot}%{nodejs_sitelib}/%{packagename} %nodejs_symlink_deps %check %nodejs_symlink_deps --check %{__nodejs} -e 'require("./")' %if 0%{?enable_tests} /usr/bin/mocha -R spec %else %{_bindir}/echo -e "\e[101m -=#=- Tests disabled -=#=- \e[0m" %endif %files %{!?_licensedir:%global license %doc} %doc *.md %license LICENSE %{nodejs_sitelib}/%{packagename} %changelog * Wed Oct 28 2015 Jared Smith - 0.1.0-4 - Re-enable tests * Sun Oct 25 2015 Jared Smith - 0.1.0-3 - Temporarily disabling tests until we can bootstrap newer npm(jade) * Sun Oct 25 2015 Jared Smith - 0.1.0-2 - Rebuild to fix build requirements * Fri Oct 23 2015 Jared Smith - 0.1.0-1 - Initial packaging