[cl-debian] Bug#345219: marked as done (cl-sql: FTBFS on GNU/kFreeBSD)

Debian Bug Tracking System owner at bugs.debian.org
Mon Jan 16 23:19:11 UTC 2006


Your message dated Mon, 16 Jan 2006 14:48:07 -0800
with message-id <E1Eyd8x-0000Qa-3d at spohr.debian.org>
and subject line Bug#345219: fixed in cl-sql 3.5.3-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; 29 Dec 2005 18:12:05 +0000
>From aurel32 at debian.org Thu Dec 29 10:12:05 2005
Return-path: <aurel32 at debian.org>
Received: from farad.aurel32.net ([82.232.2.251])
	by spohr.debian.org with esmtp (Exim 4.50)
	id 1Es2Fw-0008JQ-Qm
	for submit at bugs.debian.org; Thu, 29 Dec 2005 10:12:05 -0800
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 1Es2Fv-0000IW-RL; Thu, 29 Dec 2005 19:12:03 +0100
Received: from aurel32 by hertz.aurel32.net with local (Exim 4.60)
	(envelope-from <aurel32 at debian.org>)
	id 1Es2Fv-000J0w-O7; Thu, 29 Dec 2005 19:12:03 +0100
Content-Type: multipart/mixed; boundary="===============0982268429=="
MIME-Version: 1.0
From: Aurelien Jarno <aurel32 at debian.org>
To: Debian Bug Tracking System <submit at bugs.debian.org>
Subject: cl-sql: FTBFS on GNU/kFreeBSD
Message-ID: <20051229181203.73070.51397.reportbug at hertz.aurel32.net>
X-Mailer: reportbug 3.18
Date: Thu, 29 Dec 2005 19:12:03 +0100
Delivered-To: submit at bugs.debian.org
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.

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

Package: cl-sql
Severity: important
Tags: patch

Hi,

cl-sql fails to build on GNU/kFreeBSD due to missing check for this
platform. Please find attached a patch to fix that. It would be nice if
you could include it in the next upload cl-sql.

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.4-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

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

Status: in BTS
Author: aurel32

--- cl-sql-3.4.6.orig/db-mysql/make.sh
+++ cl-sql-3.4.6/db-mysql/make.sh
@@ -3,6 +3,7 @@
 case "`uname`" in
     Linux) os_linux=1 ;;
     FreeBSD) os_freebsd=1 ;;
+    GNU/kFreeBSD) os_gnukfreebsd=1;;
     Darwin) os_darwin=1 ;;
     SunOS) os_sunos=1 ;;
     AIX) os_aix=1 ;;
@@ -10,7 +11,7 @@
        exit 1 ;;	
 esac
     
-if [ "$os_linux" -o "$os_freebsd" ]; then
+if [ "$os_linux" -o "$os_freebsd" -o "$os_gnukfreebsd" ]; then
     gcc $CFLAGS -fPIC -c $SOURCE -o $OBJECT
     ld -shared -soname=$BASE  $OBJECT $LDFLAGS -o $SHARED_LIB
 elif [ "$os_darwin" ]; then
only in patch2:
unchanged:
--- cl-sql-3.4.6.orig/uffi/make.sh
+++ cl-sql-3.4.6/uffi/make.sh
@@ -3,6 +3,7 @@
 case "`uname`" in
     Linux) os_linux=1 ;;
     FreeBSD) os_freebsd=1 ;;
+    GNU/kFreeBSD) os_gnukfreebsd=1;;
     Darwin) os_darwin=1 ;;
     SunOS) os_sunos=1 ;;
     AIX) os_aix=1 ;;
@@ -10,7 +11,7 @@
        exit 1 ;;	
 esac
     
-if [ "$os_linux" -o "$os_freebsd" ]; then
+if [ "$os_linux" -o "$os_freebsd" -o "$os_gnukfreebsd" ]; then
     gcc -fPIC -DPIC -c $SOURCE -o $OBJECT
     ld -shared -soname=$BASE $LDFLAGS $OBJECT -o $SHARED_LIB
 elif [ "$os_darwin" ]; then

--===============0982268429==--

---------------------------------------
Received: (at 345219-close) by bugs.debian.org; 16 Jan 2006 22:58:02 +0000
>From katie at ftp-master.debian.org Mon Jan 16 14:58:02 2006
Return-path: <katie at ftp-master.debian.org>
Received: from katie by spohr.debian.org with local (Exim 4.50)
	id 1Eyd8x-0000Qa-3d; Mon, 16 Jan 2006 14:48:07 -0800
From: kmr at debian.org (Kevin M. Rosenberg)
To: 345219-close at bugs.debian.org
X-Katie: $Revision: 1.65 $
Subject: Bug#345219: fixed in cl-sql 3.5.3-1
Message-Id: <E1Eyd8x-0000Qa-3d at spohr.debian.org>
Sender: Archive Administrator <katie at ftp-master.debian.org>
Date: Mon, 16 Jan 2006 14:48:07 -0800
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: cl-sql
Source-Version: 3.5.3-1

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

cl-sql-aodbc_3.5.3-1_all.deb
  to pool/main/c/cl-sql/cl-sql-aodbc_3.5.3-1_all.deb
cl-sql-mysql_3.5.3-1_i386.deb
  to pool/main/c/cl-sql/cl-sql-mysql_3.5.3-1_i386.deb
cl-sql-odbc_3.5.3-1_all.deb
  to pool/main/c/cl-sql/cl-sql-odbc_3.5.3-1_all.deb
cl-sql-oracle_3.5.3-1_all.deb
  to pool/contrib/c/cl-sql/cl-sql-oracle_3.5.3-1_all.deb
cl-sql-postgresql-socket_3.5.3-1_all.deb
  to pool/main/c/cl-sql/cl-sql-postgresql-socket_3.5.3-1_all.deb
cl-sql-postgresql_3.5.3-1_all.deb
  to pool/main/c/cl-sql/cl-sql-postgresql_3.5.3-1_all.deb
cl-sql-sqlite3_3.5.3-1_all.deb
  to pool/main/c/cl-sql/cl-sql-sqlite3_3.5.3-1_all.deb
cl-sql-sqlite_3.5.3-1_all.deb
  to pool/main/c/cl-sql/cl-sql-sqlite_3.5.3-1_all.deb
cl-sql-tests_3.5.3-1_all.deb
  to pool/main/c/cl-sql/cl-sql-tests_3.5.3-1_all.deb
cl-sql-uffi_3.5.3-1_i386.deb
  to pool/main/c/cl-sql/cl-sql-uffi_3.5.3-1_i386.deb
cl-sql_3.5.3-1.diff.gz
  to pool/main/c/cl-sql/cl-sql_3.5.3-1.diff.gz
cl-sql_3.5.3-1.dsc
  to pool/main/c/cl-sql/cl-sql_3.5.3-1.dsc
cl-sql_3.5.3-1_all.deb
  to pool/main/c/cl-sql/cl-sql_3.5.3-1_all.deb
cl-sql_3.5.3.orig.tar.gz
  to pool/main/c/cl-sql/cl-sql_3.5.3.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 345219 at bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Kevin M. Rosenberg <kmr at debian.org> (supplier of updated cl-sql 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 ftpmaster at debian.org)


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

Format: 1.7
Date: Mon, 16 Jan 2006 14:43:55 -0700
Source: cl-sql
Binary: cl-sql-sqlite3 cl-sql-oracle cl-sql-aodbc cl-sql-postgresql-socket cl-sql-postgresql cl-sql-odbc cl-sql cl-sql-uffi cl-sql-tests cl-sql-sqlite cl-sql-mysql
Architecture: source all i386
Version: 3.5.3-1
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg <kmr at debian.org>
Changed-By: Kevin M. Rosenberg <kmr at debian.org>
Description: 
 cl-sql     - SQL Interface for Common Lisp
 cl-sql-aodbc - CLSQL database backend, AODBC
 cl-sql-mysql - CLSQL database backend, MySQL
 cl-sql-odbc - CLSQL database backend, ODBC
 cl-sql-oracle - CLSQL database backend, Oracle
 cl-sql-postgresql - CLSQL database backend, PostgreSQL
 cl-sql-postgresql-socket - CLSQL database backend, PostgreSQL
 cl-sql-sqlite - CLSQL database backend, SQLite
 cl-sql-sqlite3 - CLSQL database backend, SQLite3
 cl-sql-tests - Testing suite for CLSQL
 cl-sql-uffi - Common UFFI functions for CLSQL database backends
Closes: 345219
Changes: 
 cl-sql (3.5.3-1) unstable; urgency=low
 .
   * New upstream
   * Really commit patch for GNU/kFreeBSD (closes: 345219)
Files: 
 d0ca489a9ee900577cdce80cb01030e0 796 devel extra cl-sql_3.5.3-1.dsc
 2224d9d4261805ee5225647ff03aabea 704695 devel extra cl-sql_3.5.3.orig.tar.gz
 7cd9a2834a1a0bafa75199893be0852f 11217 devel extra cl-sql_3.5.3-1.diff.gz
 be3320bb060b74413982c0b85f05e676 491246 devel extra cl-sql_3.5.3-1_all.deb
 f9e3838416221cbe3047702f001d5732 36428 devel extra cl-sql-aodbc_3.5.3-1_all.deb
 daf78180a5aa952f047e9d0a1cdb9006 62972 devel extra cl-sql-odbc_3.5.3-1_all.deb
 b8b87825b3723b3a969bf1499829934d 41144 devel extra cl-sql-postgresql_3.5.3-1_all.deb
 64b586a895e10896a0016b2a13f7aaea 45298 devel extra cl-sql-postgresql-socket_3.5.3-1_all.deb
 8e1c0073b0f461727c3b81847441cff3 41016 devel extra cl-sql-sqlite_3.5.3-1_all.deb
 3cd53ebe2dc6efd235967168aaa91ee4 41780 devel extra cl-sql-sqlite3_3.5.3-1_all.deb
 43f83bb33414ec1dd9d741321f873e73 57442 contrib/devel extra cl-sql-oracle_3.5.3-1_all.deb
 5b66c213bfd93c562bc9c170a37fc0b7 59692 devel extra cl-sql-tests_3.5.3-1_all.deb
 7058d52d80a1152c44d2b9678da8379d 39782 devel extra cl-sql-uffi_3.5.3-1_i386.deb
 72eb18adbfeebfa241dd3cdff6ae3464 50182 devel extra cl-sql-mysql_3.5.3-1_i386.deb

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

iD8DBQFDzBRoES7N8sSjgj4RAlnNAJ9Wqhn8XlsbbtVAiLr4iJpKLg782QCfdvh/
hA1z/xXdeIzy2YWaJP5uUuo=
=n5Yu
-----END PGP SIGNATURE-----





More information about the Cl-debian mailing list