Your message dated Tue, 01 Nov 2005 14:34:09 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#326621: fixed in pilot-link 0.11.8-13
has caused the attached Bug report to be marked as done.

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

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

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

--------------------------------------
Received: (at submit) by bugs.debian.org; 4 Sep 2005 15:15:22 +0000
>From [EMAIL PROTECTED] Sun Sep 04 08:15:22 2005
Return-path: <[EMAIL PROTECTED]>
Received: from farad.aurel32.net [82.232.2.251] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1EBwDJ-00053g-00; Sun, 04 Sep 2005 08:15:22 -0700
Received: from hertz.aurel32.net ([2001:618:400:fc13:2e0:18ff:fea3:b80f])
        by farad.aurel32.net with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32)
        (Exim 4.50)
        id 1EBwDI-0002IV-Kv; Sun, 04 Sep 2005 17:15:20 +0200
Received: from aurel32 by hertz.aurel32.net with local (Exim 4.52)
        id 1EBwD2-000BET-Ps; Sun, 04 Sep 2005 17:15:04 +0200
Content-Type: multipart/mixed; boundary="===============1601015859=="
MIME-Version: 1.0
From: Aurelien Jarno <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: pilot-link: FTBFS on GNU/kFreeBSD
X-Mailer: reportbug 3.17
Date: Sun, 04 Sep 2005 17:15:04 +0200
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.8 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS,
        HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2005_01_02

This is a multi-part MIME message sent by reportbug.

--===============1601015859==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: pilot-link
Severity: important
Tags: patch

Hi,

pilot-link currently fails to build on GNU/kFreeBSD, due to outdated
libtool and some missing #ifdef. Please find attached a patch to fix 
that. Could you please add it in the next upload?

It would also be nice if you could forward it to the upstream.

Thanks for your cooperation,
Aurelien

-- System Information:
Debian Release: testing/unstable
Architecture: kfreebsd-i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: GNU/kFreeBSD 5.3-1
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

--===============1601015859==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="pilot-link.diff"

Author: aurel32
Status: in BTS

diff -u pilot-link-0.11.8/debian/rules pilot-link-0.11.8/debian/rules
--- pilot-link-0.11.8/debian/rules
+++ pilot-link-0.11.8/debian/rules
@@ -44,6 +44,7 @@
 build: build-stamp
 build-stamp: patch-stamp
        dh_testdir
+       cp -f /usr/share/misc/config.{guess,sub} `pwd`
        # Add here commands to compile the package.
        CC="$(CC)" ./configure --prefix=/usr \
                --mandir=$(pwd)/debian/tmp/usr/share/man \
@@ -65,6 +66,7 @@
        dh_testdir
        dh_testroot
        rm -f build-stamp pre-binary-stamp
+       rm -f config.{guess,sub}
        # Add here commands to clean up after the build process.
        #-(cd tools/Perl5; make realclean)
 #      (cd tools/Python; make distclean)
diff -u pilot-link-0.11.8/debian/patches/00list 
pilot-link-0.11.8/debian/patches/00list
--- pilot-link-0.11.8/debian/patches/00list
+++ pilot-link-0.11.8/debian/patches/00list
@@ -17,0 +18 @@
+18_kfreebsd
--- pilot-link-0.11.8.orig/debian/patches/18_kfreebsd.dpatch
+++ pilot-link-0.11.8/debian/patches/18_kfreebsd.dpatch
@@ -0,0 +1,105 @@
+#!/bin/sh -e
+## patch by Aurelien Jarno <[EMAIL PROTECTED]>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description
+
+if [ $# -ne 1 ]; then
+    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+    exit 1
+fi
+
+[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
+patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
+
+case "$1" in
+       -patch) patch $patch_opts -p0 < $0;;
+       -unpatch) patch $patch_opts -p0 -R < $0;;
+        *)
+                echo >&2 "`basename $0`: script expects -patch|-unpatch as 
argument"
+                exit 1;;
+esac
+
+exit 0
+
[EMAIL PROTECTED]@
+--- libpisock/freebsdusb.c     2005-09-02 22:27:03.000000000 +0200
++++ libpisock/freebsdusb.c     2005-09-02 22:27:23.000000000 +0200
+@@ -50,8 +50,9 @@
+ # define O_NONBLOCK 0
+ #endif
+ 
+-#if defined(__FreeBSD__)
++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+ /* freebsd usb header */
++#include <sys/ioctl.h>
+ #include <dev/usb/usb.h>
+ #define MAX_BUF 256
+ #endif
+--- aclocal.m4 2005-09-02 22:32:13.000000000 +0200
++++ aclocal.m4 2005-09-02 22:34:16.000000000 +0200
+@@ -1727,7 +1727,7 @@
+     ;;
+ 
+   # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
+-  freebsd*)
++  freebsd* | kfreebsd*-gnu)
+     archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
+     hardcode_libdir_flag_spec='-R$libdir'
+     hardcode_direct=yes
+@@ -2182,7 +2182,7 @@
+   dynamic_linker=no
+   ;;
+ 
+-freebsd*-gnu*)
++kfreebsd*-gnu)
+   version_type=linux
+   need_lib_prefix=no
+   need_version=no
+@@ -2191,7 +2191,7 @@
+   shlibpath_var=LD_LIBRARY_PATH
+   shlibpath_overrides_runpath=no
+   hardcode_into_libs=yes
+-  dynamic_linker='GNU/FreeBSD ld.so'
++  dynamic_linker='ld.so'
+   ;;
+ 
+ freebsd*)
+@@ -3444,7 +3444,7 @@
+   esac
+   ;;
+ 
+-freebsd*)
++freebsd* | kfreebsd*-gnu)
+   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+     case $host_cpu in
+     i*86 )
+--- configure  2005-09-02 22:36:38.000000000 +0200
++++ configure  2003-08-08 23:35:36.000000000 +0200
+@@ -3259,7 +3259,7 @@
+   esac
+   ;;
+ 
+-freebsd*)
++freebsd* | kfreebsd*-gnu)
+   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+     case $host_cpu in
+     i*86 )
+@@ -5673,7 +5673,7 @@
+     ;;
+ 
+   # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
+-  freebsd*)
++  freebsd* | kfreebsd*-gnu)
+     archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
+     hardcode_libdir_flag_spec='-R$libdir'
+     hardcode_direct=yes
+@@ -6135,7 +6135,7 @@
+   dynamic_linker=no
+   ;;
+ 
+-freebsd*-gnu*)
++kfreebsd*-gnu*)
+   version_type=linux
+   need_lib_prefix=no
+   need_version=no

--===============1601015859==--

---------------------------------------
Received: (at 326621-close) by bugs.debian.org; 1 Nov 2005 22:39:00 +0000
>From [EMAIL PROTECTED] Tue Nov 01 14:39:00 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EX4hl-0003hz-00; Tue, 01 Nov 2005 14:34:09 -0800
From: Ludovic Rousseau <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#326621: fixed in pilot-link 0.11.8-13
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 01 Nov 2005 14:34:09 -0800
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 2

Source: pilot-link
Source-Version: 0.11.8-13

We believe that the bug you reported is fixed in the latest version of
pilot-link, which is due to be installed in the Debian FTP archive:

libpda-pilot-perl_0.11.8-13_i386.deb
  to pool/main/p/pilot-link/libpda-pilot-perl_0.11.8-13_i386.deb
libpisock++0c2_0.11.8-13_i386.deb
  to pool/main/p/pilot-link/libpisock++0c2_0.11.8-13_i386.deb
libpisock-dev_0.11.8-13_i386.deb
  to pool/main/p/pilot-link/libpisock-dev_0.11.8-13_i386.deb
libpisock8_0.11.8-13_i386.deb
  to pool/main/p/pilot-link/libpisock8_0.11.8-13_i386.deb
libpisync0_0.11.8-13_i386.deb
  to pool/main/p/pilot-link/libpisync0_0.11.8-13_i386.deb
pilot-link_0.11.8-13.diff.gz
  to pool/main/p/pilot-link/pilot-link_0.11.8-13.diff.gz
pilot-link_0.11.8-13.dsc
  to pool/main/p/pilot-link/pilot-link_0.11.8-13.dsc
pilot-link_0.11.8-13_i386.deb
  to pool/main/p/pilot-link/pilot-link_0.11.8-13_i386.deb
python-pisock_0.11.8-13_i386.deb
  to pool/main/p/pilot-link/python-pisock_0.11.8-13_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ludovic Rousseau <[EMAIL PROTECTED]> (supplier of updated pilot-link package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Tue,  1 Nov 2005 22:17:15 +0100
Source: pilot-link
Binary: libpda-pilot-perl libpisock++0c2 libpisock8 pilot-link libpisync0 
python-pisock libpisock-dev
Architecture: source i386
Version: 0.11.8-13
Distribution: unstable
Urgency: low
Maintainer: Ludovic Rousseau <[EMAIL PROTECTED]>
Changed-By: Ludovic Rousseau <[EMAIL PROTECTED]>
Description: 
 libpda-pilot-perl - Perl module to communicate with a PalmOS PDA
 libpisock++0c2 - C++ library for communicating with a PalmOS PDA
 libpisock-dev - Development files for communicating with a PalmOS PDA
 libpisock8 - Library for communicating with a PalmOS PDA
 libpisync0 - Synchronization library for PalmOS devices
 pilot-link - Tools to communicate with a PalmOS PDA
 python-pisock - Python module to communicate with PalmOS PDA
Closes: 264617 306505 316865 317669 326621 330765
Changes: 
 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
Files: 
 512e4b08cc1916d7ddd241a9c9b7b922 753 otherosfs optional 
pilot-link_0.11.8-13.dsc
 b5eb3f9323ee9c5a467289b2dee1d099 28426 otherosfs optional 
pilot-link_0.11.8-13.diff.gz
 96a23d9551385a0af5d466d52fd67b81 67180 libs optional 
libpisock8_0.11.8-13_i386.deb
 a78fb414d2a17924050cb1dc4dd2225d 20586 libs optional 
libpisock++0c2_0.11.8-13_i386.deb
 8aee950b2654c40cba7276c467d53b9c 135688 libdevel extra 
libpisock-dev_0.11.8-13_i386.deb
 872fd68aacab75c20d77a08420c4e7fb 108116 perl extra 
libpda-pilot-perl_0.11.8-13_i386.deb
 0630f621d2c8550b668e4eb9352843ec 31590 python extra 
python-pisock_0.11.8-13_i386.deb
 2978f14b214cd9a0155e4c51e35b37b4 279730 otherosfs optional 
pilot-link_0.11.8-13_i386.deb
 538bfac3104179084af066d0f81b7e9d 13762 libs optional 
libpisync0_0.11.8-13_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDZ+FMP0qKj+B/HPkRAnJ2AKCHaBf5VZIM7PVe9y3nfru+UbdjOgCfWZik
eOaEXqcj/7BScyLnHHnBjb4=
=BXJB
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to