Skip to content

Commit

Permalink
Add lsb_release dependency, coming from EPEL on EL9 (#11)
Browse files Browse the repository at this point in the history
Add lsb_release dependency, coming from EPEL on EL9.
  • Loading branch information
gwarf authored Jun 28, 2024
1 parent 9f55c17 commit 0a93a20
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ jobs:
run: |
yum localinstall -y glite-info-provider-service-*.el8.noarch.rpm
# XXX: get lsb_release from EPEL
install-almalinux9:
name: Install AlmaLinux 9 RPMs
needs: build-almalinux
Expand All @@ -95,4 +96,5 @@ jobs:
name: rpms9
- name: Install generated RPMs
run: |
yum install -y epel-release
yum localinstall -y glite-info-provider-service-*.el9.noarch.rpm
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to

## [Unreleased]

## [1.14.2] - 2024-06-28

## Fixed

- Add missing dependency on lsb_release. (#11) (Baptiste Grenier)

## [1.14.1] - 2024-06-28

## Added
Expand Down
9 changes: 8 additions & 1 deletion glite-info-provider-service.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: glite-info-provider-service
Version: 1.14.1
Version: 1.14.2
Release: 1%{?dist}
Summary: The GLUE service information provider
Group: Development/Libraries
Expand All @@ -10,9 +10,13 @@ BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: rsync
BuildRequires: make
%if 0%{?rhel} <= 8
Requires: redhat-lsb-core
%endif
%if 0%{?rhel} >= 9
Requires: hostname
Requires: initscripts-service
Requires: lsb_release
%endif

%description
Expand Down Expand Up @@ -111,6 +115,9 @@ rm -rf %{buildroot}
%license %{_datadir}/licenses/%{name}-%{version}/LICENSE.txt

%changelog
* Tue Apr 28 2024 Baptiste Grenier <[email protected]> - 1.14.2-1
- Add missing dependency on lsb_release. (#11) (Baptiste Grenier)

* Tue Apr 28 2024 Baptiste Grenier <[email protected]> - 1.14.1-1
- Add missing dependencies for EL9. (#7) (Baptiste Grenier)

Expand Down

0 comments on commit 0a93a20

Please sign in to comment.