!1 package init

Merge pull request !1 from jackie_wu123/master
This commit is contained in:
openeuler-ci-bot 2020-08-21 17:28:13 +08:00 committed by Gitee
commit 38ab4fef82
3 changed files with 65 additions and 0 deletions

BIN
nan-2.13.2.tgz Normal file

Binary file not shown.

61
nodejs-nan.spec Normal file
View File

@ -0,0 +1,61 @@
%global npm_name nan
%{?nodejs_find_provides_and_requires}
Summary: Native Abstractions for Node.js
Name: nodejs-%{npm_name}
Version: 2.13.2
Release: 1
License: MIT
URL: https://github.com/nodejs/nan
Source0: https://registry.npmjs.org/%{npm_name}/-/%{npm_name}-%{version}.tgz
BuildRequires: nodejs-packaging
BuildArch: noarch
ExclusiveArch: %{nodejs_arches} noarch
Provides: nodejs-nan-devel = %{version}-%{release}
Provides: nodejs-nan-static = %{version}-%{release}
%description
A header file filled with macro and utility goodness
for making add on development for Node.js easier across
versions 0.8, 0.10 and 0.11, and eventually 0.12.
Thanks to the crazy changes in V8 (and some in Node core),
keeping native add-on compiling happily across versions,
particularly 0.10 to 0.11/0.12, is a minor nightmare.
The goal of this project is to store all logic necessary
to develop native Node.js add-on without having to inspect
NODE_MODULE_VERSION and get yourself into a macro-tangle.
%prep
%setup -q -n package
%build
%install
mkdir -p %{buildroot}%{nodejs_sitelib}/%{npm_name}@2
cp -pr include_dirs.js nan*.h package.json %{buildroot}%{nodejs_sitelib}/%{npm_name}@2
ln -sf nan@2 %{buildroot}%{nodejs_sitelib}/%{npm_name}
%files
%doc CHANGELOG.md README.md doc
%license LICENSE.md
%{nodejs_sitelib}/%{npm_name}
%{nodejs_sitelib}/%{npm_name}@2
%pretrans -p <lua>
-- Define the path to directory being replaced below.
-- DO NOT add a trailing slash at the end.
path = "%{nodejs_sitelib}/%{npm_name}"
st = posix.stat(path)
if st and st.type == "directory" then
status = os.rename(path, path .. ".rpmmoved")
if not status then
suffix = 0
while not status do
suffix = suffix + 1
status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix)
end
os.rename(path, path .. ".rpmmoved")
end
end
%changelog
* Mon Aug 17 2020 wutao <wutao61@huawei.com> - 2.13.2-1
- Package init

4
nodejs-nan.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: github
src_repo: nodejs/nan
tag_prefix: "^v"
seperator: "."