libhugetlbfs/libhugetlbfs.spec
Dirk Mueller 02511ba8eb - 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)

OBS-URL: https://build.opensuse.org/package/show/Base:System/libhugetlbfs?expand=0&rev=56
2020-08-17 13:52:25 +00:00

104 lines
3.1 KiB
RPMSpec

#
# spec file for package libhugetlbfs
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# 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.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: 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
Patch14: disable-rw-on-non-ldscripts.diff
Patch15: zero_filesize_segment.patch
BuildRequires: doxygen
BuildRequires: glibc-devel-static
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# bug437293
%ifarch ppc64
Obsoletes: libhugetlbfs-64bit
%endif
%description
The libhugetlbfs package interacts with the Linux hugetlbfs to
make large pages available to applications in a transparent manner.
%package devel
Summary: Development files for libhugetlbfs
Group: Development/Libraries/C and C++
Requires: libhugetlbfs
%description devel
Devel package, header and static library, of libhugetlbfs.
%package tests
Summary: Tests for package libhugetlbfs
Group: Development/Tools/Other
%description tests
The testsuite for libhugetlbfs. Binaries can be found in
%{_libdir}/libhugetlbfs/tests.
%prep
%setup -q
%patch2 -p1
%patch4 -p1
%patch7 -p1
%patch14
%patch15 -p1
%build
echo %{version} > version
make %{my_make_flags}
%install
make %{my_make_flags} PMDIR="%{perl_vendorlib}/TLBC" \
install install-tests
mkdir -p %{buildroot}%{_prefix}/include
cp -avL hugetlbfs.h %{buildroot}%{_prefix}/include
chmod 644 %{buildroot}%{_libdir}/*.a
if [ -f %{buildroot}%{_libdir}/libhugetlbfs/tests/obj64/dummy.ldscript ]; then
chmod -f a-x %{buildroot}%{_libdir}/libhugetlbfs/tests/obj64/dummy.ldscript
fi
%files
%defattr(-, root, root)
%doc LGPL-2.1 HOWTO README NEWS
%{_datadir}/libhugetlbfs
%{_bindir}/*
%{_mandir}/man[178]/*%{?ext_man}
%{_libdir}/libhugetlbfs_privutils.so
%{_libdir}/libhugetlbfs.so
%files devel
%defattr(-, root, root)
%{_includedir}/hugetlbfs.h
%{_libdir}/libhugetlbfs.a
%{_mandir}/man3/*%{?ext_man}
%files tests
%defattr(-,root,root)
%{_libdir}/libhugetlbfs/
%changelog