[bamf] 01/08: import Debian packaging files for 0.2.104-1
Mike Gabriel
sunweaver at debian.org
Fri Jun 19 12:08:04 UTC 2015
This is an automated email from the git hooks/post-receive script.
sunweaver pushed a commit to branch master
in repository bamf.
commit d69c3404d1f0bf9b64cc301ad1c2218707fd4ef3
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date: Fri Apr 10 12:00:42 2015 +0200
import Debian packaging files for 0.2.104-1
---
debian/bamfdaemon.install | 2 +
debian/bamfdaemon.postinst | 15 ++
debian/bamfdaemon.postrm | 8 +
debian/bamfdaemon.triggers | 2 +
debian/changelog | 428 ++++++++++++++++++++++++++++++++++++++++++++
debian/compat | 1 +
debian/control | 125 +++++++++++++
debian/copyright | 50 ++++++
debian/libbamf-dev.install | 5 +
debian/libbamf-doc.install | 1 +
debian/libbamf0.install | 1 +
debian/libbamf0.symbols | 85 +++++++++
debian/libbamf3-0.install | 1 +
debian/libbamf3-0.symbols | 85 +++++++++
debian/libbamf3-dev.install | 5 +
debian/rules | 29 +++
debian/source/format | 1 +
debian/watch | 2 +
18 files changed, 846 insertions(+)
diff --git a/debian/bamfdaemon.install b/debian/bamfdaemon.install
new file mode 100644
index 0000000..b88437d
--- /dev/null
+++ b/debian/bamfdaemon.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/lib/bamf
+debian/tmp/usr/share/dbus-1/services/
diff --git a/debian/bamfdaemon.postinst b/debian/bamfdaemon.postinst
new file mode 100644
index 0000000..ae65b24
--- /dev/null
+++ b/debian/bamfdaemon.postinst
@@ -0,0 +1,15 @@
+#! /bin/sh
+set -e
+
+if [ "$1" = "configure" ] || [ "$1" = "triggered" ]; then
+ if [ -d /usr/share/applications ]; then
+ # rebuild index
+ I=/usr/share/applications/bamf.index
+ echo "Rebuilding $I..."
+ rm -f $I
+ perl -ne 'if (/^Exec=(.+)$/) { $f = (split "/", $ARGV)[-1]; print "$f\t$1\n"; }' /usr/share/applications/*.desktop > $I.new || rm -f $I.new
+ [ -e $I.new ] && mv $I.new $I || true
+ fi
+fi
+
+#DEBHELPER#
diff --git a/debian/bamfdaemon.postrm b/debian/bamfdaemon.postrm
new file mode 100644
index 0000000..8b38294
--- /dev/null
+++ b/debian/bamfdaemon.postrm
@@ -0,0 +1,8 @@
+#! /bin/sh
+set -e
+
+if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
+ rm -f /usr/share/applications/bamf.index
+fi
+
+#DEBHELPER#
diff --git a/debian/bamfdaemon.triggers b/debian/bamfdaemon.triggers
new file mode 100644
index 0000000..3341a54
--- /dev/null
+++ b/debian/bamfdaemon.triggers
@@ -0,0 +1,2 @@
+interest /usr/share/applications
+interest gmenucache
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..fdac3b3
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,428 @@
+bamf (0.2.104-1) unstable; urgency=low
+
+ [ Didier Roche ]
+ * Initial upload to Debian. Package grabbed from Ubuntu,
+ we'll keep this package in sync within the two
+ distributions.
+ * debian/control:
+ - removed gir's package for now, still not building
+ correctly.
+
+ [ Andrea Veri ]
+ * debian/control:
+ - changed Maintainer accordingly.
+ - added myself into uploaders.
+
+ -- Didier Roche <didrocks at ubuntu.com> Mon, 21 Nov 2011 10:56:21 +0100
+
+bamf (0.2.104-0ubuntu1) oneiric; urgency=low
+
+ * New upstream release.
+ - Hopefully really fix unity confused with chrome (not chromium) web apps
+ (LP: #692462)
+ - Fix to build with gtk2 version
+
+ -- Didier Roche <didrocks at ubuntu.com> Mon, 26 Sep 2011 13:51:22 +0200
+
+bamf (0.2.100-0ubuntu1) oneiric; urgency=low
+
+ * New upstream release.
+ - Fix unity confused with chrome web apps (LP: #692462)
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 22 Sep 2011 15:15:28 +0200
+
+bamf (0.2.98-0ubuntu2) oneiric; urgency=low
+
+ * Cherry-pick a crasher fix:
+ - bamfdaemon crashed with SIGSEGV in sn_xcb_display_new()
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 15 Sep 2011 15:54:20 +0200
+
+bamf (0.2.98-0ubuntu1) oneiric; urgency=low
+
+ * New upstream release.
+ - Bamf doesn't recognize just installed applications (LP: #676593)
+ * debian/control:
+ - update Standards-Version
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 08 Sep 2011 20:09:28 +0200
+
+bamf (0.2.96-0ubuntu1) oneiric; urgency=low
+
+ * New upstream release.
+
+ -- Sebastien Bacher <seb128 at ubuntu.com> Thu, 25 Aug 2011 17:44:16 +0200
+
+bamf (0.2.94-0ubuntu1) oneiric; urgency=low
+
+ * New upstream release:
+ - no more dependency on the gio ubuntu patch, use the upstream system now
+ (LP: #687683)
+ * debian/rules:
+ - the new tests depends on a X server, desactivate them when building on
+ buildd
+ * debian/bamfdaemon.install:
+ - do not install the gio module as it's not built anymore
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 04 Aug 2011 14:56:07 +0200
+
+bamf (0.2.92-0ubuntu1) oneiric; urgency=low
+
+ * New upstream release.
+ * debian/control, debian/rules:
+ - Add libbamf3-0 and libbamf3-dev packages for GTK+ 3
+
+ -- Michael Terry <mterry at ubuntu.com> Fri, 17 Jun 2011 12:19:14 -0400
+
+bamf (0.2.90-0ubuntu3) natty-proposed; urgency=low
+
+ * Cherry-pick from upstream:
+ - System Testing and Printers don't display proper menus when launched by
+ command line (LP: #717134)
+ - Unity Min,Max,Close buttons not available in Libreoffice when opened by
+ double-clicking a file (LP: #728927)
+
+ -- Didier Roche <didrocks at ubuntu.com> Wed, 27 Apr 2011 17:07:18 +0200
+
+bamf (0.2.90-0ubuntu2) natty; urgency=low
+
+ * Cherry-pick from upstream:
+ - Thunderbird won't stay in launcher and no quicklist (LP: #765736)
+
+ -- Didier Roche <didrocks at ubuntu.com> Wed, 20 Apr 2011 18:07:49 +0200
+
+bamf (0.2.90-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+ - compiz assert failure: *** glibc detected *** compiz: double free or
+ corruption (out): 0x0a1c5a38 *** (LP: #761372)
+ - "Authenticate" window shows in launcher as "Polkit-gnome-authentication-
+ agent-1" (LP: #740844)
+
+ -- Didier Roche <didrocks at ubuntu.com> Tue, 19 Apr 2011 19:09:34 +0200
+
+bamf (0.2.86-0ubuntu3) natty; urgency=low
+
+ * Cherry-pick a crash fix in unity with double free corruption (LP: #761372)
+
+ -- Didier Roche <didrocks at ubuntu.com> Fri, 15 Apr 2011 12:49:24 +0200
+
+bamf (0.2.86-0ubuntu2) natty; urgency=low
+
+ * Trunk commit r358, really fixes the crash bug listed before (lp: #754225)
+
+ -- Sebastien Bacher <seb128 at ubuntu.com> Tue, 12 Apr 2011 22:19:24 +0200
+
+bamf (0.2.86-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+ - bamfdaemon crashed with SIGABRT in dbus_g_connection_register_g_object()
+ (LP: #752137)
+ - bamfdaemon crashed with SIGABRT in dbus_g_connection_register_g_object()
+ (LP: #754225)
+
+ -- Didier Roche <didrocks at ubuntu.com> Mon, 11 Apr 2011 12:41:48 +0200
+
+bamf (0.2.84-0ubuntu2) natty; urgency=low
+
+ * Move the giomodule DSO back to /usr/lib/gio/modules, because something
+ we haven't identified yet refuses to see it when it's installed to the
+ multiarch path. LP: #751025
+
+ -- Steve Langasek <steve.langasek at ubuntu.com> Thu, 07 Apr 2011 23:54:53 +0000
+
+bamf (0.2.84-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+ - unity-panel-service crashed with SIGSEGV in bamf_factory_view_for_path()
+ (LP: #717684)
+ - bamfdaemon crashed with SIGABRT in dbus_g_connection_register_g_object()
+ (LP: #739218)
+ - compiz crashed with SIGSEGV in g_utf8_validate() (LP: #736792)
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 07 Apr 2011 17:17:54 +0200
+
+bamf (0.2.82-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+ - bamfdaemon crashed with SIGSEGV in XInternAtom() (LP: #743407)
+ - catch more cases for 'Keep in Launcher' by recognizing StatupWMClass
+ from .desktop file (LP: #693231)
+
+ -- Didier Roche <didrocks at ubuntu.com> Fri, 01 Apr 2011 11:17:17 +0200
+
+bamf (0.2.80-0ubuntu2) natty; urgency=low
+
+ * Fix a FTBFS with current libglib2.0 due to the giomodules path changing
+ for multiarch.
+ * As long as we're in here, multiarch the whole package; bamf has no
+ reverse-depends, so there's no risk of causing other build failures, and
+ moving the giomodules takes us halfway there anyway.
+
+ -- Steve Langasek <steve.langasek at ubuntu.com> Tue, 29 Mar 2011 19:50:12 +0000
+
+bamf (0.2.80-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+ - 'Keep in launcher' item missing for some applications (LP: #657771)
+ - can't pin KTouch to the launcher (LP: #693755)
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 17 Mar 2011 17:51:00 +0100
+
+bamf (0.2.78-0ubuntu1) natty; urgency=low
+
+ * New upstream release:
+ - adapt bamf to LibreOffice (LP: #705461)
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 10 Feb 2011 17:59:34 +0100
+
+bamf (0.2.76-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+ - add a new signal to detect tab changes (LP: #691651)
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 27 Jan 2011 13:50:42 +0100
+
+bamf (0.2.74-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+ - Set the default application icon when the application desktop file has no icon=
+ key. It was appearing fully black. (LP: #703521)
+ * debian/control:
+ - remove vala build-dep, not needed anymore
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 20 Jan 2011 17:45:45 +0100
+
+bamf (0.2.72-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+
+ -- Didier Roche <didrocks at ubuntu.com> Fri, 14 Jan 2011 19:02:24 +0100
+
+bamf (0.2.70-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+ * debian/control:
+ bamf dbus protocol changed. Breaks: on old unity
+
+ -- Didier Roche <didrocks at ubuntu.com> Fri, 14 Jan 2011 17:30:12 +0100
+
+bamf (0.2.68-0ubuntu1) natty; urgency=low
+
+ [ Didier Roche ]
+ * debian/control:
+ - add Vcs-Bzr tag
+
+ [ Sebastien Bacher ]
+ * New upstream release.
+
+ -- Sebastien Bacher <seb128 at ubuntu.com> Fri, 17 Dec 2010 13:36:08 +0100
+
+bamf (0.2.66-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+ - Fix the Ubuntu Starter Edition bug (LP: #683623)
+ - check that desktop file is currently supported before creating the
+ favorite (LP: #682345)
+ - unity-panel-service crashed with SIGSEGV in free() (LP: #677580)
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 09 Dec 2010 19:37:54 +0100
+
+bamf (0.2.64-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+
+ -- Didier Roche <didrocks at ubuntu.com> Tue, 30 Nov 2010 16:52:19 +0100
+
+bamf (0.2.62-0ubuntu1) natty; urgency=low
+
+ * New upstream release.
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 18 Nov 2010 18:28:10 +0100
+
+bamf (0.2.60-0ubuntu1) natty; urgency=low
+
+ * new upstream release
+ * debian/libbamf0.symbols:
+ - add the new symbols
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 11 Nov 2010 18:37:42 +0100
+
+bamf (0.2.58-0ubuntu2) maverick; urgency=low
+
+ * Fix tons of accuracy matching issues using the gio module
+ (LP: #645849, #630066)
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 30 Sep 2010 17:14:27 +0200
+
+bamf (0.2.58-0ubuntu1) maverick; urgency=low
+
+ * New upstream release:
+ - Fix Nautilus' "File Operation" dialog gets stuck and prevents opening new
+ Nautilus windows (LP: #647979)
+ - Fix bamfdaemon crashed with SIGSEGV in g_str_hash() (LP: #638705)
+
+ -- Didier Roche <didrocks at ubuntu.com> Mon, 27 Sep 2010 22:28:40 +0200
+
+bamf (0.2.54-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+ * cherry pick some patches from upstream too for more fixes in special
+ launchers (LP: #622146)
+ * debian/libbamf0.symbols:
+ - update to latest version
+
+ -- Didier Roche <didrocks at ubuntu.com> Wed, 22 Sep 2010 19:21:45 +0200
+
+bamf (0.2.52-0ubuntu1) maverick; urgency=low
+
+ * New upstream release:
+ - Take previous distro inline patch with next release (LP: #641229)
+
+ -- Didier Roche <didrocks at ubuntu.com> Fri, 17 Sep 2010 13:52:17 +0200
+
+bamf (0.2.50-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+ - Caching fixes
+ - Ensure we ship proper strings to open office windows
+
+ -- Ken VanDine <ken.vandine at canonical.com> Wed, 15 Sep 2010 17:23:41 -0400
+
+bamf (0.2.48-0ubuntu1) maverick; urgency=low
+
+ * New upstream release:
+ - Dropbox 0.8.90 build shows in the launcher (LP: #610226)
+ * update debian/libbamf0.symbols
+
+ -- Didier Roche <didrocks at ubuntu.com> Tue, 14 Sep 2010 19:13:51 +0200
+
+bamf (0.2.46-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+ - Handle non system launchers (LP: #622146)
+ * Add new symbols to debian/libbamf0.symbols
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 09 Sep 2010 19:15:45 +0200
+
+bamf (0.2.44-0ubuntu1) maverick; urgency=low
+
+ * New upstream release:
+ - Fix potential NULL deref when XDG_DATA_DIRS is not set
+ (lp: #602519)
+ * debian/control:
+ - updated for the new vala versioning
+ * debian/libbamf0.symbols:
+ - new version update
+
+ -- Sebastien Bacher <seb128 at ubuntu.com> Thu, 19 Aug 2010 19:16:15 +0200
+
+bamf (0.2.42-0ubuntu2) maverick; urgency=low
+
+ * Update by Mikkel Kamstrup Erlandsen to match gio changes (lp: #616737)
+
+ -- Sebastien Bacher <seb128 at ubuntu.com> Wed, 18 Aug 2010 22:31:44 +0200
+
+bamf (0.2.42-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+ * debian/rules:
+ - enjoying and running testsuite during build (LP: #586340)
+ * debian/control:
+ - bumping Standards-Version to latest
+ - remove gir-repository-dev from build-dep
+
+ -- Didier Roche <didrocks at ubuntu.com> Fri, 13 Aug 2010 12:44:39 +0200
+
+bamf (0.2.40-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+
+ -- Didier Roche <didrocks at ubuntu.com> Mon, 02 Aug 2010 15:54:41 +0200
+
+bamf (0.2.38-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 22 Jul 2010 19:07:31 +0200
+
+bamf (0.2.36-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+ * debian/libbamf0.symbols:
+ - update to latest
+
+ -- Didier Roche <didrocks at ubuntu.com> Fri, 16 Jul 2010 14:44:16 +0200
+
+bamf (0.2.34-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+ - Hangs when nautilus device detected dialog are displayed (LP: #601017)
+ - Netbeans does not show in Unity when open (LP: #598083)
+ - The launcher doesn't list some running softwares (LP: #601082)
+
+ -- Didier Roche <didrocks at ubuntu.com> Mon, 12 Jul 2010 15:49:36 +0200
+
+bamf (0.2.32-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+ - fix bad matchin on OOo (LP: #595583)
+ - fix crash in bamf_matcher_possible_applications_for_window (LP: #597986)
+ - fix exaile icon not showing in launcher (LP: #593470)
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 24 Jun 2010 16:21:22 +0200
+
+bamf (0.2.30-0ubuntu1) maverick; urgency=low
+
+ * New upstream release:
+ - fix KDE applications not showing up in the Unity Launcher
+ (LP: #592502)
+ * debian/libbamf0.symbols:
+ - adding new symbols
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 17 Jun 2010 18:07:38 +0200
+
+bamf (0.2.28-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 10 Jun 2010 17:16:17 +0200
+
+bamf (0.2.26-0ubuntu2) maverick; urgency=low
+
+ * debian/libbamf-dev.install:
+ - don't try to install a vapi file right now
+
+ -- Didier Roche <didrocks at ubuntu.com> Mon, 07 Jun 2010 17:36:38 +0200
+
+bamf (0.2.26-0ubuntu1) maverick; urgency=low
+
+ * debian/control, debian/libbamf-doc.install:
+ - add libbamf-doc package
+ * debian/libbamf0.symbols:
+ - updated
+ * debian/control, debian/rules:
+ - build the doc by default
+ * debian/libbamf-dev.install:
+ - install vapi files
+ * debian/rules:
+ - fix rm *{,l}a files
+ * debian/watch:
+ - use https
+ * New upstream release.
+
+ -- Didier Roche <didrocks at ubuntu.com> Mon, 07 Jun 2010 10:45:49 +0200
+
+bamf (0.2.24-0ubuntu1) maverick; urgency=low
+
+ * New upstream release.
+
+ -- Didier Roche <didrocks at ubuntu.com> Thu, 27 May 2010 18:35:29 +0200
+
+bamf (0.2.22-0ubuntu1) maverick; urgency=low
+
+ * Initial Packaging (LP: #583880)
+ * temporary disabling gir building due to bug:
+ https://bugzilla.gnome.org/show_bug.cgi?id=619703
+
+ -- Didier Roche <didrocks at ubuntu.com> Tue, 25 May 2010 10:32:24 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2204b68
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,125 @@
+Source: bamf
+Section: libs
+Priority: optional
+Maintainer: Didier Roche <didrocks at ubuntu.com>
+Uploaders: Andrea Veri <and at debian.org>
+Build-Depends: debhelper (>= 8.1.2ubuntu2),
+ cdbs (>= 0.4.90ubuntu9),
+ libglib2.0-dev (>= 2.23.0-1ubuntu3~),
+ libwnck-dev,
+ libwnck-3-dev,
+ libgtop2-dev,
+ libgtk2.0-dev (>= 2.12.0),
+ libgtk-3-dev (>= 3.0.0),
+ libdbus-glib-1-dev,
+ gtk-doc-tools,
+ gobject-introspection (>= 0.6.5-3),
+ libgirepository1.0-dev,
+ gir1.2-atk-1.0,
+ gir1.2-glib-2.0,
+ gir1.2-gtk-2.0 (>= 2.19.5),
+ gir1.2-gtk-3.0 (>= 3.0.0),
+ gir1.2-pango-1.0,
+ gir1.2-wnck-3.0,
+Standards-Version: 3.9.2
+Homepage: https://launchpad.net/bamf
+Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/bamf/ubuntu
+
+Package: bamfdaemon
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+Multi-Arch: foreign
+Description: Window matching library - daemon
+ bamf matches application windows to desktop files
+ .
+ This package contains the daemon used by the library and a gio
+ module that facilitates the matching of applications started
+ through GDesktopAppInfo
+
+Package: libbamf0
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+ bamfdaemon (= ${binary:Version}),
+Breaks: unity (<< 3.2.12)
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Description: Window matching library - shared library
+ bamf matches application windows to desktop files
+ .
+ This package contains shared libraries to be used by applications.
+
+Package: libbamf3-0
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+ bamfdaemon (= ${binary:Version}),
+Breaks: unity (<< 3.2.12)
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Description: Window matching library - shared library
+ bamf matches application windows to desktop files
+ .
+ This package contains shared libraries to be used by applications.
+
+Package: libbamf-dev
+Section: libdevel
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+ libbamf0 (= ${binary:Version}),
+ libwnck-dev,
+ libglib2.0-dev (>= 2.23.0-1ubuntu3~),
+Suggests: libbamf-doc
+Description: Window matching library - development files
+ bamf matches application windows to desktop files
+ .
+ This package contains files that are needed to build applications.
+
+Package: libbamf3-dev
+Section: libdevel
+Architecture: any
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+ libbamf3-0 (= ${binary:Version}),
+ libwnck-3-dev,
+ libglib2.0-dev (>= 2.23.0-1ubuntu3~),
+Suggests: libbamf-doc
+Description: Window matching library - development files
+ bamf matches application windows to desktop files
+ .
+ This package contains files that are needed to build applications.
+
+Package: libbamf-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}
+Suggests: devhelp
+Description: Window matching library - documentation
+ bamf matches application windows to desktop files
+ .
+ This package contains the daemon used by the library and a gio
+ module that facilitates the matching of applications started
+ through GDesktopAppInfo
+ .
+ This package contains the documentation
+
+Package: bamf-dbg
+Section: debug
+Architecture: any
+Priority: extra
+Depends: ${shlibs:Depends},
+ ${misc:Depends},
+ libbamf0 (= ${binary:Version}),
+ libbamf3-0 (= ${binary:Version}),
+Multi-Arch: same
+Description: Window matching library - debugging symbols
+ bamf matches application windows to desktop files
+ .
+ This package contains the daemon used by the library and a gio
+ module that facilitates the matching of applications started
+ through GDesktopAppInfo
+ .
+ This package contains debugging symbols for the daemon and library.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..20ed798
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,50 @@
+This package was debianized by Didier Roche <didrocks at ubuntu.com> on
+Tue, 25 May 2010 10:31:02 -0000.
+
+It was downloaded from <http://launchpad.net/bamf/>
+
+Upstream Author:
+
+ Jason Smith <jason.smith at canonical.com>
+
+Copyright:
+
+ Copyright (C) 2009-2010 Canonical Ltd.
+
+License:
+
+ When not otherwise specified, the following license applies:
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License Version 3.0 as published by the Free Software Foundation.
+
+ This library 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
+ Lesser General Public License for more details.
+
+On Debian systems, the complete text of the GNU Lesser General Public License
+can be found in `/usr/share/common-licenses/LGPL-3'
+
+
+ * src/*,test/*:
+
+ This program is free software: you can redistribute it and/or modify it
+ under the terms of the the GNU General Public License version 3, as
+ published by the Free Software Foundation.
+
+ This program is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranties of
+ MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
+ PURPOSE. See the applicable version of the GNU Lesser General Public
+ License for more details.
+
+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:
+
+ Copyright (C) 2010 Canonical Ltd.
+
+and is licensed under the GPL version 3, see `/usr/share/common-licenses/GPL-3'.
diff --git a/debian/libbamf-dev.install b/debian/libbamf-dev.install
new file mode 100644
index 0000000..9cf49a7
--- /dev/null
+++ b/debian/libbamf-dev.install
@@ -0,0 +1,5 @@
+debian/tmp/usr/include/libbamf/libbamf/
+debian/tmp/usr/lib/*/pkgconfig/libbamf.pc
+debian/tmp/usr/lib/*/libbamf.so
+#debian/tmp/usr/share/vala/vapi/
+#debian/tmp/usr/share/gir-1.0/
diff --git a/debian/libbamf-doc.install b/debian/libbamf-doc.install
new file mode 100644
index 0000000..7933011
--- /dev/null
+++ b/debian/libbamf-doc.install
@@ -0,0 +1 @@
+debian/tmp/usr/share/gtk-doc/
diff --git a/debian/libbamf0.install b/debian/libbamf0.install
new file mode 100644
index 0000000..1d4205d
--- /dev/null
+++ b/debian/libbamf0.install
@@ -0,0 +1 @@
+debian/tmp/usr/lib/*/libbamf.so.*
diff --git a/debian/libbamf0.symbols b/debian/libbamf0.symbols
new file mode 100644
index 0000000..da1324d
--- /dev/null
+++ b/debian/libbamf0.symbols
@@ -0,0 +1,85 @@
+libbamf.so.0 libbamf0 #MINVER#
+ bamf_application_get_application_type at Base 0.2.20
+ bamf_application_get_desktop_file at Base 0.2.20
+ bamf_application_get_show_menu_stubs at Base 0.2.48
+ bamf_application_get_type at Base 0.2.20
+ bamf_application_get_windows at Base 0.2.20
+ bamf_application_get_xids at Base 0.2.20
+ bamf_application_new at Base 0.2.20
+ bamf_application_new_favorite at Base 0.2.60
+ bamf_control_get_default at Base 0.2.20
+ bamf_control_get_type at Base 0.2.20
+ bamf_control_insert_desktop_file at Base 0.2.20
+ bamf_control_register_application_for_pid at Base 0.2.20
+ bamf_control_register_tab_provider at Base 0.2.20
+ bamf_control_set_approver_behavior at Base 0.2.44
+ bamf_factory_app_for_file at Base 0.2.60
+ bamf_factory_get_default at Base 0.2.20
+ bamf_factory_get_type at Base 0.2.20
+ bamf_factory_view_for_path at Base 0.2.20
+ bamf_indicator_get_dbus_menu_path at Base 0.2.36
+ bamf_indicator_get_remote_address at Base 0.2.36
+ bamf_indicator_get_remote_path at Base 0.2.36
+ bamf_indicator_get_type at Base 0.2.36
+ bamf_indicator_new at Base 0.2.36
+ bamf_marshal_VOID__OBJECT_OBJECT at Base 0.2.24
+ bamf_marshal_VOID__STRING_STRING at Base 0.2.20
+ bamf_marshal_VOID__STRING_STRING_STRING at Base 0.2.20
+ bamf_matcher_application_is_running at Base 0.2.20
+ bamf_matcher_get_active_application at Base 0.2.20
+ bamf_matcher_get_active_window at Base 0.2.20
+ bamf_matcher_get_application_for_desktop_file at Base 0.2.60
+ bamf_matcher_get_application_for_window at Base 0.2.48
+ bamf_matcher_get_application_for_xid at Base 0.2.20
+ bamf_matcher_get_applications at Base 0.2.20
+ bamf_matcher_get_default at Base 0.2.20
+ bamf_matcher_get_running_applications at Base 0.2.20
+ bamf_matcher_get_tabs at Base 0.2.20
+ bamf_matcher_get_type at Base 0.2.20
+ bamf_matcher_get_windows at Base 0.2.46
+ bamf_matcher_get_xids_for_application at Base 0.2.20
+ bamf_matcher_register_favorites at Base 0.2.46
+ bamf_tab_get_id at Base 0.2.28
+ bamf_tab_get_preview at Base 0.2.28
+ bamf_tab_get_type at Base 0.2.28
+ bamf_tab_get_uri at Base 0.2.28
+ bamf_tab_new at Base 0.2.28
+ bamf_tab_set_preview at Base 0.2.28
+ bamf_tab_set_uri at Base 0.2.28
+ bamf_tab_show at Base 0.2.28
+ bamf_tab_source_get_tab_ids at Base 0.2.20
+ bamf_tab_source_get_tab_preview at Base 0.2.20
+ bamf_tab_source_get_tab_uri at Base 0.2.20
+ bamf_tab_source_get_tab_xid at Base 0.2.20
+ bamf_tab_source_get_type at Base 0.2.20
+ bamf_tab_source_show_tab at Base 0.2.20
+ bamf_view_get_children at Base 0.2.20
+ bamf_view_get_click_suggestion at Base 0.2.60
+ bamf_view_get_icon at Base 0.2.20
+ bamf_view_get_name at Base 0.2.20
+ bamf_view_get_path at Base 0.2.60
+ bamf_view_get_type at Base 0.2.20
+ bamf_view_get_view_type at Base 0.2.20
+ bamf_view_is_active at Base 0.2.20
+ bamf_view_is_closed at Base 0.2.54
+ bamf_view_is_running at Base 0.2.20
+ bamf_view_is_sticky at Base 0.2.60
+ bamf_view_is_urgent at Base 0.2.20
+ bamf_view_remote_ready at Base 0.2.60
+ bamf_view_set_icon at Base 0.2.60
+ bamf_view_set_name at Base 0.2.60
+ bamf_view_set_path at Base 0.2.60
+ bamf_view_set_sticky at Base 0.2.60
+ bamf_view_user_visible at Base 0.2.20
+ bamf_window_get_transient at Base 0.2.28
+ bamf_window_get_type at Base 0.2.20
+ bamf_window_get_window_type at Base 0.2.46
+ bamf_window_get_xid at Base 0.2.20
+ bamf_window_last_active at Base 0.2.30
+ bamf_window_new at Base 0.2.20
+ dbus_glib_bamf_tab_source_object_info at Base 0.2.20
+ dbus_glib_marshal_bamf_tab_source_BOOLEAN__STRING_POINTER at Base 0.2.20
+ dbus_glib_marshal_bamf_tab_source_BOXED__STRING at Base 0.2.20
+ dbus_glib_marshal_bamf_tab_source_BOXED__VOID at Base 0.2.20
+ dbus_glib_marshal_bamf_tab_source_STRING__STRING at Base 0.2.20
+ dbus_glib_marshal_bamf_tab_source_UINT__STRING at Base 0.2.20
diff --git a/debian/libbamf3-0.install b/debian/libbamf3-0.install
new file mode 100644
index 0000000..aa9acb8
--- /dev/null
+++ b/debian/libbamf3-0.install
@@ -0,0 +1 @@
+debian/tmp/usr/lib/*/libbamf3.so.*
diff --git a/debian/libbamf3-0.symbols b/debian/libbamf3-0.symbols
new file mode 100644
index 0000000..4d64550
--- /dev/null
+++ b/debian/libbamf3-0.symbols
@@ -0,0 +1,85 @@
+libbamf3.so.0 libbamf3-0 #MINVER#
+ bamf_application_get_application_type at Base 0.2.20
+ bamf_application_get_desktop_file at Base 0.2.20
+ bamf_application_get_show_menu_stubs at Base 0.2.48
+ bamf_application_get_type at Base 0.2.20
+ bamf_application_get_windows at Base 0.2.20
+ bamf_application_get_xids at Base 0.2.20
+ bamf_application_new at Base 0.2.20
+ bamf_application_new_favorite at Base 0.2.60
+ bamf_control_get_default at Base 0.2.20
+ bamf_control_get_type at Base 0.2.20
+ bamf_control_insert_desktop_file at Base 0.2.20
+ bamf_control_register_application_for_pid at Base 0.2.20
+ bamf_control_register_tab_provider at Base 0.2.20
+ bamf_control_set_approver_behavior at Base 0.2.44
+ bamf_factory_app_for_file at Base 0.2.60
+ bamf_factory_get_default at Base 0.2.20
+ bamf_factory_get_type at Base 0.2.20
+ bamf_factory_view_for_path at Base 0.2.20
+ bamf_indicator_get_dbus_menu_path at Base 0.2.36
+ bamf_indicator_get_remote_address at Base 0.2.36
+ bamf_indicator_get_remote_path at Base 0.2.36
+ bamf_indicator_get_type at Base 0.2.36
+ bamf_indicator_new at Base 0.2.36
+ bamf_marshal_VOID__OBJECT_OBJECT at Base 0.2.24
+ bamf_marshal_VOID__STRING_STRING at Base 0.2.20
+ bamf_marshal_VOID__STRING_STRING_STRING at Base 0.2.20
+ bamf_matcher_application_is_running at Base 0.2.20
+ bamf_matcher_get_active_application at Base 0.2.20
+ bamf_matcher_get_active_window at Base 0.2.20
+ bamf_matcher_get_application_for_desktop_file at Base 0.2.60
+ bamf_matcher_get_application_for_window at Base 0.2.48
+ bamf_matcher_get_application_for_xid at Base 0.2.20
+ bamf_matcher_get_applications at Base 0.2.20
+ bamf_matcher_get_default at Base 0.2.20
+ bamf_matcher_get_running_applications at Base 0.2.20
+ bamf_matcher_get_tabs at Base 0.2.20
+ bamf_matcher_get_type at Base 0.2.20
+ bamf_matcher_get_windows at Base 0.2.46
+ bamf_matcher_get_xids_for_application at Base 0.2.20
+ bamf_matcher_register_favorites at Base 0.2.46
+ bamf_tab_get_id at Base 0.2.28
+ bamf_tab_get_preview at Base 0.2.28
+ bamf_tab_get_type at Base 0.2.28
+ bamf_tab_get_uri at Base 0.2.28
+ bamf_tab_new at Base 0.2.28
+ bamf_tab_set_preview at Base 0.2.28
+ bamf_tab_set_uri at Base 0.2.28
+ bamf_tab_show at Base 0.2.28
+ bamf_tab_source_get_tab_ids at Base 0.2.20
+ bamf_tab_source_get_tab_preview at Base 0.2.20
+ bamf_tab_source_get_tab_uri at Base 0.2.20
+ bamf_tab_source_get_tab_xid at Base 0.2.20
+ bamf_tab_source_get_type at Base 0.2.20
+ bamf_tab_source_show_tab at Base 0.2.20
+ bamf_view_get_children at Base 0.2.20
+ bamf_view_get_click_suggestion at Base 0.2.60
+ bamf_view_get_icon at Base 0.2.20
+ bamf_view_get_name at Base 0.2.20
+ bamf_view_get_path at Base 0.2.60
+ bamf_view_get_type at Base 0.2.20
+ bamf_view_get_view_type at Base 0.2.20
+ bamf_view_is_active at Base 0.2.20
+ bamf_view_is_closed at Base 0.2.54
+ bamf_view_is_running at Base 0.2.20
+ bamf_view_is_sticky at Base 0.2.60
+ bamf_view_is_urgent at Base 0.2.20
+ bamf_view_remote_ready at Base 0.2.60
+ bamf_view_set_icon at Base 0.2.60
+ bamf_view_set_name at Base 0.2.60
+ bamf_view_set_path at Base 0.2.60
+ bamf_view_set_sticky at Base 0.2.60
+ bamf_view_user_visible at Base 0.2.20
+ bamf_window_get_transient at Base 0.2.28
+ bamf_window_get_type at Base 0.2.20
+ bamf_window_get_window_type at Base 0.2.46
+ bamf_window_get_xid at Base 0.2.20
+ bamf_window_last_active at Base 0.2.30
+ bamf_window_new at Base 0.2.20
+ dbus_glib_bamf_tab_source_object_info at Base 0.2.20
+ dbus_glib_marshal_bamf_tab_source_BOOLEAN__STRING_POINTER at Base 0.2.20
+ dbus_glib_marshal_bamf_tab_source_BOXED__STRING at Base 0.2.20
+ dbus_glib_marshal_bamf_tab_source_BOXED__VOID at Base 0.2.20
+ dbus_glib_marshal_bamf_tab_source_STRING__STRING at Base 0.2.20
+ dbus_glib_marshal_bamf_tab_source_UINT__STRING at Base 0.2.20
diff --git a/debian/libbamf3-dev.install b/debian/libbamf3-dev.install
new file mode 100644
index 0000000..70ce480
--- /dev/null
+++ b/debian/libbamf3-dev.install
@@ -0,0 +1,5 @@
+debian/tmp/usr/include/libbamf3/libbamf/
+debian/tmp/usr/lib/*/pkgconfig/libbamf3.pc
+debian/tmp/usr/lib/*/libbamf3.so
+#debian/tmp/usr/share/vala/vapi/
+#debian/tmp/usr/share/gir-1.0/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..01d72a8
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,29 @@
+#!/usr/bin/make -f
+
+DEB_MAKE_FLAVORS = gtk2 gtk3
+DEB_BUILDDIR = build
+
+include /usr/share/cdbs/1/class/gnome.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/utils.mk
+
+LDFLAGS += -Wl,-z,defs -Wl,--as-needed
+
+DEB_CONFIGURE_EXTRA_FLAGS_gtk2 = --with-gtk=2
+DEB_CONFIGURE_EXTRA_FLAGS_gtk3 = --with-gtk=3
+DEB_CONFIGURE_EXTRA_FLAGS += --enable-introspection=no --enable-gtk-doc \
+ --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
+ $(DEB_CONFIGURE_EXTRA_FLAGS_$(cdbs_make_curflavor))
+
+# install flavors on top of each other (gtk3 wins because it is last)
+DEB_MAKE_DESTDIRSKEL = $(cdbs_curdestdir)
+
+DEB_DBG_PACKAGE_bamfdaemon = bamf-dbg
+DEB_DBG_PACKAGE_libbamf0 = bamf-dbg
+DEB_DBG_PACKAGE_libbamf3-0 = bamf-dbg
+
+common-binary-post-install-arch::
+ find debian/tmp/usr/lib -name \*.la -exec rm {} \;
+ find debian/tmp/usr/lib -name \*.a -exec rm {} \;
+
+common-binary-predeb-arch:: list-missing
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..b9489cd
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://launchpad.net/bamf/+download .*/bamf-([0-9.]+)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mate/bamf.git
More information about the pkg-mate-commits
mailing list