debian/0000775000000000000000000000000012265217230007170 5ustar debian/wicd-gtk.postrm0000664000000000000000000000161512265216763012164 0ustar #!/bin/sh # postrm script for wicd-gtk # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) find /usr/share/wicd/ \( -name "*.pyo" -o -name "*.pyc" \) -delete || true ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/docs0000664000000000000000000000002312265216763010050 0ustar debian/NEWS.Debian debian/wicd-curses.manpages0000664000000000000000000000002212265216763013141 0ustar man/wicd-curses.8 debian/wicd-cli.manpages0000664000000000000000000000002212265216763012404 0ustar debian/wicd-cli.8 debian/wicd-cli.80000664000000000000000000000313612265216763010771 0ustar .TH wicd-cli 8 "Dec 2009" .SH NAME wicd-cli \- command-line interface to wicd .SH SYNOPSIS .B wicd-cli .RI [ options ] .SH DESCRIPTION This manual page documents briefly the \fBwicd-cli\fP command. .PP \fBwicd-cli\fP is a scriptable command-line only "client" for \fBwicd\fP. .SH OPTIONS .TP .B \-h, \-\-help Show summary of options. .TP \fB\-n \fInetwork-id\fB, \-\-network=\fInetwork-id\fR Specify which network \fBwicd-cli\fR should act on. .TP \fB\-p \fIproperty\fB, \-\-network\-property=\fIproperty\fR Show \fIproperty\fR from network details. .TP \fB\-s \fIvalue\fB, \-\-set\-to=\fIvalue\fR Set selected \fIproperty\fR to \fIvalue\fR .TP \fB\-m \fIname\fR, \fB\-\-name=\fIname\fR Set the name for the profile to load/save to \fIname\fR. .TP .B \-S, \-\-scan Scan available wireless networks. .TP .B \-w, \-\-save Save the network connection profile. .TP .B \-l, \-\-list\-networks List the networks WICD has in its cache. .TP .B \-d, \-\-network\-details Show details of selected network. .TP .B \-x, \-\-disconnect Disconnect from the current network. .TP .B \-c, \-\-connect Connect to the selected network. .TP .B \-e, \-\-list\-encryption\-types View the available encryption templates WICD can use. .TP .B \-y, \-\-wireless Use the wireless interface. .TP .B \-z, \-\-wired Use the wired interface. .TP .B \-o, \-\-load\-profile Load a wired connection profile. .SH SEE ALSO .BR wicd (1), .BR wicd-client (1), .BR wicd-gtk (8), .BR wicd-curses (8) .SH AUTHOR wicd-cli was written by Ronuk Raval. .PP This manual page was written by David Paleino , for the Debian project (and may be used by others). debian/compat0000664000000000000000000000000212265216763010400 0ustar 7 debian/bug-control0000664000000000000000000000011012265216763011350 0ustar report-with: wicd wicd-cli wicd-gtk wicd-curses wicd-daemon python-wicd debian/wicd-gtk.install0000664000000000000000000000030512265216763012301 0ustar etc/xdg/autostart/wicd-tray.desktop usr/bin/wicd-client usr/bin/wicd-gtk usr/share/applications/ usr/share/icons/hicolor/ usr/share/pixmaps/ usr/share/wicd/gtk/ usr/share/man/nl/man1/wicd-client.1 debian/wicd-cli.install0000664000000000000000000000004712265216763012266 0ustar /usr/share/wicd/cli/ /usr/bin/wicd-cli debian/wicd-gtk.menu0000664000000000000000000000024512265216763011602 0ustar ?package(wicd-gtk):\ needs="X11" \ section="Applications/Network/Monitoring" \ title="WICD" command="/usr/bin/wicd-gtk" \ icon="/usr/share/pixmaps/wicd-gtk.xpm" debian/patches/0000775000000000000000000000000012265217227010625 5ustar debian/patches/04-fix_resolv.conf_backup-restore.patch0000664000000000000000000000311212265216763020202 0ustar From: David Paleino Subject: fix handling of resolv.conf when it's a symlink Forwarded: not-needed Origin: upstream Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691973 --- wicd/wicd-daemon.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) --- wicd.orig/wicd/wicd-daemon.py +++ wicd/wicd/wicd-daemon.py @@ -1703,7 +1703,11 @@ def main(argv): # don't back up if .orig exists, probably there cause # wicd exploded if not os.path.exists(backup_location): - shutil.copy2('/etc/resolv.conf', backup_location) + if os.path.islink('/etc/resolv.conf'): + dest = os.readlink('/etc/resolv.conf') + os.symlink(dest, backup_location) + else: + shutil.copy2('/etc/resolv.conf', backup_location) os.chmod(backup_location, 0644) except IOError: print 'error backing up resolv.conf' @@ -1750,7 +1754,13 @@ def main(argv): # restore resolv.conf on quit try: - shutil.move(wpath.varlib + 'resolv.conf.orig', '/etc/resolv.conf') + backup_location = wpath.varlib + 'resolv.conf.orig' + if os.path.islink(backup_location): + dest = os.readlink(backup_location) + os.remove('/etc/resolv.conf') + os.symlink(dest, '/etc/resolv.conf') + else: + shutil.move(backup_location, '/etc/resolv.conf') os.chmod('/etc/resolv.conf', 0644) except IOError: print 'error restoring resolv.conf' debian/patches/series0000664000000000000000000000041012265216763012041 0ustar 01-remove_unused_icons.patch 02-workaround_dhclient_bug.patch 03-fix_sanitation_bug.patch 04-fix_resolv.conf_backup-restore.patch 26-support_etc-network_scripts.patch 32-prefer_gksu.patch 33-focus_property.patch 34-fix-resolv.conf_backup-restore-broken-link.patch debian/patches/34-fix-resolv.conf_backup-restore-broken-link.patch0000664000000000000000000000143512265216763022342 0ustar ## Description: fix /etc/resolv.conf resolution when it's a relative sysmlink ## Forwarded: yes https://code.launchpad.net/~chilicuil/ubuntu/trusty/wicd/fix-1132529/+merge/197998 ## Bug: https://bugs.launchpad.net/wicd/+bug/1193856 ## Author: Tommy (mesilliac) --- a/wicd/wicd-daemon.py +++ b/wicd/wicd-daemon.py @@ -1702,7 +1702,7 @@ def main(argv): backup_location = wpath.varlib + 'resolv.conf.orig' # don't back up if .orig exists, probably there cause # wicd exploded - if not os.path.exists(backup_location): + if not os.path.exists(backup_location) and not os.path.islink(backup_location): if os.path.islink('/etc/resolv.conf'): dest = os.readlink('/etc/resolv.conf') os.symlink(dest, backup_location) debian/patches/02-workaround_dhclient_bug.patch0000664000000000000000000000126212265216763016774 0ustar From: David Paleino Subject: workaround dhclient's bug changing hostname and not taking the configfile passed with -cf into account (see #609851). Origin: vendor Forwarded: no --- wicd/wnettools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- wicd.orig/wicd/wnettools.py +++ wicd/wicd/wnettools.py @@ -285,7 +285,7 @@ class BaseInterface(object): client_dict = { "dhclient" : - {'connect' : r"%(cmd)s -cf %(dhclientconf)s %(iface)s", + {'connect' : r"%(cmd)s %(iface)s", 'release' : r"%(cmd)s -r %(iface)s", 'id' : misc.DHCLIENT, }, debian/patches/26-support_etc-network_scripts.patch0000664000000000000000000000702212265216763017705 0ustar From: David Paleino Subject: support /etc/network/ hierarchy for connection scripts Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=579497 Forwarded: no --- wicd/networking.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) --- wicd.orig/wicd/networking.py +++ wicd/wicd/networking.py @@ -211,6 +211,12 @@ class Controller(object): mac = 'X' if name in (None, ''): name = 'X' + os.putenv("MODE", "stop") + os.putenv("VERBOSITY", str(int(self.debug))) + os.putenv("IFACE", iface.iface) + os.putenv("LOGICAL", iface.iface) + os.putenv("PHASE", "pre-down") + misc.ExecuteScripts('/etc/network/if-down.d/', self.debug) misc.ExecuteScripts(wpath.predisconnectscripts, self.debug, extra_parameters=(nettype, name, mac)) if self.pre_disconnect_script: @@ -224,6 +230,8 @@ class Controller(object): iface.FlushRoutes() iface.Down() iface.Up() + os.putenv("PHASE", "post-down") + misc.ExecuteScripts('/etc/network/if-post-down.d/', self.debug) misc.ExecuteScripts(wpath.postdisconnectscripts, self.debug, extra_parameters=(nettype, name, mac)) if self.post_disconnect_script: @@ -880,6 +888,12 @@ class WirelessConnectThread(ConnectThrea self.is_connecting = True # Run pre-connection script. + os.putenv("MODE", "start") + os.putenv("VERBOSITY", str(int(self.debug))) + os.putenv("IFACE", wiface.iface) + os.putenv("LOGICAL", wiface.iface) + os.putenv("PHASE", "pre-up") + self.run_global_scripts_if_needed('/etc/network/if-pre-up.d/') self.run_global_scripts_if_needed(wpath.preconnectscripts, extra_parameters=('wireless', self.network['essid'], @@ -929,6 +943,8 @@ class WirelessConnectThread(ConnectThrea self.verify_association(wiface) # Run post-connection script. + os.putenv("PHASE", "post-up") + self.run_global_scripts_if_needed('/etc/network/if-up.d/') self.run_global_scripts_if_needed(wpath.postconnectscripts, extra_parameters=('wireless', self.network['essid'], @@ -1135,6 +1151,12 @@ class WiredConnectThread(ConnectThread): self.is_connecting = True # Run pre-connection script. + os.putenv("MODE", "start") + os.putenv("VERBOSITY", str(int(self.debug))) + os.putenv("IFACE", liface.iface) + os.putenv("LOGICAL", liface.iface) + os.putenv("PHASE", "pre-up") + self.run_global_scripts_if_needed('/etc/network/if-pre-up.d/') self.run_global_scripts_if_needed(wpath.preconnectscripts, extra_parameters=('wired', 'wired', self.network['profilename']) @@ -1162,6 +1184,8 @@ class WiredConnectThread(ConnectThread): self.set_dns_addresses(liface) # Run post-connection script. + os.putenv("PHASE", "post-up") + self.run_global_scripts_if_needed('/etc/network/if-up.d/') self.run_global_scripts_if_needed(wpath.postconnectscripts, extra_parameters=('wired', 'wired', self.network['profilename']) debian/patches/33-focus_property.patch0000664000000000000000000000546512265216763015172 0ustar Description: fix AttributeError for self.focus property Forwarded: yes wicd-devel@lists.sourceforge.net Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=709120 Author: Isis Agora Lovecruft Reviewed-By: Axel Beckert Last-Update: 2013-06-07 Adaptions necessary for the python-urwid 1.1 API. * In curses_misc.py, the class ComboBox(urwid.WidgetWrap) attempts to set set the attribute 'self.focus' in the method ComboBox.__init__(), though in urwid.WidgetWrap 'focus' in a property. Because it the 'focus' property is inherited, the @property methods for it must either: 1) If the desire is to reuse the parent class, urwid.WidgetWrap, methods, do: @property def focus(self): return super(ComboBox, self)._get_focus() @property.setter def focus(self, index): return super(ComboBox, self)._set_focus(index) @property.deleter def focus(self): return super(ComboBox, self)._del_focus() 2) If the desire is to create new property descriptors, do: def __init__(self, focus, [...]): [...] self._focus = focus @property def focus(self): return self._focus @property.setter def focus(self, index): self._focus = index @property.deleter def focus(self): del self._focus I went with #2. Index: wicd-1.7.2.4/curses/curses_misc.py =================================================================== --- wicd-1.7.2.4.orig/curses/curses_misc.py 2013-06-07 18:17:24.361894496 +0200 +++ wicd-1.7.2.4/curses/curses_misc.py 2013-06-07 18:17:24.349894443 +0200 @@ -314,9 +314,9 @@ #Send key to underlying widget: self._w.keypress(dim, k) - #def get_size(self): - - def __init__(self,label='',list=[],attrs=('body','editnfc'),focus_attr='focus',use_enter=True,focus=0,callback=None,user_args=None): + def __init__(self, label='', list=[], attrs=('body','editnfc'), + focus_attr='focus', use_enter=True, focus=0, callback=None, + user_args=None): """ label : bit of text that preceeds the combobox. If it is "", then ignore it @@ -349,7 +349,7 @@ # We need this to pick our keypresses self.use_enter = use_enter - self.focus = focus + self._focus = focus self.callback = callback self.user_args = user_args @@ -358,6 +358,19 @@ self.parent = None self.ui = None self.row = None + + @property + def focus(self): + return self._focus + + @focus.setter + def focus(self, index): + self._focus = index + + @focus.deleter + def focus(self): + del self._focus + def set_list(self,list): self.list = list debian/patches/03-fix_sanitation_bug.patch0000664000000000000000000000102612265216763015745 0ustar --- wicd/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- wicd.orig/wicd/misc.py +++ wicd/wicd/misc.py @@ -430,7 +430,7 @@ def sanitize_config(s): """ Sanitize property names to be used in config-files. """ allowed = string.ascii_letters + '_' + string.digits table = string.maketrans(allowed, ' ' * len(allowed)) - return s.translate(None, table) + return s.encode('ascii', 'replace').translate(None, table) def sanitize_escaped(s): """ Sanitize double-escaped unicode strings. """ debian/patches/01-remove_unused_icons.patch0000664000000000000000000000255212265216763016147 0ustar Don't install rarely-used icons, save disk space --- setup.py | 4 ---- 1 file changed, 4 deletions(-) --- wicd.orig/setup.py +++ wicd/setup.py @@ -538,15 +538,11 @@ try: if not wpath.no_install_man: data.append((wpath.mandir + 'man1/', [ 'man/wicd-client.1' ])) data.append((wpath.icons + 'scalable/apps/', ['icons/scalable/wicd-gtk.svg'])) - data.append((wpath.icons + '192x192/apps/', ['icons/192px/wicd-gtk.png'])) data.append((wpath.icons + '128x128/apps/', ['icons/128px/wicd-gtk.png'])) data.append((wpath.icons + '96x96/apps/', ['icons/96px/wicd-gtk.png'])) - data.append((wpath.icons + '72x72/apps/', ['icons/72px/wicd-gtk.png'])) data.append((wpath.icons + '64x64/apps/', ['icons/64px/wicd-gtk.png'])) data.append((wpath.icons + '48x48/apps/', ['icons/48px/wicd-gtk.png'])) - data.append((wpath.icons + '36x36/apps/', ['icons/36px/wicd-gtk.png'])) data.append((wpath.icons + '32x32/apps/', ['icons/32px/wicd-gtk.png'])) - data.append((wpath.icons + '24x24/apps/', ['icons/24px/wicd-gtk.png'])) data.append((wpath.icons + '22x22/apps/', ['icons/22px/wicd-gtk.png'])) data.append((wpath.icons + '16x16/apps/', ['icons/16px/wicd-gtk.png'])) data.append((wpath.images, [('images/' + b) for b in os.listdir('images') if not b.startswith('.')])) debian/patches/32-prefer_gksu.patch0000664000000000000000000000121512265216763014407 0ustar From: David Paleino Subject: prefer gksu over gksudo, fixes weird behaviour on some systems Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=575403 Forwarded: no --- wicd/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- wicd.orig/wicd/misc.py +++ wicd/wicd/misc.py @@ -525,7 +525,7 @@ def choose_sudo_prog(prog_num=0): if desktop_env == "kde": progs = ["kdesu", "kdesudo", "ktsuss"] else: - progs = ["gksudo", "gksu", "ktsuss"] + progs = ["gksu", "gksudo", "ktsuss"] for prog in progs: paths.extend([os.path.join(p, prog) for p in env_path]) debian/rules0000775000000000000000000000305012265216763010260 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 CURVER := $(shell dpkg-parsechangelog | grep ^Version | cut -d\ -f2 | sed -e "s/\(\+.*\)\|\(\-.*\)//") override_dh_auto_configure: python setup.py configure \ --no-install-acpi \ --no-install-docs \ --lib=/usr/share/wicd \ --share=/usr/share/wicd \ --wicdgroup=netdev \ --loggroup=adm \ --logperms=0640 override_dh_auto_build: dh_auto_build python setup.py compile_translations # pybabel currently doesn't support Asturian msgfmt po/ast.po -o translations/ast/LC_MESSAGES/wicd.mo override_dh_auto_clean: dh_auto_clean -find . \( -name "*.pyc" -o -name "*.pyo" \) -delete -rm -rf build/ init/ scripts/ translations/ override_dh_auto_install: python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb find $(CURDIR)/debian/tmp -name "*.png" -exec chmod 644 {} \; find $(CURDIR)/debian/tmp/etc/wicd/ -type f -exec chmod 644 {} \; find $(CURDIR)/debian/tmp \( -name "*.glade" -o -name "*.conf" -o -name "*.desktop" \) -exec chmod 644 {} \; find $(CURDIR)/debian/tmp/ -name ".empty_on_purpose" -delete -rm -rf $(CURDIR)/debian/tmp/var/run override_dh_installinit: dh_python2 -i dh_installinit -i --name=wicd --restart-after-upgrade override_dh_bugfiles: dh_bugfiles -A override_dh_python2: dh_python2 dh_python2 -p wicd-curses /usr/share/wicd/curses dh_python2 -p wicd-daemon /usr/share/wicd/daemon dh_python2 -p wicd-gtk /usr/share/wicd/gtk dh_python2 -p wicd-cli /usr/share/wicd/cli %: dh $@ \ --with python2 debian/python-wicd.install0000664000000000000000000000002112265216763013030 0ustar /usr/lib/python* debian/wicd-daemon.wicd.init0000664000000000000000000001117712265216763013212 0ustar #! /bin/sh ### BEGIN INIT INFO # Provides: wicd # Required-Start: $remote_fs dbus # Required-Stop: $remote_fs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Starts and stops Wicd # Description: Starts and stops Wicd, a network manager ### END INIT INFO # Author: Adam Blackburn # # Do NOT "set -e" # PATH should only include /usr/* if it runs after the mountnfs.sh script export PATH=/usr/sbin:/usr/bin:/sbin:/bin DESC="Network connection manager" NAME=wicd RUNDIR=/var/run/$NAME DAEMON=/usr/sbin/$NAME DAEMON_ARGS="" PIDFILE=$RUNDIR/wicd.pid SCRIPTNAME=/etc/init.d/wicd # Exit if the package is not installed [ -x "$DAEMON" ] || exit 0 # Create RUNDIR if it doesn't exist [ -d "$RUNDIR" ] || mkdir -p "$RUNDIR" # Read configuration variable file if it is present [ -r /etc/default/$NAME ] && . /etc/default/$NAME # Load the VERBOSE setting and other rcS variables [ -f /etc/default/rcS ] && . /etc/default/rcS # Define LSB log_* functions. # Depend on lsb-base (>= 3.0-6) to ensure that this file is present. . /lib/lsb/init-functions # Perhaps not the best idea # but a confirmation is nice # when starting/stopping the daemon VERBOSE=yes # # Function that starts the daemon/service # do_start() { # Return # 0 if daemon has been started # 1 if daemon was already running # 2 if daemon could not be started # vvvv -- don't do this -- vvvv # [ -e $PIDFILE ] && return 1 start-stop-daemon --start --quiet --pidfile $PIDFILE --startas $DAEMON --test > /dev/null \ || return 1 start-stop-daemon --start --quiet --pidfile $PIDFILE --startas $DAEMON -- \ $DAEMON_ARGS > /dev/null 2> /dev/null\ || return 2 # Add code here, if necessary, that waits for the process to be ready # to handle requests from services started subsequently which depend # on this one. As a last resort, sleep for some time. } # # Function that stops the daemon/service # do_stop() { # Return # 0 if daemon has been stopped # 1 if daemon was already stopped # 2 if daemon could not be stopped # other if a failure occurred start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME RETVAL="$?" [ "$RETVAL" = 2 ] && return 2 # Wait for children to finish too if this is a daemon that forks # and if the daemon is only ever run from this initscript. # If the above conditions are not satisfied then add some other code # that waits for the process to drop all resources that could be # needed by services started subsequently. A last resort is to # sleep for some time. start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON [ "$?" = 2 ] && return 2 # Many daemons don't delete their pidfiles when they exit. rm -f $PIDFILE return "$RETVAL" } # # Function that sends a SIGHUP to the daemon/service # do_reload() { # # If the daemon can reload its configuration without # restarting (for example, when it is sent a SIGHUP), # then implement that here. # start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME return 0 } case "$1" in start) if [ "$START_DAEMON" != no ]; then [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME" do_start case "$?" in 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; esac else log_warning_msg "Not starting wicd daemon. Please edit /etc/default/wicd first." fi ;; stop) [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" do_stop case "$?" in 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; esac ;; #reload|force-reload) # # If do_reload() is not implemented then leave this commented out # and leave 'force-reload' as an alias for 'restart'. # #log_daemon_msg "Reloading $DESC" "$NAME" #do_reload #log_end_msg $? #;; restart|force-reload) # # If the "reload" option is implemented then remove the # 'force-reload' alias # log_daemon_msg "Restarting $DESC" "$NAME" do_stop case "$?" in 0|1) if [ "$START_DAEMON" != no ]; then do_start case "$?" in 0) log_end_msg 0 ;; 1) log_end_msg 1 ;; # Old process is still running *) log_end_msg 1 ;; # Failed to start esac else log_warning_msg "Not starting wicd daemon. Please edit /etc/default/wicd first." fi ;; *) # Failed to stop log_end_msg 1 ;; esac ;; status) status_of_proc -p $PIDFILE $DAEMON $NAME && exit 0 || exit $? ;; *) echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}" >&2 exit 3 ;; esac : debian/wicd-daemon.postinst0000664000000000000000000000341112265216763013175 0ustar #!/bin/sh # postinst script for wicd # # see: dh_installdeb(1) set -e . /usr/share/debconf/confmodule # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) if [ ! $(getent group netdev) ]; then addgroup --quiet --system netdev fi if [ -x "/etc/init.d/dbus" ]; then # Check if DBus has started, otherwise this fails on # certain environments (chroots, for example). See # #514778 #517395 if [ -n "$DBUS_SESSION_BUS_ADDRESS" ]; then if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then invoke-rc.d dbus force-reload || exit $? else /etc/init.d/dbus force-reload || exit $? fi fi fi # Add users previously selected in debconf db_get wicd/users users=$(echo $RET | sed -e 's@,@@g') for u in $users; do hasuser=$(getent passwd $u || true) if [ -n "$hasuser" ]; then adduser --quiet $u netdev fi done ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# db_stop; exit 0 debian/wicd-curses.install0000664000000000000000000000012212265216763013015 0ustar /usr/bin/wicd-curses /usr/share/wicd/curses/ /usr/share/man/nl/man8/wicd-curses.8 debian/wicd-daemon.manpages0000664000000000000000000000002312265216763013101 0ustar man/*.5 man/wicd.8 debian/wicd-daemon.postrm0000664000000000000000000000322212265216763012636 0ustar #!/bin/sh # postrm script for wicd set -e # early load debconf . /usr/share/debconf/confmodule # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) find /usr/share/wicd/ \( -name "*.pyo" -o -name "*.pyc" \) -delete 2>/dev/null || true ;; purge) rm -rf /etc/wicd rm -rf /var/lib/wicd rm -rf /var/log/wicd rm -rf /var/run/wicd if [ -x "/etc/init.d/dbus" ]; then # Check if DBus has started, otherwise this fails on # certain environments (chroots, for example). See # #514778 . if [ -n "$DBUS_SESSION_BUS_ADDRESS" ]; then if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then invoke-rc.d dbus force-reload || exit $? else /etc/init.d/dbus force-reload || exit $? fi fi fi ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/wicd-curses.docs0000664000000000000000000000002512265216763012301 0ustar curses/README.curses debian/source/0000775000000000000000000000000012265217227010476 5ustar debian/source/format0000664000000000000000000000001412265216763011710 0ustar 3.0 (quilt) debian/watch0000664000000000000000000000024112265216763010230 0ustar version=3 opts=uversionmangle=s/%7E/~/ \ https://launchpad.net/wicd/+download \ https://launchpad.net/wicd/\d.\d/\d+.*/\+download/wicd-(\d+.*)\.tar\.(?:gz|bz2) debian/control0000664000000000000000000001325412265216763010612 0ustar Source: wicd Section: net Priority: optional Maintainer: David Paleino Build-Depends: debhelper (>= 7.2.3~) , python (>= 2.6.6-3~) Build-Depends-Indep: po-debconf , python-babel , gettext Standards-Version: 3.9.3 Homepage: http://wicd.sourceforge.net/ Vcs-Browser: http://git.debian.org/?p=collab-maint/wicd.git Vcs-Git: git://git.debian.org/collab-maint/wicd.git Package: wicd Architecture: all Depends: ${misc:Depends} , wicd-daemon (= ${source:Version}) , wicd-gtk (= ${source:Version}) | wicd-curses (= ${source:Version}) | wicd-cli (= ${source:Version}) | wicd-client Description: wired and wireless network manager - metapackage Wicd is a general-purpose network configuration server which aims to provide a simple but flexible interface for connecting to networks. Its features include: * wide variety of settings; * ability to connect to (and maintain profiles for) both wired and wireless networks; * support for many encryption schemes, including WEP, WPA, WPA2 and custom schemes; * wireless-tools compatibility; * tray icon showing network activity and signal strength; * lack of GNOME dependencies (although it does require GTK+), making it easy to use in Xfce, Fluxbox, Openbox, Enlightenment, etc. . This is a metapackage, it allows installation of all the components of Wicd, including one of the clients, which must be manually chosen. Package: wicd-daemon Architecture: all Depends: ${misc:Depends} , ${python:Depends} , python-dbus , python-gobject # , python-iniparse , dbus , wpasupplicant , wireless-tools , dhcpcd | isc-dhcp-client | pump | udhcpc , net-tools | ethtool , net-tools | iproute , adduser , lsb-base (>= 3.2-13) , psmisc , iputils-ping | inetutils-ping , python-wicd (= ${source:Version}) Pre-Depends: debconf (>= 1.5.34) Recommends: wicd-gtk (= ${source:Version}) | wicd-curses (= ${source:Version}) | wicd-cli (= ${source:Version}) | wicd-client , rfkill Suggests: pm-utils Breaks: wicd (<= 1.6.2.2-4) Replaces: wicd (<= 1.6.2.2-4) Description: wired and wireless network manager - daemon Wicd is a general-purpose network configuration server which aims to provide a simple but flexible interface for connecting to networks. Its features include: * wide variety of settings; * ability to connect to (and maintain profiles for) both wired and wireless networks; * support for many encryption schemes, including WEP, WPA, WPA2 and custom schemes; * wireless-tools compatibility. . This package contains the daemon needed to run Wicd. Package: wicd-gtk Architecture: all Depends: ${misc:Depends} , ${python:Depends} , python-gtk2 , python-glade2 , wicd-daemon (= ${source:Version}) Recommends: gksu , python-notify Provides: wicd-client Breaks: wicd (<= 1.6.2.2-4) Replaces: wicd (<= 1.6.2.2-4) Description: wired and wireless network manager - GTK+ client Wicd is a general-purpose network configuration server which aims to provide a simple but flexible interface for connecting to networks. Its features include: * wide variety of settings; * ability to connect to (and maintain profiles for) both wired and wireless networks; * support for many encryption schemes, including WEP, WPA, WPA2 and custom schemes; * wireless-tools compatibility. . This package provides the GTK+ client, which has no GNOME dependencies, making it easy to use in Xfce, Fluxbox, Openbox, Enlightenment, ... It also supports a tray icon showing network activity and signal strength. Package: wicd-curses Architecture: all Depends: ${misc:Depends} , ${python:Depends} , python-urwid (>= 1.1) , wicd-daemon (= ${source:Version}) Recommends: sudo Provides: wicd-client Breaks: wicd (<= 1.6.2.2-4) Replaces: wicd (<= 1.6.2.2-4) Description: wired and wireless network manager - Curses client Wicd is a general-purpose network configuration server which aims to provide a simple but flexible interface for connecting to networks. Its features include: * wide variety of settings; * ability to connect to (and maintain profiles for) both wired and wireless networks; * support for many encryption schemes, including WEP, WPA, WPA2 and custom schemes; * wireless-tools compatibility. . This package provides the Curses/Urwid client, which is the client of choice in environments without X server. Package: wicd-cli Architecture: all Depends: ${misc:Depends} , ${python:Depends} , wicd-daemon (= ${source:Version}) Recommends: sudo Provides: wicd-client Breaks: wicd (<< 1.7.0~a3) Replaces: wicd (<< 1.7.0~a3) Description: wired and wireless network manager - scriptable console client Wicd is a general-purpose network configuration server which aims to provide a simple but flexible interface for connecting to networks. Its features include: * wide variety of settings; * ability to connect to (and maintain profiles for) both wired and wireless networks; * support for many encryption schemes, including WEP, WPA, WPA2 and custom schemes; * wireless-tools compatibility. . This package provides a scriptable console client. Package: python-wicd Architecture: all Section: python Depends: ${misc:Depends} , ${python:Depends} Breaks: wicd (<< 1.7.0~a3) Replaces: wicd (<< 1.7.0~a3) Description: wired and wireless network manager - Python module Wicd is a general-purpose network configuration server which aims to provide a simple but flexible interface for connecting to networks. Its features include: * wide variety of settings; * ability to connect to (and maintain profiles for) both wired and wireless networks; * support for many encryption schemes, including WEP, WPA, WPA2 and custom schemes; * wireless-tools compatibility. . This package provides the Python module used by Wicd. debian/wicd-daemon.templates0000664000000000000000000000030012265216763013302 0ustar Template: wicd/users Type: multiselect Choices: ${users} _Description: Users to add to the netdev group: Users who should be able to run wicd clients need to be added to the group "netdev". debian/wicd-daemon.config0000775000000000000000000000123312265216763012562 0ustar #!/bin/bash set -e # Source debconf library. . /usr/share/debconf/confmodule # Fix upgrades from broken experimental version db_get wicd/users if [ -n "$( echo $RET | grep \${ )" ]; then db_set wicd/users "" db_fset wicd/users seen false fi db_metaget wicd/users users users="$(getent passwd | awk -F: '{if ($3 >= 1000 && $3 < 60000) print $1}' | sort | tr '\n' ',' | sed 's@,@, @g;s@, $@@g')" netdev=$(getent group netdev | cut -d: -f4 | sed -e 's@,@ @g') # Don't show users already in netdev for u in $netdev; do users=$(echo $users | sed "s@$u, @@g;s@, $u\$@@g;s@^$u\$@@g"); done db_subst wicd/users users "$users" db_input high wicd/users || true db_go debian/wicd-gtk.manpages0000664000000000000000000000002212265216763012422 0ustar man/wicd-client.1 debian/wicd-gtk.links0000664000000000000000000000021512265216763011753 0ustar usr/share/man/man1/wicd-client.1 usr/share/man/man1/wicd-gtk.1 usr/share/man/nl/man1/wicd-client.1 usr/share/man/nl/man1/wicd-gtk.1 debian/copyright0000664000000000000000000000471212265216763011141 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Source: https://launchpad.net/wicd/+download Files: * Copyright: © 2007-2008, Adam Blackburn © 2007-2008, Dan O'Reilly © 2011-2012, David Paleino License: GPL-2+ Files: debian/* Copyright: © 2008-2012, David Paleino License: GPL-2+ Files: in/init=gentoo=wicd.in init/gentoo/wicd Copyright: © 1996-2006, Gentoo Foundation License: GPL-2 Files: in/man=wicd.8.in in/man=wicd-manager-settings.conf.5.in in/man=wicd-wired-settings.conf.5.in in/man=wicd-wireless-settings.conf.5.in Copyright: © 2008, Robby Workman License: GPL-2+ Files: wicd/networking.py wicd/wicd-daemon.py wicd/wnettools.py Copyright: © 2007-2008, Adam Blackburn © 2007-2008, Dan O'Reilly © 2007-2008, Byron Hillis © 2011-2012, David Paleino License: GPL-2+ Files: uninstall.sh Copyright: © 2008, Robby Workman © 2008, Alan Hicks License: BSD-1 License: GPL-2+ On Debian systems the full text of the GNU General Public License can be found in the `/usr/share/common-licenses/GPL-2' file. License: GPL-2 On Debian systems the full text of the GNU General Public License can be found in the `/usr/share/common-licenses/GPL-2' file. License: BSD-1 # Redistribution and use of this script, with or without modification, is # permitted provided that the following conditions are met: # # 1. Redistributions of this script must retain the above copyright # notice, this list of conditions and the following disclaimer. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO # EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/wicd-daemon.wicd.default0000664000000000000000000000023312265216763013662 0ustar # Start the daemon by default, let the user disable it. # Use "no" (without quotes) to make /etc/init.d/wicd *NOT* start the WICD daemon. START_DAEMON=yes debian/changelog0000664000000000000000000007177412265216763011074 0ustar wicd (1.7.2.4-4.1ubuntu1) trusty; urgency=low * debian/patches/34-fix-resolv.conf_backup-restore-broken-link.patch: allow wicd-daemon to start when /etc/resolv.conf is a broken link (LP: #1132529) -- Javier P.L. Fri, 06 Dec 2013 01:02:49 -0600 wicd (1.7.2.4-4.1) unstable; urgency=low * Non-maintainer upload * Add patch by isis agora lovecruft to fix wicd-curses run time errors caused by the changes of python-urwid 1.1 API (Closes: #709120) * Bump wicd-curses dependency on python-urwid to >= 1.1 -- Axel Beckert Fri, 07 Jun 2013 18:42:23 +0200 wicd (1.7.2.4-4) unstable; urgency=low * Move user-adding code from debconf-config to wicd-daemon postinst (Closes: #692916) -- David Paleino Sat, 10 Nov 2012 21:41:50 +0100 wicd (1.7.2.4-3) unstable; urgency=low * Fix debian/watch * Recommend rfkill in wicd-daemon (Closes: #683559) * Substitute dependency on dhcp3-client with isc-dhcp-client (Closes: #680976) * Fix handling of /etc/resolv.conf when it's a symlink (Closes: #691973) -- David Paleino Fri, 02 Nov 2012 21:49:32 +0100 wicd (1.7.2.4-2) unstable; urgency=high * Fix comments inside /etc/default/wicd (Closes: #668327) * Fixed sanitation bug (urgency=high) -- David Paleino Fri, 04 May 2012 10:22:46 +0200 wicd (1.7.2.4-1) unstable; urgency=high * New upstream version - really fix local privilege escalation, CVE-2012-2095 (Closes: #668397) * Fixed typo in previous changelog entry -- David Paleino Mon, 30 Apr 2012 21:32:55 +0200 wicd (1.7.2.3-1) unstable; urgency=high * New upstream version - fix bug with wicd-curses and UTF-8 locales (Closes: #669602) -- David Paleino Sun, 22 Apr 2012 18:42:19 +0200 wicd (1.7.2.2-1) unstable; urgency=high * New upstream version - fix bug with encryption templates (Closes: #669388) -- David Paleino Thu, 19 Apr 2012 22:47:05 +0200 wicd (1.7.2.1-1) unstable; urgency=low * New upstream version - fix crash with wicd-curses (Closes: #668520) -- David Paleino Thu, 12 Apr 2012 22:08:37 +0200 wicd (1.7.2-1) unstable; urgency=low * New upstream version - fixed local privilege escalation, CVE-2012-2095 (Closes: #668397) * Added Indonesian debconf translation, thanks to Mahyuddin Susanto (Closes: #658785) * Fixed debian/watch to look packages from launchpad * Bump Standards-Version to 3.9.3, no changes needed * Updated debian/copyright -- David Paleino Thu, 12 Apr 2012 00:03:06 +0200 wicd (1.7.1-1) unstable; urgency=low * New upstream release * Patches refreshed to match 1.7.1's code -- David Paleino Thu, 02 Feb 2012 20:36:02 +0100 wicd (1.7.1~b3-5) unstable; urgency=low * Finally, really fix the issue with ESSIDs containing \x00 (Closes: #655159) -- David Paleino Tue, 31 Jan 2012 18:35:41 +0100 wicd (1.7.1~b3-4) unstable; urgency=low * Fix translations even more (Closes: #655994) * Hopefully fixed bug with ESSIDs containing '\x00' (Closes: #655159) * Mask out sensitive info in logfiles (Closes: #652417) -- David Paleino Sat, 21 Jan 2012 11:24:53 +0100 wicd (1.7.1~b3-3) unstable; urgency=low * More backports from upstream: - fix various translation bugs (Closes: #651804) - fix check for configfile existence (Closes: #651933) - fix various issues with unicode (Closes: #588444, #612981) -- David Paleino Fri, 16 Dec 2011 12:33:29 +0100 wicd (1.7.1~b3-2) unstable; urgency=low * Don't wipe out configuration files (03-fix_configmanager_bug.patch) * Backported upstream fixes (04-backport_upstream_fixes.patch) - Fixed mismatch between DBus API and code (Closes: #651412) - Fixed typo -- dict being used with () -- David Paleino Sun, 11 Dec 2011 20:50:33 +0100 wicd (1.7.1~b3-1) unstable; urgency=low * New upstream beta release - useless patches removed, most of them merged upstream. Remaining ones: + 01-remove_unused_icons.patch + 26-support_etc-network_scripts.patch + 32-prefer_gksu.patch - documented wicd-gtk's -t option (Closes: #648757) - keep configuration files sorted (Closes: #568326) - show correct ESSID in status bar (Closes: #535507, #647503) - show correct ESSID when rescanning networks (Closes: #552254) - redesigned l10n system (Closes: #572375) * Added Dutch Debconf translation, thanks to Jeroen Schot (Closes: #643640) * Drop kdesu, ktsuss and sudo from wicd-gtk's Recommends. * Make wicd-daemon Pre-Depend on debconf (>= 1.5.34) to correctly handle sr@latin translation (Closes: #647626) * Removed get-orig-source target from debian/rules, no more needed * Compile translations at build-time in debian/rules, using setup.py's machinery * Clean files after build using debian/clean * Workaround dhclient's bug trying to set a different hostname (see #609851) -- David Paleino Tue, 06 Dec 2011 22:05:11 +0100 wicd (1.7.0+ds1-9) unstable; urgency=high * Fix postinst: it breaks dh_python2's layout -- David Paleino Sat, 22 Oct 2011 11:25:07 +0200 wicd (1.7.0+ds1-8) unstable; urgency=low * Really fix debconf when non-existing users are involved (Closes: #634051) * Switch package to dh_python2 from dh_pysupport -- David Paleino Fri, 21 Oct 2011 23:00:49 +0200 wicd (1.7.0+ds1-7) unstable; urgency=low * Standards-Version bump to 3.9.2, no changes needed * Updated debian/copyright to match latest DEP-5 * Implement a -t/--tray switch to only run the wicd tray icon (36-implement_tray-only.patch) (Closes: #583684) * Replace "cli" with "console" (to avoid the usage of "CLI", which is used by Mono applications) in wicd-cli's short description (Closes: #617328) * Add Danish debconf translation, thanks to Joe Dalton (Closes: #621364) * Add Serbian debconf translation, thanks to Zlatan Todoric (Closes: #635079, #635080) * 34-dont_save_useless_config.patch: drop useless has_profile=False sections and more (Closes: #629364) * Work-around adding non-existing users to debconf (Closes: #634051) * Fix suspend scripts, they had old paths (37-fix_suspend_scripts.patch) (Closes: #635444) * Fix search for libc in wicd/misc.py (38-fix_libc_ctype_linking.patch) (Closes: #636941) * 39-fix_channel_digit_parsing.patch: support channels with more than 2 digits (Closes: #640075) * 40-checkbox_passwords.patch: add a checkbox to show/hide passwords (Closes: #573096) (LP: #476982) * 41-add_new_templates.patch: new encryption templates (Closes: #641531) * 42-support_new_urwid.patch: support urwid 1.0.0 (Closes: #645681) -- David Paleino Mon, 17 Oct 2011 22:18:06 +0200 wicd (1.7.0+ds1-6) unstable; urgency=low * debian/patches/: - 26-support_etc-network_scripts.patch refreshed, /etc/network/ scripts should now be properly supported (Closes: #579497) - 31-dont_crash_on_notification_exceptions.patch added (Closes: #569755, #587303) - 32-prefer_gksu.patch added (Closes: #575403) - 33-deepcopy_python27_fixes.patch backported from Ubuntu, thanks to Matthieu Baerts (LP: #602825) - 34-dont_save_useless_config.patch added: don't save link quality, signal strength and bitrates in the configuration files. (Closes: #612918) - 35-restrict_netmode_characters.patch added, don't crash if the network mode is not what we expect. Thanks to Julien Blache for the patch (Closes: #550957) * debian/control: - removed depedency on python-iniparse from wicd-daemon - removed Build-Depends on quilt - fixed typo in long description, thanks to Martin Eberhard Schauer (Closes: #611567) - bump Standards-Version to 3.9.1, no changes needed - use Breaks+Replaces instead of Conflicts+Replaces * debian/rules: - don't use "--with quilt" anymore * debian/po/pt_BR.po added: debconf translation for Brazilian Portuguese, thanks to Adriano Rafael Gomes (Closes: #594266) * debian/wicd-daemon.config: don't ask if all users are already in the netdev group (Closes: #588078) * debian/wicd-cli.8: explain -w/--save and -m/--name (Closes: #583586) * debian/wicd-daemon.wicd.init, export $PATH, makes the daemon work in a clean environment. Thanks to Peter Palfrader (Closes: #604810) * debian/wicd-curses.postrm: redirect stderr (Closes: #605338) -- David Paleino Sat, 12 Feb 2011 00:16:58 +0100 wicd (1.7.0+ds1-5) unstable; urgency=medium * debian/patches/series: - 26-support_etc-network_scripts.patch disabled, needs more proper support (reopen #579497) -- David Paleino Sat, 29 May 2010 09:17:32 +0200 wicd (1.7.0+ds1-4) unstable; urgency=high * Urgency high because of RC #582980 * debian/patches: - 25-use_dhcpcd_also_in_Debian.patch refreshed, to make it work again with dhcpcd. Thanks to Brad Jorsch (Closes: #582980) - 30-make_connection_info_selectable.patch added (Closes: #571579) -- David Paleino Tue, 25 May 2010 19:20:33 +0200 wicd (1.7.0+ds1-3) unstable; urgency=low * debian/control: - fixed package descriptions (Closes: #574152) * debian/patches/: - 23-fix_script_macro_expansion.patch ported from upstream, fixes bug in script macro expansion. - 24-wait_for_DHCP_client.patch added, waits for DHCP's client process to end, avoiding zombie processes. Thanks to Marin Ivanov for the patch! (Closes: #537195) - 25-use_dhcpcd_also_in_Debian.patch added: upstream changed the client from dhcpcd to dhcpcd-bin. This patch reverts it, so that defaults in /etc/default/dhcpcd are still observed. (Closes: #578014) - 26-support_etc-network_scripts.patch added, support /etc/network/ hierarchy for connection scripts (Closes: #579497) - 27-fix_resolv.conf_perms.patch added, make sure dhclient.conf has 0644 permissions (Closes: #582798) - 28-announce_dhclient.conf.template.patch added, describe /etc/wicd/dhclient.conf.template in wicd(8) (Closes: #582817) - 29-document_variables_passed_to_scripts.patch added (Closes: #570891) * debian/NEWS.Debian updated to announce /etc/wicd/dhclient.conf.template -- David Paleino Mon, 24 May 2010 18:11:17 +0200 wicd (1.7.0+ds1-2) unstable; urgency=low * Fix RC bug: daemon doesn't start anymore because copy.deepcopy() fails with the iniparse object, coming from 20-use_iniparse.patch. Bug 568326 reopened. (Closes: #572599) -- David Paleino Fri, 05 Mar 2010 18:12:51 +0100 wicd (1.7.0+ds1-1) unstable; urgency=low * New repacked tarball, contains translations .po files (Closes: #572352) * debian/bug-control added, let's add more info to the bugreports! * debian/control: - debhelper dependency bumped to >= 7.2.3~, to use dh_bugfiles - added dependency on python-iniparse to wicd-daemon * debian/rules: - make dh_bugfiles act on all packages - add get-orig-source target, to build a package containing the .po files * debian/patches/: - 20-use_iniparse.patch added, uses python-iniparse instead of standard library's ConfigParser (Closes: #568326) - 21-fix_ESSID_setting.patch added, use correct command to set ESSID's (useful when a network is named "off" or "any") (Closes: #571100) - 22-fix_deprecation.patch added, fixes some deprecated usage of gtk.Statusbar (Closes: #571314) * debian/watch updated to mangle Debian version -- David Paleino Thu, 04 Mar 2010 10:59:30 +0100 wicd (1.7.0-3) unstable; urgency=low * Remove .pyo and .pyc files upon package removal (Closes: #565637) - debian/wicd-daemon.postrm updated - debian/wicd-cli.postrm, debian/wicd-curses.postrm, debian/wicd-gtk.postrm added * debian/control: - removed trailing comma in wicd-daemon Recommends - Standards-Version bumped to 3.8.4, no changes needed * debian/wicd-daemon.postinst: better handle upgrades (Closes: #566023) * debian/wicd-daemon.wicd.init: correctly handle the exit code for the "status" command (Closes: #567070) * debian/patches/: - 03-fix_typo_wicd-cli.patch added, fixes typo preventing wicd-cli from working at all (Closes: #567665) -- David Paleino Mon, 01 Feb 2010 18:43:38 +0100 wicd (1.7.0-2) unstable; urgency=low * debian/rules: - pass --install-layout=deb to python setup.py install (Closes: #565536) * debian/control: - break circular dependency, make wicd-daemon only Recommend the clients. (Closes: #565608) -- David Paleino Sun, 17 Jan 2010 12:40:57 +0100 wicd (1.7.0-1) unstable; urgency=low * Upload to unstable * New upstream release: - fixes udhcpc failure check (Closes: #563619) - makes network properties from command-line case-insensitive (Closes: #563620) - wicd-cli defaults to current active network, if no network ID is specified, when querying for a property. (Closes: #563622) * debian/patches/: - 01-remove_unused_icons.patch, 02-detect_ping_flavour.patch, 05-use_binsh.patch and 08-fix_help_message.patch refreshed to cleanly apply. - 18-dont_run_unexpected_files_in_scripts.patch added, don't execute backup files (*~) or hidden ones (.*) from the scripts directories. (Closes: #563553) - 19-dhcpcd_dont_handle_link-local.patch added, don't let it handle link-local. - removed (merged upstream or no more applicable): + 04-fix-scripts.patch + 10-order_scripts_directories.patch + 12-fix_wrong_PYTHONPATHs.patch + 13-fix_codesplit_remnants.patch * debian/rules: - remove .empty_on_purpose files from the binary packages * debian/wicd-daemon.wicd.init: add $remote_fs to Required-Start and Required-Stop, thanks Lintian! -- David Paleino Fri, 15 Jan 2010 11:14:13 +0100 wicd (1.7.0~b3-1) experimental; urgency=low * New experimental upstream version * debian/watch updated to track latest experimental version * debian/patches/: - all patches refreshed to cleanly apply - 12-fix_wrong_PYTHONPATHs.patch added, fix spurious PYTHONPATHs in beta release - 13-fix_codesplit_remnants.patch added, needed to fix some remaining issues happened between 1.7.0~a1 and 1.7.0~b3 * debian/wicd-curses.docs: adding README.curses * debian/rules: - clean target, remove extra stale files - clean target, recreate the init/ hierarchy, needed for build (or after a "git clone") - don't override install-lib anymore * debian/*.install updated, use the new directory layout * debian/control: - added python-wicd and wicd-cli packages - remove Conflicts/Replaces from wicd binary section * debian/wicd-cli.* added * debian/python-wicd.install added -- David Paleino Sun, 03 Jan 2010 21:02:28 +0100 wicd (1.6.2.2-5~exp2) experimental; urgency=low * The OH-MY-GOD-IT'S-TOO-LATE brown-paper-bug upload * debian/scripts/wicd-gtk, it's really a shell script, not a Python one o:) -- David Paleino Sun, 20 Dec 2009 17:58:23 +0100 wicd (1.6.2.2-5~exp1) experimental; urgency=low * debian/README.Debian: removed old instructions * Most debian/* files split to proper per-package files * debian/control: - GUI and non-GUI packages split. This should allow for wicd installation without depending on GTK (then, X) (Closes: #546906) - add wicd-gtk and wicd-curses packages, both providing wicd-client. - added wicd-daemon package, substituting old "wicd" package - added wicd metapackage, depending on everything else, to allow seamless upgrade from older versions. - made all packages conflict with older versions - added python-gobject dependency to wicd-daemon - bump Build-Depends to use dh7 overrides and quilt * debian/rules: - fixed to deal with multiple binary packages - rewritten to use dh7 * debian/source/format added -- use 3.0 (quilt) * debian/wicd-curses.docs added * debian/patches/12-rename_wicd-client_to_wicd-gtk.patch , rename wicd-client to wicd-gtk where appropriate * debian/po/POTFILES.in fixed with the new templates file * debian/wicd-gtk.links added -- David Paleino Sat, 12 Dec 2009 18:53:23 +0100 wicd (1.6.2.2-4) unstable; urgency=low * debian/control: - updated my email address - DMUA removed * debian/config: add --quiet to adduser, don't show messages if user is already in netdev (Closes: #556182) * debian/patches/: - 07-workaround_urwid_API_change.patch added, handle API change between python-urwid 0.9.8.4 and python-urwid 0.9.9 (Closes: #557462) - 08-fix_help_message.patch added, fix minor issue with help message of wicd-curses - 09-allow_empty_DNS.patch added, one might run a local forwarder and 127.0.0.1 wouldn't work (Closes: #552598) - 10-order_scripts_directories.patch added, scripts were run in a random order (python's os.listdir()) - 11-fix_gui_showing_from_tray.patch added, raises the GUI also when it was trayed in an iconified state (Closes: #549625) * debian/links removed, debian/manpages added (Closes: #557173) -- David Paleino Sat, 05 Dec 2009 13:04:40 +0100 wicd (1.6.2.2-3) unstable; urgency=low * debian/po/ja.po updated (Closes: #554838) * debian/patches/06-dont_bomb_out_on_configparser_error.patch added (Closes: #554949) -- David Paleino Sat, 07 Nov 2009 16:59:06 +0100 wicd (1.6.2.2-2) unstable; urgency=low * debian/po/ja.po added, thanks to Hideki Yamane (Closes: #546231) * debian/control: - remove Conflict on network-manager, since both can be used at the same time, provided they don't try to control the same interface (Closes: #548978) - added dependency on dbus (Closes: #540331, #551605) * debian/patches/05-use_binsh.patch added (Closes: #549443) -- David Paleino Mon, 26 Oct 2009 10:38:22 +0100 wicd (1.6.2.2-1) unstable; urgency=low * New upstream version - fixed connection templates (Closes: #536219) - fixed Ad-Hoc Network creation (Closes: #534718, #534215) - fixed Ad-Hoc Network dialog unresponsiveness (Closes: #537462) - according to upstream, fixed random crashes with DBus handling in wicd-curses (Closes: #539025) - fixes hidden network connection bug (Closes: #545141) * debian/control: - added missing dependency on ping (iputils- or inetutils-) - added python-notify to Recommends (Closes: #534271) - Standards-Version bumped to 3.8.3, no changes needed * debian/patches/: - 01-remove_unused_icons.patch added (Closes: #538009) - 02-detect_ping_flavour.patch added (Closes: #543656) - 05-fix_typo.patch removed, fixed upstream * debian/rules: - stylistic changes - don't install acpi-support integration anymore, let's just use pm-utils (LP: #366119) * debian/po/: - es.po added, thanks to Francisco Javier Cuadrado (Closes: #534661) - fr.po added, thanks to Steve Petruzzello (Closes: #537213) * debian/postrm: - removing /var/run/wicd on purge (Closes: #536444) - early load Debconf (Closes: #534648) * debian/README.Debian updated: explain the differences between iputils-ping and inetutils-ping, related to 02-detect_ping_flavour.patch. (Closes: #545458) -- David Paleino Mon, 07 Sep 2009 19:31:22 +0200 wicd (1.6.1-3) unstable; urgency=low * debian/config, debian/templates updated: - only show users to add to netdev, skip those who are already members (Closes: #534138) - gracefully handle upgrades from previous broken versions, where debconf set a value of ${default} for wicd/users (Closes: #532112) -- David Paleino Mon, 22 Jun 2009 17:59:27 +0200 wicd (1.6.1-2) unstable; urgency=low * debian/control: - Vcs-* fields updated (oops.) * debian/patches/05-fix_typo.patch added, fixes missing rename of global var -- David Paleino Sun, 21 Jun 2009 20:59:17 +0200 wicd (1.6.1-1) unstable; urgency=low * New upstream version: - Add Pre/Post-Disconnection scripts (Closes: #517383) * debian/templates: - merged the note into the multiselect screen - updated multiselect text, removed note * debian/control: - long description wording improved, thanks to Justin B Rye from the debian-l10n-english mailing list - Recommend graphical su programs to handle scripts (and sudo for wicd-curses) (Closes: #519915) - PAPT removed from Uploaders - Standards-Version bumped to 3.8.2, no changes needed * debian/patches/: - 01-fix_desktop_file.patch, 02-fix_logfile_perms.patch, 03-fix_lintian_manpage_warning.patch, 10-add_udhcpc_support.patch removed, merged upstream * debian/init updated, status_of_proc() works now! * debian/po/: - cs.po added, thanks to Martin Šín (Closes: #532210) - de.po added, thanks to Helge Kreutzmann (Closes: #533446) - eu.po added, thanks to Piarres Beobide (Closes: #533615) - fi.po added, thanks to Esko Arajärvi (Closes: #533226) - pt.po added, thanks to Américo Monteiro (Closes: #533244) - ru.po added, thanks to Yuri Kozlov (Closes: #533213) - sv.po added, thanks to Martin Bagge (Closes: #532160) - zh_CN.po added, thanks to Deng Xiyue (Closes: #533392) * debian/rules: - pass --loggroup and --logperms to setup.py -- David Paleino Sun, 21 Jun 2009 11:32:22 +0200 wicd (1.6.0-2~pre1) experimental; urgency=low * debian/config: - use getent group instead of grepping /etc/group - remove ${default} substitution - fixed typo in db_subst of ${users} * debian/templates: - remove Default field in wicd/users (Closes: #532112) * debian/po/* updated * debian/patches/01-fix_desktop_file.patch added -- David Paleino Sat, 06 Jun 2009 22:35:22 +0200 wicd (1.6.0-1) experimental; urgency=low * New upstream version - DBus at_console policy fixed (Closes: #530505, #525622) - wireless channel shown in overview (Closes: #525542) - added "Search domain" option in preferences tab (Closes: #516466) * debian/patches/: - 01-fix_desktop_file.patch, 07-add_resolvconf_support.patch removed, fixed upstream - 02-fix_logfile_perms.patch, 03-fix_lintian_manpage_warning.patch, 04-fix-scripts.patch refreshed - 05-fix_DBus_policy.patch removed, permissions given to the `netdev' group via a configuration option - 06-add_LC_MESSAGES_parsing.patch removed, fixed upstream (in wicd/translations.py) - 09-fix_wire_plugging_detection.patch fixed (Closes: #522057) - 10-add_udhcpc_support.patch added, thanks to "madmo" from the Wicd forums for making it, and to Luca Capello for fixing and porting it to 1.5.9, now ported to 1.6.0 (Closes: #520014) * original debian/po removed, substituted by debconf's translations * debian/config, debian/templates added, initial debconf support (Closes: #524060) * debian/control: - Build-Dependency on po-debconf added - added missing dependency on lsb-base - added missing dependency on python-urwid, needed by wicd-curses - added missing dependency on psmisc (Closes: #520925) - added alternative dependency on udhcpc * debian/postinst: - enable debconf questions * debian/README.Debian updated: specify that DBus should be boot-started before wicd (Closes: #526408) * debian/init: added support for "status" command, thanks to Peter Eisentraut (Closes: #528928) * debian/rules updated * debian/watch fixed not to catch alpha/beta releases -- David Paleino Sat, 06 Jun 2009 01:03:58 +0200 wicd (1.5.9-5) unstable; urgency=low * debian/patches/: - 08-fix_GetIP.patch added, thanks to Giuseppe Martino (Closes: #519433) - 09-fix_wire_plugging_detection.patch, added, thanks to Giuseppe Martino (Closes: #503738) * debian/control: - Standards-Version bumped to 3.8.1: + debian/init fixed, /var/run/wicd created on init.d script start, since /var/run may be mounted as a temporary filesystem (§9.3.2) -- David Paleino Mon, 16 Mar 2009 00:51:43 +0100 wicd (1.5.9-4) unstable; urgency=low * debian/control: - fixing typo in Depends field: dhcpd <> dhcpcd (Closes: #518459) -- David Paleino Fri, 06 Mar 2009 11:52:15 +0100 wicd (1.5.9-3) unstable; urgency=low * The brown-paper-bag bug release * debian/postinst: - only force-reload DBus if it's already started (Closes: #517395), I had already fixed this in debian/postrm before (see -2). * debian/patches/: - 06-add_LC_MESSAGES_parsing.patch updated: workaround "bug" in python's locale.getdefaultlocale(), putting LC_CTYPE at a higher priority than LC_MESSAGES (well, not considering it at all) (really closes: #514553) -- David Paleino Fri, 27 Feb 2009 22:10:05 +0100 wicd (1.5.9-2) unstable; urgency=low * debian/patches/: - 06-add_LC_MESSAGES_parsing.patch added (Closes: #514553) - 07-add_resolvconf_support.patch added (Closes: #514597) * debian/README.Debian updated: - add information on how to add users to netdev. - add information on how to reload DBus * debian/NEWS.Debian updated: - add information on how to reload DBus * debian/control: - swapped Maintainer/Uploaders fields * debian/postrm: - only force-reload DBus if it's already started (Closes: #514778) * debian/postinst: add a netdev *group*, not *user* (Closes: #516317) * debian/po/fr.po added, debian/rules updated: - workaround to fix broken translation in broken i18n system (Closes: #516459) -- David Paleino Sun, 22 Feb 2009 21:30:47 +0100 wicd (1.5.9-1) unstable; urgency=low * New upstream release: - Fixed security hole in DBus configuration file - Fixed the TTLS template * debian/patches/: - 05-fix_DBus_policy.patch added, allow only members of the netdev group to configure wicd (Closes: #512160) * debian/postinst: add group "netdev", which will be the only one able to configure wicd * debian/control: added dependency on adduser * debian/NEWS.Debian and debian/docs added, explain the new permissions policy -- David Paleino Sun, 08 Feb 2009 14:57:56 +0100 wicd (1.5.8-1) unstable; urgency=low * New upstream release * debian/control: - DM-Upload-Allowed set (ACKed by Bernd Zeimetz) -- David Paleino Fri, 09 Jan 2009 19:17:27 +0100 wicd (1.5.7-2) unstable; urgency=high [ David Paleino ] * debian/rules: - passing --lib to configure, moving files in /usr/share/wicd (Closes: #510461) - also removing other/55wicd in clean target - binary-arch target emptied, not using it * debian/prerm removed: * debian/postinst updated: * debian/postrm updated: - fix double-{starting,stopping} of wicd - forcibly reload dbus upon installation or removal * debian/default added. * debian/init updated: - allow to disable the daemon in /etc/default/wicd. [ Bernd Zeimetz ] * debian/rules: - run dh_pysupport before dh_installinit, so Python modules will be compiled before the daemon starts (Closes: #510457) - call setup.py configure and install with appropriate options, so the modules are installed in the private module directory properly (Closes: #510462). * debian/patches/04-fix-scripts.patch: - set PYTHONPATH while executing script so Python will find them in the private directory (Closes: #510308) -- David Paleino Fri, 02 Jan 2009 18:20:29 +0100 wicd (1.5.7-1) unstable; urgency=low * New upstream release (Closes: #503737) * debian/control: - added some runtime dependencies (not really, but used by most users) to wicd (Closes: #503739) - added Conflicts: network-manager (Closes: #509051) - added Suggests on pm-utils, since we now also have those functionalities - update Vcs-* and Maintainer fields to reflect injection into PAPT * debian/postrm added: - removes runtime-generated files (Closes: #503747) * debian/patches: - 02-fix_logfile_perms.patch added, sets permissions of /var/log/wicd/wicd.log to root:adm (Closes: #503749) - 03-fix_lintian_manpage_warning.patch added, gives a more meaningful whatis entry * debian/rules: - get-orig-source target to ease upstream tarball fetch - ensure right permissions are set in install target - using dh7-style rules * debian/README.source added * debian/docs removed * debian/copyright fixed: - added copyright year to in/man* - removed useless escaping of '=' in filenames - fixed pointer to GPL-2 -- David Paleino Wed, 24 Dec 2008 17:37:13 +0100 wicd (1.5.2-1) unstable; urgency=low * Initial release (Closes: #465870) -- David Paleino Sun, 14 Sep 2008 11:43:47 +0200 debian/wicd-cli.postrm0000664000000000000000000000161512265216763012146 0ustar #!/bin/sh # postrm script for wicd-cli # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) find /usr/share/wicd/ \( -name "*.pyo" -o -name "*.pyc" \) -delete || true ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/NEWS.Debian0000664000000000000000000000266512265216763011073 0ustar wicd (1.7.0+ds1-3) unstable; urgency=low From version 1.7, wicd uses /etc/wicd/dhclient.conf.template as its configuration file for dhclient(1), if you chose it as DHCP client. Before connecting, this will copied to /etc/dhclient.conf, after a backup of the original file has been made. The backup would be restored after the connection terminates. For more information about how to use this file, refer to dhclient.conf(5). -- David Paleino Mon, 24 May 2010 16:09:33 +0200 wicd (1.5.9-1) unstable; urgency=low From this version onwards, the wicd-client GUI will be available only to users of the `netdev' group, so as to avoid users not enabled by root to change network configuration. This means that, if you do *not* belong to that group, wicd-client will refuse to start with a permission denied error by DBus, as soon as installation of 1.5.9-1 succeeds. To add yourself to the netdev group, ask your administrator to do, or do as root yourself: # usermod --append --groups netdev (obviously replace "" with the user you want to grant access to wicd-client to). This could also be done with graphical user management programs. Also, be sure to reload the D-Bus daemon with: # /etc/init.d/dbus reload -- David Paleino Sun, 08 Feb 2009 13:43:54 +0100 debian/clean0000664000000000000000000000070312265216763010207 0ustar man/nl/wicd-curses.8 man/nl/wicd-manager-settings.conf.5 man/nl/wicd-wired-settings.conf.5 man/nl/wicd-wireless-settings.conf.5 man/nl/wicd.8 man/wicd-cli.8 man/wicd-curses.8 man/wicd-manager-settings.conf.5 man/wicd-wired-settings.conf.5 man/wicd-wireless-settings.conf.5 man/wicd.8 other/50-wicd-suspend.sh other/55wicd other/80-wicd-connect.sh other/WHEREAREMYFILES other/wicd.conf other/wicd.logrotate vcsinfo.pyc wicd/wpath.py wpath.py wpath.pyc debian/README.Debian0000664000000000000000000000260212265216763011243 0ustar wicd for Debian --------------- 1. Installation problems ------------------------ If Wicd fails to connect after you install it, make sure that the only entry in your /etc/network/interfaces file is auto lo iface lo inet loopback You can change the contents of this file by using various editors, but remember: you have to be root! 2. Boot-time problems --------------------- If you happen to have boot-time problems, specifically the need to restart DBus at each boot, please make sure that DBus is started *before* wicd during boot. That should be ensured by the LSB headers in the init script, but not everyone has a dependency-based boot order. If your boot-time problems are of some other nature, please reportbug(1) them. 3. Delays when verifying AP association --------------------------------------- WICD uses ping(8) to verify it correctly associated to the AP. Until 1.6.1-3, it only spent at most 3 seconds to check this. This was done by passing "-w 3" to ping(8), but this parameter is not supported by inetutils-ping. So be warned that if you use inetutils-ping, there's no way to specify a maximum wait time: if your AP association failed, you must wait for the ping to timeout (roughly, ~10 seconds). A solution is using iputils-ping or, if you can't, bug inetutils-ping maintainers to add that feature. -- David Paleino Mon, 07 Dec 2009 16:58:07 +0100 debian/wicd-daemon.install0000664000000000000000000000025512265216763012763 0ustar etc/dbus-1/ etc/wicd/ usr/lib/pm-utils/ usr/sbin/ usr/share/man/nl/man5/ usr/share/man/nl/man8/wicd.8 usr/share/locale/ usr/share/wicd/daemon/ usr/share/wicd/backends/ var/ debian/README.source0000664000000000000000000000057512265216763011370 0ustar wicd for Debian --------------- This package uses quilt to manage all modifications to the upstream source. Changes are stored in the source package as diffs in debian/patches and applied during the build. Please read how to use quilt in the provided documentation: /usr/share/doc/quilt/README.source -- David Paleino Wed, 24 Dec 2008 10:40:45 +0100 debian/wicd-curses.postrm0000664000000000000000000000162012265216763012677 0ustar #!/bin/sh # postrm script for wicd-curses # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) find /usr/share/wicd/ \( -name "*.pyo" -o -name "*.pyc" \) -delete || true ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/wicd-cli.docs0000664000000000000000000000001712265216763011545 0ustar cli/README.cli debian/po/0000775000000000000000000000000012265217227007614 5ustar debian/po/es.po0000664000000000000000000000346212265216763010574 0ustar # wicd po-debconf translation to Spanish # Copyright (C) 2009 Software in the Public Interest # This file is distributed under the same license as the wicd package. # # Changes: # - Initial translation # Francisco Javier Cuadrado , 2009 # # Traductores, si no conocen el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor, lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # msgid "" msgstr "" "Project-Id-Version: wicd 1.6.0-2~pre1\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-06-16 11:32+0100\n" "Last-Translator: Francisco Javier Cuadrado \n" "Language-Team: Debian l10n Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "Usuarios a añadir al grupo netdev:" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users who should be able to run wicd clients need to be added to the group \"netdev\"." msgstr "Los usuarios que deberían poder ejecutar los clientes de wicd se deben añadir al grupo «netdev»." debian/po/ja.po0000664000000000000000000000212512265216763010552 0ustar # Debconf translations for wicd. # Copyright © 2009, David Paleino # This file is distributed under the same license as the wicd package. # Hideki Yamane (Debian-JP) , 2009. # msgid "" msgstr "" "Project-Id-Version: wicd 1.6.2.2-1\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-09-12 02:27+0900\n" "Last-Translator: Hideki Yamane (Debian-JP) \n" "Language-Team: Debian JP Project \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "netdev グループに追加するユーザ:" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "wicd クライアントを動作可能なユーザは「netdev」グループに追加されている" "必要があります。" debian/po/sr@latin.po0000664000000000000000000000203312265216763011732 0ustar # Debconf translations for wicd. # Copyright © 2011, Zlatan Todoric # This file is distributed under the same license as the wicd package. # Zlatan Todoric , 2011. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-02-13 10:36+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Zlatan Todoric \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../wicd-daemon.templates:1001 msgid "Users to add to the netdev group:" msgstr "Korisnike koje želite dodati (netdev) grupi:" #. Type: multiselect #. Description #: ../wicd-daemon.templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Korisnici koji bi trebali pokretati (wicd) klijente trebaju biti dodani" "\"netdev\" grupi." debian/po/da.po0000664000000000000000000000201012265216763010535 0ustar # Danish translation wicd. # Copyright (C) 2011 wicd & nedenstående oversættere. # This file is distributed under the same license as the wicd package. # Joe Hansen , 2011. # msgid "" msgstr "" "Project-Id-Version: wicd\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-02-13 10:36+0100\n" "PO-Revision-Date: 2011-04-03 17:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../wicd-daemon.templates:1001 msgid "Users to add to the netdev group:" msgstr "Brugere at tilføje til netdev-gruppen:" #. Type: multiselect #. Description #: ../wicd-daemon.templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Brugere, som skal være i stand til at køre wicd-klienter, skal tilføjes til " "gruppen »netdev«." debian/po/sr.po0000664000000000000000000000216512265216763010610 0ustar # Debconf translations for wicd. # Copyright © 2011, Zlatan Todoric # This file is distributed under the same license as the wicd package. # Zlatan Todoric , 2011. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-02-13 10:36+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Zlatan Todoric \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../wicd-daemon.templates:1001 msgid "Users to add to the netdev group:" msgstr "Кориснике које желите додати (netdev) групи:" #. Type: multiselect #. Description #: ../wicd-daemon.templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Корисници који би требали покретати (wicd) клијенте требају бити додани" "\"netdev\" групи." debian/po/zh_CN.po0000664000000000000000000000177412265216763011172 0ustar # Debconf translations for wicd. # Copyright © 2009, David Paleino # This file is distributed under the same license as the wicd package. # Deng Xiyue , 2009. # msgid "" msgstr "" "Project-Id-Version: wicd\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-06-17 14:14+0800\n" "Last-Translator: Deng Xiyue \n" "Language-Team: Debian Chinese GB \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "要加入 netdev 组中的用户:" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "要运行 wicd 客户端的用户需要加入到“netdev”组中。" debian/po/de.po0000664000000000000000000000207312265216763010552 0ustar # Debconf translations for wicd. # Copyright © 2009, David Paleino # This file is distributed under the same license as the wicd package. # Copyright (C) Helge Kreutzmann , 2009. # msgid "" msgstr "" "Project-Id-Version: wicd 1.6.0-2~pre1\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-06-15 22:41+0200\n" "Last-Translator: Helge Kreutzmann \n" "Language-Team: de \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "Benutzer, die zur Gruppe »netdev« hinzugefügt werden sollen:" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Benutzer, die die Clients von Wicd ausführen sollen, müssen zu der Gruppe " "»netdev« hinzugefügt werden." debian/po/pt.po0000664000000000000000000000214112265216763010601 0ustar # translation of wicd debconf to Portuguese # Debconf translations for wicd. # Copyright © 2009, David Paleino # This file is distributed under the same license as the wicd package. # # Américo Monteiro , 2009. msgid "" msgstr "" "Project-Id-Version: wicd 1.6.0-2~pre1\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-06-15 19:15+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "Utilizadores a adicionar ao grupo netdev:" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Os utilizadores com permissão de usar os clientes do wicd necessitam de ser " "adicionados ao grupo \"netdev\"." debian/po/POTFILES.in0000664000000000000000000000006012265216763011371 0ustar [type: gettext/rfc822deb] wicd-daemon.templates debian/po/ru.po0000664000000000000000000000240712265216763010611 0ustar # Debconf translations for wicd. # Copyright © 2009, David Paleino # This file is distributed under the same license as the wicd package. # # Yuri Kozlov , 2009. msgid "" msgstr "" "Project-Id-Version: wicd 1.6.0-2~pre1\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-06-15 21:32+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "Пользователи, добавляемые в группу netdev:" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Пользователи, которым разрешено запускать клиентов wicd, должны быть " "добавлены в группу \"netdev\"." debian/po/sv.po0000664000000000000000000000211712265216763010611 0ustar # Debconf translations for wicd. # Copyright © 2009, David Paleino # This file is distributed under the same license as the wicd package. # Martin Bagge, , 2009. # msgid "" msgstr "" "Project-Id-Version: wicd 1.6.0-2~pre1\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-06-16 22:44+0100\n" "Last-Translator: Martin Bagge \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Swedish\n" "X-Poedit-Country: Sweden\n" "X-Poedit-SourceCharset: utf-8\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "Användare att lägga till i gruppen netdev:" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users who should be able to run wicd clients need to be added to the group \"netdev\"." msgstr "Användare som ska kunna köra wicd-klienter måste läggas till i gruppen \"netdev\"." debian/po/cs.po0000664000000000000000000000177012265216763010572 0ustar # Debconf translations for wicd. # Copyright B) 2009, David Paleino # This file is distributed under the same license as the wicd package. # Martin Sin , 2009. # msgid "" msgstr "" "Project-Id-Version: wicd 1.6.0-2~pre1\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-06-14 11:32+0200\n" "Last-Translator: Martin Sin \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "Uživatelé přidaní do skupiny netdev:" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Uživatele, kteří budou spouštět klienty wicd, je třeba přidat do skupiny " "\"netdev\"." debian/po/fr.po0000664000000000000000000000212012265216763010562 0ustar # Translation of wicd debconf templates to French # This file is distributed under the same license as the wicd package. # Copyright © 2006-2009 Debian French l10n team # Translator: # Steve Petruzzello , 2009 msgid "" msgstr "" "Project-Id-Version: wicd_1.6.1-3\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-06-30 12:00+0200\n" "Last-Translator: Steve Petruzzello \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "Utilisateurs à ajouter au groupe netdev :" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Les utilisateurs désirant utiliser wicd doivent être ajoutés au groupe " "« netdev »." debian/po/pt_BR.po0000664000000000000000000000210112265216763011160 0ustar # Debconf translations for wicd. # Copyright © 2010, David Paleino # This file is distributed under the same license as the wicd package. # Adriano Rafael Gomes , 2010. # msgid "" msgstr "" "Project-Id-Version: wicd 1.7.0+ds1-5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-05-30 10:35+0200\n" "PO-Revision-Date: 2010-08-06 17:53-0300\n" "Last-Translator: Adriano Rafael Gomes \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "pt_BR utf-8\n" #. Type: multiselect #. Description #: ../wicd-daemon.templates:1001 msgid "Users to add to the netdev group:" msgstr "Usuários a adicionar ao grupo netdev:" #. Type: multiselect #. Description #: ../wicd-daemon.templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Os usuários que devem ser capazes de executar clientes wicd precisam ser " "adicionados ao grupo \"netdev\"." debian/po/fi.po0000664000000000000000000000206212265216763010556 0ustar # Debconf translations for wicd. # Copyright © 2009, David Paleino # This file is distributed under the same license as the wicd package. # # Esko Arajärvi , 2009. msgid "" msgstr "" "Project-Id-Version: wicd\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-06-15 21:25+0300\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 0.3\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "Ryhmään ”netdev” lisättävät käyttäjät:" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Käyttäjien tulee kuulua ryhmään ”netdev” voidakseen ajaa wicd-asiakkaita." debian/po/nl.po0000664000000000000000000000211212265216763010565 0ustar # Dutch translation of wicd debconf templates. # Copyright (C) 2009, David Paleino. # This file is distributed under the same license as the wicd package. # Jeroen Schot , 2011. # msgid "" msgstr "" "Project-Id-Version: wicd 1.7.0+ds1-6\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2011-09-28 11:38+0200\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "Gebruikers die aan de netdev-groep moeten worden toegevoegd:" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Gebruikers die wicd-clients moeten kunnen uitvoeren moeten worden toegevoegd " "aan de groep 'netdev'." debian/po/id.po0000664000000000000000000000272712265216763010564 0ustar # Wicd Debconf translations for Indonesian. # Copyright (C) 2007 Software in the Public Interest, SPI Inc. # This file is distributed under the same license as the wicd package. # proyek penerjemahan Bahasa Indonesia. # # Sebelum menerjemahkan silakan melihat-lihat ke: # - /usr/share/doc/po-debconf/README-trans atau # http://www.debian.org/intl/l10n/po-debconf/README-trans # - http://www.debian.org/international/l10n/po-debconf/id # Silakan menghubungi tim penerjemah Debian Indonesia bila ada pertanyaan, # kritik, dan saran ke debian-l10n-indonesian@lists.debian.org # Mahyuddin Susanto , 2012. # msgid "" msgstr "" "Project-Id-Version: wicd 1.7.1-1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-02-03 10:48+0100\n" "PO-Revision-Date: 2012-02-06 07:48+0700\n" "Last-Translator: Mahyuddin Susanto \n" "Language-Team: Debian Indonesia Translators \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../wicd-daemon.templates:1001 msgid "Users to add to the netdev group:" msgstr "Pengguna yang ditambahkan ke grup netdev:" #. Type: multiselect #. Description #: ../wicd-daemon.templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Pengguna yang dapat menjalankan klien wicd perlu di tambahkan ke grup " "\"netdev\"." debian/po/eu.po0000664000000000000000000000215512265216763010574 0ustar # translation of templates.po to Euskara # Debconf translations for wicd. # Copyright © 2009, David Paleino # This file is distributed under the same license as the wicd package. # # Piarres Beobide EGaña , 2009. msgid "" msgstr "" "Project-Id-Version: templates\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-06-19 12:28+0200\n" "Last-Translator: Piarres Beobide EGaña \n" "Language-Team: Euskara \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "netdev taldera gehitzeko erabiltzaileak:" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Wicd bezeroak exekutatzeko gai diren erabiltzaileak \"netdev\" taldean " "gehitu behar dira." debian/po/it.po0000664000000000000000000000205312265216763010574 0ustar # Debconf translations for wicd. # Copyright © 2009, David Paleino # This file is distributed under the same license as the wicd package. # David Paleino , 2009. # msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: 2009-04-20 20:33+0200\n" "Last-Translator: David Paleino \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "Utenti da aggiungere al gruppo netdev:" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr "" "Gli utenti che dovrebbero essere abilitati all'esecuzione dei client wicd " "devono essere aggiunti al gruppo \"netdev\"." debian/po/templates.pot0000664000000000000000000000153112265216763012342 0ustar # Debconf translations for wicd. # Copyright © 2009, David Paleino # This file is distributed under the same license as the wicd package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: wicd@packages.debian.org\n" "POT-Creation-Date: 2009-06-13 17:38+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../templates:1001 msgid "Users to add to the netdev group:" msgstr "" #. Type: multiselect #. Description #: ../templates:1001 msgid "" "Users who should be able to run wicd clients need to be added to the group " "\"netdev\"." msgstr ""