diff --git a/heap-0.2.6.tgz b/heap-0.2.6.tgz new file mode 100644 index 0000000..b5d80db Binary files /dev/null and b/heap-0.2.6.tgz differ diff --git a/nodejs-heap.spec b/nodejs-heap.spec new file mode 100644 index 0000000..ff1c563 --- /dev/null +++ b/nodejs-heap.spec @@ -0,0 +1,48 @@ +%{?nodejs_find_provides_and_requires} +%global packagename heap +%global enable_tests 1 +Name: nodejs-heap +Version: 0.2.6 +Release: 1 +Summary: Binary heap (priority queue) algorithms +License: Python +URL: https://github.com/qiao/heap.js.git +Source0: https://registry.npmjs.org/%{packagename}/-/%{packagename}-%{version}.tgz +BuildArch: noarch +ExclusiveArch: %{nodejs_arches} noarch +BuildRequires: nodejs-packaging +%if 0%{?enable_tests} +BuildRequires: coffee-script mocha npm(should) +%endif +%description +Binary heap (priority queue) algorithms (ported from Python's heapq module) + +%prep +%setup -q -n package +rm lib/heap.js + +%build +%{_bindir}/coffee -c -b -o lib/ src/*.coffee + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename} +cp -pr package.json *.js lib/ \ + %{buildroot}%{nodejs_sitelib}/%{packagename} +%nodejs_symlink_deps +%if 0%{?enable_tests} + +%check +%nodejs_symlink_deps --check +%{__nodejs} -e 'require("./")' +%{_bindir}/coffee -c -b test/*.coffee +%{_bindir}/mocha -r should -R spec +%endif + +%files +%{!?_licensedir:%global license %doc} +%doc *.md +%{nodejs_sitelib}/%{packagename} + +%changelog +* Thu Aug 20 2020 wangxiao - 0.2.6-1 +- Package init diff --git a/nodejs-heap.yaml b/nodejs-heap.yaml new file mode 100644 index 0000000..1a81935 --- /dev/null +++ b/nodejs-heap.yaml @@ -0,0 +1,5 @@ +git_url: https://github.com/qiao/heap.js +version_control: github +src_repo: qiao/heap.js +tag_prefix: "" +seperator: "."