Compare commits

...
Sign in to create a new pull request.

6 commits

Author SHA1 Message Date
Fedora Release Engineering
c2403492a9 dist-git conversion 2010-07-29 15:22:32 +00:00
Bill Nottingham
662e729a7a Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:17:38 +00:00
Tom Callaway
07ac1bcd33 rebuild for ppc32, license tag fix 2007-08-27 17:55:34 +00:00
Tom Callaway
74b839e2b2 Bump to 0.5.7 2007-04-10 14:54:19 +00:00
Tom Callaway
f64a7faf31 Bump to 0.5.6 2007-01-18 19:28:45 +00:00
Jeremy Katz
f3cefbbef7 Initialize branch FC-6 for wlassistant 2006-10-23 19:29:16 +00:00
5 changed files with 30 additions and 28 deletions

View file

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: wlassistant
# $Id$
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
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)

View file

@ -1 +1 @@
1f30f1384b03662a9a0b75fa777f21d6 wlassistant-0.5.5.tar.bz2
4623b498ac42839d08c631c500f18f8b wlassistant-0.5.7.tar.bz2

View file

@ -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;
}

View file

@ -1,7 +1,7 @@
Name: wlassistant
Version: 0.5.5
Release: 4%{?dist}
License: GPL
Version: 0.5.7
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
Summary: Wireless network management tool
URL: http://wlassistant.sourceforge.net
@ -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.5-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,12 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/icons/hicolor/32x32/apps/wlassistant.png
%changelog
* Tue Apr 10 2007 Tom "spot" Callaway <tcallawa@redhat.com> 0.5.7-1
- 0.5.7
* Thu Jan 18 2007 Tom "spot" Callaway <tcallawa@redhat.com> 0.5.6-1
- bump to 0.5.6
* Mon Sep 11 2006 Tom "spot" Callaway <tcallawa@redhat.com> 0.5.5-4
- fix bz 205886