a09b2aa43b
- Update to version 0.8.3: * Fix unportable sizeof() usage * Fix file descriptor leak in HASHFileChunk helper * Switch URLs from http or git to https * build: Support clock_gettime() provided in librt * man: Fix ungrammatical construct * test: Add a unit test for md5 * Add missing <fcntl.h> includes - Changes for 0.8.2: * test: Fix success return code for arc4random unit test * test: Add missing <sys/stat.h> include * Fix heap buffer overflow in fgetwln() * test: Fix race condition in headers-*.sh - Enable internal tests - Use correct package categories OBS-URL: https://build.opensuse.org/request/show/396452 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libbsd?expand=0&rev=22
115 lines
3.6 KiB
RPMSpec
115 lines
3.6 KiB
RPMSpec
#
|
|
# spec file for package libbsd
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define lname libbsd0
|
|
Name: libbsd
|
|
Version: 0.8.3
|
|
Release: 0
|
|
Summary: Provides useful functions commonly found on BSD systems
|
|
License: BSD-3-Clause
|
|
Group: Development/Languages/C and C++
|
|
Url: http://libbsd.freedesktop.org/
|
|
#Git-Clone: git://anongit.freedesktop.org/git/libbsd
|
|
#Git-Web: http://cgit.freedesktop.org/libbsd/
|
|
Source0: http://libbsd.freedesktop.org/releases/%{name}-%{version}.tar.xz
|
|
Source1: http://libbsd.freedesktop.org/releases/%{name}-%{version}.tar.xz.asc
|
|
Source2: %{name}.keyring
|
|
BuildRequires: fdupes
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: pkg-config
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
This library provides useful functions commonly found on BSD systems, and
|
|
lacking on others like GNU systems, thus making it easier to port projects
|
|
with strong BSD origins, without needing to embed the same code over and
|
|
over again on each project.
|
|
|
|
%package -n %{lname}
|
|
Summary: Provides useful functions commonly found on BSD systems
|
|
Group: System/Libraries
|
|
|
|
%description -n %{lname}
|
|
This library provides useful functions commonly found on BSD systems, and
|
|
lacking on others like GNU systems, thus making it easier to port projects
|
|
with strong BSD origins, without needing to embed the same code over and
|
|
over again on each project.
|
|
|
|
%package devel
|
|
Summary: Development headers and files for libbsd
|
|
Group: Development/Languages/C and C++
|
|
Requires: %{lname} = %{version}
|
|
Requires: glibc-devel
|
|
|
|
%description devel
|
|
This library provides useful functions commonly found on BSD systems, and
|
|
lacking on others like GNU systems, thus making it easier to port projects
|
|
with strong BSD origins, without needing to embed the same code over and
|
|
over again on each project.
|
|
|
|
%package ctor-static
|
|
Summary: Development headers and files for libbsd
|
|
Group: Development/Languages/C and C++
|
|
Requires: %{lname} = %{version}-%{release}
|
|
Requires: pkgconfig
|
|
|
|
%description ctor-static
|
|
The libbsd-ctor static library is required if setproctitle() is to be used
|
|
when libbsd is loaded via dlopen() from a threaded program. This can be
|
|
configured using "pkg-config --libs libbsd-ctor".
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure \
|
|
--disable-static \
|
|
--with-pic
|
|
make %{?_smp_mflags} V=1
|
|
|
|
%install
|
|
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
%fdupes -s %{buildroot}
|
|
|
|
%check
|
|
make %{?_smp_mflags} check
|
|
|
|
%post -n %{lname} -p /sbin/ldconfig
|
|
%postun -n %{lname} -p /sbin/ldconfig
|
|
|
|
%files -n %{lname}
|
|
%defattr(-, root, root)
|
|
%doc ChangeLog COPYING
|
|
%{_libdir}/libbsd.so.0*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_includedir}/bsd
|
|
%{_libdir}/libbsd.so
|
|
%{_mandir}/man3/*
|
|
%{_libdir}/pkgconfig/libbsd.pc
|
|
%{_libdir}/pkgconfig/libbsd-overlay.pc
|
|
|
|
%files ctor-static
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libbsd-ctor.a
|
|
%{_libdir}/pkgconfig/libbsd-ctor.pc
|
|
|
|
%changelog
|