From f3cefbbef749f47951284bf8a6be76739f36f577 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Mon, 23 Oct 2006 19:29:16 +0000 Subject: [PATCH 1/6] Initialize branch FC-6 for wlassistant --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..d5b6362 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +FC-6 From f64a7faf31c07690e1b7bd1f7cceedc27e0044bc Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Thu, 18 Jan 2007 19:28:45 +0000 Subject: [PATCH 2/6] Bump to 0.5.6 --- sources | 2 +- wlassistant-0.5.6-devparsercleanup.patch | 18 ++++++++++++++++++ wlassistant.spec | 9 ++++++--- 3 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 wlassistant-0.5.6-devparsercleanup.patch diff --git a/sources b/sources index 0935db7..7f0d9aa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1f30f1384b03662a9a0b75fa777f21d6 wlassistant-0.5.5.tar.bz2 +06b767d637e9a2374b07e9e079e2d40d wlassistant-0.5.6.tar.bz2 diff --git a/wlassistant-0.5.6-devparsercleanup.patch b/wlassistant-0.5.6-devparsercleanup.patch new file mode 100644 index 0000000..fb625f3 --- /dev/null +++ b/wlassistant-0.5.6-devparsercleanup.patch @@ -0,0 +1,18 @@ +--- wlassistant-0.5.6/src/wlassistant.cpp.BAD 2007-01-18 13:07:25.000000000 -0600 ++++ wlassistant-0.5.6/src/wlassistant.cpp 2007-01-18 13:09:54.000000000 -0600 +@@ -1074,8 +1074,13 @@ + QStringList ifList = QStringList(); + for (int i = 0; i < c; i++) { + o = ol[i]; +- if ( o.find("no wireless extensions")==-1 ) //string not found +- ifList << o.left(o.find(" ")); ++ if ( o.find("no wireless extensions")==-1 ) { ++ if ( o.find("Warning:") == -1 ) { ++ QString interface = o.left(o.find(" ")); ++ if ( interface.length() > 1 ) ++ ifList << interface; ++ } ++ } + } + return ifList; + } diff --git a/wlassistant.spec b/wlassistant.spec index 75aa3ec..d99f98c 100644 --- a/wlassistant.spec +++ b/wlassistant.spec @@ -1,6 +1,6 @@ Name: wlassistant -Version: 0.5.5 -Release: 4%{?dist} +Version: 0.5.6 +Release: 1%{?dist} License: GPL Group: Applications/System Summary: Wireless network management tool @@ -16,7 +16,7 @@ Requires(post): desktop-file-utils Requires(postun): desktop-file-utils Requires: usermode, wireless-tools, net-tools, dhclient Patch0: wlassistant-0.5.5-rpath.patch -Patch1: wlassistant-0.5.5-devparsercleanup.patch +Patch1: wlassistant-0.5.6-devparsercleanup.patch %description Wireless Assistant (wlassistant) is a small application that allows you to @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/32x32/apps/wlassistant.png %changelog +* Thu Jan 18 2007 Tom "spot" Callaway 0.5.6-1 +- bump to 0.5.6 + * Mon Sep 11 2006 Tom "spot" Callaway 0.5.5-4 - fix bz 205886 From 74b839e2b24cdb3df1958698ee8c7e016da6667e Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Tue, 10 Apr 2007 14:54:19 +0000 Subject: [PATCH 3/6] Bump to 0.5.7 --- sources | 2 +- wlassistant.spec | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/sources b/sources index 7f0d9aa..dc28f30 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -06b767d637e9a2374b07e9e079e2d40d wlassistant-0.5.6.tar.bz2 +4623b498ac42839d08c631c500f18f8b wlassistant-0.5.7.tar.bz2 diff --git a/wlassistant.spec b/wlassistant.spec index d99f98c..ae1ac9a 100644 --- a/wlassistant.spec +++ b/wlassistant.spec @@ -1,5 +1,5 @@ Name: wlassistant -Version: 0.5.6 +Version: 0.5.7 Release: 1%{?dist} License: GPL Group: Applications/System @@ -16,23 +16,22 @@ Requires(post): desktop-file-utils Requires(postun): desktop-file-utils Requires: usermode, wireless-tools, net-tools, dhclient Patch0: wlassistant-0.5.5-rpath.patch -Patch1: wlassistant-0.5.6-devparsercleanup.patch %description Wireless Assistant (wlassistant) is a small application that allows you to connect to wireless networks. MAIN FEATURES: -- Managed Networks Support +- WPA-PSK Encryption Support (WPA/WPA2) - WEP Encryption Support - Not Broadcasted ("hidden") ESSIDs Support - Per Network (AP) Configuration Profiles - Automatic (DHCP, both dhcpcd and dhclient) and manual configuration options. +- Connection status monitoring %prep %setup -q %patch0 -p1 -%patch1 -p1 %build PARSED_OPT_FLAGS=`echo \'$RPM_OPT_FLAGS\' | sed "s/ /',/g" | sed "s/',/', '/g"` @@ -86,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/32x32/apps/wlassistant.png %changelog +* Tue Apr 10 2007 Tom "spot" Callaway 0.5.7-1 +- 0.5.7 + * Thu Jan 18 2007 Tom "spot" Callaway 0.5.6-1 - bump to 0.5.6 From 07ac1bcd338532a9feac0f2e6bf32e0ba19516b6 Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Mon, 27 Aug 2007 17:55:34 +0000 Subject: [PATCH 4/6] rebuild for ppc32, license tag fix --- wlassistant.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wlassistant.spec b/wlassistant.spec index ae1ac9a..22a4f3d 100644 --- a/wlassistant.spec +++ b/wlassistant.spec @@ -1,7 +1,7 @@ Name: wlassistant Version: 0.5.7 Release: 1%{?dist} -License: GPL +License: GPLv2+ Group: Applications/System Summary: Wireless network management tool URL: http://wlassistant.sourceforge.net From 662e729a7a2c3a1e79814a3e497459a16864a0e2 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:17:38 +0000 Subject: [PATCH 5/6] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index afa25ee..420b722 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: wlassistant -# $Id$ +# $Id: Makefile,v 1.1 2005/09/17 20:52:08 spot Exp $ NAME := wlassistant SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From c2403492a90be27ce461354b98e138e03967177c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:22:32 +0000 Subject: [PATCH 6/6] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 420b722..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wlassistant -# $Id: Makefile,v 1.1 2005/09/17 20:52:08 spot Exp $ -NAME := wlassistant -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index d5b6362..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -FC-6