debian/0000775000000000000000000000000012257627174007205 5ustar debian/rules0000775000000000000000000001304612257627103010261 0ustar #!/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 synclibpkg = libpisync1 devpkg = libpisock-dev runpkg = pilot-link perlpkg = libpda-pilot-perl pythonpkg = python-pisock CFLAGS = -Wall -g -pthread ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) # parallel compilation is NOT supported and will fail MAKEFLAGS += -j$(NUMJOBS) endif #ifeq (hppa,$(DEB_BUILD_ARCH)) # CFLAGS += -ffunction-sections #endif PYVERS=$(shell pyversions -r) build: build-arch build-indep build-arch: build-stamp build-python-stamp build-indep: build-stamp build-stamp: dh_testdir # Add here commands to compile the package. dh_autoreconf ./configure --prefix=/usr \ --enable-conduits --enable-libusb \ --with-perl --with-python --with-libpng \ --with-libiconv \ CFLAGS="$(CFLAGS)" # force installation of dump.pl & Pilot.pm (#413502) touch bindings/Perl/dump.pl $(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-python-stamp clean: 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_autotools-dev_restoreconfig dh_autoreconf_clean dh_clean pre-binary: build pre-binary-stamp pre-binary-stamp: dh_clean dh_installdirs $(MAKE) install DESTDIR=`pwd`/debian/tmp -find -name site-packages | xargs rm -rf $(MAKE) -C doc/man install DESTDIR=`pwd`/debian/tmp set -e; \ cd bindings/Python; \ for python in $(PYVERS); do \ $$python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb; \ $$python-dbg setup.py install --root=$(CURDIR)/debian/python-pisock-dbg --install-layout=deb; \ done # mini patches cp ChangeLog changelog chmod +x debian/tmp/usr/lib/perl5/PDA/dump.pl # install the udev rule file to get the correct file group and permissions mv debian/tmp/usr/share/pilot-link/udev/60-libpisock.rules debian/libpisock9.udev # remove .py files to avoid conflicts with python-pisock package rm debian/python-pisock-dbg/usr/lib/python*/*-packages/*.py # remove egg file too (LP: #202773) rm debian/python-pisock-dbg/usr/lib/python*/*-packages/python_libpisock-*.egg-info dh_install --list-missing --sourcedir=debian/tmp sed -i "/dependency_libs/ s/'.*'/''/" `find debian/ -name '*.la'` 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) $(devpkg) $(perlpkg) $(runpkg) $(synclibpkg) $(pythonpkg) $(pythonpkg)-dbg $(libpkg): build pre-binary echo $@ dh_testroot dh_installdirs -p $@ dh_installdocs -p $@ dh_installudev -p $@ dh_installmodules -p $@ dh_installchangelogs -p $@ dh_strip -p $@ --dbg-package=$(pythonpkg)-dbg dh_strip -p $@ dh_compress -p $@ dh_fixperms -p $@ dh_makeshlibs -p $@ dh_installmodules -p $@ dh_installdeb -p $@ dh_shlibdeps -p $@ dh_gencontrol -p $@ dh_md5sums -p $@ dh_builddeb -p $@ $(synclibpkg): build pre-binary $(libpkg) 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 $@ dh_gencontrol -p $@ dh_md5sums -p $@ dh_builddeb -p $@ $(devpkg): build pre-binary $(libpkg) 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 $@ dh_gencontrol -p $@ dh_md5sums -p $@ dh_builddeb -p $@ $(runpkg): build pre-binary $(libpkg) 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 $@ dh_gencontrol -p $@ dh_md5sums -p $@ dh_builddeb -p $@ $(perlpkg): build pre-binary $(libpkg) 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 $@ dh_gencontrol -p $@ -- -Tdebian/libpda-pilot-perl.substvars.debhelper -Tdebian/libpda-pilot-perl.substvars dh_md5sums -p $@ dh_builddeb -p $@ $(pythonpkg): build pre-binary $(libpkg) echo $@ dh_installdirs -p $@ dh_installchangelogs -p $@ dh_installdocs -p $@ dh_strip -p $@ dh_compress -p $@ dh_fixperms -p $@ dh_makeshlibs -p $@ dh_python2 -p$@ dh_installdeb -p $@ dh_shlibdeps -p $@ 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_makeshlibs -p $@ dh_python2 -p$@ dh_installdeb -p $@ dh_shlibdeps -p $@ dh_gencontrol -p $@ dh_md5sums -p $@ dh_builddeb -p $@ binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary \ $(libpkg) $(devpkg) $(runpkg) $(perlpkg) $(pythonpkg) pre-binary debian/libpda-pilot-perl.install0000664000000000000000000000001611154476550014105 0ustar usr/lib/perl5 debian/watch0000664000000000000000000000023411154476550010230 0ustar # 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 debian/copyright0000664000000000000000000000100111154476550011123 0ustar 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 Holder: David A. Desrosiers, 2000 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-2) debian/README.source0000664000000000000000000000004711245224763011356 0ustar see /usr/share/doc/quilt/README.source debian/pilot-link.manpages0000664000000000000000000000335011740330670012771 0ustar debian/man/pilot-ietf2datebook.1 debian/man/pilot-sync-plan.1 debian/man/pilot-undelete.1 debian/tmp/usr/share/man/man1/pilot-addresses.1 debian/tmp/usr/share/man/man1/pilot-clip.1 debian/tmp/usr/share/man/man1/pilot-csd.1 debian/tmp/usr/share/man/man1/pilot-debugsh.1 debian/tmp/usr/share/man/man1/pilot-dedupe.1 debian/tmp/usr/share/man/man1/pilot-dlpsh.1 debian/tmp/usr/share/man/man1/pilot-file.1 debian/tmp/usr/share/man/man1/pilot-foto.1 debian/tmp/usr/share/man/man1/pilot-foto-treo600.1 debian/tmp/usr/share/man/man1/pilot-foto-treo650.1 debian/tmp/usr/share/man/man1/pilot-getram.1 debian/tmp/usr/share/man/man1/pilot-getrom.1 debian/tmp/usr/share/man/man1/pilot-getromtoken.1 debian/tmp/usr/share/man/man1/pilot-hinotes.1 debian/tmp/usr/share/man/man1/pilot-install-datebook.1 debian/tmp/usr/share/man/man1/pilot-install-expenses.1 debian/tmp/usr/share/man/man1/pilot-install-hinote.1 debian/tmp/usr/share/man/man1/pilot-install-memo.1 debian/tmp/usr/share/man/man1/pilot-install-netsync.1 debian/tmp/usr/share/man/man1/pilot-install-todo.1 debian/tmp/usr/share/man/man1/pilot-install-todos.1 debian/tmp/usr/share/man/man1/pilot-install-user.1 debian/tmp/usr/share/man/man1/pilot-memos.1 debian/tmp/usr/share/man/man1/pilot-nredir.1 debian/tmp/usr/share/man/man1/pilot-read-expenses.1 debian/tmp/usr/share/man/man1/pilot-read-notepad.1 debian/tmp/usr/share/man/man1/pilot-read-palmpix.1 debian/tmp/usr/share/man/man1/pilot-read-screenshot.1 debian/tmp/usr/share/man/man1/pilot-read-todos.1 debian/tmp/usr/share/man/man1/pilot-read-veo.1 debian/tmp/usr/share/man/man1/pilot-reminders.1 debian/tmp/usr/share/man/man1/pilot-schlep.1 debian/tmp/usr/share/man/man1/pilot-wav.1 debian/tmp/usr/share/man/man1/pilot-xfer.1 debian/tmp/usr/share/man/man7/pilot-link.7 debian/README.debian0000664000000000000000000000252111740331300011261 0ustar 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: Permissions =========== Users need to be in group dialout to have permissions to read/write on the Palm device. You can use adduser(8) command to add a user to a group. Do: $ sudo adduser loginname dialout 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 pilot-getrom are in /usr/share/pilot-link/prc/. Ben Darnell , Thu, 7 Oct 1999 Updated Ludovic Rousseau , 22 Mar 2007 debian/source/0000775000000000000000000000000012233267541010475 5ustar debian/source/format0000664000000000000000000000001411306747376011714 0ustar 3.0 (quilt) debian/pilot-link.NEWS0000664000000000000000000000123411740331220011741 0ustar 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 -- Ludovic Rousseau Fri, 1 Sep 2006 16:55:43 +0200 debian/libpisock9.docs0000664000000000000000000000012511154476550012120 0ustar changelog doc/README.usb doc/README.libusb doc/README.debugging doc/TODO NEWS README debian/symbols0000664000000000000000000002760311335066350010615 0ustar libpisock.so.9 libpisync #MINVER# ColourCorrect@Base 0.12.5-2 Contact_add_blob@Base 0.12.5-2 Contact_add_picture@Base 0.12.5-2 DatebookAlarmTypeNames@Base 0.12.5-2 DatebookRepeatTypeNames@Base 0.12.5-2 DecodeRow@Base 0.12.5-2 DoRPC@Base 0.12.5-2 ExpenseDistanceNames@Base 0.12.5-2 ExpensePaymentNames@Base 0.12.5-2 ExpenseSortNames@Base 0.12.5-2 ExpenseTypeNames@Base 0.12.5-2 Histogram@Base 0.12.5-2 InvertRPC@Base 0.12.5-2 MD5Final@Base 0.12.5-2 MD5Init@Base 0.12.5-2 MD5Transform@Base 0.12.5-2 MD5Update@Base 0.12.5-2 MailSortTypeNames@Base 0.12.5-2 MailSyncTypeNames@Base 0.12.5-2 PackRPC@Base 0.12.5-2 RPC@Base 0.12.5-2 RPC_Int_Void@Base 0.12.5-2 RPC_Ptr_Void@Base 0.12.5-2 USB_check_device@Base 0.12.5-2 USB_configure_device@Base 0.12.5-2 UninvertRPC@Base 0.12.5-2 byteSwap@Base 0.12.5-2 cmp_abort@Base 0.12.5-2 cmp_dump@Base 0.12.5-2 cmp_init@Base 0.12.5-2 cmp_protocol@Base 0.12.5-2 cmp_rx@Base 0.12.5-2 cmp_rx_handshake@Base 0.12.5-2 cmp_tx@Base 0.12.5-2 cmp_tx_handshake@Base 0.12.5-2 cmp_wakeup@Base 0.12.5-2 compareTm@Base 0.12.5-2 copy_CalendarEvent@Base 0.12.5-2 copy_Location@Base 0.12.5-2 copy_Timezone@Base 0.12.5-2 crc16@Base 0.12.5-2 dlp_AbortSync@Base 0.12.5-2 dlp_AddSyncLogEntry@Base 0.12.5-2 dlp_CallApplication@Base 0.12.5-2 dlp_CleanUpDatabase@Base 0.12.5-2 dlp_CloseDB@Base 0.12.5-2 dlp_CloseDB_All@Base 0.12.5-2 dlp_CreateDB@Base 0.12.5-2 dlp_DeleteCategory@Base 0.12.5-2 dlp_DeleteDB@Base 0.12.5-2 dlp_DeleteRecord@Base 0.12.5-2 dlp_DeleteResource@Base 0.12.5-2 dlp_EndOfSync@Base 0.12.5-2 dlp_ExpCardInfo@Base 0.12.5-2 dlp_ExpCardPresent@Base 0.12.5-2 dlp_ExpSlotEnumerate@Base 0.12.5-2 dlp_ExpSlotMediaType@Base 0.12.5-2 dlp_FindDBByName@Base 0.12.5-2 dlp_FindDBByOpenHandle@Base 0.12.5-2 dlp_FindDBByTypeCreator@Base 0.12.5-2 dlp_FindDBInfo@Base 0.12.5-2 dlp_GetROMToken@Base 0.12.5-2 dlp_GetSysDateTime@Base 0.12.5-2 dlp_MoveCategory@Base 0.12.5-2 dlp_OpenConduit@Base 0.12.5-2 dlp_OpenDB@Base 0.12.5-2 dlp_RPC@Base 0.12.5-2 dlp_ReadAppBlock@Base 0.12.5-2 dlp_ReadAppPreference@Base 0.12.5-2 dlp_ReadDBList@Base 0.12.5-2 dlp_ReadFeature@Base 0.12.5-2 dlp_ReadNetSyncInfo@Base 0.12.5-2 dlp_ReadNextModifiedRec@Base 0.12.5-2 dlp_ReadNextModifiedRecInCategory@Base 0.12.5-2 dlp_ReadNextRecInCategory@Base 0.12.5-2 dlp_ReadOpenDBInfo@Base 0.12.5-2 dlp_ReadRecordById@Base 0.12.5-2 dlp_ReadRecordByIndex@Base 0.12.5-2 dlp_ReadRecordIDList@Base 0.12.5-2 dlp_ReadResourceByIndex@Base 0.12.5-2 dlp_ReadResourceByType@Base 0.12.5-2 dlp_ReadSortBlock@Base 0.12.5-2 dlp_ReadStorageInfo@Base 0.12.5-2 dlp_ReadSysInfo@Base 0.12.5-2 dlp_ReadUserInfo@Base 0.12.5-2 dlp_ResetDBIndex@Base 0.12.5-2 dlp_ResetLastSyncPC@Base 0.12.5-2 dlp_ResetSyncFlags@Base 0.12.5-2 dlp_ResetSystem@Base 0.12.5-2 dlp_SetDBInfo@Base 0.12.5-2 dlp_SetSysDateTime@Base 0.12.5-2 dlp_VFSDirCreate@Base 0.12.5-2 dlp_VFSDirEntryEnumerate@Base 0.12.5-2 dlp_VFSExportDatabaseToFile@Base 0.12.5-2 dlp_VFSFileClose@Base 0.12.5-2 dlp_VFSFileCreate@Base 0.12.5-2 dlp_VFSFileDelete@Base 0.12.5-2 dlp_VFSFileEOF@Base 0.12.5-2 dlp_VFSFileGetAttributes@Base 0.12.5-2 dlp_VFSFileGetDate@Base 0.12.5-2 dlp_VFSFileOpen@Base 0.12.5-2 dlp_VFSFileRead@Base 0.12.5-2 dlp_VFSFileRename@Base 0.12.5-2 dlp_VFSFileResize@Base 0.12.5-2 dlp_VFSFileSeek@Base 0.12.5-2 dlp_VFSFileSetAttributes@Base 0.12.5-2 dlp_VFSFileSetDate@Base 0.12.5-2 dlp_VFSFileSize@Base 0.12.5-2 dlp_VFSFileTell@Base 0.12.5-2 dlp_VFSFileWrite@Base 0.12.5-2 dlp_VFSGetDefaultDir@Base 0.12.5-2 dlp_VFSImportDatabaseFromFile@Base 0.12.5-2 dlp_VFSVolumeEnumerate@Base 0.12.5-2 dlp_VFSVolumeFormat@Base 0.12.5-2 dlp_VFSVolumeGetLabel@Base 0.12.5-2 dlp_VFSVolumeInfo@Base 0.12.5-2 dlp_VFSVolumeSetLabel@Base 0.12.5-2 dlp_VFSVolumeSize@Base 0.12.5-2 dlp_WriteAppBlock@Base 0.12.5-2 dlp_WriteAppPreference@Base 0.12.5-2 dlp_WriteNetSyncInfo@Base 0.12.5-2 dlp_WriteRecord@Base 0.12.5-2 dlp_WriteResource@Base 0.12.5-2 dlp_WriteSortBlock@Base 0.12.5-2 dlp_WriteUserInfo@Base 0.12.5-2 dlp_arg_free@Base 0.12.5-2 dlp_arg_len@Base 0.12.5-2 dlp_arg_new@Base 0.12.5-2 dlp_errorlist@Base 0.12.5-2 dlp_exec@Base 0.12.5-2 dlp_htopdate@Base 0.12.5-2 dlp_ptohdate@Base 0.12.5-2 dlp_request_free@Base 0.12.5-2 dlp_request_new@Base 0.12.5-2 dlp_request_new_with_argid@Base 0.12.5-2 dlp_request_write@Base 0.12.5-2 dlp_response_free@Base 0.12.5-2 dlp_response_new@Base 0.12.5-2 dlp_response_read@Base 0.12.5-2 dlp_set_protocol_version@Base 0.12.5-2 dlp_strerror@Base 0.12.5-2 dumpdata@Base 0.12.5-2 dumpline@Base 0.12.5-2 dup_Blob@Base 0.12.5-2 dup_Timezone@Base 0.12.5-2 exp_errorlist@Base 0.12.5-2 find_pi_socket@Base 0.12.5-2 free_Address@Base 0.12.5-2 free_Appointment@Base 0.12.5-2 free_Blob@Base 0.12.5-2 free_CalendarEvent@Base 0.12.5-2 free_Contact@Base 0.12.5-2 free_ContactAppInfo@Base 0.12.5-2 free_Expense@Base 0.12.5-2 free_HiNoteNote@Base 0.12.5-2 free_Location@Base 0.12.5-2 free_Mail@Base 0.12.5-2 free_MailAppInfo@Base 0.12.5-2 free_MailSignaturePref@Base 0.12.5-2 free_MailSyncPref@Base 0.12.5-2 free_Memo@Base 0.12.5-2 free_NotePad@Base 0.12.5-2 free_PalmPix_data@Base 0.12.5-2 free_Timezone@Base 0.12.5-2 free_ToDo@Base 0.12.5-2 free_Veo@Base 0.12.5-2 free_VersaMail@Base 0.12.5-2 get_float@Base 0.12.5-2 get_pilot_rate@Base 0.12.5-2 huffTable@Base 0.12.5-2 huffWidth@Base 0.12.5-2 known_devices@Base 0.12.5-2 makelong@Base 0.12.5-2 net_dump@Base 0.12.5-2 net_dump_header@Base 0.12.5-2 net_protocol@Base 0.12.5-2 net_rx@Base 0.12.5-2 net_rx_handshake@Base 0.12.5-2 net_tx@Base 0.12.5-2 net_tx_handshake@Base 0.12.5-2 new_CalendarEvent@Base 0.12.5-2 new_Location@Base 0.12.5-2 new_Timezone@Base 0.12.5-2 pack_Address@Base 0.12.5-2 pack_AddressAppInfo@Base 0.12.5-2 pack_Appointment@Base 0.12.5-2 pack_AppointmentAppInfo@Base 0.12.5-2 pack_Blob@Base 0.12.5-2 pack_CalendarAppInfo@Base 0.12.5-2 pack_CalendarEvent@Base 0.12.5-2 pack_CategoryAppInfo@Base 0.12.5-2 pack_Contact@Base 0.12.5-2 pack_ContactAppInfo@Base 0.12.5-2 pack_DST@Base 0.12.5-2 pack_Expense@Base 0.12.5-2 pack_ExpenseAppInfo@Base 0.12.5-2 pack_ExpensePref@Base 0.12.5-2 pack_HiNoteAppInfo@Base 0.12.5-2 pack_HiNoteNote@Base 0.12.5-2 pack_Location@Base 0.12.5-2 pack_Mail@Base 0.12.5-2 pack_MailAppInfo@Base 0.12.5-2 pack_MailSignaturePref@Base 0.12.5-2 pack_MailSyncPref@Base 0.12.5-2 pack_Memo@Base 0.12.5-2 pack_MemoAppInfo@Base 0.12.5-2 pack_MoneyAppInfo@Base 0.12.5-2 pack_NotePad@Base 0.12.5-2 pack_NotePadAppInfo@Base 0.12.5-2 pack_Timezone@Base 0.12.5-2 pack_ToDo@Base 0.12.5-2 pack_ToDoAppInfo@Base 0.12.5-2 pack_Transaction@Base 0.12.5-2 pack_Veo@Base 0.12.5-2 pack_VeoAppInfo@Base 0.12.5-2 pack_VersaMail@Base 0.12.5-2 padp_dump@Base 0.12.5-2 padp_dump_header@Base 0.12.5-2 padp_protocol@Base 0.12.5-2 padp_rx@Base 0.12.5-2 padp_tx@Base 0.12.5-2 palm_strftime@Base 0.12.5-2 pi_accept@Base 0.12.5-2 pi_accept_to@Base 0.12.5-2 pi_bind@Base 0.12.5-2 pi_bluetooth_device@Base 0.12.5-2 pi_buffer_append@Base 0.12.5-2 pi_buffer_append_buffer@Base 0.12.5-2 pi_buffer_clear@Base 0.12.5-2 pi_buffer_expect@Base 0.12.5-2 pi_buffer_free@Base 0.12.5-2 pi_buffer_new@Base 0.12.5-2 pi_close@Base 0.12.5-2 pi_connect@Base 0.12.5-2 pi_debug_get_level@Base 0.12.5-2 pi_debug_get_types@Base 0.12.5-2 pi_debug_set_file@Base 0.12.5-2 pi_debug_set_level@Base 0.12.5-2 pi_debug_set_types@Base 0.12.5-2 pi_dumpdata@Base 0.12.5-2 pi_dumpline@Base 0.12.5-2 pi_error@Base 0.12.5-2 pi_file_append_record@Base 0.12.5-2 pi_file_append_resource@Base 0.12.5-2 pi_file_close@Base 0.12.5-2 pi_file_create@Base 0.12.5-2 pi_file_get_app_info@Base 0.12.5-2 pi_file_get_entries@Base 0.12.5-2 pi_file_get_info@Base 0.12.5-2 pi_file_get_sort_info@Base 0.12.5-2 pi_file_id_used@Base 0.12.5-2 pi_file_install@Base 0.12.5-2 pi_file_merge@Base 0.12.5-2 pi_file_open@Base 0.12.5-2 pi_file_read_record@Base 0.12.5-2 pi_file_read_record_by_id@Base 0.12.5-2 pi_file_read_resource@Base 0.12.5-2 pi_file_read_resource_by_type_id@Base 0.12.5-2 pi_file_retrieve@Base 0.12.5-2 pi_file_set_app_info@Base 0.12.5-2 pi_file_set_info@Base 0.12.5-2 pi_file_set_sort_info@Base 0.12.5-2 pi_file_type_id_used@Base 0.12.5-2 pi_flush@Base 0.12.5-2 pi_getsockname@Base 0.12.5-2 pi_getsockopt@Base 0.12.5-2 pi_getsockpeer@Base 0.12.5-2 pi_inet_device@Base 0.12.5-2 pi_listen@Base 0.12.5-2 pi_log@Base 0.12.5-2 pi_maxrecsize@Base 0.12.5-2 pi_mutex_lock@Base 0.12.5-2 pi_mutex_trylock@Base 0.12.5-2 pi_mutex_unlock@Base 0.12.5-2 pi_palmos_error@Base 0.12.5-2 pi_protocol@Base 0.12.5-2 pi_protocol_next@Base 0.12.5-2 pi_read@Base 0.12.5-2 pi_recv@Base 0.12.5-2 pi_reset_errors@Base 0.12.5-2 pi_send@Base 0.12.5-2 pi_serial_device@Base 0.12.5-2 pi_serial_impl_init@Base 0.12.5-2 pi_set_error@Base 0.12.5-2 pi_set_palmos_error@Base 0.12.5-2 pi_setsockopt@Base 0.12.5-2 pi_sock_installedexit@Base 0.12.5-2 pi_socket@Base 0.12.5-2 pi_socket_connected@Base 0.12.5-2 pi_socket_init@Base 0.12.5-2 pi_socket_recognize@Base 0.12.5-2 pi_socket_setsd@Base 0.12.5-2 pi_thread_id@Base 0.12.5-2 pi_tickle@Base 0.12.5-2 pi_timeout_expired@Base 0.12.5-2 pi_timeout_to_timespec@Base 0.12.5-2 pi_timespec_to_timeout@Base 0.12.5-2 pi_usb_device@Base 0.12.5-2 pi_usb_impl_init@Base 0.12.5-2 pi_usb_protocol_dup@Base 0.12.5-2 pi_version@Base 0.12.5-2 pi_watchdog@Base 0.12.5-2 pi_write@Base 0.12.5-2 pilot_connect@Base 0.12.5-2 pilot_time_to_unix_time@Base 0.12.5-2 print_splash@Base 0.12.5-2 printlong@Base 0.12.5-2 set_float@Base 0.12.5-2 slp_dump@Base 0.12.5-2 slp_dump_header@Base 0.12.5-2 slp_protocol@Base 0.12.5-2 slp_rx@Base 0.12.5-2 slp_tx@Base 0.12.5-2 sys_Continue@Base 0.12.5-2 sys_Find@Base 0.12.5-2 sys_GetTrapBreaks@Base 0.12.5-2 sys_QueryState@Base 0.12.5-2 sys_RPC@Base 0.12.5-2 sys_ReadMemory@Base 0.12.5-2 sys_RemoteEvent@Base 0.12.5-2 sys_SetBreakpoints@Base 0.12.5-2 sys_SetTrapBreaks@Base 0.12.5-2 sys_Step@Base 0.12.5-2 sys_ToggleDbgBreaks@Base 0.12.5-2 sys_UnpackRegisters@Base 0.12.5-2 sys_UnpackState@Base 0.12.5-2 sys_WriteMemory@Base 0.12.5-2 sys_dump@Base 0.12.5-2 sys_dump_header@Base 0.12.5-2 sys_protocol@Base 0.12.5-2 sys_rx@Base 0.12.5-2 sys_tx@Base 0.12.5-2 unix_time_to_pilot_time@Base 0.12.5-2 unpack_Address@Base 0.12.5-2 unpack_AddressAppInfo@Base 0.12.5-2 unpack_Appointment@Base 0.12.5-2 unpack_AppointmentAppInfo@Base 0.12.5-2 unpack_Blob_p@Base 0.12.5-2 unpack_CalendarAppInfo@Base 0.12.5-2 unpack_CalendarEvent@Base 0.12.5-2 unpack_CategoryAppInfo@Base 0.12.5-2 unpack_Contact@Base 0.12.5-2 unpack_ContactAppInfo@Base 0.12.5-2 unpack_DST@Base 0.12.5-2 unpack_DST_p@Base 0.12.5-2 unpack_Expense@Base 0.12.5-2 unpack_ExpenseAppInfo@Base 0.12.5-2 unpack_ExpensePref@Base 0.12.5-2 unpack_HiNoteAppInfo@Base 0.12.5-2 unpack_HiNoteNote@Base 0.12.5-2 unpack_Location@Base 0.12.5-2 unpack_Mail@Base 0.12.5-2 unpack_MailAppInfo@Base 0.12.5-2 unpack_MailSignaturePref@Base 0.12.5-2 unpack_MailSyncPref@Base 0.12.5-2 unpack_Memo@Base 0.12.5-2 unpack_MemoAppInfo@Base 0.12.5-2 unpack_MoneyAppInfo@Base 0.12.5-2 unpack_NotePad@Base 0.12.5-2 unpack_NotePadAppInfo@Base 0.12.5-2 unpack_PalmPix@Base 0.12.5-2 unpack_PalmPixHeader@Base 0.12.5-2 unpack_Timezone@Base 0.12.5-2 unpack_Timezone_p@Base 0.12.5-2 unpack_ToDo@Base 0.12.5-2 unpack_ToDoAppInfo@Base 0.12.5-2 unpack_Transaction@Base 0.12.5-2 unpack_Veo@Base 0.12.5-2 unpack_VeoAppInfo@Base 0.12.5-2 unpack_VersaMail@Base 0.12.5-2 unpack_VersaMailAppInfo@Base 0.12.5-2 vfs_errorlist@Base 0.12.5-2 libpisync.so.1 libpisync #MINVER# convert_FromPilotChar@Base 0.12.5-2 convert_FromPilotChar_WithCharset@Base 0.12.5-2 convert_ToPilotChar@Base 0.12.5-2 convert_ToPilotChar_WithCharset@Base 0.12.5-2 sync_CopyDesktopRecord@Base 0.12.5-2 sync_CopyFromPilot@Base 0.12.5-2 sync_CopyPilotRecord@Base 0.12.5-2 sync_CopyToPilot@Base 0.12.5-2 sync_FreeDesktopRecord@Base 0.12.5-2 sync_FreePilotRecord@Base 0.12.5-2 sync_MergeFromPilot@Base 0.12.5-2 sync_MergeToPilot@Base 0.12.5-2 sync_NewDesktopRecord@Base 0.12.5-2 sync_NewPilotRecord@Base 0.12.5-2 sync_Synchronize@Base 0.12.5-2 debian/libpisock-dev.install0000664000000000000000000000031211154476550013317 0ustar 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 debian/libpisock9.install0000664000000000000000000000003011154734701012624 0ustar usr/lib/libpisock.so.9* debian/libpda-pilot-perl.examples0000664000000000000000000000002611154476550014256 0ustar bindings/Perl/test.pl debian/libpisync1.install0000664000000000000000000000003011154476550012636 0ustar usr/lib/libpisync.so.1* debian/patches/0000775000000000000000000000000012233267541010624 5ustar debian/patches/33-new-png-lib0000664000000000000000000000462211617273042013113 0ustar Description: Fix compilation issue with a newer libpng-dev From: Andrei V. Lavreniyuk Origin: http://www.freebsd.org/cgi/query-pr.cgi?pr=145163 Bug-Debian: http://bugs.debian.org/636758 --- a/src/pilot-read-notepad.c +++ b/src/pilot-read-notepad.c @@ -39,10 +39,6 @@ #ifdef HAVE_PNG #include "png.h" -#if (PNG_LIBPNG_VER < 10201) - #define png_voidp_NULL (png_voidp)NULL - #define png_error_ptr_NULL (png_error_ptr)NULL -#endif #endif const char *progname; @@ -166,8 +162,7 @@ width = n->body.width + 8; png_ptr = png_create_write_struct - ( PNG_LIBPNG_VER_STRING, png_voidp_NULL, - png_error_ptr_NULL, png_error_ptr_NULL); + ( PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if(!png_ptr) return; --- a/src/pilot-read-palmpix.c +++ b/src/pilot-read-palmpix.c @@ -42,10 +42,6 @@ #ifdef HAVE_PNG #include "png.h" -#if (PNG_LIBPNG_VER < 10201) - #define png_voidp_NULL (png_voidp)NULL - #define png_error_ptr_NULL (png_error_ptr)NULL -#endif #endif const char *progname; @@ -223,8 +219,7 @@ png_infop info_ptr; png_ptr = png_create_write_struct - ( PNG_LIBPNG_VER_STRING, png_voidp_NULL, - png_error_ptr_NULL, png_error_ptr_NULL); + ( PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if(!png_ptr) return; --- a/src/pilot-read-screenshot.c +++ b/src/pilot-read-screenshot.c @@ -40,10 +40,6 @@ #ifdef HAVE_PNG # include "png.h" -# if (PNG_LIBPNG_VER < 10201) -# define png_voidp_NULL (png_voidp)NULL -# define png_error_ptr_NULL (png_error_ptr)NULL -# endif #endif #define pi_mktag(c1,c2,c3,c4) (((c1)<<24)|((c2)<<16)|((c3)<<8)|(c4)) @@ -87,8 +83,7 @@ gray_buf = malloc( state->w ); png_ptr = png_create_write_struct - (PNG_LIBPNG_VER_STRING, png_voidp_NULL, - png_error_ptr_NULL, png_error_ptr_NULL); + (PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if (!png_ptr) return; --- a/src/pilot-read-veo.c +++ b/src/pilot-read-veo.c @@ -41,10 +41,6 @@ #ifdef HAVE_PNG # include "png.h" -# if (PNG_LIBPNG_VER < 10201) -# define png_voidp_NULL (png_voidp)NULL -# define png_error_ptr_NULL (png_error_ptr)NULL -# endif #endif #define pi_mktag(c1,c2,c3,c4) (((c1)<<24)|((c2)<<16)|((c3)<<8)|(c4)) @@ -856,8 +852,7 @@ png_infop info_ptr; png_ptr = png_create_write_struct - (PNG_LIBPNG_VER_STRING, png_voidp_NULL, - png_error_ptr_NULL, png_error_ptr_NULL); + (PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if (!png_ptr) return; debian/patches/10_clie_sj22.patch0000664000000000000000000000053511333612404013714 0ustar Author: Martin Pitt Bug-Debian: http://bugs.debian.org/505221 Bug-Debian: http://bugs.debian.org/544329 --- a/libpisock/usb.c +++ b/libpisock/usb.c @@ -655,6 +655,7 @@ .vendor = 0x054c, .product = 0x0066, .idstr = "Sony T, SJ series, and other Palm OS 4.0 devices", + .flags = USB_INIT_SONY_CLIE, }, { debian/patches/0001-Don-t-use-PERL_POLLUTE-macros.patch0000664000000000000000000005431211610573572017233 0ustar From ef1794b51e327cc80ec4cd95d6c97f954b912860 Mon Sep 17 00:00:00 2001 From: Niko Tyni Date: Sun, 10 Jul 2011 10:28:51 +0300 Subject: [PATCH] Don't use PERL_POLLUTE macros The sv_yes, sv_no, sv_undef, etc. symbol names are compatibility macros that have been deprecated since Perl 5.6. Perl 5.14.0 removes support for defining PERL_POLLUTE to get these compatibility macros, so replace them all with the current names (PL_sv_yes, PL_sv_no, etc.) and don't define PERL_POLLUTE any more. This should work on all Perls since 5.6; it's been verified with 5.12.4 and 5.14.0. --- bindings/Perl/Makefile.PL.in | 1 - bindings/Perl/Pilot.xs | 158 +++++++++++++++++++++--------------------- bindings/Perl/typemap | 4 +- 3 files changed, 81 insertions(+), 82 deletions(-) diff --git a/bindings/Perl/Makefile.PL.in b/bindings/Perl/Makefile.PL.in index 853e6eb..337cac0 100644 --- a/bindings/Perl/Makefile.PL.in +++ b/bindings/Perl/Makefile.PL.in @@ -39,7 +39,6 @@ WriteMakefile( 'VERSION' => '@PILOT_LINK_VERS@.@PILOT_LINK_MAJOR@.@PILOT_LINK_MINOR@@PILOT_LINK_PATCH@', 'XSPROTOARG' => '-noprototypes', 'INC' => "-I$plincdir", - 'DEFINE' => '-DPERL_POLLUTE', 'PREFIX' => "$prefix", 'INSTALLDIRS'=> 'vendor', 'dynamic_lib'=> {'OTHERLDFLAGS' => $lib}, diff --git a/bindings/Perl/Pilot.xs b/bindings/Perl/Pilot.xs index 5a633ff..366d646 100644 --- a/bindings/Perl/Pilot.xs +++ b/bindings/Perl/Pilot.xs @@ -160,7 +160,7 @@ SvChar4(arg) #define pack_dbinfo(arg, var, failure) { \ if (failure < 0) { \ - arg = &sv_undef; \ + arg = &PL_sv_undef; \ self->errnop = failure; \ } else { \ HV * i = newHV(); \ @@ -214,15 +214,15 @@ SvChar4(arg) var.createDate = (s = hv_fetch(i, "createDate", 10, 0)) ? SvIV(*s) : 0;\ var.modifyDate = (s = hv_fetch(i, "modifyDate", 10, 0)) ? SvIV(*s) : 0;\ var.backupDate = (s = hv_fetch(i, "backupDate", 10, 0)) ? SvIV(*s) : 0;\ - if ((s = hv_fetch(i, "name", 4, 0)) ? SvPV(*s,na) : 0) \ - strncpy(var.name, SvPV(*s, na), sizeof(var.name)); \ + if ((s = hv_fetch(i, "name", 4, 0)) ? SvPV(*s,PL_na) : 0) \ + strncpy(var.name, SvPV(*s, PL_na), sizeof(var.name)); \ } else {\ croak("argument is not a hash reference"); \ } #define pack_userinfo(arg, var, failure) { \ if (failure < 0) { \ - arg = &sv_undef; \ + arg = &PL_sv_undef; \ self->errnop = failure; \ } else { \ HV * i = newHV(); \ @@ -246,8 +246,8 @@ SvChar4(arg) var.lastSyncPC = (s = hv_fetch(i, "lastSyncPC", 10, 0)) ? SvIV(*s) : 0;\ var.lastSyncDate = (s = hv_fetch(i, "lastSyncDate", 12, 0)) ? SvIV(*s) : 0;\ var.successfulSyncDate = (s = hv_fetch(i, "successfulSyncDate", 18, 0)) ? SvIV(*s) : 0;\ - if ((s = hv_fetch(i, "name", 4, 0)) ? SvPV(*s,na) : 0)\ - strncpy(var.username, SvPV(*s, na), sizeof(var.username));\ + if ((s = hv_fetch(i, "name", 4, 0)) ? SvPV(*s,PL_na) : 0)\ + strncpy(var.username, SvPV(*s, PL_na), sizeof(var.username));\ } else {\ croak("argument is not a hash reference");\ } @@ -287,7 +287,7 @@ SvChar4(arg) }\ } else {\ self->errnop = result;\ - PUSHs(&sv_undef);\ + PUSHs(&PL_sv_undef);\ } #define PackSI\ @@ -329,7 +329,7 @@ SvChar4(arg) }\ } else {\ self->errnop = result;\ - PUSHs(&sv_undef);\ + PUSHs(&PL_sv_undef);\ } #define PackRecord {\ @@ -421,7 +421,7 @@ SvChar4(arg) }\ } else {\ self->errnop = result;\ - PUSHs(&sv_undef);\ + PUSHs(&PL_sv_undef);\ } #define PackResource\ @@ -473,7 +473,7 @@ SvChar4(arg) }\ } else {\ self->errnop = result;\ - PUSHs(&sv_undef);\ + PUSHs(&PL_sv_undef);\ } #define PackPref\ @@ -536,7 +536,7 @@ SvChar4(arg) croak("Unable to create resource");\ } else {\ self->errnop = result;\ - PUSHs(&sv_undef);\ + PUSHs(&PL_sv_undef);\ } void doUnpackCategory(HV * self, struct CategoryAppInfo * c) @@ -576,7 +576,7 @@ void doPackCategory(HV * self, struct CategoryAppInfo * c) if ((s = hv_fetch(self, "categoryName", 12, 0)) && SvOK(*s) && SvRV(*s) && (SvTYPE(av=(AV*)SvRV(*s))==SVt_PVAV)) for (i=0;i<16;i++) - strncpy(c->name[i], (s=av_fetch(av, i, 0)) ? SvPV(*s,na) : "", 16); + strncpy(c->name[i], (s=av_fetch(av, i, 0)) ? SvPV(*s,PL_na) : "", 16); else for (i=0;i<16;i++) strcpy(c->name[i], ""); @@ -602,7 +602,7 @@ void doPackCategory(HV * self, struct CategoryAppInfo * c) int SvList(SV * arg, char **list) { int i; - char * str = SvPV(arg, na); + char * str = SvPV(arg, PL_na); for (i=0;list[i];i++) if (strcasecmp(list[i], str)==0) return i; @@ -781,11 +781,11 @@ Pack(record) croak("Invalid advance unit %d encountered", u); } } else { - if (strEQ(SvPV(*s, na), "minutes")) + if (strEQ(SvPV(*s, PL_na), "minutes")) u = 0; - else if (strEQ(SvPV(*s, na), "hours")) + else if (strEQ(SvPV(*s, PL_na), "hours")) u = 1; - else if (strEQ(SvPV(*s, na), "days")) + else if (strEQ(SvPV(*s, PL_na), "days")) u = 2; else croak("Invalid advance unit %d encountered", u); @@ -850,10 +850,10 @@ Pack(record) } } - a.description = (s = hv_fetch(h, "description", 11, 0)) ? SvPV(*s,na) : 0; + a.description = (s = hv_fetch(h, "description", 11, 0)) ? SvPV(*s,PL_na) : 0; if (!a.description) croak("appointments must contain a description"); - a.note = (s = hv_fetch(h, "note", 4, 0)) ? SvPV(*s,na) : 0; + a.note = (s = hv_fetch(h, "note", 4, 0)) ? SvPV(*s,PL_na) : 0; if (pack_Appointment(&a, &pibuf, datebook_v1) < 0) { croak("pack_Appointment failed"); @@ -897,7 +897,7 @@ UnpackAppBlock(record) } SvPV(record,len); - if (unpack_AppointmentAppInfo(&a, (CPTR)SvPV(record, na), len)>0) { + if (unpack_AppointmentAppInfo(&a, (CPTR)SvPV(record, PL_na), len)>0) { doUnpackCategory(ret, &a.category); @@ -1023,8 +1023,8 @@ Pack(record) a.indefinite = 1; } - a.description = (s = hv_fetch(h, "description", 11, 0)) ? SvPV(*s,na) : 0; - a.note = (s = hv_fetch(h, "note", 4, 0)) ? SvPV(*s,na) : 0; + a.description = (s = hv_fetch(h, "description", 11, 0)) ? SvPV(*s,PL_na) : 0; + a.note = (s = hv_fetch(h, "note", 4, 0)) ? SvPV(*s,PL_na) : 0; if (pack_ToDo(&a, &pibuf, todo_v1) < 0) { croak("pack_ToDo failed"); @@ -1065,7 +1065,7 @@ UnpackAppBlock(record) } SvPV(record,len); - if (unpack_ToDoAppInfo(&a, (CPTR)SvPV(record, na), len)>0) { + if (unpack_ToDoAppInfo(&a, (CPTR)SvPV(record, PL_na), len)>0) { doUnpackCategory(ret, &a.category); @@ -1160,7 +1160,7 @@ Unpack(record) hv_store(ret, "entry", 5, newRV_noinc((SV*)e), 0); for (i=0;i<19;i++) { - av_push(e, a.entry[i] ? newSVpv(a.entry[i],0) : &sv_undef); + av_push(e, a.entry[i] ? newSVpv(a.entry[i],0) : &PL_sv_undef); } hv_store(ret, "showPhone", 9, newSViv(a.showPhone), 0); @@ -1200,7 +1200,7 @@ Pack(record) if ((s = hv_fetch(h, "entry", 5, 0)) && SvOK(*s) && SvRV(*s) && (SvTYPE(av=(AV*)SvRV(*s))==SVt_PVAV)) for (i=0;i<19;i++) - a.entry[i] = ((s=av_fetch(av, i, 0)) && SvOK(*s)) ? SvPV(*s,na) : 0; + a.entry[i] = ((s=av_fetch(av, i, 0)) && SvOK(*s)) ? SvPV(*s,PL_na) : 0; else for (i=0;i<19;i++) a.entry[i] = 0; @@ -1249,7 +1249,7 @@ UnpackAppBlock(record) } SvPV(record,len); - if (unpack_AddressAppInfo(&a, (CPTR)SvPV(record, na), len)>0) { + if (unpack_AddressAppInfo(&a, (CPTR)SvPV(record, PL_na), len)>0) { doUnpackCategory(ret, &a.category); @@ -1309,13 +1309,13 @@ PackAppBlock(record) a.sortByCompany = (s = hv_fetch(h, "sortByCompany", 13, 0)) ? SvIV(*s) : 0; if ((s = hv_fetch(h, "label", 5, 0)) && SvOK(*s) && SvRV(*s) && (SvTYPE(av=(AV*)SvRV(*s))==SVt_PVAV)) - for (i=0;i<22;i++) strncpy(a.labels[i], (s=av_fetch(av, i, 0)) ? SvPV(*s,na) : "", 16); + for (i=0;i<22;i++) strncpy(a.labels[i], (s=av_fetch(av, i, 0)) ? SvPV(*s,PL_na) : "", 16); else for (i=0;i<22;i++) a.labels[i][0] = 0; for (i=0;i<22;i++) a.labels[i][15] = 0; if ((s = hv_fetch(h, "phoneLabel", 10, 0)) && SvOK(*s) && SvRV(*s) && (SvTYPE(av=(AV*)SvRV(*s))==SVt_PVAV)) - for (i=0;i<8;i++) strncpy(a.phoneLabels[i], (s=av_fetch(av, i, 0)) ? SvPV(*s,na) : "", 16); + for (i=0;i<8;i++) strncpy(a.phoneLabels[i], (s=av_fetch(av, i, 0)) ? SvPV(*s,PL_na) : "", 16); else for (i=0;i<8;i++) a.phoneLabels[i][0] = 0; for (i=0;i<8;i++) a.phoneLabels[i][15] = 0; @@ -1396,7 +1396,7 @@ Pack(record) else { if ((s = hv_fetch(h, "text", 4, 0))) - a.text = SvPV(*s,na); + a.text = SvPV(*s,PL_na); else a.text = 0; @@ -1438,7 +1438,7 @@ UnpackAppBlock(record) } SvPV(record,len); - if (unpack_MemoAppInfo(&a, (CPTR)SvPV(record, na), len)>0) { + if (unpack_MemoAppInfo(&a, (CPTR)SvPV(record, PL_na), len)>0) { doUnpackCategory(ret, &a.category); @@ -1510,7 +1510,7 @@ Unpack(record) SvPV(record,len); if (len > 0) { /* len == 0 if deleted flag is set */ - if (unpack_Expense(&e, (CPTR)SvPV(record, na), len)>0) { + if (unpack_Expense(&e, (CPTR)SvPV(record, PL_na), len)>0) { hv_store(ret, "date", 4, newRV_noinc((SV*)tmtoav(&e.date)), 0); hv_store(ret, "type", 4, newSVlist(e.type,ExpenseTypeNames),0); @@ -1570,15 +1570,15 @@ Pack(record) avtotm((AV*)SvRV(*s), &e.date); else croak("expense record must contain date"); - if ((s = hv_fetch(h, "amount", 6, 0))) e.amount = SvPV(*s,na); + if ((s = hv_fetch(h, "amount", 6, 0))) e.amount = SvPV(*s,PL_na); else e.amount = 0; - if ((s = hv_fetch(h, "vendor", 6, 0))) e.vendor = SvPV(*s,na); + if ((s = hv_fetch(h, "vendor", 6, 0))) e.vendor = SvPV(*s,PL_na); else e.vendor = 0; - if ((s = hv_fetch(h, "city", 4, 0))) e.city = SvPV(*s,na); + if ((s = hv_fetch(h, "city", 4, 0))) e.city = SvPV(*s,PL_na); else e.city = 0; - if ((s = hv_fetch(h, "attendess", 9, 0))) e.attendees = SvPV(*s,na); + if ((s = hv_fetch(h, "attendess", 9, 0))) e.attendees = SvPV(*s,PL_na); else e.attendees = 0; - if ((s = hv_fetch(h, "note", 4, 0))) e.note = SvPV(*s,na); + if ((s = hv_fetch(h, "note", 4, 0))) e.note = SvPV(*s,PL_na); else e.note = 0; len = pack_Expense(&e, mybuf, 0xffff); @@ -1619,7 +1619,7 @@ UnpackAppBlock(record) } SvPV(record,len); - if (unpack_ExpenseAppInfo(&e, (CPTR)SvPV(record, na), len)>0) { + if (unpack_ExpenseAppInfo(&e, (CPTR)SvPV(record, PL_na), len)>0) { hv_store(ret, "sortOrder", 9, newSVlist(e.sortOrder,ExpenseSortNames),0); a = newAV(); @@ -1662,15 +1662,15 @@ PackAppBlock(record) HV * hv; if ((s=av_fetch(av, i, 0)) && SvOK(*s) && SvRV(*s) && (SvTYPE(hv=(HV*)SvRV(*s))==SVt_PVHV)) { if (s = hv_fetch(hv, "name", 4, 0)) { - strncpy(e.currencies[i].name, SvPV(*s, na), 16); + strncpy(e.currencies[i].name, SvPV(*s, PL_na), 16); e.currencies[i].name[15] = 0; } if (s = hv_fetch(hv, "symbol", 6, 0)) { - strncpy(e.currencies[i].symbol, SvPV(*s, na), 4); + strncpy(e.currencies[i].symbol, SvPV(*s, PL_na), 4); e.currencies[i].symbol[3] = 0; } if (s = hv_fetch(hv, "rate", 4, 0)) { - strncpy(e.currencies[i].rate, SvPV(*s, na), 8); + strncpy(e.currencies[i].rate, SvPV(*s, PL_na), 8); e.currencies[i].rate[7] = 0; } } @@ -1718,7 +1718,7 @@ UnpackPref(record) } SvPV(record,len); - if (unpack_ExpensePref(&a, (CPTR)SvPV(record, na), len)>0) { + if (unpack_ExpensePref(&a, (CPTR)SvPV(record, PL_na), len)>0) { hv_store(ret, "unitOfDistance", 14, newSVlist(a.unitOfDistance, ExpenseDistanceNames), 0); hv_store(ret, "currentCategory", 15, newSViv(a.currentCategory), 0); @@ -1811,7 +1811,7 @@ Unpack(record) SvPV(record,len); if (len > 0) { /* len == 0 if deleted flag is set */ - if (unpack_Mail(&a, (CPTR)SvPV(record, na), len)>0) { + if (unpack_Mail(&a, (CPTR)SvPV(record, PL_na), len)>0) { if (a.subject) hv_store(ret, "subject", 7, newSVpv(a.subject,0), 0); if (a.from) hv_store(ret, "from", 4, newSVpv(a.from,0), 0); @@ -1858,14 +1858,14 @@ Pack(record) } else { - a.subject = (s = hv_fetch(h, "subject", 7, 0)) ? SvPV(*s,na) : 0; - a.from = (s = hv_fetch(h, "from", 4, 0)) ? SvPV(*s,na) : 0; - a.to = (s = hv_fetch(h, "to", 2, 0)) ? SvPV(*s,na) : 0; - a.cc = (s = hv_fetch(h, "cc", 2, 0)) ? SvPV(*s,na) : 0; - a.bcc = (s = hv_fetch(h, "bcc", 3, 0)) ? SvPV(*s,na) : 0; - a.replyTo = (s = hv_fetch(h, "replyTo", 7, 0)) ? SvPV(*s,na) : 0; - a.sentTo = (s = hv_fetch(h, "sentTo", 6, 0)) ? SvPV(*s,na) : 0; - a.body = (s = hv_fetch(h, "body", 4, 0)) ? SvPV(*s,na) : 0; + a.subject = (s = hv_fetch(h, "subject", 7, 0)) ? SvPV(*s,PL_na) : 0; + a.from = (s = hv_fetch(h, "from", 4, 0)) ? SvPV(*s,PL_na) : 0; + a.to = (s = hv_fetch(h, "to", 2, 0)) ? SvPV(*s,PL_na) : 0; + a.cc = (s = hv_fetch(h, "cc", 2, 0)) ? SvPV(*s,PL_na) : 0; + a.bcc = (s = hv_fetch(h, "bcc", 3, 0)) ? SvPV(*s,PL_na) : 0; + a.replyTo = (s = hv_fetch(h, "replyTo", 7, 0)) ? SvPV(*s,PL_na) : 0; + a.sentTo = (s = hv_fetch(h, "sentTo", 6, 0)) ? SvPV(*s,PL_na) : 0; + a.body = (s = hv_fetch(h, "body", 4, 0)) ? SvPV(*s,PL_na) : 0; a.read = (s = hv_fetch(h, "read", 4, 0)) ? SvIV(*s) : 0; a.signature = (s = hv_fetch(h, "signature", 9, 0)) ? SvIV(*s) : 0; @@ -1913,7 +1913,7 @@ UnpackAppBlock(record) } SvPV(record,len); - if (unpack_MailAppInfo(&a, (CPTR)SvPV(record, na), len)>0) { + if (unpack_MailAppInfo(&a, (CPTR)SvPV(record, PL_na), len)>0) { doUnpackCategory(ret, &a.category); @@ -1989,7 +1989,7 @@ UnpackSyncPref(record) } SvPV(record,len); - if (unpack_MailSyncPref(&a, (CPTR)SvPV(record, na), len)>0) { + if (unpack_MailSyncPref(&a, (CPTR)SvPV(record, PL_na), len)>0) { hv_store(ret, "syncType", 8, newSVlist(a.syncType, MailSyncTypeNames), 0); hv_store(ret, "getHigh", 7, newSViv(a.getHigh), 0); @@ -2033,9 +2033,9 @@ PackSyncPref(record, id) a.getContaining = (s=hv_fetch(h,"getContaining",13,0)) ? SvIV(*s) : 0; a.truncate = (s=hv_fetch(h,"truncate",8,0)) ? SvIV(*s) : 0; - a.filterTo = (s=hv_fetch(h,"filterTo",8,0)) ? SvPV(*s,na) : 0; - a.filterFrom = (s=hv_fetch(h,"filterFrom",10,0)) ? SvPV(*s,na) : 0; - a.filterSubject = (s=hv_fetch(h,"filterSubject",13,0)) ? SvPV(*s,na) : 0; + a.filterTo = (s=hv_fetch(h,"filterTo",8,0)) ? SvPV(*s,PL_na) : 0; + a.filterFrom = (s=hv_fetch(h,"filterFrom",10,0)) ? SvPV(*s,PL_na) : 0; + a.filterSubject = (s=hv_fetch(h,"filterSubject",13,0)) ? SvPV(*s,PL_na) : 0; len = pack_MailSyncPref(&a, mybuf, 0xffff); @@ -2073,7 +2073,7 @@ UnpackSignaturePref(record) } SvPV(record,len); - if (unpack_MailSignaturePref(&a, (CPTR)SvPV(record, na), len)>0) { + if (unpack_MailSignaturePref(&a, (CPTR)SvPV(record, PL_na), len)>0) { if (a.signature) hv_store(ret, "signature", 9, newSVpv(a.signature, 0), 0); @@ -2099,7 +2099,7 @@ PackSignaturePref(record, id) RETVAL = record; else { - a.signature = (s=hv_fetch(h,"signature",9,0)) ? SvPV(*s,na) : 0; + a.signature = (s=hv_fetch(h,"signature",9,0)) ? SvPV(*s,PL_na) : 0; len = pack_MailSignaturePref(&a, mybuf, 0xffff); @@ -2129,7 +2129,7 @@ write(socket, msg) { STRLEN len; SvPV(msg, len); - RETVAL = pi_write(socket,SvPV(msg,na),len); + RETVAL = pi_write(socket,SvPV(msg,PL_na),len); } SV * @@ -2146,7 +2146,7 @@ read(socket, len) if (result >=0) RETVAL = newSVpvn((char *) pibuf.data, result); else - RETVAL = &sv_undef; + RETVAL = &PL_sv_undef; } OUTPUT: RETVAL @@ -2282,7 +2282,7 @@ class(self, name=0) croak("DBClasses doesn't exist"); if (SvOK(name)) { (void)SvPV(name,len); - s = hv_fetch(h, SvPV(name,na), len, 0); + s = hv_fetch(h, SvPV(name,PL_na), len, 0); } if (!s) s = hv_fetch(h, "", 0, 0); @@ -2577,7 +2577,7 @@ getRecords(self) { int result = dlp_ReadOpenDBInfo(self->socket, self->handle, &RETVAL); if (result < 0) { - RETVAL = newSVsv(&sv_undef); + RETVAL = newSVsv(&PL_sv_undef); self->errnop = result; } } @@ -2745,7 +2745,7 @@ setResource(self, data) result = dlp_WriteResource(self->socket, self->handle, type, id, c, len); if (result < 0) { self->errnop = result; - RETVAL = newSVsv(&sv_undef); + RETVAL = newSVsv(&PL_sv_undef); } else RETVAL = newSViv(result); } @@ -2798,7 +2798,7 @@ getPref(self, id=0, backup=1) r = dlp_CloseDB(self->socket, self->handle); result = dlp_ReadAppPreference(self->socket, creator, id, backup, 0xFFFF, mybuf, &len, &version); if (pi_version(self->socket)< 0x101) - r = dlp_OpenDB(self->socket, self->dbcard, self->dbmode, SvPV(self->dbname,na), &self->handle); + r = dlp_OpenDB(self->socket, self->dbcard, self->dbmode, SvPV(self->dbname,PL_na), &self->handle); ReturnReadPref(mybuf, len); } @@ -2822,10 +2822,10 @@ setPref(self, data) r = dlp_CloseDB(self->socket, self->handle); result = dlp_WriteAppPreference(self->socket, creator, id, backup, version, buf, len); if (pi_version(self->socket)< 0x101) - r = dlp_OpenDB(self->socket, self->dbcard, self->dbmode, SvPV(self->dbname,na), &self->handle); + r = dlp_OpenDB(self->socket, self->dbcard, self->dbmode, SvPV(self->dbname,PL_na), &self->handle); if (result < 0) { self->errnop = result; - RETVAL = newSVsv(&sv_undef); + RETVAL = newSVsv(&PL_sv_undef); } else { RETVAL = newSViv(result); } @@ -2861,7 +2861,7 @@ setPrefRaw(self, data, number, version, backup=1) result = dlp_WriteAppPreference(self->socket, creator, number, backup, version, buf, len); if (result < 0) { self->errnop = result; - RETVAL = newSVsv(&sv_undef); + RETVAL = newSVsv(&PL_sv_undef); } else { RETVAL = newSViv(result); } @@ -2904,7 +2904,7 @@ getTime(self) int result = dlp_GetSysDateTime(self->socket, &t); if (result < 0) { self->errnop = result; - RETVAL = newSVsv(&sv_undef); + RETVAL = newSVsv(&PL_sv_undef); } else RETVAL = newSViv(t); } @@ -2929,7 +2929,7 @@ getSysInfo(self) int result = dlp_ReadSysInfo(self->socket, &si); if (result < 0) { self->errnop = result; - RETVAL = newSVsv(&sv_undef); + RETVAL = newSVsv(&PL_sv_undef); } else { HV * i = newHV(); hv_store(i, "romVersion", 10, newSViv(si.romVersion), 0);\ @@ -2951,7 +2951,7 @@ getCardInfo(self, cardno=0) int result = dlp_ReadStorageInfo(self->socket, cardno, &c); if (result < 0) { self->errnop = result; - RETVAL = newSVsv(&sv_undef); + RETVAL = newSVsv(&PL_sv_undef); } else { HV * i = newHV(); hv_store(i, "card", 6, newSViv(c.card), 0);\ @@ -3037,7 +3037,7 @@ newPref(self, creator, id=0, version=0, backup=0) croak("Default PrefClass not defined"); PUSHMARK(sp); XPUSHs(newSVsv(*s)); - XPUSHs(&sv_undef); + XPUSHs(&PL_sv_undef); XPUSHs(sv_2mortal(newSVChar4(creator))); if (id) XPUSHs(id); @@ -3107,7 +3107,7 @@ open(self, name, mode=0, cardno=0) result = dlp_OpenDB(self->socket, cardno, nummode, name, &handle); if (result<0) { self->errnop = result; - RETVAL = &sv_undef; + RETVAL = &PL_sv_undef; } else { int type; PDA__Pilot__DLP__DB * x = malloc(sizeof(PDA__Pilot__DLP__DB)); @@ -3156,7 +3156,7 @@ create(self, name, creator, type, flags, version, cardno=0) int result = dlp_CreateDB(self->socket, creator, type, cardno, flags, version, name, &handle); if (result<0) { self->errnop = result; - RETVAL = &sv_undef; + RETVAL = &PL_sv_undef; } else { PDA__Pilot__DLP__DB * x = malloc(sizeof(PDA__Pilot__DLP__DB)); SV * sv = newSViv((IV)(void*)x); @@ -3224,7 +3224,7 @@ setPref(self, data) result = dlp_WriteAppPreference(self->socket, creator, id, backup, version, buf, len); if (result < 0) { self->errnop = result; - RETVAL = newSVsv(&sv_undef); + RETVAL = newSVsv(&PL_sv_undef); } else { RETVAL = newSViv(result); } @@ -3248,7 +3248,7 @@ setPrefRaw(self, data, creator, number, version, backup=1) result = dlp_WriteAppPreference(self->socket, creator, number, backup, version, buf, len); if (result < 0) { self->errnop = result; - RETVAL = newSVsv(&sv_undef); + RETVAL = newSVsv(&PL_sv_undef); } else { RETVAL = newSViv(result); } @@ -3350,7 +3350,7 @@ findDBInfo(self, start, name, creator, type, cardno=0) else t = 0; result = dlp_FindDBInfo(self->socket, cardno, start, - SvOK(name) ? SvPV(name,na) : 0, + SvOK(name) ? SvPV(name,PL_na) : 0, t, c, &info); pack_dbinfo(RETVAL, info, result); } @@ -3367,7 +3367,7 @@ getFeature(self, creator, number) unsigned long f; int result; if ((result = dlp_ReadFeature(self->socket, creator, number, &f))<0) { - RETVAL = newSVsv(&sv_undef); + RETVAL = newSVsv(&PL_sv_undef); self->errnop = result; } else { RETVAL = newSViv(f); @@ -3397,7 +3397,7 @@ getROMToken(self,token) } void -callApplication(self, creator, type, action, data=&sv_undef) +callApplication(self, creator, type, action, data=&PL_sv_undef) PDA::Pilot::DLP *self Char4 creator Char4 type @@ -3410,7 +3410,7 @@ callApplication(self, creator, type, action, data=&sv_undef) int result; (void)SvPV(data,len); result = dlp_CallApplication(self->socket, creator, - type, action, len, SvPV(data,na), + type, action, len, SvPV(data,PL_na), &retcode, &pibuf); EXTEND(sp, 2); if (result >= 0) { @@ -3419,7 +3419,7 @@ callApplication(self, creator, type, action, data=&sv_undef) PUSHs(sv_2mortal(newSViv(retcode))); } } else - PUSHs(&sv_undef); + PUSHs(&PL_sv_undef); } int @@ -3530,7 +3530,7 @@ class(self, name=0) croak("DBClasses doesn't exist"); if (SvOK(name)) { (void)SvPV(name, len); - s = hv_fetch(h, SvPV(name, na), len, 0); + s = hv_fetch(h, SvPV(name, PL_na), len, 0); } if (!s) s = hv_fetch(h, "", 0, 0); diff --git a/bindings/Perl/typemap b/bindings/Perl/typemap index 347a6a7..eeffa4c 100644 --- a/bindings/Perl/typemap +++ b/bindings/Perl/typemap @@ -50,9 +50,9 @@ T_CHAR4 T_RESULT if ($var < 0) { - sv_setsv($arg, &sv_no); + sv_setsv($arg, &PL_sv_no); self->errnop = $var; } else - sv_setsv($arg, &sv_yes); + sv_setsv($arg, &PL_sv_yes); T_PTROBJ sv_setref_pv($arg, \"${ntype}\", (void*)$var); -- 1.7.5.4 debian/patches/31_pilot-addresses.10000664000000000000000000000040611333612404014303 0ustar Author: Ludovic Rousseau Bug-Debian: http://bugs.debian.org/535900 --- a/doc/man/pilot-addresses.1 +++ b/doc/man/pilot-addresses.1 @@ -207,5 +207,5 @@ .SH "SEE ALSO" .PP - \fIaddresses\fR(1) \fIpilot\-link\fR(7) +\fIpilot\-link\fR(7) debian/patches/series0000664000000000000000000000015111617273042012034 0ustar 33-new-png-lib 32_typos 10_clie_sj22.patch 31_pilot-addresses.1 0001-Don-t-use-PERL_POLLUTE-macros.patch debian/patches/32_typos0000664000000000000000000001750211333614700012227 0ustar Author: Ludovic Rousseau Description: fix typos detected by lintian --- a/doc/README.libusb +++ b/doc/README.libusb @@ -35,12 +35,12 @@ requires less maintenance overhead, and is MUCH faster to use with current Palm devices (roughly 200% to 600% faster, depending on your Palm's processor speed and the type of - records you are syncronizing across. YMMV, of course.). + records you are synchronizing across. YMMV, of course.). Why is visor so slow? Why is libusb so much faster? -------------------------------------------------------------------------- - In testing, syncronizing a Palm device with libusb has been + In testing, synchronizing a Palm device with libusb has been shown to be anywhere from 200% to 600% faster vs. using the kernel visor module. @@ -285,7 +285,7 @@ Florent's SyncBuddy product is based on libpisock, the core library behind pilot-link. If you want a VERY fast - syncronization application for OSX which can read Photos, + synchronization application for OSX which can read Photos, external storage, backup, and do many other things, check it out and support his efforts and contributions: --- a/libpisock/libusb.c +++ b/libpisock/libusb.c @@ -150,7 +150,7 @@ ret = USB_configure_device (data, &input_endpoint, &output_endpoint); if (ret < 0) { LOG((PI_DBG_DEV, PI_DBG_LVL_DEBUG, - "%s: USB configure failed for familar device: 0x%04x 0x%04x. (LifeDrive issue?)\n", + "%s: USB configure failed for familiar device: 0x%04x 0x%04x. (LifeDrive issue?)\n", __FILE__, dev->descriptor.idVendor, dev->descriptor.idProduct)); usb_close(USB_handle); --- a/src/pilot-getrom.c +++ b/src/pilot-getrom.c @@ -425,7 +425,7 @@ "\n\n" " Reads a ROM token from a Palm Handheld device.\n" " Tokens you may currently extract are:\n" - " adcc: Entropy for internal A->D convertor calibration\n" + " adcc: Entropy for internal A->D converter calibration\n" " irda: Present only on memory card w/IrDA support\n" " snum: Device serial number (from Memory Card Flash ID)\n\n" " Example arguments:\n" --- a/src/pilot-hinotes.c +++ b/src/pilot-hinotes.c @@ -190,7 +190,7 @@ " Note that if you have two memos in the same category whose first lines\n" " are identical, one of them will be OVERWRITTEN! This is unavoidable at\n" " the present time, but may be fixed in a future release. Also, please note\n" - " that syncronizing Hi-Note images is not supported at this time, only text.\n\n" + " that synchronizing Hi-Note images is not supported at this time, only text.\n\n" " Please see http://www.cyclos.com/ for more information on Hi-Note.\n\n" " Example arguments:\n" " -p /dev/pilot -d ~/Palm\n\n"); --- a/src/pilot-install-memo.c +++ b/src/pilot-install-memo.c @@ -1,7 +1,7 @@ /* * $Id: pilot-install-memo.c,v 1.60 2009/06/04 13:32:32 desrod Exp $ * - * install-memo.c: Palm MemoPad Record Syncronization Conduit + * install-memo.c: Palm MemoPad Record Synchronization Conduit * * 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 @@ -133,7 +133,7 @@ if ((memo_size < 65490) && (memo_size > 4096)) { fprintf(stderr, " WARNING: `%s'\n", filename); - fprintf(stderr, " This file was synchonized successfully, but will remain uneditable,\n"); + fprintf(stderr, " This file was synchronized successfully, but will remain uneditable,\n"); fprintf(stderr, " because it is larger than the Palm limitation of 4,096 bytes in\n"); fprintf(stderr, " size.\n\n"); --- a/src/pilot-read-palmpix.c +++ b/src/pilot-read-palmpix.c @@ -1,7 +1,7 @@ /* * $Id: pilot-read-palmpix.c,v 1.36 2007/02/04 23:06:03 desrod Exp $ * - * pilot-read-palmpix.c: PalmPix image convertor + * pilot-read-palmpix.c: PalmPix image converter * * Copyright 2001 John Marshall * Copyright 2002-2004 Angus Ainslie --- a/doc/man/pilot-getromtoken.1 +++ b/doc/man/pilot-getromtoken.1 @@ -36,7 +36,7 @@ Tokens you may currently extract are: .PP -adcc: Entropy for internal A\->D convertor calibration +adcc: Entropy for internal A\->D converter calibration .PP irda: Present only on memory card w/IrDA support --- a/doc/man/pilot-hinotes.1 +++ b/doc/man/pilot-hinotes.1 @@ -19,7 +19,7 @@ .. .TH "pilot-hinotes" 1 "Copyright 1996-2007 FSF" "0.12.5" "PILOT-LINK" .SH NAME -pilot-hinotes \- Syncronize your Hi-Notes database with your desktop machine. +pilot-hinotes \- Synchronize your Hi-Notes database with your desktop machine. .SH "SECTION" .PP @@ -50,7 +50,7 @@ .SH "WARNING" .PP -Note that if you have two memos in the same category whose first lines are identical, one of them will be OVERWRITTEN! This is unavoidable at the present time, but may be fixed in a future release\&. Also, please note that syncronizing Hi\-Note images is not supported at this time, only text\&. +Note that if you have two memos in the same category whose first lines are identical, one of them will be OVERWRITTEN! This is unavoidable at the present time, but may be fixed in a future release\&. Also, please note that synchronizing Hi\-Note images is not supported at this time, only text\&. .SH "OPTIONS" --- a/doc/man/pilot-install-todo.1 +++ b/doc/man/pilot-install-todo.1 @@ -33,7 +33,7 @@ .SH "DESCRIPTION" .PP - \fIpilot\-install\-todo\fR allows the user to install one new ToDo list entry with specified paramters passed to \fIpilot\-install\-todo\fR and add a Note entry using text found in a filename <\fIfilename\fR> passed to \fIpilot\-install\-todo\fR\&. + \fIpilot\-install\-todo\fR allows the user to install one new ToDo list entry with specified parameters passed to \fIpilot\-install\-todo\fR and add a Note entry using text found in a filename <\fIfilename\fR> passed to \fIpilot\-install\-todo\fR\&. .SH "OPTIONS" --- a/doc/man/pilot-link.7 +++ b/doc/man/pilot-link.7 @@ -51,7 +51,7 @@ .SS "pilot-hinotes" .PP -Syncronize your Hi\-Notes database with your desktop machine\&. +Syncihronize your Hi\-Notes database with your desktop machine\&. .SS "install-datebook" @@ -184,7 +184,7 @@ .SS "pilot-read-todos" .PP -Syncronize your Palm ToDo application's database with your desktop machine\&. +Synchronize your Palm ToDo application's database with your desktop machine\&. .SS "pilot-read-veo" @@ -284,7 +284,7 @@ The original pilot\-unix mailing list has been taken offline, and is now being hosted and maintained by David A\&. Desrosiers \&. The original pilot\-unix mailing list was maintained by Matthew Cravit\&. Its mandate was: .PP -The pilot\-unix mailing list is for discussion and "idea\-sharing" for those interested in using your Palm handheld with UNIX systems\&. This includes people who are interested in helping to develop tools to allow the Palm to operate with UNIX and other POSIX systems, and possibly to develop an SDK (Software Develop\- ment Kit) for the Palm for Unix\&. +The pilot\-unix mailing list is for discussion and "idea\-sharing" for those interested in using your Palm handheld with UNIX systems\&. This includes people who are interested in helping to develop tools to allow the Palm to operate with UNIX and other POSIX systems, and possibly to develop an SDK (Software Development Kit) for the Palm for Unix\&. .PP For more information, including how to subscribe to the pilot\-link mailing lists, please visit the pilot\-link mailing list subscription page: --- a/doc/man/pilot-read-todos.1 +++ b/doc/man/pilot-read-todos.1 @@ -19,7 +19,7 @@ .. .TH "pilot-read-todos" 1 "Copyright 1996-2007 FSF" "0.12.5" "PILOT-LINK" .SH NAME -pilot-read-todos \- Syncronize your Palm ToDo application's database with your desktop machine. +pilot-read-todos \- Synchronize your Palm ToDo application's database with your desktop machine. .SH "SECTION" .PP debian/compat0000664000000000000000000000000211737647160010402 0ustar 9 debian/pilot-link.docs0000664000000000000000000000012511154476550012132 0ustar changelog doc/README.usb doc/README.libusb doc/README.debugging doc/TODO NEWS README debian/changelog0000664000000000000000000013505312257627171011063 0ustar pilot-link (0.12.5-6ubuntu2) trusty; urgency=medium * Build using dh_autoreconf. -- Matthias Klose Sat, 28 Dec 2013 21:02:40 +0100 pilot-link (0.12.5-6ubuntu1) trusty; urgency=low * Resynchronise with Debian. Remaining changes: - Build using dh_python2. -- Colin Watson Mon, 28 Oct 2013 18:00:46 -0700 pilot-link (0.12.5-6) unstable; urgency=low * Fix "Use dh_autotools-dev to update config.{sub,guess} for AArch64" patch from Ubuntu (Closes: #727270) -- Ludovic Rousseau Sun, 27 Oct 2013 20:36:42 +0100 pilot-link (0.12.5-5ubuntu3) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Mon, 21 Oct 2013 13:43:11 +0100 pilot-link (0.12.5-5ubuntu2) saucy; urgency=low * Use dh_autotools-dev to update config.{sub,guess} for AArch64. -- Matthias Klose Thu, 10 Oct 2013 18:18:05 +0200 pilot-link (0.12.5-5ubuntu1) raring; urgency=low * Resynchronise with Debian. Remaining changes: - Build using dh_python2. -- Colin Watson Wed, 28 Nov 2012 00:08:22 +0000 pilot-link (0.12.5-5) unstable; urgency=low * upgrade to debhelper 9 * Fix "should not depend on libncurses5-dev" dependency removed (Closes: #667891) * Fix "pilot-read-ical depends upon external program" removed pilot-read-ical (Closes: #608468) * Fix "pilot-memos.1.gz: HTML tags in man page" fixed upstream (Closes: #391984) * Fix "HTML fragments in man pages" fixed upstream (Closes: #402045) * debian/control: Standards-Version: 3.9.2 => 3.9.3. No change needed. -- Ludovic Rousseau Sun, 08 Apr 2012 20:17:47 +0200 pilot-link (0.12.5-4ubuntu2) quantal; urgency=low * Rebuild for new armel compiler default of ARMv5t. -- Colin Watson Mon, 08 Oct 2012 08:38:08 +0100 pilot-link (0.12.5-4ubuntu1) precise; urgency=low * Build using dh_python2 -- Matthias Klose Sat, 17 Dec 2011 13:29:29 +0000 pilot-link (0.12.5-4build1) precise; urgency=low * Rebuild for Perl 5.14. -- Colin Watson Wed, 16 Nov 2011 00:37:26 +0000 pilot-link (0.12.5-4) unstable; urgency=low * Fix "debian/control uses hardcoded list of non-Linux architectures" use [linux-any] (Closes: #634729) * Fix "FTBFS with libpng-dev in experimental: pilot-read-notepad.c" Use patch from FreeBSD (Closes: #636758) debian/patches/33-new-png-lib -- Ludovic Rousseau Sat, 06 Aug 2011 19:01:23 +0200 pilot-link (0.12.5-3) unstable; urgency=low * Fix "Emptying dependency_libs in .la files". Add a sed call in debian/rules (Closes: #633330) * Fix "FTBFS with perl 5.14: error: 'sv_undef' undeclared (first use in this function)" using the patch debian/patches/0001-Don-t-use-PERL_POLLUTE-macros.patch from Niko Tyni (Closes: #628510) * Standards-Version: 3.8.4 -> 3.9.2. - Remove -D_REENTRANT from CFLAGS - the 'dependency_libs' setting should be emptied (bug #633330 fixed above) * fix lintian warning: debian-rules-missing-recommended-target build-arch * fix lintian warning: "I: libpisock9: conflicts-with-version pilot-link (<< 0.12.2-7)" by removing references to this very old version -- Ludovic Rousseau Sun, 17 Jul 2011 17:13:20 +0200 pilot-link (0.12.5-2) unstable; urgency=low * debian/rules: do not use -l dh_shlibdeps argument any more * debian/symbols: new file. * debian/rules: add dependencies between packages. Closes: #569426: pilot-link: FTBFS: dpkg-shlibdeps: error: couldn't find library libpisock.so.9 needed by debian/libpisync1/usr/lib/libpisync.so.1.0.3 (ELF format: 'elf64-x86-64'; RPATH: '') -- Ludovic Rousseau Thu, 11 Feb 2010 21:44:22 +0100 pilot-link (0.12.5-1) unstable; urgency=low * New upstream release * debian/patches/30_3_arg_open: remove since included upstream * debian/rules: parallel compilation now works and can be set using parallel= in DEB_BUILD_OPTIONS * debian/patches/32_typos: fix typos found by lintian * debian/pilot-link.NEWS: fix debian-news-entry-without-blank-line * debian/pilot-link.NEWS: fix debian-news-entry-uses-asterisk * Standards-Version: 3.8.3 -> 3.8.4. no change needed. -- Ludovic Rousseau Wed, 10 Feb 2010 14:18:41 +0100 pilot-link (0.12.4-7) unstable; urgency=low * Fix "please no longer suggest libmd5-perl" by removing "Suggests: libmd5-perl" for pilot-link and remove "Depends: libdigest-md5-perl" for libpda-pilot-perl (Closes: #558596) * move to "3.0 (quilt)" source format -- Ludovic Rousseau Sun, 06 Dec 2009 16:18:29 +0100 pilot-link (0.12.4-6) unstable; urgency=low * debian/control: replacing libreadline5-dev build dependency with libreadline-dev See http://lists.debian.org/debian-devel/2009/09/msg00549.html * debian/compat: 5 -> 7 -- Ludovic Rousseau Wed, 23 Sep 2009 10:52:30 +0200 pilot-link (0.12.4-5) unstable; urgency=low * Fix "Can't sync over usb: on some Sony CliƩs" patch debian/patches/10_clie_sj22.patch reintroduced (Closes: #544329) -- Ludovic Rousseau Tue, 01 Sep 2009 21:40:36 +0200 pilot-link (0.12.4-4) unstable; urgency=low * Fix "make pilot-link compilable on GNU/Hurd" Do not use libbluetooth-dev on Hurd (Closes: #543348) * debian/control: Standards-Version: 3.8.2 -> 3.8.3 * debian/README.source: new file referring to quilt README.source * debian/rules: use dh_quilt_patch & dh_quilt_unpatch -- Ludovic Rousseau Wed, 26 Aug 2009 14:47:12 +0200 pilot-link (0.12.4-3) unstable; urgency=low * debian/patches/31_pilot-addresses.1: remove reference to addresses(1) Closes: #535900 "pilot-link: No "addresses" program" * debian/control: Add Breaks to ensure the right version of udev is used. (patch from Ubuntu) NOTE: the Debian and Ubuntu udev package numbering are different. * debian/rules: Use dh_installmodules (patch from Ubuntu) * debian/rules: Build for python2.6. (patch from Ubuntu) * debian/rules: add the Breaks on libpisock9 instead of pilot-link * debian/control: Standards-Version: 3.8.1 -> 3.8.2, no change needed * Fix "breaks compatibility and its reverse dependencies" libpisock9 now Breaks: packages compiled with libpisock9 0.12.3 and using the Contact API (only jpilot and python-jppy are concerned) Closes: #536877 -- Ludovic Rousseau Mon, 20 Jul 2009 18:42:54 +0200 pilot-link (0.12.4-2) unstable; urgency=low * now for unstable. I do not expect transition problems. -- Ludovic Rousseau Fri, 29 May 2009 06:56:46 +0000 pilot-link (0.12.4-1) experimental; urgency=low * New upstream release - debian/patches/20_pi-md5.h.patch: included upstream - patches/10_clie_sj22.patch: included upstream - Fix "man page overly indented" (Closes: #509944) * move python-pisock-dbg package in the debug section -- Ludovic Rousseau Fri, 29 May 2009 01:24:10 +0200 pilot-link (0.12.3-11) unstable; urgency=low * Fix "FTBFS on GNU/kFreeBSD" libbluetooth-dev does not exists on this system (Closes: #522242) * Standards-Version: 3.7.3 -> 3.8.1 add support of noopt and parallel= in DEB_BUILD_OPTIONS. parallel will do nothing since the compilation will fail with it. * refresh quilt patches as described in http://lists.debian.org/debian-devel-announce/2008/07/msg00000.html to prepare the "3.0 (quilt)" source package format migration -- Ludovic Rousseau Sat, 04 Apr 2009 22:58:44 +0200 pilot-link (0.12.3-10) unstable; urgency=low * use dh_installmodules to install /etc/modprobe.d/libpisock9.conf Closes: #518110: libpisock9: /etc/modprobe.d files without .conf Closes: #518709: libpisock9: Incorrect upgrade of libpisock modprobe file -- Ludovic Rousseau Sun, 08 Mar 2009 13:27:14 +0100 pilot-link (0.12.3-9) unstable; urgency=low * debian/rules: use /etc/modprobe.d/libpisock9.conf instead of /etc/modprobe.d/libpisock9 Closes: #518110: libpisock9: /etc/modprobe.d files without .conf -- Ludovic Rousseau Sat, 07 Mar 2009 18:06:00 +0100 pilot-link (0.12.3-8) unstable; urgency=low * correct patches/10_clie_sj22.patch Closes: #505221: libpisock9: Patch badly applied : doesn't fix problem for me -- Ludovic Rousseau Sat, 07 Mar 2009 15:01:05 +0100 pilot-link (0.12.3-7) unstable; urgency=low * merge patches from Ubuntu - debian/patches/10_clie_sj22.patch: closes: #505221 "libpisock9: Fix syncing with Sony Clie SJ-22" - Build-Depends: debhelper (>= 7.0.17) "Rebuild against new debhelper for udev rules path change." -- Ludovic Rousseau Sun, 22 Feb 2009 11:12:23 +0100 pilot-link (0.12.3-6) unstable; urgency=low * libpisock-dev depends on libbluetooth-dev instead of libbluetooth2-dev Closes: #501513: "pilot-link: shouldn't build depend on versioned libbluetooth-dev" Closes: #505200: "libpisock-dev: depends on virtual package libbluetooth2-dev" * debian/patches/30_3_arg_open: call open() with a 3rd argument to corrected set the access rights of the new file. Patch from Ubuntu. Closes: #505201 "libpisock-dev: open(2) has 3 arguments when being called with O_CREAT" * debian/control: add ${misc:Depends} to Depends: lintian warning: debhelper-but-no-misc-depends * debian/control: licence is GPL-2 instead of just GPL lintian warning: copyright-refers-to-versionless-license-file -- Ludovic Rousseau Sun, 15 Feb 2009 20:24:16 +0100 pilot-link (0.12.3-5) unstable; urgency=low * Patch from Ubuntu for the python-pisock-dbg package remove egg file too (LP: #202773) -- Ludovic Rousseau Sun, 15 Jun 2008 15:58:37 +0200 pilot-link (0.12.3-4) unstable; urgency=low * debian/control: add Build-Depends: libpopt-dev so that the package always uses the system libpopt0 instead of sometimes the internal one. Correct a problem detected by Lucas Nussbaum http://lists.debian.org/debian-devel/2008/01/msg00869.html -- Ludovic Rousseau Sat, 16 Feb 2008 17:48:10 +0100 pilot-link (0.12.3-3) unstable; urgency=low * debian/{control,rules}: generate new python-pisock-dbg package. Patch from Ubuntu * debian/control: add a Copyright Holder: field -- Ludovic Rousseau Sat, 16 Feb 2008 16:06:17 +0100 pilot-link (0.12.3-2) unstable; urgency=low * upload to unstable * debian/control: - use Homepage: field - Standards-Version: 3.7.2 -> 3.7.3. No change needed - replace libbluetooth2-dev by libbluetooth-dev (Ubuntu patch) - remove sylpheed-claws suggests and change sylpheed-claws-gtk2 suggests to claws-mail for libpisock9 (Ubuntu patch) - remove XS-Vcs-Browser: and Xs-Vcs-Cvs: since they are not for upstream but for the Debian packaging * debian/patches/20_pi-md5.h.dpatch: add a description -- Ludovic Rousseau Tue, 01 Jan 2008 17:48:21 +0100 pilot-link (0.12.3-1) experimental; urgency=low * New upstream release * debian/patches/19_pilot-link.m4.in.dpatch: remove since included upstream * debian/control: rename libpisync0 to libpisync1 -- Ludovic Rousseau Wed, 28 Nov 2007 20:48:34 +0100 pilot-link (0.12.2-11) unstable; urgency=low * debian/patches/20_pi-md5.h.dpatch: Closes: #451200 "libpisock-dev: 64bitness problem causing inaccessible private records" * debian/control: replace ${Source-Version} by ${binary:Version} for libpisock-dev -- Ludovic Rousseau Wed, 14 Nov 2007 16:39:49 +0100 pilot-link (0.12.2-10) unstable; urgency=low * debian/rules: use dh_installudev to install the udev file * debian/control: python-pisock: add Provides: ${python:Provides} so that python-pisock now Provides: python2.5-pisock, python2.4-pisock -- Ludovic Rousseau Sun, 03 Jun 2007 21:47:50 +0200 pilot-link (0.12.2-9) unstable; urgency=low * debian/control: - add Xs-Vcs-Cvs: and XS-Vcs-Browser: fields - remove Suggests: malsync for libpisock9 since malsync is no more in Debian * use Ubuntu patches. Except for python-all-dbg which is not available in Debian. I am open to patches. * debian/man/pilot-650foto.1: manpage is missing from upstream -- Ludovic Rousseau Sun, 25 Mar 2007 16:00:20 +0200 pilot-link (0.12.2-8) unstable; urgency=low * debian/control: libpisock9 Replaces: pilot-link (<< 0.12.2-7) Closes: #415960 "60-libpisock.rules is contained in two packages" -- Ludovic Rousseau Sat, 24 Mar 2007 14:21:22 +0100 pilot-link (0.12.2-7) unstable; urgency=low * debian/libpisock9.docs: add documentation in libpisock9 and not just in pilot-link package * add etc/modprobe.d/libpisock9 file to blacklist the visor kernel module since we now use libusb with better performances * add etc/udev/rules.d/60-libpisock.rules to set the device to group dialout and group write access. * debian/README.debian: add a permissions chapter. Users need to be in the group dialout to use the device created by udev -- Ludovic Rousseau Thu, 22 Mar 2007 14:21:58 +0100 pilot-link (0.12.2-6) unstable; urgency=low * debian/rules: force installation of dump.pl & Pilot.pm. Closes: #413502: "libpda-pilot-perl: package is missing perl module Pilot.pm and files dump.pl and autosplit.ix" -- Ludovic Rousseau Wed, 7 Mar 2007 21:53:58 +0100 pilot-link (0.12.2-5) unstable; urgency=low * debian/control: - Build-Depends: pkg-config - libpisock-dev Depends: libbluetooth2-dev - Closes: #413051 "libpisock-dev: needs to Depend on libbluetooth2-dev" -- Ludovic Rousseau Fri, 2 Mar 2007 14:19:16 +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-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 debian/control0000664000000000000000000000720112257627136010606 0ustar Source: pilot-link Section: otherosfs Build-Depends: debhelper (>= 9~), perl (>= 5.6), libpng-dev, libreadline-dev, python-all-dev (>= 2.6.6-3~), python-all-dbg, libusb-dev, libbluetooth-dev [linux-any], pkg-config, libpopt-dev, autotools-dev, dh-autoreconf Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Ludovic Rousseau Standards-Version: 3.9.3 X-Python-Version: >= 2.3 Homepage: http://www.pilot-link.org/ Package: pilot-link Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Conflicts: pilot-link-perl Suggests: libpda-pilot-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. Package: libpda-pilot-perl Architecture: any Section: perl Priority: extra Depends: ${shlibs:Depends}, ${perl:Depends}, ${misc:Depends} 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. Package: python-pisock Architecture: any Section: python Priority: extra Suggests: python-pisock-dbg Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends} Replaces: pilot-link (<< 0.9.3-1), pilot-link-python XB-Python-Version: ${python:Versions} Provides: ${python:Provides} 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. Package: python-pisock-dbg Architecture: any Section: debug Priority: extra Depends: python-pisock (= ${binary:Version}), python-dbg, ${shlibs:Depends}, ${misc: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}, ${misc:Depends} Suggests: jpilot, pilot-link, kpilot, gnome-pilot, evolution, claws-mail, sylpheed Breaks: udev (<< 0.136-1), jpilot (<< 1.6.2.4-2), python-jppy (<= 0.0.47-1.1) 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. Package: libpisync1 Architecture: any Section: libs Depends: ${shlibs:Depends}, ${misc: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. Package: libpisock-dev Architecture: any Section: libdevel Priority: extra Depends: ${misc:Depends}, libpisock9 (= ${binary:Version}), libpisync1 (= ${binary:Version}), libusb-dev, libbluetooth-dev [!kfreebsd-amd64 !kfreebsd-i386 !hurd-i386] 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 libpisync1. debian/python-pisock.docs0000664000000000000000000000005411154476550012660 0ustar bindings/Python/README bindings/Python/TODO debian/pilot-link.install0000664000000000000000000000174211740325261012647 0ustar usr/bin/pilot-addresses usr/bin/pilot-clip usr/bin/pilot-csd usr/bin/pilot-debugsh usr/bin/pilot-dedupe usr/bin/pilot-dlpsh usr/bin/pilot-file usr/bin/pilot-foto usr/bin/pilot-foto-treo600 usr/bin/pilot-foto-treo650 usr/bin/pilot-getram usr/bin/pilot-getrom usr/bin/pilot-getromtoken usr/bin/pilot-hinotes usr/bin/pilot-ietf2datebook usr/bin/pilot-install-datebook usr/bin/pilot-install-expenses usr/bin/pilot-install-hinote usr/bin/pilot-install-memo usr/bin/pilot-install-netsync usr/bin/pilot-install-todo usr/bin/pilot-install-todos usr/bin/pilot-install-user usr/bin/pilot-memos usr/bin/pilot-nredir usr/bin/pilot-read-expenses usr/bin/pilot-read-notepad usr/bin/pilot-read-palmpix usr/bin/pilot-read-screenshot usr/bin/pilot-read-todos usr/bin/pilot-read-veo usr/bin/pilot-reminders usr/bin/pilot-schlep usr/bin/pilot-sync-plan usr/bin/pilot-undelete usr/bin/pilot-wav usr/bin/pilot-xfer usr/share/pilot-link/pix/* usr/share/pilot-link/prc/getrom2.prc usr/share/pilot-link/prc/getrom.prc debian/libpisock9.modprobe0000664000000000000000000000002011154734701012764 0ustar blacklist visor debian/man/0000775000000000000000000000000012233267541007750 5ustar debian/man/pilot-sync-plan.10000664000000000000000000000071710600454405013061 0ustar .\" 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. debian/man/pilot-undelete.10000664000000000000000000000125510600454405012760 0ustar .\" 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. debian/man/pilot-ietf2datebook.10000664000000000000000000000430410600454405013673 0ustar .\"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)\&. debian/python-pisock.install0000664000000000000000000000002011154476550013367 0ustar usr/lib/python*