# test dependency not yet in Fedora %global enable_tests 0 %global srcname formatio Name: nodejs-%{srcname} Version: 1.1.2 Release: 1%{?dist} Summary: Human-readable object formatting License: BSD URL: https://github.com/busterjs/formatio Source0: https://registry.npmjs.org/%{srcname}/-/%{srcname}-%{version}.tgz BuildArch: noarch ExclusiveArch: %{nodejs_arches} noarch BuildRequires: nodejs-packaging %if 0%{?enable_tests} BuildRequires: npm(buster) %endif %description Pretty formatting of arbitrary JavaScript values. Currently only supports ascii formatting, suitable for command-line utilities. Like JSON.stringify, it formats objects recursively, but unlike JSON.stringify, it can handle regular expressions, functions, circular objects and more. formatio is a general-purpose library. It works in browsers (including old and rowdy ones, like IE6) and Node. It will define itself as an AMD module if you want it to (i.e. if there's a define function available). %prep %setup -q -n package %build #nothing to do %install mkdir -p %{buildroot}%{nodejs_sitelib}/%{srcname} cp -pr package.json lib/ \ %{buildroot}%{nodejs_sitelib}/%{srcname} %nodejs_symlink_deps %if 0%{?enable_tests} %check %nodejs_symlink_deps --check %{__nodejs} node_modules/buster/bin/buster-test --node %endif %files %doc AUTHORS Readme.md %license LICENSE %{nodejs_sitelib}/%{srcname} %changelog * Fri Jan 02 2015 Piotr Popieluch - 1.1.2-1 - updated to latest upstream * Tue Nov 18 2014 Piotr Popieluch - 1.1.1-1 - Initial package