Skip to content

Commit 360b7d3

Browse files
committed
Improve support of rpmbuild on EL10
1 parent 43d27a6 commit 360b7d3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

SOURCES/libexec/build-remote.shx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ remoteBuildProcess() {
322322

323323
local has_errors dl_start grc_time packages package_name package_file
324324

325-
has_errors=$(tail -1 "$tmp_output" | grep -v "exit 0")
325+
has_errors=$(tail -100 "$tmp_output" | grep -E '^\+' | tail -1 | grep -v "+ exit 0")
326326

327327
if [[ -z "$has_errors" ]] ; then
328328
grc_time=$(getGraceDuration "$build_start")

SOURCES/rpmbuilder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fi
1313
APP="RPMBuilder"
1414

1515
# Utility version (String)
16-
VER="3.4.3"
16+
VER="3.4.4"
1717

1818
# Utility description (String)
1919
DESC="RPM package build helper"

rpmbuilder.spec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
Summary: RPM package build helper
88
Name: rpmbuilder
9-
Version: 3.4.3
10-
Release: 1%{?dist}
9+
Version: 3.4.4
10+
Release: 0%{?dist}
1111
License: Apache License, Version 2.0
1212
Group: Development/Tools
1313
URL: https://kaos.sh/rpmbuilder
@@ -58,6 +58,9 @@ install -pm 644 libexec/* %{buildroot}%{_libexecdir}/%{name}/
5858
################################################################################
5959

6060
%changelog
61+
* Mon Aug 11 2025 Anton Novojilov <[email protected]> - 3.4.4-0
62+
- Improved support of rpmbuild on EL10
63+
6164
* Fri Aug 08 2025 Anton Novojilov <[email protected]> - 3.4.3-1
6265
- ncurses and perl added to dependencies
6366

0 commit comments

Comments
 (0)