spec-file: update spec file and sync with contrib/rpm
Also: - no longer install '10-ibft-plugin.conf' - updade NetworkManager.conf with content from contrib/rpm
This commit is contained in:
parent
0bf1c597c3
commit
98b39fff30
@ -1,14 +1,8 @@
|
|||||||
# This configuration file, when placed into into
|
# This configuration file changes NetworkManager's behavior to
|
||||||
# /etc/NetworkManager/conf.d changes NetworkManager's behavior to
|
|
||||||
# what's expected on "traditional UNIX server" type deployments.
|
# what's expected on "traditional UNIX server" type deployments.
|
||||||
#
|
#
|
||||||
# See "man NetworkManager.conf" for more information about these
|
# See "man NetworkManager.conf" for more information about these
|
||||||
# and other keys.
|
# and other keys.
|
||||||
#
|
|
||||||
# Do not edit this file; it will be overwritten on upgrades. If you
|
|
||||||
# want to override the values here, or set additional values, you can
|
|
||||||
# do so by adding another file (eg, "99-local.conf") to this directory
|
|
||||||
# and setting keys there.
|
|
||||||
|
|
||||||
[main]
|
[main]
|
||||||
# Do not do automatic (DHCP/SLAAC) configuration on ethernet devices
|
# Do not do automatic (DHCP/SLAAC) configuration on ethernet devices
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
# This file enables the standalone 'iBFT' settings plugin to read
|
|
||||||
# iBFT information with iscsiadm and create connections from that
|
|
||||||
# data.
|
|
||||||
#
|
|
||||||
# Do not edit this file; it will be overwritten on upgrades. If you
|
|
||||||
# want to override the values here, or set additional values, you can
|
|
||||||
# do so by adding another file (eg, "99-local.conf") to this directory
|
|
||||||
# and setting keys there.
|
|
||||||
|
|
||||||
[main]
|
|
||||||
plugins+=ibft
|
|
@ -21,6 +21,23 @@
|
|||||||
[main]
|
[main]
|
||||||
#plugins=ifcfg-rh,ibft
|
#plugins=ifcfg-rh,ibft
|
||||||
|
|
||||||
|
|
||||||
[logging]
|
[logging]
|
||||||
#level=DEBUG
|
# When debugging NetworkManager, enabling debug logging is of great help.
|
||||||
#audit=yes
|
#
|
||||||
|
# Logfiles contain no passwords and little sensitive information. But please
|
||||||
|
# check before posting the file online. You can also personally hand over the
|
||||||
|
# logfile to a NM developer to treat it confidential. Meet us on #nm on freenode.
|
||||||
|
# Please post full logfiles except minimal modifications of private data.
|
||||||
|
#
|
||||||
|
# You can also change the log-level at runtime via
|
||||||
|
# $ nmcli general logging level TRACE domains ALL
|
||||||
|
# However, usually it's cleaner to enable debug logging
|
||||||
|
# in the configuration and restart NetworkManager so that
|
||||||
|
# debug logging is enabled from the start.
|
||||||
|
#
|
||||||
|
# You will find the logfiles in syslog, for example via
|
||||||
|
# $ journalctl -u NetworkManager
|
||||||
|
#
|
||||||
|
#level=TRACE
|
||||||
|
#domains=ALL
|
||||||
|
@ -8,9 +8,10 @@
|
|||||||
%global ppp_version %(rpm -q ppp-devel >/dev/null && rpm -q --qf '%%{version}' ppp-devel || echo -n bad)
|
%global ppp_version %(rpm -q ppp-devel >/dev/null && rpm -q --qf '%%{version}' ppp-devel || echo -n bad)
|
||||||
|
|
||||||
%global snapshot .beta1
|
%global snapshot .beta1
|
||||||
|
%global git_sha %{nil}
|
||||||
%global rpm_version 1.2.0
|
%global rpm_version 1.2.0
|
||||||
%global real_version 1.1.90
|
%global real_version 1.1.90
|
||||||
%global release_version 0.5
|
%global release_version 0.6
|
||||||
%global epoch_version 1
|
%global epoch_version 1
|
||||||
|
|
||||||
%global obsoletes_nmver 1:0.9.9.95-1
|
%global obsoletes_nmver 1:0.9.9.95-1
|
||||||
@ -19,52 +20,78 @@
|
|||||||
%global udev_dir %{_prefix}/lib/udev
|
%global udev_dir %{_prefix}/lib/udev
|
||||||
%global nmlibdir %{_prefix}/lib/%{name}
|
%global nmlibdir %{_prefix}/lib/%{name}
|
||||||
|
|
||||||
%global with_adsl 1
|
%global _hardened_build 1
|
||||||
%global with_bluetooth 1
|
|
||||||
%global with_team 1
|
%global git_sha_version %(test -n '%{git_sha}' && echo '.%{git_sha}')
|
||||||
%global with_wifi 1
|
|
||||||
%global with_wwan 1
|
###############################################################################
|
||||||
%global with_nmtui 1
|
|
||||||
%global regen_docs 1
|
%bcond_without adsl
|
||||||
|
|
||||||
|
%global default_with_bluetooth 1
|
||||||
|
%global default_with_wwan 1
|
||||||
|
|
||||||
# ModemManager on Fedora < 20 too old for Bluetooth && wwan
|
# ModemManager on Fedora < 20 too old for Bluetooth && wwan
|
||||||
%if (0%{?fedora} && 0%{?fedora} < 20)
|
%if (0%{?fedora} && 0%{?fedora} < 20)
|
||||||
%global with_bluetooth 0
|
%global default_with_bluetooth 0
|
||||||
%global with_wwan 0
|
%global default_with_wwan 0
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Bluetooth requires the WWAN plugin
|
# Bluetooth requires the WWAN plugin
|
||||||
%if 0%{?with_bluetooth}
|
%if 0%{?default_with_bluetooth}
|
||||||
%global with_wwan 1
|
%global default_with_wwan 1
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?default_with_bluetooth}
|
||||||
|
%bcond_without bluetooth
|
||||||
|
%else
|
||||||
|
%bcond_with bluetooth
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?default_with_wwan}
|
||||||
|
%bcond_without wwan
|
||||||
|
%else
|
||||||
|
%bcond_with wwan
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if (0%{?fedora} && 0%{?fedora} <= 19)
|
%if (0%{?fedora} && 0%{?fedora} <= 19)
|
||||||
%global with_team 0
|
%bcond_with team
|
||||||
|
%else
|
||||||
|
%bcond_without team
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?with_bluetooth} || (0%{?with_wwan} && (0%{?rhel} || (0%{?fedora} && 0%{?fedora} > 19)))
|
%bcond_without wifi
|
||||||
|
|
||||||
|
%bcond_without nmtui
|
||||||
|
%bcond_without regen_docs
|
||||||
|
%bcond_with debug
|
||||||
|
%bcond_without test
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
%if %{with bluetooth} || (%{with wwan} && (0%{?rhel} || (0%{?fedora} && 0%{?fedora} > 19)))
|
||||||
%global with_modem_manager_1 1
|
%global with_modem_manager_1 1
|
||||||
%else
|
%else
|
||||||
%global with_modem_manager_1 0
|
%global with_modem_manager_1 0
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%global _hardened_build 1
|
###############################################################################
|
||||||
|
|
||||||
Name: NetworkManager
|
Name: NetworkManager
|
||||||
Summary: Network connection manager and user applications
|
Summary: Network connection manager and user applications
|
||||||
Epoch: %{epoch_version}
|
Epoch: %{epoch_version}
|
||||||
Version: %{rpm_version}
|
Version: %{rpm_version}
|
||||||
Release: %{release_version}%{snapshot}%{?dist}.1
|
Release: %{release_version}%{snapshot}%{git_sha_version}%{?dist}
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: http://www.gnome.org/projects/NetworkManager/
|
URL: http://www.gnome.org/projects/NetworkManager/
|
||||||
|
|
||||||
|
|
||||||
Source: https://download.gnome.org/sources/NetworkManager/1.1/%{name}-%{real_version}.tar.xz
|
Source: https://download.gnome.org/sources/NetworkManager/1.1/%{name}-%{real_version}.tar.xz
|
||||||
Source1: NetworkManager.conf
|
Source1: NetworkManager.conf
|
||||||
Source2: 00-server.conf
|
Source2: 00-server.conf
|
||||||
Source3: 10-ibft-plugin.conf
|
Source3: 20-connectivity-fedora.conf
|
||||||
Source4: 20-connectivity-fedora.conf
|
|
||||||
|
#Patch1: 0001-some.patch
|
||||||
|
|
||||||
Requires(post): systemd
|
Requires(post): systemd
|
||||||
Requires(preun): systemd
|
Requires(preun): systemd
|
||||||
@ -109,7 +136,7 @@ BuildRequires: nss-devel >= 3.11.7
|
|||||||
BuildRequires: dhclient
|
BuildRequires: dhclient
|
||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
BuildRequires: audit-libs-devel
|
BuildRequires: audit-libs-devel
|
||||||
%if %{regen_docs}
|
%if %{with regen_docs}
|
||||||
BuildRequires: gtk-doc
|
BuildRequires: gtk-doc
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: libudev-devel
|
BuildRequires: libudev-devel
|
||||||
@ -117,7 +144,7 @@ BuildRequires: libuuid-devel
|
|||||||
BuildRequires: libgudev1-devel >= 143
|
BuildRequires: libgudev1-devel >= 143
|
||||||
BuildRequires: vala-tools
|
BuildRequires: vala-tools
|
||||||
BuildRequires: iptables
|
BuildRequires: iptables
|
||||||
%if 0%{?with_bluetooth}
|
%if %{with bluetooth}
|
||||||
BuildRequires: bluez-libs-devel
|
BuildRequires: bluez-libs-devel
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: systemd >= 200-3 systemd-devel
|
BuildRequires: systemd >= 200-3 systemd-devel
|
||||||
@ -126,7 +153,7 @@ BuildRequires: libndp-devel >= 1.0
|
|||||||
%if 0%{?with_modem_manager_1}
|
%if 0%{?with_modem_manager_1}
|
||||||
BuildRequires: ModemManager-glib-devel >= 1.0
|
BuildRequires: ModemManager-glib-devel >= 1.0
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?with_nmtui}
|
%if %{with nmtui}
|
||||||
BuildRequires: newt-devel
|
BuildRequires: newt-devel
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: /usr/bin/dbus-launch
|
BuildRequires: /usr/bin/dbus-launch
|
||||||
@ -144,7 +171,7 @@ Ethernet, Bridge, Bond, VLAN, Team, InfiniBand, Wi-Fi, mobile broadband
|
|||||||
services.
|
services.
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?with_adsl}
|
%if %{with adsl}
|
||||||
%package adsl
|
%package adsl
|
||||||
Summary: ADSL device plugin for NetworkManager
|
Summary: ADSL device plugin for NetworkManager
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@ -157,7 +184,7 @@ This package contains NetworkManager support for ADSL devices.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?with_bluetooth}
|
%if %{with bluetooth}
|
||||||
%package bluetooth
|
%package bluetooth
|
||||||
Summary: Bluetooth device plugin for NetworkManager
|
Summary: Bluetooth device plugin for NetworkManager
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@ -172,7 +199,7 @@ This package contains NetworkManager support for Bluetooth devices.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?with_team}
|
%if 0%{with team}
|
||||||
%package team
|
%package team
|
||||||
Summary: Team device plugin for NetworkManager
|
Summary: Team device plugin for NetworkManager
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@ -187,7 +214,7 @@ This package contains NetworkManager support for team devices.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?with_wifi}
|
%if %{with wifi}
|
||||||
%package wifi
|
%package wifi
|
||||||
Summary: Wifi plugin for NetworkManager
|
Summary: Wifi plugin for NetworkManager
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@ -200,7 +227,7 @@ This package contains NetworkManager support for Wifi and OLPC devices.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?with_wwan}
|
%if %{with wwan}
|
||||||
%package wwan
|
%package wwan
|
||||||
Summary: Mobile broadband device plugin for NetworkManager
|
Summary: Mobile broadband device plugin for NetworkManager
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@ -303,9 +330,11 @@ by nm-connection-editor and nm-applet in a non-graphical environment.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n NetworkManager-%{real_version}
|
%setup -q -n NetworkManager-%{real_version}
|
||||||
|
|
||||||
|
#%patch1 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
%if %{regen_docs}
|
%if %{with regen_docs}
|
||||||
# back up pristine docs and use them instead of generated ones, which make
|
# back up pristine docs and use them instead of generated ones, which make
|
||||||
# multilib unhappy due to different timestamps in the generated content
|
# multilib unhappy due to different timestamps in the generated content
|
||||||
cp -R docs ORIG-docs
|
cp -R docs ORIG-docs
|
||||||
@ -319,6 +348,10 @@ intltoolize --automake --copy --force
|
|||||||
--with-dhcpcd=no \
|
--with-dhcpcd=no \
|
||||||
--with-crypto=nss \
|
--with-crypto=nss \
|
||||||
--enable-more-warnings=error \
|
--enable-more-warnings=error \
|
||||||
|
%if %{with debug}
|
||||||
|
--with-more-logging \
|
||||||
|
--with-more-asserts=10000 \
|
||||||
|
%endif
|
||||||
--enable-ppp=yes \
|
--enable-ppp=yes \
|
||||||
--with-libaudit=yes-disabled-by-default \
|
--with-libaudit=yes-disabled-by-default \
|
||||||
%if 0%{?with_modem_manager_1}
|
%if 0%{?with_modem_manager_1}
|
||||||
@ -326,7 +359,7 @@ intltoolize --automake --copy --force
|
|||||||
%else
|
%else
|
||||||
--with-modem-manager-1=no \
|
--with-modem-manager-1=no \
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?with_wifi}
|
%if %{with wifi}
|
||||||
--enable-wifi=yes \
|
--enable-wifi=yes \
|
||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
--with-wext=yes \
|
--with-wext=yes \
|
||||||
@ -337,12 +370,12 @@ intltoolize --automake --copy --force
|
|||||||
--enable-wifi=no \
|
--enable-wifi=no \
|
||||||
%endif
|
%endif
|
||||||
--enable-vala=yes \
|
--enable-vala=yes \
|
||||||
%if 0%{?regen_docs}
|
%if %{with regen_docs}
|
||||||
--enable-gtk-doc \
|
--enable-gtk-doc \
|
||||||
%else
|
%else
|
||||||
--disable-gtk-doc \
|
--disable-gtk-doc \
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?with_team}
|
%if %{with team}
|
||||||
--enable-teamdctl=yes \
|
--enable-teamdctl=yes \
|
||||||
%else
|
%else
|
||||||
--enable-teamdctl=no \
|
--enable-teamdctl=no \
|
||||||
@ -378,7 +411,6 @@ mkdir -p %{buildroot}%{nmlibdir}/conf.d
|
|||||||
mkdir -p %{buildroot}%{nmlibdir}/VPN
|
mkdir -p %{buildroot}%{nmlibdir}/VPN
|
||||||
cp %{SOURCE2} %{buildroot}%{nmlibdir}/conf.d/
|
cp %{SOURCE2} %{buildroot}%{nmlibdir}/conf.d/
|
||||||
cp %{SOURCE3} %{buildroot}%{nmlibdir}/conf.d/
|
cp %{SOURCE3} %{buildroot}%{nmlibdir}/conf.d/
|
||||||
cp %{SOURCE4} %{buildroot}%{nmlibdir}/conf.d/
|
|
||||||
|
|
||||||
# create a VPN directory
|
# create a VPN directory
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/NetworkManager/VPN
|
mkdir -p %{buildroot}%{_sysconfdir}/NetworkManager/VPN
|
||||||
@ -395,7 +427,8 @@ mkdir -p %{buildroot}%{_sysconfdir}/%{name}/dispatcher.d/pre-up.d
|
|||||||
mkdir -p %{buildroot}%{_sysconfdir}/%{name}/dispatcher.d/pre-down.d
|
mkdir -p %{buildroot}%{_sysconfdir}/%{name}/dispatcher.d/pre-down.d
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/%{name}/dispatcher.d/no-wait.d
|
mkdir -p %{buildroot}%{_sysconfdir}/%{name}/dispatcher.d/no-wait.d
|
||||||
cp examples/dispatcher/10-ifcfg-rh-routes.sh %{buildroot}%{_sysconfdir}/%{name}/dispatcher.d/
|
cp examples/dispatcher/10-ifcfg-rh-routes.sh %{buildroot}%{_sysconfdir}/%{name}/dispatcher.d/
|
||||||
ln -s ../10-ifcfg-rh-routes.sh %{buildroot}%{_sysconfdir}/%{name}/dispatcher.d/pre-up.d/
|
ln -s ../no-wait.d/10-ifcfg-rh-routes.sh %{buildroot}%{_sysconfdir}/%{name}/dispatcher.d/pre-up.d/
|
||||||
|
ln -s ../10-ifcfg-rh-routes.sh %{buildroot}%{_sysconfdir}/%{name}/dispatcher.d/no-wait.d/
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_datadir}/gnome-vpn-properties
|
mkdir -p %{buildroot}%{_datadir}/gnome-vpn-properties
|
||||||
|
|
||||||
@ -407,7 +440,7 @@ rm -f %{buildroot}%{_libdir}/*.la
|
|||||||
rm -f %{buildroot}%{_libdir}/pppd/%{ppp_version}/*.la
|
rm -f %{buildroot}%{_libdir}/pppd/%{ppp_version}/*.la
|
||||||
rm -f %{buildroot}%{_libdir}/NetworkManager/*.la
|
rm -f %{buildroot}%{_libdir}/NetworkManager/*.la
|
||||||
|
|
||||||
%if %{regen_docs}
|
%if %{with regen_docs}
|
||||||
# install the pristine docs
|
# install the pristine docs
|
||||||
cp ORIG-docs/libnm-glib/html/* %{buildroot}%{_datadir}/gtk-doc/html/libnm-glib/
|
cp ORIG-docs/libnm-glib/html/* %{buildroot}%{_datadir}/gtk-doc/html/libnm-glib/
|
||||||
cp ORIG-docs/libnm-util/html/* %{buildroot}%{_datadir}/gtk-doc/html/libnm-util/
|
cp ORIG-docs/libnm-util/html/* %{buildroot}%{_datadir}/gtk-doc/html/libnm-util/
|
||||||
@ -415,7 +448,9 @@ cp ORIG-docs/libnm-util/html/* %{buildroot}%{_datadir}/gtk-doc/html/libnm-util/
|
|||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
%if %{with test}
|
||||||
make check
|
make check
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
@ -461,6 +496,7 @@ fi
|
|||||||
%dir %{_sysconfdir}/%{name}/dispatcher.d/pre-down.d
|
%dir %{_sysconfdir}/%{name}/dispatcher.d/pre-down.d
|
||||||
%dir %{_sysconfdir}/%{name}/dispatcher.d/pre-up.d
|
%dir %{_sysconfdir}/%{name}/dispatcher.d/pre-up.d
|
||||||
%dir %{_sysconfdir}/%{name}/dispatcher.d/no-wait.d
|
%dir %{_sysconfdir}/%{name}/dispatcher.d/no-wait.d
|
||||||
|
%{_sysconfdir}/%{name}/dispatcher.d/no-wait.d/10-ifcfg-rh-routes.sh
|
||||||
%{_sysconfdir}/%{name}/dispatcher.d/pre-up.d/10-ifcfg-rh-routes.sh
|
%{_sysconfdir}/%{name}/dispatcher.d/pre-up.d/10-ifcfg-rh-routes.sh
|
||||||
%dir %{_sysconfdir}/%{name}/dnsmasq.d
|
%dir %{_sysconfdir}/%{name}/dnsmasq.d
|
||||||
%dir %{_sysconfdir}/%{name}/VPN
|
%dir %{_sysconfdir}/%{name}/VPN
|
||||||
@ -471,14 +507,13 @@ fi
|
|||||||
%{_libexecdir}/nm-iface-helper
|
%{_libexecdir}/nm-iface-helper
|
||||||
%dir %{_libdir}/NetworkManager
|
%dir %{_libdir}/NetworkManager
|
||||||
%{_libdir}/NetworkManager/libnm-settings-plugin*.so
|
%{_libdir}/NetworkManager/libnm-settings-plugin*.so
|
||||||
%if 0%{?with_nmtui}
|
%if %{with nmtui}
|
||||||
%exclude %{_mandir}/man1/nmtui*
|
%exclude %{_mandir}/man1/nmtui*
|
||||||
%endif
|
%endif
|
||||||
%dir %{_sysconfdir}/%{name}
|
%dir %{_sysconfdir}/%{name}
|
||||||
%dir %{_sysconfdir}/%{name}/conf.d
|
%dir %{_sysconfdir}/%{name}/conf.d
|
||||||
%dir %{nmlibdir}
|
%dir %{nmlibdir}
|
||||||
%dir %{nmlibdir}/conf.d
|
%dir %{nmlibdir}/conf.d
|
||||||
%{nmlibdir}/conf.d/10-ibft-plugin.conf
|
|
||||||
%dir %{nmlibdir}/VPN
|
%dir %{nmlibdir}/VPN
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
%{_mandir}/man5/*
|
%{_mandir}/man5/*
|
||||||
@ -500,29 +535,29 @@ fi
|
|||||||
%doc NEWS AUTHORS README CONTRIBUTING TODO
|
%doc NEWS AUTHORS README CONTRIBUTING TODO
|
||||||
%license COPYING
|
%license COPYING
|
||||||
|
|
||||||
%if 0%{?with_adsl}
|
%if %{with adsl}
|
||||||
%files adsl
|
%files adsl
|
||||||
%{_libdir}/%{name}/libnm-device-plugin-adsl.so
|
%{_libdir}/%{name}/libnm-device-plugin-adsl.so
|
||||||
%else
|
%else
|
||||||
%exclude %{_libdir}/%{name}/libnm-device-plugin-adsl.so
|
%exclude %{_libdir}/%{name}/libnm-device-plugin-adsl.so
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?with_bluetooth}
|
%if %{with bluetooth}
|
||||||
%files bluetooth
|
%files bluetooth
|
||||||
%{_libdir}/%{name}/libnm-device-plugin-bluetooth.so
|
%{_libdir}/%{name}/libnm-device-plugin-bluetooth.so
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?with_team}
|
%if %{with team}
|
||||||
%files team
|
%files team
|
||||||
%{_libdir}/%{name}/libnm-device-plugin-team.so
|
%{_libdir}/%{name}/libnm-device-plugin-team.so
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?with_wifi}
|
%if %{with wifi}
|
||||||
%files wifi
|
%files wifi
|
||||||
%{_libdir}/%{name}/libnm-device-plugin-wifi.so
|
%{_libdir}/%{name}/libnm-device-plugin-wifi.so
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if 0%{?with_wwan}
|
%if %{with wwan}
|
||||||
%files wwan
|
%files wwan
|
||||||
%{_libdir}/%{name}/libnm-device-plugin-wwan.so
|
%{_libdir}/%{name}/libnm-device-plugin-wwan.so
|
||||||
%{_libdir}/%{name}/libnm-wwan.so
|
%{_libdir}/%{name}/libnm-wwan.so
|
||||||
@ -590,7 +625,7 @@ fi
|
|||||||
%dir %{nmlibdir}/conf.d
|
%dir %{nmlibdir}/conf.d
|
||||||
%{nmlibdir}/conf.d/00-server.conf
|
%{nmlibdir}/conf.d/00-server.conf
|
||||||
|
|
||||||
%if 0%{?with_nmtui}
|
%if %{with nmtui}
|
||||||
%files tui
|
%files tui
|
||||||
%{_bindir}/nmtui
|
%{_bindir}/nmtui
|
||||||
%{_bindir}/nmtui-edit
|
%{_bindir}/nmtui-edit
|
||||||
@ -600,6 +635,9 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 3 2016 Thomas Haller <thaller@redhat.com> - 1:1.2.0-0.6.beta1
|
||||||
|
- specfile: remove no longer needed 10-ibft-plugin.conf and sync with contrib/rpm
|
||||||
|
|
||||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.0-0.5.beta1.1
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.0-0.5.beta1.1
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user