change license tag to SPDX format (RHEL-52832)

Resolves: RHEL-52832
This commit is contained in:
Michal Hlavinka 2024-08-05 13:06:06 +02:00
parent beabc89101
commit 47767fd5b2
4 changed files with 47 additions and 3 deletions

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-10
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

View File

@ -1,8 +1,8 @@
Summary: A library for interfacing IEEE 1284-compatible devices
Name: libieee1284
Version: 0.2.11
Release: 44%{?dist}
License: GPLv2+
Release: 45%{?dist}
License: GPL-2.0-or-later
URL: http://cyberelk.net/tim/libieee1284/
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
Patch1: libieee1284-strict-aliasing.patch
@ -25,7 +25,7 @@ developing applications that use libieee1284.
%prep
%setup -q
# Fixed strict aliasing warnings (bug #605170).
%patch1 -p1 -b .strict-aliasing
%patch -P 1 -p1 -b .strict-aliasing
%build
autoreconf -iv
@ -53,6 +53,9 @@ rm -f %{buildroot}%{_libdir}/*.la
%ldconfig_scriptlets
%changelog
* Mon Aug 05 2024 Michal Hlavinka <mhlavink@redhat.com> - 0.2.11-45
- change license tag to SPDX format (RHEL-52832)
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.2.11-44
- Bump release for June 2024 mass rebuild

1
plans/.fmf/version Normal file
View File

@ -0,0 +1 @@
1

34
plans/tier1.fmf Normal file
View File

@ -0,0 +1,34 @@
---
summary: Tier1 plan for libieee1284
discover:
how: fmf
url: https://pkgs.devel.redhat.com/git/tests/libieee1284
ref: master
filter: tier:1
prepare:
- how: shell
script: |
set -euxo pipefail
ENABLE_REPO_CMD="yum-config-manager --enable"
if command -v dnf >/dev/null 2>&1; then
ENABLE_REPO_CMD="dnf config-manager --set-enabled"
fi
${ENABLE_REPO_CMD} beaker-tasks || :
- how: shell
script: |
set -exuo pipefail
if [[ -f /etc/os-release ]]; then
. /etc/os-release
if [[ "${ID:-}" == "rhel" && "${VERSION_ID%%.*}" -ge 8 ]]; then
dnf config-manager --enable rhel-CRB
fi
fi
execute:
how: tmt