--- indicator-applet-0.3.3.orig/ChangeLog +++ indicator-applet-0.3.3/ChangeLog @@ -0,0 +1 @@ +Updating to 2a --- indicator-applet-0.3.3.orig/autogen.sh +++ indicator-applet-0.3.3/autogen.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +PKG_NAME="indicator-applet" + +which gnome-autogen.sh || { + echo "You need gnome-common from GNOME SVN" + exit 1 +} + +USE_GNOME2_MACROS=1 \ +gnome-autogen.sh --- indicator-applet-0.3.3.orig/src/applet-main.c +++ indicator-applet-0.3.3/src/applet-main.c @@ -461,6 +461,13 @@ GtkWidget *menubar; gint i; gint indicators_loaded = 0; + + /* check if we are running stracciatella session */ + if (g_strcmp0(g_getenv("GDMSESSION"), "gnome-stracciatella") == 0) { + g_debug("Running stracciatella GNOME session, disabling myself"); + return TRUE; + } + static gboolean first_time = FALSE; #ifdef INDICATOR_APPLET_SESSION --- indicator-applet-0.3.3.orig/debian/rules +++ indicator-applet-0.3.3/debian/rules @@ -0,0 +1,7 @@ +#!/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 + +LDFLAGS += -Wl,-z,defs -Wl,--as-needed --- indicator-applet-0.3.3.orig/debian/indicator-applet-complete.install +++ indicator-applet-0.3.3/debian/indicator-applet-complete.install @@ -0,0 +1,2 @@ +debian/tmp/usr/lib/bonobo/servers/GNOME_IndicatorAppletComplete.server +debian/tmp/usr/lib/indicator-applet/indicator-applet-complete --- indicator-applet-0.3.3.orig/debian/indicator-applet.install +++ indicator-applet-0.3.3/debian/indicator-applet.install @@ -0,0 +1,3 @@ +debian/tmp/usr/lib/bonobo/servers/GNOME_IndicatorApplet.server +debian/tmp/usr/lib/indicator-applet/indicator-applet +debian/tmp/usr/share/icons --- indicator-applet-0.3.3.orig/debian/watch +++ indicator-applet-0.3.3/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://launchpad.net/indicator-applet/+download .*/indicator-applet-([0-9.]+)\.tar\.gz --- indicator-applet-0.3.3.orig/debian/copyright +++ indicator-applet-0.3.3/debian/copyright @@ -0,0 +1,33 @@ +This package was debianized by Ted Gould on +Wed, 11 Feb 2009 15:41:06 -0600. + +It was downloaded from + +Upstream Author: + + Ted Gould + +Copyright: + + Copyright (C) 2009 Canonical Ltd. + +License: + + This program 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, version 3 of the License. + + This program 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 this program; 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 can be found in `/usr/share/common-licenses/GPL-3'. + +The Debian packaging is (C) 2009, Canonical Ltd. and +is licensed under the GPLv3, see `/usr/share/common-licenses/GPL-3'. --- indicator-applet-0.3.3.orig/debian/compat +++ indicator-applet-0.3.3/debian/compat @@ -0,0 +1 @@ +5 --- indicator-applet-0.3.3.orig/debian/indicator-applet-session.install +++ indicator-applet-0.3.3/debian/indicator-applet-session.install @@ -0,0 +1,2 @@ +debian/tmp/usr/lib/bonobo/servers/GNOME_FastUserSwitchApplet.server +debian/tmp/usr/lib/indicator-applet/indicator-applet-session --- indicator-applet-0.3.3.orig/debian/control +++ indicator-applet-0.3.3/debian/control @@ -0,0 +1,70 @@ +Source: indicator-applet +Section: gnome +Priority: optional +Maintainer: Ubuntu Core Developers +Build-Depends: debhelper (>= 5.0), + cdbs (>= 0.4.41), + libgtk2.0-dev (>= 2.12.0), + libpanel-applet2-dev (>= 2.0.0), + libdbus-glib-1-dev, + gnome-doc-utils, + libtool, + intltool, + libxml2-dev, + gtk-doc-tools, + libindicator-dev (>= 0.3.1) +Standards-Version: 3.8.4 +Homepage: https://launchpad.net/indicator-applet +Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-desktop/indicator-applet/ubuntu +Vcs-Browser: https://code.launchpad.net/~ubuntu-desktop/indicator-applet/ubuntu + +Package: indicator-applet +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + gnome-panel +Recommends: indicator-messages, + indicator-sound, + indicator-application +Description: GNOME panel indicator applet + indicator-applet is an applet to display information from + various applications consistently in the GNOME panel. + . + Currently this includes support for messaging applications in the + indicator-messages package. + +Package: indicator-applet-session +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + gnome-panel, + indicator-applet (= ${binary:Version}) +Recommends: indicator-session, + indicator-me +Conflicts: indicator-applet-sus, gdm (<< 2.27.90-0ubuntu1), fast-user-switch-applet +Replaces: indicator-applet-sus, gdm (<< 2.27.90-0ubuntu1), fast-user-switch-applet +Description: Clone of the GNOME panel indicator applet + Indicator-applet is an applet to display information from + various applications consistently in the GNOME panel. + . + This instance will only load the session menu which provides + status changing, user choosing and session management. + +Package: indicator-applet-complete +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + gnome-panel, + indicator-applet (= ${binary:Version}) +Recommends: indicator-session, + indicator-me, + indicator-messages, + indicator-sound, + indicator-application +Description: Clone of the GNOME panel indicator applet + Indicator-applet is an applet to display information from + various applications consistently in the GNOME panel. + . + This instance will load all indicators in a single panel + applet. + --- indicator-applet-0.3.3.orig/debian/changelog +++ indicator-applet-0.3.3/debian/changelog @@ -0,0 +1,349 @@ +indicator-applet (0.3.3-0ubuntu1) lucid; urgency=low + + * Upstream release 0.3.3 + * Add libsoundmenu.so to the ordering to place it next + to the messaging menu. + + [ Loïc Minier ] + * Fix typo in description. + + [ Colin Watson ] + * Conflict/replace fast-user-switch-applet, since they both ship + /usr/lib/bonobo/servers/GNOME_FastUserSwitchApplet.server. + + -- Ted Gould Thu, 11 Mar 2010 15:26:37 -0600 + +indicator-applet (0.3.2-0ubuntu3) lucid; urgency=low + + * debian/control: + - Switching indicator-session and indicator-me to recommends + of indicator-applet-session. + - Switching indicator-applet-complete to recommend everything. + - Adding indicator-application to indicator-applet recommends + + -- Ted Gould Mon, 15 Feb 2010 11:58:15 -0600 + +indicator-applet (0.3.2-0ubuntu2) lucid; urgency=low + + * debian/control: + - change the depends on indicator-messages to a recommends, + recommends indicator-sound too so it gets installed by default + - updated the standards-version + + -- Sebastien Bacher Fri, 12 Feb 2010 13:35:22 +0100 + +indicator-applet (0.3.2-0ubuntu1) lucid; urgency=low + + * Upstream release 0.3.2 + * Send debug information to a file + * Adding support for sorting the indicators. + * debian/control: Increasing libindicator required version to + version 0.3.1 for the reordering functions. + + -- Ted Gould Thu, 21 Jan 2010 13:31:03 -0600 + +indicator-applet (0.3.1-0ubuntu3) lucid; urgency=low + + * debian/control: + - depends on the new indicator-me since it is in lucid now. + + -- Sebastien Bacher Mon, 11 Jan 2010 16:48:08 +0100 + +indicator-applet (0.3.1-0ubuntu2) lucid; urgency=low + + * debian/control + - drop the dependancy for indicator-applet-session on indicator-me + until indicator-me gets uploaded + + -- Ken VanDine Fri, 08 Jan 2010 16:57:52 -0500 + +indicator-applet (0.3.1-0ubuntu1) lucid; urgency=low + + * Upstream release 0.3.1 + * Add support for indicator-me in session applet + * Change built to use one source + * Unifing all of the code into one C file with defines + * Adding an indicator-applet-complete build + * Adding in handling of the me menu indicator. It should go + in indicator-applet-session. + * debian/control: Adding package indicator-applet-complete + * debian/control: Making indicator-applet-session depend on + indicator-me. + * Added debian/indicator-applet-complete.install + + -- Ted Gould Fri, 08 Jan 2010 08:53:18 -0600 + +indicator-applet (0.3.0-0ubuntu1) lucid; urgency=low + + * Upstream release 0.3.0 + * Update to libindicator 0.3.0 API + * debian/control: Updating libindicator to 0.3.0 or greater. + + -- Ted Gould Thu, 10 Dec 2009 11:34:33 -0600 + +indicator-applet (0.2.0-0ubuntu2) karmic; urgency=low + + * debian/rules: Enable simple-patchsys. + * Add debian/patches/01_stracciatella.patch: Do not show up in stracciatella + session. (LP: #444149) + + -- Martin Pitt Wed, 14 Oct 2009 20:38:39 +0200 + +indicator-applet (0.2.0-0ubuntu1) karmic; urgency=low + + * New upstream version + + -- Sebastien Bacher Tue, 01 Sep 2009 16:18:35 +0200 + +indicator-applet (0.2.0~bzr326-0ubuntu2) karmic; urgency=low + + * debian/control: + - Make session applet replace/conflict with gdm << 2.27.90-0ubuntu1 + - Added Depends on indicator-session + + -- Ken VanDine Tue, 25 Aug 2009 15:07:35 +0200 + +indicator-applet (0.2.0~bzr326-0ubuntu1) karmic; urgency=low + + [ Ken VanDine ] + * Upstream merge to match indicate-session instead of indicate-sus + * debian/control: + - Added conflicts and replaces for indicator-applet-session with + indicator-applet-sus + - Removed all lib* packages + - Added a build dependency on libindicator-dev + - Changing additional applet from SUS to session + - Fixed Vcs-Bzr and added Vcs-Bzr-Browser + * Merging in trunk which is now indicator-applet only. + * Removed the file listings for these binary packages: + debian/libindicate-dev.install + debian/libindicate-doc.install + debian/libindicate-gtk-dev.install + debian/libindicate-gtk0.install + debian/libindicate2.install + debian/libindicator-dev.install + * debian/copyright: Removing license information for the libraries + that have been removed. + * debian/rules: Removing build switches for library docs. + * debian/indicator-applet-sus.install => debian/indicator-applet-session.install + Renaming pacage from SUS to Session + * debian/indicator-applet.install: Removing listen-and-print as + it's no longer in this package. + * Setting the icon path in the .pc file. + * Merging onto the main packaging branch. + * Renaming the second Bonobo server description file to match that + of the FastUserSwitchApplet. + * Upstream merge for better naming of the applet. + * Updating from upstream with two (count them) two applets + installed in the source. + + [ Martin Pitt ] + * debian/control: Bump libindicator-dev build dependency. + * debian/control: Fix Vcs-* fields. + + -- Ken VanDine Tue, 25 Aug 2009 08:57:03 +0200 + +indicator-applet (0.2.0~bzr319-0ubuntu5) UNRELEASED; urgency=low + + * debian/control: Update Vcs-Bzr:, owner of the branch changed to + ubuntu-desktop. + + -- Martin Pitt Mon, 24 Aug 2009 15:17:13 +0200 + +indicator-applet (0.2.0~bzr319-0ubuntu4) karmic; urgency=low + + * Add build-dep on gtk-doc-tools + + -- Jonathan Riddell Wed, 05 Aug 2009 11:28:57 +0100 + +indicator-applet (0.2.0~bzr319-0ubuntu3) karmic; urgency=low + + * debian/rules + - added --enable-gtk-doc to build the docs + + -- Ken VanDine Wed, 05 Aug 2009 09:50:17 +0100 + +indicator-applet (0.2.0~bzr319-0ubuntu2) karmic; urgency=low + + * Run ./autogen.sh before upload + + -- Jonathan Riddell Wed, 05 Aug 2009 00:40:52 +0100 + +indicator-applet (0.2.0~bzr319-0ubuntu1) karmic; urgency=low + + [ Ted Gould ] + * Merging in upstream code to split out libindicate-gtk + * debian/control: + * Changing the version number of libindcate to 2 to match + the .so numbering. + * Creating packages for libindicate-gtk + * Added libindicate-gtk-dev.install and libindicate-gtk0.install + for the new library. + * Renamed libindicate1.install to libindicate2.install to match + the package name change. + * Modified libindicate-dev to be more specific about the header + files that it grabs. + + -- Jonathan Riddell Wed, 05 Aug 2009 00:22:54 +0100 + +indicator-applet (0.2.0~bzr309-0ubuntu3) karmic; urgency=low + + * Now moving on to Karmic + + -- Ted Gould Fri, 17 Jul 2009 21:24:41 -0500 + +indicator-applet (0.2.0~bzr309-0ubuntu2) jaunty; urgency=low + + * debian/control, debian/libindicate-doc.install: Merging in Ken + Vandine's work on making a -doc package for libindicate. + + -- Ted Gould Fri, 17 Jul 2009 21:23:41 -0500 + +indicator-applet (0.2.0~bzr309-0ubuntu1) jaunty; urgency=low + + * Merge from upstream, includes documentation. + + -- Ted Gould Tue, 05 May 2009 16:44:29 +0100 + +indicator-applet (0.2.0~bzr307-0ubuntu2) jaunty; urgency=low + + * Increment for PPA. Forgot to autogen.sh + + -- Ted Gould Mon, 27 Apr 2009 11:06:45 -0500 + +indicator-applet (0.2.0~bzr307-0ubuntu1) jaunty; urgency=low + + * Upstream Snapshot: Adding in a test suite. + * debian/control: Adding a build-dep on dbus-test-runner + + -- Ted Gould Mon, 27 Apr 2009 10:52:28 -0500 + +indicator-applet (0.2.0~bzr305-0ubuntu1) jaunty; urgency=low + + * Upstream snapshot + * debian/control: + * Add in package libindicator-dev + * Add build depends on libxml2-dev for upstream dep + * debian/libindicate-dev.install: Add greater specificity on what + gets installed to not get confused with files from libindicator + * debian/libindicator-dev.install: Specify which files should be + put into the development package. + + -- Ted Gould Wed, 22 Apr 2009 23:46:28 -0500 + +indicator-applet (0.1.6-0ubuntu1) jaunty; urgency=low + + * New upstream version + * Applied the same fixes as Cody Russell's patch to indicator-messages + to the finalize functions here. Should fix LP: #359018 completely. + * Minor warnings fixes in search of solution to above. + + -- Ted Gould Tue, 14 Apr 2009 11:36:12 +0200 + +indicator-applet (0.1.5-0ubuntu1) jaunty; urgency=low + + * debian/control: Switching libindicate0 to libindicate1 to express + the fact that the binary compatibility is broken. + * debian/libindicate0.install changed to debian/libindicate1.install + * New upstream version: + * Adds new API for detecting interests of various listeners. Implemented + on both client and server side. (LP: #353112) + * Makes it so that all objects down to the menu now use the gtkstyle + naming from FUSA to ensure that they all pick up the theme hacks that + are set for FUSA. (LP: #334490) + * Explicitly sets the about window's window icon. (LP: #356437) + + -- Ted Gould Fri, 03 Apr 2009 15:09:33 -0500 + +indicator-applet (0.1.4-0ubuntu1) jaunty; urgency=low + + * New upstream version + * Changing the text in the license box to make sense. (LP: #346215) + * Call GNOME Program Init to initialize all of the ATK and gettext + stuff that needs to be initialized for it all to work. Patch from + Eitan Isaacson. (LP: #349031) + * Give the indicator applet an ATK name so it can be found by the + accessibility frameworks. Patch from Eitan Isaacson. (LP: #349031) + * Making it so the 'No Indicators' situation uses a label instead of a + desensitized menu item to allow right click through. (LP: #346359) + * Remove the making of 'Indicator Applet Factory' translatable. + (LP: #349540) + * Make sure translations get loaded and make the 'No Indicators' error + and the license translatable. Patch from Gabor Kelemen. (LP: #349998) + * debian/control: Adding libgnomeui-dev as a dependency as it was added + upstream. + + -- Ted Gould Mon, 30 Mar 2009 09:31:44 +0200 + +indicator-applet (0.1.3-0ubuntu2) jaunty; urgency=low + + * debian/control: Add dependency to indicator-messages; the applet is + currently fairly useless without it. (LP: #346359) + + -- Martin Pitt Wed, 25 Mar 2009 11:25:29 +0100 + +indicator-applet (0.1.3-0ubuntu1) jaunty; urgency=low + + * New upstream version 0.1.3, makes the GObject introspection + an optional build item. + * debian/control: Removing GObject introspection + * debian/*.install, remove all of GIR references + + -- Ted Gould Wed, 18 Mar 2009 00:12:30 -0500 + +indicator-applet (0.1.2-0ubuntu2) UNRELEASED; urgency=low + + * Add debian/watch. + * Add bzr-builddeb configuration (merge mode). Fortunately this doesn't + insist on having *only* debian/ in bzr. This gives us the best of both + worlds, bzd-bd auto-downloading orig.tar.gz and merging in the + pre-generated autoconf stuff, and retaining the possibility of merging + directly from trunk, since we keep the full upstream source in this branch. + * debian/copyright: Fix download location. + + -- Martin Pitt Tue, 17 Mar 2009 10:51:46 +0100 + +indicator-applet (0.1.2-0ubuntu1) jaunty; urgency=low + + * New upstream version + * Removes duplicate prototypes (LP: #338885) + * Fixes background color to match them on dark themes when + the panel color is not set (LP: #334490) + * Removing the handle and replacing it with the ability to + right click on the applet to get a panel menu (LP: #339818) + * Various build fixes + + -- Ted Gould Sun, 15 Mar 2009 08:58:20 -0500 + +indicator-applet (0.1.1-0ubuntu2) jaunty; urgency=low + + * src/applet-main.c, applet_fill_cb(): Do not show anything if we + are running under a stracciatella GNOME session (i. e. without + Ubuntu components). See UbuntuSpec:stracciatella-session. + + -- Martin Pitt Thu, 19 Feb 2009 17:24:04 +0100 + +indicator-applet (0.1.1-0ubuntu1) jaunty; urgency=low + + * New upstream release with some icon changes. + * debian/control: Fix Vcs-Bzr. + * debian/control: Update package descriptions; the messaging part is + provided by indicator-messages. + * debian/copyright: Fix leftover word "either" from the license + description. + + -- Martin Pitt Thu, 19 Feb 2009 16:12:01 +0100 + +indicator-applet (0.1-0ubuntu1) jaunty; urgency=low + + * Initial release, based on DX team's PPA packaging branch. + (lp:~indicator-applet-developers/indicator-applet/applet-packaging) + * Repack orig.tar.gz with a copy of the LGPL 3, libindicate/* is + under that license. + * debian/control: Add Homepage:, Vcs-Bzr:, and proper package + descriptions. + * debian/copyright: Properly describe licenses. + * configure.ac: Add missing gio-2.0 pkgconfig check (from DX team + PPA packaging branch), and autoreconf to pick up the change. + + -- Martin Pitt Tue, 17 Feb 2009 10:28:14 +0100