nodejsporter/nodejsporter.spec
2021-06-16 15:45:22 +08:00

63 lines
1.5 KiB
RPMSpec

Name: nodejsporter
Version: 1.0
Release: 2
Summary: A rpm packager bot for nodejs modules from npmjs.org
License: Mulan PSL v2
URL: https://gitee.com/openeuler/nodejsporter
Source0: https://gitee.com/openeuler/rubyporter/repository/archive/v%{version}.tar.gz
BuildArch: noarch
BuildRequires: nodejs python3-setuptools
Requires: gcc gdb libstdc++-devel python3-cffi nodejs
%description
nodejsporter is a tool to create spec file and create rpm for nodejs modules.
%package -n python3-nodejsporter
Summary: A rpm packager bot for nodejs modules from npmjs.org
%description -n python3-nodejsporter
nodejsporter is a tool to create spec file and create rpm for nodejs modules.
%prep
%autosetup -n nodejsporter -p1
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
popd
mv %{buildroot}/filelist.lst .
%files -n python3-nodejsporter -f filelist.lst
%license LICENSE
%doc README.md
%dir %{python3_sitelib}/*
%changelog
* Wed Jun 16 2021 wulei <wulei80@huawei.com> - 1.0-2
- fixes failed: No module named 'setuptools'
* Wed Nov 4 2020 sunchendong<sunchendong@huawei.com> -1.0-1
- Type:NA
- ID:NA
- SUG:NA
- DESC:init package