Bug#281011: marked as done (java-package: Add support for Blackdown Java 1.4.2 fcs)

Debian Bug Tracking System owner at bugs.debian.org
Mon Nov 7 21:03:19 UTC 2005


Your message dated Mon, 07 Nov 2005 15:41:01 -0500
with message-id <436FBBDD.9050504 at bytemason.org>
and subject line Support for this was added some time ago but the bug was not closed
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; 13 Nov 2004 03:07:18 +0000
>From jean-christophe.andre at auf.org Fri Nov 12 19:07:18 2004
Return-path: <jean-christophe.andre at auf.org>
Received: from (hoadao.vn.refer.org) [210.245.5.178] 
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1CSoFx-0005AW-00; Fri, 12 Nov 2004 19:07:17 -0800
Received: from test.vn.auf.org (unknown [210.245.5.180])
	by hoadao.vn.refer.org (Postfix) with ESMTP id C666F1E
	for <submit at bugs.debian.org>; Sat, 13 Nov 2004 10:07:15 +0700 (ICT)
Received: from virus.home (unknown [222.252.38.226])
	(using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits))
	(No client certificate requested)
	by test.vn.auf.org (Postfix) with ESMTP id 679F813E9F
	for <submit at bugs.debian.org>; Sat, 13 Nov 2004 10:38:16 +0700 (ICT)
Received: by virus.home (Postfix, from userid 1000)
	id 4F9314587; Sat, 13 Nov 2004 10:06:43 +0700 (ICT)
Content-Type: multipart/mixed; boundary="===============1658005955=="
MIME-Version: 1.0
From: Progfou <jean-christophe.andre at auf.org>
To: Debian Bug Tracking System <submit at bugs.debian.org>
Subject: java-package: Add support for Blackdown Java 1.4.2 fcs
X-Mailer: reportbug 3.2
Date: Sat, 13 Nov 2004 10:06:43 +0700
Message-Id: <20041113030643.4F9314587 at virus.home>
Delivered-To: submit at bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
	(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_2004_03_25
X-Spam-Level: 

This is a multi-part MIME message sent by reportbug.

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

Package: java-package
Version: 0.16
Severity: normal
Tags: patch


The two attached patches adds support for Blackdown Java 1.4.2 FCS,
which is available from this site:
  ftp://ftp.tux.org/pub/java/JDK-1.4.2/i386/fcs/

And, yes, this bug looks like #267643, but it's not the same! ;-)

Cheers,

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (800, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages java-package depends on:
ii  debhelper                     4.2.24     helper programs for debian/rules

-- no debconf information

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

--- blackdown-j2re.sh	2004-11-13 10:00:31.000000000 +0700
+++ blackdown-j2re.sh.new	2004-11-13 10:01:09.000000000 +0700
@@ -27,6 +27,16 @@
 	    j2se_expected_min_size=48 # 49988 kB
 	    found=true
 	    ;;
+	"j2re-1.4.2-fcs-linux-i586-gcc2.95.bin")
+	    j2se_version=1.4.2+fcs
+	    j2se_expected_min_size=48 # 49988 kB
+	    found=true
+	    ;;
+	"j2re-1.4.2-fcs-linux-i586-gcc3.2.bin")
+	    j2se_version=1.4.2+fcs
+	    j2se_expected_min_size=48 # 49988 kB
+	    found=true
+	    ;;
     esac
     if [[ -n "$found" ]]; then
 	cat << EOF

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

--- blackdown-j2sdk.sh	2004-11-13 10:00:36.000000000 +0700
+++ blackdown-j2sdk.sh.new	2004-11-13 10:02:07.000000000 +0700
@@ -27,6 +27,16 @@
 	    j2se_expected_min_size=76 # 78055 kB
 	    found=true
 	    ;;
+	"j2sdk-1.4.2-fcs-linux-i586-gcc2.95.bin")
+	    j2se_version=1.4.2+fcs
+	    j2se_expected_min_size=76 # 78055 kB
+	    found=true
+	    ;;
+	"j2sdk-1.4.2-fcs-linux-i586-gcc3.2.bin")
+	    j2se_version=1.4.2+fcs
+	    j2se_expected_min_size=76 # 78055 kB
+	    found=true
+	    ;;
     esac
     if [[ -n "$found" ]]; then
 	cat << EOF

--===============1658005955==--

---------------------------------------
Received: (at 281011-done) by bugs.debian.org; 7 Nov 2005 20:41:19 +0000
>From barry at bytemason.org Mon Nov 07 12:41:19 2005
Return-path: <barry at bytemason.org>
Received: from pollock.hmdnsgroup.com [63.247.129.26] 
	by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
	id 1EZDnr-00055P-00; Mon, 07 Nov 2005 12:41:19 -0800
Received: from [72.250.126.248] (helo=[72.250.126.248])
	by pollock.hmdnsgroup.com with esmtpa (Exim 4.52)
	id 1EZDnn-0002ud-O1
	for 281011-done at bugs.debian.org; Mon, 07 Nov 2005 15:41:17 -0500
Message-ID: <436FBBDD.9050504 at bytemason.org>
Date: Mon, 07 Nov 2005 15:41:01 -0500
From: Barry Hawkins <barry at bytemason.org>
User-Agent: Debian Thunderbird 1.0.7 (X11/20051017)
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: 281011-done at bugs.debian.org
Subject: Support for this was added some time ago but the bug was not closed
X-Enigmail-Version: 0.93.0.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-HMDNSGroup-MailScanner-Information: Please contact the ISP for more information
X-HMDNSGroup-MailScanner: Found to be clean
X-MailScanner-From: barry at bytemason.org
X-AntiAbuse: This header was added to track abuse, please include it with any abuse report
X-AntiAbuse: Primary Hostname - pollock.hmdnsgroup.com
X-AntiAbuse: Original Domain - bugs.debian.org
X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12]
X-AntiAbuse: Sender Address Domain - bytemason.org
X-Source: 
X-Source-Args: 
X-Source-Dir: 
Delivered-To: 281011-done 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=-1.4 required=4.0 tests=BAYES_00,UPPERCASE_25_50 
	autolearn=no version=2.60-bugs.debian.org_2005_01_02

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

This has been available for some time now, but the bug was inadvertently
left open.

- --
Barry Hawkins
All Things Computed
site: www.alltc.com
weblog: www.yepthatsme.com

Registered Linux User #368650
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDb7vdHuKcDICy0QoRAm1SAKDHZjmKg5SS3tWQyRL8cWzupfriDgCfajPD
IRos7zYOIK1lv2hMhoiVwXU=
=We7N
-----END PGP SIGNATURE-----



More information about the pkg-java-maintainers mailing list