Gentoo Archives: gentoo-gwn

From: Chris Gianelloni <wolf31o2@g.o>
To: gentoo-gwn@l.g.o
Subject: [gentoo-gwn] Gentoo Weekly Newsletter 7 May 2007
Date: Thu, 10 May 2007 17:58:58
Message-Id: 1178743093.18735.58.camel@inertia.twi-31o2.org
1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 Gentoo Weekly Newsletter
3 http://www.gentoo.org/news/en/gwn/20070507-newsletter.xml
4 This is the Gentoo Weekly Newsletter for the week of 7 May 2007.
5 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6
7 ==============
8 1. Gentoo News
9 ==============
10
11 Gentoo 2007.0, code named "Secret Sauce", is released
12 -----------------------------------------------------
13
14 The Gentoo Release Engineering[1] project is pleased to announce the
15 much-delayed release of Gentoo Linux 2007.0, code named "Secret Sauce". This
16 release met with several delays due to an abnormally high number of security
17 vulnerabilities in large packages which had to be rebuilt using the newer,
18 secure versions of the packages. There was also a complete re-snapshot done
19 about half-way through the release period due to the release taking so long
20 and the packages becoming stale.
21
22 1. http://www.gentoo.org/proj/en/releng
23
24 You can find out more information about the release in the official press
25 release[2]. To get the new release, grab it from
26 http://www.gentoo.org/main/en/where.xml.
27
28 2. http://www.gentoo.org/proj/en/releng/release/2007.0/2007.0-press-release.txt
29
30 Recent Coreutils update and shell script issues
31 -----------------------------------------------
32
33 If you recently updated coreutils, or are planning your next emerge -avNDu
34 world while reading this, you might want to take note of some important
35 changes. The recent update to sys-apps/coreutils moved some utilities around
36 a bit. Some moved from /bin to /usr/bin, others, maybe because they felt the
37 inodes were greener in the other directory, flipped from /usr/bin to /bin.
38 While there are many important reasons these files moved, including to
39 provide access to the tools while in single user mode, for instance, what is
40 more important for those affected is knowing what this means for your shell
41 scripts. How to look for problems, and, if necessary, how to fix your
42 scripts.
43
44 For many people, most scripts are run as root through cron, and might have
45 taken the precaution of hard coding the path of each and every binary in the
46 script (it is generally considered a more secure method of scripting, you
47 can get more detail at http://forums.gentoo.org/viewtopic-t-548833.html).
48 Hopefully, those paths to the location of the binaries in a variable at the
49 beginning of the script, such as:
50
51 +---------------------------------------------------------------------------+
52 | Code Listing 1.1 |
53 | Example script |
54 +---------------------------------------------------------------------------+
55 | #!/bin/bash |
56 | MYNOHUP=/usr/bin/nohup |
57 | MYCOMMAND=/usr/local/bin/somecommand |
58 | $MYNOHUP $MYCOMMAND |
59 +---------------------------------------------------------------------------+
60
61 This way, there is only one edit to make in the script. Of course, this
62 isn't the only solution. In a recent discussion on the gentoo-dev mailing
63 list, many potential solutions were offered. You can read the thread at
64 http://archives.gentoo.org/gentoo-dev/msg_144236.xml. One potential solution
65 is to completely forgo the full path to binaries in your shell scripts. By
66 ensuring that the PATH variable is properly set at the beginning of your
67 scripts, this entire issue is completely avoidable. In fact, for those that
68 currently subscribe to this method of shell scripting, the coreutils update
69 may have gone completely unnoticed. A good default for the PATH variable in
70 your scripts would be:
71
72 +---------------------------------------------------------------------------+
73 | Code Listing 1.2 |
74 | Default PATH example |
75 +---------------------------------------------------------------------------+
76 | PATH=${PATH}:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin |
77 +---------------------------------------------------------------------------+
78
79 Obviously, one might want to check the path of the binaries for more
80 esoteric paths, for example /opt/vmware/server/bin is the location for
81 VMWare Server utilities. Another option mentioned was the command -p program
82 method. From the man page, command -p will "perform the command search using
83 a default value for PATH that is guaranteed to find all of the standard
84 utilities". This appears to be a fairly safe method of executing a command,
85 albeit at the cost of a few extra keystrokes. Also, since command is a built
86 in bash utility, it doesn't actually exist on the file system and is
87 therefore immune to the changes made by coreutils. This of course assumes
88 one is using the bash shell by default, which is a safe bet for most Linux
89 users.
90
91 Similar to command, env runs a program in a modified environment. Simply
92 calling env program will run your utility with a drastically stripped-down
93 path; /bin:/usr/bin according to the email thread. Contrary to the command
94 utility, env is a file on the local file system and exists, via symbolic
95 links, in both /bin and /usr/bin.
96
97 Ultimately, the solution you choose is largely a matter of preference and
98 personal experience. Your best bet is to experiment with the solutions
99 listed above to find the one with which you are most comfortable. With your
100 new-found knowledge, there is one last thing to do. You will need to make
101 sure that you find the scripts running on your system and test them for
102 problems. You can manually ran each of them in debug mode to look for
103 issues.
104
105 +---------------------------------------------------------------------------+
106 | Code Listing 1.3 |
107 | Running a bash command in debug mode |
108 +---------------------------------------------------------------------------+
109 | $ bash -x sample_cron_job |
110 | + /bin/echo 'Hello World!' |
111 | Hello World! |
112 +---------------------------------------------------------------------------+
113
114 You will also want to look in /usr/local/bin for scripts (if that is where
115 you keep them) and also /etc/conf.d/local.start and /etc/conf.d/local.stop.
116 If everything works, then you are in great shape!
117
118 =========================
119 2. Heard in the community
120 =========================
121
122 planet.gentoo.org
123 -----------------
124
125 Status of Gentoo MIPS
126
127 Developer Alexander Færøy writes into his blog about the current optimistic
128 status of the MIPS herd. With the addition of Bryan Østergaard, who will be
129 working on general porting, and Richard Brown, who will be working on ruby
130 support, the progress of bringing this architecture up to speed is
131 accelerating toward the 2007.0 release. Alexander also mentions that they
132 are seeking new recruits to "join the coolest team within Gentoo" and talks
133 about his successes with their new Movidis[3] box.
134
135 3. http://www.movidis.com
136
137 * http://alex.stener.nu/index.php/2007/05/04/status-from-gentoomips/
138
139 gentoo-user
140 -----------
141
142 Do it all, minus one
143
144 Jesse Adelman wrote into gentoo-user to ask how to be able to do an emerge
145 -uDN world, but have portage not update one package. Jesse had a version of
146 MythTV that had been removed from the tree that he wished to keep. However,
147 the version in the tree was between a newer and older version, thus causing
148 portage to want to downgrade if he simply put the newer version in
149 package.mask. Vikas Kumar suggested the often forgotten
150 /etc/portage/profile/package.provided. A package placed in this file will
151 not be updated unless another package necessarily depends on a newer
152 version. More information about package.provided is available in the portage
153 man page. Developer Zac Medico suggested to instead simply mask the package
154 versions that are both higher and lower than the version Jesse wanted to
155 keep, which is the best solution.
156
157 * http://archives.gentoo.org/gentoo-user/msg_111700.xml
158
159 gentoo-dev
160 ----------
161
162 Daniel Drake[4] is looking for one or more people to help out with
163 gentoo-sources-2.6 maintenance. Knowledge of kernel internals and kernel
164 hacking is not required, but motivation to learn is the main qualification.
165 Being a Gentoo developer is not required to offer assistance and could be a
166 good way for an interested person to get a foot in the door towards becoming
167 a developer. Interested parties should contact Daniel privately, or on IRC.
168
169 4. dsd@g.o
170
171 * http://archives.gentoo.org/gentoo-dev/msg_145122.xml
172
173 =======================
174 3. Gentoo International
175 =======================
176
177 HSM looking for Gentoo specialists
178 ----------------------------------
179
180 HSM is a renowned, high profile software service provider headquartered in
181 Paderborn / Germany. Their strength is the development of interfaces and
182 add-ons to standard software programs and databases, programming of
183 customer-specific software, provision of standard software in the areas
184 security, ERP and emulations.
185
186 HSM is searching for Linux specialists with strong Gentoo knowledge for
187 further development and customer support for their Linux-based universal
188 firewall-software with a new and unique product concept. Successful
189 candidates will have ample Linux experience, which especially covers TCP/IP
190 and Routing, Perl, PHP and BASH Scripting, Apache, Bind, DNS, SQUID, Postfix
191 and MySQL, plus communicative skills, organised work habits and consequent
192 customer orientation.
193
194 This position offers candidates with the respective long-term professional
195 experience the possibility of ascending to a managing position. For
196 candidates with initial professional experiences we provide attractive
197 training and further qualification possibilities. For further information
198 contact HSM's HR Consultant, Mr. Wolf Geldmacher[5].
199
200 5. geldmacher@×××××××××××××.de
201
202 ======================
203 4. Gentoo in the press
204 ======================
205
206 Linux Magazine (26 April, 2007)
207 -------------------------------
208
209 Linux Magazine posted an article about Gentoo Linux and portage. The feature
210 article is entirely about Gentoo and is available to Linux Magazine
211 subscribers only. If you are a Linux Magazine subscriber, check out the
212 article.
213
214 * http://www.linux-mag.com/id/3130/
215
216 =========================
217 5. Gentoo developer moves
218 =========================
219
220 Moves
221 -----
222
223 The following developers recently left the Gentoo project:
224
225 * none this week
226
227 Adds
228 ----
229
230 The following developers recently joined the Gentoo project:
231
232 * none this week
233
234 Changes
235 -------
236
237 The following developers recently changed roles within the Gentoo project:
238
239 * none this week
240
241 ==================
242 6. Gentoo security
243 ==================
244
245 Ktorrent: Multiple vulnerabilities
246 ----------------------------------
247
248 Multiple vulnerabilities have been discovered in Ktorrent allowing for the
249 remote execution of arbitrary code and a Denial of Service.
250
251 For more information, please see the GLSA Announcement[6]
252
253 6. http://www.gentoo.org/security/en/glsa/glsa-200705-01.xml
254
255 FreeType: User-assisted execution of arbitrary code
256 ---------------------------------------------------
257
258 A vulnerability has been discovered in FreeType allowing for user-assisted
259 remote execution of arbitrary code.
260
261 For more information, please see the GLSA Announcement[7]
262
263 7. http://www.gentoo.org/security/en/glsa/glsa-200705-02.xml
264
265 Tomcat: Information disclosure
266 ------------------------------
267
268 A vulnerability has been discovered in Tomcat that allows for the disclosure
269 of sensitive information.
270
271 For more information, please see the GLSA Announcement[8]
272
273 8. http://www.gentoo.org/security/en/glsa/glsa-200705-03.xml
274
275 Apache mod_perl: Denial of Service
276 ----------------------------------
277
278 The mod_perl Apache module is vulnerable to a Denial of Service when
279 processing regular expressions.
280
281 For more information, please see the GLSA Announcement[9]
282
283 9. http://www.gentoo.org/security/en/glsa/glsa-200705-04.xml
284
285 Quagga: Denial of Service
286 -------------------------
287
288 A vulnerability has been discovered in Quagga allowing for a Denial of
289 Service.
290
291 For more information, please see the GLSA Announcement[10]
292
293 10. http://www.gentoo.org/security/en/glsa/glsa-200705-05.xml
294
295 X.Org X11 library: Multiple integer overflows
296 ---------------------------------------------
297
298 The X.Org X11 library contains multiple integer overflows, which could lead
299 to the execution of arbitrary code.
300
301 For more information, please see the GLSA Announcement[11]
302
303 11. http://www.gentoo.org/security/en/glsa/glsa-200705-06.xml
304
305 =======================
306 7. Gentoo package moves
307 =======================
308
309 This section lists packages that have either been moved or added to the tree
310 and packages that have had their "last rites" announcement given to be
311 removed in the future. The package removals come from many locations,
312 including the Treecleaners[12] and various developers. Most packages which
313 are listed under the Last Rites section are in need of some love and care
314 and can remain in the tree if proper maintainership is established.
315
316 12. http://www.gentoo.org/proj/en/qa/treecleaners
317
318 Removals:
319 ---------
320
321 Package: Removal date: Contact:
322 kde-misc/metabar 01 May 2007 Carsten Lohrke[13]
323 net-print/hpoj 01 May 2007 Denis Dupeyron[14]
324 mail-mta/qmail 01 May 2007 Michael Hanselmann[15]
325 dev-java/saxon-bin 02 May 2007 Petteri Räty[16]
326 media-fonts/cjkuni-fonts 02 May 2007 Matsuu Takuto[17]
327 sys-fs/raidtools 05 May 2007 Mike Frysinger[18]
328 dev-libs/wxactivex 05 May 2007 Mike Frysinger[18]
329 dev-libs/wx-xmingw 05 May 2007 Mike Frysinger[18]
330
331 13. carlo@g.o
332 14. calchan@g.o
333 15. hansmi@g.o
334 16. betelgeuse@g.o
335 17. matsuu@g.o
336 18. vapier@g.o
337
338 Additions:
339 ----------
340
341 Package: Addition date: Contact:
342 dev-perl/Sys-Syscall[19] 30 Apr 2007 Robin H. Johnson[20]
343 dev-perl/Danga-Socket[21] 30 Apr 2007 Robin H. Johnson[20]
344 dev-perl/Perlbal[22] 30 Apr 2007 Robin H. Johnson[20]
345 dev-perl/MogileFS-Client[23] 30 Apr 2007 Robin H. Johnson[20]
346 dev-perl/MogileFS-Utils[24] 30 Apr 2007 Robin H. Johnson[20]
347 dev-perl/mogilefs-server[25] 30 Apr 2007 Robin H. Johnson[20]
348 sys-fs/ncdu[26] 01 May 2007 Wolfram Schlich[27]
349 net-im/pidgin[28] 01 May 2007 Olivier Crete[29]
350 x11-plugins/pidgin-extprefs[30] 01 May 2007 Olivier Crete[29]
351 x11-plugins/pidgin-rhythmbox[31] 01 May 2007 Olivier Crete[29]
352 dev-ruby/maruku[32] 01 May 2007 Aggelos Orfanakos[33]
353 app-office/calcurse[34] 01 May 2007 Cédric Krier[35]
354 app-emacs/mode-compile[36] 01 May 2007 Ulrich Müller[37]
355 dev-java/jsr67[38] 01 May 2007 Krzysiek Pawlik[39]
356 dev-java/istack-commons-runtime[40] 01 May 2007 Krzysiek Pawlik[39]
357 dev-java/saaj[41] 01 May 2007 Krzysiek Pawlik[39]
358 dev-java/rngom[42] 01 May 2007 Krzysiek Pawlik[39]
359 dev-java/codemodel[43] 01 May 2007 Krzysiek Pawlik[39]
360 dev-java/sjsxp[44] 01 May 2007 Krzysiek Pawlik[39]
361 dev-java/stax-ex[45] 01 May 2007 Krzysiek Pawlik[39]
362 dev-java/sun-httpserver-bin[46] 01 May 2007 Krzysiek Pawlik[39]
363 dev-java/xmlstreambuffer[47] 01 May 2007 Krzysiek Pawlik[39]
364 dev-java/istack-commons-tools[48] 01 May 2007 Krzysiek Pawlik[39]
365 dev-java/fastinfoset[49] 01 May 2007 Krzysiek Pawlik[39]
366 dev-java/jsr101[50] 01 May 2007 Krzysiek Pawlik[39]
367 dev-java/jaxp[51] 01 May 2007 Krzysiek Pawlik[39]
368 dev-java/relaxngcc[52] 01 May 2007 Krzysiek Pawlik[39]
369 dev-java/xsom[53] 01 May 2007 Krzysiek Pawlik[39]
370 dev-java/txw2-runtime[54] 01 May 2007 Krzysiek Pawlik[39]
371 dev-java/jaxb[55] 01 May 2007 Krzysiek Pawlik[39]
372 dev-java/jax-ws-api[56] 01 May 2007 Krzysiek Pawlik[39]
373 dev-java/jax-ws[57] 01 May 2007 Krzysiek Pawlik[39]
374 dev-java/apt-mirror[58] 01 May 2007 Krzysiek Pawlik[39]
375 dev-java/sun-dtdparser[59] 01 May 2007 Krzysiek Pawlik[39]
376 dev-java/jaxb-tools[60] 01 May 2007 Krzysiek Pawlik[39]
377 dev-java/jsr93[61] 01 May 2007 Krzysiek Pawlik[39]
378 dev-java/jax-rpc[62] 01 May 2007 Krzysiek Pawlik[39]
379 dev-java/jax-ws-tools[63] 01 May 2007 Krzysiek Pawlik[39]
380 dev-java/jaxr[64] 01 May 2007 Krzysiek Pawlik[39]
381 x11-themes/mythtv-themes-extra[65] 02 May 2007 Steve Dibb[66]
382 x11-misc/slim[67] 02 May 2007 Samuli Suominen[68]
383 dev-python/decoratortools[69] 02 May 2007 Rob Cakebread[70]
384 x11-themes/slim-themes[71] 02 May 2007 Samuli Suominen[68]
385 gnome-extra/nm-applet[72] 02 May 2007 Stephen Klimaszewski[73]
386 net-analyzer/nipper[74] 02 May 2007 Mike Auty[75]
387 dev-perl/JSON-XS[76] 03 May 2007 Christian Hartmann[77]
388 dev-lang/scala[78] 04 May 2007 Vlastimil Babka[79]
389 www-apps/horde-mimp[80] 05 May 2007 Mike Frysinger[18]
390 dev-python/py[81] 05 May 2007 Lukasz Strzygowski[82]
391 dev-java/jibx-tools[83] 05 May 2007 Krzysiek Pawlik[39]
392 app-emacs/javascript[84] 05 May 2007 Ulrich Müller[37]
393 app-admin/python-updater[85] 06 May 2007 Bryan Østergaard[86]
394 dev-java/jid3[87] 06 May 2007 Petteri Räty[16]
395 xfce-extra/xfce4-time-out[88] 06 May 2007 Samuli Suominen[68]
396 app-vim/eselect-syntax[89] 06 May 2007 Mike Kelly[90]
397
398 16. betelgeuse@g.o
399 18. vapier@g.o
400 19. http://packages.gentoo.org/packages/?category=dev-perl;name=Sys-Syscall
401 20. robbat2@g.o
402 21. http://packages.gentoo.org/packages/?category=dev-perl;name=Danga-Socket
403 22. http://packages.gentoo.org/packages/?category=dev-perl;name=Perlbal
404 23. http://packages.gentoo.org/packages/?category=dev-perl;name=MogileFS-Client
405 24. http://packages.gentoo.org/packages/?category=dev-perl;name=MogileFS-Utils
406 25. http://packages.gentoo.org/packages/?category=dev-perl;name=mogilefs-server
407 26. http://packages.gentoo.org/packages/?category=sys-fs;name=ncdu
408 27. wschlich@g.o
409 28. http://packages.gentoo.org/packages/?category=net-im;name=pidgin
410 29. tester@g.o
411 30. http://packages.gentoo.org/packages/?category=x11-plugins;name=pidgin-extprefs
412 31. http://packages.gentoo.org/packages/?category=x11-plugins;name=pidgin-rhythmbox
413 32. http://packages.gentoo.org/packages/?category=dev-ruby;name=maruku
414 33. agorf@g.o
415 34. http://packages.gentoo.org/packages/?category=app-office;name=calcurse
416 35. cedk@g.o
417 36. http://packages.gentoo.org/packages/?category=app-emacs;name=mode-compile
418 37. ulm@g.o
419 38. http://packages.gentoo.org/packages/?category=dev-java;name=jsr67
420 39. nelchael@g.o
421 40. http://packages.gentoo.org/packages/?category=dev-java;name=istack-commons-runtime
422 41. http://packages.gentoo.org/packages/?category=dev-java;name=saaj
423 42. http://packages.gentoo.org/packages/?category=dev-java;name=rngom
424 43. http://packages.gentoo.org/packages/?category=dev-java;name=codemodel
425 44. http://packages.gentoo.org/packages/?category=dev-java;name=sjsxp
426 45. http://packages.gentoo.org/packages/?category=dev-java;name=stax-ex
427 46. http://packages.gentoo.org/packages/?category=dev-java;name=sun-httpserver-bin
428 47. http://packages.gentoo.org/packages/?category=dev-java;name=xmlstreambuffer
429 48. http://packages.gentoo.org/packages/?category=dev-java;name=istack-commons-tools
430 49. http://packages.gentoo.org/packages/?category=dev-java;name=fastinfoset
431 50. http://packages.gentoo.org/packages/?category=dev-java;name=jsr101
432 51. http://packages.gentoo.org/packages/?category=dev-java;name=jaxp
433 52. http://packages.gentoo.org/packages/?category=dev-java;name=relaxngcc
434 53. http://packages.gentoo.org/packages/?category=dev-java;name=xsom
435 54. http://packages.gentoo.org/packages/?category=dev-java;name=txw2-runtime
436 55. http://packages.gentoo.org/packages/?category=dev-java;name=jaxb
437 56. http://packages.gentoo.org/packages/?category=dev-java;name=jax-ws-api
438 57. http://packages.gentoo.org/packages/?category=dev-java;name=jax-ws
439 58. http://packages.gentoo.org/packages/?category=dev-java;name=apt-mirror
440 59. http://packages.gentoo.org/packages/?category=dev-java;name=sun-dtdparser
441 60. http://packages.gentoo.org/packages/?category=dev-java;name=jaxb-tools
442 61. http://packages.gentoo.org/packages/?category=dev-java;name=jsr93
443 62. http://packages.gentoo.org/packages/?category=dev-java;name=jax-rpc
444 63. http://packages.gentoo.org/packages/?category=dev-java;name=jax-ws-tools
445 64. http://packages.gentoo.org/packages/?category=dev-java;name=jaxr
446 65. http://packages.gentoo.org/packages/?category=x11-themes;name=mythtv-themes-extra
447 66. beandog@g.o
448 67. http://packages.gentoo.org/packages/?category=x11-misc;name=slim
449 68. drac@g.o
450 69. http://packages.gentoo.org/packages/?category=dev-python;name=decoratortools
451 70. pythonhead@g.o
452 71. http://packages.gentoo.org/packages/?category=x11-themes;name=slim-themes
453 72. http://packages.gentoo.org/packages/?category=gnome-extra;name=nm-applet
454 73. steev@g.o
455 74. http://packages.gentoo.org/packages/?category=net-analyzer;name=nipper
456 75. ikelos@g.o
457 76. http://packages.gentoo.org/packages/?category=dev-perl;name=JSON-XS
458 77. ian@g.o
459 78. http://packages.gentoo.org/packages/?category=dev-lang;name=scala
460 79. caster@g.o
461 80. http://packages.gentoo.org/packages/?category=www-apps;name=horde-mimp
462 81. http://packages.gentoo.org/packages/?category=dev-python;name=py
463 82. lucass@g.o
464 83. http://packages.gentoo.org/packages/?category=dev-java;name=jibx-tools
465 84. http://packages.gentoo.org/packages/?category=app-emacs;name=javascript
466 85. http://packages.gentoo.org/packages/?category=app-admin;name=python-updater
467 86. kloeri@g.o
468 87. http://packages.gentoo.org/packages/?category=dev-java;name=jid3
469 88. http://packages.gentoo.org/packages/?category=xfce-extra;name=xfce4-time-out
470 89. http://packages.gentoo.org/packages/?category=app-vim;name=eselect-syntax
471 90. pioto@g.o
472
473 Last Rites:
474 -----------
475
476 Package: Removal date: Contact:
477 dev-util/eclipse-cbg-editor[91] 30 May 2007 Petteri Räty[16]
478 dev-util/eclipse-cdt-bin[92] 30 May 2007 Petteri Räty[16]
479 dev-util/eclipse-emf-bin[93] 30 May 2007 Petteri Räty[16]
480 dev-util/eclipse-gef-bin[94] 30 May 2007 Petteri Räty[16]
481 dev-util/eclipse-pydev-bin[95] 30 May 2007 Petteri Räty[16]
482 dev-util/eclipse-subclipse-bin[96] 30 May 2007 Petteri Räty[16]
483 dev-util/eclipse-ve-bin[97] 30 May 2007 Petteri Räty[16]
484 dev-java/dbconnectionbroker-bin[98] 30 May 2007 Vlastimil Babka[79]
485 dev-java/infobus-bin[99] 30 May 2007 Vlastimil Babka[79]
486 x11-misc/login-app[100] 2 Jun 2007 Samuli Suominen[68]
487 dev-java/openjgraph[101] 3 Jun 2007 Alistair Bush[102]
488 app-misc/baobab[103] 3 Jun 2007 Daniel Gryniewicz[104]
489 dev-java/violinstrings[105] 3 Jun 2007 Alistair Bush[102]
490 dev-java/sun-fastinfoset-bin[106] 4 Jun 2007 Krzysiek Pawlik[39]
491 dev-java/sun-jaxb-bin[107] 4 Jun 2007 Krzysiek Pawlik[39]
492 dev-java/sun-jaxp-bin[108] 4 Jun 2007 Krzysiek Pawlik[39]
493 dev-java/sun-jaxr-bin[109] 4 Jun 2007 Krzysiek Pawlik[39]
494 dev-java/sun-jaxrpc-bin[110] 4 Jun 2007 Krzysiek Pawlik[39]
495 dev-java/sun-jaxws-bin[111] 4 Jun 2007 Krzysiek Pawlik[39]
496 dev-java/sun-jwsdp-shared-bin[112] 4 Jun 2007 Krzysiek Pawlik[39]
497 dev-java/sun-saaj-bin[113] 4 Jun 2007 Krzysiek Pawlik[39]
498 dev-java/sun-sjsxp-bin[114] 4 Jun 2007 Krzysiek Pawlik[39]
499 dev-java/sun-wsdp-bin[115] 4 Jun 2007 Krzysiek Pawlik[39]
500 dev-java/sun-xmldsig-bin[116] 4 Jun 2007 Krzysiek Pawlik[39]
501 dev-java/sun-xws-security-bin[117] 4 Jun 2007 Krzysiek Pawlik[39]
502
503 16. betelgeuse@g.o
504 39. nelchael@g.o
505 68. drac@g.o
506 79. caster@g.o
507 91. http://packages.gentoo.org/packages/?category=dev-util;name=eclipse-cbg-editor
508 92. http://packages.gentoo.org/packages/?category=dev-util;name=eclipse-cdt-bin
509 93. http://packages.gentoo.org/packages/?category=dev-util;name=eclipse-emf-bin
510 94. http://packages.gentoo.org/packages/?category=dev-util;name=eclipse-gef-bin
511 95. http://packages.gentoo.org/packages/?category=dev-util;name=eclipse-pydev-bin
512 96. http://packages.gentoo.org/packages/?category=dev-util;name=eclipse-subclipse-bin
513 97. http://packages.gentoo.org/packages/?category=dev-util;name=eclipse-ve-bin
514 98. http://packages.gentoo.org/packages/?category=dev-java;name=dbconnectionbroker-bin
515 99. http://packages.gentoo.org/packages/?category=dev-java;name=infobus-bin
516 100. http://packages.gentoo.org/packages/?category=x11-misc;name=login-app
517 101. http://packages.gentoo.org/packages/?category=dev-java;name=openjgraph
518 102. ali_bush@g.o
519 103. http://packages.gentoo.org/packages/?category=app-misc;name=baobab
520 104. dang@g.o
521 105. http://packages.gentoo.org/packages/?category=dev-java;name=violinstrings
522 106. http://packages.gentoo.org/packages/?category=dev-java;name=sun-fastinfoset-bin
523 107. http://packages.gentoo.org/packages/?category=dev-java;name=sun-jaxb-bin
524 108. http://packages.gentoo.org/packages/?category=dev-java;name=sun-jaxp-bin
525 109. http://packages.gentoo.org/packages/?category=dev-java;name=sun-jaxr-bin
526 110. http://packages.gentoo.org/packages/?category=dev-java;name=sun-jaxrpc-bin
527 111. http://packages.gentoo.org/packages/?category=dev-java;name=sun-jaxws-bin
528 112. http://packages.gentoo.org/packages/?category=dev-java;name=sun-jwsdp-shared-bin
529 113. http://packages.gentoo.org/packages/?category=dev-java;name=sun-saaj-bin
530 114. http://packages.gentoo.org/packages/?category=dev-java;name=sun-sjsxp-bin
531 115. http://packages.gentoo.org/packages/?category=dev-java;name=sun-wsdp-bin
532 116. http://packages.gentoo.org/packages/?category=dev-java;name=sun-xmldsig-bin
533 117. http://packages.gentoo.org/packages/?category=dev-java;name=sun-xws-security-bin
534
535 ===========
536 8. Bugzilla
537 ===========
538
539 Summary
540 -------
541
542 * Statistics
543 * Closed bug ranking
544 * New bug rankings
545
546 Statistics
547 ----------
548
549 The Gentoo community uses Bugzilla (bugs.gentoo.org[118]) to record and
550 track bugs, notifications, suggestions and other interactions with the
551 development team. Between 29 April 2007 and 06 May 2007, activity on the
552 site has resulted in:
553
554 118. http://bugs.gentoo.org
555
556 * 565 new bugs during this period
557 * 361 bugs closed or resolved during this period
558 * 26 previously closed bugs were reopened this period
559 * 123 closed as NEEDINFO/WONTFIX/CANTFIX/INVALID/UPSTREAM during this
560 period
561 * 104 bugs marked as duplicates during this period
562
563 Of the 10028 currently open bugs: 11 are labeled 'blocker', 116 are labeled
564 'critical', and 364 are labeled 'major'.
565
566 Closed bug rankings
567 -------------------
568
569 The developers and teams who have closed the most bugs during this period
570 are:
571
572 * Gentoo's Team for Core System packages[119], with 35 closed
573 bugs[120]
574 * Java team[121], with 17 closed bugs[122]
575 * Gentoo Security[123], with 16 closed bugs[124]
576 * Gentoo KDE team[125], with 15 closed bugs[126]
577 * Gentoo net-im Herd[127], with 13 closed bugs[128]
578 * ppc64 architecture team[129], with 10 closed bugs[130]
579 * Gentoo X-windows packagers[131], with 9 closed bugs[132]
580 * SpanKY[18], with 9 closed bugs[133]
581
582 18. vapier@g.o
583 119. base-system@g.o
584 120. http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&chfield=bug_status&chfieldfrom=2007-04-29&chfieldto=2007-05-06&resolution=FIXED&assigned_to=base-system@g.o
585 121. java@g.o
586 122. http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&chfield=bug_status&chfieldfrom=2007-04-29&chfieldto=2007-05-06&resolution=FIXED&assigned_to=java@g.o
587 123. security@g.o
588 124. http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&chfield=bug_status&chfieldfrom=2007-04-29&chfieldto=2007-05-06&resolution=FIXED&assigned_to=security@g.o
589 125. kde@g.o
590 126. http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&chfield=bug_status&chfieldfrom=2007-04-29&chfieldto=2007-05-06&resolution=FIXED&assigned_to=kde@g.o
591 127. net-im@g.o
592 128. http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&chfield=bug_status&chfieldfrom=2007-04-29&chfieldto=2007-05-06&resolution=FIXED&assigned_to=net-im@g.o
593 129. ppc64@g.o
594 130. http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&chfield=bug_status&chfieldfrom=2007-04-29&chfieldto=2007-05-06&resolution=FIXED&assigned_to=ppc64@g.o
595 131. x11@g.o
596 132. http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&chfield=bug_status&chfieldfrom=2007-04-29&chfieldto=2007-05-06&resolution=FIXED&assigned_to=x11@g.o
597 133. http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&chfield=bug_status&chfieldfrom=2007-04-29&chfieldto=2007-05-06&resolution=FIXED&assigned_to=vapier@g.o
598
599 New bug rankings
600 ----------------
601
602 The developers and teams who have been assigned the most new bugs during
603 this period are:
604
605 * Default Assignee for New Packages[134], with 21 new bugs[135]
606 * Gentoo X-windows packagers[131], with 13 new bugs[136]
607 * AMD64 Project[137], with 10 new bugs[138]
608 * media-video herd[139], with 8 new bugs[140]
609 * Gentoo's Team for Core System packages[119], with 7 new bugs[141]
610 * Gentoo Ruby Team[142], with 6 new bugs[143]
611 * Robin Johnson[20], with 6 new bugs[144]
612 * Gentoo net-im Herd[127], with 5 new bugs[145]
613
614 20. robbat2@g.o
615 119. base-system@g.o
616 127. net-im@g.o
617 131. x11@g.o
618 134. maintainer-wanted@g.o
619 135. http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&chfield=assigned_to&chfieldfrom=2007-04-29&chfieldto=2007-05-06&assigned_to=maintainer-wanted@g.o
620 136. http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&chfield=assigned_to&chfieldfrom=2007-04-29&chfieldto=2007-05-06&assigned_to=x11@g.o
621 137. amd64@g.o
622 138. http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&chfield=assigned_to&chfieldfrom=2007-04-29&chfieldto=2007-05-06&assigned_to=amd64@g.o
623 139. media-video@g.o
624 140. http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&chfield=assigned_to&chfieldfrom=2007-04-29&chfieldto=2007-05-06&assigned_to=media-video@g.o
625 141. http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&chfield=assigned_to&chfieldfrom=2007-04-29&chfieldto=2007-05-06&assigned_to=base-system@g.o
626 142. ruby@g.o
627 143. http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&chfield=assigned_to&chfieldfrom=2007-04-29&chfieldto=2007-05-06&assigned_to=ruby@g.o
628 144. http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&chfield=assigned_to&chfieldfrom=2007-04-29&chfieldto=2007-05-06&assigned_to=robbat2@g.o
629 145. http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&chfield=assigned_to&chfieldfrom=2007-04-29&chfieldto=2007-05-06&assigned_to=net-im@g.o
630
631 ===============
632 9. GWN feedback
633 ===============
634
635 The GWN is staffed by volunteers and members of the community who submit
636 ideas and articles. If you are interested in writing for the GWN, have
637 feedback on an article that we have posted, or just have an idea or article
638 that you would like to submit to the GWN, please send us your feedback[146]
639 and help make the GWN better.
640
641 146. gwn-feedback@g.o
642
643 ================================
644 10. GWN subscription information
645 ================================
646
647 To subscribe to the Gentoo Weekly Newsletter, send a blank e-mail to
648 gentoo-gwn+subscribe@g.o.
649
650 To unsubscribe to the Gentoo Weekly Newsletter, send a blank e-mail to
651 gentoo-gwn+unsubscribe@g.o from the e-mail address you are subscribed
652 under.
653
654 ===================
655 11. Other languages
656 ===================
657
658 The Gentoo Weekly Newsletter is also available in the following languages:
659
660 * Chinese (Simplified)[147]
661 * Dutch[148]
662 * English[149]
663 * German[150]
664 * Greek[151]
665 * French[152]
666 * Korean[153]
667 * Japanese[154]
668 * Italian[155]
669 * Polish[156]
670 * Portuguese (Brazil)[157]
671 * Portuguese (Portugal)[158]
672 * Russian[159]
673 * Slovak[160]
674 * Spanish[161]
675 * Turkish[162]
676
677 147. http://www.gentoo.org/news/zh_cn/gwn/gwn.xml
678 148. http://www.gentoo.org/news/nl/gwn/gwn.xml
679 149. http://www.gentoo.org/news/en/gwn/gwn.xml
680 150. http://www.gentoo.org/news/de/gwn/gwn.xml
681 151. http://www.gentoo.org/news/el/gwn/gwn.xml
682 152. http://www.gentoo.org/news/fr/gwn/gwn.xml
683 153. http://www.gentoo.org/news/ko/gwn/gwn.xml
684 154. http://www.gentoo.org/news/ja/gwn/gwn.xml
685 155. http://www.gentoo.org/news/it/gwn/gwn.xml
686 156. http://www.gentoo.org/news/pl/gwn/gwn.xml
687 157. http://www.gentoo.org/news/pt_br/gwn/gwn.xml
688 158. http://www.gentoo.org/news/pt/gwn/gwn.xml
689 159. http://www.gentoo.org/news/ru/gwn/gwn.xml
690 160. http://www.gentoo.org/news/sk/gwn/gwn.xml
691 161. http://www.gentoo.org/news/es/gwn/gwn.xml
692 162. http://www.gentoo.org/news/tr/gwn/gwn.xml
693
694 Chris Gianelloni <wolf31o2@g.o> - Editor
695 David Snider <dsnider@××××××××××××.com> - Author
696 Donnie Berkholz <dberkholz@g.o> - Author
697 Kyle Bishop <phnix@××××××××.net> - Author
698 Tobias Scherbaum <dertobi123@g.o> - Author
699
700 --
701 gentoo-gwn@g.o mailing list