Bug#460763: RM: gbatnav -- RoQA; obsolete

2008-01-25 Thread Ying-Chun Liu (PaulLiu)

Dear all,

I've made a patch for transition this package to gnome2.
Please give me few days to prepare a new package for uploading.

I attached the patch first.

Regards,
 Ying-Chun Liu

--
PaulLiu(Ying-Chun Liu)
E-mail address: [EMAIL PROTECTED]
Index: gbatnav-1.0.4cvs20051004/configure.in
===
--- gbatnav-1.0.4cvs20051004.orig/configure.in	2008-01-25 16:53:27.860777566 +0800
+++ gbatnav-1.0.4cvs20051004/configure.in	2008-01-25 16:54:59.364432839 +0800
@@ -4,7 +4,7 @@
 AM_INIT_AUTOMAKE(gbatnav, 1.0.5pre)
 AM_MAINTAINER_MODE
 AM_ACLOCAL_INCLUDE(macros)
-GNOME_INIT
+#GNOME_INIT
 
 AC_PROG_CC
 AC_PROG_LN_S
@@ -13,9 +13,12 @@
 AC_HEADER_STDC
 AC_ARG_PROGRAM
 
-dnl GNOME_COMPILE_WARNINGS
+#dnl GNOME_COMPILE_WARNINGS
 
-GNOME_X_CHECKS
+#GNOME_X_CHECKS
+PKG_CHECK_MODULES(GNOME,[libgnomeui-2.0])
+AC_SUBST(GNOME_CFLAGS)
+AC_SUBST(GNOME_LIBS)
 
 ALL_LINGUAS=es de pl ja ru fr
 AM_GNU_GETTEXT
@@ -49,11 +52,11 @@
 AC_SUBST(CPPFLAGS)
 AC_SUBST(LDFLAGS)
 
-gnome_cv_use_gnome=yes
+#gnome_cv_use_gnome=yes
 
+#intl/Makefile
 AC_OUTPUT([
 Makefile
-intl/Makefile
 po/Makefile.in
 macros/Makefile
 common/Makefile
Index: gbatnav-1.0.4cvs20051004/gbnclient/Makefile.am
===
--- gbatnav-1.0.4cvs20051004.orig/gbnclient/Makefile.am	2008-01-25 16:53:41.361316985 +0800
+++ gbatnav-1.0.4cvs20051004/gbnclient/Makefile.am	2008-01-25 16:55:17.365151669 +0800
@@ -11,7 +11,8 @@
 	@GGZMOD_INCLUDES@	\
 	$(GNOME_INCLUDEDIR)	\
 	-I$(srcdir)/pixmaps	\
-	-DBINDIR=\$(bindir)\
+	-DBINDIR=\$(bindir)\ \
+	@GNOME_CFLAGS@
 
 bin_PROGRAMS = gbnclient 
 
@@ -44,7 +45,8 @@
 	@GGZMOD_LDFLAGS@		\
 	$(GNOME_LIBDIR)			\
 	$(GNOMEUI_LIBS)			\
-	$(INTLLIBS)
+	$(INTLLIBS) \
+	@GNOME_LIBS@
 
 
 EXTRA_DIST = README AUTHORS	\
Index: gbatnav-1.0.4cvs20051004/gbnclient/g_interface.c
===
--- gbatnav-1.0.4cvs20051004.orig/gbnclient/g_interface.c	2008-01-25 16:53:49.361636464 +0800
+++ gbatnav-1.0.4cvs20051004/gbnclient/g_interface.c	2008-01-25 16:55:29.365631022 +0800
@@ -147,19 +147,21 @@
 {
 	GtkWidget *href, *hbox;
 	static GtkWidget *about = NULL;
+	static GdkPixbuf *gnome_gbatnav=NULL;
 	static const char *authors[] = {
 		Ricardo C. Quesada ([EMAIL PROTECTED]),
 		NULL
 	};
 
 	if (!about) {
-
+		gnome_gbatnav = gdk_pixbuf_new_from_file(gnome-gbatnav.png,NULL);
 		about = gnome_about_new (_(Batalla Naval client),
 VERSION,
 _((C) 1998-2001 Ricardo C. Quesada),
-(const char**) authors,
 _(A multiplayer networked battleship game.),
-gnome-gbatnav.png);
+(const char**) authors,
+NULL, NULL,
+gnome_gbatnav);
 
 		gtk_signal_connect (GTK_OBJECT (about), destroy,
 GTK_SIGNAL_FUNC (gtk_widget_destroyed),
@@ -307,6 +309,8 @@
 	GtkTooltips *tooltips;
 	GtkWidget *inputline;
 	GtkWidget *vbox_buttons;
+	GtkScrolledWindow *scrolledWindow=NULL;
+GtkTextIter text_iter;
 
 #ifdef ENABLE_NLS
 # define ELEMENTS(x) (sizeof(x) / sizeof(x[0])) 
@@ -376,16 +380,19 @@
 

 	/* respecto al drawing_about */
+scrolledWindow = GTK_SCROLLED_WINDOW(gtk_scrolled_window_new(NULL,NULL));
 	hbox_text_help = gtk_hbox_new ( FALSE, 0);
 	gtk_widget_show( hbox_text_help );

-	text_help = gtk_text_new(NULL,NULL);
-	gtk_box_pack_start( GTK_BOX(hbox_text_help), text_help, FALSE,TRUE,0);
+	text_help = GTK_WIDGET(gtk_text_view_new());
+	gtk_container_add(GTK_CONTAINER(scrolledWindow),text_help);
 	gtk_widget_show(text_help);
+	gtk_box_pack_start( GTK_BOX(hbox_text_help), GTK_WIDGET(scrolledWindow), TRUE,TRUE,0);
+	gtk_widget_show(GTK_WIDGET(scrolledWindow));

-	vscrollbar_help = gtk_vscrollbar_new (GTK_TEXT (text_help)-vadj);
-	gtk_box_pack_start( GTK_BOX(hbox_text_help), vscrollbar_help, FALSE,TRUE,0);
-	gtk_widget_show (vscrollbar_help);
+	vscrollbar_help = gtk_scrolled_window_get_vscrollbar(scrolledWindow);
+	/*gtk_box_pack_start( GTK_BOX(hbox_text_help), vscrollbar_help, FALSE,TRUE,0);*/
+	/*gtk_widget_show (vscrollbar_help);*/

 	label_left = gtk_label_new(_(My board));
 	gtk_notebook_append_page ( GTK_NOTEBOOK(notebook_left),drawing_left,label_left);
@@ -432,23 +439,28 @@
 
 	gtk_widget_show(separator);

+scrolledWindow = GTK_SCROLLED_WINDOW(gtk_scrolled_window_new(NULL,NULL));
 	hbox_text = gtk_hbox_new ( FALSE, 0);
 	gtk_container_add ( GTK_CONTAINER(vbox), hbox_text );
 	gtk_widget_show( hbox_text );

-	text = gtk_text_new(NULL,NULL);
-	gtk_box_pack_start( GTK_BOX(hbox_text), text, TRUE,TRUE,0);
+	text = GTK_WIDGET(gtk_text_view_new());
+	gtk_container_add(GTK_CONTAINER(scrolledWindow),text);
 	gtk_widget_show(text);
-   
-	vscrollbar = gtk_vscrollbar_new (GTK_TEXT (text)-vadj);
+	gtk_box_pack_start( GTK_BOX(hbox_text), GTK_WIDGET(scrolledWindow), TRUE,TRUE,0);
+	gtk_widget_show(GTK_WIDGET(scrolledWindow));
+
+	vscrollbar = 

Patch for bug 356064

2008-01-25 Thread Dalibor Straka
Hi all,

first I'm resending a patch I've originaly sent to the related bug and
an old maintainer. Second I'd like to maintain the package. I'm little
bit confused after reading http://www.debian.org/devel/join/newmaint.
What I want to do is changing the source code, apply patches, solve the
issues, merge new patches and probably create the package and upload it
somewhere (doesn't necessarily have to be the final production place).

-- Dalibor Straka
---
Hello,

i have a complex patch but the two simple thoughts were
1. char scrambled_passwd[32];
is wrong. make_scrambled_passwd returns octet2hex which is longer
according to mysql sources:
buf   OUT buffer of size 2*SHA1_HASH_SIZE + 2 to store hex string

2. the hash itself changed between MySQL versions

Here is the simple patch without my macros, debug and so on...
-- Dalibor Straka

--- mod_auth_mysql.c2008-01-24 23:06:26.0 +0100
+++ /tmp/mod_auth_mysql.c   2008-01-24 23:07:52.0 +0100
@@ -230,9 +230,14 @@
 
 static int check_mysql_encryption(const char *passwd, char *enc_passwd)
 {
-   char scrambled_passwd[32];
+
+   char scrambled_passwd[2 * 0x20 + 2];
 
-   make_scrambled_password(scrambled_passwd, passwd);
+   if (strlen(enc_passwd) == 16)
+   make_scrambled_password_323(scrambled_passwd, passwd);
+   else
+   make_scrambled_password(scrambled_passwd, passwd);
+
return (!strcmp(scrambled_passwd, enc_passwd));
 }


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



Processing of grokking-the-gimp_1.0-2_i386.changes

2008-01-25 Thread Archive Administrator
grokking-the-gimp_1.0-2_i386.changes uploaded successfully to localhost
along with the files:
  grokking-the-gimp_1.0-2.dsc
  grokking-the-gimp_1.0-2.diff.gz
  grokking-the-gimp_1.0-2_all.deb

Greetings,

Your Debian queue daemon


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



Bug#457881: marked as done (whrandom is deprecated)

2008-01-25 Thread Debian Bug Tracking System
Your message dated Sat, 26 Jan 2008 03:32:08 +
with message-id [EMAIL PROTECTED]
and subject line Bug#457881: fixed in uligo 0.3-6
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---

Package: uligo
Version: 0.3-5
Severity: normal

--- Please enter the report below this line. ---

/usr/lib/python2.4/whrandom.py:38: DeprecationWarning: the whrandom 
module is deprecated; please use the random module

  DeprecationWarning)

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.22-3-686

Debian Release: lenny/sid
  990 unstablehonk.physik.uni-konstanz.de
  990 unstabledebian.ethz.ch
  300 experimentaldebian.ethz.ch

--- Package information. ---
Depends(Version) | Installed
-+-===
python   | 2.4.4-6
python-tk| 2.4.4-1



---End Message---
---BeginMessage---
Source: uligo
Source-Version: 0.3-6

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

uligo_0.3-6.diff.gz
  to pool/main/u/uligo/uligo_0.3-6.diff.gz
uligo_0.3-6.dsc
  to pool/main/u/uligo/uligo_0.3-6.dsc
uligo_0.3-6_all.deb
  to pool/main/u/uligo/uligo_0.3-6_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.
David Andel [EMAIL PROTECTED] (supplier of updated uligo package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 31 Dec 2007 13:46:10 +0100
Source: uligo
Binary: uligo
Architecture: source all
Version: 0.3-6
Distribution: unstable
Urgency: low
Maintainer: David Andel [EMAIL PROTECTED]
Changed-By: David Andel [EMAIL PROTECTED]
Description: 
 uligo  - tsumego (go problems) practice tool
Closes: 388362 457881
Changes: 
 uligo (0.3-6) unstable; urgency=low
 .
   * uligo.py: font size in statistics increased
   * uligo.py, board1.py: use module random instead of whrandom which is
 deprecated and not in python2.5 (Patch from Ubuntu incorporated. Closes:
 #457881)
   * New maintainer. Closes: #388362
   * Conforms with latest Standards Version 3.7.3
Files: 
 f57dfc56d2f485a049268c84107a3dc7 583 games optional uligo_0.3-6.dsc
 d770356f609949dbf1b3be38c8817d18 17304 games optional uligo_0.3-6.diff.gz
 557e9cbfc062541fe2e1cd2a32410ac2 349604 games optional uligo_0.3-6_all.deb

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

iD8DBQFHmqUdgY5NIXPNpFURAiXPAKCjsH29wrspewybiQVO2RZVYHXGMACfThFD
axb7b6OGv54xoZYu4tRqGdA=
=Rx2o
-END PGP SIGNATURE-


---End Message---


pam-dotfile 0.7-4 MIGRATED to testing

2008-01-25 Thread Debian testing watch
FYI: The status of the pam-dotfile source package
in Debian's testing distribution has changed.

  Previous version: 0.7-3
  Current version:  0.7-4

-- 
This email is automatically generated; [EMAIL PROTECTED] is responsible.
See http://people.debian.org/~henning/trille/ for more information.


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



python-gnome REMOVED from testing

2008-01-25 Thread Debian testing watch
FYI: The status of the python-gnome source package
in Debian's testing distribution has changed.

  Previous version: 1.4.5-8
  Current version:  (not in testing)
  Hint: (no removal hint found)

The script that generates this mail tries to extract removal
reasons from comments in the britney hint files. Those comments
were not originally meant to be machine readable, so if the
reason for removing your package seems to be nonsense, it is
probably the reporting script that got confused. Please check the
actual hints file before you complain about meaningless removals.

-- 
This email is automatically generated; [EMAIL PROTECTED] is responsible.
See http://people.debian.org/~henning/trille/ for more information.


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



Bug#440672: tagging 440672

2008-01-25 Thread Lucas Nussbaum
# Automatically generated email from bts, devscripts version 2.10.11
# not reproducible on stable
tags 440672 + sid lenny




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



Bug#453014: marked as done (Bashism)

2008-01-25 Thread Debian Bug Tracking System
Your message dated Fri, 25 Jan 2008 21:32:10 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453014: fixed in netcdf 3.6.1-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
From: Luca Falavigna [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: Bashism
Package: netcdf
Version: 3.6.1-1
Severity: minor
Tags: patch
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu hardy ubuntu-patch

netcdf has a bashism in debian/rules file which causes FTBFS on systems
with /bin/sh linked to /bin/dash. Even if Debian is not affected, it
could be worth adjust it for compatibility purposes.
Attached patch, taken from Ubuntu version, should fix this issue.

Thank you.
diff -pruN 3.6.1-1/debian/rules 3.6.1-1ubuntu1/debian/rules
--- 3.6.1-1/debian/rules	2007-11-06 10:10:48.0 +
+++ 3.6.1-1ubuntu1/debian/rules	2007-11-06 10:09:27.0 +
@@ -335,8 +335,7 @@ endif
 	  debian/tmp-dev/usr/share/doc/$(package)g-dev/changelog.Debian
 	install -m 644 src/cxx/example.c src/cxx/example.cpp \
 	  debian/tmp-dev/usr/share/doc/$(package)g-dev/examples/.
-	gzip -9v debian/tmp-dev/usr/share/doc/$(package)g-dev/[^e]*	\
-	  debian/tmp-dev/usr/share/doc/$(package)g-dev/examples/*
+	gzip -9vr debian/tmp-dev/usr/share/doc/$(package)g-dev/*
 	$(RM) -r debian/tmp-dev/usr/share/man/man3f
 	gzip -9v debian/tmp-dev/usr/share/man/*/*
 	install -m 644 debian/copyright	\
---End Message---
---BeginMessage---
Source: netcdf
Source-Version: 3.6.1-2

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

libnetcdf++3_3.6.1-2_i386.deb
  to pool/main/n/netcdf/libnetcdf++3_3.6.1-2_i386.deb
libnetcdf3_3.6.1-2_i386.deb
  to pool/main/n/netcdf/libnetcdf3_3.6.1-2_i386.deb
netcdf-bin_3.6.1-2_i386.deb
  to pool/main/n/netcdf/netcdf-bin_3.6.1-2_i386.deb
netcdf_3.6.1-2.diff.gz
  to pool/main/n/netcdf/netcdf_3.6.1-2.diff.gz
netcdf_3.6.1-2.dsc
  to pool/main/n/netcdf/netcdf_3.6.1-2.dsc
netcdfg-dev_3.6.1-2_i386.deb
  to pool/main/n/netcdf/netcdfg-dev_3.6.1-2_i386.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.
Marc 'HE' Brockschmidt [EMAIL PROTECTED] (supplier of updated netcdf package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 25 Jan 2008 22:18:00 +0100
Source: netcdf
Binary: libnetcdf3 libnetcdf++3 netcdfg-dev netcdf-bin
Architecture: source i386
Version: 3.6.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Marc 'HE' Brockschmidt [EMAIL PROTECTED]
Description: 
 libnetcdf++3 - An interface for scientific data access to large binary data
 libnetcdf3 - An interface for scientific data access to large binary data
 netcdf-bin - Programs for reading and writing NetCDF files
 netcdfg-dev - Development kit for NetCDF
Closes: 453014
Changes: 
 netcdf (3.6.1-2) unstable; urgency=low
 .
   * QA upload.
   * debian/rules: Fix bashism (Closes: #453014)
Files: 
 99fc30dcd4910e9641d04b74f6cb0121 710 science optional netcdf_3.6.1-2.dsc
 99cd917acb5589f152f31e065fbafb8a 26625 science optional netcdf_3.6.1-2.diff.gz
 671c09ded294984bd9faa25ea2d14184 75430 libs optional 
libnetcdf3_3.6.1-2_i386.deb
 bedc2befa3a965a3baabd2f7f3b340f8 43050 libs optional 
libnetcdf++3_3.6.1-2_i386.deb
 cf52d034a155264442e51ffa36f47af5 258140 devel optional 
netcdfg-dev_3.6.1-2_i386.deb
 c9b3d97eb28a812950638cc98322dd33 87250 science optional 
netcdf-bin_3.6.1-2_i386.deb

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

iD8DBQFHmlLhmO5zOp3h7rERAqoIAJoCLPB/EhbcrQSEIWtHWR1EqMMjygCeMtuD
2R2DUoVAquUP3fDuBEiTsDc=
=0b4B
-END PGP SIGNATURE-


---End Message---


Processing of netcdf_3.6.1-2_i386.changes

2008-01-25 Thread Archive Administrator
netcdf_3.6.1-2_i386.changes uploaded successfully to localhost
along with the files:
  netcdf_3.6.1-2.dsc
  netcdf_3.6.1-2.diff.gz
  libnetcdf3_3.6.1-2_i386.deb
  libnetcdf++3_3.6.1-2_i386.deb
  netcdfg-dev_3.6.1-2_i386.deb
  netcdf-bin_3.6.1-2_i386.deb

Greetings,

Your Debian queue daemon


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



grokking-the-gimp_1.0-2_i386.changes ACCEPTED

2008-01-25 Thread Debian Installer

Accepted:
grokking-the-gimp_1.0-2.diff.gz
  to pool/non-free/g/grokking-the-gimp/grokking-the-gimp_1.0-2.diff.gz
grokking-the-gimp_1.0-2.dsc
  to pool/non-free/g/grokking-the-gimp/grokking-the-gimp_1.0-2.dsc
grokking-the-gimp_1.0-2_all.deb
  to pool/non-free/g/grokking-the-gimp/grokking-the-gimp_1.0-2_all.deb


Override entries for your package:
grokking-the-gimp_1.0-2.dsc - source non-free/doc
grokking-the-gimp_1.0-2_all.deb - optional non-free/doc

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



РЕКЛАМНОЕ АГЕНТСТВО

2008-01-25 Thread Гурий Варгасов
Пpедлагаeм услугy mаccoвoй рacсылkи писем по элeктрoнной почте.

Ни3kиe цeны!  

Прoбиваем фильтры.

Koнтaктныe данные:  

Тeлефоны: (4 9 5)5IO 75 2З, 5I8 50 62, 5Ч2 39 87, 223 17 68, 502 61 85 (г. 
Mосква), (8I2) 9ЗI 39 77 (Cанkт-Пeтербург)
icq: 485836642, 171303


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



Bug#460763: marked as done (gbatnav: your package depends from gnome-libs that is scheduled for removal)

2008-01-25 Thread Debian Bug Tracking System
Your message dated Fri, 25 Jan 2008 18:32:02 +
with message-id [EMAIL PROTECTED]
and subject line Bug#460763: fixed in gbatnav 1.0.4cvs20051004-3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: gbatnav
Severity: important
User: [EMAIL PROTECTED]
Usertags: gnome-1.x-removal

Hi,

Your package (gbatnav) has been detected as depending on gnome-libs,
which as per release goal, won't be shipped in lenny.

Please make sure that your package drops its dependencies on
gnome-libs as soon as possible, or that it's ported to gnome2 one way
or the other.

This bug will be raised to RC severity as soon as gnome-libs are
removed from testing, which should happen soon, since it will make
your package uninstallable.

Cheers,

-- Pierre Habouzit 


---End Message---
---BeginMessage---
Source: gbatnav
Source-Version: 1.0.4cvs20051004-3

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

gbatnav_1.0.4cvs20051004-3.diff.gz
  to pool/main/g/gbatnav/gbatnav_1.0.4cvs20051004-3.diff.gz
gbatnav_1.0.4cvs20051004-3.dsc
  to pool/main/g/gbatnav/gbatnav_1.0.4cvs20051004-3.dsc
gbatnav_1.0.4cvs20051004-3_amd64.deb
  to pool/main/g/gbatnav/gbatnav_1.0.4cvs20051004-3_amd64.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.
Ying-Chun Liu (PaulLiu) [EMAIL PROTECTED] (supplier of updated gbatnav 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 25 Jan 2008 22:00:22 +0800
Source: gbatnav
Binary: gbatnav
Architecture: source amd64
Version: 1.0.4cvs20051004-3
Distribution: unstable
Urgency: low
Maintainer: Ying-Chun Liu (PaulLiu) [EMAIL PROTECTED]
Changed-By: Ying-Chun Liu (PaulLiu) [EMAIL PROTECTED]
Description: 
 gbatnav- networked BattleShip game
Closes: 330167 346529 449962 460763
Changes: 
 gbatnav (1.0.4cvs20051004-3) unstable; urgency=low
 .
   * New Maintainer (Closes: #330167)
   * Bump standard version to 3.7.3
   * Bump debhelper compat to 5
   * gnome2 transition (Closes: #460763)
 + Use quilt to handle patches for previous patch and new patches
 + Add debian/patches/gnome2_transition_*.patch to transit to gnome2
 + Use autoconf/automake to re-generate configure
   * Update watch file (Closes: #449962)
 Thanks to Raphael Geissert [EMAIL PROTECTED]
   * Include Swedish PO translation (Closes: #346529)
 Thanks to Daniel Nylander [EMAIL PROTECTED]
   * Add Homepage field in debian/control
   * Add dh_desktop in debian/rules
 Thanks to Ubuntu MOTU Developers [EMAIL PROTECTED]
Files: 
 c14c6d7864405431056c7293dc9ac534 736 gnome optional 
gbatnav_1.0.4cvs20051004-3.dsc
 ce3678fab9fb128e944474ead0970ad6 11320 gnome optional 
gbatnav_1.0.4cvs20051004-3.diff.gz
 607e7a9692d56abdb6f9ad1654043171 125930 gnome optional 
gbatnav_1.0.4cvs20051004-3_amd64.deb

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

iD8DBQFHmie5vGr7W6HudhwRAmSYAJwJ0xaLz7mJCrWKA3v00OEJrWEdTgCgiCCa
sm1dx5qoRM3EsP9cbLwcZwM=
=gz8T
-END PGP SIGNATURE-


---End Message---


Bug#346529: marked as done (gbatnav: [INTL:sv] upstream Swedish PO translation)

2008-01-25 Thread Debian Bug Tracking System
Your message dated Fri, 25 Jan 2008 18:32:02 +
with message-id [EMAIL PROTECTED]
and subject line Bug#346529: fixed in gbatnav 1.0.4cvs20051004-3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: gbatnav
Version: 1.0.4cvs20051004-2
Severity: wishlist
Tags: patch l10n


Here is the swedish translation of gbatnav.

Regards,
Daniel

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE.ISO-8859-1, LC_CTYPE=sv_SE.ISO-8859-1 (charmap=ISO-8859-1)
# Swedish translation of gbatnav.
# Copyright (C) 2006 Free Software Foundation, Inc.
# Daniel Nylander [EMAIL PROTECTED], 2006.
#
msgid 
msgstr 
Project-Id-Version: gbatnav 1.0.4cvs20051004-2\n
POT-Creation-Date: 2002-04-07 15:46-0300\n
PO-Revision-Date: 2006-01-09 09:28+0100\n
Last-Translator: Daniel Nylander [EMAIL PROTECTED]\n
Language-Team: Swedish [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=utf-8\n
Content-Transfer-Encoding: 8bit\n

#: gbnclient/gbnclient.c:48
#: gbnrobot/robot_proceso.c:39
msgid Server name. Default is localhost
msgstr Servernamn. Förval är localhost

#: gbnclient/gbnclient.c:47
#: gbnrobot/robot_proceso.c:41
#: gbnserver/gbnserver.c:63
msgid Port number. Default is 1995
msgstr Portnummer. Förval är 1995

#: gbnclient/gbnclient.c:51
#: gbnrobot/robot_proceso.c:44
msgid Enable GGZ mode
msgstr Aktivera GGZ-läge

#: gbnrobot/robot_proceso.c:47
msgid Disable the GUI
msgstr Stäng av grafiskt gränssnitt

#: gbnrobot/robot_proceso.c:291
msgid Ready
msgstr Klar

#: gbnrobot/robot_proceso.c:347
msgid My turn
msgstr Min tur

#: gbnrobot/robot_proceso.c:351
msgid Waiting turn...
msgstr Väntar på tur...

#. clear all names
#: gbnclient/proceso.c:37
#: gbnclient/proceso.c:170
#: gbnrobot/robot_proceso.c:402
#: gbnrobot/robot_proceso.c:424
#: gbnserver/play.c:29
msgid Game Over
msgstr Spelet är över

#: gbnrobot/robot_proceso.c:525
msgid gbnrobot Error: Is the server running?\n
msgstr gbnrobot-fel: Är servern igång?\n

#: gbnrobot/robot_proceso.c:560
msgid Gnome Batalla Naval robot
msgstr Gnome Batalla Naval robot

#: gbnrobot/robot_proceso.c:593
msgid .
msgstr .

#: gbnrobot/robot_proceso.c:596
msgid Connecting...
msgstr Ansluter...

#: gbnclient/g_connect.c:106
#: gbnclient/g_interface.c:267
msgid Connect to server
msgstr Anslut till server

#: gbnclient/g_connect.c:133
msgid Server Options
msgstr Serveralternativ

#. server port
#: gbnclient/g_connect.c:138
msgid Server port:
msgstr Serverport:

#. server name
#: gbnclient/g_connect.c:145
msgid Server name:
msgstr Servernamn:

#. player name
#: gbnclient/g_connect.c:153
msgid Name:
msgstr Namn:

#: gbnclient/g_interface.c:104
msgid Game Over: You lost!
msgstr Spelet är över: Du förlorade!

#: gbnclient/g_interface.c:127
msgid Game Over: You are the Winner!
msgstr Spelet är över: Du vann!

#: gbnclient/g_interface.c:157
msgid Batalla Naval client
msgstr Klient för Batalla Naval

#: gbnclient/g_interface.c:159
msgid (C) 1998-2001 Ricardo C. Quesada
msgstr (C) 1998-2001 Ricardo C. Quesada

#: gbnclient/g_interface.c:161
msgid A multiplayer networked battleship game.
msgstr Ett nätverksbaserat sänka skepp-spel för flera användare.

#: gbnclient/g_interface.c:170
msgid Batalla Naval Home Page
msgstr Batalla Navals webbplats

#: gbnclient/g_interface.c:191
msgid _Connect
msgstr _Anslut

#: gbnclient/g_interface.c:193
msgid _Disconnect
msgstr _Koppla ned

#: gbnclient/g_interface.c:196
msgid _Launch a robot
msgstr _Avfyra en robot

#: gbnclient/g_interface.c:212
msgid _Generate random board
msgstr _Generera ett slumpat bord

#: gbnclient/g_interface.c:215
msgid _Send ships
msgstr _Skicka skepp

#: gbnclient/g_interface.c:218
msgid _Start
msgstr _Starta

#: gbnclient/g_interface.c:221
#: gbnserver/g_interface.c:102
msgid Status
msgstr Status

#: gbnclient/g_interface.c:228
msgid View lot of messages
msgstr Visa en massa meddelanden

#: gbnclient/g_interface.c:246
msgid _Actions
msgstr _Åtgärder

#: gbnclient/g_interface.c:267
msgid Connect
msgstr Anslut

#: gbnclient/g_interface.c:273
msgid Random
msgstr Slumpad

#: gbnclient/g_interface.c:273
msgid Generate a random board
msgstr Generera ett slumpat bord

#: gbnclient/g_interface.c:277
msgid Send ships
msgstr Skicka skepp

#: gbnclient/g_interface.c:277
msgid Send ships to server
msgstr Skicka skepp till server

#: gbnclient/g_interface.c:284
msgid Robot
msgstr Robot

#: 

Bug#460763: RFS: gbatnav -- networked BattleShip game

2008-01-25 Thread Ying-Chun Liu (PaulLiu)

Dear Pierre,

gbatnav is currently depends on gnome1 and I've made a patch to transit 
it to gnome2. Because the package is orphaned and thus I ITA and made a 
new package to fix the bug 460763.


Could you please check this package and upload it for me?

The new package is at
http://mentors.debian.net/debian/pool/main/g/gbatnav

The respective dsc is at
http://mentors.debian.net/debian/pool/main/g/gbatnav/gbatnav_1.0.4cvs20051004-3.dsc

Many Thanks,
 Ying-Chun Liu


--
PaulLiu(劉穎駿)
E-mail address: [EMAIL PROTECTED]



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



ROTARY CLUB

2008-01-25 Thread ROTARY . CLUB
 BRAVO VOUS ETES LE GAGNANT DU 5éme PRIX DE LA LOTERIE ROTARY-CLUB-BENIN 
2007-2008  

LOTTERIE ROTARY CLUB
 Honorable Correspondant(e), 
Rotary CLUB du BENIN a organisé une tombola concernant toutes personnes 
résidant au BENIN et toutes personnes vivanthors dU BENIN ayant une boîte 
électronique.  
  Le premier prix est deux jumelées villa d'une valeur de 120 000 Euros située 
à la rue presidentielle (BENIN)
 Le second prix, la somme  de  € 90  000   Euros
 3ième prix est un montant  de € 70  000   Euros
 4ième prix un montant   de  € 65  000   Euros
 5ième prix un montant   de  € 59  000   Euros 
 6ième prix un montant   de  € 35  000   Euros
Etc...
  A l'issue de cette tombola, vous avez été tiré à la 5ième place donc 
l'heureux bénéficiaire de la somme de  € 59 000 Euros .
 Si vous avez reçus ce message alors vous êtes la personne correspondante à 
l'adresse électronique tirée au sort et qui fait de vous l'heureux bénéficiaire 
des € 59 000 Euros. 
 
  Nous vous prions d' adresser un message de confirmation mentionnant votre 
numéro de code qui est le  JMB/29  à l'huissier qui a eu à superviser 
l'opération afin d'entamer la procédure en vue d'entrer en possession de votre 
gain,au mail suivant: [EMAIL PROTECTED]  Pour des raisons de sécurité nous vous 
prions de garder une confidentialité absolu autour de ce message car des 
personnes autres que les gagnants nous envoi des messages se faisant passer 
comme tel. 
 

VOUS DEVEZ AUSSI REPONDRE A CETTE QUESTION ET L'ENVOYER AU MAIL DE NOTRE 
HUSSIER DE JUSTICE MAITRE MIGAN JUSTIN. 
   
 SI VOUS ETES DANS L'IMPOSSIBILITE DE VOUS RENDRE A LA CEREMONIE DE REMISE DE 
VOTRE GAIN VEUILLEZ CHOISIR  LE TYPE DE PAIEMENT DE VOTRE GAIN :
Chèque
Virement Bancaire  
   
 

Maître MIGAN JUSTIN
Huissier de Justice BENIN
REP DU BENIN
Email: [EMAIL PROTECTED] 
Un protocole de sécurité  a été  établir  par notre Institution pour éviter des 
doubles réclamations et abus sans garantie de ce programme par quelques 
personnes sans scrupule. Ainsi, il vous est  instamment demande de garder 
l'information confidentielle jusqu'à la fin des réclamations des divers lots.
 Notre Institution vous adresse ses vives et chaleureuses félicitations pour ce 
gain. 
Cordialement 
Directeur Général
La LOTERIE ROTARY CLUB
REPRESENTANT:

BONI JEAN YVES
Email:[EMAIL PROTECTED]




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



Can we talk?

2008-01-25 Thread David Trevino
Hello! I am bored today. I am nice girl that would like to chat with you. Email 
me at [EMAIL PROTECTED] only, because I am using my friend's email to write 
this. To see some pictures of me.


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



Processed: tagging 447364

2008-01-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 # not reproducible on stable
 tags 447364 + sid lenny
Bug#447364: ftp.app: FTBFS: unmet dep libgnustep-gui0.10-dev
There were no tags set.
Tags added: sid, lenny


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#447364: tagging 447364

2008-01-25 Thread Lucas Nussbaum
# Automatically generated email from bts, devscripts version 2.10.11
# not reproducible on stable
tags 447364 + sid lenny




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



Processing of quack-el_0.30-2_i386.changes

2008-01-25 Thread Archive Administrator
quack-el_0.30-2_i386.changes uploaded successfully to localhost
along with the files:
  quack-el_0.30-2.dsc
  quack-el_0.30-2.tar.gz
  quack-el_0.30-2_all.deb

Greetings,

Your Debian queue daemon


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



Processing of amavis-stats_0.1.12-9_i386.changes

2008-01-25 Thread Archive Administrator
amavis-stats_0.1.12-9_i386.changes uploaded successfully to localhost
along with the files:
  amavis-stats_0.1.12-9.dsc
  amavis-stats_0.1.12-9.diff.gz
  amavis-stats_0.1.12-9_all.deb

Greetings,

Your Debian queue daemon


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



Mlcrosoft V!s+a U1timate 89, Retail 399 (save 310)

2008-01-25 Thread Spass Woods
adobe premiere pro cs3 - 79
mcafee internet security suite version 7.0 - 29
virtualdj 4.3 for mac - 39
adobe fireworks cs3 - 59
adobe indesign cs2 - 59
microsoft money home  business 7 - 39
mindjet mindmanager 7 for mac - 39
crystal xcelsius professional v4.5 - 59
adobe fireworks cs3 - 59
v!slt softfactorysale .com in Web Browser


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



netcdf_3.6.1-2_i386.changes ACCEPTED

2008-01-25 Thread Debian Installer

Accepted:
libnetcdf++3_3.6.1-2_i386.deb
  to pool/main/n/netcdf/libnetcdf++3_3.6.1-2_i386.deb
libnetcdf3_3.6.1-2_i386.deb
  to pool/main/n/netcdf/libnetcdf3_3.6.1-2_i386.deb
netcdf-bin_3.6.1-2_i386.deb
  to pool/main/n/netcdf/netcdf-bin_3.6.1-2_i386.deb
netcdf_3.6.1-2.diff.gz
  to pool/main/n/netcdf/netcdf_3.6.1-2.diff.gz
netcdf_3.6.1-2.dsc
  to pool/main/n/netcdf/netcdf_3.6.1-2.dsc
netcdfg-dev_3.6.1-2_i386.deb
  to pool/main/n/netcdf/netcdfg-dev_3.6.1-2_i386.deb


Override entries for your package:
libnetcdf++3_3.6.1-2_i386.deb - optional libs
libnetcdf3_3.6.1-2_i386.deb - optional libs
netcdf-bin_3.6.1-2_i386.deb - optional science
netcdf_3.6.1-2.dsc - source math
netcdfg-dev_3.6.1-2_i386.deb - optional devel

Announcing to [EMAIL PROTECTED]
Closing bugs: 453014 


Thank you for your contribution to Debian.


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



Bug#449962: marked as done (gbatnav: debian/watch fails to report upstream's version)

2008-01-25 Thread Debian Bug Tracking System
Your message dated Fri, 25 Jan 2008 18:32:02 +
with message-id [EMAIL PROTECTED]
and subject line Bug#449962: fixed in gbatnav 1.0.4cvs20051004-3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Source: gbatnav
Version: 1.0.4cvs20051004-2
Severity: minor
Usertags: dehs-no-upstream

Hello maintainer,

The debian/watch file of your package on the unstable distribution fails to 
report upstream's version.
Uscan's message follows:


uscan warning: In /tmp/gbatnav_watchStt1zW,
  no matching hrefs for watch line
  http://prdownloads.sourceforge.net/batnav/gbatnav-(.*)\.tar\.gz


Please note that this message is auto-generated by extracting the information
 from the Debian External Health Status (a.k.a. DEHS) no_upstream page[1].
At the moment of running the package version found is the one indicated in the 
report.
If you have already fixed this issue please ignore and close this report.

If you belive this message can be improved in any way don't hesitate to contact 
me
 by replying to [EMAIL PROTECTED] (where N is the number of this bug 
report).

If you wish not to be notified in the future contact me so I add you to the 
ignore list.

[1] http://dehs.alioth.debian.org/no_upstream.html

Kind regards, Raphael Geissert.


---End Message---
---BeginMessage---
Source: gbatnav
Source-Version: 1.0.4cvs20051004-3

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

gbatnav_1.0.4cvs20051004-3.diff.gz
  to pool/main/g/gbatnav/gbatnav_1.0.4cvs20051004-3.diff.gz
gbatnav_1.0.4cvs20051004-3.dsc
  to pool/main/g/gbatnav/gbatnav_1.0.4cvs20051004-3.dsc
gbatnav_1.0.4cvs20051004-3_amd64.deb
  to pool/main/g/gbatnav/gbatnav_1.0.4cvs20051004-3_amd64.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.
Ying-Chun Liu (PaulLiu) [EMAIL PROTECTED] (supplier of updated gbatnav 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 25 Jan 2008 22:00:22 +0800
Source: gbatnav
Binary: gbatnav
Architecture: source amd64
Version: 1.0.4cvs20051004-3
Distribution: unstable
Urgency: low
Maintainer: Ying-Chun Liu (PaulLiu) [EMAIL PROTECTED]
Changed-By: Ying-Chun Liu (PaulLiu) [EMAIL PROTECTED]
Description: 
 gbatnav- networked BattleShip game
Closes: 330167 346529 449962 460763
Changes: 
 gbatnav (1.0.4cvs20051004-3) unstable; urgency=low
 .
   * New Maintainer (Closes: #330167)
   * Bump standard version to 3.7.3
   * Bump debhelper compat to 5
   * gnome2 transition (Closes: #460763)
 + Use quilt to handle patches for previous patch and new patches
 + Add debian/patches/gnome2_transition_*.patch to transit to gnome2
 + Use autoconf/automake to re-generate configure
   * Update watch file (Closes: #449962)
 Thanks to Raphael Geissert [EMAIL PROTECTED]
   * Include Swedish PO translation (Closes: #346529)
 Thanks to Daniel Nylander [EMAIL PROTECTED]
   * Add Homepage field in debian/control
   * Add dh_desktop in debian/rules
 Thanks to Ubuntu MOTU Developers [EMAIL PROTECTED]
Files: 
 c14c6d7864405431056c7293dc9ac534 736 gnome optional 
gbatnav_1.0.4cvs20051004-3.dsc
 ce3678fab9fb128e944474ead0970ad6 11320 gnome optional 
gbatnav_1.0.4cvs20051004-3.diff.gz
 607e7a9692d56abdb6f9ad1654043171 125930 gnome optional 
gbatnav_1.0.4cvs20051004-3_amd64.deb

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

iD8DBQFHmie5vGr7W6HudhwRAmSYAJwJ0xaLz7mJCrWKA3v00OEJrWEdTgCgiCCa
sm1dx5qoRM3EsP9cbLwcZwM=
=gz8T
-END PGP SIGNATURE-


---End Message---


Processed: tagging 458632

2008-01-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 tags 458632 + sid lenny
Bug#458632: beaglefs: FTBFS: hit.c:13:27: error: beagle/beagle.h: No such file 
or directory
There were no tags set.
Tags added: sid, lenny


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#460763: RFS: gbatnav -- networked BattleShip game

2008-01-25 Thread Pierre Habouzit
On Fri, Jan 25, 2008 at 04:21:21PM +, Ying-Chun Liu (PaulLiu) wrote:
 Dear Pierre,
 
 gbatnav is currently depends on gnome1 and I've made a patch to transit 
 it to gnome2. Because the package is orphaned and thus I ITA and made a 
 new package to fix the bug 460763.
 
 Could you please check this package and upload it for me?
 
 The new package is at
 http://mentors.debian.net/debian/pool/main/g/gbatnav
 
 The respective dsc is at
 http://mentors.debian.net/debian/pool/main/g/gbatnav/gbatnav_1.0.4cvs20051004-3.dsc

  excellent work.
 
 Many Thanks,
  Ying-Chun Liu
 
 
 -- 
 PaulLiu(劉穎駿)
 E-mail address: [EMAIL PROTECTED]

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpJSp6zOWAm9.pgp
Description: PGP signature


Bug#453014: marked as done (Bashism)

2008-01-25 Thread Debian Bug Tracking System
Your message dated Fri, 25 Jan 2008 22:15:56 +0100
with message-id [EMAIL PROTECTED]
and subject line no bashism in netcdf
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
From: Luca Falavigna [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: Bashism
Package: netcdf
Version: 3.6.1-1
Severity: minor
Tags: patch
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu hardy ubuntu-patch

netcdf has a bashism in debian/rules file which causes FTBFS on systems
with /bin/sh linked to /bin/dash. Even if Debian is not affected, it
could be worth adjust it for compatibility purposes.
Attached patch, taken from Ubuntu version, should fix this issue.

Thank you.
diff -pruN 3.6.1-1/debian/rules 3.6.1-1ubuntu1/debian/rules
--- 3.6.1-1/debian/rules	2007-11-06 10:10:48.0 +
+++ 3.6.1-1ubuntu1/debian/rules	2007-11-06 10:09:27.0 +
@@ -335,8 +335,7 @@ endif
 	  debian/tmp-dev/usr/share/doc/$(package)g-dev/changelog.Debian
 	install -m 644 src/cxx/example.c src/cxx/example.cpp \
 	  debian/tmp-dev/usr/share/doc/$(package)g-dev/examples/.
-	gzip -9v debian/tmp-dev/usr/share/doc/$(package)g-dev/[^e]*	\
-	  debian/tmp-dev/usr/share/doc/$(package)g-dev/examples/*
+	gzip -9vr debian/tmp-dev/usr/share/doc/$(package)g-dev/*
 	$(RM) -r debian/tmp-dev/usr/share/man/man3f
 	gzip -9v debian/tmp-dev/usr/share/man/*/*
 	install -m 644 debian/copyright	\
---End Message---
---BeginMessage---
Package: netcdf
Version: 1:3.6.2-1

Heya,

Repackaging this with cdbs fixed the bashism in experimental.

Marc
-- 
BOFH #129:
The ring needs another token

---End Message---


quack-el_0.30-2_i386.changes ACCEPTED

2008-01-25 Thread Debian Installer

Accepted:
quack-el_0.30-2.dsc
  to pool/main/q/quack-el/quack-el_0.30-2.dsc
quack-el_0.30-2.tar.gz
  to pool/main/q/quack-el/quack-el_0.30-2.tar.gz
quack-el_0.30-2_all.deb
  to pool/main/q/quack-el/quack-el_0.30-2_all.deb


Override entries for your package:
quack-el_0.30-2.dsc - source interpreters
quack-el_0.30-2_all.deb - optional interpreters

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



Processed: tagging 447447

2008-01-25 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 # not reproducible on stable
 tags 447447 + sid lenny
Bug#447447: preferences.app: FTBFS: unmet b-dep libgnustep-gui0.10-dev
There were no tags set.
Tags added: sid, lenny


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#447447: tagging 447447

2008-01-25 Thread Lucas Nussbaum
# Automatically generated email from bts, devscripts version 2.10.11
# not reproducible on stable
tags 447447 + sid lenny




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



amavis-stats_0.1.12-9_i386.changes ACCEPTED

2008-01-25 Thread Debian Installer

Accepted:
amavis-stats_0.1.12-9.diff.gz
  to pool/main/a/amavis-stats/amavis-stats_0.1.12-9.diff.gz
amavis-stats_0.1.12-9.dsc
  to pool/main/a/amavis-stats/amavis-stats_0.1.12-9.dsc
amavis-stats_0.1.12-9_all.deb
  to pool/main/a/amavis-stats/amavis-stats_0.1.12-9_all.deb


Override entries for your package:
amavis-stats_0.1.12-9.dsc - source admin
amavis-stats_0.1.12-9_all.deb - extra admin

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



Re: Removal candidate: bfr

2008-01-25 Thread Steve Langasek
On Fri, Jan 25, 2008 at 04:41:07PM +, James Westby wrote:

 The bfr package is QA maintained, but has no bugs and 77 installs, 20
 votes.

 However the main reason for removing it would seem to be that the
 functionality is provided by our trusty friend |

 Anyone object to me filling a removal request?

Removing this seems like a good idea to me.

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
[EMAIL PROTECTED] [EMAIL PROTECTED]


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



Bug#354307: packages.qa.debian.org/m/mydsn.html has weird sorted news

2008-01-25 Thread Stefano Zacchiroli
On Fri, Jan 25, 2008 at 08:05:01PM +0100, Stefano Zacchiroli wrote:
 If so we can just run a script to check whether the affected files are
 duplicates or not, get rid of all the duplicates ... and hope nothing
 else remains in the bucket :-)

Just for fun I've actually searched for duplicated. Attached there's a
list, 106 out of 386 weird sorted news dirs are duplicated, the
remainder are not. Here is how I've created the attached file:

[EMAIL PROTECTED]:/srv/packages.qa.debian.org/www$ cut -f 1 
weird_sorted_news.txt \
  | bin/find_dup_sorted_news.sh \
   dup_sorted_news.txt

So, we can't just remove all the weird files. Still, the non
duplicates can be renamed so that they are properly sorted (for example
renaming them from, say, 25.txt to TIMESTAMP.25.txt where
TIMESTAMP.txt would have led to a clash).

What do you think of this solution? (I volunteer to write the batch
script which does this fix.)

It remains still open the point of whether clashes can happen again or
not ... (see my previous post).

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],cs.unibo.it,debian.org}  -%-  http://upsilon.cc/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Re: RFS: QA Uploads

2008-01-25 Thread Barry deFreese

Frank Lichtenheld wrote:

On Fri, Jan 25, 2008 at 04:32:43PM -0500, Barry deFreese wrote:
  

Frank Lichtenheld wrote:


On Thu, Jan 24, 2008 at 09:01:22PM -0500, Barry deFreese wrote:
as the name (for whom the copyright notice is missing in
debian/copyright BTW), not Patrik Rædman.

Gruesse,
 
  
OK, I think I have fixed all of these also and added Patrick to 
Copyright holders as well.



Hrm, his name is now correct in debian/copyright, but this time it's not
UTF-8...

Gruesse,
  
I think I finally got it right.  At least it display OK for me and 
lintian is happy now.  I've put a new one on mentors.


Thanks for the other uploads!

Barry deFreese


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



Re: RFS: QA Uploads

2008-01-25 Thread Barry deFreese

Frank Lichtenheld wrote:

On Thu, Jan 24, 2008 at 09:01:22PM -0500, Barry deFreese wrote:
  

http://mentors.debian.net/debian/pool/main/k/kxgenerator/kxgenerator_0.3.7+dfsg-2.dsc



Lintian says:
W: kxgenerator: menu-item-uses-apps-section /usr/share/menu/kxgenerator:2
W: kxgenerator: menu-item-creates-new-section Apps/System 
/usr/share/menu/kxgenerator:2

Gruesse,
  

New one one mentors.

Thanks again!

Barry deFreese


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



RFS: QA Upload -- bazaar-docs

2008-01-25 Thread Barry deFreese

Hi,

Here is another QA upload of an orphaned package with incorrect 
maintiner.  Couple of bugfixes and package updates as well.


http://mentors.debian.net/debian/pool/main/b/bazaar-doc/bazaar-doc_1.4-2.dsc

If anyone has time to review/upload, I would appreciate it.

Thank you,

Barry deFreese


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



Re: RFS: QA Uploads

2008-01-25 Thread Frank Lichtenheld
On Fri, Jan 25, 2008 at 04:56:40PM -0500, Barry deFreese wrote:
 OK, new one on mentors.  Let me know if I missed anything.

Uploaded.

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


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



simpleparse

2008-01-25 Thread Vincent Bernat
Hi !

python-simpleparse has two annoying bugs:
 http://bugs.debian.org/426429
 http://bugs.debian.org/357537

Both of them is solved by a new upstream version. The last upload by the
maintainer  is  from  2005 [1].  This   is  the  only  package  of  this
maintainer [2].

I  and another  contributor  have  provided patchs  to  package the  new
upstream and  solve those bugs. We  don't get any answer  from Seo which
seems to be inactive.

Therefore,  I'd like to  request to  orphan this  package. I  would then
adopt it and maintain it inside Debian Python Modules Team.

[1] http://packages.qa.debian.org/s/simpleparse.html
[2] http://qa.debian.org/[EMAIL PROTECTED]
-- 
THE CHRISTMAS PAGEANT DOES NOT STINK
THE CHRISTMAS PAGEANT DOES NOT STINK
THE CHRISTMAS PAGEANT DOES NOT STINK
-+- Bart Simpson on chalkboard in episode 8F09


pgpMDSjeRO1Ah.pgp
Description: PGP signature


Re: RFS: QA Uploads

2008-01-25 Thread Barry deFreese

Frank Lichtenheld wrote:

On Thu, Jan 24, 2008 at 09:01:22PM -0500, Barry deFreese wrote:
  

http://mentors.debian.net/debian/pool/main/s/sn/sn_0.3.8-7.dsc



The Makefile is not autogenerated so no need for test trickery during
clean, just remove the -
While you're at it remove the rm -f debian/substvars, no idea what
that should be good for, especially since it is directly followed
by dh_clean...

You haven't removed the unused dh_ commands here like e.g. in your
amavis-stats upload. Please do so, especially the ancient ones.

From what encoding did you convert the copyright file to UTF-8? If I
convert the *.c files from iso-8859-1 to UTF-8 I get Patrik Rådman
as the name (for whom the copyright notice is missing in
debian/copyright BTW), not Patrik Rædman.

Gruesse,
  
OK, I think I have fixed all of these also and added Patrick to 
Copyright holders as well.


Thanks again!

Barry deFreese


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



Re: Removal candidate: bfr

2008-01-25 Thread Jack T Mudge III
On Friday 25 January 2008 08:41:07 am James Westby wrote:
 Hi,

 The bfr package is QA maintained, but has no bugs and 77 installs, 20
 votes.

 However the main reason for removing it would seem to be that the
 functionality is provided by our trusty friend |

 Anyone object to me filling a removal request?

 Thanks,

 James

Bfr is meant to be a companion to |, not a replacement. You need to use |s 
with bfr to accomplish anything useful :). I find bfr extremely useful when 
writing console programs (esp. those that use buffers), because it removes 
the variable of data coming in too quickly (and thus I know that whatever 
happens is entirely the fault of my program, and not because of some 
environmental factor). I'm sure there are plenty of other uses for bfr as 
well.

It's got no bugs, and 77 installs seems just a bit high to remove it, IMHO.

-- 
Sincerely,
Jack Mudge
[EMAIL PROTECTED]

My GPG Public Key can be found at:
https://www.theanythingbox.com/pgp.htm
Signatures are appreciated, email them to me.


signature.asc
Description: This is a digitally signed message part.


Re: RFS: QA Uploads

2008-01-25 Thread Frank Lichtenheld
On Thu, Jan 24, 2008 at 09:01:22PM -0500, Barry deFreese wrote:
 http://mentors.debian.net/debian/pool/main/q/quack-el/quack-el_0.30-2.dsc

debian/copyright: copyright statement missing, inexact reference to GPL
version, while the source has a clear GPL 2+ statement.

you can also remove the commented out DH_COMPAT setting, the commented
out $(MAKE) and stuff, and the unused targets configure(-stamp).

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


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



Re: RFS: Another QA Upload -- amavis-stats

2008-01-25 Thread Frank Lichtenheld
On Thu, Jan 24, 2008 at 10:12:36PM -0500, Barry deFreese wrote:
 Here is another QA upload.  Mainly setting maintainer to QA and a couple 
 of lintian fixes.
 
 http://mentors.debian.net/debian/pool/main/a/amavis-stats/amavis-stats_0.1.12-9.dsc

debian/copyright claims this is GPL 2 only but references the generic
common-licenses GPL symlink. The README on the other hand seems to
indicate GPL 2 or later.

Additionally the copyright year is missing in debian/copyright.

Would be nice if you could fix these issues with the QA upload.

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


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



Re: RFS: QA Uploads

2008-01-25 Thread Frank Lichtenheld
On Thu, Jan 24, 2008 at 09:01:22PM -0500, Barry deFreese wrote:
 http://mentors.debian.net/debian/pool/main/s/sn/sn_0.3.8-7.dsc

The Makefile is not autogenerated so no need for test trickery during
clean, just remove the -
While you're at it remove the rm -f debian/substvars, no idea what
that should be good for, especially since it is directly followed
by dh_clean...

You haven't removed the unused dh_ commands here like e.g. in your
amavis-stats upload. Please do so, especially the ancient ones.

From what encoding did you convert the copyright file to UTF-8? If I
convert the *.c files from iso-8859-1 to UTF-8 I get Patrik Rådman
as the name (for whom the copyright notice is missing in
debian/copyright BTW), not Patrik Rædman.

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


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



Bug#462470: PTS: don't show changelog-only ubuntu patches

2008-01-25 Thread Raphael Hertzog
Hi,

On Fri, 25 Jan 2008, Paul Wise wrote:
 Package: qa.debian.org
 Severity: wishlist
 
 I would like it if the PTS didn't link to changelog-only Ubuntu patches.
 Here is an example:
 
 http://packages.qa.debian.org/s/synfig.html
 http://patches.ubuntu.com/s/synfig/synfig_0.61.07-1build1.patch

By changelog-only, one must understand binnmu in the Ubuntu world.

Scott, could you exclude those from the PATCH file that you generate?
(http://patches.ubuntu.com/PATCHES)

Cheers,
-- 
Raphaël Hertzog

Le best-seller français mis à jour pour Debian Etch :
http://www.ouaza.com/livre/admin-debian/




Removal candidate: bfr

2008-01-25 Thread James Westby
Hi,

The bfr package is QA maintained, but has no bugs and 77 installs, 20
votes.

However the main reason for removing it would seem to be that the
functionality is provided by our trusty friend |

Anyone object to me filling a removal request?

Thanks,

James


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



Re: RFS: QA Uploads

2008-01-25 Thread Barry deFreese

Frank Lichtenheld wrote:

On Thu, Jan 24, 2008 at 09:01:22PM -0500, Barry deFreese wrote:
  

http://mentors.debian.net/debian/pool/main/q/quack-el/quack-el_0.30-2.dsc



debian/copyright: copyright statement missing, inexact reference to GPL
version, while the source has a clear GPL 2+ statement.

you can also remove the commented out DH_COMPAT setting, the commented
out $(MAKE) and stuff, and the unused targets configure(-stamp).

Gruesse,
  

OK, new one on mentors.  Let me know if I missed anything.

Thanks again!

Barry deFreese


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



RFS: QA Upload -- oo2c - Massive restructuring

2008-01-25 Thread Barry deFreese

Hi folks,

I have another QA upload but I have made some heavy duty changes to this 
package.


http://mentors.debian.net/debian/pool/main/o/oo2c/oo2c_2.1.11-3.dsc

I added a -dev package and changed the binary to match the soname.  
Right now I am not sure if everything is in the right package.  The 
current version has everything under /usr/lib/oo2c/ in the oo2c 
package.  I am installing them in the liboo2c3 package. (Fixes two 
important bugs bye the way).


If anyone has time I would appreciate a review/upload.

Thanks!

Barry deFreese


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



Re: RFS: Another QA Upload -- amavis-stats

2008-01-25 Thread Barry deFreese

Frank Lichtenheld wrote:

On Thu, Jan 24, 2008 at 10:12:36PM -0500, Barry deFreese wrote:
  
Here is another QA upload.  Mainly setting maintainer to QA and a couple 
of lintian fixes.


http://mentors.debian.net/debian/pool/main/a/amavis-stats/amavis-stats_0.1.12-9.dsc



debian/copyright claims this is GPL 2 only but references the generic
common-licenses GPL symlink. The README on the other hand seems to
indicate GPL 2 or later.

Additionally the copyright year is missing in debian/copyright.

Would be nice if you could fix these issues with the QA upload.

Gruesse,
  
Thanks for looking at this.  I've updated debian/copyright with the text 
from README.  New upload on mentors.


Feel free to let me know if there is anything else.

Thanks,

Barry deFreese


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



Re: RFS: QA Uploads

2008-01-25 Thread Frank Lichtenheld
On Thu, Jan 24, 2008 at 09:01:22PM -0500, Barry deFreese wrote:
 http://mentors.debian.net/debian/pool/main/k/kxgenerator/kxgenerator_0.3.7+dfsg-2.dsc

Lintian says:
W: kxgenerator: menu-item-uses-apps-section /usr/share/menu/kxgenerator:2
W: kxgenerator: menu-item-creates-new-section Apps/System 
/usr/share/menu/kxgenerator:2

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


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



Bug#354307: packages.qa.debian.org/m/mydsn.html has weird sorted news

2008-01-25 Thread Stefano Zacchiroli
On Fri, Jan 25, 2008 at 08:48:05PM +0100, Stefano Zacchiroli wrote:
 Just for fun I've actually searched for duplicated. Attached there's a
 list, 106 out of 386 weird sorted news dirs are duplicated, the

Ehm ... forgot attachment.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],cs.unibo.it,debian.org}  -%-  http://upsilon.cc/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time
base/a/acpi/news/14.txt OK!
base/a/aleph/news/19.txtDUP!
base/a/amavis/news/23.txt   OK!
base/a/antennavis/news/4.txtOK!
base/a/apple2/news/8.txtDUP!
base/a/ara/news/11.txt  OK!
base/a/ara/news/8.txt   OK!
base/a/arch2darcs/news/6.txtOK!
base/a/asclassic/news/19.txtDUP!
base/a/asterisk-spandsp-plugins/news/7.txt  OK!
base/a/avscan/news/5.txtDUP!
base/a/ayuda/news/4.txt DUP!
base/b/bass/news/1.txt  OK!
base/b/bass/news/2.txt  OK!
base/b/bass/news/3.txt  OK!
base/b/bass/news/4.txt  OK!
base/b/bass/news/5.txt  OK!
base/b/bass/news/7.txt  OK!
base/b/bass/news/8.txt  OK!
base/b/bass/news/9.txt  OK!
base/b/bbsload/news/2.txt   DUP!
base/b/belocs-locales-bin/news/22.txt   OK!
base/b/bidentd/news/15.txt  OK!
base/b/bitmap-mule/news/28.txt  DUP!
base/b/blackbox/news/2.txt  DUP!
base/b/blender/news/5.txt   DUP!
base/b/bluefish/news/29.txt DUP!
base/b/bug/news/14.txt  DUP!
base/c/canna-shion/news/2.txt   DUP!
base/c/cbmplugs/news/3.txt  OK!
base/c/cdrdao/news/6.txtDUP!
base/c/chastity-list/news/8.txt DUP!
base/c/cl-hyperobject/news/15.txt   DUP!
base/c/cl-utilities/news/8.txt  DUP!
base/c/cnews/news/25.txtDUP!
base/c/coco-cs/news/6.txt   OK!
base/c/cooledit/news/15.txt DUP!
base/c/courier/news/13.txt  OK!
base/c/crip/news/10.txt OK!
base/c/crip/news/6.txt  OK!
base/c/crip/news/7.txt  OK!
base/c/criticalmass/news/15.txt OK!
base/c/criticalmass/news/4.txt  DUP!
base/d/d4x/news/5.txt   DUP!
base/d/dares/news/2.txt DUP!
base/d/dav-text/news/4.txt  OK!
base/d/dbconfig-common/news/19.txt  OK!
base/d/dbd-xbase/news/4.txt OK!
base/d/dbus/news/9.txt  DUP!
base/d/dchub/news/13.txtDUP!
base/d/dcmtk/news/5.txt DUP!
base/d/ddd/news/9.txt   DUP!
base/d/deal/news/3.txt  OK!
base/d/debpool/news/6.txt   OK!
base/d/debrecipes-es/news/1.txt OK!
base/d/debrecipes-es/news/2.txt OK!
base/d/debrecipes-es/news/3.txt OK!
base/d/debrecipes-es/news/4.txt OK!
base/d/debrecipes-es/news/5.txt OK!
base/d/debrecipes-es/news/7.txt OK!
base/d/debrecipes-es/news/8.txt OK!
base/d/debrecipes-es/news/9.txt OK!
base/d/denemo/news/4.txtDUP!
base/d/devhelp/news/28.txt  OK!
base/d/devhelp/news/8.txt   DUP!
base/d/dh-lisp/news/2.txt   DUP!
base/d/dh-make-perl/news/23.txt OK!
base/d/dhcp-dns/news/6.txt  OK!
base/d/diasce/news/2.txtOK!
base/d/diasce2/news/2.txt   OK!
base/d/dictdlib/news/7.txt  OK!
base/d/dictdlib/news/8.txt  OK!
base/d/distcc/news/21.txt   DUP!
base/d/djvulibre/news/4.txt DUP!
base/d/dlint/news/9.txt DUP!
base/d/doc-es-misc/news/1.txt   OK!
base/d/doc-es-misc/news/2.txt   OK!
base/d/doc-es-misc/news/3.txt   OK!
base/d/doc-es-misc/news/4.txt   OK!
base/d/doc-es-misc/news/5.txt   OK!
base/d/doc-es-misc/news/6.txt   OK!
base/d/doc-es-misc/news/7.txt   OK!
base/d/doc-es-misc/news/9.txt   OK!
base/d/drbdlinks/news/5.txt OK!
base/d/droidbattles/news/2.txt  DUP!
base/d/drupal/news/9.txtOK!
base/d/dvd+rw-tools/news/5.txt  DUP!
base/e/e16keyedit/news/13.txt   OK!
base/e/easyfw/news/1.txtOK!
base/e/easyfw/news/2.txtOK!
base/e/easyfw/news/3.txtOK!
base/e/easyfw/news/5.txtOK!
base/e/easyfw/news/6.txtOK!
base/e/easyfw/news/7.txtOK!
base/e/easyfw/news/8.txtOK!
base/e/easyfw/news/9.txtOK!
base/e/ekg/news/11.txt  OK!
base/e/eruby/news/21.txtOK!
base/f/fgfs-base/news/9.txt DUP!
base/f/flightgear/news/12.txt   DUP!
base/f/fml/news/14.txt  DUP!
base/f/foomatic-gui/news/23.txt OK!
base/f/fpdns/news/2.txt DUP!
base/f/ftnchek/news/4.txt   DUP!
base/f/fudgit/news/5.txtDUP!
base/f/fuse/news/21.txt OK!
base/f/fvwm95/news/15.txt   DUP!
base/f/fwbuilder/news/13.txtOK!
base/g/gcalctool/news/17.txtOK!
base/g/gcc/news/15.txt  DUP!
base/g/gedit/news/4.txt OK!
base/g/gedit/news/9.txt OK!
base/g/gettyps/news/3.txt   DUP!
base/g/giflib/news/3.txtOK!
base/g/gnome-gv/news/23.txt DUP!
base/g/gnut/news/9.txt  OK!
base/g/gopher/news/6.txtOK!
base/g/gtk+extra/news/12.txtOK!
base/g/gtkdiff/news/7.txt   DUP!
base/g/gtkdiskfree/news/2.txt   OK!
base/g/gtkdiskfree/news/3.txt   OK!
base/g/gtkdiskfree/news/5.txt   OK!
base/g/gtkdiskfree/news/6.txt   OK!
base/g/gtranscript/news/2.txt   DUP!
base/g/gzip/news/11.txt DUP!
base/h/h5utils/news/22.txt  OK!
base/h/harden/news/12.txt   DUP!
base/h/haskelldb/news/10.txtOK!
base/h/hdparm/news/21.txt  

Bug#354307: packages.qa.debian.org/m/mydsn.html has weird sorted news

2008-01-25 Thread Stefano Zacchiroli
On Sun, 2006-02-26 at 12:39 +0100, Jeroen van Wolffelaar wrote:
 There are more packages effected, the reason is that now the PTS cannot
 have multiple entries of exactly the same second, and that during
 conversion, rathern than deleting clashing entries, I left them for now
 pending looking a bit better at whether they really are duplicate.
 
 This ruins sorting next to it being a duplicate anyway too.

Jeroen,
  I've searched for the affected bug on master.debian.org. The result is
attached, you can re-generate the list of affected packages running
bin/find_weird_sorted_news.sh from /srv/packages.qa.debian.org/www on
master.debian.org.

The assumptions behind that is that the clash corresponds to file
(mis-)named like 25.txt in the news/ directory (while other files have
timestamp-like) names. Is the assumption correct?

Moreover, and that's the main point of this report, it seems that the
last time the clash happened was January 2006, no other clashes in 2007
nor 2008. Is it possible that the issue has been solved elsewhere and
the clash no longer happens?

If so we can just run a script to check whether the affected files are
duplicates or not, get rid of all the duplicates ... and hope nothing
else remains in the bucket :-)

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],cs.unibo.it,debian.org}  -%-  http://upsilon.cc/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time
base/a/acpi/news/14.txt 2002-09-05 22:16:12.0 +
base/a/aleph/news/19.txt2002-09-05 16:00:54.0 +
base/a/amavis/news/23.txt   2002-09-05 22:18:36.0 +
base/a/antennavis/news/4.txt2005-04-06 22:37:29.0 +
base/a/apple2/news/8.txt2002-09-05 16:00:55.0 +
base/a/ara/news/11.txt  2004-12-19 04:39:28.0 +
base/a/ara/news/8.txt   2004-12-19 04:48:56.0 +
base/a/arch2darcs/news/6.txt2005-04-16 09:53:06.0 +
base/a/asclassic/news/19.txt2002-09-05 16:00:55.0 +
base/a/asterisk-spandsp-plugins/news/7.txt  2005-03-18 10:38:03.0 
+
base/a/avscan/news/5.txt2005-12-11 22:08:48.0 +
base/a/ayuda/news/4.txt 2002-09-05 16:02:48.0 +
base/b/bass/news/1.txt  2005-03-20 01:25:46.0 +
base/b/bass/news/2.txt  2005-03-20 01:25:44.0 +
base/b/bass/news/3.txt  2005-03-20 01:25:42.0 +
base/b/bass/news/4.txt  2005-03-20 01:25:41.0 +
base/b/bass/news/5.txt  2005-03-20 01:25:39.0 +
base/b/bass/news/7.txt  2005-03-20 01:24:24.0 +
base/b/bass/news/8.txt  2005-03-20 01:24:23.0 +
base/b/bass/news/9.txt  2005-03-20 01:24:22.0 +
base/b/bbsload/news/2.txt   2005-12-11 22:08:48.0 +
base/b/belocs-locales-bin/news/22.txt   2005-03-20 21:10:22.0 +
base/b/bidentd/news/15.txt  2002-09-05 17:15:53.0 +
base/b/bitmap-mule/news/28.txt  2002-09-05 14:59:26.0 +
base/b/blackbox/news/2.txt  2005-12-11 22:08:48.0 +
base/b/blender/news/5.txt   2005-12-11 22:08:47.0 +
base/b/bluefish/news/29.txt 2002-09-05 16:02:44.0 +
base/b/bug/news/14.txt  2002-09-05 16:01:28.0 +
base/c/canna-shion/news/2.txt   2003-04-17 12:02:36.0 +
base/c/cbmplugs/news/3.txt  2004-04-17 04:24:56.0 +
base/c/cdrdao/news/6.txt2005-12-11 22:08:47.0 +
base/c/chastity-list/news/8.txt 2003-04-16 20:16:10.0 +
base/c/cl-hyperobject/news/15.txt   2003-04-16 22:46:57.0 +
base/c/cl-utilities/news/8.txt  2005-12-11 22:08:47.0 +
base/c/cnews/news/25.txt2002-09-05 16:01:28.0 +
base/c/coco-cs/news/6.txt   2005-03-28 21:53:09.0 +
base/c/cooledit/news/15.txt 2002-09-05 16:00:56.0 +
base/c/courier/news/13.txt  2005-09-01 10:50:01.0 +
base/c/crip/news/10.txt 2005-06-30 08:52:10.0 +
base/c/crip/news/6.txt  2005-12-17 05:30:55.0 +
base/c/crip/news/7.txt  2005-12-17 05:24:20.0 +
base/c/criticalmass/news/15.txt 2004-03-06 05:45:31.0 +
base/c/criticalmass/news/4.txt  2005-12-11 22:08:49.0 +
base/d/d4x/news/5.txt   2005-12-11 22:08:49.0 +
base/d/dares/news/2.txt 2005-12-11 22:08:47.0 +
base/d/dav-text/news/4.txt  2005-06-16 23:23:42.0 +
base/d/dbconfig-common/news/19.txt  2005-03-09 04:39:24.0 +
base/d/dbd-xbase/news/4.txt 2002-09-05 17:09:35.0 +
base/d/dbus/news/9.txt  2005-12-11 22:08:45.0 +
base/d/dchub/news/13.txt2003-04-17 05:13:31.0 +
base/d/dcmtk/news/5.txt 2005-12-11 22:08:46.0 +
base/d/ddd/news/9.txt   2003-04-17 16:09:45.0 +
base/d/deal/news/3.txt  2005-03-18 

Bug#240829: marked as done (packages.qa.debian.org: better error handling (f.e. ENOSPC) to prevent good pages to be replaced with bogus ones)

2008-01-25 Thread Debian Bug Tracking System
Your message dated Fri, 25 Jan 2008 19:03:02 +0100
with message-id [EMAIL PROTECTED]
and subject line empty Packages.qa.debian.org pages gone
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---BeginMessage---
Package: qa.debian.org
Severity: normal

Hi,

maybe you are already familiar with this issue, but here it goes: Some
package pages are just empty, like
http://packages.qa.debian.org/n/netcat.html. Others are OK, but
unfortunately, I can't figure out which are empty and which are not.

Thanks for considering.

bye,
  Roland

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.4
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (ignored: LC_ALL set to 
en_GB.UTF-8)

---End Message---
---BeginMessage---
On Wed, 14 Apr 2004 10:31:55 +0200, Jeroen van Wolffelaar wrote:
 Caused due to space problems, it's fixed now. Converting this bug into a
 minor one about better error handling, but importance is really
 very minor IMHO (shouldn't happen, if it happens you get outdated rather
 than no info... still not good).
 
 Alternatively, a mail being sent if the update somehow fails is also a
 step in the right direction I think.

This is now implemented: bin/generate_html.sh will echo on standard
output issues if xsltproc does not return exit code 0. Since the PTS
update is run via cron, someone should receive an email related to the
output.

Don't know who is listening to cron output for the qa user though ...,
Cc-ing debian-qa for advices on this.

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],cs.unibo.it,debian.org}  -%-  http://upsilon.cc/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature
---End Message---


Re: empty Packages.qa.debian.org pages gone

2008-01-25 Thread Stefano Zacchiroli
On Wed, 14 Apr 2004 10:31:55 +0200, Jeroen van Wolffelaar wrote:
 Caused due to space problems, it's fixed now. Converting this bug into a
 minor one about better error handling, but importance is really
 very minor IMHO (shouldn't happen, if it happens you get outdated rather
 than no info... still not good).
 
 Alternatively, a mail being sent if the update somehow fails is also a
 step in the right direction I think.

This is now implemented: bin/generate_html.sh will echo on standard
output issues if xsltproc does not return exit code 0. Since the PTS
update is run via cron, someone should receive an email related to the
output.

Don't know who is listening to cron output for the qa user though ...,
Cc-ing debian-qa for advices on this.

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],cs.unibo.it,debian.org}  -%-  http://upsilon.cc/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Re: empty Packages.qa.debian.org pages gone

2008-01-25 Thread Raphael Hertzog
On Fri, 25 Jan 2008, Stefano Zacchiroli wrote:
 On Wed, 14 Apr 2004 10:31:55 +0200, Jeroen van Wolffelaar wrote:
  Caused due to space problems, it's fixed now. Converting this bug into a
  minor one about better error handling, but importance is really
  very minor IMHO (shouldn't happen, if it happens you get outdated rather
  than no info... still not good).
  
  Alternatively, a mail being sent if the update somehow fails is also a
  step in the right direction I think.
 
 This is now implemented: bin/generate_html.sh will echo on standard
 output issues if xsltproc does not return exit code 0. Since the PTS
 update is run via cron, someone should receive an email related to the
 output.
 
 Don't know who is listening to cron output for the qa user though ...,

In master's crontab:
MAILTO=hertzog,jeroen

If you want to be added there, I can add you.

Cheers,
-- 
Raphaël Hertzog

Le best-seller français mis à jour pour Debian Etch :
http://www.ouaza.com/livre/admin-debian/


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



Re: RFS: QA Upload - grokking-the-gimp

2008-01-25 Thread Frank Lichtenheld
On Thu, Jan 24, 2008 at 09:37:16PM -0500, Barry deFreese wrote:
 http://mentors.debian.net/debian/pool/non-free/g/grokking-the-gimp/grokking-the-gimp_1.0-2.dsc

Uploaded.

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


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



Re: RFS: QA Uploads

2008-01-25 Thread Frank Lichtenheld
On Fri, Jan 25, 2008 at 04:32:43PM -0500, Barry deFreese wrote:
 Frank Lichtenheld wrote:
 On Thu, Jan 24, 2008 at 09:01:22PM -0500, Barry deFreese wrote:
 as the name (for whom the copyright notice is missing in
 debian/copyright BTW), not Patrik Rædman.
 
 Gruesse,
   
 OK, I think I have fixed all of these also and added Patrick to 
 Copyright holders as well.

Hrm, his name is now correct in debian/copyright, but this time it's not
UTF-8...

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


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



Re: RFS: Another QA Upload -- amavis-stats

2008-01-25 Thread Frank Lichtenheld
On Fri, Jan 25, 2008 at 04:08:19PM -0500, Barry deFreese wrote:
 Frank Lichtenheld wrote:
 On Thu, Jan 24, 2008 at 10:12:36PM -0500, Barry deFreese wrote:
 Would be nice if you could fix these issues with the QA upload.
   
 Thanks for looking at this.  I've updated debian/copyright with the text 
 from README.  New upload on mentors.

Uploaded.

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


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