Your message dated Sat, 20 Aug 2005 05:02:11 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#324047: fixed in sdcc 2.5.0-5
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; 19 Aug 2005 23:52:39 +0000
>From [EMAIL PROTECTED] Fri Aug 19 16:52:39 2005
Return-path: <[EMAIL PROTECTED]>
Received: from smtp1.rz.uni-karlsruhe.de [129.13.185.217]
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E6Gf9-00029l-00; Fri, 19 Aug 2005 16:52:39 -0700
Received: from teco141pc.teco.edu (teco141pc.teco.uni-karlsruhe.de
[129.13.170.141])
by smtp1.rz.uni-karlsruhe.de with esmtp (Exim 4.43 #1)
id 1E6Gf7-0003j4-6b; Sat, 20 Aug 2005 01:52:37 +0200
Received: from dsl-084-056-238-087.arcor-ip.net ([84.56.238.87]
helo=pluto.milchstrasse.xx)
by teco141pc.teco.edu with esmtpsa (TLSv1:AES256-SHA:256)
(Exim 4.50)
id 1E6Geu-0007CZ-Fh; Sat, 20 Aug 2005 01:52:24 +0200
Received: from michael by pluto.milchstrasse.xx with local (Exim 4.52)
id 1E6Get-0000uv-Sv; Sat, 20 Aug 2005 01:52:23 +0200
Content-Type: multipart/mixed; boundary="===============1159179621=="
MIME-Version: 1.0
From: Michael Biebl <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: Please build sdcc-libraries with pic16 support
X-Mailer: reportbug 3.15
Date: Sat, 20 Aug 2005 01:52:22 +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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
This is a multi-part MIME message sent by reportbug.
--===============1159179621==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: sdcc-libraries
Severity: wishlist
Tags: patch
The pic16 support is disabled by default as it needs gputils for
compilation and gputils is not available on the sourceforge compilation
farms where the project is hosted. Please compile sdcc with pic16 support.
A patch is attached.
Thanks,
Michael
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable'), (300, 'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.5
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
--===============1159179621==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="pic16.diff"
diff -ur sdcc-2.5.0.orig/debian/control sdcc-2.5.0/debian/control
--- sdcc-2.5.0.orig/debian/control 2005-08-20 01:31:27.000000000 +0200
+++ sdcc-2.5.0/debian/control 2005-08-20 01:47:04.000000000 +0200
@@ -2,7 +2,7 @@
Section: electronics
Priority: optional
Maintainer: Aurelien Jarno <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 4.0.0), flex, bison, libncurses5-dev
+Build-Depends: debhelper (>> 4.0.0), flex, bison, libncurses5-dev, gputils
Build-Depends-Indep: lyx-xforms (>> 1.3.1) | lyx (>> 1.3.1), tetex-bin,
tetex-extra, gs-common, gs
Standards-Version: 3.6.1
@@ -25,6 +25,7 @@
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}
Conflicts: sdcc (<< 2.3.8+cvs20040218-1)
+Recommends: gputils
Description: Small Device C Compiler (libraries)
SDCC is a C compiler for the Intel MCS51 family, AVR, HC08, PIC
and Z80 microcontrollers.
diff -ur sdcc-2.5.0.orig/debian/rules sdcc-2.5.0/debian/rules
--- sdcc-2.5.0.orig/debian/rules 2005-08-20 01:31:27.000000000 +0200
+++ sdcc-2.5.0/debian/rules 2005-08-20 01:41:32.000000000 +0200
@@ -46,6 +46,12 @@
config.status: configure
dh_testdir
+ cd device/lib/pic16
+ ./configure \
+ --host=$(DEB_HOST_GNU_TYPE) \
+ --build=$(DEB_BUILD_GNU_TYPE) \
+ --prefix=/usr
+ cd ../../..
./configure \
--host=$(DEB_HOST_GNU_TYPE) \
--build=$(DEB_BUILD_GNU_TYPE) \
diff -ur sdcc-2.5.0.orig/device/lib/Makefile.in
sdcc-2.5.0/device/lib/Makefile.in
--- sdcc-2.5.0.orig/device/lib/Makefile.in 2005-04-14 15:42:22.000000000
+0200
+++ sdcc-2.5.0/device/lib/Makefile.in 2005-08-20 01:32:26.000000000 +0200
@@ -170,7 +170,7 @@
# Compiling entire program or any subproject
# ------------------------------------------
-all: checkconf models model-ds390 model-ds400 model-z80 model-gbz80 model-hc08
+all: checkconf models model-ds390 model-ds400 model-z80 model-gbz80 model-hc08
model-pic16
# model-pic16
# (needs gputils curently not available of sourceforge's compile farm)
--===============1159179621==--
---------------------------------------
Received: (at 324047-close) by bugs.debian.org; 20 Aug 2005 12:13:45 +0000
>From [EMAIL PROTECTED] Sat Aug 20 05:13:45 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E6S39-0002tz-00; Sat, 20 Aug 2005 05:02:11 -0700
From: Aurelien Jarno <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#324047: fixed in sdcc 2.5.0-5
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 20 Aug 2005 05:02:11 -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=-4.8 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS,
HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02
Source: sdcc
Source-Version: 2.5.0-5
We believe that the bug you reported is fixed in the latest version of
sdcc, which is due to be installed in the Debian FTP archive:
sdcc-doc_2.5.0-5_all.deb
to pool/main/s/sdcc/sdcc-doc_2.5.0-5_all.deb
sdcc-libraries_2.5.0-5_all.deb
to pool/main/s/sdcc/sdcc-libraries_2.5.0-5_all.deb
sdcc-ucsim_2.5.0-5_i386.deb
to pool/main/s/sdcc/sdcc-ucsim_2.5.0-5_i386.deb
sdcc_2.5.0-5.diff.gz
to pool/main/s/sdcc/sdcc_2.5.0-5.diff.gz
sdcc_2.5.0-5.dsc
to pool/main/s/sdcc/sdcc_2.5.0-5.dsc
sdcc_2.5.0-5_i386.deb
to pool/main/s/sdcc/sdcc_2.5.0-5_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.
Aurelien Jarno <[EMAIL PROTECTED]> (supplier of updated sdcc 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: Sat, 20 Aug 2005 10:37:53 +0200
Source: sdcc
Binary: sdcc-ucsim sdcc-doc sdcc-libraries sdcc
Architecture: source all i386
Version: 2.5.0-5
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno <[EMAIL PROTECTED]>
Changed-By: Aurelien Jarno <[EMAIL PROTECTED]>
Description:
sdcc - Small Device C Compiler
sdcc-doc - Small Device C Compiler (documentation)
sdcc-libraries - Small Device C Compiler (libraries)
sdcc-ucsim - Micro-controller simulator for SDCC
Closes: 324047
Changes:
sdcc (2.5.0-5) unstable; urgency=low
.
* Enabled pic16 support (closes: bug#324047).
Files:
839c5ef075f14df8d8a362a26d331367 729 electronics optional sdcc_2.5.0-5.dsc
3f2cc79373bd7a0a6f8bbb9d9d915c52 19001 electronics optional
sdcc_2.5.0-5.diff.gz
f3fa29f2b2cd674b6613012242bffebd 1044878 electronics optional
sdcc_2.5.0-5_i386.deb
0f06e1cb10ede6b466bc3e2c5ea098b7 487700 electronics optional
sdcc-ucsim_2.5.0-5_i386.deb
dfd6d5499dc2b9bd1eebe0419a3e4780 1389244 electronics optional
sdcc-libraries_2.5.0-5_all.deb
40c7d11e2e87c6f794c36c798650f504 212412 doc optional sdcc-doc_2.5.0-5_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDBxijw3ao2vG823MRAgpOAKCCQzJJZYvDIykO2dkpk0B2If5hPwCfaGRJ
ehRkyCeTbYSQFqgVzXVZpbw=
=lGIF
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]