Your message dated Sun, 17 Sep 2006 22:01:30 +0200
with message-id <[EMAIL PROTECTED]>
and subject line bug closed in experimental and now also closed in unstable
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: pilot-link
Version: 0.8.7-1
Severity: wishlist

I've started using the "pilot-link" tools and have a suggestion...

Many of the commands are so generic that they risk interferring with other
commands.  Also, the naming convention (because it's a collection of other
peoples work) isn't very consistant.  So how about this...

Move all the executables to /usr/lib/pilot-link and put a couple wrapper
scripts in /usr/bin that try to provide a somewhat consistant interface.
I've attached a simple sh script that I've started using for this.  It's
general syntax is "pilot <cmd> <parms>".

What do you think?


-------------------------------------------------------------------------------
#! /bin/sh

cd $HOME/pilot

case "$1" in

    copilot)
                xcopilot -double -serial /dev/ptyqe </dev/null >/dev/null 
2>/dev/null &
                ;;

        backup)
                file=backup
                if [ -n "$2" ]; then
                        file=$2
                fi
                pilot-xfer -b $file
                ;;

        restore)
                file=backup
                if [ -n "$2" ]; then
                        file=$2
                fi
                pilot-xfer -r $file
                ;;

        merge)
                if [ -n "$2" ]; then
                        file=$2
                else
                        echo "use: $0 merge <filename>"
                        exit 1
                fi
                pilot-xfer -m $file
                ;;

        install)
                if [ -n "$2" ]; then
                        file=$2
                else
                        echo "use: $0 install <filename>"
                        exit 1
                fi
                pilot-xfer -i $file
                ;;

        fetch)
                if [ -n "$2" ]; then
                        file=$2
                else
                        echo "use: $0 fetch <dbname>"
                        exit 1
                fi
                pilot-xfer -f $file
                ;;

        delete)
                if [ -n "$2" ]; then
                        file=$2
                else
                        echo "use: $0 delete <dbname>"
                        exit 1
                fi
                pilot-xfer -d $file
                ;;

        exclude)
                if [ -n "$2" ]; then
                        file=$2
                else
                        echo "use: $0 exclude <dbname>"
                        exit 1
                fi
                pilot-xfer -e $file
                ;;

        purge)
                if [ -n "$2" ]; then
                        echo "use: $0 purge (no parms)"
                        exit 1
                fi
                pilot-xfer -p
                ;;

        list)
                if [ -n "$2" ]; then
                        echo "use: $0 list (no parms)"
                        exit 1
                fi
                pilot-xfer -l
                ;;

        *)
                echo "use: $0 
{start|backup|restore|merge|install|fetch|delete|exclude|purge|list}"
                exit 1;
                ;;

esac


# local variables:
# tab-width: 4
# end
-------------------------------------------------------------------------------

                                          Brian
                                 ( [EMAIL PROTECTED] )

-------------------------------------------------------------------------------
                    No man dies except he who has not lived.


--- End Message ---
--- Begin Message ---
Hello,

The bug you reported has been closed by a version of pilot-link uploaded
in experimental. Version 0.12.1 is now stable upstream and has been
uploaded in Debian unstable so the bug is really closed now.

Thanks,

-- 
 Dr. Ludovic Rousseau                        [EMAIL PROTECTED]
 -- Normaliser Unix c'est comme pasteuriser le camembert, L.R. --

--- End Message ---

Reply via email to