From cddb1a959e8207ed1be7d2e65d212df831f7133e Mon Sep 17 00:00:00 2001 From: eabdullin Date: Thu, 18 Dec 2025 12:30:29 +0000 Subject: [PATCH] import UBI nodejs-packaging-2021.06-5.module+el8.10.0+23590+1e59695e --- SOURCES/nodejs.req | 4 ++-- SPECS/nodejs-packaging.spec | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/SOURCES/nodejs.req b/SOURCES/nodejs.req index 129606b..c89a3f7 100755 --- a/SOURCES/nodejs.req +++ b/SOURCES/nodejs.req @@ -633,9 +633,9 @@ def has_only_bundled_dependencies(module_dir_path): for basename in os.listdir(dependency_root_path) ) bundled_dependency_iter = ( - os.path.realpath(path) + path for path in dependency_path_iter - if not os.path.islink(path) or path.startswith(module_root_path) + if not os.path.islink(path) or os.path.realpath(path).startswith(module_root_path) ) return any(bundled_dependency_iter) diff --git a/SPECS/nodejs-packaging.spec b/SPECS/nodejs-packaging.spec index fe6080a..a82479a 100644 --- a/SPECS/nodejs-packaging.spec +++ b/SPECS/nodejs-packaging.spec @@ -2,7 +2,7 @@ Name: nodejs-packaging Version: 2021.06 -Release: 4%{?dist} +Release: 5%{?dist} Summary: RPM Macros and Utilities for Node.js Packaging BuildArch: noarch License: MIT @@ -87,6 +87,9 @@ install -Dpm0755 nodejs-packaging-bundler %{buildroot}%{_bindir}/nodejs-packagin %changelog +* Fri Oct 17 2025 Andrei Radchenko - 2021.06-5 +- nodejs.req to properly detect bundled deps + * Tue Nov 12 2024 Jarek Prokop - 2021.06-4 - Exclude ix86 arches from building. Related: RHEL-35991