diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..39c0ebc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/es5-ext-0.10.12.tgz diff --git a/.rh-nodejs6-nodejs-es5-ext.metadata b/.rh-nodejs6-nodejs-es5-ext.metadata new file mode 100644 index 0000000..234f4bf --- /dev/null +++ b/.rh-nodejs6-nodejs-es5-ext.metadata @@ -0,0 +1 @@ +aa84641d4db76b62abba5e45fd805ecbab140047 SOURCES/es5-ext-0.10.12.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-es5-ext.spec b/SPECS/nodejs-es5-ext.spec new file mode 100644 index 0000000..8783ee6 --- /dev/null +++ b/SPECS/nodejs-es5-ext.spec @@ -0,0 +1,82 @@ +%{?scl:%scl_package nodejs-es5-ext} +%{!?scl:%global pkg_name %{name}} + +%{?nodejs_find_provides_and_requires} + +%global packagename es5-ext +%global enable_tests 0 +# tests disabled until we have the npm(tad) test suite + +Name: %{?scl_prefix}nodejs-es5-ext +Version: 0.10.12 +Release: 2%{?dist} +Summary: ECMAScript 5 extensions and ES6 shims + +License: MIT +URL: https://github.com/medikoo/es5-ext.git +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(tad) +%endif + +Requires: %{?scl_prefix}nodejs + +%description +ECMAScript 5 extensions and ES6 shims + +%prep +%setup -q -n package + +%build +# nothing to do! + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename} +cp -pr package.json *.js array/ boolean/ date/ error/ function/ \ + iterable/ math/ number/ object reg-exp string \ + %{buildroot}%{nodejs_sitelib}/%{packagename} + +%nodejs_symlink_deps + +%check +%nodejs_symlink_deps --check +%if 0%{?enable_tests} +%{__nodejs} -e 'require("./")' +%{__nodejs} %{nodejs_sitelib}/tad/bin/tad +%else +echo "Tests are disabled..." +%endif + +%files +%{!?_licensedir:%global license %doc} +%doc *.md +%license LICENSE +%{nodejs_sitelib}/%{packagename} + +%changelog +* Mon Jan 16 2017 Zuzana Svetlikova - 0.10.12-2 +- Rebuild for rhscl + +* Thu Jul 14 2016 Jared Smith - 0.10.12-1 +- Update to upstream 0.10.12 version + +* Wed Feb 17 2016 Jared Smith - 0.10.11-1 +- Update to upstream 0.10.11 release + +* Thu Feb 04 2016 Fedora Release Engineering - 0.10.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Dec 18 2015 Jared Smith - 0.10.10-1 +- Update to upstream 0.10.10 release + +* Tue Nov 10 2015 Jared Smith - 0.10.8-1 +- Initial packaging