Your message dated Wed, 05 Oct 2005 16:05:26 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#258023: fixed in avalon-framework 4.2.0-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; 7 Jul 2004 08:04:58 +0000
>From [EMAIL PROTECTED] Wed Jul 07 01:04:58 2004
Return-path: <[EMAIL PROTECTED]>
Received: from smtp6.wanadoo.fr (mwinf0601.wanadoo.fr) [193.252.22.25] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1Bi7QI-0004yZ-00; Wed, 07 Jul 2004 01:04:58 -0700
Received: from minette.lechat.homelinux.net 
(AMarseille-107-1-15-251.w81-51.abo.wanadoo.fr [81.51.74.251])
        by mwinf0601.wanadoo.fr (SMTP Server) with ESMTP
        id 65A6B340015E; Wed,  7 Jul 2004 10:04:25 +0200 (CEST)
Content-Type: multipart/mixed; boundary="===============0914897623=="
MIME-Version: 1.0
From: Thomas Girard <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: libavalon-framework-java: Update package to Avalon Framework 4.2.0
X-Mailer: reportbug 2.63
Date: Wed, 07 Jul 2004 10:06:21 +0200
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
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=-5.0 required=4.0 tests=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.

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

Package: libavalon-framework-java
Version: 4.1.2-2
Severity: wishlist
Tags: patch

Hello,

Apache has released Avalon Framework 4.2.0. It would be nice if this version was
packaged.

I'm including a patch that should be applied against 
avalon-framework-4.2.0-src.tar.gz, which can be downloaded from 
http://avalon.apache.org

This patch uses the debian related files from avalon-framework_4.1.2-2.diff.gz 
with the following modifications:

 * debian/rules
    - use cdbs.
    - provide two jar files: avalon-framework-{,api}.jar
 * debian/control
    - replace liblog4j with liblog4j1.2-java.
    - must be compiled with jdk1.4 since it uses the java.util.prefs package.
 * debian/copyright
    - Avalon Framework 4.2.0 is released under the Apache License Version 2.0.


Thanks,

Thomas

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.7-1-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED]

Versions of packages libavalon-framework-java depends on:
ii  java-common                   0.22       Base of all Java packages

-- no debconf information

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

diff -Nur --exclude={arch} --exclude=.arch-ids 
avalon-framework-mainline/build.xml avalon-framework-debian/build.xml
--- avalon-framework-mainline/build.xml 1970-01-01 01:00:00.000000000 +0100
+++ avalon-framework-debian/build.xml   2004-07-07 09:13:40.000000000 +0200
@@ -0,0 +1,60 @@
+<?xml version="1.0"?>
+
+<project default="jar" basedir=".">
+
+  <property name="build.dir"      location="build"/>
+  <property name="build-api.dir"  location="${build.dir}/api"/>
+  <property name="build-impl.dir" location="${build.dir}/impl"/>
+  <property name="doc.dir"        location="doc"/>
+  <property name="dist.dir"       location="dist"/>
+  <property name="api.dir"        location="api/src/java"/>
+  <property name="impl.dir"       location="impl/src/java"/>
+
+  <target name="prepare">
+    <mkdir dir="${build.dir}"/>
+    <mkdir dir="${build-api.dir}"/>
+    <mkdir dir="${build-impl.dir}"/>
+    <mkdir dir="${doc.dir}"/>
+    <mkdir dir="${dist.dir}"/>
+  </target>
+
+  <target name="clean">
+    <delete failonerror="false" dir="${build.dir}"/>
+    <delete failonerror="false" dir="${doc.dir}"/>
+    <delete failonerror="false" dir="${dist.dir}"/>
+  </target>
+
+  <target name="compile-api" depends="prepare">
+    <javac srcdir="${api.dir}" 
+          destdir="${build-api.dir}"/>
+  </target>
+
+  <target name="compile-impl" depends="compile-api">
+    <javac srcdir="${impl.dir}" 
+          destdir="${build-impl.dir}">
+      <classpath path="${build-api.dir}"/>
+    </javac>
+  </target>
+
+  <target name="api-jar" depends="compile-impl">
+    <jar destfile="${dist.dir}/avalon-framework-api.jar">
+      <fileset dir="${build-api.dir}"/>
+    </jar>
+  </target>
+
+  <target name="impl-jar" depends="compile-impl">
+    <jar destfile="${dist.dir}/avalon-framework.jar">
+      <fileset dir="${build-api.dir}"/>
+      <fileset dir="${build-impl.dir}"/>
+    </jar>
+  </target>
+
+  <target name="jar" depends="api-jar,impl-jar"/>
+
+  <target name="doc">
+    <javadoc destdir="${doc.dir}">
+      <fileset dir="${api.dir}"/>
+      <fileset dir="${impl.dir}"/>
+    </javadoc>
+  </target>
+</project>
diff -Nur --exclude={arch} --exclude=.arch-ids 
avalon-framework-mainline/debian/changelog 
avalon-framework-debian/debian/changelog
--- avalon-framework-mainline/debian/changelog  1970-01-01 01:00:00.000000000 
+0100
+++ avalon-framework-debian/debian/changelog    2004-07-07 09:13:40.000000000 
+0200
@@ -0,0 +1,34 @@
+avalon-framework (4.2.0-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Thomas Girard <[EMAIL PROTECTED]>  Fri,  2 Jul 2004 17:20:09 +0200
+
+avalon-framework (4.1.2-2) unstable; urgency=low
+
+  * add ConsoleLogger from CVS. (closes: #162135)
+
+ -- Takashi Okamoto <[EMAIL PROTECTED]>  Wed, 25 Sep 2002 00:21:30 +0900
+
+avalon-framework (4.1.2-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Takashi Okamoto <[EMAIL PROTECTED]>  Sat, 16 Feb 2002 19:35:46 +0900
+
+avalon-framework (4.0-2) unstable; urgency=low
+
+  * fixed the documentation bug in control file.(Closes: #124892)
+  * fixed the bug that jar file included source files.(Closes:#125687)
+
+ -- Takashi Okamoto <[EMAIL PROTECTED]>  Wed, 19 Dec 2001 11:18:10 +0900
+
+avalon-framework (4.0-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Takashi Okamoto <[EMAIL PROTECTED]>  Sun, 21 Oct 2001 09:20:16 +0900
+
+Local variables:
+mode: debian-changelog
+End:
diff -Nur --exclude={arch} --exclude=.arch-ids 
avalon-framework-mainline/debian/control avalon-framework-debian/debian/control
--- avalon-framework-mainline/debian/control    1970-01-01 01:00:00.000000000 
+0100
+++ avalon-framework-debian/debian/control      2004-07-07 09:13:40.000000000 
+0200
@@ -0,0 +1,21 @@
+Source: avalon-framework
+Section: contrib/libs
+Priority: optional
+Maintainer: Takashi Okamoto <[EMAIL PROTECTED]>
+Build-Depends-Indep: debhelper (>> 3.0.0),liblogkit-java, libxerces-java, ant, 
liblog4j1.2-java, libxalan2-java, j2sdk1.4
+Standards-Version: 3.5.2
+
+Package: libavalon-framework-java
+Architecture: all
+Depends: java-common
+Description: Common framework for Java server applications
+ The Avalon framework consists of interfaces that define        
+ relationships between commonly used application components,   
+ best-of-practice pattern enforcement, and several lightweight
+ convenience implementations of the generic components.
+
+Package: libavalon-framework-java-doc
+Architecture: all
+Description: Documentation for Avalon
+ This is a documentation for Avalon which is common framework for 
+ Java server applications.
diff -Nur --exclude={arch} --exclude=.arch-ids 
avalon-framework-mainline/debian/copyright 
avalon-framework-debian/debian/copyright
--- avalon-framework-mainline/debian/copyright  1970-01-01 01:00:00.000000000 
+0100
+++ avalon-framework-debian/debian/copyright    2004-07-07 09:13:40.000000000 
+0200
@@ -0,0 +1,197 @@
+This package was debianized by Takashi Okamoto <[EMAIL PROTECTED]> on
+Tue,  2 Oct 2001 22:22:51 +0900.
+
+It was downloaded from http://jakarta.apache.org/avalon/.
+
+Upstream Authors:
+        Federico Barbieri         [EMAIL PROTECTED] 
+        Charles Benett            [EMAIL PROTECTED] 
+        Peter Donald              [EMAIL PROTECTED] 
+        Pierpaolo Fumagalli       [EMAIL PROTECTED] 
+        Serge Knystautas          [EMAIL PROTECTED] 
+        Roberto Lo Giacco         [EMAIL PROTECTED]                  
+        Berin Loritsch            [EMAIL PROTECTED]           
+        Stefano Mazzocchi         [EMAIL PROTECTED] 
+        Leo Simons                [EMAIL PROTECTED]                 
+
+Copyright:
+
+/*
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+ 
+*/
+
diff -Nur --exclude={arch} --exclude=.arch-ids 
avalon-framework-mainline/debian/dirs avalon-framework-debian/debian/dirs
--- avalon-framework-mainline/debian/dirs       1970-01-01 01:00:00.000000000 
+0100
+++ avalon-framework-debian/debian/dirs 2004-07-07 09:13:40.000000000 +0200
@@ -0,0 +1 @@
+usr/share/java
diff -Nur --exclude={arch} --exclude=.arch-ids 
avalon-framework-mainline/debian/docs avalon-framework-debian/debian/docs
--- avalon-framework-mainline/debian/docs       1970-01-01 01:00:00.000000000 
+0100
+++ avalon-framework-debian/debian/docs 2004-07-07 09:13:40.000000000 +0200
@@ -0,0 +1 @@
+NOTICE.TXT
diff -Nur --exclude={arch} --exclude=.arch-ids 
avalon-framework-mainline/debian/libavalon-framework-java-doc.docs 
avalon-framework-debian/debian/libavalon-framework-java-doc.docs
--- avalon-framework-mainline/debian/libavalon-framework-java-doc.docs  
1970-01-01 01:00:00.000000000 +0100
+++ avalon-framework-debian/debian/libavalon-framework-java-doc.docs    
2004-07-07 09:13:40.000000000 +0200
@@ -0,0 +1,2 @@
+doc/*
+NOTICE.TXT
diff -Nur --exclude={arch} --exclude=.arch-ids 
avalon-framework-mainline/debian/libavalon-framework-java.files 
avalon-framework-debian/debian/libavalon-framework-java.files
--- avalon-framework-mainline/debian/libavalon-framework-java.files     
1970-01-01 01:00:00.000000000 +0100
+++ avalon-framework-debian/debian/libavalon-framework-java.files       
2004-07-07 09:13:40.000000000 +0200
@@ -0,0 +1 @@
+usr/share/java/avalon-framework.jar
diff -Nur --exclude={arch} --exclude=.arch-ids 
avalon-framework-mainline/debian/libavalon-framework-java.links 
avalon-framework-debian/debian/libavalon-framework-java.links
--- avalon-framework-mainline/debian/libavalon-framework-java.links     
1970-01-01 01:00:00.000000000 +0100
+++ avalon-framework-debian/debian/libavalon-framework-java.links       
2004-07-07 09:13:40.000000000 +0200
@@ -0,0 +1 @@
+usr/share/java/avalon-framework-4.2.0.jar usr/share/java/avalon-framework.jar
diff -Nur --exclude={arch} --exclude=.arch-ids 
avalon-framework-mainline/debian/rules avalon-framework-debian/debian/rules
--- avalon-framework-mainline/debian/rules      1970-01-01 01:00:00.000000000 
+0100
+++ avalon-framework-debian/debian/rules        2004-07-07 09:13:40.000000000 
+0200
@@ -0,0 +1,24 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+# Directories to look for JAVA_HOME (JDK 1.4+ required!)
+JAVA_HOME_DIRS := /usr/lib/j2se/1.4 /usr/lib/j2sdk1.4
+ANT_HOME := /usr/share/ant1.5
+
+# Additional JARs to add to the class path, either full path or just the
+# basename for JARs in /usr/share/java. The ".jar" suffix may also be ommitted
+DEB_JARS := logkit log4j-1.2
+
+# Ant targets to call
+DEB_ANT_BUILD_TARGET := jar doc
+
+LIBRARY_PACKAGE := avalon-framework
+API_VERSION     := 4.2.0
+
+install/lib$(LIBRARY_PACKAGE)-java::
+       install -m 644 dist/$(LIBRARY_PACKAGE).jar 
debian/$(cdbs_curpkg)/usr/share/java/$(LIBRARY_PACKAGE)-$(API_VERSION).jar
+       ln -s $(LIBRARY_PACKAGE)-$(API_VERSION).jar 
debian/$(cdbs_curpkg)/usr/share/java/$(LIBRARY_PACKAGE).jar
+       install -m 644 dist/$(LIBRARY_PACKAGE)-api.jar 
debian/$(cdbs_curpkg)/usr/share/java/$(LIBRARY_PACKAGE)-api-$(API_VERSION).jar
+       ln -s $(LIBRARY_PACKAGE)-api-$(API_VERSION).jar 
debian/$(cdbs_curpkg)/usr/share/java/$(LIBRARY_PACKAGE)-api.jar

--===============0914897623==--

---------------------------------------
Received: (at 258023-close) by bugs.debian.org; 5 Oct 2005 23:08:03 +0000
>From [EMAIL PROTECTED] Wed Oct 05 16:08:03 2005
Return-path: <[EMAIL PROTECTED]>
Received: from joerg by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1ENIKE-0007Ni-00; Wed, 05 Oct 2005 16:05:26 -0700
From: Wolfgang Baer <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.30 $
Subject: Bug#258023: fixed in avalon-framework 4.2.0-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Joerg Jaspert <[EMAIL PROTECTED]>
Date: Wed, 05 Oct 2005 16:05:26 -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=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 2

Source: avalon-framework
Source-Version: 4.2.0-1

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

avalon-framework_4.2.0-1.diff.gz
  to pool/main/a/avalon-framework/avalon-framework_4.2.0-1.diff.gz
avalon-framework_4.2.0-1.dsc
  to pool/main/a/avalon-framework/avalon-framework_4.2.0-1.dsc
avalon-framework_4.2.0.orig.tar.gz
  to pool/main/a/avalon-framework/avalon-framework_4.2.0.orig.tar.gz
libavalon-framework-java-doc_4.2.0-1_all.deb
  to pool/main/a/avalon-framework/libavalon-framework-java-doc_4.2.0-1_all.deb
libavalon-framework-java_4.2.0-1_all.deb
  to pool/main/a/avalon-framework/libavalon-framework-java_4.2.0-1_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Wolfgang Baer <[EMAIL PROTECTED]> (supplier of updated avalon-framework 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: Mon, 26 Sep 2005 20:31:56 +0200
Source: avalon-framework
Binary: libavalon-framework-java-doc libavalon-framework-java
Architecture: source all
Version: 4.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
<[email protected]>
Changed-By: Wolfgang Baer <[EMAIL PROTECTED]>
Description: 
 libavalon-framework-java - Common framework for Java server applications
 libavalon-framework-java-doc - Documentation for Avalon framework
Closes: 230362 258023 301192 326697
Changes: 
 avalon-framework (4.2.0-1) unstable; urgency=low
 .
   * Move to main
   * New upstream release (closes: #258023)
   * Aknowledge NMU (closes: #301192)
   * Fixed build dependencies (closes: #326697)
   * Changed copyright to reflect new Apache 2.0 license
   * Changed build system to cdbs - parts taken from patch provided
     by Thomas Girard <[EMAIL PROTECTED]>
   * Added kaffe | java1-runtime | java2-runtime as dependency
   * Run testsuite during build - currently one test is failing
     against classpath derived vm's. Patch submitted to upstream.
   * Standards-Version 3.6.2 (no changes)
   * Changed maintainer to debian-java maintainers
   * Add myself to uploaders
   * javadoc is build now (closes: #230362) and registered with doc-base
Files: 
 86d49fe11836cc411e4ac7f2c0151569 842 libs optional avalon-framework_4.2.0-1.dsc
 fd42e4ed9d9cd7a4d2e7fca7ab8e847f 68887 libs optional 
avalon-framework_4.2.0.orig.tar.gz
 21d5a55aa9aaeb17aa3c2c25ff0755b7 6367 libs optional 
avalon-framework_4.2.0-1.diff.gz
 4f6c49cfc4124f063314385fde1c95b9 72292 libs optional 
libavalon-framework-java_4.2.0-1_all.deb
 aeb4e5acd95079e782d5b8bd3102e44d 110930 libs optional 
libavalon-framework-java-doc_4.2.0-1_all.deb

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

iD8DBQFDPtClStlRaw+TLJwRAs62AJ9nVRaElmhGbQhiUPl6sKoTBaX6QQCgt6yO
REZgwSmMoGb37E+y51DVyx0=
=hXAq
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to