Compare commits

...

2 Commits

Author SHA1 Message Date
Vladis Dronov b47c9dc28f Update to xxhash 0.8.2 2023-09-29 12:43:46 +00:00
Vladis Dronov ae22d234ed Fix broken sotf-links for manpages
This is upstream commit 836f4e735cf3 ("fix man page installation").
Also add OSCI testing harness.

Resolves: rhbz#2095255

Signed-off-by: Vladis Dronov <vdronov@redhat.com>
2022-07-18 14:32:15 +02:00
5 changed files with 35 additions and 9 deletions

1
.xxhash.metadata Normal file
View File

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

View File

@ -1 +1 @@
SHA512 (xxhash-0.8.1.tar.gz) = 12feedd6a1859ef55e27218dbd6dcceccbb5a4da34cd80240d2f7d44cd246c7afdeb59830c2d5b90189bb5159293532208bf5bb622250102e12d6e1bad14a193
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,12 +1,12 @@
Name: xxhash
Version: 0.8.1
Version: 0.8.2
Release: 1%{?dist}
Summary: Extremely fast hash algorithm
# The source for the library (xxhash.c and xxhash.h) is BSD
# The source for the command line tool (xxhsum.c) is GPLv2+
License: BSD and GPLv2+
URL: http://www.xxhash.com/
# The source for the library (xxhash.c and xxhash.h) is BSD-2-Clause
# The source for the command line tool (xxhsum.c) is GPL-2.0-or-later
License: BSD-2-Clause AND GPL-2.0-or-later
URL: https://www.xxhash.com/
Source0: https://github.com/Cyan4973/xxHash/archive/v%{version}/%{name}-%{version}.tar.gz
BuildRequires: make
@ -22,7 +22,7 @@ platforms (little / big endian).
%package libs
Summary: Extremely fast hash algorithm - library
License: BSD
License: BSD-2-Clause
%description libs
xxHash is an Extremely fast Hash algorithm, running at RAM speed
@ -33,7 +33,7 @@ platforms (little / big endian).
%package devel
Summary: Extremely fast hash algorithm - development files
License: BSD
License: BSD-2-Clause
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
# By setting XXH_INLINE_ALL, xxhash may be used as a header-only library.
# Dependent packages that use xxhash this way must BR this virtual Provide:
@ -44,7 +44,7 @@ Development files for the xxhash library
%package doc
Summary: Extremely fast hash algorithm - documentation files
License: BSD
License: BSD-2-Clause
BuildArch: noarch
%description doc
@ -96,5 +96,14 @@ 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
* Mon Jul 18 2022 Vladis Dronov <vdronov@redhat.com> - 0.8.1-3
- Fix broken manpages (upstream commit 836f4e735cf3)
- Add OSCI testing harness
* 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