--- pilot-link-0.12.2.orig/debian/rules +++ pilot-link-0.12.2/debian/rules @@ -0,0 +1,240 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +libpkg = libpisock9 +#cxxlibpkg = libpisock++0c2 +cxxlibpkg = +synclibpkg = libpisync0 +devpkg = libpisock-dev +runpkg = pilot-link +perlpkg = libpda-pilot-perl +pythonpkg = python-pisock + +CFLAGS += -O2 -pthread -D_REENTRANT +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + CFLAGS += -g +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +#ifeq (hppa,$(DEB_BUILD_ARCH)) +# CFLAGS += -ffunction-sections +#endif + +pwd := $(shell pwd) +ifndef PERL +PERL = /usr/bin/perl +endif +archlib = $(shell $(PERL) -MConfig -e 'print $$Config{installvendorarch}') + +version := $(shell dpkg-parsechangelog | \ + sed -ne 's/^Version: *\([0-9]\+:\)*//p') + +PYVERS=$(shell pyversions -r) + +tag: + cvs tag -c -F $(subst .,_,debian_version_$(version)) + +# dpatch +include /usr/share/dpatch/dpatch.make + +build: build-stamp build-python-stamp +build-stamp: patch-stamp + dh_testdir + # Add here commands to compile the package. + ./configure --prefix=/usr \ + --enable-conduits --enable-libusb \ + --with-perl --with-python --with-libpng \ + --with-libiconv \ + CC="$(CC)" CFLAGS="$(CFLAGS)" + + $(MAKE) + touch build-stamp + +build-python-stamp: build-stamp + dh_testdir + set -e; \ + for python in $(PYVERS); do \ + $(MAKE) -C bindings python-build PYTHON=$$python; \ + $(MAKE) -C bindings python-build PYTHON=$$python-dbg; \ + done + touch build-stamp + +clean: clean1 unpatch +clean1: + dh_testdir + rm -f build-stamp pre-binary-stamp + if [ -e Makefile ] ; then $(MAKE) distclean; fi + rm -f config.log changelog libtool + rm -rf bindings/Python/build + dh_clean + +pre-binary: build pre-binary-stamp +pre-binary-stamp: + dh_clean + dh_installdirs + #$(MAKE) -C src install prefix=`pwd`/debian/tmp/usr + #$(MAKE) -C libpisock install prefix=`pwd`/debian/tmp/usr + #$(MAKE) -C libpisock++ install prefix=`pwd`/debian/tmp/usr + #$(MAKE) -C libpisync install prefix=`pwd`/debian/tmp/usr + #$(MAKE) -C include install prefix=`pwd`/debian/tmp/usr + $(MAKE) install DESTDIR=`pwd`/debian/tmp + #$(MAKE) -C bindings/Perl install PREFIX=`pwd`/debian/tmp/usr + set -e; \ + cd bindings/Python; \ + for python in $(PYVERS); do \ + $$python setup.py install --root=$(CURDIR)/debian/tmp; \ + $$python-dbg setup.py install --root=$(CURDIR)/debian/python-pisock-dbg; \ + done + find debian/python-pisock-dbg ! -type d ! -name '*_d.so' | xargs rm -f + find debian/python-pisock-dbg -depth -empty -exec rmdir {} \; + + # mini patches + cp ChangeLog changelog + #chmod +x debian/tmp/usr/lib/perl5/PDA/dump.pl + + dh_install --list-missing --sourcedir=debian/tmp + touch pre-binary-stamp + +# Build architecture-independent files here. +binary-indep: build +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build $(libpkg) $(cxxlibpkg) $(devpkg) $(perlpkg) $(runpkg) $(synclibpkg) $(pythonpkg) $(pythonpkg)-dbg + +$(libpkg): build pre-binary + echo $@ + dh_testroot + dh_installdirs -p $@ + dh_installdocs -p $@ + dh_installchangelogs -p $@ + dh_strip -p $@ + dh_compress -p $@ + dh_fixperms -p $@ + dh_makeshlibs -p $@ + dh_installdeb -p $@ + dh_shlibdeps -p $@ + dh_gencontrol -p $@ + dh_md5sums -p $@ + dh_builddeb -p $@ + +$(cxxlibpkg): build pre-binary + echo $@ + dh_installdirs -p $@ + dh_installdocs -p $@ + dh_installchangelogs -p $@ + dh_strip -p $@ + dh_compress -p $@ + dh_fixperms -p $@ + dh_makeshlibs -p $@ + dh_installdeb -p $@ + dh_shlibdeps -p $@ -l debian/$(libpkg)/usr/lib/ + dh_gencontrol -p $@ + dh_md5sums -p $@ + dh_builddeb -p $@ + +$(synclibpkg): build pre-binary + echo $@ + dh_installdirs -p $@ + dh_installdocs -p $@ + dh_installchangelogs -p $@ + dh_strip -p $@ + dh_compress -p $@ + dh_fixperms -p $@ + dh_makeshlibs -p $@ + dh_installdeb -p $@ + dh_shlibdeps -p $@ -l debian/$(libpkg)/usr/lib + dh_gencontrol -p $@ + dh_md5sums -p $@ + dh_builddeb -p $@ + +$(devpkg): build pre-binary + echo $@ + dh_installdirs -p $@ + dh_installdocs -p $@ + dh_installchangelogs -p $@ + #cp debian/$@/usr/include/*.h* debian/$@/usr/include/libpisock/ + dh_strip -p $@ + dh_compress -p $@ + dh_fixperms -p $@ + dh_makeshlibs -p $@ + dh_installdeb -p $@ + dh_shlibdeps -p $@ + dh_gencontrol -p $@ + dh_md5sums -p $@ + dh_builddeb -p $@ + +$(runpkg): build pre-binary + echo $@ + dh_installdirs -p $@ + dh_installdocs -p $@ + dh_installexamples -p $@ + dh_installmenu -p $@ + dh_installman -p $@ + dh_installchangelogs -p $@ + dh_installdebconf -p $@ + dh_strip -p $@ + dh_compress -p $@ + dh_fixperms -p $@ + dh_installdeb -p $@ + dh_shlibdeps -p $@ -l debian/$(libpkg)/usr/lib + dh_gencontrol -p $@ + dh_md5sums -p $@ + dh_builddeb -p $@ + +$(perlpkg): build pre-binary + echo $@ + dh_installdirs -p $@ + dh_installchangelogs -p $@ + dh_installdocs -p $@ + dh_installexamples -p $@ + dh_strip -p $@ + dh_compress -p $@ + dh_fixperms -p $@ + dh_installdeb -p $@ + dh_perl -p $@ + dh_shlibdeps -p $@ -l debian/$(libpkg)/usr/lib + dh_gencontrol -p $@ -- -Tdebian/libpda-pilot-perl.substvars.debhelper -Tdebian/libpda-pilot-perl.substvars + dh_md5sums -p $@ + dh_builddeb -p $@ + +$(pythonpkg): build pre-binary + echo $@ + dh_installdirs -p $@ + dh_installchangelogs -p $@ + dh_installdocs -p $@ + dh_strip -p $@ --dbg-package=$(pythonpkg)-dbg + dh_compress -p $@ + dh_fixperms -p $@ + dh_pysupport -p $@ + dh_installdeb -p $@ + dh_shlibdeps -p $@ -l debian/$(libpkg)/usr/lib + dh_gencontrol -p $@ + dh_md5sums -p $@ + dh_builddeb -p $@ + +$(pythonpkg)-dbg: build pre-binary $(pythonpkg) + echo $@ + dh_installdocs -p $@ + rm -rf debian/$@/usr/share/doc/$@ + ln -sf $(pythonpkg) debian/$@/usr/share/doc/$@ + dh_compress -p $@ + dh_fixperms -p $@ + dh_installdeb -p $@ + dh_shlibdeps -p $@ -l debian/$(libpkg)/usr/lib + dh_gencontrol -p $@ + dh_md5sums -p $@ + dh_builddeb -p $@ + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary patch unpatch clean1 \ + $(libpkg) $(devpkg) $(runpkg) $(perlpkg) $(pythonpkg) pre-binary + --- pilot-link-0.12.2.orig/debian/man/pilot-ietf2datebook.1 +++ pilot-link-0.12.2/debian/man/pilot-ietf2datebook.1 @@ -0,0 +1,81 @@ +.\"Generated by db2man.xsl. Don't modify this, modify the source. +.de Sh \" Subsection +.br +.if t .Sp +.ne 5 +.PP +\fB\\$1\fR +.PP +.. +.de Sp \" Vertical space (when we can't use .PP) +.if t .sp .5v +.if n .sp +.. +.de Ip \" List item +.br +.ie \\n(.$>=3 .ne \\$3 +.el .ne 3 +.IP "\\$1" \\$2 +.. +.TH "pilot-ietf2datebook" 1 "Copyright 1996-2005 FSF" "0.12.1" "PILOT-LINK" +.SH NAME +pilot-ietf2datebook \- Converts IETF agenda format to install-datebook format +.SH "SECTION" + +.PP +pilot\-link: Tools + +.SH "SYNOPSIS" + +.PP + \fIpilot-ietf2datebook\fR < ietf\-agenda > datebook\&.txt + +.SH "DESCRIPTION" + +.PP + \fIpilot-ietf2datebook\fR is a Perl script that converts IETF + (\fIhttp://www\&.ietf\&.org\fR) agenda to format suitable for the + \fIinstall\-datebook\fR program\&. The agenda file is given to it as + standard input and the output file is sent to standard output\&. Please + remove all headers and footers from the agenda file before giving it to + \fIpilot-ietf2datebook\fR\&. + +.SH "OPTIONS" + +.PP +none + +.SH "USAGE" + +.PP +The program will read IETF agenda from its stdin and output format suitable for the \fIinstall\-datebook\fR program to STDOUT\&. + +.SH "AUTHOR" + +.PP + \fIpilot-ietf2datebook\fR was originally written by Tero Kivinen + +.PP +This manual page was converted to XML by Neil Williams + +.SH "REPORTING BUGS" + +.PP +Report bugs at: \fIhttp://bugs\&.pilot\-link\&.org\fR + +.SH "COPYRIGHT" + +.PP +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version\&. + +.PP +This program 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 General Public License for more details\&. + +.PP +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc\&., 51 Franklin St, Fifth Floor, Boston, MA 02110\-1301, USA\&. + +.SH "SEE ALSO" + +.PP + \fIread\-ical\fR(1), \fIpilot\-xfer\fR(1), \fIinstall\-datebook\fR(1), \fIpilot\-link\fR(7)\&. + --- pilot-link-0.12.2.orig/debian/man/pilot-sync-plan.1 +++ pilot-link-0.12.2/debian/man/pilot-sync-plan.1 @@ -0,0 +1,14 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH SYNC-PLAN "1" "June 2003" "sync-plan" "User Commands" +.SH NAME +sync-plan \- synchronize Plan databases +.SH DESCRIPTION + +.SH USAGE +sync-plan + + is where various information is stored. You might +wish to use /home/user/.sync-plan. +.SH AUTHOR +This manual page was written by Ludovic Rousseau + for the Debian GNU/Linux system. --- pilot-link-0.12.2.orig/debian/man/pilot-undelete.1 +++ pilot-link-0.12.2/debian/man/pilot-undelete.1 @@ -0,0 +1,20 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.29. +.TH PILOT-UNDELETE "1" "June 2003" "pilot-undelete" "User Commands" +.SH NAME +pilot-undelete \- scan through dbname on your Pilot and turn all +archived records into normal records +.SH DESCRIPTION +pilot-undelete will scan through dbname on your Pilot and turn all +archived records into normal records, thus "undeleting" them. +.SH USAGE +pilot-undelete \fB\-p\fR \fB\-d\fR +.SH OPTIONS +.TP +\fB\-p\fR +Use device file to communicate with Palm +.TP +\fB\-d\fR +Database to use +.SH AUTHOR +This manual page was written by Ludovic Rousseau + for the Debian GNU/Linux system. --- pilot-link-0.12.2.orig/debian/libpisock9.install +++ pilot-link-0.12.2/debian/libpisock9.install @@ -0,0 +1 @@ +usr/lib/libpisock.so.9* --- pilot-link-0.12.2.orig/debian/libpda-pilot-perl.install +++ pilot-link-0.12.2/debian/libpda-pilot-perl.install @@ -0,0 +1 @@ +usr/lib/perl5 --- pilot-link-0.12.2.orig/debian/changelog +++ pilot-link-0.12.2/debian/changelog @@ -0,0 +1,883 @@ +pilot-link (0.12.2-4ubuntu1) feisty; urgency=low + + * Merged with Debian, remanining Ubuntu changes: + - debian/compat: 5. + - debian/control, debian/rules: build python-dbg package. + + -- Daniel Holbach Mon, 26 Feb 2007 16:17:56 +0100 + +pilot-link (0.12.2-4) unstable; urgency=low + + * debian/patches/19_pilot-link.m4.in.dpatch: update to remove definition of + IT_PROG_INTLTOOL. Closes: #411382: "Breaks builds of unrelated code" + + -- Ludovic Rousseau Sun, 18 Feb 2007 17:55:42 +0100 + +pilot-link (0.12.2-3) unstable; urgency=low + + * remove debian/po/* files: Closes: #411176: pilot-link: Please remove the + debian/po directory + + -- Ludovic Rousseau Sun, 18 Feb 2007 13:42:56 +0100 + +pilot-link (0.12.2-2) unstable; urgency=low + + * debian/patches/19_pilot-link.m4.in.dpatch: correct pilot-link.m4 so that + projects (jpilot for example) using this m4 file do not fail at autoconf + + -- Ludovic Rousseau Fri, 16 Feb 2007 15:05:29 +0100 + +pilot-link (0.12.2-1ubuntu1) feisty; urgency=low + + * Build the extension for the python debug interpreter. + * Bump debhelper compatibility to v5. + * Set Ubuntu maintainer address. + + -- Matthias Klose Sat, 17 Feb 2007 03:02:55 +0100 + +pilot-link (0.12.2-1) unstable; urgency=low + + * New upstream release + - Closes: #410152 "pilot-link: udev rules need updating" + * debian/control: add Build-Depends: libbluetooth2-dev + - add bluetooth support + + -- Ludovic Rousseau Wed, 14 Feb 2007 23:30:59 +0100 + +pilot-link (0.12.1-5) unstable; urgency=medium + + * urgency medium since libpisock-dev was not usable to build any package + * libpisock-dev now depends on libusb-dev + + -- Ludovic Rousseau Fri, 22 Sep 2006 11:51:36 +0200 + +pilot-link (0.12.1-4) unstable; urgency=low + + * Debuild-Depends: libusb-dev. Closes: #388057 "pilot-link needs to + Build-Depend on libusb-dev." + + -- Ludovic Rousseau Tue, 19 Sep 2006 21:14:06 +0200 + +pilot-link (0.12.1-3) unstable; urgency=low + + * upload to unstable + * patch ./configure to correcty detect Python + + -- Ludovic Rousseau Tue, 19 Sep 2006 21:12:56 +0200 + +pilot-link (0.12.1-2) experimental; urgency=low + + * Install some missing files. Thanks to Norbert Preining for the patches + + -- Ludovic Rousseau Fri, 8 Sep 2006 21:10:38 +0200 + +pilot-link (0.12.1-1) experimental; urgency=low + + * New upstream release + * Closes: #385871: "libpisock-dev: pilot-link.pc not installed in + /usr/lib/pkgconfig" + + -- Ludovic Rousseau Tue, 5 Sep 2006 22:28:03 +0200 + +pilot-link (0.12.0-1) experimental; urgency=low + + * New upstream release + - Closes: #269731 "pilot-link: pilot charset is hard-coded in + libpisock/util.c" + - Closes: #360963: "pilot-link: pilot-xfer ignores PILOTRATE and uses 9600 + bps" + - Closes: #340818: "pilot-xfer.1.gz: -f: thought one could get more than + one file" + - Closes: #342128: "install-todo.1.gz: non standard formatting" + - Closes: #351435: "read-todos -w not on man page" + - Closes: #351438: "memos -p mandatory, contrary to man page" + - Closes: #351439: "pilot-xfer: $? when memory full" + - Closes: #375734: "install-user has no default so don't say there is" + - Closes: #383537: "pilot-link: don't say SEE ALSO pilot-link" + - Closes: #20782: "pilot-link suggestion" + - Closes: #24357: "pilot-link has namespace pollution" + - Closes: #148190: "pilot-link: Clock synchronization would be nice" + * To avoid namespace pollution a lot of commands from pilot-link have been + renamed from foo to pilot-foo. See + /usr/share/doc/pilot-link/NEWS.Debian.gz file + * (try to) use the new Python policy + + -- Ludovic Rousseau Fri, 1 Sep 2006 18:22:14 +0200 + +pilot-link (0.11.8-0.12.0-pre4-5) experimental; urgency=low + + * use --root instead of --home to correctly build the python-pisock package + (files in /usr/lib/python-2.3/ instead of /usr/lib/python/) + + -- Ludovic Rousseau Tue, 23 May 2006 21:58:58 +0200 + +pilot-link (0.11.8-0.12.0-pre4-4) experimental; urgency=low + + * debian/control: libpisock-dev now depends on the ${Source-Version} of + libpisock9 and libpisync0. Closes: #344762 "libpisock-dev: Should depend + on newer version of libpisync0." + * debian/rules: add --enable-libusb to ./configure. + Closes: #346319 "libpisock9: Please compile with libusb support" + + -- Ludovic Rousseau Thu, 12 Jan 2006 18:28:50 +0100 + +pilot-link (0.11.8-0.12.0-pre4-3) experimental; urgency=low + + * debian/rules: Closes: #340594 "python-pisock: missing python bindings" + . add --with-python to ./configure to build the Python + bindings. + . call "python setup.py install" + * debian/compat: 3 -> 4 + + -- Ludovic Rousseau Fri, 25 Nov 2005 15:55:05 +0100 + +pilot-link (0.11.8-0.12.0-pre4-2) experimental; urgency=low + + * debian/control: remove libpisock++0 from libpisock-dev Depends: line. This + package is not built anymore. Closes: #336853 + + -- Ludovic Rousseau Tue, 1 Nov 2005 22:07:54 +0100 + +pilot-link (0.11.8-0.12.0-pre4-1) experimental; urgency=low + + * New upstream release + - now support databases > 64KB. closes: #225920 "Crashes backing up Clie + NX-70V" + - "pilot-addresses: mixed up fields" closes: #151839 + - "pilot-addresses -r option broken" closes: #252210 + - pilot-prc removed, closes: #257299 "pilot-prc is totally broken" + - pilot-datebook removed, closes: #269133 "export to remind is broken with + records spanning multiple lines" + - "libpisock-dev: unnecessary -lreadline link dependency" closes: #270975 + - "install-datebook gives, fopen: Bad address" closes: #290109 + - "pilot-xfer crashes when using -s option" closes: #305697 + - "0.11.8 series has been deprecated" closes: #307847 + - "memos -s . -f MemoDB.pdb fails to create directories as needed" + closes: #313348 + - "minor cut-and-paste typo in pilot-xfer manpage" closes: #283593 + - pilot-link.7 removed, closes: #289234 "pilot-link.7.gz: nroff accident" + - "pilot-schlep.1.gz: -f file > file" closes: #289353 + - "pilot-xfer.1.gz: documentation locked inside program" closes: #293474 + * do not provide a devfs config file anymore. closes: #228813 + "/etc/devfs/conf.d/libpisock8 should be called /etc/devfs/conf.d/pilot-link" + closes: #258847 "System serial device permissions overridden" + closes: #225270 "Question about /dev/pilot which is already there" + closes: #225271 "pilot-link: Should create a "pilot" group" + closes: #264617 "Please add German translation of the debconf templates" + closes: #306505 "[INTL:pt_BR] Please consider adding the attached debconf + template translation" + * remove the debconf question about /dev/pilot. Closes: #289231 "mention + what hardware use what port" + * package libpisock++0 removed since the C++ API has been removed upstream + * debian/README.debian: add a not about ical. Closes: #296666 "read-ical + needs ical but ical isn't in debian" + + -- Ludovic Rousseau Wed, 22 Jun 2005 21:23:51 +0200 + +pilot-link (0.11.8-0.12.0-pre3-1) experimental; urgency=low + + * New upstream release + + -- Ludovic Rousseau Sat, 30 Apr 2005 20:15:15 +0200 + +pilot-link (0.11.8-0.12.0-pre2-3) experimental; urgency=low + + * debian/control: Build-Depends: add python-dev (>= 2.3) + Closes: #300722 "FTBFS in experimental" + + -- Ludovic Rousseau Sat, 2 Apr 2005 16:44:52 +0200 + +pilot-link (0.11.8-0.12.0-pre2-2) experimental; urgency=low + + * remove debconf question about /dev/pilot since /dev/pilot is not used + anymore by pilot-link. You shall indicate the port using --port + or with the environment variable $PILOTPORT + * The upstream realease 0.12.0-pre2 closes the following bugs: + - "pilot-xfer: return non zero on error" Closes: #289221 + - "pilot-datebook.1.gz: dateboot?" Closes: #293034 + - "/usr/bin/pilot-xfer: meaningless args OK" Closes: #291767 + - "install-datebook gives, fopen: Bad address" Closes: #290109 + - "addresses.1.gz: the one option" Closes: #289232 + - "read-notepad.1.gz: NAME field abused" Closes: #289352 + + -- Ludovic Rousseau Sat, 19 Feb 2005 21:12:15 +0100 + +pilot-link (0.11.8-0.12.0-pre2-1) experimental; urgency=low + + * New upstream release + + -- Ludovic Rousseau Wed, 2 Feb 2005 22:10:00 +0100 + +pilot-link (0.11.8-24) unstable; urgency=low + + * debian/{control,rules}: update the python build process to comply with + http://wiki.debian.org/DebianPython/NewPolicy. Closes: 373477 "Python + policy transition" + + -- Ludovic Rousseau Thu, 15 Jun 2006 13:33:24 +0200 + +pilot-link (0.11.8-23) unstable; urgency=low + + * debian/po/nl.po: Closes: #370035: pilot-link: [INTL:nl] Translation into + Dutch available + * debian/pilot-link.templates: use #flag:translate:1 to translate "None" + + -- Ludovic Rousseau Sat, 3 Jun 2006 09:39:02 +0200 + +pilot-link (0.11.8-22) unstable; urgency=low + + * debian/po/gl.po: new file. Closes: #361961: "[INTL:gl] Galician debconf + templates translation" + + -- Ludovic Rousseau Sun, 16 Apr 2006 20:58:03 +0200 + +pilot-link (0.11.8-21) unstable; urgency=low + + * debian/po/cs.po: update. Closes: #356535: [l10n] Updated Czech translation + of pilot-link debconf messages + + -- Ludovic Rousseau Sat, 18 Mar 2006 17:52:52 +0100 + +pilot-link (0.11.8-20) unstable; urgency=low + + * debian/control: libpisock-dev now depends on the ${Source-Version} of + libpisock9,libpisock++0c2 and libpisync0. Closes: #354966 "libpisock-dev: + /usr/lib/libpisync.so points to a not existing lib" + + -- Ludovic Rousseau Thu, 2 Mar 2006 21:46:14 +0100 + +pilot-link (0.11.8-19) unstable; urgency=low + + * debian/po/it.po: Closes: #353210 "Please add Italian translation" + + -- Ludovic Rousseau Sun, 26 Feb 2006 16:44:21 +0100 + +pilot-link (0.11.8-18) unstable; urgency=low + + * debian/po/de.po: update. Closes: #345854: [l10n:de] Updated German + translation of the debconf templates + * debian/po/da.po: update. Closes: #350885: pilot-link: [INTL:da] Updated + Danish debconf translation + * debian/control: add sylpheed-claws, sylpheed-claws-gtk2, sylpheed in + Suggests: for libpisock8 + + -- Ludovic Rousseau Wed, 1 Feb 2006 20:51:46 +0100 + +pilot-link (0.11.8-17) unstable; urgency=low + + * debian/po/sv.po: update. Closes: #341633 "[INTL:sv] Swedish debconf + templates translation" + + -- Ludovic Rousseau Sun, 4 Dec 2005 18:45:34 +0100 + +pilot-link (0.11.8-16) unstable; urgency=low + + * debian/pilot-link.templates: change the Description: text to be compliant + with the developers reference, section 6.5 + * debian/po/fr.po: updated. Closes: #341120 "French debconf templates + translation update" + + -- Ludovic Rousseau Tue, 29 Nov 2005 22:26:09 +0100 + +pilot-link (0.11.8-15) unstable; urgency=low + + * debian/po/fr.po: correct a typo + * debian/compat: use level 4 (instead of 3 which is deprecated) + + -- Ludovic Rousseau Tue, 8 Nov 2005 21:05:25 +0100 + +pilot-link (0.11.8-14) unstable; urgency=low + + * debian/control: add autotools-dev to Build-Depends:. This was missing from + the patch included in #326621 and causes a FTBFS. + + -- Ludovic Rousseau Wed, 2 Nov 2005 18:15:34 +0100 + +pilot-link (0.11.8-13) unstable; urgency=low + + * debian/patches/18_kfreebsd.dpatch: Closes: #326621 "FTBFS on GNU/kFreeBSD" + * debian/po/vi.po: Closes: #316865, Vietnamese translation for debconf + * debian/po/de.po: Closes: #264617, German translation for debconf + * debian/po/pt_BR.po: Closes: #306505, Brazilian Portuguese translation for + debconf + * debian/po/cs.po: Closes: #317669, Czech translation for debconf + * debian/po/sv.po: Closes: #330765, Swedish translation for debconf + + -- Ludovic Rousseau Tue, 1 Nov 2005 22:17:15 +0100 + +pilot-link (0.11.8-12) unstable; urgency=low + + * debian/control: use "debconf | debconf-2.0" as requested in + http://lists.debian.org/debian-devel/2005/08/msg00136.html + In fact I use ${misc:Depends} that is expanded in + "debconf (>= 0.5) | debconf-2.0" + + -- Ludovic Rousseau Sun, 7 Aug 2005 19:12:41 +0200 + +pilot-link (0.11.8-11) unstable; urgency=low + + * Acknowledge NMU. Thanks Matthias + * add debian/patches/17_libpisock_pi-file.c.dpatch: do not print an empty + line to stdout when installing a file + * debian/control: Standards-Version: 3.6.1 -> 3.6.2.1 + + -- Ludovic Rousseau Fri, 5 Aug 2005 15:34:16 +0200 + +pilot-link (0.11.8-10.1) unstable; urgency=low + + * NMU. + * Synchronize with Ubuntu. + * Build using default python version. + * Build-depend on libreadline5-dev. + + -- Matthias Klose Wed, 3 Aug 2005 13:23:07 +0200 + +pilot-link (0.11.8-10ubuntu3) breezy; urgency=low + + * Rebuild package for new C++ ABI + + -- Matthias Klose Sat, 28 May 2005 16:54:57 +0000 + +pilot-link (0.11.8-10ubuntu2) breezy; urgency=low + + * CXX transition: Rename libpisock++0 to libpisock++0c2. + + -- Matthias Klose Thu, 12 May 2005 20:22:50 +0000 + +pilot-link (0.11.8-10ubuntu1) hoary; urgency=low + + * Build for python2.4. + + -- Matthias Klose Thu, 16 Dec 2004 12:57:45 +0100 + +pilot-link (0.11.8-10) unstable; urgency=low + + * debian/po/it.po: Italian debconf template translation. + + -- Ludovic Rousseau Sun, 6 Jun 2004 15:12:16 +0200 + +pilot-link (0.11.8-9) unstable; urgency=low + + * debian/patches/15_src_instal-memo.c.dpatch: + install-memo -t argument does not take an argument. Thanks to Adrian + Kubala for the bug report and the patch idea. Closes: #233786 + * debian/patches/16_doc_man_pi-getrom.1.in.dpatch: + In the man page for pi-getrom the "-p" option refered to + "install-expenses" as the application name, instead of "pi-getrom" + Closes: #233843 + + -- Ludovic Rousseau Fri, 20 Feb 2004 11:19:27 +0100 + +pilot-link (0.11.8-8) unstable; urgency=low + + * add Danish Debconf translation. Thanks to Claus Hindsgaul. Closes: #233084 + * add Japanese Debconf translation. Thanks Hideki Yamane. + * debian/watch: update to v2 so that + http://packages.qa.debian.org/p/pilot-link.html gives correct information + * debian/patches/14_Makefile.PL.in.dpatch: do not redefine the library path + + -- Ludovic Rousseau Wed, 18 Feb 2004 21:39:39 +0100 + +pilot-link (0.11.8-7) unstable; urgency=low + + * use dpatch to apply patches on upstream version + * 02_src_memos.c.dpatch: memos now generates a 'From ' header line. + Patch from upstream CVS. Closes: #212229 + + -- Ludovic Rousseau Thu, 25 Sep 2003 21:24:53 +0200 + +pilot-link (0.11.8-6) unstable; urgency=low + + * debian/control: + - rewrite of the short and long descriptions, Closes: #209733 + - Standards-Version: 3.6.0 -> 3.6.1 + * src/install-datebook.c: untimed event are now correctly managed. Specify a + date and not time for them. Closes: #144661 + + -- Ludovic Rousseau Wed, 17 Sep 2003 23:57:15 +0200 + +pilot-link (0.11.8-5) unstable; urgency=low + + * debian/po/nl.po: add dutch po-debconf translation. Thanks to Tim + Vandermeersch. Closes: #209120 + + -- Ludovic Rousseau Sun, 7 Sep 2003 23:40:32 +0200 + +pilot-link (0.11.8-4) unstable; urgency=low + + * improve debconf text and french translation. Closes: #206968 + * pilot-datebook: test if event is repeating before printing a buggy + "UNTIL 0 jan 1900" for remind output. Closes: #167328 + + -- Ludovic Rousseau Sun, 24 Aug 2003 15:41:04 +0200 + +pilot-link (0.11.8-3) unstable; urgency=low + + * use debhelper >= 4.1.62 to have a less buggy dh_python. Closes: #205437 + * use dh_python _before_ dh_installdeb so that the postinst and postrm + script are installed. + * remove /usr/lib/python2.3/site-packages/pisock.pyc from the package + * default is to _not_ create and modify the access rights of /dev/pilot. + add a security warning in the debconf question if the admin choses to + create /dev/pilot for ease of use. Closes: #205125 + * pilot-addresses: correct a buffer overflow. Closes: #114735 + + -- Ludovic Rousseau Fri, 15 Aug 2003 00:27:51 +0200 + +pilot-link (0.11.8-2) unstable; urgency=low + + * debian/libpisock8.postinst: make chmod quiet if /dev/pilot does not exist + and correct access rights for devfs device, Closes: #205013, #205056 + * debconf question is now back in pilot-link, Closes: #205059 + * debian/libpisock-dev.README.Debian: small doc for package maintainers + having a build-depends on libpisock-dev. Please read it otherwise the + /dev/pilot symbolic link may not exist for your users. + + -- Ludovic Rousseau Tue, 12 Aug 2003 23:34:35 +0200 + +pilot-link (0.11.8-1) unstable; urgency=low + + * New upstream release + - New version available, Closes: #200438, #201292 + - correct segmentation fault in install-todo (initialize the date to a + valid one), Closes: #184076 + * The Debconf question is now for libpisock8 and not pilot-link since the + /dev/pilot link is used by the libpisock8 which is used by pilot-link + * debian/libpisock8.postinst: chmod 0666 /dev/pilot after /dev/pilot + creation so that anyone can use the Palm craddle + * libpisock8.postinst: do not create /dev/pilot if nothing was chosen in + debconf + * debian/man/*: add informative short description. Closes: #201528 + * debian/control: Standards-Version: 3.5.10 -> 3.6.0 + + -- Ludovic Rousseau Sun, 10 Aug 2003 23:24:25 +0200 + +pilot-link (0.11.7-7) unstable; urgency=low + + * Add link path so the package can build using its own libraries. Package + buiding was broken since I introduced -lpisock + + -- Ludovic Rousseau Sat, 28 Jun 2003 00:16:47 +0200 + +pilot-link (0.11.7-6) unstable; urgency=low + + * debian/control: realy use Section: python for python-pisock + * declare argument "name" of pi_file_open() as const. Closes: #43297 + * debian/pilot-link.templates: describe what port name correspond to + which physical port. + * debian/pilot-link.postinst: add debconf USB devfs support + * add (all) available Python documentation to python-pisock package. + Closes: #169840 + * add -lpisock to libpisync.so build. Closes: #194089 + * add -lstdc++ to libpisock++.so build. Closes: #194092 + * README.debian: add a comment about access rights on the communication + port. Closes: #63547 + + -- Ludovic Rousseau Thu, 26 Jun 2003 23:09:27 +0200 + +pilot-link (0.11.7-5) unstable; urgency=low + + * Adopt new Debian Section scheme: libdevel, python and perl instead of + devel. + * libpda-pilot-perl do not provide pilot-link-perl (old name of the package) + * python-pisock do not provide pilot-link-python (old name of the package) + * Do not remove /dev/pilot when the package is removed. + * use devfs serial names tts/? instead of ttyS?. Closes: #198416 + * test if read-ical filename is non null. Closes: #176294 + * add pilot-link.7 manpage (it disapeared in 0.11.7-4). + + -- Ludovic Rousseau Sun, 22 Jun 2003 19:10:28 +0200 + +pilot-link (0.11.7-4) unstable; urgency=low + + * New Maintainer. Many thanks to Ben Darnell for his work. Closes: #195370 + * debian/control: + - Build-Depends: on libpng-dev instead of libpng3-dev, + - Build-Depends: on libreadline-dev | libreadline4-dev instead of + libreadline4-dev + - pilot-link conflicts with pilot-link-perl. Closes: #179963 + - Standards-Version: 3.2.1 -> 3.5.10 + * debian/rules: + - support debug and nostrip in $DEB_BUILD_OPTIONS + * remove Debian added pilot-mail manpage since the binary do not exist + anymore. Closes: #185812 + * pilot-datebook-joblist.c: use int instead of char for the switch variable. + Correct a potential i386 bug and a real arm, powerpc and s390 bug. + Closes: #182150, #160885 + * debian/python-pisock.files: do not hardcode the python version (2.2 in the + present case) but use a jocker. Closes: #169410 + * pilot-link debconf: split in pilot-link.config and pilot-link.postinst + * use debian-po to manage debconf questions translations + * src/ietf2datebook.PL: use perl in #!. Closes: #176296 + + -- Ludovic Rousseau Sat, 21 Jun 2003 00:04:20 +0200 + +pilot-link (0.11.7-3) unstable; urgency=low + + * Orphaned the package (set maintainer to packages@qa.debian.org) + + -- Ben Darnell Thu, 29 May 2003 09:42:38 -0700 + +pilot-link (0.11.7-2) unstable; urgency=low + + * Fix depends on ncurses (closes: #175466) + + -- Ben Darnell Sat, 1 Feb 2003 10:09:00 -0800 + +pilot-link (0.11.7-1) unstable; urgency=low + + * New upstream version (closes: #175568) + + -- Ben Darnell Mon, 6 Jan 2003 23:10:48 -0800 + +pilot-link (0.11.6-1) unstable; urgency=low + + * New upstream version + * Relaxed perl build-depends (closes: #169408) + + -- Ben Darnell Sun, 29 Dec 2002 21:43:57 -0800 + +pilot-link (0.11.4-2) unstable; urgency=low + + * Add README.usb + + -- Ben Darnell Wed, 2 Oct 2002 22:35:02 -0700 + +pilot-link (0.11.4-1) unstable; urgency=low + + * New upstream version + * Fixed build-depends (closes: #159528) + * Fix build problem on hppa (closes: #159602) + + -- Ben Darnell Mon, 16 Sep 2002 20:56:22 -0700 + +pilot-link (0.11.3-6) unstable; urgency=low + + * Remove libpng dependency from library packages (closes: #160107) + + -- Ben Darnell Tue, 10 Sep 2002 23:38:46 -0700 + +pilot-link (0.11.3-5) unstable; urgency=low + + * Move libpisync development files to libpisock-dev + * Change devfs support from deprecated symlinks.d to i + conf.d (closes: #127287) + + -- Ben Darnell Tue, 3 Sep 2002 21:36:54 -0700 + +pilot-link (0.11.3-4) unstable; urgency=low + + * Update Python bindings to Python 2.2 + + -- Ben Darnell Mon, 2 Sep 2002 14:47:09 -0700 + +pilot-link (0.11.3-3) unstable; urgency=low + + * Update for Perl 5.8 (closes: #158348, #158386) + * Update copyright notice (closes: #157684) + * Build libpisync0 package (closes: #158011) + + -- Ben Darnell Mon, 26 Aug 2002 21:21:36 -0700 + +pilot-link (0.11.3-2) unstable; urgency=low + + * Applied patch to fix USB segfault issue + * Fix depends on libpisock-dev + + -- Ben Darnell Fri, 9 Aug 2002 18:49:53 -0700 + +pilot-link (0.11.3-1) unstable; urgency=low + + * New upstream version (this one will get uploaded, I promise) + (closes: #154549, #152782) + * Fix depends/conflict/replace on libpisock++0 (closes: #155546, #153532) + + -- Ben Darnell Wed, 7 Aug 2002 19:42:25 -0700 + +pilot-link (0.11.1-1) unstable; urgency=low + + * New upstream version (closes: #154549) + + -- Ben Darnell Mon, 29 Jul 2002 22:42:52 -0700 + +pilot-link (0.11.0-1) unstable; urgency=low + + * New upstream version (closes: #152782, #141211) + + -- Ben Darnell Fri, 12 Jul 2002 14:54:59 -0700 + +pilot-link (0.10.99-4) unstable; urgency=low + + * Add Provdes: for renamed Perl and Python packages (closes: #152452) + * Fix dependencies for Perl package (closes: #152039) + + -- Ben Darnell Tue, 9 Jul 2002 15:19:31 -0700 + +pilot-link (0.10.99-3) unstable; urgency=low + + * Fix makefiles for C++, Perl and Python bindings; will now build without + libpisock5 already installed (closes: #150925) + * Fix typo in debian/rules (closes: #151081) + * Update dependency information (closes: #151038) + + -- Ben Darnell Tue, 25 Jun 2002 10:59:31 -0700 + +pilot-link (0.10.99-2) unstable; urgency=low + + * Re-build for new version of automake/autoconf (closes: #150794) + + -- Ben Darnell Mon, 24 Jun 2002 16:47:23 -0700 + +pilot-link (0.10.99-1) unstable; urgency=low + + * Real upload of 0.10.99. It's a pre-release, but better than the very + old 0.9.5. This version features support for USB devices. Be aware, + some components have been renamed or deleted since 0.9.5. + + -- Ben Darnell Sun, 16 Jun 2002 23:02:43 -0700 + +pilot-link (0.10.99-0.2) unstable; urgency=low + + * Update the (very old) package descriptions, readmes, etc. + * Fix Python bindings + + -- Ben Darnell Sun, 7 Apr 2002 15:40:05 -0400 + +pilot-link (0.10.99-0.1) unstable; urgency=low + + * New upstream version (test packages) + + -- Ben Darnell Thu, 4 Apr 2002 22:40:53 -0500 + +pilot-link (0.9.5.0-8) unstable; urgency=low + + * Apply patch to fix "Weird packet" error (closes: #120459) + + -- Ben Darnell Sat, 16 Feb 2002 10:52:06 -0500 + +pilot-link (0.9.5.0-7) unstable; urgency=low + + * Fix templates file (closes: #124053) + * Apply patch to pilot-addresses (closes: #114096) + + -- Ben Darnell Sat, 15 Dec 2001 20:20:16 -0500 + +pilot-link (0.9.5.0-6) unstable; urgency=low + + * Add version to build-depend on perl (closes: #109664) + * Updated config.guess and config.sub + * Added German translation of debconf prompts (closes: #102086) + + -- Ben Darnell Wed, 29 Aug 2001 19:10:39 -0400 + +pilot-link (0.9.5.0-5) unstable; urgency=low + + * Fix compilation problems on gcc 3.0 (closes: #106256) + + -- Ben Darnell Mon, 23 Jul 2001 12:48:13 -0400 + +pilot-link (0.9.5.0-4) unstable; urgency=low + + * Fix dependency versions + + -- Ben Darnell Thu, 19 Jul 2001 17:38:05 -0400 + +pilot-link (0.9.5.0-3) unstable; urgency=low + + * Fixed build problem on ia64 (closes:#105766) + + -- Ben Darnell Wed, 18 Jul 2001 12:21:41 -0400 + +pilot-link (0.9.5.0-2) unstable; urgency=low + + * Fix missing dependencies (closes:#104400) + + -- Ben Darnell Wed, 11 Jul 2001 22:31:14 -0400 + +pilot-link (0.9.5.0-1) unstable; urgency=low + + * New official upstream release (upstream version number is 0.9.5, + this package uses 0.9.5.0 because the prerelease NMUs were + misnumbered) + * Not an NMU (closes:#71476,#84498,#86622,#80730,#53256,#64377,#66000) + * Fixed self-build-dependency (closes: #99696, #92547) + * Add version to dependency on libpisock (closes: #97549) + * Re-wrote configuration scripts to use debconf (and devfs when available) + (closes:#99067,#99070,#98862,#99069) + * Fixed perl version depend (closes: #80661) + * Incremented library package version number to libpisock4 + + -- Ben Darnell Tue, 19 Jun 2001 15:49:51 -0400 + +pilot-link (0.9.5-pre5-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fixed location of perl tools to follow perl policy (closes:#95420) + * Build-depends on debhelper with working dh_perl. + * Now using -l argument to dh_shlibdeps, which means that with a + sufficiently recent version of debhelper, you can use fakeroot to + build this package again. + * Note on the version number: I think the non-maintainer who uploaded + the previous version made a horrible mistake here. Unfortunately, it's + too late to do anything. Whoever uploads 0.9.5, when it's finally + released, will have to use a version number like 0.9.5-rel5-1. + Fortunately, 0.9.6 will be able to return to a normal numbering + scheme. + * Removed lintian overrides improperly added by last non-maintainer + upload. + + -- Chris Waters Fri, 25 May 2001 19:11:14 -0700 + +pilot-link (0.9.5-pre5-1) unstable; urgency=low + + * New upstream version + * Updated debian/rules to reflect new location of perl tools as well as + added fixes for new perl 5.6.0 + * NMU + * Fix build from source issues (Closes: #86622, #84498) + * Fix Weird Packets problem (Closes: #71476) + * Adding Build-Depends + * Provide manpage links (Closes: #53256) + * Some lintian cleanup + * Including new man page (Closes: #64377) + * Fix for install-datebook timeless entry (Closes: #66000) + * Fix problem with pilot-xfer restoration (Closes: #80730) + * Adding in lintian overrides + * Remove old suidregister calls in debian/rules + + -- Ivan E. Moore II Sat, 24 Mar 2001 03:28:30 -0700 + +pilot-link (0.9.3-3) unstable; urgency=low + + * pilot-link-perl should now *really* build without pilot-link + installed (closes: #53891) + + -- Ben Darnell Mon, 3 Jan 2000 16:24:30 -0500 + +pilot-link (0.9.3-2) unstable; urgency=low + + * Change pilot-link-perl dependency from libmd5-perl to + libdigest-md5-perl (closes: #47519) + * pilot-link-perl now builds without pilot-link installed + (closes: #51594) + * Applied patch from Jay Sekora (adds verbose option to memos.c, + tcl output option to pilot-addresses.c) + + -- Ben Darnell Thu, 21 Oct 1999 19:11:08 -0400 + +pilot-link (0.9.3-1) unstable; urgency=low + + * New maintainer + * Fix "Press HotSync button" in pilot-xfer.c and pilot-mail.c + (closes Bug#46346, #38382) + * Remove bogus sigint handler in pilot-mail.c (closes Bug#38383) + * Close dangling file handles in install-memo.c (closes Bug#42830) + * Move pilot-debug to pilot-link-tcl, to remove dependency on tcl/tk + (and therefore X) (closes Bug#31631) + * Move ietf2datebook, pilot-undelete, and sync-plan to + pilot-link-perl to remove dependency + * Update to policy 3.0.0 + + -- Ben Darnell Thu, 7 Oct 1999 19:50:54 -0400 + +pilot-link (0.9.3-0.2) unstable; urgency=low + + * Non-maintainer upload. + * Conform to Perl Policy 1.0.1. (fixes Bug#41511) + * Apply patch from Hiroaki KOJIMA to make install-datebook work + correctly. (fixes Bug#40343) + * Change the dependencies of pilot-link from libmd5-perl to + libdigest-md5-perl since the latter is replacing the former. + * Add --no-ask option to pilotconfig so that it won't ask the user about + the /dev/pilot symlink if it already exists during install. (fixes + Bug#37361) + Wrote a manpage for pilotconfig since it now has options. + * Make pilot-xfer put the message "press the HotSync button now" on + stderr instead of stdout. This way the output can be filtered and you + still know when to press the button. (fixes Bug#34423) + + -- Darren Stalder Thu, 7 Oct 1999 19:50:01 -0400 + +pilot-link (0.9.3-0.1) unstable; urgency=low + + * Non-maintainer upload. + * New upstream release (fixes bugs #36299, #37800) + * debian/copyright: updated download URL. + * Rebuilt with latest glibc 2.1 (fixes bugs #31630, #33489, #36646; + also, there is no sign of #31806 or #32874). + * debian/rules: find and remove .packlist from Perl module directory + (fixes lintian error). + * debian/rules: chmod 755 /usr/sbin/pilotconfig (fixes lintian + warning, and error during postinst). + + -- Rob Tillotson Fri, 14 May 1999 23:01:41 -0500 + +pilot-link (0.9.0-1) unstable; urgency=low + + * Upgraded to latest upstream release (closes bug #29853). + * Now compiled using egcc. + * Added pilot-link-perl, perl, and libmd5-perl to the dependancies + for pilot-link (closes bugs #13872 #27835 and #31122). + * Pilot-link's ChangeLog and TODO files are now put into + /usr/doc/pilot-link closes bug #23067). + * Added data-dumper to the dependancies for pilot-link-perl. + * Revised copyright file to cover libpisock being undr LGPL now. + * Added note about sync-ical not being present to README.Debian + (closes bug #13871). + * Bugs #16101 #16554 and #17739 were already fixed by the previous + release - now closed. + * The getrom.prc and getrom2.prc files are now put into + /usr/doc/pilot-link and a comment has been added to README.Debian + (closes bugs #23093 and #24284). + * Modified pilotconfig to close bugs #23463 #23616 and #25638. + * Bugs #23663 and #24285 do not occur with this release and so are + now closed. + * pilot-xfer.c modified to fix opendir security issue. This new upstream + release seems to have code to fix the fopen issue. (closes bug #24361). + * Change rules file so that doing a clean doesn't fail if there is no + Makefile in either the Perl5 or Tcl directories (closes bugs #27466 + and #27941). + + -- Dermot Bradley Sun, 6 Sep 1998 11:56:54 +0100 + +pilot-link (0.8.11-1) unstable; urgency=low + + * New maintainer. + * Upgraded to latest upstream release. + * debian/rules now uses debhelper. + * Changed from one package into separates for the shared library, + static library and header files, main pilot-link binaries, + and separate Perl and TCL APIs. + * Changed all references of cua in the code to ttyS. + * Added pilotconfig to set up /dev/pilot. + + -- Dermot Bradley Sun, 12 Apr 1998 23:23:49 +0100 + +pilot-link (0.8.7-1) unstable; urgency=low + + * upgrade upstream release + + -- Mark W. Eichin Thu, 9 Oct 1997 01:43:42 -0400 + +pilot-link (0.8.5-1) unstable; urgency=low + + * upgrade upstream release + + -- Mark W. Eichin Mon, 8 Sep 1997 10:59:56 -0400 + +pilot-link (0.7.2-2) unstable; urgency=low + + * debian/rules: move getrom to pilot-getrom to avoid conflict with + dosemu getrom. + + -- Mark W. Eichin Mon, 3 Jul 1997 14:42:00 -0400 + +pilot-link (0.7.2-1) unstable; urgency=low + + * Initial Release. + * debian/rules (build): normal Makefile already uses -g -O2 and -Wall, + so don't override the other bits. Pass TCL_INC and TK_INC directly to + make, since configure and {tk,tcl}Config.sh don't set them usefully. + * debian/dirs: specifically include usr/man/man1. + + -- Mark W. Eichin Tue, 1 Jul 1997 01:38:08 -0400 --- pilot-link-0.12.2.orig/debian/python-pisock.install +++ pilot-link-0.12.2/debian/python-pisock.install @@ -0,0 +1 @@ +usr/lib/python* --- pilot-link-0.12.2.orig/debian/libpda-pilot-perl.examples +++ pilot-link-0.12.2/debian/libpda-pilot-perl.examples @@ -0,0 +1 @@ +bindings/Perl/test.pl --- pilot-link-0.12.2.orig/debian/control +++ pilot-link-0.12.2/debian/control @@ -0,0 +1,103 @@ +Source: pilot-link +Section: otherosfs +Build-Depends: debhelper (>= 5.0.37.2), perl (>= 5.6), libpng-dev, libreadline5-dev | libreadline-dev, dpatch, python-all-dev (>= 2.3), python-all-dbg (>= 2.5-0ubuntu5), python-support (>= 0.3), libusb-dev, libbluetooth2-dev +Priority: optional +Maintainer: Ubuntu Core developers +XSBC-Original-Maintainer: Ludovic Rousseau +Standards-Version: 3.7.2 +XS-Python-Version: >= 2.3 + +Package: pilot-link +Architecture: any +Depends: ${shlibs:Depends} +Conflicts: pilot-link-perl +Suggests: libpda-pilot-perl, libmd5-perl +Description: tools to communicate with a PalmOS PDA + The package contains many command line programs to manipulate databases + stored on a PalmOS PDA. For example pilot-xfer can be used to backup, + sync, and restore databases. + . + Homepage: http://www.pilot-link.org/ + +Package: libpda-pilot-perl +Architecture: any +Section: perl +Priority: extra +Depends: ${shlibs:Depends}, ${perl:Depends}, libdigest-md5-perl, data-dumper +Replaces: pilot-link (<< 0.9.3-1), pilot-link-perl +Conflicts: pilot-link-perl +Description: Perl module to communicate with a PalmOS PDA + This package provides the PDA::Pilot module, which provides Perl programs + with means of communicating directly with a PalmOS device. + . + Homepage: http://www.pilot-link.org/ + +Package: python-pisock +Architecture: any +Section: python +Priority: extra +Depends: ${shlibs:Depends}, ${python:Depends} +Replaces: pilot-link (<< 0.9.3-1), pilot-link-python +Suggests: python-pisock-dbg +XB-Python-Version: ${python:Versions} +Conflicts: pilot-link-python +Description: Python module to communicate with PalmOS PDA + This package provides the pisock module, which provides Python programs + with means of communicating directly with a PalmOS device. + . + Homepage: http://www.pilot-link.org/ + +Package: python-pisock-dbg +Architecture: any +Section: python +Priority: extra +Depends: python-pisock (= ${Source-Version}), python-dbg, ${shlibs:Depends} +Description: Python module to communicate with PalmOS PDA (debug extension) + This package provides the pisock module built for the python debug + interpreter, which provides Python programs with means of communicating + directly with a PalmOS device. + +Package: libpisock9 +Architecture: any +Section: libs +Depends: ${shlibs:Depends} +Suggests: jpilot, pilot-link, malsync, kpilot, gnome-pilot, evolution, sylpheed-claws, sylpheed-claws-gtk2, sylpheed +Description: library for communicating with a PalmOS PDA + libpisock9 is a library used by pilot-link programs and any other + packages that want to communicate with a PalmOS device. + . + See packages jpilot, pilot-link, malsync, kpilot, gnome-pilot, + evolution if you are looking to user programs for your PDA. + . + Homepage: http://www.pilot-link.org/ + +Package: libpisync0 +Architecture: any +Section: libs +Depends: ${shlibs:Depends} +Suggests: gnome-pilot, evolution +Description: synchronization library for PalmOS devices + libpisync is a library for applications to synchronize data with PalmOS + devices. + . + See packages gnome-pilot and evolution if you are looking to user + programs for your PDA. + . + Homepage: http://www.pilot-link.org/ + +Package: libpisock-dev +Architecture: any +Section: libdevel +Priority: extra +Depends: libpisock9 (= ${Source-Version}), libpisync0 (= ${Source-Version}), libncurses-dev|libncurses5-dev, libusb-dev +Conflicts: libpisock3 (<= 0.9.5-pre5-1.1), pilot-link (<= 0.11.3-4) +Replaces: pilot-link (<= 0.11.3-4) +Description: development files for communicating with a PalmOS PDA + libpisock-dev contains static libraries, header files and dynamic + libraries for compiling applications that communicate with a PalmOS + device. + . + You will need this package if you want to compile a C or C++ using + libpisock9 or libpisync0. + . + Homepage: http://www.pilot-link.org/ --- pilot-link-0.12.2.orig/debian/libpisync0.install +++ pilot-link-0.12.2/debian/libpisync0.install @@ -0,0 +1 @@ +usr/lib/libpisync.so.0* --- pilot-link-0.12.2.orig/debian/compat +++ pilot-link-0.12.2/debian/compat @@ -0,0 +1 @@ +5 --- pilot-link-0.12.2.orig/debian/pilot-link-tcl.install +++ pilot-link-0.12.2/debian/pilot-link-tcl.install @@ -0,0 +1,4 @@ +usr/lib/libpitcl* +usr/lib/pitcl* +usr/bin/pitcl* +usr/bin/piwish* --- pilot-link-0.12.2.orig/debian/copyright +++ pilot-link-0.12.2/debian/copyright @@ -0,0 +1,15 @@ +This package was first debianized by Mark W. Eichin eichin@kitten.gen.ma.us on +Tue, 1 Jul 1997 01:38:08 -0400. + +It was downloaded from: http://www.pilot-link.org/ +Upstream Author: The pilot-link Team + and in particular David A. Desrosiers + +Copyright: + +The libraries in pilot-link are covered by the GNU LGPL (see +/usr/share/common-licenses/LGPL-2) + +The rest of pilot-link is covered by the GNU GPL (see +/usr/share/common-licenses/GPL) + --- pilot-link-0.12.2.orig/debian/pilot-link.NEWS +++ pilot-link-0.12.2/debian/pilot-link.NEWS @@ -0,0 +1,21 @@ +pilot-link (0.12.0-1) experimental; urgency=low + + * To avoid namespace pollution a lot of commands from pilot-link have been + renamed from foo to pilot-foo. So if you used a pilot-link command in a + script you will have to update the script. + + The old name/new name list is: + debugsh -> pilot-debugsh + dlpsh -> pilot-dlpsh + hinotes -> pilot-hinotes + memos -> pilot-memos + pi-csd -> pilot-csd + pi-getram -> pilot-getram + pi-getrom -> pilot-getrom + pi-getromtoken -> pilot-getromtoken + pi-nredir -> pilot-nredir + reminders -> pilot-reminders + + Also note that the pilot-undelete has been removed. + + -- Ludovic Rousseau Fri, 1 Sep 2006 16:55:43 +0200 --- pilot-link-0.12.2.orig/debian/README.debian +++ pilot-link-0.12.2/debian/README.debian @@ -0,0 +1,47 @@ +pilot-link for DEBIAN +--------------------- + +This is the pilot-link tools for Unix and consists of several packages: +libpisock9 (the run-time library), libpisock-dev (for developers), +pilot-link (the main package), libpda-pilot-perl and python-pisock (Perl +and Python interfaces, respectively, to libpisock), libpisync0 +(framework to synchronize), libpisock++0 (C++ interface). + +Notes: + +ical +==== + +The command read-ical(1) provided by the pilot-link package uses an ical +command line but this command line is not provided by any Debian +package. I still provide read-ical even if it may not be very useful if +you only use Debian packages. + + +environment variable: +===================== + +The environment variable PILOTPORT is used to indicate the port (serial, +USB, etc.) the PDA is connected to. + +In order to sync with the PDA, the user will need to have read-write +permission to the port indicated by $PILOTPORT or --port used by +the libpisock library. + + +/dev/pilot +========== + +/dev/pilot is no more used by pilot-link. You shall indicate the port to +use either with --port or by the environment variable $PILOTPORT. + + +getrom*.prc +=========== + +The two PalmOS programs getrom.prc and getrom2.prc which are used in +conjunction with pi-getrom are in /usr/share/pilot-link/prc/. + + +Ben Darnell , Thu, 7 Oct 1999 +Updated Ludovic Rousseau , Fri 26 Jun 2003 --- pilot-link-0.12.2.orig/debian/watch +++ pilot-link-0.12.2/debian/watch @@ -0,0 +1,5 @@ +# use uscan(1) +version=2 + +# Full-site-with-pattern [Version [Action]] +http://downloads.pilot-link.org/pilot-link-(\d*\.\d*\.\d*)\.tar\.bz2 debian uupdate --- pilot-link-0.12.2.orig/debian/libpisock-dev.install +++ pilot-link-0.12.2/debian/libpisock-dev.install @@ -0,0 +1,9 @@ +usr/include/* +usr/lib/libpisock.a +usr/lib/libpisock.la +usr/lib/libpisock.so +usr/lib/libpisync.a +usr/lib/libpisync.la +usr/lib/libpisync.so +usr/lib/pkgconfig/pilot-link.pc +usr/share/aclocal/pilot-link.m4 --- pilot-link-0.12.2.orig/debian/pilot-link.install +++ pilot-link-0.12.2/debian/pilot-link.install @@ -0,0 +1,7 @@ +usr/bin/* +usr/share/pilot-link/prc/getrom2.prc +usr/share/pilot-link/prc/getrom.prc +usr/share/pilot-link/pix/* +usr/share/pilot-link/udev/60-libpisock.rules +usr/share/man/man1/* +usr/share/man/man7/pilot-link.7 --- pilot-link-0.12.2.orig/debian/pilot-link.docs +++ pilot-link-0.12.2/debian/pilot-link.docs @@ -0,0 +1,7 @@ +changelog +doc/README.usb +doc/README.libusb +doc/README.debugging +doc/TODO +NEWS +README --- pilot-link-0.12.2.orig/debian/python-pisock.docs +++ pilot-link-0.12.2/debian/python-pisock.docs @@ -0,0 +1,2 @@ +bindings/Python/README +bindings/Python/TODO --- pilot-link-0.12.2.orig/debian/pycompat +++ pilot-link-0.12.2/debian/pycompat @@ -0,0 +1 @@ +2 --- pilot-link-0.12.2.orig/debian/patches/19_pilot-link.m4.in.dpatch +++ pilot-link-0.12.2/debian/patches/19_pilot-link.m4.in.dpatch @@ -0,0 +1,16 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 19_pilot-link.m4.in.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad pilot-link-0.12.2~/pilot-link.m4.in pilot-link-0.12.2/pilot-link.m4.in +--- pilot-link-0.12.2~/pilot-link.m4.in 2007-02-16 15:02:16.000000000 +0100 ++++ pilot-link-0.12.2/pilot-link.m4.in 2007-02-18 17:55:34.000000000 +0100 +@@ -1,5 +1,3 @@ +-AC_DEFUN([IT_PROG_INTLTOOL], [AC_PREREQ([2.50])dnl +- + AC_DEFUN([AC_PILOT_LINK_HOOK], + [ + PILOT_LINK_VERS=@PILOT_LINK_VERS@ --- pilot-link-0.12.2.orig/debian/patches/00list +++ pilot-link-0.12.2/debian/patches/00list @@ -0,0 +1 @@ +19_pilot-link.m4.in.dpatch --- pilot-link-0.12.2.orig/debian/pilot-link.manpages +++ pilot-link-0.12.2/debian/pilot-link.manpages @@ -0,0 +1,3 @@ +debian/man/pilot-undelete.1 +debian/man/pilot-sync-plan.1 +debian/man/pilot-ietf2datebook.1