<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "http://bugs.gentoo.org/bugzilla.dtd">

<bugzilla version="2.22.7"
          urlbase="http://bugs.gentoo.org/"
          maintainer="bugzilla@gentoo.org"
>

    <bug>
          <bug_id>120163</bug_id>
          
          <creation_ts>2006-01-24 04:05 0000</creation_ts>
          <short_desc>itpp-3.9.0.ebuild - new ebuild for the IT++ library</short_desc>
          <delta_ts>2006-01-30 14:43:29 0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>Gentoo Linux</product>
          <component>Ebuilds</component>
          <version>2005.1</version>
          <rep_platform>All</rep_platform>
          <op_sys>Linux</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          <bug_file_loc>http://itpp.sourceforge.net/</bug_file_loc>
          
          <keywords>EBUILD</keywords>
          <priority>P2</priority>
          <bug_severity>enhancement</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          
          <everconfirmed>1</everconfirmed>
          <reporter>ediap@users.sourceforge.net</reporter>
          <assigned_to>sci@gentoo.org</assigned_to>
          <cc>sci@gentoo.org</cc>

      

      
          <long_desc isprivate="0">
            <who>ediap@users.sourceforge.net</who>
            <bug_when>2006-01-24 04:05:31 0000</bug_when>
            <thetext>Dear Gentoo Devs,

I have prepared an ebuild for a library named IT++, since it is not in portage yet.

The IT++ library is a C++ library of mathematical, signal processing, speech processing, and communications classes and functions. It is being developed by researchers in these areas and is widely used by researchers, both in the communications industry and universities.
The kernel of the IT++ library are templated vector and matrix classes, and lots of functions for vectors and matrices. Such a kernel makes IT++ library similar to Matlab or Octave.

The attached ebuild depends on a few sci-libs libraries (fftw, blas-atlas and lapack), but can be compiled without them as well.

BTW, I am one of the developers and a Gentoo fan as well, so I will try to maintain the ebuild in future.

Best regards,

/ediap</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>ediap@users.sourceforge.net</who>
            <bug_when>2006-01-24 04:06:35 0000</bug_when>
            <thetext>Created an attachment (id=77984)
An ebuild for the IT++ 3.9.0 library

</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>george@gentoo.org</who>
            <bug_when>2006-01-27 15:02:02 0000</bug_when>
            <thetext>Adam,
Thanks for a submission!

I just glanced at ebuild and it seems reasonable, just two questions:

1. does it strictly require blas-atlas? Can it not work with blas-reference as well? If yes it would be better to make it depend on virtual/blas instead.

2. if [ -z `which g77` ]; then  should probably be replaced with whatever plays well with fortran.eclass. Unfortunately I did not follow its development closely lately, so I&apos;ll leave the details to you and people involved with eclass, however my understanding is that you need to use eclass provided tests instead.

Unfortunately I cannot looks at this closer now, but you should have received CC of my forwarding of your email already, so I won&apos;t reiterate..

George</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>ediap@users.sourceforge.net</who>
            <bug_when>2006-01-27 15:21:27 0000</bug_when>
            <thetext>George,

Thank you for having a look at this ebuild. Answering to your questions comments:

1) The dependency on blas-atlas is due to the fact that it is recommended that IT++ uses CBLAS, which is provided by atlas in Gentoo. Unfortunately CBLAS not provided by virtual/blas. It is possible to compile the library without CBLAS, but some internal functions will have reduced performance.
The best solution would be to add CBLAS interface to blas-reference package. Or create a separate package, which will provide virtual/cblas and depend on blas-reference.

2) I will look into this fortran.eclass and try to adapt the fortran compiler checks using this...

BTW, a bug-fix release (version 3.9.1) should appear soon (we hope in January), so I will try to fix issue 2) by the way of bumping the ebuild.

Best regards,

/ediap</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>markusle@gentoo.org</who>
            <bug_when>2006-01-28 08:44:08 0000</bug_when>
            <thetext>Created an attachment (id=78358)
small changes to itpp-3.9.0.ebuild

Hi Adam,

I had a look at your ebuild and it looks fine besides a few small changes:

- I currently don&apos;t see why we need g77 to compile itpp; looking at the compile
  log I only see c++ code. Could you comment on this?
- With USE=&quot;doc&quot; we need doxygen which I&apos;ve added to DEPEND.

Please have a look at the changes, give it a a try and let me know what you
think.

Thanks,
Markus</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>ediap@users.sourceforge.net</who>
            <bug_when>2006-01-28 13:48:20 0000</bug_when>
            <thetext>Dear Markus,

Thanks for your comments and a patch. Concerning your questions:

- g77 or gfortran compiler is needed because it is recommended that IT++ usees blas and lapack libraries. In order to link to these libraries one need to use some special flags for linker. These flags are set in the FLIBS variable by the autoconf&apos;s macro AC_F77_LIBRARY_LDFLAGS. And this macro requires a fortran compiler; I guess, the same one, which blas and lapack libraries have been compiled with.
Therefore, I readded the check for a fortran compiler. This time, I used fortran.eclass&apos;s function `need_fortran()&apos;.

- beside Doxygen, TeTeX and Ghostscript are also required to build the documentation, so I added these packages to the DEPEND as well.

Please find the attached patch with my changes.

BTW, have you read my comment #3 concerning CBLAS? Is is possible to include CBLAS interface to blas-reference library and provide an extra virtual for CBLAS?

/ediap
</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>ediap@users.sourceforge.net</who>
            <bug_when>2006-01-28 13:51:29 0000</bug_when>
            <thetext>Created an attachment (id=78373)
patch for itpp-3.9.0.ebuild

</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>markusle@gentoo.org</who>
            <bug_when>2006-01-28 22:48:23 0000</bug_when>
            <thetext>Hi Adam,

Thanks for the patch and it looks good with two minor corrections:
- no need to explictly call &quot;need_fortran&quot; since this is the default
  action of pkg_setup() when inheriting the fortran.eclass
- we don&apos;t need virtual/ghostscript in DEPEND since this gets
 pulled in by doxygen.

I&apos;ll test it once more tomorrow and then move it into the tree
unless you have any objections.

I will have a look at the cblas/blas-reference stuff. For now we
can just go with depending on blas-atlas.

Thanks,
Markus
</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>ediap@users.sourceforge.net</who>
            <bug_when>2006-01-29 04:48:18 0000</bug_when>
            <thetext>Thanks Markus!

Because we released the IT++ 3.9.1 yesterday evening, I updated the ebuild, taking your comments into account. I have added one more switch to econf depending on blas flag, to assure that it is possible to totally switch off linking IT++ to blas/cblas.

BR,

/ediap</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>ediap@users.sourceforge.net</who>
            <bug_when>2006-01-29 04:49:45 0000</bug_when>
            <thetext>Created an attachment (id=78417)
itpp-3.9.1.ebuild - version bumped

</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>markusle@gentoo.org</who>
            <bug_when>2006-01-30 09:19:10 0000</bug_when>
            <thetext>Hi Adam,

Thanks for the ebuild and all your help! I just committed the itpp-3.9.1.ebuild
to CVS and I&apos;ll maintain the package. It would be great if you could keep
us posted on any changes/updates.

Thanks,
Markus</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>ediap@users.sourceforge.net</who>
            <bug_when>2006-01-30 14:43:29 0000</bug_when>
            <thetext>Thanks again!

I will of course inform you about further changes in the IT++ package. BTW, I look forward for any improvements in Gentoo concerning the CBLAS.

/ediap</thetext>
          </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="0"
              isprivate="0"
          >
            <attachid>77984</attachid>
            <date>2006-01-24 04:06 0000</date>
            <desc>An ebuild for the IT++ 3.9.0 library</desc>
            <filename>itpp-3.9.0.ebuild</filename>
            <type>text/plain</type>
            <data encoding="base64">IyBDb3B5cmlnaHQgMTk5OS0yMDA1IEdlbnRvbyBGb3VuZGF0aW9uCiMgRGlzdHJpYnV0ZWQgdW5k
ZXIgdGhlIHRlcm1zIG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZSB2MgojICRIZWFk
ZXI6ICQKCkRFU0NSSVBUSU9OPSJJVCsrIGlzIGEgQysrIGxpYnJhcnkgb2YgbWF0aGVtYXRpY2Fs
LCBzaWduYWwgcHJvY2Vzc2luZywgc3BlZWNoIHByb2Nlc3NpbmcsIGFuZCBjb21tdW5pY2F0aW9u
cyBjbGFzc2VzIGFuZCBmdW5jdGlvbnMiCkhPTUVQQUdFPSJodHRwOi8vaXRwcC5zb3VyY2Vmb3Jn
ZS5uZXQvIgpTUkNfVVJJPSJtaXJyb3I6Ly9zb3VyY2Vmb3JnZS8ke1BOfS8ke1B9LnRhci5neiIK
TElDRU5TRT0iR1BMLTIiClNMT1Q9IjAiCktFWVdPUkRTPSJ+eDg2IH5hbWQ2NCIKSVVTRT0iYmxh
cyBkZWJ1ZyBkb2MgZmZ0dyBsYXBhY2siCgpERVBFTkQ9ImZmdHc/ICggPj1zY2ktbGlicy9mZnR3
LTMuMC4wICkKCWJsYXM/ICggfnNjaS1saWJzL2JsYXMtYXRsYXMgKQoJbGFwYWNrPyAoIHZpcnR1
YWwvbGFwYWNrICkiCgpwa2dfc2V0dXAoKSB7CglpZiBbIC16IGB3aGljaCBnNzdgIF07IHRoZW4K
CQllZXJyb3IgIk5vIGZvcnRyYW4gY29tcGlsZXIgZm91bmQgb24gdGhlIHN5c3RlbSEiCgkJZWVy
cm9yICJQbGVhc2UgYWRkIGZvcnRyYW4gdG8geW91ciBVU0UgZmxhZ3MgYW5kIHJlZW1lcmdlIGdj
YyEiCgkJZGllCglmaQp9CgpzcmNfY29tcGlsZSgpIHsKCWxvY2FsIG15Y29uZj0iJCh1c2VfZW5h
YmxlIGRvYyBodG1sLWRvYykgXAoJCSQodXNlX2VuYWJsZSBkZWJ1ZyBkZWJ1ZykgXAoJCSQodXNl
X3dpdGggZmZ0dyBmZnR3KSBcCgkJJCh1c2Vfd2l0aCBibGFzIGNibGFzKSBcCgkJJCh1c2Vfd2l0
aCBsYXBhY2sgbGFwYWNrKSIKCWVjb25mICR7bXljb25mfSB8fCBkaWUgImVjb25mIGZhaWxlZCIK
CWVtYWtlIHx8IGRpZSAiZW1ha2UgZmFpbGVkIgp9CgpzcmNfaW5zdGFsbCgpIHsKCW1ha2UgaW5z
dGFsbCBERVNURElSPSR7RH0gfHwgZGllICJtYWtlIGluc3RhbGwgZmFpbGVkIgoJZG9kb2MgQVVU
SE9SUyBDaGFuZ2VMb2cgSU5TVEFMTCBORVdTIFJFQURNRSBUT0RPCn0KCg==
</data>        

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>78358</attachid>
            <date>2006-01-28 08:44 0000</date>
            <desc>small changes to itpp-3.9.0.ebuild</desc>
            <filename>itpp-3.9.0.ebuild.patch</filename>
            <type>text/plain</type>
            <data encoding="base64">LS0tIGl0cHAtMy45LjAuZWJ1aWxkLm9sZAkyMDA2LTAxLTI4IDEwOjMwOjIwLjAwMDAwMDAwMCAt
MDYwMAorKysgaXRwcC0zLjkuMC5lYnVpbGQJMjAwNi0wMS0yOCAxMDozNTo1NS4wMDAwMDAwMDAg
LTA2MDAKQEAgLTMsMzcgKzMsMzEgQEAKICMgJEhlYWRlcjogJAogCiBERVNDUklQVElPTj0iSVQr
KyBpcyBhIEMrKyBsaWJyYXJ5IG9mIG1hdGhlbWF0aWNhbCwgc2lnbmFsIHByb2Nlc3NpbmcsIHNw
ZWVjaCBwcm9jZXNzaW5nLCBhbmQgY29tbXVuaWNhdGlvbnMgY2xhc3NlcyBhbmQgZnVuY3Rpb25z
IgorTElDRU5TRT0iR1BMLTIiCiBIT01FUEFHRT0iaHR0cDovL2l0cHAuc291cmNlZm9yZ2UubmV0
LyIKIFNSQ19VUkk9Im1pcnJvcjovL3NvdXJjZWZvcmdlLyR7UE59LyR7UH0udGFyLmd6IgotTElD
RU5TRT0iR1BMLTIiCisKIFNMT1Q9IjAiCi1LRVlXT1JEUz0ifng4NiB+YW1kNjQiCitLRVlXT1JE
Uz0ifng4NiIKIElVU0U9ImJsYXMgZGVidWcgZG9jIGZmdHcgbGFwYWNrIgogCiBERVBFTkQ9ImZm
dHc/ICggPj1zY2ktbGlicy9mZnR3LTMuMC4wICkKLQlibGFzPyAoIH5zY2ktbGlicy9ibGFzLWF0
bGFzICkKLQlsYXBhY2s/ICggdmlydHVhbC9sYXBhY2sgKSIKLQotcGtnX3NldHVwKCkgewotCWlm
IFsgLXogYHdoaWNoIGc3N2AgXTsgdGhlbgotCQllZXJyb3IgIk5vIGZvcnRyYW4gY29tcGlsZXIg
Zm91bmQgb24gdGhlIHN5c3RlbSEiCi0JCWVlcnJvciAiUGxlYXNlIGFkZCBmb3J0cmFuIHRvIHlv
dXIgVVNFIGZsYWdzIGFuZCByZWVtZXJnZSBnY2MhIgotCQlkaWUKLQlmaQotfQorCWJsYXM/ICgg
c2NpLWxpYnMvYmxhcy1hdGxhcyApCisJbGFwYWNrPyAoIHZpcnR1YWwvbGFwYWNrICkKKwlkb2M/
ICggIGFwcC1kb2MvZG94eWdlbiApIgogCiBzcmNfY29tcGlsZSgpIHsKLQlsb2NhbCBteWNvbmY9
IiQodXNlX2VuYWJsZSBkb2MgaHRtbC1kb2MpIFwKLQkJJCh1c2VfZW5hYmxlIGRlYnVnIGRlYnVn
KSBcCi0JCSQodXNlX3dpdGggZmZ0dyBmZnR3KSBcCisJZWNvbmYgJCh1c2VfZW5hYmxlIGRvYyBo
dG1sLWRvYykgXAorCQkkKHVzZV9lbmFibGUgZGVidWcpIFwKKwkJJCh1c2Vfd2l0aCBmZnR3KSBc
CiAJCSQodXNlX3dpdGggYmxhcyBjYmxhcykgXAotCQkkKHVzZV93aXRoIGxhcGFjayBsYXBhY2sp
IgotCWVjb25mICR7bXljb25mfSB8fCBkaWUgImVjb25mIGZhaWxlZCIKKwkJJCh1c2Vfd2l0aCBs
YXBhY2spIFwKKwkJfHwgZGllICJlY29uZiBmYWlsZWQiCiAJZW1ha2UgfHwgZGllICJlbWFrZSBm
YWlsZWQiCiB9CiAKIHNyY19pbnN0YWxsKCkgewogCW1ha2UgaW5zdGFsbCBERVNURElSPSR7RH0g
fHwgZGllICJtYWtlIGluc3RhbGwgZmFpbGVkIgotCWRvZG9jIEFVVEhPUlMgQ2hhbmdlTG9nIElO
U1RBTEwgTkVXUyBSRUFETUUgVE9ETworCWRvZG9jIEFVVEhPUlMgQ2hhbmdlTG9nIElOU1RBTEwg
TkVXUyBSRUFETUUgVE9ETyB8fCBcCisJCWRpZSAiZmFpbGVkIHRvIGluc3RhbGwgZG9jcyIKIH0K
LQo=
</data>        

          </attachment>
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>78373</attachid>
            <date>2006-01-28 13:51 0000</date>
            <desc>further changes to itpp-3.9.0.ebuild</desc>
            <filename>itpp-3.9.0.ebuild.patch</filename>
            <type>text/plain</type>
            <data encoding="base64">LS0tIGl0cHAtMy45LjAuZWJ1aWxkLm9yaWcJMjAwNi0wMS0yOCAyMjo0MTozNS4wMDAwMDAwMDAg
KzAxMDAKKysrIGl0cHAtMy45LjAuZWJ1aWxkCTIwMDYtMDEtMjggMjI6MjE6MDMuMDAwMDAwMDAw
ICswMTAwCkBAIC0yLDM4ICsyLDQwIEBACiAjIERpc3RyaWJ1dGVkIHVuZGVyIHRoZSB0ZXJtcyBv
ZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UgdjIKICMgJEhlYWRlcjogJAogCitpbmhl
cml0IGZvcnRyYW4KKwogREVTQ1JJUFRJT049IklUKysgaXMgYSBDKysgbGlicmFyeSBvZiBtYXRo
ZW1hdGljYWwsIHNpZ25hbCBwcm9jZXNzaW5nLCBzcGVlY2ggcHJvY2Vzc2luZywgYW5kIGNvbW11
bmljYXRpb25zIGNsYXNzZXMgYW5kIGZ1bmN0aW9ucyIKK0xJQ0VOU0U9IkdQTC0yIgogSE9NRVBB
R0U9Imh0dHA6Ly9pdHBwLnNvdXJjZWZvcmdlLm5ldC8iCiBTUkNfVVJJPSJtaXJyb3I6Ly9zb3Vy
Y2Vmb3JnZS8ke1BOfS8ke1B9LnRhci5neiIKLUxJQ0VOU0U9IkdQTC0yIgorCiBTTE9UPSIwIgot
S0VZV09SRFM9In54ODYgfmFtZDY0IgorS0VZV09SRFM9In54ODYiCiBJVVNFPSJibGFzIGRlYnVn
IGRvYyBmZnR3IGxhcGFjayIKIAogREVQRU5EPSJmZnR3PyAoID49c2NpLWxpYnMvZmZ0dy0zLjAu
MCApCi0JYmxhcz8gKCB+c2NpLWxpYnMvYmxhcy1hdGxhcyApCi0JbGFwYWNrPyAoIHZpcnR1YWwv
bGFwYWNrICkiCisJYmxhcz8gKCBzY2ktbGlicy9ibGFzLWF0bGFzICkKKwlsYXBhY2s/ICggdmly
dHVhbC9sYXBhY2sgKQorCWRvYz8gKCBhcHAtZG9jL2RveHlnZW4KKwkJYXBwLXRleHQvdGV0ZXgK
KwkJdmlydHVhbC9naG9zdHNjcmlwdCApIgogCiBwa2dfc2V0dXAoKSB7Ci0JaWYgWyAteiBgd2hp
Y2ggZzc3YCBdOyB0aGVuCi0JCWVlcnJvciAiTm8gZm9ydHJhbiBjb21waWxlciBmb3VuZCBvbiB0
aGUgc3lzdGVtISIKLQkJZWVycm9yICJQbGVhc2UgYWRkIGZvcnRyYW4gdG8geW91ciBVU0UgZmxh
Z3MgYW5kIHJlZW1lcmdlIGdjYyEiCi0JCWRpZQotCWZpCisJbmVlZF9mb3J0cmFuIGc3NyBnZm9y
dHJhbgogfQogCiBzcmNfY29tcGlsZSgpIHsKLQlsb2NhbCBteWNvbmY9IiQodXNlX2VuYWJsZSBk
b2MgaHRtbC1kb2MpIFwKLQkJJCh1c2VfZW5hYmxlIGRlYnVnIGRlYnVnKSBcCi0JCSQodXNlX3dp
dGggZmZ0dyBmZnR3KSBcCisJZWNvbmYgJCh1c2VfZW5hYmxlIGRvYyBodG1sLWRvYykgXAorCQkk
KHVzZV9lbmFibGUgZGVidWcpIFwKKwkJJCh1c2Vfd2l0aCBmZnR3KSBcCiAJCSQodXNlX3dpdGgg
YmxhcyBjYmxhcykgXAotCQkkKHVzZV93aXRoIGxhcGFjayBsYXBhY2spIgotCWVjb25mICR7bXlj
b25mfSB8fCBkaWUgImVjb25mIGZhaWxlZCIKKwkJJCh1c2Vfd2l0aCBsYXBhY2spIFwKKwkJfHwg
ZGllICJlY29uZiBmYWlsZWQiCiAJZW1ha2UgfHwgZGllICJlbWFrZSBmYWlsZWQiCiB9CiAKIHNy
Y19pbnN0YWxsKCkgewogCW1ha2UgaW5zdGFsbCBERVNURElSPSR7RH0gfHwgZGllICJtYWtlIGlu
c3RhbGwgZmFpbGVkIgotCWRvZG9jIEFVVEhPUlMgQ2hhbmdlTG9nIElOU1RBTEwgTkVXUyBSRUFE
TUUgVE9ETworCWRvZG9jIEFVVEhPUlMgQ2hhbmdlTG9nIElOU1RBTEwgTkVXUyBSRUFETUUgVE9E
TyB8fCBcCisJCWRpZSAiZmFpbGVkIHRvIGluc3RhbGwgZG9jcyIKIH0KLQo=
</data>        

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>78417</attachid>
            <date>2006-01-29 04:49 0000</date>
            <desc>itpp-3.9.1.ebuild - version bumped</desc>
            <filename>itpp-3.9.1.ebuild</filename>
            <type>text/plain</type>
            <data encoding="base64">IyBDb3B5cmlnaHQgMTk5OS0yMDA1IEdlbnRvbyBGb3VuZGF0aW9uCiMgRGlzdHJpYnV0ZWQgdW5k
ZXIgdGhlIHRlcm1zIG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZSB2MgojICRIZWFk
ZXI6ICQKCmluaGVyaXQgZm9ydHJhbgoKREVTQ1JJUFRJT049IklUKysgaXMgYSBDKysgbGlicmFy
eSBvZiBtYXRoZW1hdGljYWwsIHNpZ25hbCBwcm9jZXNzaW5nLCBzcGVlY2ggcHJvY2Vzc2luZywg
YW5kIGNvbW11bmljYXRpb25zIGNsYXNzZXMgYW5kIGZ1bmN0aW9ucyIKTElDRU5TRT0iR1BMLTIi
CkhPTUVQQUdFPSJodHRwOi8vaXRwcC5zb3VyY2Vmb3JnZS5uZXQvIgpTUkNfVVJJPSJtaXJyb3I6
Ly9zb3VyY2Vmb3JnZS8ke1BOfS8ke1B9LnRhci5neiIKClNMT1Q9IjAiCktFWVdPUkRTPSJ+eDg2
IgpJVVNFPSJibGFzIGRlYnVnIGRvYyBmZnR3IGxhcGFjayIKCkRFUEVORD0iZmZ0dz8gKCA+PXNj
aS1saWJzL2ZmdHctMy4wLjAgKQoJYmxhcz8gKCBzY2ktbGlicy9ibGFzLWF0bGFzICkKCWxhcGFj
az8gKCB2aXJ0dWFsL2xhcGFjayApCglkb2M/ICggYXBwLWRvYy9kb3h5Z2VuCgkJYXBwLXRleHQv
dGV0ZXggKSIKCnNyY19jb21waWxlKCkgewoJZWNvbmYgJCh1c2VfZW5hYmxlIGRvYyBodG1sLWRv
YykgXAoJCSQodXNlX2VuYWJsZSBkZWJ1ZykgXAoJCSQodXNlX3dpdGggZmZ0dykgXAoJCSQodXNl
X3dpdGggYmxhcyBibGFzKSBcCgkJJCh1c2Vfd2l0aCBibGFzIGNibGFzKSBcCgkJJCh1c2Vfd2l0
aCBsYXBhY2spIFwKCQl8fCBkaWUgImVjb25mIGZhaWxlZCIKCWVtYWtlIHx8IGRpZSAiZW1ha2Ug
ZmFpbGVkIgp9CgpzcmNfaW5zdGFsbCgpIHsKCW1ha2UgaW5zdGFsbCBERVNURElSPSR7RH0gfHwg
ZGllICJtYWtlIGluc3RhbGwgZmFpbGVkIgoJZG9kb2MgQVVUSE9SUyBDaGFuZ2VMb2cgSU5TVEFM
TCBORVdTIFJFQURNRSBUT0RPIHx8IFwKCQlkaWUgImZhaWxlZCB0byBpbnN0YWxsIGRvY3MiCn0K
</data>        

          </attachment>
    </bug>

</bugzilla>