Your message dated Thu, 24 Feb 2005 10:17:13 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#293700: fixed in pearpc 0.3.1+1-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; 5 Feb 2005 05:05:15 +0000
>From [EMAIL PROTECTED] Fri Feb 04 21:05:12 2005
Return-path: <[EMAIL PROTECTED]>
Received: from 174.red-62-57-140.user.auna.net (khazad.dyndns.org)
[62.57.140.174]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CxI7j-00037O-00; Fri, 04 Feb 2005 21:04:47 -0800
Received: from rmh by khazad.dyndns.org with local (Exim 4.34)
id 1CxI1i-000JOt-D8; Sat, 05 Feb 2005 05:58:34 +0100
Content-Type: multipart/mixed; boundary="===============1535422097=="
MIME-Version: 1.0
From: Robert Millan <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: FTBFS on kfreebsd-gnu
X-Mailer: reportbug 3.7.1
Date: Sat, 05 Feb 2005 05:58:34 +0100
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-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
This is a multi-part MIME message sent by reportbug.
--===============1535422097==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: pearpc
Version: 0.3.1-3
Severity: wishlist
Tags: patch
Hi,
This patch fixes build failure on kfreebsd-gnu. It uses cdbs functionality
to auto-generate debian/control. This is only present in 0.4.26-2 or later,
but you don't need to explicitly add it since cdbs already adds itself to
Build-Depends.
To get it working, you need to:
- copy debian/control into debian/control.in
- apply my patch
- run autoconf2.50 (for the upstream changes)
- upgrade to cdbs 0.4.26-2 (in incoming.d.o ATTOW)
- debian/rules clean
The upstream changes in configure.in are already sent upstream.
Note: I noticed bug #293698 (missing build-depends) while porting this
package. My patch in this bug fixes that problem too (I've put the fix for
that here since two patches would otherwise overlap).
-- System Information:
Debian Release: 3.1
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: kfreebsd-i386 (i386)
Kernel: GNU/kFreeBSD 5.3-2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Versions of packages pearpc depends on:
ii libc0.1 2.3-1+kbsd.8 GNU C Library: Shared libraries an
ii libgcc1 1:3.4.1-5+kbsd GCC support library
ii libsdl1.2debi 1.2.7+1.2.8cvs20041007-4.1 Simple DirectMedia Layer
ii libstdc++5 1:3.3.5-4+kbsd The GNU Standard C++ Library v3
-- no debconf information
--===============1535422097==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="pearpc.diff"
--- pearpc-0.3.1.old/configure.in 2004-09-05 18:24:36.000000000 +0200
+++ pearpc-0.3.1/configure.in 2005-02-05 05:02:14.000000000 +0100
@@ -61,7 +61,7 @@
NASM_OPTS="-f elf"
case "$target_os" in
-linux*)
+linux* | gnu* | k*bsd*-gnu)
OSAPI_DIR=posix
if test "x$enable_ui" = "xno"; then
enable_ui="x11"
@@ -69,7 +69,7 @@
AC_MSG_RESULT([*** LINUX, building POSIX version. we need pthread.])
PPC_LDADD="$PPC_LDADD -lpthread -lrt"
;;
-*freebsd*)
+freebsd*)
OSAPI_DIR=posix
if test "x$enable_ui" = "xno"; then
enable_ui="x11"
diff -ur pearpc-0.3.1.old/debian/control.in pearpc-0.3.1/debian/control.in
--- pearpc-0.3.1.old/debian/control.in 2005-02-05 04:36:25.000000000 +0100
+++ pearpc-0.3.1/debian/control.in 2005-02-05 04:59:27.000000000 +0100
@@ -2,12 +2,13 @@
Section: otherosfs
Priority: optional
Maintainer: Leo Costela <[EMAIL PROTECTED]>
-Build-Depends: nasm, debhelper (>= 4.1.0), cdbs, aalib1, libgpmg1,
libsdl1.2debian-all, libsvga1, libncurses5-dev, libxext6, libasound2, slang1,
libsdl1.2-dev, libx11-6
+Build-Depends: @cdbs@, nasm [cpu: i386], aalib1-dev, libsdl1.2-dev,
libncurses5-dev, libxext-dev, slang1-dev, libx11-dev, libsvga1-dev [i386],
libgpmg1-dev [system: linux], libasound2-dev [system: linux]
Standards-Version: 3.6.1.0
Package: pearpc
-Architecture: i386
-Depends: ${shlibs:Depends}
+Cpu: i386
+System: any
+Depends: ${shlibs:Depends}
Description: Architecture-independent PowerPC platform emulator
PearPC is an architecture-independent PowerPC platform emulator capable of
running most PowerPC operating systems.
diff -ur pearpc-0.3.1.old/debian/rules pearpc-0.3.1/debian/rules
--- pearpc-0.3.1.old/debian/rules 2005-02-05 04:33:50.000000000 +0100
+++ pearpc-0.3.1/debian/rules 2005-02-05 04:43:12.000000000 +0100
@@ -2,6 +2,7 @@
PACKAGE = pearpc
INSTALL = install -D
+DEB_AUTO_UPDATE_DEBIAN_CONTROL = yes
include /usr/share/cdbs/1/class/autotools.mk
include /usr/share/cdbs/1/class/makefile.mk
--===============1535422097==--
---------------------------------------
Received: (at 293700-close) by bugs.debian.org; 24 Feb 2005 15:23:12 +0000
>From [EMAIL PROTECTED] Thu Feb 24 07:23:11 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1D4Kpb-0004Xp-00; Thu, 24 Feb 2005 07:23:11 -0800
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1D4Kjp-00032H-00; Thu, 24 Feb 2005 10:17:13 -0500
From: Leo Costela <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#293700: fixed in pearpc 0.3.1+1-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Thu, 24 Feb 2005 10:17:13 -0500
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-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-Spam-Level:
Source: pearpc
Source-Version: 0.3.1+1-2
We believe that the bug you reported is fixed in the latest version of
pearpc, which is due to be installed in the Debian FTP archive:
pearpc_0.3.1+1-2.diff.gz
to pool/main/p/pearpc/pearpc_0.3.1+1-2.diff.gz
pearpc_0.3.1+1-2.dsc
to pool/main/p/pearpc/pearpc_0.3.1+1-2.dsc
pearpc_0.3.1+1-2_i386.deb
to pool/main/p/pearpc/pearpc_0.3.1+1-2_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.
Leo Costela <[EMAIL PROTECTED]> (supplier of updated pearpc 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: Wed, 23 Feb 2005 09:39:56 -0300
Source: pearpc
Binary: pearpc
Architecture: source i386
Version: 0.3.1+1-2
Distribution: unstable
Urgency: low
Maintainer: Leo Costela <[EMAIL PROTECTED]>
Changed-By: Leo Costela <[EMAIL PROTECTED]>
Description:
pearpc - PowerPC architecture emulator
Closes: 293700 295188
Changes:
pearpc (0.3.1+1-2) unstable; urgency=low
.
* Correct the patch to build on kfreebsd (thanks Robert Milan AGAIN)
(closes: #293700)
* amd64 should have been x86_64 (closes: #295188)
Files:
b976a5889520251326df8dc229984b10 1200 otherosfs optional pearpc_0.3.1+1-2.dsc
d0c70077f38d3420bb8e12bf2bea0f76 31215 otherosfs optional
pearpc_0.3.1+1-2.diff.gz
449016f810c702ecc5aaa5c485f033dc 308830 otherosfs optional
pearpc_0.3.1+1-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCHddPImLTb3rflGYRApebAJoCV0ukb3hGwlwujTD9V2AP3qvX0wCgyMPO
/bAuNihAYc5ibQIDKyPbKzs=
=I7FT
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]