Your message dated Wed, 05 May 2010 10:51:32 +0000
with message-id <[email protected]>
and subject line Bug#577612: fixed in hadoop 0.20.2+dfsg1-2
has caused the Debian Bug report #577612,
regarding hadoop: [debconf_rewrite] Debconf templates and debian/control review
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
577612: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577612
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: hadoop
Version: N/A
Severity: normal
Tags: patch
Dear Debian maintainer,
On Friday, March 26, 2010, I notified you of the beginning of a review process
concerning debconf templates for hadoop.
The debian-l10n-english contributors have now reviewed these templates,
and the proposed changes are attached to this bug report.
Please review the suggested changes, and if you have any
objections, let me know in the next 3 days.
However, please try to avoid uploading hadoop with these changes
right now.
The second phase of this process will begin on Friday, April 16, 2010, when I
will
coordinate updates to translations of debconf templates.
The existing translators will be notified of the changes: they will
receive an updated PO file for their language.
Simultaneously, a general call for new translations will be sent to
the debian-i18n mailing list.
Both these calls for translations will request updates to be sent as
individual bug reports. That will probably trigger a lot of bug
reports against your package, but these should be easier to deal with.
The call for translation updates and new translations will run until
about Friday, May 07, 2010. Please avoid uploading a package with fixed or
changed
debconf templates and/or translation updates in the meantime. Of
course, other changes are safe.
Please note that this is an approximative delay, which depends on my
own availability to process this work and is influenced by the fact
that I simultaneously work on many packages.
Around Saturday, May 08, 2010, I will contact you again and will send a final
patch
summarizing all the updates (changes to debconf templates,
updates to debconf translations and new debconf translations).
Again, thanks for your attention and cooperation.
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.32-3-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
--- hadoop.old/debian/hadoop-namenoded.templates 2010-03-22
09:56:11.717948376 +0100
+++ hadoop/debian/hadoop-namenoded.templates 2010-04-13 07:16:51.506026053
+0200
@@ -1,17 +1,25 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# [email protected] for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
Template: hadoop-namenoded/format
Type: boolean
Default: false
-_Description: Should the namenode's filesystem be formatted now?
- The namenode manages the Hadoop Distributed FileSystem (HDFS). Like a
- normal filesystem, it needs to be formatted prior to first use. If the
- HDFS filesystem is not formatted, the namenode daemon will fail to
+_Description: Should namenoded's file system be formatted?
+ The Name Node daemon manages the Hadoop Distributed File System (HDFS).
+ Like a normal file system, it needs to be formatted prior to first use.
+ If the HDFS file system is not formatted, the Name Node will fail to
start.
.
- This operation does not affect the "normal" filesystem on this
- computer. If you're using HDFS for the first time and don't have data
- from previous installations on this computer, it should be save to
- proceed with yes.
+ This operation does not affect other file systems on this
+ computer. You can safely choose to format the file system if you're
+ using HDFS for the first time and don't have data from previous
+ installations on this computer.
.
- You can later on format the filesystem yourself with
- .
- su -c"hadoop namenode -format" hadoop
+ If you choose not to format the file system right now, you can do it
+ later by executing "hadoop namenode -format" as the user "hadoop".
--- hadoop.old/debian/control 2010-03-22 09:56:11.717948376 +0100
+++ hadoop/debian/control 2010-03-31 06:59:53.610677495 +0200
@@ -29,7 +29,7 @@
Package: libhadoop-java
Architecture: all
-Depends: ${misc:Depends},
+Depends: ${misc:Depends},
libcommons-cli-java,
libcommons-codec-java,
libcommons-el-java,
@@ -44,20 +44,46 @@
libslf4j-java,
libxmlenc-java
Suggests: libhsqldb-java
-Description: software platform for processing vast amounts of data
- This package contains the core java libraries.
+Description: data-intensive clustering framework - Java libraries
+ Hadoop is a software platform for writing and running applications
+ that process vast amounts of data on a distributed file system.
+ .
+ Here's what makes Hadoop especially useful:
+ * Scalable: Hadoop can reliably store and process petabytes.
+ * Economical: It distributes the data and processing across clusters
+ of commonly available computers. These clusters can number
+ into the thousands of nodes.
+ * Efficient: By distributing the data, Hadoop can process it in parallel
+ on the nodes where the data is located. This makes it
+ extremely rapid.
+ * Reliable: Hadoop automatically maintains multiple copies of data and
+ automatically redeploys computing tasks based on failures.
+ .
+ This package contains the core Java libraries.
Package: libhadoop-index-java
Architecture: all
Depends: ${misc:Depends}, libhadoop-java (= ${binary:Version}),
liblucene2-java
-Description: Hadoop contrib to create lucene indexes
- This contrib package provides a utility to build or update an index
- using Map/Reduce.
- .
- A distributed "index" is partitioned into "shards". Each shard corresponds
- to a Lucene instance. org.apache.hadoop.contrib.index.main.UpdateIndex
- contains the main() method which uses a Map/Reduce job to analyze documents
+Description: data-intensive clustering framework - Lucene index support
+ Hadoop is a software platform for writing and running applications
+ that process vast amounts of data on a distributed file system.
+ .
+ Here's what makes Hadoop especially useful:
+ * Scalable: Hadoop can reliably store and process petabytes.
+ * Economical: It distributes the data and processing across clusters
+ of commonly available computers. These clusters can number
+ into the thousands of nodes.
+ * Efficient: By distributing the data, Hadoop can process it in parallel
+ on the nodes where the data is located. This makes it
+ extremely rapid.
+ * Reliable: Hadoop automatically maintains multiple copies of data and
+ automatically redeploys computing tasks based on failures.
+ .
+ The org.apache.hadoop.contrib.index.main.UpdateIndex library provides
+ support for managing an index using MapReduce. A distributed "index" is
+ partitioned into "shards", each corresponding to a Lucene instance.
+ This library's main() method uses a MapReduce job to analyze documents
and update Lucene instances in parallel.
Package: hadoop-bin
@@ -65,9 +91,9 @@
Architecture: all
Depends: ${misc:Depends}, libhadoop-java (= ${binary:Version}),
default-jre-headless | java6-runtime-headless
-Description: software platform for processing vast amounts of data
- Hadoop is a software platform that lets one easily write and
- run applications that process vast amounts of data.
+Description: data-intensive clustering framework - tools
+ Hadoop is a software platform for writing and running applications
+ that process vast amounts of data on a distributed file system.
.
Here's what makes Hadoop especially useful:
* Scalable: Hadoop can reliably store and process petabytes.
@@ -86,33 +112,73 @@
nodes around the cluster. MapReduce can then process the data where it is
located.
.
- This package contains the hadoop shell interface. See the packages hadoop-.*d
- for the hadoop daemons.
+ This package provides the hadoop command line interface. See the hadoop-.*d
+ packages for the Hadoop daemons.
Package: hadoop-daemons-common
Section: misc
Architecture: all
Depends: ${misc:Depends}, hadoop-bin (= ${binary:Version}), daemon, adduser,
lsb-base (>= 3.2-14)
-Description: Creates user and directories for hadoop daemons
- Prepares some common things for all hadoop daemon packages:
- * creates the user hadoop
- * creates data and log directories owned by the hadoop user
- * manages the update-alternatives mechanism for hadoop configuration
- * brings in the common dependencies
+Description: data-intensive clustering framework - common files
+ Hadoop is a software platform for writing and running applications
+ that process vast amounts of data on a distributed file system.
+ .
+ Here's what makes Hadoop especially useful:
+ * Scalable: Hadoop can reliably store and process petabytes.
+ * Economical: It distributes the data and processing across clusters
+ of commonly available computers. These clusters can number
+ into the thousands of nodes.
+ * Efficient: By distributing the data, Hadoop can process it in parallel
+ on the nodes where the data is located. This makes it
+ extremely rapid.
+ * Reliable: Hadoop automatically maintains multiple copies of data and
+ automatically redeploys computing tasks based on failures.
+ .
+ This package provides infrastructure for the Hadoop daemon packages,
+ creating the hadoop user (with data and log directories) and maintaining
+ the update-alternatives mechanism for hadoop configuration.
Package: libhadoop-java-doc
Section: doc
Architecture: all
Depends: ${misc:Depends}, libhadoop-java (= ${binary:Version})
-Description: Contains the javadoc for hadoop
- contains the api documentation of hadoop
+Description: data-intensive clustering framework - Java documentation
+ Hadoop is a software platform for writing and running applications
+ that process vast amounts of data on a distributed file system.
+ .
+ Here's what makes Hadoop especially useful:
+ * Scalable: Hadoop can reliably store and process petabytes.
+ * Economical: It distributes the data and processing across clusters
+ of commonly available computers. These clusters can number
+ into the thousands of nodes.
+ * Efficient: By distributing the data, Hadoop can process it in parallel
+ on the nodes where the data is located. This makes it
+ extremely rapid.
+ * Reliable: Hadoop automatically maintains multiple copies of data and
+ automatically redeploys computing tasks based on failures.
+ .
+ This package provides the API documentation of Hadoop.
Package: hadoop-tasktrackerd
Section: misc
Architecture: all
Depends: ${misc:Depends}, hadoop-daemons-common (= ${binary:Version})
-Description: Task Tracker for Hadoop
+Description: data-intensive clustering framework - Task Tracker
+ Hadoop is a software platform for writing and running applications
+ that process vast amounts of data on a distributed file system.
+ .
+ Here's what makes Hadoop especially useful:
+ * Scalable: Hadoop can reliably store and process petabytes.
+ * Economical: It distributes the data and processing across clusters
+ of commonly available computers. These clusters can number
+ into the thousands of nodes.
+ * Efficient: By distributing the data, Hadoop can process it in parallel
+ on the nodes where the data is located. This makes it
+ extremely rapid.
+ * Reliable: Hadoop automatically maintains multiple copies of data and
+ automatically redeploys computing tasks based on failures.
+ .
The Task Tracker is the Hadoop service that accepts MapReduce tasks and
computes results. Each node in a Hadoop cluster that should be doing
computation should run a Task Tracker.
@@ -121,34 +187,90 @@
Section: misc
Architecture: all
Depends: ${misc:Depends}, hadoop-daemons-common (= ${binary:Version})
-Description: Job Tracker for Hadoop
- The jobtracker is a central service which is responsible for managing
- the tasktracker services running on all nodes in a Hadoop Cluster.
- The jobtracker allocates work to the tasktracker nearest to the data
+Description: data-intensive clustering framework - Job Tracker
+ Hadoop is a software platform for writing and running applications
+ that process vast amounts of data on a distributed file system.
+ .
+ Here's what makes Hadoop especially useful:
+ * Scalable: Hadoop can reliably store and process petabytes.
+ * Economical: It distributes the data and processing across clusters
+ of commonly available computers. These clusters can number
+ into the thousands of nodes.
+ * Efficient: By distributing the data, Hadoop can process it in parallel
+ on the nodes where the data is located. This makes it
+ extremely rapid.
+ * Reliable: Hadoop automatically maintains multiple copies of data and
+ automatically redeploys computing tasks based on failures.
+ .
+ The Job Tracker is a central service which is responsible for managing
+ the Task Tracker services running on all nodes in an Hadoop Cluster.
+ The Job Tracker allocates work to the Task Tracker nearest to the data
with an available work slot.
Package: hadoop-namenoded
Section: misc
Architecture: all
Depends: ${misc:Depends}, hadoop-daemons-common (= ${binary:Version})
-Description: Name Node for Hadoop
- The Hadoop Distributed Filesystem (HDFS) requires one unique server, the
- namenode, which manages the block locations of files on the filesystem.
+Description: data-intensive clustering framework - Name Node
+ Hadoop is a software platform for writing and running applications
+ that process vast amounts of data on a distributed file system.
+ .
+ Here's what makes Hadoop especially useful:
+ * Scalable: Hadoop can reliably store and process petabytes.
+ * Economical: It distributes the data and processing across clusters
+ of commonly available computers. These clusters can number
+ into the thousands of nodes.
+ * Efficient: By distributing the data, Hadoop can process it in parallel
+ on the nodes where the data is located. This makes it
+ extremely rapid.
+ * Reliable: Hadoop automatically maintains multiple copies of data and
+ automatically redeploys computing tasks based on failures.
+ .
+ The Hadoop Distributed File System (HDFS) requires one unique server, the
+ Name Node, which manages the block locations of files on the file system.
Package: hadoop-secondarynamenoded
Section: misc
Architecture: all
Depends: ${misc:Depends}, hadoop-daemons-common (= ${binary:Version})
-Description: Secondary Name Node for Hadoop
- The Secondary Name Node is responsible for checkpointing file system images.
- It is _not_ a failover pair for the namenode, and may safely be run on the
- same machine.
+Description: data-intensive clustering framework - secondary Name Node
+ Hadoop is a software platform for writing and running applications
+ that process vast amounts of data on a distributed file system.
+ .
+ Here's what makes Hadoop especially useful:
+ * Scalable: Hadoop can reliably store and process petabytes.
+ * Economical: It distributes the data and processing across clusters
+ of commonly available computers. These clusters can number
+ into the thousands of nodes.
+ * Efficient: By distributing the data, Hadoop can process it in parallel
+ on the nodes where the data is located. This makes it
+ extremely rapid.
+ * Reliable: Hadoop automatically maintains multiple copies of data and
+ automatically redeploys computing tasks based on failures.
+ .
+ The secondary Name Node is responsible for checkpointing file system images.
+ It is _not_ a failover partner for the name node, and may safely be run on
+ the same machine.
Package: hadoop-datanoded
Section: misc
Architecture: all
Depends: ${misc:Depends}, hadoop-daemons-common (= ${binary:Version})
-Description: Data Node for Hadoop
+Description: data-intensive clustering framework - Data Node
+ Hadoop is a software platform for writing and running applications
+ that process vast amounts of data on a distributed file system.
+ .
+ Here's what makes Hadoop especially useful:
+ * Scalable: Hadoop can reliably store and process petabytes.
+ * Economical: It distributes the data and processing across clusters
+ of commonly available computers. These clusters can number
+ into the thousands of nodes.
+ * Efficient: By distributing the data, Hadoop can process it in parallel
+ on the nodes where the data is located. This makes it
+ extremely rapid.
+ * Reliable: Hadoop automatically maintains multiple copies of data and
+ automatically redeploys computing tasks based on failures.
+ .
The Data Nodes in the Hadoop Cluster are responsible for serving up
- blocks of data over the network to Hadoop Distributed Filesystem
+ blocks of data over the network to Hadoop Distributed File System
(HDFS) clients.
--- End Message ---
--- Begin Message ---
Source: hadoop
Source-Version: 0.20.2+dfsg1-2
We believe that the bug you reported is fixed in the latest version of
hadoop, which is due to be installed in the Debian FTP archive:
hadoop-bin_0.20.2+dfsg1-2_all.deb
to main/h/hadoop/hadoop-bin_0.20.2+dfsg1-2_all.deb
hadoop-daemons-common_0.20.2+dfsg1-2_all.deb
to main/h/hadoop/hadoop-daemons-common_0.20.2+dfsg1-2_all.deb
hadoop-datanoded_0.20.2+dfsg1-2_all.deb
to main/h/hadoop/hadoop-datanoded_0.20.2+dfsg1-2_all.deb
hadoop-jobtrackerd_0.20.2+dfsg1-2_all.deb
to main/h/hadoop/hadoop-jobtrackerd_0.20.2+dfsg1-2_all.deb
hadoop-namenoded_0.20.2+dfsg1-2_all.deb
to main/h/hadoop/hadoop-namenoded_0.20.2+dfsg1-2_all.deb
hadoop-secondarynamenoded_0.20.2+dfsg1-2_all.deb
to main/h/hadoop/hadoop-secondarynamenoded_0.20.2+dfsg1-2_all.deb
hadoop-tasktrackerd_0.20.2+dfsg1-2_all.deb
to main/h/hadoop/hadoop-tasktrackerd_0.20.2+dfsg1-2_all.deb
hadoop_0.20.2+dfsg1-2.debian.tar.gz
to main/h/hadoop/hadoop_0.20.2+dfsg1-2.debian.tar.gz
hadoop_0.20.2+dfsg1-2.dsc
to main/h/hadoop/hadoop_0.20.2+dfsg1-2.dsc
libhadoop-index-java_0.20.2+dfsg1-2_all.deb
to main/h/hadoop/libhadoop-index-java_0.20.2+dfsg1-2_all.deb
libhadoop-java-doc_0.20.2+dfsg1-2_all.deb
to main/h/hadoop/libhadoop-java-doc_0.20.2+dfsg1-2_all.deb
libhadoop-java_0.20.2+dfsg1-2_all.deb
to main/h/hadoop/libhadoop-java_0.20.2+dfsg1-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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Thomas Koch <[email protected]> (supplier of updated hadoop 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.8
Date: Wed, 28 Apr 2010 11:21:43 +0200
Source: hadoop
Binary: libhadoop-java libhadoop-index-java hadoop-bin hadoop-daemons-common
libhadoop-java-doc hadoop-tasktrackerd hadoop-jobtrackerd hadoop-namenoded
hadoop-secondarynamenoded hadoop-datanoded
Architecture: source all
Version: 0.20.2+dfsg1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers
<[email protected]>
Changed-By: Thomas Koch <[email protected]>
Description:
hadoop-bin - data-intensive clustering framework - tools
hadoop-daemons-common - data-intensive clustering framework - common files
hadoop-datanoded - data-intensive clustering framework - Data Node
hadoop-jobtrackerd - data-intensive clustering framework - Job Tracker
hadoop-namenoded - data-intensive clustering framework - Name Node
hadoop-secondarynamenoded - data-intensive clustering framework - secondary
Name Node
hadoop-tasktrackerd - data-intensive clustering framework - Task Tracker
libhadoop-index-java - data-intensive clustering framework - Lucene index
support
libhadoop-java - data-intensive clustering framework - Java libraries
libhadoop-java-doc - data-intensive clustering framework - Java documentation
Closes: 575479 577612 578134 578220 578248 578536 579301 579354 579629 579823
Changes:
hadoop (0.20.2+dfsg1-2) unstable; urgency=low
.
* mv d/README d/README.Debian. (Closes:575479)
* corrected typos in manpage, list filesystem commands.
* make d/common-init.sh more abstract for hbase
* removed remaining three patches from clouderas series
* applied HADOOP-4675 to support ganglia version 3.1
.
* Debconf templates and debian/control reviewed by the debian-l10n-
english team as part of the Smith review project. Closes: #577612
* [Debconf translation updates]
* Vietnamese (Clytie Siddall). Closes: #578134
* Russian (Yuri Kozlov). Closes: #578220
* Portuguese (Pedro Ribeiro). Closes: #578248
* Czech (Michal Simunek). Closes: #578536
* Swedish (Martin Bagge). Closes: #579301
* French (Alexandre Hoïd). Closes: #579354
* Spanish (Francisco Javier Cuadrado). Closes: #579629
* German (Martin Eberhard Schauer). Closes: #579823
Checksums-Sha1:
1fabb5977e8ff0f18fad5efd8e3bf58dc98b7289 1817 hadoop_0.20.2+dfsg1-2.dsc
0da17b7eba2d1b6ad3a19d3f860483229bea5070 34450
hadoop_0.20.2+dfsg1-2.debian.tar.gz
947fda765e45e7c25e27d8fc763b682fd6ba8c7c 2883140
libhadoop-java_0.20.2+dfsg1-2_all.deb
430bd502f6d59d9990dcbf704409e2f00c9bfea8 57436
libhadoop-index-java_0.20.2+dfsg1-2_all.deb
df62ac3c7bf645c9c49bcbe65bb6cd90434b34ef 8352 hadoop-bin_0.20.2+dfsg1-2_all.deb
5c1b87f23928c4868d5e6494766983d696529462 35886
hadoop-daemons-common_0.20.2+dfsg1-2_all.deb
0574de169283fc3e45908bb6e1fc7d52cc6ac3b0 1827058
libhadoop-java-doc_0.20.2+dfsg1-2_all.deb
c2276a24382ac593d4a38c19026908cd75f5c7dc 1988
hadoop-tasktrackerd_0.20.2+dfsg1-2_all.deb
cafbda4eaba8fc649e00335c767caa221ee180d0 2020
hadoop-jobtrackerd_0.20.2+dfsg1-2_all.deb
d19223351f4d3a3adca8b17e33d0b888c7a82358 5660
hadoop-namenoded_0.20.2+dfsg1-2_all.deb
a0c6c9cf304c39027355d9b430ef6118925f0fe8 2032
hadoop-secondarynamenoded_0.20.2+dfsg1-2_all.deb
a9ccb0a360beb2270969c1867e6686a8f5a387bc 1980
hadoop-datanoded_0.20.2+dfsg1-2_all.deb
Checksums-Sha256:
7d848de5bc3eb998449c1d003d2f2f01051377a4afddc07141ed17bed3601a6d 1817
hadoop_0.20.2+dfsg1-2.dsc
4daaa8891d1e6a56dc1f2dac8c594dcc61cba5279d63b00c8f3cdef7e36f4259 34450
hadoop_0.20.2+dfsg1-2.debian.tar.gz
43866eef3d80858b5a1de89d431aed490443ac580cba6c51a9d19d5fca16fd9d 2883140
libhadoop-java_0.20.2+dfsg1-2_all.deb
942c14fdd56394bc4c66c030752bcb394d4980a4c19837f658130cfbd8733b03 57436
libhadoop-index-java_0.20.2+dfsg1-2_all.deb
b3eb1877094e143c1ce8a03a93ebd51a9a90749cfd79569c2cb7f0a98a537ecc 8352
hadoop-bin_0.20.2+dfsg1-2_all.deb
a08460b797d295102e95f1cf9946cb17c17afd538f06bd69d6501ed23d065542 35886
hadoop-daemons-common_0.20.2+dfsg1-2_all.deb
095b3a2fe4a86c773e62922d36b626c5ab97d7ed6a4f0d12b55dd71705137aa8 1827058
libhadoop-java-doc_0.20.2+dfsg1-2_all.deb
10025fbafc74d546beac5078ef6bfeb3ce1d5db6e81471ed18dbd588cfdd21f2 1988
hadoop-tasktrackerd_0.20.2+dfsg1-2_all.deb
52bd330b368283f9690a727548c6e3e53105206f618fd4dc1c7b4b434958977e 2020
hadoop-jobtrackerd_0.20.2+dfsg1-2_all.deb
c4888a070846d2cc0ed16343012332571f1e7c0f1fdde47fb148579fd61dc75c 5660
hadoop-namenoded_0.20.2+dfsg1-2_all.deb
7b68b9dfe9480a547e8d0b34d7b1da05b3daae245a5055fd2388fa6af30d8cf2 2032
hadoop-secondarynamenoded_0.20.2+dfsg1-2_all.deb
6ff057e1cf962f4ccd65893349664e3fe132063d9a51e6796c6ff82edda839fd 1980
hadoop-datanoded_0.20.2+dfsg1-2_all.deb
Files:
5cc4c2cf3132b13c1dac4891169afb8c 1817 java optional hadoop_0.20.2+dfsg1-2.dsc
2973a30b90c21c116e0b128048666cdc 34450 java optional
hadoop_0.20.2+dfsg1-2.debian.tar.gz
38ba8423c138b641bd4c62fc26de180c 2883140 java optional
libhadoop-java_0.20.2+dfsg1-2_all.deb
6694f34aa0bb08a06790410f5d4b5c2c 57436 java optional
libhadoop-index-java_0.20.2+dfsg1-2_all.deb
cf043e3d15ead094422ab8d4f5e930dc 8352 misc optional
hadoop-bin_0.20.2+dfsg1-2_all.deb
923cae04782baf5f323481febf57247f 35886 misc optional
hadoop-daemons-common_0.20.2+dfsg1-2_all.deb
13a0ae8a290c26469a4ad1e2074149d9 1827058 doc optional
libhadoop-java-doc_0.20.2+dfsg1-2_all.deb
c26c68a0a8ff7f129ecc12836dae6c24 1988 misc optional
hadoop-tasktrackerd_0.20.2+dfsg1-2_all.deb
5d9183cb6654c480abc1c1cfa0a400f4 2020 misc optional
hadoop-jobtrackerd_0.20.2+dfsg1-2_all.deb
68b44e5b58dbfddfc531151bd05219c0 5660 misc optional
hadoop-namenoded_0.20.2+dfsg1-2_all.deb
79caa17d3db4b737241d601767d69232 2032 misc optional
hadoop-secondarynamenoded_0.20.2+dfsg1-2_all.deb
a60a15d30a8bb6da834143704f27d174 1980 misc optional
hadoop-datanoded_0.20.2+dfsg1-2_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iEYEARECAAYFAkvhRacACgkQiOXXM92JlhCiUgCfXUqzvXkhl8S9GHweEidIXOa0
BX0AoKWO+808Jl9KzLCmlmsQsj7uwn5Y
=jBg2
-----END PGP SIGNATURE-----
--- End Message ---
__
This is the maintainer address of Debian's Java team
<http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers>. Please
use
[email protected] for discussions and questions.