--- xfce4-weather-plugin-0.5.0.orig/debian/NEWS +++ xfce4-weather-plugin-0.5.0/debian/NEWS @@ -0,0 +1,9 @@ +xfce4-weather-plugin (0.4.1-1) experimental; urgency=low + + It is possible to refresh the applet status simply clicking with + the central button on it. + + This is particulary useful if you started xfce without a network + connection and bring it up later. + + -- Emanuele Rocca Tue, 29 Mar 2005 15:25:21 +0200 --- xfce4-weather-plugin-0.5.0.orig/debian/control +++ xfce4-weather-plugin-0.5.0/debian/control @@ -0,0 +1,22 @@ +Source: xfce4-weather-plugin +Section: x11 +Priority: optional +Maintainer: Debian Xfce Maintainers +Uploaders: Emanuele Rocca , Simon Huggins , Rudy Godoy , Martin Loschwitz +Build-Depends: autotools-dev, cdbs (>= 0.4.32ubuntu14), debhelper (>= 5.0.0), xfce4-panel-dev (>= 4.3.0), libxml2-dev, libtool, automake1.8, libxml-parser-perl +Standards-Version: 3.6.2 + +Package: xfce4-weather-plugin +Architecture: any +Depends: ${shlibs:Depends}, xfce4-panel +Description: weather information plugin for the Xfce4 panel + The weather plugin displays information about the current weather according + your timezone and settings. It allows to search weather location code in + the same plugin and displays weather status in little icons. + . + Features include: + - Temperature, atmosphere presure and state. + - Wind speed, gust, and direction. + - Humidity, Visibility, Dewpoint, UV Index. + . + Homepage: http://xfce-goodies.berlios.de/ --- xfce4-weather-plugin-0.5.0.orig/debian/rules +++ xfce4-weather-plugin-0.5.0/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/class/xfce.mk + +binary-post-install/xfce4-weather-plugin:: + -rm -rf debian/`dh_listpackages`/usr/lib/xfce4/panel-plugins/*.a + -rm -rf debian/`dh_listpackages`/usr/lib/xfce4/panel-plugins/*.la + + --- xfce4-weather-plugin-0.5.0.orig/debian/watch +++ xfce4-weather-plugin-0.5.0/debian/watch @@ -0,0 +1,3 @@ +version=2 +http://download.berlios.de/xfce-goodies/ \ + xfce4-weather-plugin-(.*)\.tar\.gz debian uupdate -u --- xfce4-weather-plugin-0.5.0.orig/debian/changelog +++ xfce4-weather-plugin-0.5.0/debian/changelog @@ -0,0 +1,64 @@ +xfce4-weather-plugin (0.5.0-0ubuntu1) dapper; urgency=low + + * New upstream release + * Set Standard policy version to 3.6.2 + * Add build-depend libxml-parser-perl + * Set xfce4-panel >= 4.3 + * Bump debhelper + * Do not use Update aclocal libtool in rules (they generate files out + of the debian dir) + * debian/rules: Use xfce.mk CDBS class + * Apply fix for crash with glib-2.10 from upstream bugzilla + + -- Daniele Favara Fri, 10 Mar 2006 01:22:21 +0100 + +xfce4-weather-plugin (0.4.9-2ubuntu3) breezy; urgency=low + + * Remove the libglitz1-dev build-dep. + * Rebuild again to rid us of the unwanted libglitz dependency. + + -- Adam Conrad Tue, 30 Aug 2005 05:50:14 +1000 + +xfce4-weather-plugin (0.4.9-2ubuntu2) breezy; urgency=low + + * Rebuild with the new cairo version + + -- Sebastien Bacher Thu, 18 Aug 2005 17:24:00 +0000 + +xfce4-weather-plugin (0.4.9-2ubuntu1) breezy; urgency=low + + * Fix FTBFS: + + Build-Depend on libglitz1-dev. + + -- Daniel T Chen Thu, 4 Aug 2005 01:53:28 -0700 + +xfce4-weather-plugin (0.4.9-2) unstable; urgency=low + + * Rebuilding to fix libxfcegui dependency (Closes: #315447) + * Moving to unstable + + -- Emanuele Rocca Mon, 20 Jun 2005 21:28:42 +0200 + +xfce4-weather-plugin (0.4.9-1) experimental; urgency=low + + * New upstream release + + -- Emanuele Rocca Sun, 17 Apr 2005 19:38:26 +0200 + +xfce4-weather-plugin (0.4.1-1) experimental; urgency=low + + * New upstream version + - Do not hang when closing properties without changes (Closes: #265249) + * Added libstartup-notification0-dev to Build-depends + * Package adopted by the Debian Xfce Maintainers + * Added note about refreshing informations to NEWS.Debian + (Closes: #265250) + + -- Emanuele Rocca Tue, 29 Mar 2005 15:25:21 +0200 + +xfce4-weather-plugin (0.3.9-1) unstable; urgency=low + + * Initial Release. (Closes: #258600) + + -- Emanuele Rocca Sun, 11 Jul 2004 12:09:48 +0200 + --- xfce4-weather-plugin-0.5.0.orig/debian/compat +++ xfce4-weather-plugin-0.5.0/debian/compat @@ -0,0 +1 @@ +5 --- xfce4-weather-plugin-0.5.0.orig/debian/patches/glib2.10_crash_fix.patch +++ xfce4-weather-plugin-0.5.0/debian/patches/glib2.10_crash_fix.patch @@ -0,0 +1,21 @@ +diff -Nur xfce4-weather-plugin-0.5.0/panel-plugin/scrollbox.c xfce4-weather-plugin-0.5.0.new/panel-plugin/scrollbox.c +--- xfce4-weather-plugin-0.5.0/panel-plugin/scrollbox.c 2005-10-10 10:53:11.000000000 +0300 ++++ xfce4-weather-plugin-0.5.0.new/panel-plugin/scrollbox.c 2006-03-28 08:55:16.000000000 +0300 +@@ -17,7 +17,7 @@ + void free_label(struct label *lbl) + { + if (lbl->pixmap) +- g_free(lbl->pixmap); ++ g_object_unref(lbl->pixmap); + if (lbl->msg) + g_free(lbl->msg); + } +@@ -278,7 +278,7 @@ + { + struct label *lbl = (struct label*)g_ptr_array_index(self->labels, i); + +- g_free(lbl->pixmap); ++ g_object_unref(lbl->pixmap); + g_free(lbl->msg); + } + g_ptr_array_free(self->labels, TRUE); --- xfce4-weather-plugin-0.5.0.orig/debian/copyright +++ xfce4-weather-plugin-0.5.0/debian/copyright @@ -0,0 +1,32 @@ +This package was debianized by Emanuele Rocca on +Thu, 8 Jul 2004 14:08:20 +0200. + +It was downloaded from + +Upstream Author: Bob Schlärmann + +Copyright: + + Copyright (c) 2004 Bob Schlärmann + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 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.