Gentoo Weekly Newsletter 7 May 2007

Chris Gianelloni <[email protected]> Wed, 09 May 2007 16:38:13 -0400
Newsgroups gmane.linux.gentoo.weekly-news
Message-ID <[email protected]>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Gentoo Weekly Newsletter
http://www.gentoo.org/news/en/gwn/20070507-newsletter.xml
This is the Gentoo Weekly Newsletter for the week of 7 May 2007.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
1. Gentoo News
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

Gentoo 2007.0, code named "Secret Sauce", is released
-----------------------------------------------------

The Gentoo Release Engineering[1] project is pleased to announce the
much-delayed release of Gentoo Linux 2007.0, code named "Secret Sauce". T=
his
release met with several delays due to an abnormally high number of secur=
ity
vulnerabilities in large packages which had to be rebuilt using the newer=
,
secure versions of the packages. There was also a complete re-snapshot do=
ne
about half-way through the release period due to the release taking so lo=
ng
and the packages becoming stale.

   1. http://www.gentoo.org/proj/en/releng

You can find out more information about the release in the official press
release[2]. To get the new release, grab it from
http://www.gentoo.org/main/en/where.xml.

   2. http://www.gentoo.org/proj/en/releng/release/2007.0/2007.0-press-re=
lease.txt

Recent Coreutils update and shell script issues
-----------------------------------------------

If you recently updated coreutils, or are planning your next emerge -avND=
u
world while reading this, you might want to take note of some important
changes. The recent update to sys-apps/coreutils moved some utilities aro=
und
a bit. Some moved from /bin to /usr/bin, others, maybe because they felt =
the
inodes were greener in the other directory, flipped from /usr/bin to /bin.
While there are many important reasons these files moved, including to
provide access to the tools while in single user mode, for instance, what=
 is
more important for those affected is knowing what this means for your she=
ll
scripts. How to look for problems, and, if necessary, how to fix your
scripts.

For many people, most scripts are run as root through cron, and might hav=
e
taken the precaution of hard coding the path of each and every binary in =
the
script (it is generally considered a more secure method of scripting, you
can get more detail at http://forums.gentoo.org/viewtopic-t-548833.html).
Hopefully, those paths to the location of the binaries in a variable at t=
he
beginning of the script, such as:

+------------------------------------------------------------------------=
---+
| Code Listing 1.1                                                       =
   |
| Example script                                                         =
   |
+------------------------------------------------------------------------=
---+
| #!/bin/bash                                                            =
   |
| MYNOHUP=3D/usr/bin/nohup                                               =
     |
| MYCOMMAND=3D/usr/local/bin/somecommand                                 =
     |
| $MYNOHUP $MYCOMMAND                                                    =
   |
+------------------------------------------------------------------------=
---+

This way, there is only one edit to make in the script. Of course, this
isn't the only solution. In a recent discussion on the gentoo-dev mailing
list, many potential solutions were offered. You can read the thread at
http://archives.gentoo.org/gentoo-dev/msg_144236.xml. One potential solut=
ion
is to completely forgo the full path to binaries in your shell scripts. B=
y
ensuring that the PATH variable is properly set at the beginning of your
scripts, this entire issue is completely avoidable. In fact, for those th=
at
currently subscribe to this method of shell scripting, the coreutils upda=
te
may have gone completely unnoticed. A good default for the PATH variable =
in
your scripts would be:

+------------------------------------------------------------------------=
---+
| Code Listing 1.2                                                       =
   |
| Default PATH example                                                   =
   |
+------------------------------------------------------------------------=
---+
| PATH=3D${PATH}:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/=
sbin |
+------------------------------------------------------------------------=
---+

Obviously, one might want to check the path of the binaries for more
esoteric paths, for example /opt/vmware/server/bin is the location for
VMWare Server utilities. Another option mentioned was the command -p prog=
ram
method. From the man page, command -p will "perform the command search us=
ing
a default value for PATH that is guaranteed to find all of the standard
utilities". This appears to be a fairly safe method of executing a comman=
d,
albeit at the cost of a few extra keystrokes. Also, since command is a bu=
ilt
in bash utility, it doesn't actually exist on the file system and is
therefore immune to the changes made by coreutils. This of course assumes
one is using the bash shell by default, which is a safe bet for most Linu=
x
users.

Similar to command, env runs a program in a modified environment. Simply
calling env program will run your utility with a drastically stripped-dow=
n
path; /bin:/usr/bin according to the email thread. Contrary to the comman=
d
utility, env is a file on the local file system and exists, via symbolic
links, in both /bin and /usr/bin.

Ultimately, the solution you choose is largely a matter of preference and
personal experience. Your best bet is to experiment with the solutions
listed above to find the one with which you are most comfortable. With yo=
ur
new-found knowledge, there is one last thing to do. You will need to make
sure that you find the scripts running on your system and test them for
problems. You can manually ran each of them in debug mode to look for
issues.

+------------------------------------------------------------------------=
---+
| Code Listing 1.3                                                       =
   |
| Running a bash command in debug mode                                   =
   |
+------------------------------------------------------------------------=
---+
| $ bash -x sample_cron_job                                              =
   |
| + /bin/echo 'Hello World!'                                             =
   |
| Hello World!                                                           =
   |
+------------------------------------------------------------------------=
---+

You will also want to look in /usr/local/bin for scripts (if that is wher=
e
you keep them) and also /etc/conf.d/local.start and /etc/conf.d/local.sto=
p.
If everything works, then you are in great shape!

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
2. Heard in the community
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

planet.gentoo.org
-----------------

Status of Gentoo MIPS

Developer Alexander F=C3=A6r=C3=B8y writes into his blog about the curren=
t optimistic
status of the MIPS herd. With the addition of Bryan =C3=98stergaard, who =
will be
working on general porting, and Richard Brown, who will be working on rub=
y
support, the progress of bringing this architecture up to speed is
accelerating toward the 2007.0 release. Alexander also mentions that they
are seeking new recruits to "join the coolest team within Gentoo" and tal=
ks
about his successes with their new Movidis[3] box.

   3. http://www.movidis.com

  * http://alex.stener.nu/index.php/2007/05/04/status-from-gentoomips/

gentoo-user
-----------

Do it all, minus one

Jesse Adelman wrote into gentoo-user to ask how to be able to do an emerg=
e
-uDN world, but have portage not update one package. Jesse had a version =
of
MythTV that had been removed from the tree that he wished to keep. Howeve=
r,
the version in the tree was between a newer and older version, thus causi=
ng
portage to want to downgrade if he simply put the newer version in
package.mask. Vikas Kumar suggested the often forgotten
/etc/portage/profile/package.provided. A package placed in this file will
not be updated unless another package necessarily depends on a newer
version. More information about package.provided is available in the port=
age
man page. Developer Zac Medico suggested to instead simply mask the packa=
ge
versions that are both higher and lower than the version Jesse wanted to
keep, which is the best solution.

  * http://archives.gentoo.org/gentoo-user/msg_111700.xml

gentoo-dev
----------

Daniel Drake[4] is looking for one or more people to help out with
gentoo-sources-2.6 maintenance. Knowledge of kernel internals and kernel
hacking is not required, but motivation to learn is the main qualificatio=
n.
Being a Gentoo developer is not required to offer assistance and could be=
 a
good way for an interested person to get a foot in the door towards becom=
ing
a developer. Interested parties should contact Daniel privately, or on IR=
C.

   4. [email protected]

  * http://archives.gentoo.org/gentoo-dev/msg_145122.xml

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
3. Gentoo International
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

HSM looking for Gentoo specialists
----------------------------------

HSM is a renowned, high profile software service provider headquartered i=
n
Paderborn / Germany. Their strength is the development of interfaces and
add-ons to standard software programs and databases, programming of
customer-specific software, provision of standard software in the areas
security, ERP and emulations.

HSM is searching for Linux specialists with strong Gentoo knowledge for
further development and customer support for their Linux-based universal
firewall-software with a new and unique product concept. Successful
candidates will have ample Linux experience, which especially covers TCP/=
IP
and Routing, Perl, PHP and BASH Scripting, Apache, Bind, DNS, SQUID, Post=
fix
and MySQL, plus communicative skills, organised work habits and consequen=
t
customer orientation.

This position offers candidates with the respective long-term professiona=
l
experience the possibility of ascending to a managing position. For
candidates with initial professional experiences we provide attractive
training and further qualification possibilities. For further information
contact HSM's HR Consultant, Mr. Wolf Geldmacher[5].

   5. [email protected]

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
4. Gentoo in the press
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

Linux Magazine (26 April, 2007)
-------------------------------

Linux Magazine posted an article about Gentoo Linux and portage. The feat=
ure
article is entirely about Gentoo and is available to Linux Magazine
subscribers only. If you are a Linux Magazine subscriber, check out the
article.

  * http://www.linux-mag.com/id/3130/

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
5. Gentoo developer moves
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

Moves
-----

The following developers recently left the Gentoo project:

  * none this week

Adds
----

The following developers recently joined the Gentoo project:

  * none this week

Changes
-------

The following developers recently changed roles within the Gentoo project=
:

  * none this week

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
6. Gentoo security
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

Ktorrent: Multiple vulnerabilities
----------------------------------

Multiple vulnerabilities have been discovered in Ktorrent allowing for th=
e
remote execution of arbitrary code and a Denial of Service.

For more information, please see the GLSA Announcement[6]

   6. http://www.gentoo.org/security/en/glsa/glsa-200705-01.xml

FreeType: User-assisted execution of arbitrary code
---------------------------------------------------

A vulnerability has been discovered in FreeType allowing for user-assiste=
d
remote execution of arbitrary code.

For more information, please see the GLSA Announcement[7]

   7. http://www.gentoo.org/security/en/glsa/glsa-200705-02.xml

Tomcat: Information disclosure
------------------------------

A vulnerability has been discovered in Tomcat that allows for the disclos=
ure
of sensitive information.

For more information, please see the GLSA Announcement[8]

   8. http://www.gentoo.org/security/en/glsa/glsa-200705-03.xml

Apache mod_perl: Denial of Service
----------------------------------

The mod_perl Apache module is vulnerable to a Denial of Service when
processing regular expressions.

For more information, please see the GLSA Announcement[9]

   9. http://www.gentoo.org/security/en/glsa/glsa-200705-04.xml

Quagga: Denial of Service
-------------------------

A vulnerability has been discovered in Quagga allowing for a Denial of
Service.

For more information, please see the GLSA Announcement[10]

  10. http://www.gentoo.org/security/en/glsa/glsa-200705-05.xml

X.Org X11 library: Multiple integer overflows
---------------------------------------------

The X.Org X11 library contains multiple integer overflows, which could le=
ad
to the execution of arbitrary code.

For more information, please see the GLSA Announcement[11]

  11. http://www.gentoo.org/security/en/glsa/glsa-200705-06.xml

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
7. Gentoo package moves
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

This section lists packages that have either been moved or added to the t=
ree
and packages that have had their "last rites" announcement given to be
removed in the future. The package removals come from many locations,
including the Treecleaners[12] and various developers. Most packages whic=
h
are listed under the Last Rites section are in need of some love and care
and can remain in the tree if proper maintainership is established.

  12. http://www.gentoo.org/proj/en/qa/treecleaners

Removals:
---------

Package:                 Removal date: Contact:
kde-misc/metabar         01 May 2007   Carsten Lohrke[13]
net-print/hpoj           01 May 2007   Denis Dupeyron[14]
mail-mta/qmail           01 May 2007   Michael Hanselmann[15]
dev-java/saxon-bin       02 May 2007   Petteri R=C3=A4ty[16]
media-fonts/cjkuni-fonts 02 May 2007   Matsuu Takuto[17]
sys-fs/raidtools         05 May 2007   Mike Frysinger[18]
dev-libs/wxactivex       05 May 2007   Mike Frysinger[18]
dev-libs/wx-xmingw       05 May 2007   Mike Frysinger[18]

  13. [email protected]
  14. [email protected]
  15. [email protected]
  16. [email protected]
  17. [email protected]
  18. [email protected]

Additions:
----------

Package:                            Addition date: Contact:
dev-perl/Sys-Syscall[19]            30 Apr 2007    Robin H. Johnson[20]
dev-perl/Danga-Socket[21]           30 Apr 2007    Robin H. Johnson[20]
dev-perl/Perlbal[22]                30 Apr 2007    Robin H. Johnson[20]
dev-perl/MogileFS-Client[23]        30 Apr 2007    Robin H. Johnson[20]
dev-perl/MogileFS-Utils[24]         30 Apr 2007    Robin H. Johnson[20]
dev-perl/mogilefs-server[25]        30 Apr 2007    Robin H. Johnson[20]
sys-fs/ncdu[26]                     01 May 2007    Wolfram Schlich[27]
net-im/pidgin[28]                   01 May 2007    Olivier Crete[29]
x11-plugins/pidgin-extprefs[30]     01 May 2007    Olivier Crete[29]
x11-plugins/pidgin-rhythmbox[31]    01 May 2007    Olivier Crete[29]
dev-ruby/maruku[32]                 01 May 2007    Aggelos Orfanakos[33]
app-office/calcurse[34]             01 May 2007    C=C3=A9dric Krier[35]
app-emacs/mode-compile[36]          01 May 2007    Ulrich M=C3=BCller[37]
dev-java/jsr67[38]                  01 May 2007    Krzysiek Pawlik[39]
dev-java/istack-commons-runtime[40] 01 May 2007    Krzysiek Pawlik[39]
dev-java/saaj[41]                   01 May 2007    Krzysiek Pawlik[39]
dev-java/rngom[42]                  01 May 2007    Krzysiek Pawlik[39]
dev-java/codemodel[43]              01 May 2007    Krzysiek Pawlik[39]
dev-java/sjsxp[44]                  01 May 2007    Krzysiek Pawlik[39]
dev-java/stax-ex[45]                01 May 2007    Krzysiek Pawlik[39]
dev-java/sun-httpserver-bin[46]     01 May 2007    Krzysiek Pawlik[39]
dev-java/xmlstreambuffer[47]        01 May 2007    Krzysiek Pawlik[39]
dev-java/istack-commons-tools[48]   01 May 2007    Krzysiek Pawlik[39]
dev-java/fastinfoset[49]            01 May 2007    Krzysiek Pawlik[39]
dev-java/jsr101[50]                 01 May 2007    Krzysiek Pawlik[39]
dev-java/jaxp[51]                   01 May 2007    Krzysiek Pawlik[39]
dev-java/relaxngcc[52]              01 May 2007    Krzysiek Pawlik[39]
dev-java/xsom[53]                   01 May 2007    Krzysiek Pawlik[39]
dev-java/txw2-runtime[54]           01 May 2007    Krzysiek Pawlik[39]
dev-java/jaxb[55]                   01 May 2007    Krzysiek Pawlik[39]
dev-java/jax-ws-api[56]             01 May 2007    Krzysiek Pawlik[39]
dev-java/jax-ws[57]                 01 May 2007    Krzysiek Pawlik[39]
dev-java/apt-mirror[58]             01 May 2007    Krzysiek Pawlik[39]
dev-java/sun-dtdparser[59]          01 May 2007    Krzysiek Pawlik[39]
dev-java/jaxb-tools[60]             01 May 2007    Krzysiek Pawlik[39]
dev-java/jsr93[61]                  01 May 2007    Krzysiek Pawlik[39]
dev-java/jax-rpc[62]                01 May 2007    Krzysiek Pawlik[39]
dev-java/jax-ws-tools[63]           01 May 2007    Krzysiek Pawlik[39]
dev-java/jaxr[64]                   01 May 2007    Krzysiek Pawlik[39]
x11-themes/mythtv-themes-extra[65]  02 May 2007    Steve Dibb[66]
x11-misc/slim[67]                   02 May 2007    Samuli Suominen[68]
dev-python/decoratortools[69]       02 May 2007    Rob Cakebread[70]
x11-themes/slim-themes[71]          02 May 2007    Samuli Suominen[68]
gnome-extra/nm-applet[72]           02 May 2007    Stephen Klimaszewski[7=
3]
net-analyzer/nipper[74]             02 May 2007    Mike Auty[75]
dev-perl/JSON-XS[76]                03 May 2007    Christian Hartmann[77]
dev-lang/scala[78]                  04 May 2007    Vlastimil Babka[79]
www-apps/horde-mimp[80]             05 May 2007    Mike Frysinger[18]
dev-python/py[81]                   05 May 2007    Lukasz Strzygowski[82]
dev-java/jibx-tools[83]             05 May 2007    Krzysiek Pawlik[39]
app-emacs/javascript[84]            05 May 2007    Ulrich M=C3=BCller[37]
app-admin/python-updater[85]        06 May 2007    Bryan =C3=98stergaard[=
86]
dev-java/jid3[87]                   06 May 2007    Petteri R=C3=A4ty[16]
xfce-extra/xfce4-time-out[88]       06 May 2007    Samuli Suominen[68]
app-vim/eselect-syntax[89]          06 May 2007    Mike Kelly[90]

  16. [email protected]
  18. [email protected]
  19. http://packages.gentoo.org/packages/?category=3Ddev-perl;name=3DSys=
-Syscall
  20. [email protected]
  21. http://packages.gentoo.org/packages/?category=3Ddev-perl;name=3DDan=
ga-Socket
  22. http://packages.gentoo.org/packages/?category=3Ddev-perl;name=3DPer=
lbal
  23. http://packages.gentoo.org/packages/?category=3Ddev-perl;name=3DMog=
ileFS-Client
  24. http://packages.gentoo.org/packages/?category=3Ddev-perl;name=3DMog=
ileFS-Utils
  25. http://packages.gentoo.org/packages/?category=3Ddev-perl;name=3Dmog=
ilefs-server
  26. http://packages.gentoo.org/packages/?category=3Dsys-fs;name=3Dncdu
  27. [email protected]
  28. http://packages.gentoo.org/packages/?category=3Dnet-im;name=3Dpidgi=
n
  29. [email protected]
  30. http://packages.gentoo.org/packages/?category=3Dx11-plugins;name=3D=
pidgin-extprefs
  31. http://packages.gentoo.org/packages/?category=3Dx11-plugins;name=3D=
pidgin-rhythmbox
  32. http://packages.gentoo.org/packages/?category=3Ddev-ruby;name=3Dmar=
uku
  33. [email protected]
  34. http://packages.gentoo.org/packages/?category=3Dapp-office;name=3Dc=
alcurse
  35. [email protected]
  36. http://packages.gentoo.org/packages/?category=3Dapp-emacs;name=3Dmo=
de-compile
  37. [email protected]
  38. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djsr=
67
  39. [email protected]
  40. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dist=
ack-commons-runtime
  41. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsaa=
j
  42. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Drng=
om
  43. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dcod=
emodel
  44. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsjs=
xp
  45. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsta=
x-ex
  46. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-httpserver-bin
  47. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dxml=
streambuffer
  48. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dist=
ack-commons-tools
  49. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dfas=
tinfoset
  50. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djsr=
101
  51. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djax=
p
  52. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Drel=
axngcc
  53. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dxso=
m
  54. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dtxw=
2-runtime
  55. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djax=
b
  56. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djax=
-ws-api
  57. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djax=
-ws
  58. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dapt=
-mirror
  59. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-dtdparser
  60. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djax=
b-tools
  61. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djsr=
93
  62. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djax=
-rpc
  63. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djax=
-ws-tools
  64. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djax=
r
  65. http://packages.gentoo.org/packages/?category=3Dx11-themes;name=3Dm=
ythtv-themes-extra
  66. [email protected]
  67. http://packages.gentoo.org/packages/?category=3Dx11-misc;name=3Dsli=
m
  68. [email protected]
  69. http://packages.gentoo.org/packages/?category=3Ddev-python;name=3Dd=
ecoratortools
  70. [email protected]
  71. http://packages.gentoo.org/packages/?category=3Dx11-themes;name=3Ds=
lim-themes
  72. http://packages.gentoo.org/packages/?category=3Dgnome-extra;name=3D=
nm-applet
  73. [email protected]
  74. http://packages.gentoo.org/packages/?category=3Dnet-analyzer;name=3D=
nipper
  75. [email protected]
  76. http://packages.gentoo.org/packages/?category=3Ddev-perl;name=3DJSO=
N-XS
  77. [email protected]
  78. http://packages.gentoo.org/packages/?category=3Ddev-lang;name=3Dsca=
la
  79. [email protected]
  80. http://packages.gentoo.org/packages/?category=3Dwww-apps;name=3Dhor=
de-mimp
  81. http://packages.gentoo.org/packages/?category=3Ddev-python;name=3Dp=
y
  82. [email protected]
  83. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djib=
x-tools
  84. http://packages.gentoo.org/packages/?category=3Dapp-emacs;name=3Dja=
vascript
  85. http://packages.gentoo.org/packages/?category=3Dapp-admin;name=3Dpy=
thon-updater
  86. [email protected]
  87. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Djid=
3
  88. http://packages.gentoo.org/packages/?category=3Dxfce-extra;name=3Dx=
fce4-time-out
  89. http://packages.gentoo.org/packages/?category=3Dapp-vim;name=3Desel=
ect-syntax
  90. [email protected]

Last Rites:
-----------

Package:                            Removal date: Contact:
dev-util/eclipse-cbg-editor[91]     30 May 2007   Petteri R=C3=A4ty[16]
dev-util/eclipse-cdt-bin[92]        30 May 2007   Petteri R=C3=A4ty[16]
dev-util/eclipse-emf-bin[93]        30 May 2007   Petteri R=C3=A4ty[16]
dev-util/eclipse-gef-bin[94]        30 May 2007   Petteri R=C3=A4ty[16]
dev-util/eclipse-pydev-bin[95]      30 May 2007   Petteri R=C3=A4ty[16]
dev-util/eclipse-subclipse-bin[96]  30 May 2007   Petteri R=C3=A4ty[16]
dev-util/eclipse-ve-bin[97]         30 May 2007   Petteri R=C3=A4ty[16]
dev-java/dbconnectionbroker-bin[98] 30 May 2007   Vlastimil Babka[79]
dev-java/infobus-bin[99]            30 May 2007   Vlastimil Babka[79]
x11-misc/login-app[100]             2 Jun 2007    Samuli Suominen[68]
dev-java/openjgraph[101]            3 Jun 2007    Alistair Bush[102]
app-misc/baobab[103]                3 Jun 2007    Daniel Gryniewicz[104]
dev-java/violinstrings[105]         3 Jun 2007    Alistair Bush[102]
dev-java/sun-fastinfoset-bin[106]   4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-jaxb-bin[107]          4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-jaxp-bin[108]          4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-jaxr-bin[109]          4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-jaxrpc-bin[110]        4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-jaxws-bin[111]         4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-jwsdp-shared-bin[112]  4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-saaj-bin[113]          4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-sjsxp-bin[114]         4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-wsdp-bin[115]          4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-xmldsig-bin[116]       4 Jun 2007    Krzysiek Pawlik[39]
dev-java/sun-xws-security-bin[117]  4 Jun 2007    Krzysiek Pawlik[39]

  16. [email protected]
  39. [email protected]
  68. [email protected]
  79. [email protected]
  91. http://packages.gentoo.org/packages/?category=3Ddev-util;name=3Decl=
ipse-cbg-editor
  92. http://packages.gentoo.org/packages/?category=3Ddev-util;name=3Decl=
ipse-cdt-bin
  93. http://packages.gentoo.org/packages/?category=3Ddev-util;name=3Decl=
ipse-emf-bin
  94. http://packages.gentoo.org/packages/?category=3Ddev-util;name=3Decl=
ipse-gef-bin
  95. http://packages.gentoo.org/packages/?category=3Ddev-util;name=3Decl=
ipse-pydev-bin
  96. http://packages.gentoo.org/packages/?category=3Ddev-util;name=3Decl=
ipse-subclipse-bin
  97. http://packages.gentoo.org/packages/?category=3Ddev-util;name=3Decl=
ipse-ve-bin
  98. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Ddbc=
onnectionbroker-bin
  99. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dinf=
obus-bin
 100. http://packages.gentoo.org/packages/?category=3Dx11-misc;name=3Dlog=
in-app
 101. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dope=
njgraph
 102. [email protected]
 103. http://packages.gentoo.org/packages/?category=3Dapp-misc;name=3Dbao=
bab
 104. [email protected]
 105. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dvio=
linstrings
 106. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-fastinfoset-bin
 107. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-jaxb-bin
 108. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-jaxp-bin
 109. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-jaxr-bin
 110. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-jaxrpc-bin
 111. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-jaxws-bin
 112. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-jwsdp-shared-bin
 113. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-saaj-bin
 114. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-sjsxp-bin
 115. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-wsdp-bin
 116. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-xmldsig-bin
 117. http://packages.gentoo.org/packages/?category=3Ddev-java;name=3Dsun=
-xws-security-bin

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
8. Bugzilla
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

Summary
-------

  * Statistics
  * Closed bug ranking
  * New bug rankings

Statistics
----------

The Gentoo community uses Bugzilla (bugs.gentoo.org[118]) to record and
track bugs, notifications, suggestions and other interactions with the
development team. Between 29 April 2007 and 06 May 2007, activity on the
site has resulted in:

 118. http://bugs.gentoo.org

  * 565 new bugs during this period
  * 361 bugs closed or resolved during this period
  * 26 previously closed bugs were reopened this period
  * 123 closed as NEEDINFO/WONTFIX/CANTFIX/INVALID/UPSTREAM during this
    period
  * 104 bugs marked as duplicates during this period

Of the 10028 currently open bugs: 11 are labeled 'blocker', 116 are label=
ed
'critical', and 364 are labeled 'major'.

Closed bug rankings
-------------------

The developers and teams who have closed the most bugs during this period
are:

  * Gentoo's Team for Core System packages[119], with 35 closed
    bugs[120]
  * Java team[121], with 17 closed bugs[122]
  * Gentoo Security[123], with 16 closed bugs[124]
  * Gentoo KDE team[125], with 15 closed bugs[126]
  * Gentoo net-im Herd[127], with 13 closed bugs[128]
  * ppc64 architecture team[129], with 10 closed bugs[130]
  * Gentoo X-windows packagers[131], with 9 closed bugs[132]
  * SpanKY[18], with 9 closed bugs[133]

  18. [email protected]
 119. [email protected]
 120. http://bugs.gentoo.org/buglist.cgi?bug_status=3DRESOLVED&bug_status=
=3DCLOSED&chfield=3Dbug_status&chfieldfrom=3D2007-04-29&chfieldto=3D2007-=
05-06&resolution=3DFIXED&[email protected]
 121. [email protected]
 122. http://bugs.gentoo.org/buglist.cgi?bug_status=3DRESOLVED&bug_status=
=3DCLOSED&chfield=3Dbug_status&chfieldfrom=3D2007-04-29&chfieldto=3D2007-=
05-06&resolution=3DFIXED&[email protected]
 123. [email protected]
 124. http://bugs.gentoo.org/buglist.cgi?bug_status=3DRESOLVED&bug_status=
=3DCLOSED&chfield=3Dbug_status&chfieldfrom=3D2007-04-29&chfieldto=3D2007-=
05-06&resolution=3DFIXED&[email protected]
 125. [email protected]
 126. http://bugs.gentoo.org/buglist.cgi?bug_status=3DRESOLVED&bug_status=
=3DCLOSED&chfield=3Dbug_status&chfieldfrom=3D2007-04-29&chfieldto=3D2007-=
05-06&resolution=3DFIXED&[email protected]
 127. [email protected]
 128. http://bugs.gentoo.org/buglist.cgi?bug_status=3DRESOLVED&bug_status=
=3DCLOSED&chfield=3Dbug_status&chfieldfrom=3D2007-04-29&chfieldto=3D2007-=
05-06&resolution=3DFIXED&[email protected]
 129. [email protected]
 130. http://bugs.gentoo.org/buglist.cgi?bug_status=3DRESOLVED&bug_status=
=3DCLOSED&chfield=3Dbug_status&chfieldfrom=3D2007-04-29&chfieldto=3D2007-=
05-06&resolution=3DFIXED&[email protected]
 131. [email protected]
 132. http://bugs.gentoo.org/buglist.cgi?bug_status=3DRESOLVED&bug_status=
=3DCLOSED&chfield=3Dbug_status&chfieldfrom=3D2007-04-29&chfieldto=3D2007-=
05-06&resolution=3DFIXED&[email protected]
 133. http://bugs.gentoo.org/buglist.cgi?bug_status=3DRESOLVED&bug_status=
=3DCLOSED&chfield=3Dbug_status&chfieldfrom=3D2007-04-29&chfieldto=3D2007-=
05-06&resolution=3DFIXED&[email protected]

New bug rankings
----------------

The developers and teams who have been assigned the most new bugs during
this period are:

  * Default Assignee for New Packages[134], with 21 new bugs[135]
  * Gentoo X-windows packagers[131], with 13 new bugs[136]
  * AMD64 Project[137], with 10 new bugs[138]
  * media-video herd[139], with 8 new bugs[140]
  * Gentoo's Team for Core System packages[119], with 7 new bugs[141]
  * Gentoo Ruby Team[142], with 6 new bugs[143]
  * Robin Johnson[20], with 6 new bugs[144]
  * Gentoo net-im Herd[127], with 5 new bugs[145]

  20. [email protected]
 119. [email protected]
 127. [email protected]
 131. [email protected]
 134. [email protected]
 135. http://bugs.gentoo.org/buglist.cgi?bug_status=3DNEW&bug_status=3DAS=
SIGNED&bug_status=3DREOPENED&chfield=3Dassigned_to&chfieldfrom=3D2007-04-=
29&chfieldto=3D2007-05-06&[email protected]
 136. http://bugs.gentoo.org/buglist.cgi?bug_status=3DNEW&bug_status=3DAS=
SIGNED&bug_status=3DREOPENED&chfield=3Dassigned_to&chfieldfrom=3D2007-04-=
29&chfieldto=3D2007-05-06&[email protected]
 137. [email protected]
 138. http://bugs.gentoo.org/buglist.cgi?bug_status=3DNEW&bug_status=3DAS=
SIGNED&bug_status=3DREOPENED&chfield=3Dassigned_to&chfieldfrom=3D2007-04-=
29&chfieldto=3D2007-05-06&[email protected]
 139. [email protected]
 140. http://bugs.gentoo.org/buglist.cgi?bug_status=3DNEW&bug_status=3DAS=
SIGNED&bug_status=3DREOPENED&chfield=3Dassigned_to&chfieldfrom=3D2007-04-=
29&chfieldto=3D2007-05-06&[email protected]
 141. http://bugs.gentoo.org/buglist.cgi?bug_status=3DNEW&bug_status=3DAS=
SIGNED&bug_status=3DREOPENED&chfield=3Dassigned_to&chfieldfrom=3D2007-04-=
29&chfieldto=3D2007-05-06&[email protected]
 142. [email protected]
 143. http://bugs.gentoo.org/buglist.cgi?bug_status=3DNEW&bug_status=3DAS=
SIGNED&bug_status=3DREOPENED&chfield=3Dassigned_to&chfieldfrom=3D2007-04-=
29&chfieldto=3D2007-05-06&[email protected]
 144. http://bugs.gentoo.org/buglist.cgi?bug_status=3DNEW&bug_status=3DAS=
SIGNED&bug_status=3DREOPENED&chfield=3Dassigned_to&chfieldfrom=3D2007-04-=
29&chfieldto=3D2007-05-06&[email protected]
 145. http://bugs.gentoo.org/buglist.cgi?bug_status=3DNEW&bug_status=3DAS=
SIGNED&bug_status=3DREOPENED&chfield=3Dassigned_to&chfieldfrom=3D2007-04-=
29&chfieldto=3D2007-05-06&[email protected]

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
9. GWN feedback
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

The GWN is staffed by volunteers and members of the community who submit
ideas and articles. If you are interested in writing for the GWN, have
feedback on an article that we have posted, or just have an idea or artic=
le
that you would like to submit to the GWN, please send us your feedback[14=
6]
and help make the GWN better.

 146. [email protected]

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D
10. GWN subscription information
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D

To subscribe to the Gentoo Weekly Newsletter, send a blank e-mail to
[email protected].

To unsubscribe to the Gentoo Weekly Newsletter, send a blank e-mail to
[email protected] from the e-mail address you are subscri=
bed
under.

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
11. Other languages
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

The Gentoo Weekly Newsletter is also available in the following languages=
:

  * Chinese (Simplified)[147]
  * Dutch[148]
  * English[149]
  * German[150]
  * Greek[151]
  * French[152]
  * Korean[153]
  * Japanese[154]
  * Italian[155]
  * Polish[156]
  * Portuguese (Brazil)[157]
  * Portuguese (Portugal)[158]
  * Russian[159]
  * Slovak[160]
  * Spanish[161]
  * Turkish[162]

 147. http://www.gentoo.org/news/zh_cn/gwn/gwn.xml
 148. http://www.gentoo.org/news/nl/gwn/gwn.xml
 149. http://www.gentoo.org/news/en/gwn/gwn.xml
 150. http://www.gentoo.org/news/de/gwn/gwn.xml
 151. http://www.gentoo.org/news/el/gwn/gwn.xml
 152. http://www.gentoo.org/news/fr/gwn/gwn.xml
 153. http://www.gentoo.org/news/ko/gwn/gwn.xml
 154. http://www.gentoo.org/news/ja/gwn/gwn.xml
 155. http://www.gentoo.org/news/it/gwn/gwn.xml
 156. http://www.gentoo.org/news/pl/gwn/gwn.xml
 157. http://www.gentoo.org/news/pt_br/gwn/gwn.xml
 158. http://www.gentoo.org/news/pt/gwn/gwn.xml
 159. http://www.gentoo.org/news/ru/gwn/gwn.xml
 160. http://www.gentoo.org/news/sk/gwn/gwn.xml
 161. http://www.gentoo.org/news/es/gwn/gwn.xml
 162. http://www.gentoo.org/news/tr/gwn/gwn.xml

Chris Gianelloni <[email protected]> - Editor
David Snider <[email protected]> - Author
Donnie Berkholz <[email protected]> - Author
Kyle Bishop <[email protected]> - Author
Tobias Scherbaum <[email protected]> - Author

--=20
[email protected] mailing list