------------------------------------------------------------ revno: 1138 committer: Rene Engelhard <[EMAIL PROTECTED]> branch nick: debian timestamp: Wed 2008-07-02 13:10:26 +0200 message: unopkg add --shared mailmerge.py added: openoffice.org-emailmerge.control.bug openoffice.org-emailmerge.postinst.in openoffice.org-emailmerge.preinst.in openoffice.org-emailmerge.prerm.in openoffice.org-emailmerge.script.bug modified: changelog
=== modified file 'changelog' --- a/changelog 2008-07-02 09:54:16 +0000 +++ b/changelog 2008-07-02 11:10:26 +0000 @@ -7,7 +7,7 @@ to a read-only location (closes: #238906) - fixes printing of handouts in grayscale mode (closes: #416309) * ooo-build: - - update (r13017) + - update (r13024) * debian/template.desktop.in: move to .. * debian/startcenter.desktop.in: .. this and run ooffice now, which will bring us to the new StartCenter. Reuse writers icon. @@ -63,8 +63,10 @@ * debian/control.in: - s/cupsys/cups/ - remove xutils build-dep, nas was using xmkmf and it's long gone here + * debian/openoffice.org-emailmerge*: unopkg add --shared mailmerge.py + (closes: #488875) - -- Rene Engelhard <[EMAIL PROTECTED]> Tue, 01 Jul 2008 21:52:36 +0200 + -- Rene Engelhard <[EMAIL PROTECTED]> Wed, 02 Jul 2008 13:07:35 +0200 openoffice.org (1:2.4.1-4) unstable; urgency=medium
=== added file 'openoffice.org-emailmerge.control.bug' --- a/openoffice.org-emailmerge.control.bug 1970-01-01 00:00:00 +0000 +++ b/openoffice.org-emailmerge.control.bug 2008-07-02 11:10:26 +0000 @@ -0,0 +1,1 @@ +report-with: python-uno === added file 'openoffice.org-emailmerge.postinst.in' --- a/openoffice.org-emailmerge.postinst.in 1970-01-01 00:00:00 +0000 +++ b/openoffice.org-emailmerge.postinst.in 2008-07-02 11:10:26 +0000 @@ -0,0 +1,16 @@ +#!/bin/sh + +set -e + +THIS_PACKAGE=openoffice.org-emailmerge +THIS_SCRIPT=postinst + +#INCLUDE_SHELL_LIB# + +if [ "$1" = "configure" -o "$1" = "upgrade" ]; then + add_extension /usr/lib/openoffice/program/basis3.0/mailmerge.py +fi + +#DEBHELPER# + +exit 0 === added file 'openoffice.org-emailmerge.preinst.in' --- a/openoffice.org-emailmerge.preinst.in 1970-01-01 00:00:00 +0000 +++ b/openoffice.org-emailmerge.preinst.in 2008-07-02 11:10:26 +0000 @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +# preinst script for openoffice.org-emailmerge + +THIS_PACKAGE=openoffice.org-emailmerge +THIS_SCRIPT=preinst + +#INCLUDE_SHELL_LIB# + +case "$1" in + upgrade) + remove_extension org.openoffice.legacy.mailmerge.py + ;; +esac + +#DEBHELPER# + +exit 0 === added file 'openoffice.org-emailmerge.prerm.in' --- a/openoffice.org-emailmerge.prerm.in 1970-01-01 00:00:00 +0000 +++ b/openoffice.org-emailmerge.prerm.in 2008-07-02 11:10:26 +0000 @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +# prerm script for openoffice.org-emailmerge + +THIS_PACKAGE=openoffice.org-emailmerge +THIS_SCRIPT=prerm + +#INCLUDE_SHELL_LIB# + +case "$1" in + remove) + remove_extension org.openoffice.legacy.mailmerge.py + ;; +esac + +#DEBHELPER# + +exit 0 === added file 'openoffice.org-emailmerge.script.bug' --- a/openoffice.org-emailmerge.script.bug 1970-01-01 00:00:00 +0000 +++ b/openoffice.org-emailmerge.script.bug 2008-07-02 11:10:26 +0000 @@ -0,0 +1,2 @@ +#!/bin/sh +/usr/lib/openoffice/program/unopkg list --shared org.openoffice.legacy.mailmerge.py >&3