41 lines
1.1 KiB
RPMSpec
41 lines
1.1 KiB
RPMSpec
%{?nodejs_find_provides_and_requires}
|
|
Name: nodejs-debug
|
|
Version: 4.3.4
|
|
Release: 1
|
|
Summary: A small debugging utility for Node.js
|
|
License: MIT
|
|
URL: https://github.com/visionmedia/debug
|
|
Source0: https://github.com/debug-js/debug/archive/refs/tags/%{version}.tar.gz
|
|
BuildArch: noarch
|
|
ExclusiveArch: %{nodejs_arches} noarch
|
|
BuildRequires: nodejs-packaging
|
|
%description
|
|
This module is a tiny Node.js debugging utility modeled after node core's
|
|
debugging technique.
|
|
|
|
%prep
|
|
%autosetup -n debug-%{version}
|
|
%nodejs_fixdep ms "^2.0.0"
|
|
|
|
%build
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{nodejs_sitelib}/debug
|
|
cp -pr package.json src %{buildroot}%{nodejs_sitelib}/debug
|
|
%nodejs_symlink_deps
|
|
|
|
%files
|
|
%doc README.md
|
|
%license LICENSE
|
|
%{nodejs_sitelib}/debug
|
|
|
|
%changelog
|
|
* Sat Jul 02 2022 chenchen <chen_aka_jan@163.com> - 4.3.4-1
|
|
- Update to 4.3.4
|
|
|
|
* Thu Nov 26 2020 caodongxia <caodongxia@huawei.com> - 2.6.9-2
|
|
- Delete file nodejs-debug.spec.old
|
|
|
|
* Mon Aug 17 2020 Anan Fu <fuanan3@huawei.com> - 2.6.9-1
|
|
- package init
|