diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c79e2ea --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/isexe-1.1.2.tgz diff --git a/.rh-nodejs6-nodejs-isexe.metadata b/.rh-nodejs6-nodejs-isexe.metadata new file mode 100644 index 0000000..4dc57fe --- /dev/null +++ b/.rh-nodejs6-nodejs-isexe.metadata @@ -0,0 +1 @@ +36f3e22e60750920f5e7241a476a8c6a42275ad0 SOURCES/isexe-1.1.2.tgz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/nodejs-isexe.spec b/SPECS/nodejs-isexe.spec new file mode 100644 index 0000000..7c9d4ff --- /dev/null +++ b/SPECS/nodejs-isexe.spec @@ -0,0 +1,75 @@ +%{?scl:%scl_package nodejs-isexe} +%{!?scl:%global pkg_name %{name}} + +%{?nodejs_find_provides_and_requires} + +%global packagename isexe +%global enable_tests 0 + +Name: %{?scl_prefix}nodejs-isexe +Version: 1.1.2 +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 + +BuildArch: noarch +%if 0%{?fedora} >= 19 +ExclusiveArch: %{nodejs_arches} noarch +%else +ExclusiveArch: %{ix86} x86_64 %{arm} noarch +%endif + +BuildRequires: %{?scl_prefix}nodejs-devel +%if 0%{?enable_tests} +BuildRequires: %{?scl_prefix}npm(tap) +%endif + +%description +Minimal module to check if a file is executable. + +%prep +%setup -q -n package + +%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 +%{nodejs_sitelib}/%{packagename} + +%changelog +* Fri Sep 23 2016 Zuzana Svetlikova - 1.1.2-2 +- Built for RHSCL + +* Tue Sep 13 2016 Zuzana Svetlikova - 1.1.2-1 +- Updated with script + +* Thu Feb 04 2016 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* 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