r22744 - in /packages/unstable/zeitgeist/debian: changelog copyright rules zeitgeist-core.install zeitgeist-daemon.bash_completion

rainct-guest at users.alioth.debian.org rainct-guest at users.alioth.debian.org
Sun Jan 10 23:11:33 UTC 2010


Author: rainct-guest
Date: Sun Jan 10 23:11:33 2010
New Revision: 22744

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=22744
Log:
* New upstream release:
   - Event subscription (monitoring) support.
   - Blacklist extension.
   - Experimental FindRelatedUris method (API for it may change).
   - Other features, bug fixes and better documentation.
* Update debian/copyright.
* debian/{rules,zeitgeist-core.install,zeitgeist-daemon.bash_completion}:
   - Add bash-completion for the "zeitgeist-daemon" command.

Added:
    packages/unstable/zeitgeist/debian/zeitgeist-daemon.bash_completion
Modified:
    packages/unstable/zeitgeist/debian/changelog
    packages/unstable/zeitgeist/debian/copyright
    packages/unstable/zeitgeist/debian/rules
    packages/unstable/zeitgeist/debian/zeitgeist-core.install

Modified: packages/unstable/zeitgeist/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/zeitgeist/debian/changelog?rev=22744&op=diff
==============================================================================
--- packages/unstable/zeitgeist/debian/changelog [utf-8] (original)
+++ packages/unstable/zeitgeist/debian/changelog [utf-8] Sun Jan 10 23:11:33 2010
@@ -1,4 +1,17 @@
-zeitgeist (0.3.0-1) UNRELEASED; urgency=low
+zeitgeist (0.3.1-1) UNRELEASED; urgency=low
+
+  * New upstream release:
+     - Event subscription (monitoring) support.
+     - Blacklist extension.
+     - Experimental FindRelatedUris method (API for it may change).
+     - Other features, bug fixes and better documentation.
+  * Update debian/copyright.
+  * debian/{rules,zeitgeist-core.install,zeitgeist-daemon.bash_completion}:
+     - Add bash-completion for the "zeitgeist-daemon" command.
+
+ -- Siegfried-Angel Gevatter Pujals <rainct at ubuntu.com>  Sun, 10 Jan 2010 23:48:48 +0100
+
+zeitgeist (0.3.0-1) unstable; urgency=low
 
   * Initial release, based upon Ubuntu package (Closes: #529067).
 

Modified: packages/unstable/zeitgeist/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/zeitgeist/debian/copyright?rev=22744&op=diff
==============================================================================
--- packages/unstable/zeitgeist/debian/copyright [utf-8] (original)
+++ packages/unstable/zeitgeist/debian/copyright [utf-8] Sun Jan 10 23:11:33 2010
@@ -5,10 +5,10 @@
 
 Files: *
 Copyright: © 2008-2009, Seif Lotfy <seilo at geekyogre.com>
+           © 2009-2010, Siegfried-Angel Gevatter Pujals <rainct at ubuntu.com>
+           © 2009-2010, Markus Korn <thekorn at gmx.de>
+           © 2009-2010, Mikkel Kamstrup Erlandsen <mikkel.kamstrup at gmail.com>
            © 2009, Natan Yellin <aantny at gmail.com>
-           © 2009, Siegfried-Angel Gevatter Pujals <rainct at ubuntu.com>
-           © 2009, Markus Korn <thekorn at gmx.de>
-           © 2009, Mikkel Kamstrup Erlandsen <mikkel.kamstrup at gmail.com>
            © 2009, Alex Graveley <alex at beatniksoftware.com>
            © 2009, Shane Fagan <shanepatrickfagan at yahoo.ie>
 License: LGPL-3+

Modified: packages/unstable/zeitgeist/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/zeitgeist/debian/rules?rev=22744&op=diff
==============================================================================
--- packages/unstable/zeitgeist/debian/rules [utf-8] (original)
+++ packages/unstable/zeitgeist/debian/rules [utf-8] Sun Jan 10 23:11:33 2010
@@ -8,6 +8,12 @@
 
 DEB_DH_INSTALL_SOURCEDIR := debian/tmp
 
+install/zeitgeist-core::
+	dh_installdirs -pzeitgeist-core -Pdebian/tmp etc/bash_completion.d
+	install $(CURDIR)/debian/zeitgeist-daemon.bash_completion \
+		$(CURDIR)/debian/tmp/etc/bash_completion.d/zeitgeist-daemon
+	chmod a-x $(CURDIR)/debian/tmp/etc/bash_completion.d/zeitgeist-daemon
+
 binary-install/zeitgeist-core::
 	dh_pysupport /usr/share/zeitgeist
 

Modified: packages/unstable/zeitgeist/debian/zeitgeist-core.install
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/zeitgeist/debian/zeitgeist-core.install?rev=22744&op=diff
==============================================================================
--- packages/unstable/zeitgeist/debian/zeitgeist-core.install [utf-8] (original)
+++ packages/unstable/zeitgeist/debian/zeitgeist-core.install [utf-8] Sun Jan 10 23:11:33 2010
@@ -5,3 +5,4 @@
 usr/share/zeitgeist/_zeitgeist/engine/
 usr/share/dbus-1/services/
 usr/bin/zeitgeist-daemon
+etc/bash_completion.d/zeitgeist-daemon

Added: packages/unstable/zeitgeist/debian/zeitgeist-daemon.bash_completion
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/zeitgeist/debian/zeitgeist-daemon.bash_completion?rev=22744&op=file
==============================================================================
--- packages/unstable/zeitgeist/debian/zeitgeist-daemon.bash_completion (added)
+++ packages/unstable/zeitgeist/debian/zeitgeist-daemon.bash_completion [utf-8] Sun Jan 10 23:11:33 2010
@@ -1,0 +1,14 @@
+# -*- shell-script -*-
+#
+# Bash tab auto-completion rules for the zeitgeist-daemon command.
+# Put this file in /etc/bash_completion.d/ and bash will automatically load it.
+#
+# By Siegfried-Angel Gevatter Pujals <siegfried at gevatter.com>
+
+have zeitgeist-daemon &&
+_zeitgeist_daemon()
+{
+    local cur=${COMP_WORDS[COMP_CWORD]}
+	COMPREPLY=($(compgen -W "`zeitgeist-daemon --shell-completion`" -- $cur))
+}
+[ "${have:-}" ] && complete -F _zeitgeist_daemon -o default zeitgeist-daemon




More information about the pkg-gnome-commits mailing list