--- service-discovery-applet-0.4.1.orig/debian/compat +++ service-discovery-applet-0.4.1/debian/compat @@ -0,0 +1 @@ +5 --- service-discovery-applet-0.4.1.orig/debian/copyright +++ service-discovery-applet-0.4.1/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by Sebastian Dröge on +Tue, 8 Sep 2005 15:12:41 +0200. + +It was downloaded from http://0pointer.de/~sebest/ + +Upstream Authors: Sebastien Estienne + Sebastian Dröge + +Copyright: + + Copyright (c) 2005 Sebastien Estienne + + sd-applet is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + sd-applet is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + License for more details. + + You should have received a copy of the GNU General Public + License along with sd-applet; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + + On Debian systems, the complete text of the GNU General Public + License, version 2, can be found in /usr/share/common-licenses/GPL-2. + --- service-discovery-applet-0.4.1.orig/debian/rules +++ service-discovery-applet-0.4.1/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +common-binary-predeb-indep:: + dh_python -V2.4 -pservice-discovery-applet --- service-discovery-applet-0.4.1.orig/debian/control +++ service-discovery-applet-0.4.1/debian/control @@ -0,0 +1,14 @@ +Source: service-discovery-applet +Section: net +Priority: optional +Maintainer: Sebastian Dröge +Build-Depends-Indep: cdbs (>> 0.4.8), debhelper (>= 5), python2.4, python2.4-gtk2, python2.4-gnome2, python2.4-gnome2-extras, python2.4-dbus, python2.4-gnome2-desktop, python2.4-avahi (>= 0.6.9), gconf2, libxml-parser-perl +Standards-Version: 3.6.2 + +Package: service-discovery-applet +Architecture: all +Depends: ${python:Depends}, ${misc:Depends}, python2.4-gtk2, python2.4-gnome2, python2.4-gnome2-extras, python2.4-dbus, python2.4-gnome2-desktop, python2.4-avahi (>= 0.6.9), avahi-daemon, notification-daemon (>= 0.3.2) +Description: service discovery applet based on avahi for the GNOME panel + The service discovery applet lists all available services which are + published through avahi/Rendezvous/Bonjour/ZeroConf and allows to run + actions on that service. --- service-discovery-applet-0.4.1.orig/debian/changelog +++ service-discovery-applet-0.4.1/debian/changelog @@ -0,0 +1,56 @@ +service-discovery-applet (0.4.1-1ubuntu2) dapper; urgency=low + + * debian/patches/01_webdav-uri-scheme.diff: + + Use dav(s) as URI scheme for webdav(s) as required by gnomevfs + + -- Sebastian Dröge Thu, 20 Apr 2006 11:27:10 +0200 + +service-discovery-applet (0.4.1-1ubuntu1) dapper; urgency=low + + * Sync with Debian: + + Add python2.4-gnome2-desktop dependency + + -- Sebastian Dröge Sun, 2 Apr 2006 23:58:23 +0200 + +service-discovery-applet (0.4.1-1) unstable; urgency=low + + * New upstream release (Closes: #353276) + + -- Sebastian Dröge Sat, 1 Apr 2006 18:18:05 +0200 + +service-discovery-applet (0.4-1) unstable; urgency=low + + * New upstream release (Closes: #355556, #350758, #355559) + * 01_avahi0.6.diff, + 02_notification-daemon-new-api.diff: + - Dropped, both are upstream now + * Update to debhelper compat level 5 + + -- Sebastian Dröge Tue, 28 Mar 2006 22:40:15 +0200 + +service-discovery-applet (0.3.1-4) unstable; urgency=low + + * Depend on notification-daemon (>= 0.3.2) for the new API + * 02_notification-daemon-new-api.diff: + + Changes required to run with the latest notification daemon + + -- Sebastian Dröge Mon, 30 Jan 2006 21:13:42 +0100 + +service-discovery-applet (0.3.1-3) unstable; urgency=low + + * Upload to unstable + + -- Sebastian Dröge Tue, 17 Jan 2006 23:01:34 +0100 + +service-discovery-applet (0.3.1-2) experimental; urgency=low + + * 01_avahi0.6.diff: + + Changes from SVN for avahi 0.6. Still runs with older avahi + + -- Sebastian Dröge Wed, 21 Dec 2005 18:29:00 +0100 + +service-discovery-applet (0.3.1-1) experimental; urgency=low + + * Initial revision (Closes: #327221) + + -- Sebastian Dröge Mon, 21 Nov 2005 23:22:21 +0100 --- service-discovery-applet-0.4.1.orig/debian/patches/01_webdav-uri-scheme.diff +++ service-discovery-applet-0.4.1/debian/patches/01_webdav-uri-scheme.diff @@ -0,0 +1,14 @@ +--- plugins/nautilus.py.old 2006-04-20 11:26:14.384000000 +0200 ++++ plugins/nautilus.py 2006-04-20 11:26:28.396000000 +0200 +@@ -40,9 +40,9 @@ + if stype == "_sftp-ssh._tcp": + url = build_url("sftp",address,port, path, username,password) + if stype == "_webdav._tcp": +- url = build_url("webdav",address,port, path, username,password) ++ url = build_url("dav",address,port, path, username,password) + if stype == "_webdavs._tcp": +- url = build_url("webdavs",address,port, path, username,password) ++ url = build_url("davs",address,port, path, username,password) + gnome.url_show(url) + +