From e587e020bd2c1cfecc50af0feef8c7b416de594d Mon Sep 17 00:00:00 2001 From: Jared K. Smith Date: Jan 18 2016 22:53:48 +0000 Subject: Initial packaging --- diff --git a/.gitignore b/.gitignore index e69de29..de53431 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/isexe-1.0.0.tgz diff --git a/LICENSE-ISC.txt b/LICENSE-ISC.txt new file mode 100644 index 0000000..8351a30 --- /dev/null +++ b/LICENSE-ISC.txt @@ -0,0 +1,11 @@ +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/nodejs-isexe.spec b/nodejs-isexe.spec new file mode 100644 index 0000000..4b67132 --- /dev/null +++ b/nodejs-isexe.spec @@ -0,0 +1,76 @@ +%{?nodejs_find_provides_and_requires} + +%global packagename isexe +%global enable_tests 1 + +Name: nodejs-isexe +Version: 1.0.0 +Release: 2%{?dist} +Summary: Minimal module to check if a file is executable + +License: ISC +URL: https://github.com/isaacs/isexe +Source0: https://registry.npmjs.org/%{packagename}/-/%{packagename}-%{version}.tgz + +# No license file in the npm package or upstream github +# Requested at https://github.com/isaacs/isexe/issues/1 +Source1: LICENSE-ISC.txt + +BuildArch: noarch +%if 0%{?fedora} >= 19 +ExclusiveArch: %{nodejs_arches} noarch +%else +ExclusiveArch: %{ix86} x86_64 %{arm} noarch +%endif + +BuildRequires: nodejs-packaging +%if 0%{?enable_tests} +BuildRequires: npm(mkdirp) +BuildRequires: npm(rimraf) +BuildRequires: npm(tap) +%endif + +%description +Minimal module to check if a file is executable. + + +%prep +%setup -q -n package + +#copy the license file +cp -p %{SOURCE1} . + + +%build +# nothing to do! + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename} +cp -pr package.json *.js \ + %{buildroot}%{nodejs_sitelib}/%{packagename} + +%nodejs_symlink_deps + +%check +%nodejs_symlink_deps --check +%{__nodejs} -e 'require("./")' +%if 0%{?enable_tests} +%{_bindir}/tap test/*.js +%else +%{_bindir}/echo "Tests disabled..." +%endif + + +%files +%{!?_licensedir:%global license %doc} +%doc *.md +%license LICENSE-ISC.txt +%{nodejs_sitelib}/%{packagename} + + +%changelog +* Mon Jan 18 2016 Jared Smith - 1.0.0-2 +- Add missing build requirements + +* Mon Jan 18 2016 Jared Smith - 1.0.0-1 +- Initial packaging diff --git a/sources b/sources index e69de29..3135558 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +c104dbbec6d285c34ffcfde89d631d81 isexe-1.0.0.tgz