diff --git a/libhugetlbfs-2.21.tar.xz b/libhugetlbfs-2.21.tar.xz deleted file mode 100644 index ba35eba..0000000 --- a/libhugetlbfs-2.21.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2aa61ed78c8debdcff17918d171f1cba9b738f8c1b1125539b68fea1b4e0a05a -size 134376 diff --git a/libhugetlbfs-2.22.tar.gz b/libhugetlbfs-2.22.tar.gz new file mode 100644 index 0000000..7ad642e --- /dev/null +++ b/libhugetlbfs-2.22.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94dca9ea2c527cd77bf28904094fe4708865a85122d416bfccc8f4b73b9a6785 +size 174012 diff --git a/libhugetlbfs.changes b/libhugetlbfs.changes index c550262..2411ecc 100644 --- a/libhugetlbfs.changes +++ b/libhugetlbfs.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Mon Aug 17 13:48:04 UTC 2020 - Dirk Mueller + +- update to 2.22: + * Library now verifies if slices are supported on PPC + * ld.hugetlbfs now supports multiple page sizes on PPC64 + * Various GCC warning cleanups + * setup script converted to Python 3 + * Tests are only run on online CPUs and only if a sufficient number are + available + * task-size-overrun now searches empty address space more efficiently + * Tests that do not link the library are run for default page sizes only + * Test runner now uses Python 3 +- remove libhugetlbfs_fix_tests.patch (upstream) + ------------------------------------------------------------------- Mon Oct 1 13:52:36 UTC 2018 - egotthold@suse.com diff --git a/libhugetlbfs.spec b/libhugetlbfs.spec index d8f7d4e..65e8ed0 100644 --- a/libhugetlbfs.spec +++ b/libhugetlbfs.spec @@ -1,7 +1,7 @@ # # spec file for package libhugetlbfs # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,24 +12,23 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %define my_make_flags V=1 CFLAGS="%{optflags} -fPIC" BUILDTYPE=NATIVEONLY PREFIX=%{_prefix} LIBDIR32=%{_libdir} DESTDIR=%{buildroot} Name: libhugetlbfs -Version: 2.21 +Version: 2.22 Release: 0 Summary: Helper library for the Huge Translation Lookaside Buffer Filesystem License: LGPL-2.1-or-later Group: System/Libraries -Url: https://github.com/libhugetlbfs/libhugetlbfs -Source0: %{name}-%{version}.tar.xz +URL: https://github.com/libhugetlbfs/libhugetlbfs +Source0: https://github.com/libhugetlbfs/libhugetlbfs/releases/download/%{version}/libhugetlbfs-%{version}.tar.gz Source1: baselibs.conf Patch2: libhugetlbfs.s390.patch Patch4: libhugetlbfs.tests-malloc.patch Patch7: libhugetlbfs_ia64_fix_missing_test.patch -Patch8: libhugetlbfs_fix_tests.patch Patch14: disable-rw-on-non-ldscripts.diff Patch15: zero_filesize_segment.patch BuildRequires: doxygen @@ -65,7 +64,6 @@ The testsuite for libhugetlbfs. Binaries can be found in %patch2 -p1 %patch4 -p1 %patch7 -p1 -%patch8 -p1 %patch14 %patch15 -p1 diff --git a/libhugetlbfs_fix_tests.patch b/libhugetlbfs_fix_tests.patch deleted file mode 100644 index 0f936b8..0000000 --- a/libhugetlbfs_fix_tests.patch +++ /dev/null @@ -1,17 +0,0 @@ -References: bnc#706891 - -Signed-off-by: Thomas Renninger - -Index: libhugetlbfs-2.21/tests/run_tests.py -=================================================================== ---- libhugetlbfs-2.21.orig/tests/run_tests.py -+++ libhugetlbfs-2.21/tests/run_tests.py -@@ -236,7 +236,7 @@ def get_pagesizes(): - """ - sizes = set() - out = "" -- (rc, out) = bash("../obj/hugeadm --page-sizes") -+ (rc, out) = bash("hugeadm --page-sizes") - if rc != 0 or out == "": return sizes - - for size in out.split("\n"): sizes.add(int(size))