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

Debian Bug Tracking System owner at bugs.debian.org
Sat Dec 31 18:48:04 UTC 2005


Your message dated Sat, 31 Dec 2005 10:32:06 -0800
with message-id <E1EslWQ-0007hx-TN at spohr.debian.org>
and subject line Bug#345219: fixed in cl-sql 3.5.2-2
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; 31 Dec 2005 18:40:55 +0000
>From katie at ftp-master.debian.org Sat Dec 31 10:40:55 2005
Return-path: <katie at ftp-master.debian.org>
Received: from katie by spohr.debian.org with local (Exim 4.50)
	id 1EslWQ-0007hx-TN; Sat, 31 Dec 2005 10:32:06 -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.2-2
Message-Id: <E1EslWQ-0007hx-TN at spohr.debian.org>
Sender: Archive Administrator <katie at ftp-master.debian.org>
Date: Sat, 31 Dec 2005 10:32:06 -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.2-2

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.2-2_all.deb
  to pool/main/c/cl-sql/cl-sql-aodbc_3.5.2-2_all.deb
cl-sql-mysql_3.5.2-2_i386.deb
  to pool/main/c/cl-sql/cl-sql-mysql_3.5.2-2_i386.deb
cl-sql-odbc_3.5.2-2_all.deb
  to pool/main/c/cl-sql/cl-sql-odbc_3.5.2-2_all.deb
cl-sql-oracle_3.5.2-2_all.deb
  to pool/contrib/c/cl-sql/cl-sql-oracle_3.5.2-2_all.deb
cl-sql-postgresql-socket_3.5.2-2_all.deb
  to pool/main/c/cl-sql/cl-sql-postgresql-socket_3.5.2-2_all.deb
cl-sql-postgresql_3.5.2-2_all.deb
  to pool/main/c/cl-sql/cl-sql-postgresql_3.5.2-2_all.deb
cl-sql-sqlite3_3.5.2-2_all.deb
  to pool/main/c/cl-sql/cl-sql-sqlite3_3.5.2-2_all.deb
cl-sql-sqlite_3.5.2-2_all.deb
  to pool/main/c/cl-sql/cl-sql-sqlite_3.5.2-2_all.deb
cl-sql-tests_3.5.2-2_all.deb
  to pool/main/c/cl-sql/cl-sql-tests_3.5.2-2_all.deb
cl-sql-uffi_3.5.2-2_i386.deb
  to pool/main/c/cl-sql/cl-sql-uffi_3.5.2-2_i386.deb
cl-sql_3.5.2-2.diff.gz
  to pool/main/c/cl-sql/cl-sql_3.5.2-2.diff.gz
cl-sql_3.5.2-2.dsc
  to pool/main/c/cl-sql/cl-sql_3.5.2-2.dsc
cl-sql_3.5.2-2_all.deb
  to pool/main/c/cl-sql/cl-sql_3.5.2-2_all.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 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: Sat, 31 Dec 2005 11:14:04 -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.2-2
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.2-2) unstable; urgency=low
 .
   * Commit patch for GNU/kFreeBSD (closes: 345219)
Files: 
 e86fb0e0224865efa3935b10fb164e29 796 devel extra cl-sql_3.5.2-2.dsc
 3c1a7e0c5abbd850b795cd26eb9ed478 11188 devel extra cl-sql_3.5.2-2.diff.gz
 649564fa67f6fa02ed7c3066e33dee05 491064 devel extra cl-sql_3.5.2-2_all.deb
 554a7cbbf024b25c615bc0510d47b3dd 36230 devel extra cl-sql-aodbc_3.5.2-2_all.deb
 e506a6c5dcc9509569baef9356f8566a 62824 devel extra cl-sql-odbc_3.5.2-2_all.deb
 4d574a82c08b48ce1ffed103b30eb6c7 40998 devel extra cl-sql-postgresql_3.5.2-2_all.deb
 ab817e513a006161c322f8a4b1bfed69 45126 devel extra cl-sql-postgresql-socket_3.5.2-2_all.deb
 b55144a8d3672cd17392aa048615afae 40876 devel extra cl-sql-sqlite_3.5.2-2_all.deb
 cff622a3ddee1ded2e07a7028f868888 41634 devel extra cl-sql-sqlite3_3.5.2-2_all.deb
 eae1ce8b7b9ce963726c754b759510f7 57296 contrib/devel extra cl-sql-oracle_3.5.2-2_all.deb
 fc87410edc4a3c783a2a41795076c191 59520 devel extra cl-sql-tests_3.5.2-2_all.deb
 074e5f49b9cca578dfa7f83f05a77471 39628 devel extra cl-sql-uffi_3.5.2-2_i386.deb
 1c3e7bd46c9b1461d68a451acc0feade 50010 devel extra cl-sql-mysql_3.5.2-2_i386.deb

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

iD8DBQFDtsr2ES7N8sSjgj4RAqCpAJ4qWZsOKk2nng8PAI5UUPn3KDsPQACfXzc8
+XChB0L82j2tgsDo17nr0Fk=
=URd6
-----END PGP SIGNATURE-----





More information about the Cl-debian mailing list