change license tag to SPDX format (RHEL-52832)
Resolves: RHEL-52832
This commit is contained in:
parent
beabc89101
commit
47767fd5b2
6
gating.yaml
Normal file
6
gating.yaml
Normal 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}
|
@ -1,8 +1,8 @@
|
|||||||
Summary: A library for interfacing IEEE 1284-compatible devices
|
Summary: A library for interfacing IEEE 1284-compatible devices
|
||||||
Name: libieee1284
|
Name: libieee1284
|
||||||
Version: 0.2.11
|
Version: 0.2.11
|
||||||
Release: 44%{?dist}
|
Release: 45%{?dist}
|
||||||
License: GPLv2+
|
License: GPL-2.0-or-later
|
||||||
URL: http://cyberelk.net/tim/libieee1284/
|
URL: http://cyberelk.net/tim/libieee1284/
|
||||||
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
|
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
|
||||||
Patch1: libieee1284-strict-aliasing.patch
|
Patch1: libieee1284-strict-aliasing.patch
|
||||||
@ -25,7 +25,7 @@ developing applications that use libieee1284.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
# Fixed strict aliasing warnings (bug #605170).
|
# Fixed strict aliasing warnings (bug #605170).
|
||||||
%patch1 -p1 -b .strict-aliasing
|
%patch -P 1 -p1 -b .strict-aliasing
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoreconf -iv
|
autoreconf -iv
|
||||||
@ -53,6 +53,9 @@ rm -f %{buildroot}%{_libdir}/*.la
|
|||||||
%ldconfig_scriptlets
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
%changelog
|
%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
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.2.11-44
|
||||||
- Bump release for June 2024 mass rebuild
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
1
plans/.fmf/version
Normal file
1
plans/.fmf/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
34
plans/tier1.fmf
Normal file
34
plans/tier1.fmf
Normal 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
|
Loading…
Reference in New Issue
Block a user