Compare commits

...

No commits in common. "c8-beta" and "c10s" have entirely different histories.

7 changed files with 59 additions and 14 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/xxhash-0.8.2.tar.gz
/xxhash-*.tar.gz

View File

@ -1 +0,0 @@
8df702581ebc48a5e05be0f1ede6e1e9139e4da1 SOURCES/xxhash-0.8.2.tar.gz

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}

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (xxhash-0.8.2.tar.gz) = 3e3eef21432fe88bc4dd9940ccad0308fdea3537b06fa5ac0e74c1bde53413dff29c8b3fc617a8a42b9ce88fcf213311d338a31b1ce73b3729342c9e68f06c78

6
tests/nulltest.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# xxhash runs tests at build stage. if tests fail a build fails. no need to duplicate.
echo XXHASH nulltest is PASS
exit 0

10
tests/tests.yml Normal file
View File

@ -0,0 +1,10 @@
---
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- nulltest:
dir: .
run: nulltest.sh

View File

@ -1,6 +1,6 @@
Name: xxhash
Version: 0.8.2
Release: 1%{?dist}
Release: 11%{?dist}
Summary: Extremely fast hash algorithm
# The source for the library (xxhash.c and xxhash.h) is BSD-2-Clause
@ -57,12 +57,17 @@ Documentation files for the xxhash library
# Enable runtime detection of sse2/avx2/avx512 on intel architectures
%ifarch %{ix86} x86_64
%global dispatch 1
# Some distribution variants build with -march=x86-64-v3.
# See xxh_x86dispatch.c.
%global moreflags_dispatch -DXXH_X86DISPATCH_ALLOW_AVX
%else
%global dispatch 0
%global moreflags_dispatch %{nil}
%endif
%make_build MOREFLAGS="%{__global_cflags} %{?__global_ldflags}" \
DISPATCH=%{dispatch}
%make_build \
MOREFLAGS="%{__global_cflags} %{?__global_ldflags} %{moreflags_dispatch}" \
DISPATCH=%{dispatch}
doxygen
%install
@ -96,14 +101,32 @@ make test-xxhsum-c
%doc doxygen/html
%changelog
* Thu Sep 07 2023 Vladis Dronov <vdronov@redhat.com> - 0.8.2-1
- Update to version 0.8.2
- Drop patch 1-fix-man-page-installation.patch
- Use SPDX license identifiers
* Thu Jan 23 2025 Siddhesh Poyarekar <siddhesh@redhat.com> - 0.8.2-11
- Bring xxhash-libs back (RHEL-74131).
* Mon Jul 18 2022 Vladis Dronov <vdronov@redhat.com> - 0.8.1-3
- Fix broken manpages (upstream commit 836f4e735cf3)
- Add OSCI testing harness
* Mon Jan 13 2025 Siddhesh Poyarekar <siddhesh@redhat.com> - 0.8.2-10
- Rebuild to tag xxhash into buildroot (RHEL-71299).
* Fri Jun 17 2022 Vladis Dronov <vdronov@redhat.com> - 0.8.1-1
- Packaging of xxhash v0.8.1 for CS and RHEL copied from Fedora 36
* Wed Jan 8 2025 Siddhesh Poyarekar <siddhesh@redhat.com> - 0.8.2-9
- Drop xxhash-libs (RHEL-71299).
* Thu Dec 5 2024 Siddhesh Poyarekar <siddhesh@redhat.com> - 0.8.2-8
- Bump to sync c10s and rhel10 (RHEL-61409).
* Tue Dec 3 2024 Siddhesh Poyarekar <siddhesh@redhat.com> - 0.8.2-7
- Quote the correct RHEL issue (RHEL-61409).
* Tue Dec 3 2024 Siddhesh Poyarekar <siddhesh@redhat.com> - 0.8.2-6
- Bump for another rebuild in the correct tag.
* Mon Dec 2 2024 Siddhesh Poyarekar <siddhesh@redhat.com> - 0.8.2-5
- Bump release for re-import.
* Wed Jun 26 2024 Vladis Dronov <vdronov@redhat.com> - 0.8.2-4
- Add self-tests and an OSCI harness (RHEL-20173)
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.8.2-3
- Bump release for June 2024 mass rebuild
* Fri Jan 26 2024 Vladis Dronov <vdronov@redhat.com> - 0.8.2-2
- Initial import from Fedora 40