rpms/NetworkManager/F-8 nm-applet-internal-buildfixes.patch, NONE, 1.1 NetworkManager.spec, 1.224, 1.225 sources, 1.110, 1.111 NetworkManager-0.6.5-fixup-internal-applet-build.patch, 1.18, NONE disable-editing-system-connections-for-now.patch, 1.2, NONE

Daniel Williams dcbw at fedoraproject.org
Mon Nov 17 23:50:15 UTC 2008


Author: dcbw

Update of /cvs/pkgs/rpms/NetworkManager/F-8
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26889

Modified Files:
	NetworkManager.spec sources 
Added Files:
	nm-applet-internal-buildfixes.patch 
Removed Files:
	NetworkManager-0.6.5-fixup-internal-applet-build.patch 
	disable-editing-system-connections-for-now.patch 
Log Message:
* Mon Nov 17 2008 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.12.svn4295
- Fix issues reading ifcfg files
- Previously fixed:
- Doesn't send DHCP hostname (rh #469336)
- 'Auto eth0' forgets settings (rh #468612)
- DHCP renewal sometimes breaks VPN (rh #471852)
- Connection editor menu item in the wrong place (rh #471495)
- Cannot make system-wide connections (rh #471308)

* Fri Nov 14 2008 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.12.svn4293
- Update to NetworkManager 0.7.0 RC2
- Handle gateways on a different subnet from the interface
- Clear VPN secrets on connection failure to ensure they are requested again (rh #429287)
- Add support for PKCS#12 private keys (rh #462705)
- Fix mangling of VPN's default route on DHCP renew
- Fix type detection of qemu/kvm network devices (rh #466340)
- Clear up netmask/prefix confusion in the connection editor
- Make the secrets dialog go away when it's not needed
- Fix inability to add system connections (rh #471308)

* Mon Oct 27 2008 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.11.svn4229
- More reliable mobile broadband card initialization
- Handle mobile broadband PINs correctly when PPP passwords are also used
- Additional PolicyKit integration for editing system connections
- Close the applet menu if a keyring password is needed (rh #353451)



nm-applet-internal-buildfixes.patch:

--- NEW FILE nm-applet-internal-buildfixes.patch ---
diff -up NetworkManager-0.7.0/nm-applet-0.7.0/configure.ac.buildfix NetworkManager-0.7.0/nm-applet-0.7.0/configure.ac
--- NetworkManager-0.7.0/nm-applet-0.7.0/configure.ac.buildfix	2008-11-17 08:37:21.000000000 -0500
+++ NetworkManager-0.7.0/nm-applet-0.7.0/configure.ac	2008-11-17 18:04:35.000000000 -0500
@@ -68,10 +68,6 @@ PKG_CHECK_MODULES(GOBJECT, gobject-2.0)
 PKG_CHECK_MODULES(NMA,
 		[dbus-glib-1 >= 0.72
 		 glib-2.0 >= 2.10
-		 NetworkManager >= 0.7.0
-		 libnm_glib >= 0.7.0
-		 libnm-util >= 0.7.0
-		 libnm_glib_vpn >= 0.7.0
 		 gtk+-2.0 >= 2.10
 		 libglade-2.0
 		 gmodule-export-2.0
diff -up NetworkManager-0.7.0/nm-applet-0.7.0/src/connection-editor/Makefile.am.buildfix NetworkManager-0.7.0/nm-applet-0.7.0/src/connection-editor/Makefile.am
--- NetworkManager-0.7.0/nm-applet-0.7.0/src/connection-editor/Makefile.am.buildfix	2008-11-17 08:37:20.000000000 -0500
+++ NetworkManager-0.7.0/nm-applet-0.7.0/src/connection-editor/Makefile.am	2008-11-17 18:04:35.000000000 -0500
@@ -2,6 +2,10 @@ NULL=
 
 bin_PROGRAMS = nm-connection-editor
 
+INCLUDES = -I${top_srcdir}/../include \
+           -I${top_srcdir}/../libnm-util \
+           -I${top_srcdir}/../libnm-glib
+
 nm_connection_editor_CPPFLAGS =			\
 	$(NMA_CFLAGS)				\
 	-DICONDIR=\""$(datadir)/icons"\"	\
@@ -64,7 +68,10 @@ nm_connection_editor_LDADD = \
 	${top_builddir}/src/wireless-security/libwireless-security.la \
 	${top_builddir}/src/utils/libutils.la \
 	$(NMA_LIBS) \
-	$(POLKIT_LIBS)
+	$(POLKIT_LIBS) \
+	-L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+	-L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la \
+	-L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib_vpn.la
 
 if NO_POLKIT_GNOME
 nm_connection_editor_LDADD += \
diff -up NetworkManager-0.7.0/nm-applet-0.7.0/src/gconf-helpers/Makefile.am.buildfix NetworkManager-0.7.0/nm-applet-0.7.0/src/gconf-helpers/Makefile.am
--- NetworkManager-0.7.0/nm-applet-0.7.0/src/gconf-helpers/Makefile.am.buildfix	2008-05-06 11:16:09.000000000 -0400
+++ NetworkManager-0.7.0/nm-applet-0.7.0/src/gconf-helpers/Makefile.am	2008-11-17 18:04:35.000000000 -0500
@@ -1,3 +1,7 @@
+INCLUDES = -I${top_srcdir}/../include \
+           -I${top_srcdir}/../libnm-util \
+           -I${top_srcdir}/../libnm-glib
+
 noinst_LTLIBRARIES = libgconf-helpers.la
 
 libgconf_helpers_la_SOURCES =	\
@@ -19,5 +23,7 @@ libgconf_helpers_la_CPPFLAGS = \
 libgconf_helpers_la_LIBADD = \
 	$(NMA_LIBS) \
 	${top_builddir}/src/marshallers/libmarshallers.la \
-	${top_builddir}/src/utils/libutils.la
+	${top_builddir}/src/utils/libutils.la \
+	-L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+	-L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la
 
diff -up NetworkManager-0.7.0/nm-applet-0.7.0/src/Makefile.am.buildfix NetworkManager-0.7.0/nm-applet-0.7.0/src/Makefile.am
--- NetworkManager-0.7.0/nm-applet-0.7.0/src/Makefile.am.buildfix	2008-11-17 08:37:20.000000000 -0500
+++ NetworkManager-0.7.0/nm-applet-0.7.0/src/Makefile.am	2008-11-17 18:04:35.000000000 -0500
@@ -4,6 +4,10 @@ NULL=
 
 bin_PROGRAMS = nm-applet
 
+INCLUDES = -I${top_srcdir}/../include \
+           -I${top_srcdir}/../libnm-util \
+           -I${top_srcdir}/../libnm-glib
+
 nm_applet_CPPFLAGS = \
 	$(NMA_CFLAGS) \
 	$(NOTIFY_CFLAGS) \
@@ -57,7 +61,9 @@ nm_applet_LDADD = \
 	${top_builddir}/src/marshallers/libmarshallers.la \
 	${top_builddir}/src/utils/libutils.la \
 	${top_builddir}/src/gconf-helpers/libgconf-helpers.la \
-	${top_builddir}/src/wireless-security/libwireless-security.la
+	${top_builddir}/src/wireless-security/libwireless-security.la \
+	-L${top_srcdir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+	-L${top_srcdir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la
 
 gladedir = $(datadir)/nm-applet
 glade_DATA = applet.glade keyring.png
diff -up NetworkManager-0.7.0/nm-applet-0.7.0/src/utils/Makefile.am.buildfix NetworkManager-0.7.0/nm-applet-0.7.0/src/utils/Makefile.am
--- NetworkManager-0.7.0/nm-applet-0.7.0/src/utils/Makefile.am.buildfix	2008-05-19 11:02:18.000000000 -0400
+++ NetworkManager-0.7.0/nm-applet-0.7.0/src/utils/Makefile.am	2008-11-17 18:04:35.000000000 -0500
@@ -1,3 +1,7 @@
+INCLUDES = -I${top_srcdir}/../include \
+           -I${top_srcdir}/../libnm-util \
+           -I${top_srcdir}/../libnm-glib
+
 noinst_LTLIBRARIES = libutils.la
 
 libutils_la_SOURCES = \
@@ -11,4 +15,7 @@ libutils_la_CPPFLAGS = \
 	-I${top_srcdir}/src/gconf-helpers \
 	-I${top_srcdir}/src
 
-libutils_la_LIBADD = $(NMA_LIBS)
+libutils_la_LIBADD = $(NMA_LIBS) \
+	-L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+	-L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la
+
diff -up NetworkManager-0.7.0/nm-applet-0.7.0/src/wireless-security/Makefile.am.buildfix NetworkManager-0.7.0/nm-applet-0.7.0/src/wireless-security/Makefile.am
--- NetworkManager-0.7.0/nm-applet-0.7.0/src/wireless-security/Makefile.am.buildfix	2008-03-30 13:17:59.000000000 -0400
+++ NetworkManager-0.7.0/nm-applet-0.7.0/src/wireless-security/Makefile.am	2008-11-17 18:04:35.000000000 -0500
@@ -1,5 +1,9 @@
 noinst_LTLIBRARIES = libwireless-security.la
 
+INCLUDES = -I${top_srcdir}/../include \
+           -I${top_srcdir}/../libnm-util \
+           -I${top_srcdir}/../libnm-glib
+
 libwireless_security_la_SOURCES = \
 	wireless-security.h \
 	wireless-security.c \
@@ -36,5 +40,7 @@ libwireless_security_la_CPPFLAGS = \
 libwireless_security_la_LIBADD = \
 	$(NMA_LIBS) \
 	${top_builddir}/src/utils/libutils.la \
-	${top_builddir}/src/gconf-helpers/libgconf-helpers.la
+	${top_builddir}/src/gconf-helpers/libgconf-helpers.la \
+	-L${top_srcdir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \
+	-L${top_srcdir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la
 


Index: NetworkManager.spec
===================================================================
RCS file: /cvs/pkgs/rpms/NetworkManager/F-8/NetworkManager.spec,v
retrieving revision 1.224
retrieving revision 1.225
diff -u -r1.224 -r1.225
--- NetworkManager.spec	12 Oct 2008 15:54:00 -0000	1.224
+++ NetworkManager.spec	17 Nov 2008 23:49:44 -0000	1.225
@@ -9,24 +9,23 @@
 %define libnl_version 1.1
 %define ppp_version 2.2.4
 
-%define snapshot svn4175
-%define applet_snapshot svn939
+%define snapshot svn4295
+%define applet_snapshot svn1031
 
 Name: NetworkManager
 Summary: Network connection manager and user applications
 Epoch: 1
 Version: 0.7.0
-Release: 0.11.%{snapshot}%{?dist}
+Release: 0.12.%{snapshot}%{?dist}
 Group: System Environment/Base
 License: GPLv2+
 URL: http://www.gnome.org/projects/NetworkManager/
 Source: %{name}-%{version}.%{snapshot}.tar.gz
 Source1: nm-applet-%{version}.%{applet_snapshot}.tar.gz
 Source2: nm-system-settings.conf
-Patch1: NetworkManager-0.6.5-fixup-internal-applet-build.patch
+Patch1: nm-applet-internal-buildfixes.patch
 Patch2: explain-dns1-dns2.patch
-Patch10: disable-editing-system-connections-for-now.patch
-Patch11: old-dbus-glib.patch
+Patch10: old-dbus-glib.patch
 Patch20: pk-06-fixes.patch
 Patch21: preserve-f8-priorities.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -45,9 +44,9 @@
 Requires: dnsmasq
 Obsoletes: dhcdbd
 
-Conflicts: NetworkManager-vpnc < 1:0.7.0-0.10.svn4174
-Conflicts: NetworkManager-openvpn < 1:0.7.0-16.svn4174
-Conflicts: NetworkManager-pptp < 1:0.7.0-0.10.svn4174
+Conflicts: NetworkManager-vpnc < 1:0.7.0-0.11.svn4229
+Conflicts: NetworkManager-openvpn < 1:0.7.0-16.svn4229
+Conflicts: NetworkManager-pptp < 1:0.7.0-0.11.svn4229
 
 BuildRequires: dbus-devel >= %{dbus_version}
 BuildRequires: dbus-glib-devel >= %{dbus_glib_version}
@@ -57,8 +56,6 @@
 BuildRequires: libglade2-devel
 BuildRequires: openssl-devel
 BuildRequires: GConf2-devel
-BuildRequires: gnome-panel-devel
-BuildRequires: libgnomeui-devel
 BuildRequires: gnome-keyring-devel
 BuildRequires: gettext-devel
 BuildRequires: pkgconfig
@@ -100,7 +97,6 @@
 Group: Applications/Internet
 Requires: %{name} = %{epoch}:%{version}-%{release}
 Requires: %{name}-glib = %{epoch}:%{version}-%{release}
-Requires: gnome-panel
 Requires: dbus >= %{dbus_version}
 Requires: dbus-glib >= %{dbus_glib_version}
 Requires: libnotify >= 0.4.3
@@ -149,8 +145,7 @@
 tar -xzf %{SOURCE1}
 %patch1 -p1 -b .buildfix
 %patch2 -p1 -b .explain-dns1-dns2
-%patch10 -p1 -b .disable-system
-%patch11 -p1 -b .old-dbus-glib
+%patch10 -p1 -b .old-dbus-glib
 %patch20 -p1 -b .pk-06-fixes
 %patch21 -p1 -b .f8-priorities
 
@@ -307,6 +302,40 @@
 %{_datadir}/gtk-doc/html/libnm-glib/*
 
 %changelog
+* Mon Nov 17 2008 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.12.svn4295
+- Fix issues reading ifcfg files
+- Previously fixed:
+- Doesn't send DHCP hostname (rh #469336)
+- 'Auto eth0' forgets settings (rh #468612)
+- DHCP renewal sometimes breaks VPN (rh #471852)
+- Connection editor menu item in the wrong place (rh #471495)
+- Cannot make system-wide connections (rh #471308)
+
+* Fri Nov 14 2008 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.12.svn4293
+- Update to NetworkManager 0.7.0 RC2
+- Handle gateways on a different subnet from the interface
+- Clear VPN secrets on connection failure to ensure they are requested again (rh #429287)
+- Add support for PKCS#12 private keys (rh #462705)
+- Fix mangling of VPN's default route on DHCP renew
+- Fix type detection of qemu/kvm network devices (rh #466340)
+- Clear up netmask/prefix confusion in the connection editor
+- Make the secrets dialog go away when it's not needed
+- Fix inability to add system connections (rh #471308)
+
+* Mon Oct 27 2008 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.11.svn4229
+- More reliable mobile broadband card initialization
+- Handle mobile broadband PINs correctly when PPP passwords are also used
+- Additional PolicyKit integration for editing system connections
+- Close the applet menu if a keyring password is needed (rh #353451)
+
+* Tue Oct 21 2008 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.11.svn4201
+- Fix issues with hostname during anaconda installation (rh #461933)
+- Fix Ad-Hoc WPA connections (rh #461197)
+- Don't require gnome-panel or gnome-panel-devel (rh #427834)
+- Fix determination of WPA encryption capabilities on some cards
+- Fix conflicts with PPTP and vpnc plugins
+- Allow .cer file extensions when choosing certificates
+
 * Sat Oct 11 2008 Dan Williams <dcbw at redhat.com> - 1:0.7.0-0.11.svn4175
 - Fix conflicts for older PPTP VPN plugins
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/NetworkManager/F-8/sources,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- sources	12 Oct 2008 15:54:00 -0000	1.110
+++ sources	17 Nov 2008 23:49:44 -0000	1.111
@@ -1,2 +1,2 @@
-74161daaa20a15661c62cf8df58740c2  nm-applet-0.7.0.svn939.tar.gz
-e68a22872c2eabfb28f5a9678ec048c0  NetworkManager-0.7.0.svn4175.tar.gz
+01f5871f9f111409d06c78f210fc718c  NetworkManager-0.7.0.svn4295.tar.gz
+96a0b7f3e9c613148f25ccc8d81100f5  nm-applet-0.7.0.svn1031.tar.gz


--- NetworkManager-0.6.5-fixup-internal-applet-build.patch DELETED ---


--- disable-editing-system-connections-for-now.patch DELETED ---




More information about the fedora-extras-commits mailing list