SHA256
1
0
forked from pool/libteam
libteam/libteam.spec
Stephan Kulow a378863525 Accepting request 141363 from devel:libraries:c_c++
- Update to git snapshot 0+git368 [a62cd9309607c6d72d46ef68403a730a6367b827] -
  no changes summary provided by upstream
- Install systemd service file for teamd
- Build and install python bindings

OBS-URL: https://build.opensuse.org/request/show/141363
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libteam?expand=0&rev=3
2012-11-17 06:25:41 +00:00

167 lines
4.6 KiB
RPMSpec

#
# spec file for package libteam
#
# Copyright (c) 2012 SUSE LINUX Products 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/
#
Name: libteam
%define lname libteam-0p0
Summary: Utilities for controlling 802.1AX team network device
License: LGPL-2.1+
Group: System/Kernel
Version: 0.0+git368
Release: 0
Url: https://fedorahosted.org/libteam/
#Git-Web: https://github.com/jpirko/libteam
#Git-Clone: git://github.com/jpirko/libteam
Source: %name-%version.tar.xz
Patch1: soversion.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
BuildRequires: pkgconfig
BuildRequires: python-devel
BuildRequires: swig
BuildRequires: xz
BuildRequires: pkgconfig(dbus-1)
BuildRequires: pkgconfig(jansson)
BuildRequires: pkgconfig(libdaemon)
BuildRequires: pkgconfig(libnl-3.0) >= 3.2.0
BuildRequires: pkgconfig(libnl-cli-3.0) >= 3.2.0
BuildRequires: pkgconfig(libnl-genl-3.0) >= 3.2.0
%if 0%{?suse_version} >= 1220
BuildRequires: systemd
%endif
%description
A library which is the user-space counterpart for the team network
driver, and provides an API to control them.
Linux kernel 3.3 and above offer a so-called "team" network driver -
a lightweight mechanism for bonding multiple interfaces together.
It is a userspace-driven alternative to the existing bonding driver.
%package -n %lname
Summary: Library for controlling 802.1AX team network device
Group: System/Libraries
%description -n %lname
A library which is the user-space counterpart for the team network
driver, and provides an API to control them.
Linux kernel 3.3 and above offer a so-called "team" network driver -
a lightweight mechanism for bonding multiple interfaces together.
It is a userspace-driven alternative to the existing bonding driver.
%package devel
Summary: Development files for libteam
Group: Development/Libraries/C and C++
Requires: %lname = %version
%description devel
A library which is the user-space counterpart for the team network
driver, and provides an API to control them.
This package contains the development headers for the library found
in %lname.
%package tools
Summary: Utilities for controlling team network devices
Group: System/Daemons
%description tools
This package contains frontends to libteam that allow changing
the (team-specific) properties of team devices.
(The general configuration of network devices can be done
through using iproute.)
Linux kernel 3.3 and above offer a so-called "team" network driver -
a lightweight mechanism for bonding multiple interfaces together.
It is a userspace-driven alternative to the existing bonding driver.
%package -n python-libteam
Summary: Python bindings for libteam
Group: Development/Languages/Python
%description -n python-libteam
This package should be installed if you want to develop Python
programs that will manipulate team network devices.
%prep
%setup -qn %name
%patch -P 1 -p1
%build
if [ ! -e configure ]; then
autoreconf -fi
fi
%configure --includedir="%_includedir/%name-%version" --bindir="%_sbindir" \
--disable-static
# Use CFLAGS= to kill -Werror
make %{?_smp_mflags} CFLAGS="%optflags"
pushd binding/python/;
python ./setup.py build;
popd;
%install
b="%buildroot";
make install DESTDIR="$b";
pushd binding/python/;
python ./setup.py install --root="$b" --prefix="%_prefix";
popd;
rm -f "$b/%_libdir"/*.la
%if 0%{?_unitdir:1}
mkdir -p "$b/%_unitdir";
install -pm0644 teamd/redhat/systemd/*.service "$b/%_unitdir/";
%endif
%check
make check
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%defattr(-,root,root)
%_libdir/libteam-0p.so.0*
%files devel
%defattr(-,root,root)
%_includedir/%name-%version
%_libdir/libteam.so
%_libdir/pkgconfig/libteam.pc
%files tools
%defattr(-,root,root)
%_sbindir/team*
%_mandir/man5/*
%_mandir/man8/*
%if 0%{?_unitdir:1}
%_unitdir
%endif
%files -n python-libteam
%defattr(-,root,root)
%python_sitearch/*
%changelog