- install: better fix for (rh #526519)
- install: don't build Bluetooth bits on s390 (rh #529854) - nm: wired 802.1x connection activation fixes - nm: fix crash after modifying default wired connections like "Auto eth0" - nm: ensure VPN secrets are requested again after connection failure - nm: reset 'accept_ra' to previous value after deactivating IPv6 connections - nm: ensure random netlink events don't interfere with IPv6 connection activation - ifcfg-rh: fix writing out LEAP connections - ifcfg-rh: recognize 'static' as a valid BOOTPROTO (rh #528068) - applet: fix "could not find required resources" error (rh #529766)
This commit is contained in:
parent
32ffde21cb
commit
bed27cd278
@ -167,3 +167,5 @@ NetworkManager-0.7.996.git20090928.tar.bz2
|
|||||||
network-manager-applet-0.7.996.git20090928-menu-rework.tar.bz2
|
network-manager-applet-0.7.996.git20090928-menu-rework.tar.bz2
|
||||||
NetworkManager-0.7.996.git20091002.tar.bz2
|
NetworkManager-0.7.996.git20091002.tar.bz2
|
||||||
network-manager-applet-0.7.996.git20091002.tar.bz2
|
network-manager-applet-0.7.996.git20091002.tar.bz2
|
||||||
|
NetworkManager-0.7.996.git20091021.tar.bz2
|
||||||
|
network-manager-applet-0.7.996.git20091021.tar.bz2
|
||||||
|
@ -9,14 +9,14 @@
|
|||||||
%define libnl_version 1.1
|
%define libnl_version 1.1
|
||||||
%define ppp_version 2.2.4
|
%define ppp_version 2.2.4
|
||||||
|
|
||||||
%define snapshot .git20091002
|
%define snapshot .git20091021
|
||||||
%define applet_snapshot .git20091002
|
%define applet_snapshot .git20091021
|
||||||
|
|
||||||
Name: NetworkManager
|
Name: NetworkManager
|
||||||
Summary: Network connection manager and user applications
|
Summary: Network connection manager and user applications
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 0.7.996
|
Version: 0.7.996
|
||||||
Release: 4%{snapshot}%{?dist}
|
Release: 5%{snapshot}%{?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/
|
||||||
@ -26,6 +26,7 @@ Source1: network-manager-applet-%{version}%{applet_snapshot}.tar.bz2
|
|||||||
Source2: nm-system-settings.conf
|
Source2: nm-system-settings.conf
|
||||||
Patch1: nm-applet-internal-buildfixes.patch
|
Patch1: nm-applet-internal-buildfixes.patch
|
||||||
Patch2: explain-dns1-dns2.patch
|
Patch2: explain-dns1-dns2.patch
|
||||||
|
Patch3: nm-applet-no-notifications.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
PreReq: chkconfig
|
PreReq: chkconfig
|
||||||
@ -72,8 +73,11 @@ BuildRequires: dhclient
|
|||||||
BuildRequires: gtk-doc
|
BuildRequires: gtk-doc
|
||||||
BuildRequires: libudev-devel
|
BuildRequires: libudev-devel
|
||||||
BuildRequires: libuuid-devel
|
BuildRequires: libuuid-devel
|
||||||
BuildRequires: gnome-bluetooth-libs-devel >= 2.27.7.1-1
|
|
||||||
BuildRequires: libgudev1-devel >= 143
|
BuildRequires: libgudev1-devel >= 143
|
||||||
|
# No bluetooth on s390
|
||||||
|
%ifnarch s390 s390x
|
||||||
|
BuildRequires: gnome-bluetooth-libs-devel >= 2.27.7.1-1
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
NetworkManager attempts to keep an active network connection available at all
|
NetworkManager attempts to keep an active network connection available at all
|
||||||
@ -148,6 +152,7 @@ tar -xjf %{SOURCE1}
|
|||||||
|
|
||||||
%patch1 -p1 -b .buildfix
|
%patch1 -p1 -b .buildfix
|
||||||
%patch2 -p1 -b .explain-dns1-dns2
|
%patch2 -p1 -b .explain-dns1-dns2
|
||||||
|
%patch3 -p1 -b .no-notifications
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
@ -163,15 +168,24 @@ autoreconf -i
|
|||||||
--with-crypto=nss \
|
--with-crypto=nss \
|
||||||
--enable-more-warnings=yes \
|
--enable-more-warnings=yes \
|
||||||
--with-docs=yes \
|
--with-docs=yes \
|
||||||
--with-system-ca-path=/etc/pki/tls/certs
|
--with-system-ca-path=/etc/pki/tls/certs \
|
||||||
make
|
--with-tests=yes
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
# intltool is too stupid to know that the network-manager-applet subdir
|
||||||
|
# isn't part of the NetworkManager build, so punch it in the face, otherwise
|
||||||
|
# its 'make check' hook will complain about applet translatables that aren't
|
||||||
|
# listed in NetworkManager's po/POTFILES
|
||||||
|
chmod -wrx network-manager-applet-%{version}
|
||||||
|
make check
|
||||||
|
chmod +wrx network-manager-applet-%{version}
|
||||||
|
|
||||||
# build the applet
|
# build the applet
|
||||||
pushd network-manager-applet-%{version}
|
pushd network-manager-applet-%{version}
|
||||||
autoreconf -i
|
autoreconf -i
|
||||||
intltoolize --force
|
intltoolize --force
|
||||||
%configure --disable-static --enable-more-warnings=yes
|
%configure --disable-static --enable-more-warnings=yes
|
||||||
make
|
make %{?_smp_mflags}
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -239,13 +253,17 @@ exit 0
|
|||||||
%pre gnome
|
%pre gnome
|
||||||
if [ "$1" -gt 1 ]; then
|
if [ "$1" -gt 1 ]; then
|
||||||
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
||||||
gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/nm-applet.schemas >/dev/null || :
|
if [ -f "%{_sysconfdir}/gconf/schemas/nm-applet.schemas" ]; then
|
||||||
|
gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/nm-applet.schemas >/dev/null
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%preun gnome
|
%preun gnome
|
||||||
if [ "$1" -eq 0 ]; then
|
if [ "$1" -eq 0 ]; then
|
||||||
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
||||||
gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/nm-applet.schemas >/dev/null
|
if [ -f "%{_sysconfdir}/gconf/schemas/nm-applet.schemas" ]; then
|
||||||
|
gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/nm-applet.schemas >/dev/null
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%post gnome
|
%post gnome
|
||||||
@ -254,7 +272,9 @@ if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
|||||||
gtk-update-icon-cache -q %{_datadir}/icons/hicolor
|
gtk-update-icon-cache -q %{_datadir}/icons/hicolor
|
||||||
fi
|
fi
|
||||||
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
||||||
gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/nm-applet.schemas >/dev/null
|
if [ -f "%{_sysconfdir}/gconf/schemas/nm-applet.schemas" ]; then
|
||||||
|
gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/nm-applet.schemas >/dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
%postun gnome
|
%postun gnome
|
||||||
touch --no-create %{_datadir}/icons/hicolor
|
touch --no-create %{_datadir}/icons/hicolor
|
||||||
@ -316,8 +336,10 @@ fi
|
|||||||
%{_datadir}/icons/hicolor/scalable/apps/*.svg
|
%{_datadir}/icons/hicolor/scalable/apps/*.svg
|
||||||
%{_sysconfdir}/xdg/autostart/nm-applet.desktop
|
%{_sysconfdir}/xdg/autostart/nm-applet.desktop
|
||||||
%dir %{_datadir}/gnome-vpn-properties
|
%dir %{_datadir}/gnome-vpn-properties
|
||||||
%{_libdir}/gnome-bluetooth/plugins/*
|
|
||||||
%{_sysconfdir}/gconf/schemas/nm-applet.schemas
|
%{_sysconfdir}/gconf/schemas/nm-applet.schemas
|
||||||
|
%ifnarch s390 s390x
|
||||||
|
%{_libdir}/gnome-bluetooth/plugins/*
|
||||||
|
%endif
|
||||||
|
|
||||||
%files glib
|
%files glib
|
||||||
%defattr(-,root,root,0755)
|
%defattr(-,root,root,0755)
|
||||||
@ -342,6 +364,18 @@ fi
|
|||||||
%{_datadir}/gtk-doc/html/libnm-util/*
|
%{_datadir}/gtk-doc/html/libnm-util/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 21 2009 Dan Williams <dcbw@redhat.com> - 0.7.996-5.git20091021
|
||||||
|
- install: better fix for (rh #526519)
|
||||||
|
- install: don't build Bluetooth bits on s390 (rh #529854)
|
||||||
|
- nm: wired 802.1x connection activation fixes
|
||||||
|
- nm: fix crash after modifying default wired connections like "Auto eth0"
|
||||||
|
- nm: ensure VPN secrets are requested again after connection failure
|
||||||
|
- nm: reset 'accept_ra' to previous value after deactivating IPv6 connections
|
||||||
|
- nm: ensure random netlink events don't interfere with IPv6 connection activation
|
||||||
|
- ifcfg-rh: fix writing out LEAP connections
|
||||||
|
- ifcfg-rh: recognize 'static' as a valid BOOTPROTO (rh #528068)
|
||||||
|
- applet: fix "could not find required resources" error (rh #529766)
|
||||||
|
|
||||||
* Fri Oct 2 2009 Dan Williams <dcbw@redhat.com> - 0.7.996-4.git20091002
|
* Fri Oct 2 2009 Dan Williams <dcbw@redhat.com> - 0.7.996-4.git20091002
|
||||||
- install: fix -gnome package %pre script failures (rh #526519)
|
- install: fix -gnome package %pre script failures (rh #526519)
|
||||||
- nm: fix failures validating private keys when using the NSS crypto backend
|
- nm: fix failures validating private keys when using the NSS crypto backend
|
||||||
|
30
nm-applet-no-notifications.patch
Normal file
30
nm-applet-no-notifications.patch
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
diff -up NetworkManager-0.7.996/network-manager-applet-0.7.996/nm-applet.schemas.in.foo NetworkManager-0.7.996/network-manager-applet-0.7.996/nm-applet.schemas.in
|
||||||
|
--- NetworkManager-0.7.996/network-manager-applet-0.7.996/nm-applet.schemas.in.foo 2009-10-21 17:23:29.480267635 -0700
|
||||||
|
+++ NetworkManager-0.7.996/network-manager-applet-0.7.996/nm-applet.schemas.in 2009-10-21 17:39:42.734142996 -0700
|
||||||
|
@@ -6,7 +6,7 @@
|
||||||
|
<applyto>/apps/nm-applet/disable-connected-notifications</applyto>
|
||||||
|
<owner>nm-applet</owner>
|
||||||
|
<type>bool</type>
|
||||||
|
- <default>FALSE</default>
|
||||||
|
+ <default>TRUE</default>
|
||||||
|
<locale name="C">
|
||||||
|
<short>Disable connected notifications</short>
|
||||||
|
<long>
|
||||||
|
@@ -20,7 +20,7 @@
|
||||||
|
<applyto>/apps/nm-applet/disable-disconnected-notifications</applyto>
|
||||||
|
<owner>nm-applet</owner>
|
||||||
|
<type>bool</type>
|
||||||
|
- <default>FALSE</default>
|
||||||
|
+ <default>TRUE</default>
|
||||||
|
<locale name="C">
|
||||||
|
<short>Disable disconnected notifications</short>
|
||||||
|
<long>
|
||||||
|
@@ -34,7 +34,7 @@
|
||||||
|
<applyto>/apps/nm-applet/suppress-wireless-networks-available</applyto>
|
||||||
|
<owner>nm-applet</owner>
|
||||||
|
<type>bool</type>
|
||||||
|
- <default>FALSE</default>
|
||||||
|
+ <default>TRUE</default>
|
||||||
|
<locale name="C">
|
||||||
|
<short>Suppress networks available notifications</short>
|
||||||
|
<long>
|
4
sources
4
sources
@ -1,2 +1,2 @@
|
|||||||
9993745d9f39e4ae8a6b46b5b7a5a809 NetworkManager-0.7.996.git20091002.tar.bz2
|
185b6c1d6571a489cd33806302d2815d NetworkManager-0.7.996.git20091021.tar.bz2
|
||||||
131b83c340764d648ccce44f56683394 network-manager-applet-0.7.996.git20091002.tar.bz2
|
a1aa5d658725d86dfc1744769effee7c network-manager-applet-0.7.996.git20091021.tar.bz2
|
||||||
|
Loading…
Reference in New Issue
Block a user