Blame SPECS/nodejs-prepend-http.spec

28d6bb
%{?scl:%scl_package nodejs-%{module_name}}
28d6bb
%{!?scl:%global pkg_name %{name}}
28d6bb
%{?nodejs_find_provides_and_requires}
28d6bb
28d6bb
# ava module not in fedora yet
28d6bb
%global enable_tests 0
28d6bb
%global module_name prepend-http
28d6bb
28d6bb
Name:           %{?scl_prefix}nodejs-%{module_name}
28d6bb
Version:        1.0.1
28d6bb
Release:        5%{?dist}
28d6bb
Summary:        Prepend http:// to humanized URLs like todomvc.com and localhost
28d6bb
28d6bb
License:        MIT
28d6bb
URL:            https://github.com/sindresorhus/prepend-http
28d6bb
Source0:        https://github.com/sindresorhus/prepend-http/archive/v%{version}.tar.gz
28d6bb
BuildArch:      noarch
28d6bb
ExclusiveArch:  %{nodejs_arches} noarch
28d6bb
28d6bb
BuildRequires:  nodejs010-runtime
28d6bb
28d6bb
%if 0%{?enable_tests}
28d6bb
BuildRequires:  %{?scl_prefix}npm(ava)
28d6bb
%endif
28d6bb
28d6bb
%description
28d6bb
%{summary}.
28d6bb
28d6bb
%prep
28d6bb
%setup -q -n %{module_name}-%{version}
28d6bb
rm -rf node_modules
28d6bb
28d6bb
%build
28d6bb
# nothing to build
28d6bb
28d6bb
%install
28d6bb
mkdir -p %{buildroot}%{nodejs_sitelib}/%{module_name}
28d6bb
cp -pr package.json index.js %{buildroot}%{nodejs_sitelib}/%{module_name}
28d6bb
28d6bb
%nodejs_symlink_deps
28d6bb
28d6bb
%if 0%{?enable_tests}
28d6bb
28d6bb
%check
28d6bb
%nodejs_symlink_deps --check
28d6bb
node test.js
28d6bb
%endif
28d6bb
28d6bb
%files
28d6bb
%{!?_licensedir:%global license %doc}
28d6bb
%doc readme.md 
28d6bb
%license license
28d6bb
%{nodejs_sitelib}/%{module_name}
28d6bb
28d6bb
%changelog
28d6bb
* Fri Jan 15 2016 Tomas Hrcka <thrcka@redhat.com> - 1.0.1-5
28d6bb
- Enable scl macros
28d6bb
28d6bb
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-2
28d6bb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
28d6bb
28d6bb
* Sat Jan 31 2015 Parag Nemade <pnemade AT redhat DOT com> - 1.0.1-1
28d6bb
- update to 1.0.1 upstream release
28d6bb
28d6bb
* Sun Jan 11 2015 Parag Nemade <pnemade AT redhat DOT com> - 1.0.0-1
28d6bb
- Initial packaging