Skip to content

Commit 62df7f3

Browse files
authored
Merge pull request #146 from essentialkaos/develop
Version 3.4.4
2 parents 8190b97 + 7c32dba commit 62df7f3

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Code checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Login to DockerHub
2828
uses: docker/login-action@v3
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646

4747
- name: Check scripts with Shellcheck
4848
uses: essentialkaos/shellcheck-action@v1
@@ -55,7 +55,7 @@ jobs:
5555

5656
steps:
5757
- name: Checkout
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v5
5959

6060
- name: Check dockerfiles with Hadolint
6161
uses: essentialkaos/hadolint-action@v1
@@ -68,7 +68,7 @@ jobs:
6868

6969
steps:
7070
- name: Checkout
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v5
7272

7373
- name: Check spelling
7474
uses: crate-ci/typos@master
@@ -97,7 +97,7 @@ jobs:
9797
# More info about issue: https://github.com/actions/runner/issues/491
9898
9999
- name: Checkout
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101
if: ${{ github.event_name == 'pull_request' }}
102102

103103
- name: Login to DockerHub

.github/workflows/docker-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838

SOURCES/libexec/build-remote.shx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,11 +320,11 @@ remoteBuildProcess() {
320320

321321
show ""
322322

323-
local has_errors dl_start grc_time packages package_name package_file
323+
local exit_code has_errors dl_start grc_time packages package_name package_file
324324

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

327-
if [[ -z "$has_errors" ]] ; then
327+
if [[ -n "$exit_code" ]] ; then
328328
grc_time=$(getGraceDuration "$build_start")
329329

330330
show "Build complete! The build took $grc_time." $GREEN

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)