Your message dated Sun, 28 Aug 2005 15:02:09 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#325428: fixed in libticables3 3.9.6-1
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; 28 Aug 2005 15:35:54 +0000
>From [EMAIL PROTECTED] Sun Aug 28 08:35:54 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 1E9PCM-0002YD-00; Sun, 28 Aug 2005 08:35:54 -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 1E9PCK-0005sh-Q4; Sun, 28 Aug 2005 17:35:52 +0200
Received: from aurel32 by hertz.aurel32.net with local (Exim 4.52)
id 1E9PCG-0005FA-62; Sun, 28 Aug 2005 17:35:48 +0200
Content-Type: multipart/mixed; boundary="===============1137929437=="
MIME-Version: 1.0
From: Aurelien Jarno <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: FTBFS on GNU/kFreeBSD
X-Mailer: reportbug 3.16
Date: Sun, 28 Aug 2005 17:35:48 +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.
--===============1137929437==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: libticables3
Severity: important
Tags: patch
Hi,
libticables3 fails to build on GNU/KFreeBSD fails to build for various
reasons:
- tidev-modules-source is linux only
- some minor things in the C code. They have been solved by using the
patches availables in the FreeBSD ports.
You will find attached a patch to fix that. Could you please apply it in
the next upload.
Thanks in advance,
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)
--===============1137929437==
Content-Type: text/x-makefile; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="libticables3_3.9.2-2.kfreebsd.patch"
diff -u libticables3-3.9.2/debian/rules libticables3-3.9.2/debian/rules
--- libticables3-3.9.2/debian/rules
+++ libticables3-3.9.2/debian/rules
@@ -9,7 +9,7 @@
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
-
+DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CFLAGS += -g
@@ -84,7 +84,6 @@
# install the HTML documentation
cp -a docs/html debian/libticables3-dev/usr/share/doc/libticables3-dev/
-
dh_installman
dh_installinfo
dh_installchangelogs ChangeLog
@@ -95,7 +94,11 @@
dh_makeshlibs
dh_installdeb
dh_shlibdeps
+ifeq (linux,$(DEB_HOST_ARCH_OS))
+ dh_gencontrol -- -Vtidev-modules-source="tidev-modules-source (>= 1.4)"
+else
dh_gencontrol
+endif
dh_md5sums
dh_builddeb
diff -u libticables3-3.9.2/debian/control libticables3-3.9.2/debian/control
--- libticables3-3.9.2/debian/control
+++ libticables3-3.9.2/debian/control
@@ -3,12 +3,12 @@
Priority: optional
Maintainer: Julien BLACHE <[EMAIL PROTECTED]>
Standards-Version: 3.6.2
-Build-Depends: debhelper (>> 4.0.0), tidev-modules-source (>= 1.4), libusb-dev
(>= 1:0.1.5-2), pkg-config, autotools-dev, gettext
+Build-Depends: debhelper (>> 4.0.0), tidev-modules-source (>= 1.4) [!hurd-i386
!kfreebsd-i386], libusb-dev (>= 1:0.1.5-2), pkg-config, autotools-dev, gettext
Package: libticables3-dev
Section: libdevel
Architecture: any
-Depends: libticables3 (= ${Source-Version}), libusb-dev (>= 1:0.1.5-2),
tidev-modules-source (>= 1.4), libc6-dev, pkg-config
+Depends: libticables3 (= ${Source-Version}), libusb-dev (>= 1:0.1.5-2),
${tidev-modules-source}, libc6-dev | libc-dev, pkg-config
Conflicts: libticables-dev, libticables2-dev
Description: support library for Texas Instruments link cables [development
files]
This library provides functions to use Texas Instruments link cables for TI
only in patch2:
unchanged:
--- libticables3-3.9.2.orig/src/bsd/bsd_mapping.c
+++ libticables3-3.9.2/src/bsd/bsd_mapping.c
@@ -74,9 +74,7 @@
break;
case LINK_AVR:
- if(resources & IO_API) {
- *method |= IOM_API | IOM_OK;
- }
+ printl1(2, "AVR link support has been removed !\n");
break;
case LINK_SER:
@@ -114,6 +112,7 @@
case LINK_TIE:
case LINK_VTI:
+ case LINK_VTL:
*method |= IOM_API | IOM_OK;
break;
@@ -212,7 +211,10 @@
ret = bsd_map_io((TicableMethod)method, port);
if(ret)
return ret;
-
+
+ // set fields to default values
+ nul_register_cable(lc);
+
// set the link cable
printl1(0, _("registering cable...\n"));
switch (type) {
@@ -244,16 +246,6 @@
ser_register_cable_2(lc);
break;
- case LINK_AVR:
- if ((port != SERIAL_PORT_1) &&
- (port != SERIAL_PORT_2) &&
- (port != SERIAL_PORT_3) &&
- (port != SERIAL_PORT_4) && (port != USER_PORT))
- return ERR_INVALID_PORT;
-
- avr_register_cable(lc);
- break;
-
case LINK_VTL:
if ((port != VIRTUAL_PORT_1) && (port != VIRTUAL_PORT_2))
return ERR_INVALID_PORT;
only in patch2:
unchanged:
--- libticables3-3.9.2.orig/src/linux/slv_link2.c
+++ libticables3-3.9.2/src/linux/slv_link2.c
@@ -111,7 +111,7 @@
{}
};
-//static int max_ps = 32; // max packet size (32 ot 64)
+static int max_ps = 32; // max packet size (32 ot 64)
static int nBytesWrite2 = 0;
static uint8_t *wBuf2 = NULL;
--===============1137929437==--
---------------------------------------
Received: (at 325428-close) by bugs.debian.org; 28 Aug 2005 22:09:41 +0000
>From [EMAIL PROTECTED] Sun Aug 28 15:09:41 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E9VE9-000447-00; Sun, 28 Aug 2005 15:02:09 -0700
From: Julien BLACHE <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#325428: fixed in libticables3 3.9.6-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 28 Aug 2005 15:02:09 -0700
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
Source: libticables3
Source-Version: 3.9.6-1
We believe that the bug you reported is fixed in the latest version of
libticables3, which is due to be installed in the Debian FTP archive:
libticables3-dev_3.9.6-1_i386.deb
to pool/main/libt/libticables3/libticables3-dev_3.9.6-1_i386.deb
libticables3_3.9.6-1.diff.gz
to pool/main/libt/libticables3/libticables3_3.9.6-1.diff.gz
libticables3_3.9.6-1.dsc
to pool/main/libt/libticables3/libticables3_3.9.6-1.dsc
libticables3_3.9.6-1_i386.deb
to pool/main/libt/libticables3/libticables3_3.9.6-1_i386.deb
libticables3_3.9.6.orig.tar.gz
to pool/main/libt/libticables3/libticables3_3.9.6.orig.tar.gz
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.
Julien BLACHE <[EMAIL PROTECTED]> (supplier of updated libticables3 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: Sun, 28 Aug 2005 22:39:47 +0200
Source: libticables3
Binary: libticables3 libticables3-dev
Architecture: source i386
Version: 3.9.6-1
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE <[EMAIL PROTECTED]>
Changed-By: Julien BLACHE <[EMAIL PROTECTED]>
Description:
libticables3 - support library for Texas Instruments link cables
libticables3-dev - support library for Texas Instruments link cables
[development fi
Closes: 325428
Changes:
libticables3 (3.9.6-1) unstable; urgency=low
.
* New upstream release.
+ Bumped shlibs again.
* src/bsd/bsd_mapping.c:
+ Update to match linux_mapping.c, patch from Aurélien Jarno (+ control
and rules changes for kFreeBSD) (closes: #325428).
Files:
60aaf6f293e346971f3f7fc117b9743b 722 libs optional libticables3_3.9.6-1.dsc
4ac18b90c5da6bfdd158d8b37acaa17f 618508 libs optional
libticables3_3.9.6.orig.tar.gz
4a0d679527b616ff40ef4a34711493df 5866 libs optional
libticables3_3.9.6-1.diff.gz
b0a5fbcdeae96a864650cfa246f23eba 84726 libdevel optional
libticables3-dev_3.9.6-1_i386.deb
f4e9786c2d0b0e17f4d0cc3a1e9007de 46068 libs optional
libticables3_3.9.6-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDEiYJzWFP1/XWUWkRAuThAJ9qfVaC6Isl0FPcvaoEQAh4rq6m5QCgo7tY
wsocFr0w9VlhASueH2Mj338=
=NwoD
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]