r13547 - in /desktop/unstable/scrollkeeper/debian: changelog scrollkeeper.cron.monthly scrollkeeper.install scrollkeeper.postinst scrollkeeper.postrm scrollkeeper.preinst scrollkeeper.prerm

lool at users.alioth.debian.org lool at users.alioth.debian.org
Fri Nov 23 14:46:41 UTC 2007


Author: lool
Date: Fri Nov 23 14:46:40 2007
New Revision: 13547

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=13547
Log:
* Cleanups.

Modified:
    desktop/unstable/scrollkeeper/debian/changelog
    desktop/unstable/scrollkeeper/debian/scrollkeeper.cron.monthly
    desktop/unstable/scrollkeeper/debian/scrollkeeper.install
    desktop/unstable/scrollkeeper/debian/scrollkeeper.postinst
    desktop/unstable/scrollkeeper/debian/scrollkeeper.postrm
    desktop/unstable/scrollkeeper/debian/scrollkeeper.preinst
    desktop/unstable/scrollkeeper/debian/scrollkeeper.prerm

Modified: desktop/unstable/scrollkeeper/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/scrollkeeper/debian/changelog?rev=13547&op=diff
==============================================================================
--- desktop/unstable/scrollkeeper/debian/changelog (original)
+++ desktop/unstable/scrollkeeper/debian/changelog Fri Nov 23 14:46:40 2007
@@ -11,8 +11,9 @@
   [ Loic Minier ]
   * Wrap build-deps and deps.
   * Add more ${misc:Depends}.
-
- -- Loic Minier <lool at dooz.org>  Fri, 23 Nov 2007 15:44:07 +0100
+  * Cleanups.
+
+ -- Loic Minier <lool at dooz.org>  Fri, 23 Nov 2007 15:46:20 +0100
 
 scrollkeeper (0.3.14-14) unstable; urgency=low
 
@@ -118,8 +119,8 @@
   * [01_build_system.diff] New. Integrates old 02_avoid_rebuilddb.diff.
   * [debian/patches/02_relibtoolise.diff] New. Addresses GNU/k*BSD FTBFS.
     (Closes: #266766)
-  * [debian/patches/06_clean_xml_validation_context.diff] Added patch by 
-    Miloslav Trmac <trmac at users.sourceforge.net> to fix an uninitialized 
+  * [debian/patches/06_clean_xml_validation_context.diff] Added patch by
+    Miloslav Trmac <trmac at users.sourceforge.net> to fix an uninitialized
     memory reference within libxml caused by using not-quite-initialized XML
     validation context; obtained from
     http://sourceforge.net/tracker/index.php?func=detail&aid=869631&group_id=11543&atid=311543 .
@@ -137,8 +138,8 @@
   - convert to .install files
   * debian/libscrollkeeper0.instal:
   - add, to have stuff grabbed from debian/tmp -- previous
-    versions used to install stuff directly into 
-    debian/libscrollkeeper0 and use it as a base for 
+    versions used to install stuff directly into
+    debian/libscrollkeeper0 and use it as a base for
     dh_move
   * debian/rules:
   - cdbs'nized

Modified: desktop/unstable/scrollkeeper/debian/scrollkeeper.cron.monthly
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/scrollkeeper/debian/scrollkeeper.cron.monthly?rev=13547&op=diff
==============================================================================
--- desktop/unstable/scrollkeeper/debian/scrollkeeper.cron.monthly (original)
+++ desktop/unstable/scrollkeeper/debian/scrollkeeper.cron.monthly Fri Nov 23 14:46:40 2007
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
 
 [ -x /usr/bin/scrollkeeper-rebuilddb ] || exit 0
 

Modified: desktop/unstable/scrollkeeper/debian/scrollkeeper.install
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/scrollkeeper/debian/scrollkeeper.install?rev=13547&op=diff
==============================================================================
--- desktop/unstable/scrollkeeper/debian/scrollkeeper.install (original)
+++ desktop/unstable/scrollkeeper/debian/scrollkeeper.install Fri Nov 23 14:46:40 2007
@@ -6,4 +6,3 @@
 debian/tmp/etc/* etc/
 debian/catalog.xml usr/share/xml/scrollkeeper/dtds
 debian/scrollkeeper.conf etc
-

Modified: desktop/unstable/scrollkeeper/debian/scrollkeeper.postinst
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/scrollkeeper/debian/scrollkeeper.postinst?rev=13547&op=diff
==============================================================================
--- desktop/unstable/scrollkeeper/debian/scrollkeeper.postinst (original)
+++ desktop/unstable/scrollkeeper/debian/scrollkeeper.postinst Fri Nov 23 14:46:40 2007
@@ -1,12 +1,12 @@
-#! /bin/sh -e
+#!/bin/sh -e
 
 #DEBHELPER#
 
 touch /usr/share/scrollkeeper/configured
 
 if [ "$1" = "configure" ]; then
- printf "Rebuilding the database. This may take some time.\n"
- scrollkeeper-rebuilddb -q
+    printf "Rebuilding the database. This may take some time.\n"
+    scrollkeeper-rebuilddb -q
 fi
 
 exit 0

Modified: desktop/unstable/scrollkeeper/debian/scrollkeeper.postrm
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/scrollkeeper/debian/scrollkeeper.postrm?rev=13547&op=diff
==============================================================================
--- desktop/unstable/scrollkeeper/debian/scrollkeeper.postrm (original)
+++ desktop/unstable/scrollkeeper/debian/scrollkeeper.postrm Fri Nov 23 14:46:40 2007
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 action="$1"
 

Modified: desktop/unstable/scrollkeeper/debian/scrollkeeper.preinst
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/scrollkeeper/debian/scrollkeeper.preinst?rev=13547&op=diff
==============================================================================
--- desktop/unstable/scrollkeeper/debian/scrollkeeper.preinst (original)
+++ desktop/unstable/scrollkeeper/debian/scrollkeeper.preinst Fri Nov 23 14:46:40 2007
@@ -1,11 +1,13 @@
-#! /bin/sh -e
+#!/bin/sh
+
+set -e
 
 if [ -d /usr/share/scrollkeeper/doc/scrollkeeper_manual ]; then
- rm -rf /usr/share/scrollkeeper/doc/scrollkeeper_manual
+    rm -rf /usr/share/scrollkeeper/doc/scrollkeeper_manual
 fi
 
 if [ -d /usr/share/scrollkeeper/Templates/pt_BR ]; then
-  rm -rf /usr/share/scrollkeeper/Templates/pt_BR
+    rm -rf /usr/share/scrollkeeper/Templates/pt_BR
 fi
 
 #DEBHELPER#

Modified: desktop/unstable/scrollkeeper/debian/scrollkeeper.prerm
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/scrollkeeper/debian/scrollkeeper.prerm?rev=13547&op=diff
==============================================================================
--- desktop/unstable/scrollkeeper/debian/scrollkeeper.prerm (original)
+++ desktop/unstable/scrollkeeper/debian/scrollkeeper.prerm Fri Nov 23 14:46:40 2007
@@ -1,5 +1,8 @@
 #!/bin/sh
+
 set -e
+
 rm -f /usr/share/scrollkeeper/configured
+
 #DEBHELPER#
 




More information about the pkg-gnome-commits mailing list