3 Things You Must Do Before You Go Down on Her - You Can't Affford to Miss If You Want to Satisfy Her

2009-05-16 Thread Ketzler Wixon
<>

Bug#482844: marked as done (hping3: ignores -N (IP ID) command line argument)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 09:34:27 +
with message-id 
and subject line Bug#482844: fixed in hping3 3.a2.ds2-4
has caused the Debian Bug report #482844,
regarding hping3: ignores -N (IP ID) command line argument
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
482844: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=482844
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: hping3
Version: 3.a2.ds2-2
Severity: normal
Tags: patch

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages hping3 depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libpcap0.80.9.8-3system interface for user-level pa
ii  tcl8.48.4.19-2   Tcl (the Tool Command Language) v8

hping3 recommends no packages.

-- no debconf information
diff -Nru hping3-3.a2.ds2/docs/hping2.8 hping3-3.a2.ds2x/docs/hping2.8
--- hping3-3.a2.ds2/docs/hping2.8   2005-03-12 11:13:11.0 +0100
+++ hping3-3.a2.ds2x/docs/hping2.8  2008-05-25 13:48:21.0 +0200
@@ -343,7 +343,7 @@
 .I -N --id
 Set ip->id field. Default id is random but if fragmentation is turned on
 and id isn't specified it will be
-.BR "getpid() & 0xFF" ,
+.BR "getpid() & 0x" ,
 to implement a better solution is in TODO list.
 .TP
 .I -H --ipproto
@@ -714,4 +714,4 @@
 a solaris problem, as stated in the tcpdump-workers mailing list,
 so the libpcap can't do nothing to handle it properly.
 .SH SEE ALSO
-ping(8), traceroute(8), ifconfig(8), nmap(1)
\ No newline at end of file
+ping(8), traceroute(8), ifconfig(8), nmap(1)
diff -Nru hping3-3.a2.ds2/docs/hping3.8 hping3-3.a2.ds2x/docs/hping3.8
--- hping3-3.a2.ds2/docs/hping3.8   2005-03-12 11:13:11.0 +0100
+++ hping3-3.a2.ds2x/docs/hping3.8  2008-05-25 13:48:34.0 +0200
@@ -352,7 +352,7 @@
 .I -N --id
 Set ip->id field. Default id is random but if fragmentation is turned on
 and id isn't specified it will be
-.BR "getpid() & 0xFF" ,
+.BR "getpid() & 0x" ,
 to implement a better solution is in TODO list.
 .TP
 .I -H --ipproto
diff -Nru hping3-3.a2.ds2/hping2.h hping3-3.a2.ds2x/hping2.h
--- hping3-3.a2.ds2/hping2.h2005-03-12 11:13:11.0 +0100
+++ hping3-3.a2.ds2x/hping2.h   2008-05-25 12:48:23.0 +0200
@@ -121,7 +121,7 @@
 #define DEFAULT_ICMP_IP_IHL(IPHDR_SIZE >> 2)
 #defineDEFAULT_ICMP_IP_TOS 0
 #define DEFAULT_ICMP_IP_TOT_LEN0 /* computed by send_icmp_*() 
*/
-#define DEFAULT_ICMP_IP_ID 0 /* rand */
+#define DEFAULT_ICMP_IP_ID -1 /* rand */
 #define DEFAULT_ICMP_CKSUM -1 /* -1 means compute the cksum */
 #define DEFAULT_ICMP_IP_PROTOCOL   6 /* TCP */
 #define DEFAULT_RAW_IP_PROTOCOL6 /* TCP */
diff -Nru hping3-3.a2.ds2/parseoptions.c hping3-3.a2.ds2x/parseoptions.c
--- hping3-3.a2.ds2/parseoptions.c  2005-03-12 11:13:11.0 +0100
+++ hping3-3.a2.ds2x/parseoptions.c 2008-05-25 13:16:11.0 +0200
@@ -463,6 +463,10 @@
break;
case OPT_ICMP_IPID:
icmp_ip_id = strtol(ago_optarg, NULL, 0);
+   if (icmp_ip_id < 0 || icmp_ip_id > 0x) {
+   fprintf(stderr, "Bad ICMP IP ID, resetting to 
random.\n");
+   icmp_ip_id = DEFAULT_ICMP_IP_ID;
+   }
break;
case OPT_ICMP_IPPROTO:
icmp_ip_protocol = strtol(ago_optarg, NULL, 0);
diff -Nru hping3-3.a2.ds2/sendicmp.c hping3-3.a2.ds2x/sendicmp.c
--- hping3-3.a2.ds2/sendicmp.c  2005-03-12 11:13:11.0 +0100
+++ hping3-3.a2.ds2x/sendicmp.c 2008-05-25 13:24:49.0 +0200
@@ -83,7 +83,7 @@
icmp->type = opt_icmptype;  /* echo replay or echo request */
icmp->code = opt_icmpcode;  /* should be indifferent */
icmp->checksum = 0;
-   icmp->un.echo.id = getpid() & 0x;
+   icmp->un.echo.id = icmp_ip_id == DEFAULT_ICMP_IP_ID ? getpid() & 0x 
: icmp_ip_id;
icmp->un.echo.sequence = _icmp_seq;
 
/* data */
--- End Message ---
--- Begin Message ---
Source: hping3
Source-Version: 3.a2.ds2-4

We believe that the bug you reported is fixed in the latest version of
hping3, which is due to be ins

Это лучше, чем наружка

2009-05-16 Thread Максим Тристанович
Здрaвcтвуйтe!

Мы занимаемся массoвыmи рacсылkamи по электрoнным e-mail ящиkам.

Приeмливые цены.

Преимущества работы с нами:
Любые фoрмы оплаты, гибкaя система cкидок, бесплатное создание макета, быстpый 
старт реkламы, свежие базы.

Контактные данные:
Телефон: (Ч95)585 62O9
ICQ: 3 8766 1 5 58


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Качественные рассылки

2009-05-16 Thread Геннадий Сусанна
Здрaвcтвyйте! 

Мы занимаемся mаccовыmи pасcылkами по владельцам ящиков электронной почты.

Сaмые низкие цены.

Преимущества работы с нами:
Любые фoрмы oплаты, гибкaя система cкидок, бесплатное создание макета, быстpый 
старт рекламы, свежие базы.

Контактные данные:
Телефон: (Ч95)5896О3Ч
ICQ: 4 183 96204


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#528920: (libdumbnet_1.8-2/avr32): FTBFS: Outdated config.{sub,guess}

2009-05-16 Thread Bradley Smith
Package: libdumbnet
Version: 1.8-2
Severity: wishlist
User: bradsm...@debian.org
Usertags: avr32

Hi,

Whilst building your package on AVR32, the build failed due to outdated
config.{sub,guess} files.

The full build log is available:

  
http://buildd.debian-ports.org/fetch.php?pkg=libdumbnet&arch=avr32&ver=1.8-2&stamp=1242468731&file=log&as=raw

(The severity of this bug is wishlist purely because AVR32 is not yet an
official architecture, but otherwise this would of course be serious).

Regards,
Bradley Smith

--
Bradley Smith b...@brad-smith.co.uk
Debian GNU/Linux Developer bradsm...@debian.org
GPG: 0xC718D347   D201 7274 2FE1 A92A C45C EFAB 8F70 629A C718 D347



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#468778: fixed

2009-05-16 Thread Debian Archive Maintenance
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

  snownews |1.5.7-8 | hurd-i386
  snownews |   1.5.10-1 | source, alpha, amd64, armel, hppa, i386, ia64, mips, 
mipsel, powerpc, s390, sparc

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.

Packages are never removed from testing by hand.  Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems.

Bugs which have been reported against this package are not automatically
removed from the Bug Tracking System.  Please check all open bugs and
close them or re-assign them to another package if the removed package
was superseded by another one.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 468...@bugs.debian.org.

The full log for this bug can be viewed at http://bugs.debian.org/468778

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@debian.org.

Debian distribution maintenance software
pp.
Joerg Jaspert (the ftpmaster behind the curtain)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#528705: fixed

2009-05-16 Thread Debian Archive Maintenance
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

   ecawave | 1:0.6.1-11 | source, alpha, amd64, armel, hppa, i386, ia64, mips, 
mipsel, powerpc, s390, sparc

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.

Packages are never removed from testing by hand.  Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems.

Bugs which have been reported against this package are not automatically
removed from the Bug Tracking System.  Please check all open bugs and
close them or re-assign them to another package if the removed package
was superseded by another one.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 528...@bugs.debian.org.

The full log for this bug can be viewed at http://bugs.debian.org/528705

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@debian.org.

Debian distribution maintenance software
pp.
Joerg Jaspert (the ftpmaster behind the curtain)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#521175: fixed

2009-05-16 Thread Debian Archive Maintenance
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

 slune |   1.0.14-3 | source, all

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.

Packages are never removed from testing by hand.  Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems.

Bugs which have been reported against this package are not automatically
removed from the Bug Tracking System.  Please check all open bugs and
close them or re-assign them to another package if the removed package
was superseded by another one.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 521...@bugs.debian.org.

The full log for this bug can be viewed at http://bugs.debian.org/521175

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@debian.org.

Debian distribution maintenance software
pp.
Joerg Jaspert (the ftpmaster behind the curtain)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#473895: fixed

2009-05-16 Thread Debian Archive Maintenance
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

 mserv | 0.35-8 | source, alpha, amd64, armel, hppa, hurd-i386, i386, 
ia64, mips, mipsel, powerpc, s390, sparc
 mserv-cgi | 0.35-8 | all
mserv-client | 0.35-8 | alpha, amd64, armel, hppa, hurd-i386, i386, ia64, 
mips, mipsel, powerpc, s390, sparc
 mserv-dev | 0.35-8 | alpha, amd64, armel, hppa, hurd-i386, i386, ia64, 
mips, mipsel, powerpc, s390, sparc

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.

Packages are never removed from testing by hand.  Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems.

Bugs which have been reported against this package are not automatically
removed from the Bug Tracking System.  Please check all open bugs and
close them or re-assign them to another package if the removed package
was superseded by another one.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 473...@bugs.debian.org.

The full log for this bug can be viewed at http://bugs.debian.org/473895

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@debian.org.

Debian distribution maintenance software
pp.
Joerg Jaspert (the ftpmaster behind the curtain)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#528941: Different voice options with say-epos cause eposd to crash

2009-05-16 Thread Don Davis
Package: epos
Version: 1:2.5.37-7
Severity: normal

The use of different voices with say-epos cause eposd to crash.
The program ends with "Segment number 1261 occurred, but the maximum is 442."


execve("/usr/bin/say-epos", ["say-epos", "--voice", "kubec-int", "hello"], [/* 
35 vars */]) = 0
brk(0)  = 0x605000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x7f62700fa000
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x7f62700f8000
access("/etc/ld.so.preload", R_OK)  = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)  = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=193489, ...}) = 0
mmap(NULL, 193489, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f62700c8000
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
open("/usr/lib/libstdc++.so.6", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300g\5\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=1019216, ...}) = 0
mmap(NULL, 3191480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x7f626fbd4000
mprotect(0x7f626fcc4000, 2097152, PROT_NONE) = 0
mmap(0x7f626fec4000, 36864, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf) = 0x7f626fec4000
mmap(0x7f626fecd000, 74424, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f626fecd000
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
open("/lib/libm.so.6", O_RDONLY)= 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P>\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=534736, ...}) = 0
mmap(NULL, 2629848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x7f626f951000
mprotect(0x7f626f9d3000, 2093056, PROT_NONE) = 0
mmap(0x7f626fbd2000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x81000) = 0x7f626fbd2000
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
open("/lib/libgcc_s.so.1", O_RDONLY)= 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 ,\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=93016, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x7f62700c7000
mmap(NULL, 2188856, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x7f626f73a000
mprotect(0x7f626f75, 2097152, PROT_NONE) = 0
mmap(0x7f626f95, 4096, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7f626f95
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
open("/lib/libc.so.6", O_RDONLY)= 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\342"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1375536, ...}) = 0
mmap(NULL, 3482232, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x7f626f3e7000
mprotect(0x7f626f531000, 2093056, PROT_NONE) = 0
mmap(0x7f626f73, 20480, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x149000) = 0x7f626f73
mmap(0x7f626f735000, 17016, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f626f735000
close(3)= 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x7f62700c6000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x7f62700c5000
arch_prctl(ARCH_SET_FS, 0x7f62700c56f0) = 0
mprotect(0x7f626f73, 12288, PROT_READ) = 0
mprotect(0x7f626fec4000, 24576, PROT_READ) = 0
munmap(0x7f62700c8000, 193489)  = 0
brk(0)  = 0x605000
brk(0x62a000)   = 0x62a000
socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 3
getpid()= 9965
open("/etc/resolv.conf", O_RDONLY)  = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=42, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x7f62700f7000
read(4, "domain lan\nsearch lan\nnameserver"..., 4096) = 42
read(4, "", 4096)   = 0
close(4)= 0
munmap(0x7f62700f7000, 4096)= 0
stat("/etc/resolv.conf", {st_mode=S_IFREG|0644, st_size=42, ...}) = 0
open("/etc/resolv.conf", O_RDONLY)  = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=42, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x7f62700f7000
read(4, "domain lan\nsearch lan\nnameserver"..., 4096) = 42
read(4, "", 4096)   = 0
close(4)= 0
munmap(0x7f62700f7000, 4096)= 0
socket(PF_FILE, SOCK_STREAM, 0) = 4
fcntl(4, F_SETFL, O_RDWR|O_NONBLOCK)= 0
connect(4, {sa_family=AF_FILE, path="/var/run/ns

capisuite 0.4.5-9 MIGRATED to testing

2009-05-16 Thread Debian testing watch
FYI: The status of the capisuite source package
in Debian's testing distribution has changed.

  Previous version: 0.4.5-8
  Current version:  0.4.5-9

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



libpcd 1.0.1-2 MIGRATED to testing

2009-05-16 Thread Debian testing watch
FYI: The status of the libpcd source package
in Debian's testing distribution has changed.

  Previous version: 1.0.1-1
  Current version:  1.0.1-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



gcal 3.01.1-9 MIGRATED to testing

2009-05-16 Thread Debian testing watch
FYI: The status of the gcal source package
in Debian's testing distribution has changed.

  Previous version: 3.01.1-8
  Current version:  3.01.1-9

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#316046: marked as done (Number of tracks limited by 1000)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 19:02:05 +
with message-id 
and subject line Bug#316046: fixed in mp3splt 2.2.3-1
has caused the Debian Bug report #316046,
regarding Number of tracks limited by 1000
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
316046: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=316046
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: mp3splt
Version: 2.1-1
Severity: normal

While mp3splt manual says "By default all tracks are splitted",
the actual number of tracks being split is bounded by 1000.
If there are more than 1000 tracks found in the given mp3, mp3splt
splits only first 1000 of them so that the 1001-st track contains
the other still unsplit tracks.
I think the maximum number of tracks should be increased
to something like 10 and this number should be explicitly
mentioned in the manual.

There is another minor problem related to the number of tracks.
Currently the tracks naming is not uniform:
first 99 tracks are named "Track 01.mp3" .. "Track 99.mp3"
tracks NN 100..999 are named "Track 100.mp3" .. "Track 999.mp3" etc.
I believe, the number of digits in the track number should be the same for all 
tracks.
Say, if the maximum track number contains three digits,
first 99 tracks should have names "Track 001.mp3" .. "Track 099.mp3".

Max

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.64
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages mp3splt depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libmad0 0.15.1b-2.1  MPEG audio decoder library
ii  libogg0 1.1.2-1  Ogg Bitstream Library
ii  libvorbis0a 1.1.0-1  The Vorbis General Audio Compressi
ii  libvorbisfile3  1.1.0-1  The Vorbis General Audio Compressi

mp3splt recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: mp3splt
Source-Version: 2.2.3-1

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

mp3splt_2.2.3-1.diff.gz
  to pool/main/m/mp3splt/mp3splt_2.2.3-1.diff.gz
mp3splt_2.2.3-1.dsc
  to pool/main/m/mp3splt/mp3splt_2.2.3-1.dsc
mp3splt_2.2.3-1_i386.deb
  to pool/main/m/mp3splt/mp3splt_2.2.3-1_i386.deb
mp3splt_2.2.3.orig.tar.gz
  to pool/main/m/mp3splt/mp3splt_2.2.3.orig.tar.gz



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 316...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ryan Niebur  (supplier of updated mp3splt 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 ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 29 Mar 2009 02:12:55 -0700
Source: mp3splt
Binary: mp3splt
Architecture: source i386
Version: 2.2.3-1
Distribution: unstable
Urgency: low
Maintainer: Ryan Niebur 
Changed-By: Ryan Niebur 
Description: 
 mp3splt- command line interface to split MP3 and Ogg Vorbis files without 
Closes: 316046 316050 403463 459510 488931
Changes: 
 mp3splt (2.2.3-1) unstable; urgency=low
 .
   * Adopt package (Closes: #488931)
   * New upstream release (Closes: #459510, #403463, #316046)
   * Document default min= value (Closes: #316050)
   * Redo packaging from scratch
Checksums-Sha1: 
 3280662ecb9a0507dbfc69efbd027e5ad8630de2 1148 mp3splt_2.2.3-1.dsc
 b94d0589477fa3c7b7bfd1993c13a83a6ca44e0b 135298 mp3splt_2.2.3.orig.tar.gz
 ec2161e02d97cd08c8af644851b5edf6980c8b91 3760 mp3splt_2.2.3-1.diff.gz
 c95d85574423343727a7e54449c6e8bc938c107d 31984 mp3splt_2.2.3-1_i386.deb
Checksums-Sha256: 
 009d05eb1ea8bfcc9c44c65f58afec7fd53e9ecd93a38a96bf378f46a3e5ff92 1148 
mp3splt_2.2.3-1.dsc
 aae0abb51f537224135204de2dea516a2293a9385f58c7167c483df28a717b04 135298 
mp3splt_2.2.3.orig.tar.gz
 1090eebd1c78eb77c9f08320704f504286feb8a3587a6d6b1cafde843f893b4a 3760 
mp3splt_2.2.3-1.diff.gz
 f783b51c585c6210585239cf65ba970d94b33e73cb2d5d968e43670a7f5fce18 31984 
mp3splt_2.2.3-1_i386.deb
Files: 
 40989b261ea6f3ff4f7e2cc1bd7b8445 1148 sound optional mp3splt_2.2.3-1.dsc
 aa67e24931c62d2f

Bug#459510: marked as done (cue file parser tolerance: missing quotation marks)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 19:02:06 +
with message-id 
and subject line Bug#459510: fixed in mp3splt 2.2.3-1
has caused the Debian Bug report #459510,
regarding cue file parser tolerance: missing quotation marks
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
459510: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=459510
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mp3splt
Version: 2.1c-3
Severity: normal

mp3splt refused a CUE file which for example contained:
PERFORMER Various
instead of
PERFORMER "Various"
Apparently, some tools leave away the quotation marks when there is no
space character in the contents string. Adding the quotation marks to
these entries helped, mp3splt would then read the file.

Don't ask me whether or not the quotation marks should be there - but
the mp3splt cue file parser could be more robust here, I guess.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.23-1-686

Debian Release: lenny/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-=
libc6(>= 2.7-1) | 2.7-5
libmad0(>= 0.15.1b) | 0.15.1b-2.1
libogg0 (>= 1.0rc3) | 1.1.3-3
libvorbis0a  (>= 1.1.2) | 1.2.0.dfsg-3
libvorbisfile3   (>= 1.1.2) | 1.2.0.dfsg-3

best regards,
Erich Schubert
-- 
 erich@(vitavonni.de|debian.org)--GPG Key ID: 4B3A135C (o_
The problem with the future is that it keeps turning into the present. //\
  In unseren Freunden suchen wir, was uns fehlt. --- Thornton Wilder   V_/_



--- End Message ---
--- Begin Message ---
Source: mp3splt
Source-Version: 2.2.3-1

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

mp3splt_2.2.3-1.diff.gz
  to pool/main/m/mp3splt/mp3splt_2.2.3-1.diff.gz
mp3splt_2.2.3-1.dsc
  to pool/main/m/mp3splt/mp3splt_2.2.3-1.dsc
mp3splt_2.2.3-1_i386.deb
  to pool/main/m/mp3splt/mp3splt_2.2.3-1_i386.deb
mp3splt_2.2.3.orig.tar.gz
  to pool/main/m/mp3splt/mp3splt_2.2.3.orig.tar.gz



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 459...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ryan Niebur  (supplier of updated mp3splt 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 ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 29 Mar 2009 02:12:55 -0700
Source: mp3splt
Binary: mp3splt
Architecture: source i386
Version: 2.2.3-1
Distribution: unstable
Urgency: low
Maintainer: Ryan Niebur 
Changed-By: Ryan Niebur 
Description: 
 mp3splt- command line interface to split MP3 and Ogg Vorbis files without 
Closes: 316046 316050 403463 459510 488931
Changes: 
 mp3splt (2.2.3-1) unstable; urgency=low
 .
   * Adopt package (Closes: #488931)
   * New upstream release (Closes: #459510, #403463, #316046)
   * Document default min= value (Closes: #316050)
   * Redo packaging from scratch
Checksums-Sha1: 
 3280662ecb9a0507dbfc69efbd027e5ad8630de2 1148 mp3splt_2.2.3-1.dsc
 b94d0589477fa3c7b7bfd1993c13a83a6ca44e0b 135298 mp3splt_2.2.3.orig.tar.gz
 ec2161e02d97cd08c8af644851b5edf6980c8b91 3760 mp3splt_2.2.3-1.diff.gz
 c95d85574423343727a7e54449c6e8bc938c107d 31984 mp3splt_2.2.3-1_i386.deb
Checksums-Sha256: 
 009d05eb1ea8bfcc9c44c65f58afec7fd53e9ecd93a38a96bf378f46a3e5ff92 1148 
mp3splt_2.2.3-1.dsc
 aae0abb51f537224135204de2dea516a2293a9385f58c7167c483df28a717b04 135298 
mp3splt_2.2.3.orig.tar.gz
 1090eebd1c78eb77c9f08320704f504286feb8a3587a6d6b1cafde843f893b4a 3760 
mp3splt_2.2.3-1.diff.gz
 f783b51c585c6210585239cf65ba970d94b33e73cb2d5d968e43670a7f5fce18 31984 
mp3splt_2.2.3-1_i386.deb
Files: 
 40989b261ea6f3ff4f7e2cc1bd7b8445 1148 sound optional mp3splt_2.2.3-1.dsc
 aa67e24931c62d2f09be13303fbf410e 135298 sound optional 
mp3splt_2.2.3.orig.tar.gz
 c2df9ed989ba19dfd2180446a9e5e8e3 3760 sound optional mp3splt_2.2.3-1.diff.gz
 12d3f5fb7101a6fbdff9bbc25540d26a 31984 sound optional mp3splt_2.2.3-1_i386.deb

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

iEYEARECAAYFAkoPCkIACgkQOzKYnQDzz+RSbgCePkx/OTz

Bug#316050: marked as done (Wrong default min= value)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 19:02:06 +
with message-id 
and subject line Bug#316050: fixed in mp3splt 2.2.3-1
has caused the Debian Bug report #316050,
regarding Wrong default min= value
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
316050: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=316050
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: mp3splt
Version: 2.1-1
Severity: normal

mp3splt manual says

min=FLOAT Positive float of the minimum number of seconds to be consid-
  ered  a  valid  splitpoint. All silences shorter than min are
  discarded.

meanning that the default splitpoint duration is 1 min.
At the same time 'mp3splt -s file.mp3' reports

Silence split type: Auto mode (Th: -48.0 dB, Off: 0.80, Min: 0.00, Remove: NO)

where "Min: 0.00" contradicts the manual, it should be "Min: 1.00" instead.

Max

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.64
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages mp3splt depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libmad0 0.15.1b-2.1  MPEG audio decoder library
ii  libogg0 1.1.2-1  Ogg Bitstream Library
ii  libvorbis0a 1.1.0-1  The Vorbis General Audio Compressi
ii  libvorbisfile3  1.1.0-1  The Vorbis General Audio Compressi

mp3splt recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: mp3splt
Source-Version: 2.2.3-1

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

mp3splt_2.2.3-1.diff.gz
  to pool/main/m/mp3splt/mp3splt_2.2.3-1.diff.gz
mp3splt_2.2.3-1.dsc
  to pool/main/m/mp3splt/mp3splt_2.2.3-1.dsc
mp3splt_2.2.3-1_i386.deb
  to pool/main/m/mp3splt/mp3splt_2.2.3-1_i386.deb
mp3splt_2.2.3.orig.tar.gz
  to pool/main/m/mp3splt/mp3splt_2.2.3.orig.tar.gz



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 316...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ryan Niebur  (supplier of updated mp3splt 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 ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 29 Mar 2009 02:12:55 -0700
Source: mp3splt
Binary: mp3splt
Architecture: source i386
Version: 2.2.3-1
Distribution: unstable
Urgency: low
Maintainer: Ryan Niebur 
Changed-By: Ryan Niebur 
Description: 
 mp3splt- command line interface to split MP3 and Ogg Vorbis files without 
Closes: 316046 316050 403463 459510 488931
Changes: 
 mp3splt (2.2.3-1) unstable; urgency=low
 .
   * Adopt package (Closes: #488931)
   * New upstream release (Closes: #459510, #403463, #316046)
   * Document default min= value (Closes: #316050)
   * Redo packaging from scratch
Checksums-Sha1: 
 3280662ecb9a0507dbfc69efbd027e5ad8630de2 1148 mp3splt_2.2.3-1.dsc
 b94d0589477fa3c7b7bfd1993c13a83a6ca44e0b 135298 mp3splt_2.2.3.orig.tar.gz
 ec2161e02d97cd08c8af644851b5edf6980c8b91 3760 mp3splt_2.2.3-1.diff.gz
 c95d85574423343727a7e54449c6e8bc938c107d 31984 mp3splt_2.2.3-1_i386.deb
Checksums-Sha256: 
 009d05eb1ea8bfcc9c44c65f58afec7fd53e9ecd93a38a96bf378f46a3e5ff92 1148 
mp3splt_2.2.3-1.dsc
 aae0abb51f537224135204de2dea516a2293a9385f58c7167c483df28a717b04 135298 
mp3splt_2.2.3.orig.tar.gz
 1090eebd1c78eb77c9f08320704f504286feb8a3587a6d6b1cafde843f893b4a 3760 
mp3splt_2.2.3-1.diff.gz
 f783b51c585c6210585239cf65ba970d94b33e73cb2d5d968e43670a7f5fce18 31984 
mp3splt_2.2.3-1_i386.deb
Files: 
 40989b261ea6f3ff4f7e2cc1bd7b8445 1148 sound optional mp3splt_2.2.3-1.dsc
 aa67e24931c62d2f09be13303fbf410e 135298 sound optional 
mp3splt_2.2.3.orig.tar.gz
 c2df9ed989ba19dfd2180446a9e5e8e3 3760 sound optional mp3splt_2.2.3-1.diff.gz
 12d3f5fb7101a6fbdff9bbc25540d26a 31984 sound optional mp3splt_2.2.3-1_i386.deb

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

iEYEARECAAYFAkoPCkIACgkQOzKYnQDzz+RSbgCePkx/OTzEFE1AHTo1kkUdnxcs
WHIAoIiEZB59H9XkyP/ASBSXTdSTM3qc
=sBp5
-END PGP SIGNATURE-


--- End Message ---


Bug#403463: marked as done ("-c query" doesn't work, it has to use freedb2, not freedb)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 19:02:06 +
with message-id 
and subject line Bug#403463: fixed in mp3splt 2.2.3-1
has caused the Debian Bug report #403463,
regarding "-c query" doesn't work, it has to use freedb2, not freedb
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
403463: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403463
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mp3splt
Version: 2.1-1.1
Severity: normal

Hello,

When I  try to  use the  "-c query" option  in order  to get  the tracks
information from freedb, I have the following message:

Connecting to freedb.org...
Host contacted. Waiting for answer...
Error: No cd found in this search!

freedb.org  was replaced  by freedb2.org,  therefore mp3splt  should use
freedb2.org.

Regards,
Arnaud Fontaine

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1,
  'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-maggie
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)

Versions of packages mp3splt depends on:
ii  libc6 2.3.6.ds1-9GNU C Library: Shared libraries
ii  libmad0   0.15.1b-2.1MPEG audio decoder library
ii  libogg0   1.1.3-2Ogg Bitstream Library
ii  libvorbis0a   1.1.2.dfsg-1.2 The Vorbis General Audio Compressi
ii  libvorbisfile31.1.2.dfsg-1.2 The Vorbis General Audio Compressi

mp3splt recommends no packages.

-- no debconf information


pgpOuzrSpCx3v.pgp
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: mp3splt
Source-Version: 2.2.3-1

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

mp3splt_2.2.3-1.diff.gz
  to pool/main/m/mp3splt/mp3splt_2.2.3-1.diff.gz
mp3splt_2.2.3-1.dsc
  to pool/main/m/mp3splt/mp3splt_2.2.3-1.dsc
mp3splt_2.2.3-1_i386.deb
  to pool/main/m/mp3splt/mp3splt_2.2.3-1_i386.deb
mp3splt_2.2.3.orig.tar.gz
  to pool/main/m/mp3splt/mp3splt_2.2.3.orig.tar.gz



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 403...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ryan Niebur  (supplier of updated mp3splt 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 ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 29 Mar 2009 02:12:55 -0700
Source: mp3splt
Binary: mp3splt
Architecture: source i386
Version: 2.2.3-1
Distribution: unstable
Urgency: low
Maintainer: Ryan Niebur 
Changed-By: Ryan Niebur 
Description: 
 mp3splt- command line interface to split MP3 and Ogg Vorbis files without 
Closes: 316046 316050 403463 459510 488931
Changes: 
 mp3splt (2.2.3-1) unstable; urgency=low
 .
   * Adopt package (Closes: #488931)
   * New upstream release (Closes: #459510, #403463, #316046)
   * Document default min= value (Closes: #316050)
   * Redo packaging from scratch
Checksums-Sha1: 
 3280662ecb9a0507dbfc69efbd027e5ad8630de2 1148 mp3splt_2.2.3-1.dsc
 b94d0589477fa3c7b7bfd1993c13a83a6ca44e0b 135298 mp3splt_2.2.3.orig.tar.gz
 ec2161e02d97cd08c8af644851b5edf6980c8b91 3760 mp3splt_2.2.3-1.diff.gz
 c95d85574423343727a7e54449c6e8bc938c107d 31984 mp3splt_2.2.3-1_i386.deb
Checksums-Sha256: 
 009d05eb1ea8bfcc9c44c65f58afec7fd53e9ecd93a38a96bf378f46a3e5ff92 1148 
mp3splt_2.2.3-1.dsc
 aae0abb51f537224135204de2dea516a2293a9385f58c7167c483df28a717b04 135298 
mp3splt_2.2.3.orig.tar.gz
 1090eebd1c78eb77c9f08320704f504286feb8a3587a6d6b1cafde843f893b4a 3760 
mp3splt_2.2.3-1.diff.gz
 f783b51c585c6210585239cf65ba970d94b33e73cb2d5d968e43670a7f5fce18 31984 
mp3splt_2.2.3-1_i386.deb
Files: 
 40989b261ea6f3ff4f7e2cc1bd7b8445 1148 sound optional mp3splt_2.2.3-1.dsc
 aa67e24931c62d2f09be13303fbf410e 135298 sound optional 
mp3splt_2.2.3.orig.tar.gz
 c2df9ed989ba19dfd2180446a9e5e8e3 3760 sound optional mp3splt_2.2.3-1.diff.gz
 12d3f5fb7101a6fbdff9bbc25540d26a 31984 sound optional mp3splt_2.2.3-1_i386.deb

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

iEYEARECAAYFAkoPCkIACgkQOzKYnQDzz+RSbgCePkx/OTzEFE1AHTo1kkUdnxcs
WHIAoIiEZB59H9XkyP/ASBSXTdSTM3qc
=sBp5
-END PGP SIGNATURE-

PAССЫЛKИ

2009-05-16 Thread Галактион Аким
Добpое врeмя суток!

Мы занимаемся maсcовыmи pаccылкаmи по email адресам электронной почты.

Приeмливые цены.

Наши преимущества:
Любые фoрмы оплаты, гибкая система скидок, бесплaтное создание макета, быстpый 
стаpт рeкламы, свежие базы.

Контактные данные:
Телефон: (Ч95)5ЧЗ-578З
ICQ: 409 5717 59


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#470100: marked as done (mserv: TRACKSPERALBUM is set too low)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 22:10:48 +0100
with message-id <200905162110.n4glam6k017...@kmos.homeip.net>
and subject line mserv has been removed from Debian, closing #470100
has caused the Debian Bug report #470100,
regarding mserv: TRACKSPERALBUM is set too low
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
470100: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=470100
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mserv
Version: 0.35-6.3
Severity: minor

I would like to increase the number of tracks that can be placed in an album.  
I have a lot of 
files in the root music directory, and I do not want them subdivided into 
subdirectories.

The following was found in the mserv logfile:
-
03/09 00:36:22 [004717] The limit of tracks per album was reached, and some 
tracks were discarded. 
To increase this limit recompile with TRACKSPERALBUM set higher.  A better 
solution is to 
sub-divide your tracks into more directories.
-
I would suggest that the program be recompiled to increase the TRACKSPERALBUM 
to at least 999.
Currently, it appears like the TRACKSPERALBUM is set to 200.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages mserv depends on:
ii  adduser3.102 Add and remove users and groups
ii  debconf [debconf-2.0]  1.5.11etch1   Debian configuration management sy
ii  libc6  2.3.6.ds1-13etch5 GNU C Library: Shared libraries
ii  perl   5.8.8-7etch1  Larry Wall's Practical Extraction 

Versions of packages mserv recommends:
ii  mpg1230.61-5 MPEG layer 1/2/3 audio player

-- debconf information excluded


--- End Message ---
--- Begin Message ---
Version: 0.35-8+rm

The mserv package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/473895 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---


Bug#289788: marked as done (mserv should follow symbolic links)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 22:10:49 +0100
with message-id <200905162110.n4glan8w017...@kmos.homeip.net>
and subject line mserv has been removed from Debian, closing #289788
has caused the Debian Bug report #289788,
regarding mserv should follow symbolic links
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
289788: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=289788
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mserv
Version: 0.35-6mod
Severity: wishlist


Hi,
   
  Currently mserv does not follow symbolic links when searching for
tracks (function 'mserv_scandir_recurse' in 'mserv/mserv.c'). This is an
actual limitation since it does not allow to sparse tracks among several
partitions. Do you or upstream intend to fix it ?

  Lionel.


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (300, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-k7
Locale: lang=fr_fr.ut...@euro, lc_ctype=fr_fr.ut...@euro (charmap=UTF-8)

Versions of packages mserv depends on:
ii  adduser 3.59 Add and remove users and groups
ii  debconf 1.4.30.11Debian configuration management sy
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  perl5.8.4-5  Larry Wall's Practical Extraction 

-- debconf information excluded

--- End Message ---
--- Begin Message ---
Version: 0.35-8+rm

The mserv package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/473895 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---


Bug#247608: marked as done (mserv should use ogginfo to get info about a song)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 22:10:48 +0100
with message-id <200905162110.n4glammy017...@kmos.homeip.net>
and subject line mserv has been removed from Debian, closing #247608
has caused the Debian Bug report #247608,
regarding mserv should use ogginfo to get info about a song
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
247608: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=247608
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mserv
Version: 0.35-4
Severity: wishlist

Hello,

mserv seems to create a repository of songs information. I think it
would be cool if mserv could use ogginfo to get these information from
the files.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.5-smarties
Locale: LANG=fr_BE.UTF-8, LC_CTYPE=fr_BE.UTF-8

Versions of packages mserv depends on:
ii  adduser 3.52 Add and remove users and groups
ii  debconf 1.4.22   Debian configuration management sy
ii  libc6   2.3.2.ds1-11 GNU C Library: Shared libraries an
ii  perl5.8.3-3  Larry Wall's Practical Extraction 

-- debconf information:
* mserv/mp3_location: /usr/local/pub/Music
  mserv/path_invalid: false
  mserv/confirm_update: false

--- End Message ---
--- Begin Message ---
Version: 0.35-8+rm

The mserv package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/473895 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---


Bug#505241: marked as done (mserv: tags are not read, .trk files have empty fields)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 22:10:47 +0100
with message-id <200905162110.n4glal6s017...@kmos.homeip.net>
and subject line mserv has been removed from Debian, closing #505241
has caused the Debian Bug report #505241,
regarding mserv: tags are not read, .trk files have empty fields
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
505241: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505241
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mserv
Tags: patch

Hello.

This is a patch to mserv that fixes tag handling by using TagLib's C bindings.

-- 
WBR, Andrew
diff -ur mserv-0.35/configure.ac mserv-0.35-/configure.ac
--- mserv-0.35/configure.ac	2003-08-03 17:57:19.0 +0300
+++ mserv-0.35-/configure.ac	2008-11-11 02:02:43.0 +0200
@@ -59,6 +59,7 @@
   AC_CHECK_LIB(socket, main, MY_LIBS="$MY_LIBS -lsocket")
   AC_CHECK_LIB(malloc, main, MY_LIBS="$MY_LIBS -lmalloc")
   AC_CHECK_LIB(crypt, crypt, MY_LIBS="$MY_LIBS -lcrypt")
+  AC_CHECK_LIB(tag_c, taglib_file_new, MY_LIBS="$MY_LIBS -ltag_c")
   AC_CHECK_LIB(ossaudio, _oss_ioctl, MY_LIBS="$MY_LIBS -lossaudio")
 
 dnl Checks for libraries - mservcli
@@ -83,6 +84,8 @@
   AC_CHECK_HEADERS(sys/soundcard.h, FOUND_SOUNDCARD=yes)
   AC_CHECK_HEADERS(soundcard.h, FOUND_SOUNDCARD=yes)
 
+  CFLAGS+=" -I${prefix}/include/taglib"
+
 dnl Checks for typedefs, structures, and compiler characteristics
 
   AC_C_CONST
diff -ur mserv-0.35/debian/control mserv-0.35-/debian/control
--- mserv-0.35/debian/control	2008-11-11 02:14:12.0 +0200
+++ mserv-0.35-/debian/control	2008-11-11 02:11:54.0 +0200
@@ -2,7 +2,7 @@
 Section: sound
 Priority: optional
 Maintainer: Nick Estes 
-Build-Depends: sharutils, debhelper (>= 4.1.51), cdbs
+Build-Depends: sharutils, debhelper (>= 4.1.51), cdbs, libtagc0-dev
 Standards-Version: 3.6.1
 
 Package: mserv
diff -ur mserv-0.35/mserv/mserv.c mserv-0.35-/mserv/mserv.c
--- mserv-0.35/mserv/mserv.c	2008-11-11 02:14:12.0 +0200
+++ mserv-0.35-/mserv/mserv.c	2008-11-11 02:04:58.0 +0200
@@ -63,6 +63,8 @@
 #include 
 #include 
 
+#include 
+
 #include "mserv.h"
 #include "misc.h"
 #include "cmd.h"
@@ -1982,7 +1984,10 @@
   time_t mtime;
   struct stat buf;
   int bitrate;
-  t_id3tag id3tag;
+  /*t_id3tag id3tag;*/
+  TagLib_File *file;
+  TagLib_Tag *tag;
+  TagLib_AudioProperties *properties;
   int newinfofile = 0;
 
   if ((unsigned int)snprintf(fullpath_file, MAXFNAME, "%s/%s",
@@ -2102,34 +2107,48 @@
   }
   if (duration == 0 && !*miscinfo) {
 len = strlen(fullpath_file);
-if (len > 4 && !stricmp(".mp3", fullpath_file+len-4)) {
-  duration = mserv_mp3info_readlen(fullpath_file, &bitrate, &id3tag);
+if (1) {
+  file = taglib_file_new(fullpath_file);
+  if (file != NULL)
+  {
+tag = taglib_file_tag(file);
+properties = taglib_file_audioproperties(file);
+duration = taglib_audioproperties_length(properties) * 100;
+bitrate = taglib_audioproperties_bitrate(properties);
+  }
+  else
+  {
+duration = -1;
+  }
+  /* duration = mserv_mp3info_readlen(fullpath_file, &bitrate, &id3tag); */
   if (duration == -1) {
 	mserv_log("Unable to determine details of mp3 '%s': %s",
 		  filename, strerror(errno));
 	duration = 0;
 	miscinfo[0] = '\0';
   } else {
-	if (id3tag.present) {
+	if (taglib_file_is_valid(file)) {
 	  if (newinfofile) {
-	strncpy(author, id3tag.artist, AUTHORLEN);
-	author[AUTHORLEN] = '\0';
-	strncpy(name, id3tag.title, NAMELEN);
+	strncpy(author, taglib_tag_artist(tag), AUTHORLEN);
+	author[AUTHORLEN] = '\0';
+	strncpy(name, taglib_tag_title(tag), NAMELEN);
 	name[NAMELEN] = '\0';
-	year = atoi(id3tag.year);
-	strncpy(genres, id3tag.genre, GENRESLEN);
+	year = taglib_tag_year(tag);
+	strncpy(genres, taglib_tag_genre(tag), GENRESLEN);
 	genres[GENRESLEN] = '\0';
 	mserv_strtoprintable(author);
 	mserv_strtoprintable(name);
 	mserv_strtoprintable(genres);
 	  }
-	  if (*id3tag.comment) {
+	  if (taglib_tag_comment(tag)) {
 	snprintf(miscinfo, MISCINFOLEN, "%dkbps; %s", bitrate,
-		 id3tag.comment);
+		 taglib_tag_comment(tag));
 	mserv_strtoprintable(miscinfo);
 	  } else {
 	sprintf(miscinfo, "%dkbps", bitrate);
 	  }
+taglib_tag_free_strings();
+taglib_file_free(file);
 
 	} else {
 	  sprintf(miscinfo, "%dkbps", bitrate);


signature.asc
Description: This is a digitally signed message part.
--- End Message ---
--- Begin Message ---
Version: 0.35-8+rm

The mserv package has been removed f

Bug#480654: marked as done (Typo fixes and review of the Slune's spanish translation)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 22:14:19 +0100
with message-id <200905162114.n4glejwc017...@kmos.homeip.net>
and subject line slune has been removed from Debian, closing #480654
has caused the Debian Bug report #480654,
regarding Typo fixes and review of the Slune's spanish translation
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
480654: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480654
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: slune
Version: 1.0.14-2
Priority: wishlist
Tags: l10n patch upstream

Attached is a fix for the Slune's spanish translation which fixes some typos
I've found in the PO file. 

I've sent this patch file also upstream (both to the original author and
translator), but the original translator's email has bounced. And I'm not
sure when a new upstream release is planned

Could you please apply this patch to the
slune-1.0.14/locale/es/LC_MESSAGES/slune.po file to fix the typos in the
meantime?

Thanks

Javier
Coordinator of the spanish translation team
Debian GNU/Linux 
--- slune.po.orig	2008-05-11 13:18:53.0 +0200
+++ slune.po	2008-05-11 13:21:59.0 +0200
@@ -6,17 +6,22 @@
 # 
 # 
 msgid ""
-msgstr ""
-"Project-Id-Version: Slune 1.0.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: (null)\n"
-"PO-Revision-Date: 2004-11-17 23:48+0100\n"
-"Last-Translator: Manuel Urbano Santos \n"
-"Language-Team: Spanish/Spain \n"
-"Report-Msgid-Bugs-To: "
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-15\n"
-"Content-Transfer-Encoding: 8bit"
+msgstr ""
+"Project-Id-Version: Slune 1.0.4\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: (null)\n"
+"PO-Revision-Date: 2004-11-17 23:48+0100\n"
+"Last-Translator: Manuel Urbano Santos \n"
+"Language-Team: Spanish/Spain \n"
+"Report-Msgid-Bugs-To: MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-15\n"
+"Content-Transfer-Encoding: 8bitX-POFile-SpellExtra: Sígueme\n"
+"X-POFile-SpellExtra: OMS www Sud Humm estilazo Yuju emed farmaceúticas\n"
+"X-POFile-SpellExtra: súbete partidilla Banzai slune Hacker Strike\n"
+"X-POFile-SpellExtra: Prepárate Tux EEUU php on Síguele errr fans Tuuu\n"
+"X-POFile-SpellExtra: bonus html Sudamérica GPL http Gnu farmaceútica org\n"
+"X-POFile-SpellExtra: Juanker tí acércate webcam Shark multijugador ehhh\n"
+"X-POFile-SpellExtra: Bombay Slune Blam localhost pdf tuuu\n"
 
 msgid "Back"
 msgstr "Volver"
@@ -319,7 +324,7 @@
 msgstr "-¡No! ¡Todavía tenemos una oportunidad! No hay tiempo, ¡date prisa! ¡alcanza el avión y súbete encima!"
 
 msgid "__scenar11-intro-3__"
-msgstr "-Así evitaremos la aduana. No tengo que recordate que nuestra medicina de importación está... prohibida, ¡aún cuando puede salvar vidas!"
+msgstr "-Así evitaremos la aduana. No tengo que recordarte que nuestra medicina de importación está... prohibida, ¡aún cuando puede salvar vidas!"
 
 msgid "__scenar11-intro-4__"
 msgstr "-De acuerdo... nos veremos en el próximo vuelo. ¡Tengo que irme!"
@@ -337,7 +342,7 @@
 msgstr "África, 18 de Junio del 2003, 13:15"
 
 msgid "__scenar13-intro-1__"
-msgstr "-Hola, soy el guía. Gnu me ha envíado para que te ayude a cruzar el desierto. ¡Sígueme!"
+msgstr "-Hola, soy el guía. Gnu me ha enviado para que te ayude a cruzar el desierto. ¡Sígueme!"
 
 msgid "__scenar13-intro-2__"
 msgstr "-Ha huído... ¡Era una trampa! Y ahora estoy aquí, perdido en mitad del desierto."
@@ -376,7 +381,7 @@
 msgstr "-¡Shark! ¿Por qué te empeñas en detenernos! ¿Tanta medicina vendes en África?"
 
 msgid "__scenar14-outro-3__"
-msgstr "-En realidad no... ni siquera vendemos medicina aquí."
+msgstr "-En realidad no... ni siquiera vendemos medicina aquí."
 
 msgid "__scenar14-outro-4__"
 msgstr "-Pero nuestro liderazgo puede verse amenazado... Primero África, después Sudamérica, Asia, Europa..."
@@ -445,7 +450,7 @@
 msgstr "-Bueno... yo... errr... tengo que irme... ahora... tengo una cita importante..."
 
 msgid "__scenar2-intro-6__"
-msgstr "-Síguele discretamente... Yo devolveré el camión y me veré contigo más tarde. Usa el botón izquierdo del ratón par saltar si es necesario."
+msgstr "-Síguele discretamente... Yo devolveré el camión y me veré contigo más tarde. Usa el botón izquierdo del ratón para saltar si es necesario."
 
 msgid "__scenar3-1__"
 msgstr "-¡Eh! ¡Mira ese tío!"
@@ -582,7 +587,7 @@
 msgstr "India, 4 de Abril del 2003, 9:30 de la mañana."
 
 msgid "__scenar8-intro-1__"
-msgstr "-Aquí estamos. Pero todavía tenemos que encontar el laboratorio..."
+msgstr "-Aquí estamos. Pero todavía tenemos que encontrar el laboratorio..."
 
 msgid "__s

Bug#471907: marked as done (slune: Improvements to the manpage)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 22:14:19 +0100
with message-id <200905162114.n4glejjy017...@kmos.homeip.net>
and subject line slune has been removed from Debian, closing #471907
has caused the Debian Bug report #471907,
regarding slune: Improvements to the manpage
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
471907: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=471907
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: slune
Version: 1.0.13-1
Priority: minor

The game slune is quite nice but lacks information on how to actually play it
in the game itself. I then looked up at the manpage, but it didn't provide
any information and ended up having to figure the keys by myself.

Finally, I found the information in the README file (at
/usr/share/doc/slune/README) but it's actually at the end of the file itself
(after a lot of technical stuff a player does not actually understand).

I think it would be best if the control information was in the game's manpage
itself. The attached patch does this precisely.

Please include it in the Debian package, thanks

Javier

PS: I'm cc'ing the upstream author in case he wants to apply this patch
upstream too.

--- slune.6.orig	2008-03-21 01:21:40.0 +0100
+++ slune.6	2008-03-21 01:32:41.0 +0100
@@ -53,6 +53,25 @@
 .TP 
 \fB\-2\fR
 Join an already existant multiplayer game on the *same* computer (e.g. for testing). Equivalent to "\-\-port 36179 \-\-parrain\-host 127.0.0.1 \-\-parrain\-port 36079".
+.SH "CONTROLS"
+Slune can be played either with a keyboard or a mouse. The cursor keys
+or the mouse can be used to turn the car (left or right) or make it go faster (up)
+or slower (down). Additionally, the following actions are possible:
+.LP 
+.TP 
+\fBShift\fR or \fBMouse middle button\fR
+Makes your racing car take a long jump.
+.TP 
+\fBControl\fR or \fBMouse right button\fR
+Makes your racing car take a hight jump.
+.TP 
+\fBAlt\fR or \fBMouse left button\fR
+Enables nitro mode, which makes the car go faster but consumes your energy.
+.br
+When jumping you can roll with up or down and use the control or shift
+keys to look up or down.
+.br
+The \fBq\fR or \fBescape\fR keys can be used to exit at any time.
 .SH "FILES"
 .LP 
 \fI~/.slune\fP 
--- End Message ---
--- Begin Message ---
Version: 1.0.14-3+rm

The slune package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/521175 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---


Bug#494576: marked as done (Cannot start: perhaps problem with inicialization of sound)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 22:14:18 +0100
with message-id <200905162114.n4gleits017...@kmos.homeip.net>
and subject line slune has been removed from Debian, closing #494576
has caused the Debian Bug report #494576,
regarding Cannot start: perhaps problem with inicialization of sound
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
494576: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=494576
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: slune
Version: 1.0.14-2

When I try to start the game then some exception occurs and it crashs.
Have a nice day,
TonyMi


~$ slune
* Slune * Slune lives in /usr/share/games
* Soya * Using 8 bits stencil buffer

* Soya * version 0.13.2
* Using OpenGL 1.4 (2.1 Mesa 7.0.4)
*   - renderer : Mesa GLX Indirect
*   - vendor   : Mesa project: www.mesa3d.org
*   - maximum number of lights: 8
*   - maximum number of clip planes   : 6
*   - maximum number of texture units : 8
*   - maximum texture size: 2048 pixels
Exception exceptions.TypeError: 'exceptions must be strings, classes, or 
instances, not exceptions.RuntimeError' in '_soya._init_sound' ignored


Traceback (most recent call last):
 File "/usr/games/slune", line 42, in 
   soya.set_sound_volume(globdef.SOUND_VOLUME)
 File "sound.pyx", line 103, in _soya.set_sound_volume
TypeError: exceptions must be strings, classes, or instances, not 
exceptions.RuntimeError

* Soya3D * Quit...



--- End Message ---
--- Begin Message ---
Version: 1.0.14-3+rm

The slune package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/521175 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---


Bug#486237: marked as done (Should include jsm.h)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 22:31:24 +0100
with message-id <200905162131.n4glvonw017...@kmos.homeip.net>
and subject line jabber has been removed from Debian, closing #486237
has caused the Debian Bug report #486237,
regarding Should include jsm.h
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
486237: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=486237
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: jabber-dev
Version: 1.4.3-3.4
Severity: normal

Hello,

Package jabber-dev should also include jsm.h header files because this 
file is used for developing Jabber modules.


Thanks,
Andriy


--- End Message ---
--- Begin Message ---
Version: 1.4.3-3.6+rm

The jabber package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/524242 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---


Bug#270159: marked as done (jabber-dev: Include directive for /usr/include/jabber is missing in jabber-config)

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 22:31:24 +0100
with message-id <200905162131.n4glvoqn017...@kmos.homeip.net>
and subject line jabber has been removed from Debian, closing #270159
has caused the Debian Bug report #270159,
regarding jabber-dev: Include directive for /usr/include/jabber is missing in 
jabber-config
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
270159: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=270159
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: jabber-dev
Version: 1.4.3-2
Severity: important

To compile new jabber module, the jabber-config file (normally
platform-settings in "normal" jabber installs) do not specify
/usr/include/jabber as include directory... This break compilation
of the jabber additional modules.

Please just insert "-I /usr/include/jabber" in the variables CFLAGS and
CCFLAGS

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8.1
Locale: LANG=C, LC_CTYPE=C

Versions of packages jabber-dev depends on:
ii  libc6-dev   2.3.2.ds1-11 GNU C Library: Development Librari
ii  libpth-dev  2.0.1-2  Header files for The GNU Portable 
ii  libssl-dev  0.9.7c-5 SSL development libraries, header 

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 1.4.3-3.6+rm

The jabber package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/524242 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---


Bug#489367: marked as done ([slune] --help: starts and quits )

2009-05-16 Thread Debian Bug Tracking System

Your message dated Sat, 16 May 2009 22:14:20 +0100
with message-id <200905162114.n4glekxy017...@kmos.homeip.net>
and subject line slune has been removed from Debian, closing #489367
has caused the Debian Bug report #489367,
regarding [slune]  --help: starts and quits 
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
489367: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=489367
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: slune
Version: 1.0.14-2
Severity: minor

--- Please enter the report below this line. ---
When I enter the command "slune --help" slune starts and quits (and the
options are displayed).
"
> * Slune * Slune lives in /usr/share/games
> * Soya * Using 8 bits stencil buffer
> 
> * Soya * version 0.13.2
> * Using OpenGL 1.4 (2.1 Mesa 7.0.3)
> *   - renderer : Mesa GLX Indirect
> *   - vendor   : Mesa project: www.mesa3d.org
> *   - maximum number of lights: 8
> *   - maximum number of clip planes   : 6
> *   - maximum number of texture units : 8
> *   - maximum texture size: 2048 pixels
> * Using OpenAL 1.1
> *   - renderer  : Software
> *   - vendor: OpenAL Community
> 
> Slune: A fun game
> Synopsis: slune [options...]
> 
> where options are:
> --help This help
> --version  Shows version number
> --tk   (Old) TK interface
> --fullscreen   Fullscreen mode
> --windowed Windowed mode (default)
> --screensize WIDTH HEIGHT  Sets the screen size (in pixel, default is 640 480)
> --no-sound Disable sound
> --no-fps-limit Disable FPS limit, for benchmarking (default is to 
> limit FPS to 40)
> --level LEVELNAME  Immediately starts the game in level LEVELNAME 
> (e.g. "mission-1")
> --name NAMESets the player's name (default is your username)
> --port PORTSets the socket's TCP port number (default 36079)
> --parrain-host HOSTJoin an already existant multiplayer game that 
> someone (the "parrain") is playing at HOST.
> --parrain-port PORTSets the parrain's socket's TCP port number 
> (default 36079)
> -2 Join an already existant multiplayer game on the 
> *same* computer (e.g. for testing)
>Equivalent to "--port 36179 --parrain-host 
> 127.0.0.1 --parrain-port 36079"
> 
> If no --level, --parrain-host and -2 options are given, the GUI is launched.
> Else the game immediately begins.
> * Soya3D * Quit...
"
I think it is not necessary for slune start when running the command
"slune --help".

Thank you for your fine work!Matthias Krüger
--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.24-1-amd64

Debian Release: lenny/sid
  500 testing security.debian.org
  500 testing 141.76.2.4

--- Package information. ---
Depends (Version) | Installed
=-+-==
python| 2.5.2-1
python-2play (>= 0.1.8-2) | 0.1.9-4
python-pyvorbis   | 1.3-2
python-soya (>= 0.13.2-1) | 0.13.2-4
python-support (>= 0.7.1) | 0.8.1



--- End Message ---
--- Begin Message ---
Version: 1.0.14-3+rm

The slune package has been removed from Debian so we are closing
the bugs that were still opened against it.

For more information about this package's removal, read
http://bugs.debian.org/521175 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

Kind regards,
--
Marco Rodrigues

--- End Message ---


Bug#515054: Debian Bug report logs - #515054

2009-05-16 Thread Charles-André Roy
Hi!

I downloaded the package Galrey 1.0.2-3 on Lenny.  It worked only after
I managed to fix it with the solution offered by ibu .

Thank your, Ibu!

Charles-André Roy



--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processing of vamps_0.99.2-3_amd64.changes

2009-05-16 Thread Archive Administrator
vamps_0.99.2-3_amd64.changes uploaded successfully to localhost
along with the files:
  vamps_0.99.2-3.dsc
  vamps_0.99.2-3.diff.gz
  vamps_0.99.2-3_amd64.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



vamps_0.99.2-3_amd64.changes ACCEPTED

2009-05-16 Thread Debian Installer

Accepted:
vamps_0.99.2-3.diff.gz
  to pool/main/v/vamps/vamps_0.99.2-3.diff.gz
vamps_0.99.2-3.dsc
  to pool/main/v/vamps/vamps_0.99.2-3.dsc
vamps_0.99.2-3_amd64.deb
  to pool/main/v/vamps/vamps_0.99.2-3_amd64.deb


Override entries for your package:
vamps_0.99.2-3.dsc - source video
vamps_0.99.2-3_amd64.deb - optional video

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



vamps override disparity

2009-05-16 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

vamps_0.99.2-3_amd64.deb: package says section is graphics, override says video.


Please note that a list of new sections were recently added to the
archive: cli-mono, database, debug, fonts, gnu-r, gnustep, haskell,
httpd, java, kernel, lisp, localization, ocaml, php, ruby, vcs, video,
xfce, zope.  At this time a script was used to reclassify packages into
these sections.  If this is the case, please only reply to this email if
the new section is inappropriate, otherwise please update your package
at the next upload.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please reply to this mail and explain why.
Please INCLUDE the list of packages as seen above, or we won't be able
to deal with your mail due to missing information.

[NB: this is an automatically generated mail; if you replied to one
like it before and have not received a response yet, please ignore
this mail.  Your reply needs to be processed by a human and will be in
due course, but until then the installer will send these automated
mails; sorry.]

--
Debian distribution maintenance software

(This message was generated automatically; if you believe that there
is a problem with it please contact the archive administrators by
mailing ftpmas...@debian.org)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org