import OL nodejs-packaging-2023.10-12.el10_1

This commit is contained in:
eabdullin 2025-12-22 06:19:31 +00:00
parent 441db0dc0f
commit 4afb3ecc6e
3 changed files with 6 additions and 1 deletions

0
nodejs-packaging-bundler Executable file → Normal file
View File

View File

@ -2,7 +2,7 @@
## (rpmautospec version 0.6.5)
## RPMAUTOSPEC: autorelease, autochangelog
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
release_number = 11;
release_number = 12;
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
print(release_number + base_release_number - 1);
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
@ -96,6 +96,9 @@ install -Dpm0755 nodejs-packaging-bundler %{buildroot}%{_bindir}/nodejs-packagin
%changelog
## START: Generated by rpmautospec
* Fri Oct 31 2025 Evgeni Golov <evgeni@redhat.com> - 2023.10-12
- Properly handle @group/package deps in nodejs-symlink-deps
* Tue Oct 14 2025 Andrei Radchenko <aradchen@redhat.com> - 2023.10-11
- Add test case for symlinked dependencies bug fix
- added test/symlinked scenario

2
nodejs-symlink-deps Executable file → Normal file
View File

@ -30,6 +30,8 @@ import shutil
import sys
def symlink(source, dest):
if os.path.sep in dest:
os.makedirs(os.path.dirname(dest), exist_ok=True)
try:
os.symlink(source, dest)
except OSError: