Re: Bug#480563: Doesn't strip binary NMU version (+b1, +bN etc.) when reporting bugs

2008-07-19 Thread Sandro Tosi
On Sat, Jul 19, 2008 at 02:23, Don Armstrong [EMAIL PROTECTED] wrote:
 On Fri, 18 Jul 2008, Sandro Tosi wrote:
 should we strip-off the binNMU extension from the package version in
 reportbug?

 No. The BTS is more than capable of resolving binary versions to
 source versions, and knows far better what the source version of a
 particular binary version than an arbitrary regex in reportbug.

Thanks Don (and others) for this clarification, hence I'm closing this bug.

Kindly,
Sandro

-- 
Sandro Tosi (aka morph, Morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi


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



Re: Call for keys for keysigning in Mar del Plata during DebConf8

2008-07-19 Thread Aníbal Monsalve Salazar
On Tue, Jul 15, 2008 at 10:09:27PM +1000, Anibal Monsalve Salazar wrote:
Hello All,

As part of the 9th Debian Conference in Mar del Plata, Argentina, there
will be OpenPGP (pgp/gpg) keysignings. If you intend to participate in
the DebConf8 keysignings, please send your ascii armored public key as
explained at [0] not later than 23:59 UTC on Saturday 26th of July,
2008.

More (and up-to-date) information is available at [0], so keep watching
it.

[0] http://people.debian.org/~anibal/ksp-dc8/ksp-dc8.html

We'are about a week away from the deadline, 23:59 UTC on Saturday 26th
of July, 2008.

If you sent your key and is not listed at

http://people.debian.org/~anibal/ksp-dc8/names.html

please resend it.


signature.asc
Description: Digital signature


Clarification about bug #463538 is needed

2008-07-19 Thread Sergei Golovan
Hi!

Currently APT fails to start all services which are based on Erlang
(see bug #463538, [1]). It starts the service successfully but after
apt-get finishes the service process get killed.

I've found a one-line-patch which fixes this bug (see [2]) but I'm not
sure if it's correct and doesn't break something else.

Could someone review the patch and either apply it to the next APT
version or may be help to fix this in some other way? (It might be an
Erlang fault but I can't find anything wrong in how it detaches from a
controlling terminal.)

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=463538
[2] 
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=20;filename=tty.diff;att=1;bug=463538

Cheers!
-- 
Sergei Golovan


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



Re: [Pkg-xen-devel] Xen status in lenny?

2008-07-19 Thread Gunnar Wolf
Guido Günther dijo [Fri, Jul 18, 2008 at 04:34:25PM -0230]:
 On Fri, Jul 11, 2008 at 08:37:01AM +0100, Ian Campbell wrote:
 [..snip..] 
  dom0 support is being worked on by Fedora people (I think) but there are
  no patches upstream yet.
 We could recommend kvm+xenner+libvirt as dom0 for people with
 hardware virtualization support:
  http://kraxel.fedorapeople.org/xenner/
 I don't think we have this packaged yet though. If anybody wants to work
 on this I'd be happy to help.

Umh... AFAICT, that would only work for people using Xen for
paravirtualization, not for full virtualization. Nowadays, Xen's
administration tools are still way more complete than KVM's - But I
think it is in place to tell people... That KVM is the way.

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF


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



Re: Clarification about bug #463538 is needed

2008-07-19 Thread Martijn van Oosterhout
On Sat, Jul 19, 2008 at 3:21 PM, Sergei Golovan [EMAIL PROTECTED] wrote:
 Hi!

 Currently APT fails to start all services which are based on Erlang
 (see bug #463538, [1]). It starts the service successfully but after
 apt-get finishes the service process get killed.

 I've found a one-line-patch which fixes this bug (see [2]) but I'm not
 sure if it's correct and doesn't break something else.

Umm, if that patch fixes it (removing the TIOCSCTTY) then it seems to
me that the erlang-based service will instead exit when the user who
installed the server logs out. Evidently the services in erlang are
not properly disassociating themselves from the terminal and this
patch just makes it more obvious...

Have a nice day,


 Could someone review the patch and either apply it to the next APT
 version or may be help to fix this in some other way? (It might be an
 Erlang fault but I can't find anything wrong in how it detaches from a
 controlling terminal.)

 [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=463538
 [2] 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=20;filename=tty.diff;att=1;bug=463538

 Cheers!
 --
 Sergei Golovan


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





-- 
Martijn van Oosterhout [EMAIL PROTECTED] http://svana.org/kleptog/


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



Re: Clarification about bug #463538 is needed

2008-07-19 Thread Sergei Golovan
On 7/19/08, Martijn van Oosterhout [EMAIL PROTECTED] wrote:

 Umm, if that patch fixes it (removing the TIOCSCTTY) then it seems to
  me that the erlang-based service will instead exit when the user who
  installed the server logs out. Evidently the services in erlang are
  not properly disassociating themselves from the terminal and this
  patch just makes it more obvious...

Erlang does exactly the following when detaches from a terminal:

 if (start_detached) {
   int status = fork();
   if (status != 0)
 return 0;
   status = fork();
   if (status != 0)
 return 0;

   close(0);
   open(/dev/null, O_RDONLY);
   close(1);
   open(/dev/null, O_WRONLY);
   close(2);
   open(/dev/null, O_WRONLY);
 }
 {
   execv(emu, Eargsp); /* executing the main Erlang emulator */
 }

Is this behavior incorrect?

-- 
Sergei Golovan


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



Re: Clarification about bug #463538 is needed

2008-07-19 Thread Stephen Gran
This one time, at band camp, Sergei Golovan said:
 On 7/19/08, Martijn van Oosterhout [EMAIL PROTECTED] wrote:
 
  Umm, if that patch fixes it (removing the TIOCSCTTY) then it seems to
   me that the erlang-based service will instead exit when the user who
   installed the server logs out. Evidently the services in erlang are
   not properly disassociating themselves from the terminal and this
   patch just makes it more obvious...
 
 Erlang does exactly the following when detaches from a terminal:
 
  if (start_detached) {
int status = fork();
if (status != 0)
  return 0;
status = fork();
if (status != 0)
  return 0;
 
close(0);
open(/dev/null, O_RDONLY);
close(1);
open(/dev/null, O_WRONLY);
close(2);
open(/dev/null, O_WRONLY);
  }
  {
execv(emu, Eargsp); /* executing the main Erlang emulator */
  }
 
 Is this behavior incorrect?

I don't see setsid?
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Re: Clarification about bug #463538 is needed

2008-07-19 Thread Mike Hommey
On Sat, Jul 19, 2008 at 09:28:03PM +0400, Sergei Golovan wrote:
 On 7/19/08, Martijn van Oosterhout [EMAIL PROTECTED] wrote:
 
  Umm, if that patch fixes it (removing the TIOCSCTTY) then it seems to
   me that the erlang-based service will instead exit when the user who
   installed the server logs out. Evidently the services in erlang are
   not properly disassociating themselves from the terminal and this
   patch just makes it more obvious...
 
 Erlang does exactly the following when detaches from a terminal:
 
  if (start_detached) {
int status = fork();
if (status != 0)
  return 0;
status = fork();
if (status != 0)
  return 0;
 
close(0);
open(/dev/null, O_RDONLY);
close(1);
open(/dev/null, O_WRONLY);
close(2);
open(/dev/null, O_WRONLY);
  }
  {
execv(emu, Eargsp); /* executing the main Erlang emulator */
  }
 
 Is this behavior incorrect?

It should also open /dev/tty and ioctl(fd, TIOCNOTTY, 0) on it.

Mike


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



Re: Clarification about bug #463538 is needed

2008-07-19 Thread Vincent Bernat
OoO  Pendant le repas  du samedi  19 juillet  2008, vers  19:28, Sergei
Golovan [EMAIL PROTECTED] disait :

 Erlang does exactly the following when detaches from a terminal:

  if (start_detached) {
int status = fork();
if (status != 0)
  return 0;
status = fork();
if (status != 0)
  return 0;

close(0);
open(/dev/null, O_RDONLY);
close(1);
open(/dev/null, O_WRONLY);
close(2);
open(/dev/null, O_WRONLY);
  }
  {
execv(emu, Eargsp); /* executing the main Erlang emulator */
  }

 Is this behavior incorrect?

This can  be replaced  by a call  to daemon()  that just does  the right
thing. For example, it misses chdir() and setsid().
-- 
BOFH excuse #372:
Forced to support NT servers; sysadmins quit.


pgp8VNyq2lOzP.pgp
Description: PGP signature


Re: Clarification about bug #463538 is needed

2008-07-19 Thread Russ Allbery
Sergei Golovan [EMAIL PROTECTED] writes:

 Erlang does exactly the following when detaches from a terminal:

  if (start_detached) {
int status = fork();
if (status != 0)
  return 0;
status = fork();
if (status != 0)
  return 0;

close(0);
open(/dev/null, O_RDONLY);
close(1);
open(/dev/null, O_WRONLY);
close(2);
open(/dev/null, O_WRONLY);
  }
  {
execv(emu, Eargsp); /* executing the main Erlang emulator */
  }

 Is this behavior incorrect?

It's missing either setsid or ioctl(/dev/tty, TIOCNOTTY).  The
semi-standard daemon() function does the right thing.  Here's a public
domain replacement (which assumes you have an Autoconf probe for whether
setsid is available).  It depends on a wrapper around standard system
headers, but I expect you get the idea and could fix that.

/* $Id: daemon.c 4022 2008-03-31 06:11:07Z rra $
 *
 * Replacement for a missing daemon.
 *
 * Provides the same functionality as the library function daemon for those
 * systems that don't have it.
 *
 * Written by Russ Allbery [EMAIL PROTECTED]
 * This work is hereby placed in the public domain by its author.
 */

#include config.h
#include portable/system.h

#include errno.h
#include fcntl.h
#include sys/ioctl.h
#include sys/stat.h

int
daemon(int nochdir, int noclose)
{
int status, fd;

/*
 * Fork and exit in the parent to disassociate from the current process
 * group and become the leader of a new process group.
 */
status = fork();
if (status  0)
return -1;
else if (status  0)
_exit(0);

/*
 * setsid() should take care of disassociating from the controlling
 * terminal, and FreeBSD at least doesn't like TIOCNOTTY if you don't
 * already have a controlling terminal.  So only use the older TIOCNOTTY
 * method if setsid() isn't available.
 */
#if HAVE_SETSID
if (setsid()  0)
return -1;
#elif defined(TIOCNOTTY)
fd = open(/dev/tty, O_RDWR);
if (fd = 0) {
if (ioctl(fd, TIOCNOTTY, NULL)  0) {
status = errno;
close(fd);
errno = status;
return -1;
}
close(fd);
}
#endif /* defined(TIOCNOTTY) */

if (!nochdir  chdir(/)  0)
return -1;

if (!noclose) {
fd = open(/dev/null, O_RDWR, 0);
if (fd  0)
return -1;
else {
if (dup2(fd, STDIN_FILENO)  0)
return -1;
if (dup2(fd, STDOUT_FILENO)  0)
return -1;
if (dup2(fd, STDERR_FILENO)  0)
return -1;
if (fd  2)
close(fd);
}
}
return 0;
}

-- 
Russ Allbery ([EMAIL PROTECTED])   http://www.eyrie.org/~eagle/


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



Re: [Pkg-xen-devel] Xen status in lenny?

2008-07-19 Thread LM Jogbäck
On Wed, Jul 16, 2008 at 2:54 AM, Ben Hutchings [EMAIL PROTECTED] wrote:


 SLES 11 will include Linux 2.6.26 with Xen patches - packages should be
 available any day now from
 ftp://ftp.suse.com/pub/projects/kernel/kotd/SL110_BRANCH/i386/.  Is it
 possible that those patches will be usable in lenny, as I believe the
 kernel team expects to release with Linux 2.6.26?


Is the forward-ported Xen patch for 2.6.26 available somewhere, so
that an unofficial build of a dom0 2.6.26 for debian could be build?

/LM


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



Re: [Pkg-xen-devel] Xen status in lenny?

2008-07-19 Thread Ben Hutchings
On Sat, Jul 19, 2008 at 09:15:09PM +0200, LM Jogbäck wrote:
 On Wed, Jul 16, 2008 at 2:54 AM, Ben Hutchings [EMAIL PROTECTED] wrote:
 
 
  SLES 11 will include Linux 2.6.26 with Xen patches - packages should be
  available any day now from
  ftp://ftp.suse.com/pub/projects/kernel/kotd/SL110_BRANCH/i386/.  Is it
  possible that those patches will be usable in lenny, as I believe the
  kernel team expects to release with Linux 2.6.26?
 
 
 Is the forward-ported Xen patch for 2.6.26 available somewhere, so
 that an unofficial build of a dom0 2.6.26 for debian could be build?

Not yet.  Keep watching that directory.

Ben.

-- 
Ben Hutchings
Who are all these weirdos? - David Bowie, about L-Space IRC channel #afp


signature.asc
Description: Digital signature


Downgrading Bug#474736 to important

2008-07-19 Thread Rodrigo Gallardo
Eric Cooper [EMAIL PROTECTED]
 When I click on this feed: http://www.borowitzreport.com/, the first
 item is (currently) the following.  Liferea pops up a browser window
 for the embedded URL in the iframe whenever I try to display
 headlines -- I'm not even trying to read the body of the item.

 The fact that the link points to a site in Changzhou, China, and the
 strange nesting of the end tag -- /iframe/iframe -- makes me think
 this feed was hijacked, so liferea's behavior is a security hole.

As I stated in the original bug report, I don't quite agree with the
security hole characterization of this bug, as it is essentially
imposible for liferea to detect a hijacked feed.

This bug is currently the only reason for liferea not to be in lenny.
Since upstream has stated that the 1.4 series will *not* be updated to
deal with this issue, and I lack the time for now to attempt a backport,
this means a fix for this will not be ready before the freeze.

Would I be justified in downgrading this to important?


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



Re: esound [was: Re: Non-related 'Recommends' dependencies - bug or not?]

2008-07-19 Thread Jason D. Clinton
On Tue, Jun 17, 2008 at 9:21 AM, Loïc Minier [EMAIL PROTECTED] wrote:

 On Tue, Jun 17, 2008, Martin Pitt wrote:
  That's interesting indeed! So you avoid that by using an OSS driver
  instead of the ALSA one? I can really not imagine how esound on top of
  a broken ALSA driver would sound better than just using the ALSA
  output directly?

  It might normalize which sampling rate / sample width is used


Hi,

Pardon me for resurrecting this slightly old thread but there's been an
important development. Jeffrey Stedfast has resolved the esd deadlocking
issues when used with PulseAudio. Among other things, this solves the Pidgin
and Flash crashing problems (both of whom consume esd output while Pulse is
running with -compat).

http://jeffreystedfast.blogspot.com/2008/07/pulseaudio-i-told-you-so.html

It appears that he also made a correct release by merging our downstream
changes to libesd that were rotting in Gnome's Bugzilla.

Loïc, you offered to NMU this package here:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=422590

This vastly improves the Gnome sound situation. Hope we can get this in for
Lenny.


Re: Clarification about bug #463538 is needed

2008-07-19 Thread Brian May

Sergei Golovan wrote:

   int status = fork();
   if (status != 0)
 return 0;
   status = fork();
   if (status != 0)
 return 0;
  
Apart from what everyone else has said, I can't help put being slightly 
puzzled that it calls fork two times. This just seems weird...


Or did I miss something?

Brian May


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



Re: Clarification about bug #463538 is needed

2008-07-19 Thread The Fungi
On Sun, Jul 20, 2008 at 09:14:48AM +1000, Brian May wrote:
 Apart from what everyone else has said, I can't help put being slightly
 puzzled that it calls fork two times. This just seems weird...

 Or did I miss something?

See chapter 13 from Advanced Programming in the UNIX Environment
(ISBN 0201563177):

Under System V–based systems, some people recommend calling fork
again at this point and having the parent terminate. The second
child continues as the daemon. This guarantees that the daemon is
not a session leader, which prevents it from acquiring a controlling
terminal under the System V rules (Section 9.6). Alternatively, to
avoid acquiring a controlling terminal, be sure to specify O_NOCTTY
whenever opening a terminal device.
-- 
{ IRL(Jeremy_Stanley); PGP(9E8DFF2E4F5995F8FEADDC5829ABF7441FB84657);
SMTP([EMAIL PROTECTED]); IRC([EMAIL PROTECTED]); ICQ(114362511);
AIM(dreadazathoth); YAHOO(crawlingchaoslabs); FINGER([EMAIL PROTECTED]);
MUD([EMAIL PROTECTED]:6669); WWW(http://fungi.yuggoth.org/); }


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



FHS and /var/www

2008-07-19 Thread Carl Fürstenberg
FHS 2.3 specifies in
http://www.pathname.com/fhs/pub/fhs-2.3.html#SRVDATAFORSERVICESPROVIDEDBYSYSTEM
to use /srv for Data for services provided by this system, for
example /srv/www for web root.
In the policy, the section
9.1.1(http://www.debian.org/doc/debian-policy/ch-opersys.html#s9.1.1)
specifies that FHS 2.3 is mandatory, except for some exception, and
the use of /var/www isn't included in that list.

Should we force all httpd:s to use /srv/www instead of /var/www, or
should an exception to the policy be added? Per
http://wiki.debian.org/Apache2LennyGoals it states that apache2 has
support for /srv/www, but it's still defaulting to /var/www.

-- 
/Carl Fürstenberg [EMAIL PROTECTED]


Re: FHS and /var/www

2008-07-19 Thread Roberto C . Sánchez
On Sun, Jul 20, 2008 at 01:43:12AM +0200, Carl Fürstenberg wrote:
 FHS 2.3 specifies in
 http://www.pathname.com/fhs/pub/fhs-2.3.html#SRVDATAFORSERVICESPROVIDEDBYSYSTEM
 to use /srv for Data for services provided by this system, for
 example /srv/www for web root.
 In the policy, the section
 9.1.1(http://www.debian.org/doc/debian-policy/ch-opersys.html#s9.1.1)
 specifies that FHS 2.3 is mandatory, except for some exception, and
 the use of /var/www isn't included in that list.
 
 Should we force all httpd:s to use /srv/www instead of /var/www, or
 should an exception to the policy be added? Per
 http://wiki.debian.org/Apache2LennyGoals it states that apache2 has
 support for /srv/www, but it's still defaulting to /var/www.
 
Personally, I would be against such a change.

On some systems, I NFS mount parts of /srv (or all of it).  Such is not
the case for /var.  That is, people know better than NFS mount /var.
That guarantee does not exist, since by nature /srv should mountable by
NFS (e.g., for a web cluster, or something like that).

Regards,

-Roberto
-- 
Roberto C. Sánchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: FHS and /var/www

2008-07-19 Thread Ben Finney
Carl Fürstenberg [EMAIL PROTECTED] writes:

 Should we force all httpd:s to use /srv/www instead of /var/www, or
 should an exception to the policy be added?

I think there's no hardship if we support the FHS location, so an
exception shouldn't be made.

What do you mean by force all [HTTP servers] to use /srv/www instead
of /var/www? Why do you think that's desirable?

Conformance with the FHS would seem to require only that such files
must be addressible under the '/srv/www' location. I don't see support
for the instead of /var/www part of your question.

We could deal with this as we did for '/usr/share/doc' vs '/usr/doc';
that is, make '/srv/www/foo' the canonical location but allow a long
transition period where '/var/www/foo' is permitted as a symlink to
'/srv/www/foo'.

 Per http://wiki.debian.org/Apache2LennyGoals it states that apache2
 has support for /srv/www, but it's still defaulting to /var/www.

This could be dealt with as per above, along with the usual package
maintainer role of negotiating the Debian-specific change into the
upstream package.

-- 
 \   “Always do right. This will gratify some people, and astonish |
  `\the rest.” —Mark Twain |
_o__)  |
Ben Finney


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



Bug#491512: no man page for ulimit command

2008-07-19 Thread Robert A Marder
Package: general
Severity: serious
Justification: Policy 12.1

The ulimit command has no manual page, which violates DP 12.1

Because this command has no binary (an internal command?) i've put 
it as general although base may be a better psudeopackage.


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


FREE 3D MARINE AQUARIUM SCREENSAVER - Watch dolphins, sharks  orcas on your 
desktop!
Check it out at http://www.inbox.com/marineaquarium



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



Bug#491512: marked as done (no man page for ulimit command)

2008-07-19 Thread Debian Bug Tracking System

Your message dated Sun, 20 Jul 2008 10:46:18 +0800
with message-id [EMAIL PROTECTED]
and subject line ulimit is documented
has caused the Debian Bug report #491512,
regarding no man page for ulimit command
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 [EMAIL PROTECTED]
immediately.)


-- 
491512: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=491512
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
Package: general
Severity: serious
Justification: Policy 12.1

The ulimit command has no manual page, which violates DP 12.1

Because this command has no binary (an internal command?) i've put 
it as general although base may be a better psudeopackage.


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


FREE 3D MARINE AQUARIUM SCREENSAVER - Watch dolphins, sharks  orcas on your 
desktop!
Check it out at http://www.inbox.com/marineaquarium


---End Message---
---BeginMessage---
ulimit should be documented in the manual page for your shell.

For example:

$ man bash
/ulimit
q
$ man dash
/ulimit
q

Please file a wishlist bug on your shell if it doesn't provide
documentation on ulimit. If you are looking for the ulimit function,
install manpages-dev and run this:

$ man 3 ulimit

Please investigate a bit more before filing bugs, or ask on the user
support areas:

irc://irc.debian.org/debian
http://lists.debian.org/debian-user/
http://forums.debian.net/

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Re: Clarification about bug #463538 is needed

2008-07-19 Thread Sergei Golovan
On 7/19/08, Russ Allbery [EMAIL PROTECTED] wrote:
 It's missing either setsid or ioctl(/dev/tty, TIOCNOTTY).  The
  semi-standard daemon() function does the right thing.  Here's a public
  domain replacement (which assumes you have an Autoconf probe for whether
  setsid is available).  It depends on a wrapper around standard system
  headers, but I expect you get the idea and could fix that.

Huge thanks to all of you who took your time to answer! Indeed if I
add a call to setsid() the services become starting and daemonizing
fine. So, it's really a bug in Erlang and I'm going to report it
upstream (together with fixing in current version in unstable and
eventually in testing).

-- 
Sergei Golovan


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



Bug#491113: ITP: eekboek -- Bookkeeping software for small and medium-size businesses

2008-07-19 Thread Joost van Baal
retitle 491113 ITP: eekboek -- Bookkeeping software for small and medium-size 
businesses
owner 491113 !
thanks

Hi,

Op Wed 16 Jul 2008 om 08:35:18 +0200 schreef Joost van Baal:
 Package: wnpp
 Severity: wishlist
 
 * Package name: eekboek
   Version : 1.03.13
   Upstream Author : Johan Vromans jvromans.squirrel.nl
 * URL : http://www.eekboek.nl/
 * License : either GPL v1 or later, or Artistic License
   Programming Lang: Perl
   Description : Bookkeeping software for small and medium-size businesses
 
 EekBoek is a bookkeeping package for small and medium-size businesses.
 Unlike other accounting software, EekBoek has both a command-line
 interface (CLI) and a graphical user-interface (GUI).  Furthermore, it
 has a complete Perl API to create your own custom applications.
 
 EekBoek is designed for the Dutch/European market and currently
 available in Dutch only.

My first attempt at packaging this is available from
http://mdcc.cx/tmp/eekboek/.  Beware!  The packages there are untested;
they are only useful for people interested in helping with packaging.
Don't use them for anything else.

I'll try to get eekboek shipped with Debian lenny+1; currently it should
not enter testing.

I expect to be able to upload the software this month.

Bye,

Joost



signature.asc
Description: Digital signature


Accepted elscreen 1.4.6-4 (source all)

2008-07-19 Thread mhatta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 15:02:03 +0900
Source: elscreen
Binary: elscreen
Architecture: source all
Version: 1.4.6-4
Distribution: unstable
Urgency: low
Maintainer: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Changed-By: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Description: 
 elscreen   - Screen for Emacsen
Changes: 
 elscreen (1.4.6-4) unstable; urgency=low
 .
   * Added watch.
Checksums-Sha1: 
 b8d56410b092f6b1277ead4e3382852e2161fca6 971 elscreen_1.4.6-4.dsc
 409531fb6e0cc8569f1ad43d62d7610840495669 19232 elscreen_1.4.6-4.diff.gz
 aad8dbb5ddab84f75cc934bb0c3c8a61d15292fd 42612 elscreen_1.4.6-4_all.deb
Checksums-Sha256: 
 d37226ad71f0a4406cb5dae12cf6c86162c1c10b9a5509420cc871f865c177ea 971 
elscreen_1.4.6-4.dsc
 72476700b59dfd88d70f2086b9f0372db498592c0e860f4105789593d86555a2 19232 
elscreen_1.4.6-4.diff.gz
 4124f90bf2c3f5e393a48fdca0b0035393c639c565b61206b45b7aeeeaa73a39 42612 
elscreen_1.4.6-4_all.deb
Files: 
 cf41ced41418c693abef90cfa5c4f501 971 utils optional elscreen_1.4.6-4.dsc
 c7eab634cb54cd7b2a7a55c4dcd45da1 19232 utils optional elscreen_1.4.6-4.diff.gz
 09776f6e2da214fd405fc8c5cf01f841 42612 utils optional elscreen_1.4.6-4_all.deb

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

iEYEARECAAYFAkiBg3gACgkQy2+jQOcHWlQ/FwCfTP8/jgn4QMQSSQIQbm4hYCMC
7EsAnRSNqgKBBlLYwBV3ODWXjsnv7oBL
=mL1a
-END PGP SIGNATURE-


Accepted:
elscreen_1.4.6-4.diff.gz
  to pool/main/e/elscreen/elscreen_1.4.6-4.diff.gz
elscreen_1.4.6-4.dsc
  to pool/main/e/elscreen/elscreen_1.4.6-4.dsc
elscreen_1.4.6-4_all.deb
  to pool/main/e/elscreen/elscreen_1.4.6-4_all.deb


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



Accepted mendexk 2.6e-3 (source i386)

2008-07-19 Thread mhatta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 15:18:52 +0900
Source: mendexk
Binary: mendexk
Architecture: source i386
Version: 2.6e-3
Distribution: unstable
Urgency: low
Maintainer: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Changed-By: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Description: 
 mendexk- a replacement for makeindex with many enhancements
Changes: 
 mendexk (2.6e-3) unstable; urgency=low
 .
   * Bumped to Standards-Version: 3.8.0.
Checksums-Sha1: 
 cd7ac98f103dba338654e43aa95454cbf99f3bfc 962 mendexk_2.6e-3.dsc
 b6ed2c7320257b61782854ecdb70f5810390bdef 5533 mendexk_2.6e-3.diff.gz
 564fb45cecf17dbbbefce24a3cf19e914ab4d8b6 59832 mendexk_2.6e-3_i386.deb
Checksums-Sha256: 
 b317f51a9a3818d2ba56f207dbe69967e610f59c452a7c8d2ceb77a9d636329a 962 
mendexk_2.6e-3.dsc
 a84e7ed7582667413bf1c14664aabd8253f269a7a6f771bca5a7658b389128b0 5533 
mendexk_2.6e-3.diff.gz
 c9350808a1d562ab9e79dd04b871beb8c0f504299ddc98a1bba306844c074d30 59832 
mendexk_2.6e-3_i386.deb
Files: 
 3b721bf612c728ccbaeddfe7c2f76364 962 tex optional mendexk_2.6e-3.dsc
 f54406ddc048530813d7f2c180819495 5533 tex optional mendexk_2.6e-3.diff.gz
 082e6c0696f9071df222b717989a2e6e 59832 tex optional mendexk_2.6e-3_i386.deb

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

iEYEARECAAYFAkiBiEoACgkQy2+jQOcHWlQQVQCeLBgvbAp7Knn5WA5I/xj+ZZR8
0hsAnjBGMql7ZaznwhFA2alp3NsN/Lkx
=rmYs
-END PGP SIGNATURE-


Accepted:
mendexk_2.6e-3.diff.gz
  to pool/main/m/mendexk/mendexk_2.6e-3.diff.gz
mendexk_2.6e-3.dsc
  to pool/main/m/mendexk/mendexk_2.6e-3.dsc
mendexk_2.6e-3_i386.deb
  to pool/main/m/mendexk/mendexk_2.6e-3_i386.deb


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



Accepted cgoban 1.9.14-15 (source i386)

2008-07-19 Thread Martin A. Godisch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 07:03:51 +0200
Source: cgoban
Binary: cgoban
Architecture: source i386
Version: 1.9.14-15
Distribution: unstable
Urgency: low
Maintainer: Martin A. Godisch [EMAIL PROTECTED]
Changed-By: Martin A. Godisch [EMAIL PROTECTED]
Description: 
 cgoban - complete Go board
Closes: 490579
Changes: 
 cgoban (1.9.14-15) unstable; urgency=low
 .
   * Registered as SGF editor, closes: #490579.
   * Updated standards version.
Checksums-Sha1: 
 45faac81580d1caafac156305f66ee594cfa8e58 969 cgoban_1.9.14-15.dsc
 f665799d00b9596d87a5b68f58730642ce6cf720 62352 cgoban_1.9.14-15.diff.gz
 9677ca49028581ec4882bd61c3758876acfd1a38 233700 cgoban_1.9.14-15_i386.deb
Checksums-Sha256: 
 2d0f0b4788a4efa13ed5d8fa690cd08e0a728daa459b60bfad15216a56dbea58 969 
cgoban_1.9.14-15.dsc
 19dff50bf1019aa3efb1faba1494f4b7fdd0e8d3686929b80f163f0e2b30731f 62352 
cgoban_1.9.14-15.diff.gz
 f74054328a9c2d2ba83f8bdc43f7c86a5457191f3d718decb08eec2951fa3b86 233700 
cgoban_1.9.14-15_i386.deb
Files: 
 6d31000ece22b09f8a06644d4c398cd7 969 games optional cgoban_1.9.14-15.dsc
 a47b5408a2826da201d9c1817212595c 62352 games optional cgoban_1.9.14-15.diff.gz
 1b4dac71446557dcf835299debf6f07d 233700 games optional 
cgoban_1.9.14-15_i386.deb

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

iEYEARECAAYFAkiBfboACgkQhOZKoAn8AVzg5gCfSSti48AskviIRRlYcs0P3yyz
rN0AoJ9UyVTpiChj8JQdy3oApXwlxYCI
=L4vN
-END PGP SIGNATURE-


Accepted:
cgoban_1.9.14-15.diff.gz
  to pool/main/c/cgoban/cgoban_1.9.14-15.diff.gz
cgoban_1.9.14-15.dsc
  to pool/main/c/cgoban/cgoban_1.9.14-15.dsc
cgoban_1.9.14-15_i386.deb
  to pool/main/c/cgoban/cgoban_1.9.14-15_i386.deb


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



Accepted ewipe 1.2.0-8 (source i386)

2008-07-19 Thread mhatta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 15:07:37 +0900
Source: ewipe
Binary: ewipe
Architecture: source i386
Version: 1.2.0-8
Distribution: unstable
Urgency: low
Maintainer: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Changed-By: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Description: 
 ewipe  - Yet another presentation tool based on Tcl/Tk
Changes: 
 ewipe (1.2.0-8) unstable; urgency=low
 .
   * Bumped to Standards-Version: 3.8.0.
Checksums-Sha1: 
 e5316e412d2cd379254acad0dfc6bc7b87df3000 939 ewipe_1.2.0-8.dsc
 b94ca07c9496bc22a30331b150c1150bdae1c9a9 2615 ewipe_1.2.0-8.diff.gz
 caa3feb42f2c9f68ce53738b937c1bad2b2e2788 128518 ewipe_1.2.0-8_i386.deb
Checksums-Sha256: 
 a5aba1d924ef50c2623bed6be4b8ab306fe9d39b65f5d79bbb61ccc6a059bd31 939 
ewipe_1.2.0-8.dsc
 b7bdaf1a729551ecf4e77fe943aef830cc6a50814b07be1c16b5d39ad08f38d6 2615 
ewipe_1.2.0-8.diff.gz
 94d8ef8e6b1680395c45caca04a930a2c65ac59ca42e37db0a3ac4586bdd10f0 128518 
ewipe_1.2.0-8_i386.deb
Files: 
 97497db9259b90abf273c97594467b5d 939 x11 optional ewipe_1.2.0-8.dsc
 57221e7845dffbe5c8c738869c72675a 2615 x11 optional ewipe_1.2.0-8.diff.gz
 9a9746f65b6eb73b772bd311bb22db09 128518 x11 optional ewipe_1.2.0-8_i386.deb

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

iEYEARECAAYFAkiBhQgACgkQy2+jQOcHWlR4iwCfQab+hQPYyjXr0EtJ+vGR8Pas
om0An3B+NlNPaU0m0lyTzxjLI2S+l8Sq
=yPgh
-END PGP SIGNATURE-


Accepted:
ewipe_1.2.0-8.diff.gz
  to pool/main/e/ewipe/ewipe_1.2.0-8.diff.gz
ewipe_1.2.0-8.dsc
  to pool/main/e/ewipe/ewipe_1.2.0-8.dsc
ewipe_1.2.0-8_i386.deb
  to pool/main/e/ewipe/ewipe_1.2.0-8_i386.deb


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



Accepted edict-fpw 1.2.1-8 (source all)

2008-07-19 Thread mhatta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 15:33:24 +0900
Source: edict-fpw
Binary: edict-fpw
Architecture: source all
Version: 1.2.1-8
Distribution: unstable
Urgency: low
Maintainer: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Changed-By: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Description: 
 edict-fpw  - English / Japanese dictionary (formatted in JIS X 4081)
Changes: 
 edict-fpw (1.2.1-8) unstable; urgency=low
 .
   * Bumped to Standards-Version: 3.8.0.
Checksums-Sha1: 
 c1d0b2fbc93492e6bcf5012402c59aff215da06f 1057 edict-fpw_1.2.1-8.dsc
 043af813c5dc2d64579b14bf9000b381a30a5c40 7674 edict-fpw_1.2.1-8.diff.gz
 17e48c56ff4f665c5f2c94ce8b8c101a7d07e351 19224192 edict-fpw_1.2.1-8_all.deb
Checksums-Sha256: 
 e413c543522806dd9cdfe5791e9d90f4d381e8509fc0a3d1f7970b03d35185ce 1057 
edict-fpw_1.2.1-8.dsc
 2291be285afa3c6abf79b164ef6847522d799215f4ef0973df9b01db78c1d682 7674 
edict-fpw_1.2.1-8.diff.gz
 2bf56eec5e82c08a3bb431c011acebb15b91634e9c482582c2f8d54622f0301e 19224192 
edict-fpw_1.2.1-8_all.deb
Files: 
 5785ec0dd03e1ac4eda36fdbdafa5ab6 1057 text optional edict-fpw_1.2.1-8.dsc
 7e4599227eb550f4512d1630a575 7674 text optional edict-fpw_1.2.1-8.diff.gz
 eb32b4be658e7dc54c947f7388a7bedf 19224192 text optional 
edict-fpw_1.2.1-8_all.deb

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

iEYEARECAAYFAkiBjmUACgkQy2+jQOcHWlSSEwCeLva7CTT29bO8gxUaL97mktua
nRoAn2p6zQdQpwdgeCHCgyhfTotR5VT0
=qth5
-END PGP SIGNATURE-


Accepted:
edict-fpw_1.2.1-8.diff.gz
  to pool/main/e/edict-fpw/edict-fpw_1.2.1-8.diff.gz
edict-fpw_1.2.1-8.dsc
  to pool/main/e/edict-fpw/edict-fpw_1.2.1-8.dsc
edict-fpw_1.2.1-8_all.deb
  to pool/main/e/edict-fpw/edict-fpw_1.2.1-8_all.deb


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



Accepted autopsy 2.08-2.1 (source all)

2008-07-19 Thread Martin A. Godisch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 08:25:23 +0200
Source: autopsy
Binary: autopsy
Architecture: source all
Version: 2.08-2.1
Distribution: unstable
Urgency: low
Maintainer: Lorenzo Martignoni [EMAIL PROTECTED]
Changed-By: Martin A. Godisch [EMAIL PROTECTED]
Description: 
 autopsy- graphical interface to SleuthKit
Closes: 479935
Changes: 
 autopsy (2.08-2.1) unstable; urgency=low
 .
   * NMU
   * Applied patch to prevent broken Perl check, closes: #479935.
 Thanks to Peter Green [EMAIL PROTECTED].
Checksums-Sha1: 
 ce3fdaad7a3836230fc763c8a728ca577bb66564 998 autopsy_2.08-2.1.dsc
 0961bcaef59afd4ac283387e4e75f85e306bf282 10011 autopsy_2.08-2.1.diff.gz
 eadb7e9685db114e9c8b9bc4d837e4347e768289 383080 autopsy_2.08-2.1_all.deb
Checksums-Sha256: 
 66ca505700639b9d1c4c6d4ff28937a90437d20f2e0c19f1b2a8c746157cb494 998 
autopsy_2.08-2.1.dsc
 16ab47a19d8190e17fe9498165074073b9670a952b09f638ead0a975edc50d00 10011 
autopsy_2.08-2.1.diff.gz
 9fc231e4bd314b400a8379c901f9f0992d841e49df82ab504cf5f2c5bc82f051 383080 
autopsy_2.08-2.1_all.deb
Files: 
 89e7a7fe7ea38caef5d427ab1e8ff041 998 admin optional autopsy_2.08-2.1.dsc
 30fec8e475daae00c195575ec0e66370 10011 admin optional autopsy_2.08-2.1.diff.gz
 d99a7586fc193fd29b959bcd7f1e4756 383080 admin optional autopsy_2.08-2.1_all.deb

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

iEYEARECAAYFAkiBiwkACgkQhOZKoAn8AVzVfACeMRC+JTD+sE2gCeHqZtlAZbUV
sQ0An0iWEIpnu7Wa1VzVOG1UcKELIh+Y
=dxgq
-END PGP SIGNATURE-


Accepted:
autopsy_2.08-2.1.diff.gz
  to pool/main/a/autopsy/autopsy_2.08-2.1.diff.gz
autopsy_2.08-2.1.dsc
  to pool/main/a/autopsy/autopsy_2.08-2.1.dsc
autopsy_2.08-2.1_all.deb
  to pool/main/a/autopsy/autopsy_2.08-2.1_all.deb


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



Accepted cracklib2 2.8.12-2 (source i386)

2008-07-19 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Jul 2008 19:59:54 +0200
Source: cracklib2
Binary: libcrack2 libcrack2-dev cracklib-runtime python-cracklib
Architecture: source i386
Version: 2.8.12-2
Distribution: unstable
Urgency: low
Maintainer: Jan Dittberner [EMAIL PROTECTED]
Changed-By: Jan Dittberner [EMAIL PROTECTED]
Description: 
 cracklib-runtime - runtime support for password checker library cracklib2
 libcrack2  - pro-active password checker library
 libcrack2-dev - pro-active password checker library - development
 python-cracklib - Python bindings for password checker library cracklib2
Closes: 380546
Changes: 
 cracklib2 (2.8.12-2) unstable; urgency=low
 .
   * debian/patches/04-improved-python-binding.patch patches upstream
 python bindings to provide the functionallity and documentation
 strings python-crack had (upstream will apply this patch in the
 future)
   * debian/rules uses autogen.sh
   * only update cracklib dictionary if any of the source dictionaries has
 changed (Closes: #380546)
   * debian/control
 + make Conflicts/Replaces version specific to be compliant to policy
   section 2.5
 + add libtool, autoconf, and automake to build dependencies
Checksums-Sha1: 
 b602a67958cc6835aa1432d46dc4e04d677a69f2 1411 cracklib2_2.8.12-2.dsc
 6b142189327c4714ed2443f10956b7a9b70c6395 22359 cracklib2_2.8.12-2.diff.gz
 d0053c670752fbab5c69fcf73f80072f99bd0201 190424 libcrack2_2.8.12-2_i386.deb
 e793f6359e23c89e9378ceb3346d3a75d7e0c518 25474 libcrack2-dev_2.8.12-2_i386.deb
 f0fed33a171f1233bdd1eb6b4dd386e337931229 23154 
cracklib-runtime_2.8.12-2_i386.deb
 520b34cd0e6d2055883398cd7c2bba315ffd63f9 15360 
python-cracklib_2.8.12-2_i386.deb
Checksums-Sha256: 
 4fbb2d5dbc0ba343488eb45bdd163bcbb54b860fbab4fe92ba7492a2671b584b 1411 
cracklib2_2.8.12-2.dsc
 dbdb2567f05f739352058310ef3c6bd22cd26451e595c41284e0d59788a8f5b2 22359 
cracklib2_2.8.12-2.diff.gz
 7fcfd0a19d3999f10d9c9d6c4b35629dc8e4cdeb70271a0c48995b8564f728bf 190424 
libcrack2_2.8.12-2_i386.deb
 244c34890aa32a1864638eca4573c8216d4b706a2b08a85eb76385adbd2d417d 25474 
libcrack2-dev_2.8.12-2_i386.deb
 19e02b861c264b7f45d8d060e12fa63a093c1882f786155a3612ebf7dd98bd33 23154 
cracklib-runtime_2.8.12-2_i386.deb
 9f42b90314b167d619af2131b8fd8a8c3bda906340773c2c18f8e10a5acda59a 15360 
python-cracklib_2.8.12-2_i386.deb
Files: 
 d2ffa8efc935d070df5a15204d69b4e8 1411 libs optional cracklib2_2.8.12-2.dsc
 27e6c2b705c6a09b35dfddfdc0f0ad10 22359 libs optional cracklib2_2.8.12-2.diff.gz
 b0c17aac2fadbb349d00f51626c36201 190424 libs optional 
libcrack2_2.8.12-2_i386.deb
 6254f572d38717815f1c9ae89e09b72d 25474 libdevel extra 
libcrack2-dev_2.8.12-2_i386.deb
 a3699fc7a7662b09cdde9fe939270e23 23154 admin optional 
cracklib-runtime_2.8.12-2_i386.deb
 36a269d7a17251928e23a8369d742463 15360 python optional 
python-cracklib_2.8.12-2_i386.deb

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

iEYEARECAAYFAkiBnDAACgkQDecnbV4Fd/Kr4gCfR7jwIIX3MUb4Ynv7CHqOWITg
Ft8AnA/hZSZIAHuFZ503RT7yikcL20qF
=VueD
-END PGP SIGNATURE-


Accepted:
cracklib-runtime_2.8.12-2_i386.deb
  to pool/main/c/cracklib2/cracklib-runtime_2.8.12-2_i386.deb
cracklib2_2.8.12-2.diff.gz
  to pool/main/c/cracklib2/cracklib2_2.8.12-2.diff.gz
cracklib2_2.8.12-2.dsc
  to pool/main/c/cracklib2/cracklib2_2.8.12-2.dsc
libcrack2-dev_2.8.12-2_i386.deb
  to pool/main/c/cracklib2/libcrack2-dev_2.8.12-2_i386.deb
libcrack2_2.8.12-2_i386.deb
  to pool/main/c/cracklib2/libcrack2_2.8.12-2_i386.deb
python-cracklib_2.8.12-2_i386.deb
  to pool/main/c/cracklib2/python-cracklib_2.8.12-2_i386.deb


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



Accepted audacious 1.5.1-2 (source i386)

2008-07-19 Thread William Pitcock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Jul 2008 20:10:07 -0500
Source: audacious
Binary: audacious libaudid3tag1 libaudclient1 audacious-dev audacious-dbg
Architecture: source i386
Version: 1.5.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Audacious Packagers [EMAIL PROTECTED]
Changed-By: William Pitcock [EMAIL PROTECTED]
Description: 
 audacious  - small and fast audio player which supports lots of formats
 audacious-dbg - audacious media player (debugging symbols)
 audacious-dev - audacious development files
 libaudclient1 - audacious dbus remote control library
 libaudid3tag1 - audacious id3 tag manipulation library
Closes: 471061 486543 489037 489217 489958
Changes: 
 audacious (1.5.1-2) unstable; urgency=medium
 .
   * Build without SSE2 support where appropriate.
 (Closes: #471061, #489037).
   * Strengthen dependency on audacious-plugins to enforce correct
 plugin version usage due to an ABI break.
 (Closes: #489958, #486543, #489217).
   * Make sure that libaudclient1 and libaudid3tag1 are updated to matching
 versions so that the private interfaces match up correctly, by Depending
 on them in audacious.
   * debian/control: Bump to Standards-Version 3.8.0; no changes required.
Checksums-Sha1: 
 b2013d3c1916bc349f49a5167fcbb515a762c161 1437 audacious_1.5.1-2.dsc
 ff1dbeb490b57d967f65049d2e05f0c0623794ac 10873 audacious_1.5.1-2.diff.gz
 a6467d28383c7fb772f782e785b788d3677c81dd 1159820 audacious_1.5.1-2_i386.deb
 063fadda7a733c0a53f5d876f36b0bac94c171a8 47786 libaudid3tag1_1.5.1-2_i386.deb
 4588f4d4106a802ac82ecb1c600c3d7c4c7f2b1c 24350 libaudclient1_1.5.1-2_i386.deb
 c64b2f18b2172ecc257dd5d733e620b5c2ff06a3 49780 audacious-dev_1.5.1-2_i386.deb
 223ef4c8beadcfcf8717b899588dd1bc5d527407 815180 audacious-dbg_1.5.1-2_i386.deb
Checksums-Sha256: 
 a0c3936d85c675b24e4d01db5e21d358ce56995bc7fb86fea0ee37aeadcf92c9 1437 
audacious_1.5.1-2.dsc
 83645f6973d481984408d771bb642bef7fe0fb749fc74d2e02fc68f2ebedf04f 10873 
audacious_1.5.1-2.diff.gz
 468c05dcb0f2832f7234dd6160ab637fcb1a64971f88f885484831341a88d379 1159820 
audacious_1.5.1-2_i386.deb
 fcb4acc5ec5f7a45d40e018f1aa0a40394cc6322e5cccfce83c0a3b74b7686a8 47786 
libaudid3tag1_1.5.1-2_i386.deb
 59e8cf9553e81d4643c8db59b4d51fec0d4e63d0b1fc1a2983acea1e58c9ff76 24350 
libaudclient1_1.5.1-2_i386.deb
 daa3ff93ab304a27f9cdc5b47bffdd7ddd4676e1396ca7cb6c98a367db6affbb 49780 
audacious-dev_1.5.1-2_i386.deb
 53af4bc70d0a7cd84bed9f9157f8947eae099eb4b68930a5d6993e64a2089ec4 815180 
audacious-dbg_1.5.1-2_i386.deb
Files: 
 41a4196021153383c9e23976f7896a78 1437 sound optional audacious_1.5.1-2.dsc
 4689c11bd44c1acdb11f7f7f68890a9b 10873 sound optional audacious_1.5.1-2.diff.gz
 6f7cbf8314afef4fea585f2a3bf8f1b5 1159820 sound optional 
audacious_1.5.1-2_i386.deb
 9e96e2120632eeaec6c0d9303383ca9e 47786 sound optional 
libaudid3tag1_1.5.1-2_i386.deb
 a0a527690a9da8e1a7e2a60597f25dcd 24350 sound optional 
libaudclient1_1.5.1-2_i386.deb
 1e389a732a05e28206e01c830324c2cc 49780 libs optional 
audacious-dev_1.5.1-2_i386.deb
 a5aea93b6a067995d4c6cca11668184a 815180 devel extra 
audacious-dbg_1.5.1-2_i386.deb

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

iD8DBQFIgZuyibPvMsrqrwMRApzQAKCxc7O4kr94ZfQMha9l3r50/+O0FACgkxVr
Vn+KrVDR9ufMLjID9wh0W9U=
=gviS
-END PGP SIGNATURE-


Accepted:
audacious-dbg_1.5.1-2_i386.deb
  to pool/main/a/audacious/audacious-dbg_1.5.1-2_i386.deb
audacious-dev_1.5.1-2_i386.deb
  to pool/main/a/audacious/audacious-dev_1.5.1-2_i386.deb
audacious_1.5.1-2.diff.gz
  to pool/main/a/audacious/audacious_1.5.1-2.diff.gz
audacious_1.5.1-2.dsc
  to pool/main/a/audacious/audacious_1.5.1-2.dsc
audacious_1.5.1-2_i386.deb
  to pool/main/a/audacious/audacious_1.5.1-2_i386.deb
libaudclient1_1.5.1-2_i386.deb
  to pool/main/a/audacious/libaudclient1_1.5.1-2_i386.deb
libaudid3tag1_1.5.1-2_i386.deb
  to pool/main/a/audacious/libaudid3tag1_1.5.1-2_i386.deb


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



Accepted audacious-plugins 1.5.1-2 (source i386)

2008-07-19 Thread William Pitcock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Jul 2008 20:25:56 -0500
Source: audacious-plugins
Binary: audacious-plugins audacious-plugins-extra audacious-plugins-dev 
audacious-plugins-dbg
Architecture: source i386
Version: 1.5.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Audacious Packagers [EMAIL PROTECTED]
Changed-By: William Pitcock [EMAIL PROTECTED]
Description: 
 audacious-plugins - Base plugins for audacious
 audacious-plugins-dbg - Audacious-Plugins debug symbols
 audacious-plugins-dev - Useful virtual package for doing audacious plugin 
development
 audacious-plugins-extra - Various extra plugins for audacious
Changes: 
 audacious-plugins (1.5.1-2) unstable; urgency=low
 .
   * debian/patches/003-fix-ftbfs-ia64.patch: Fix FTBFS on ia64.
Checksums-Sha1: 
 3bcbc22b2bd3f953bcaf98e281f95848ba7d9016 2467 audacious-plugins_1.5.1-2.dsc
 46ae0ad447eae1b510e830ac6ca3269ce1ff3b53 11369 
audacious-plugins_1.5.1-2.diff.gz
 733b0da569b9b27bf1100b19ae7a336393a4e370 423556 
audacious-plugins_1.5.1-2_i386.deb
 4082d3ad5a719c557c369d8f04746e78de982ca1 1159882 
audacious-plugins-extra_1.5.1-2_i386.deb
 c86e5129184cc94f5008aa6fd93d9fcee4abb7a9 9832 
audacious-plugins-dev_1.5.1-2_i386.deb
 37e0af0401014ecf7885025cdbfd8651cfde7d41 5227644 
audacious-plugins-dbg_1.5.1-2_i386.deb
Checksums-Sha256: 
 564e7a09a0fc545148b716fc25630a20212dfe15322c66a8a375be0d846877e6 2467 
audacious-plugins_1.5.1-2.dsc
 367c1b0cf8f5cdc2400b9ac61baa4850192dbd171df7c8658b9641be975e9679 11369 
audacious-plugins_1.5.1-2.diff.gz
 9c1a3a04bc53bec9a8a0f2ed237c93358a058a886a4eb3c6cfdb708e9595422e 423556 
audacious-plugins_1.5.1-2_i386.deb
 f3b758dce36a3790f6d730a8f5b5ee2ea4a8e9acbbf8aeb4e3b456fcccb33b0e 1159882 
audacious-plugins-extra_1.5.1-2_i386.deb
 277acf290d8ca4763753a7462b8ad643a1e47254c4527a96d3de28a119771fbc 9832 
audacious-plugins-dev_1.5.1-2_i386.deb
 0f91dcb999a2dfd9a5bd0cd155e6dfa3e95fe815fc0726b163f2cb28b513ff2f 5227644 
audacious-plugins-dbg_1.5.1-2_i386.deb
Files: 
 156642304b26443ddd6cbe4b43b235e3 2467 sound optional 
audacious-plugins_1.5.1-2.dsc
 9979cbb8018817ea9bec5582ae9b07a7 11369 sound optional 
audacious-plugins_1.5.1-2.diff.gz
 049086c4e7c8837a71ff468ebdf4c3eb 423556 sound optional 
audacious-plugins_1.5.1-2_i386.deb
 7ddf03d06a3301e687b850c111205c16 1159882 sound optional 
audacious-plugins-extra_1.5.1-2_i386.deb
 ab382e360872e29f41b4e9e88f60881d 9832 devel optional 
audacious-plugins-dev_1.5.1-2_i386.deb
 31101ae7a6f02ed1e2be66106b9ff188 5227644 devel extra 
audacious-plugins-dbg_1.5.1-2_i386.deb

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

iD8DBQFIgZvAibPvMsrqrwMRAmQCAJsESFondYh/F6gUzgRF1PnvIM6UxQCfQ+bw
3MxWVcj/gpukJEHdblGMeCo=
=exAp
-END PGP SIGNATURE-


Accepted:
audacious-plugins-dbg_1.5.1-2_i386.deb
  to pool/main/a/audacious-plugins/audacious-plugins-dbg_1.5.1-2_i386.deb
audacious-plugins-dev_1.5.1-2_i386.deb
  to pool/main/a/audacious-plugins/audacious-plugins-dev_1.5.1-2_i386.deb
audacious-plugins-extra_1.5.1-2_i386.deb
  to pool/main/a/audacious-plugins/audacious-plugins-extra_1.5.1-2_i386.deb
audacious-plugins_1.5.1-2.diff.gz
  to pool/main/a/audacious-plugins/audacious-plugins_1.5.1-2.diff.gz
audacious-plugins_1.5.1-2.dsc
  to pool/main/a/audacious-plugins/audacious-plugins_1.5.1-2.dsc
audacious-plugins_1.5.1-2_i386.deb
  to pool/main/a/audacious-plugins/audacious-plugins_1.5.1-2_i386.deb


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



Accepted openvpn 2.1~rc7-6 (source i386)

2008-07-19 Thread Alberto Gonzalez Iniesta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 24 Jun 2008 15:46:15 +0200
Source: openvpn
Binary: openvpn
Architecture: source i386
Version: 2.1~rc7-6
Distribution: unstable
Urgency: low
Maintainer: Alberto Gonzalez Iniesta [EMAIL PROTECTED]
Changed-By: Alberto Gonzalez Iniesta [EMAIL PROTECTED]
Description: 
 openvpn- virtual private network daemon
Closes: 371148 394289 414252 459531 469522 486678 487957 488675
Changes: 
 openvpn (2.1~rc7-6) unstable; urgency=low
 .
   * debian/control: Add Recommends on net-tools. (Closes: #469522)
   * init.d script: clean up. (Closes: #486678)
   * init.d script: Added soft-restart option to send SIGUSR1 to running
 VPNs. (Closes: #414252)
   * Added bash_completion for init.d script. (Closes: #394289)
   * Removed obsolete templates and its associated code. (Closes: #459531)
   * Removed stop before upgrade question, always restar after the upgrade
 not in between. (Closes: #371148)
   * New patch to correct spelling error in socket.c. (Closes: #487957)
   * Added OPTARGS to init.d script and /etc/default/openvpn so that
 Stanislav Maslovski does not have to edit this on every upgrade :)
 (Closes: #488675)
Checksums-Sha1: 
 5649e25084c779674b5002d5c120ddac03ac60ee 1032 openvpn_2.1~rc7-6.dsc
 265e059bd462151f19637624813dad8a3e024b63 79834 openvpn_2.1~rc7-6.diff.gz
 a2e0e5460212ce4aae52ce8ffd09ae6a4c65b9e6 365052 openvpn_2.1~rc7-6_i386.deb
Checksums-Sha256: 
 45e3ff791fc1c569ee2f92c8e6b49a12a2c4472e2437e0fa3081280f8ae8b01e 1032 
openvpn_2.1~rc7-6.dsc
 8d5ed76f1dd4e104c332cdc0cd5554e48a6029f8903ac6e653845eb1d6bf2b01 79834 
openvpn_2.1~rc7-6.diff.gz
 29269645a59e5e3114c5b70c8a3d5e39cc3394a126031b42fc6678dd0ed3ec23 365052 
openvpn_2.1~rc7-6_i386.deb
Files: 
 f08770f17e54adcc42831c5ec88c3ad8 1032 net optional openvpn_2.1~rc7-6.dsc
 5be8216aaedc43a3f844053b6d772197 79834 net optional openvpn_2.1~rc7-6.diff.gz
 436e2ebe294a931620f83bcd7c723919 365052 net optional openvpn_2.1~rc7-6_i386.deb

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

iEYEARECAAYFAkiBoSsACgkQxRSvjkukAcPI4QCfXe3h7jbhcJoOYEL3IKys5Oof
zgQAn14IJHmt6hxqaMvoB6Q1WW57KgNM
=mjUu
-END PGP SIGNATURE-


Accepted:
openvpn_2.1~rc7-6.diff.gz
  to pool/main/o/openvpn/openvpn_2.1~rc7-6.diff.gz
openvpn_2.1~rc7-6.dsc
  to pool/main/o/openvpn/openvpn_2.1~rc7-6.dsc
openvpn_2.1~rc7-6_i386.deb
  to pool/main/o/openvpn/openvpn_2.1~rc7-6_i386.deb


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



Accepted latrine 0.10.1-1 (source i386)

2008-07-19 Thread Martin A. Godisch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 10:07:41 +0200
Source: latrine
Binary: latrine
Architecture: source i386
Version: 0.10.1-1
Distribution: unstable
Urgency: low
Maintainer: Martin A. Godisch [EMAIL PROTECTED]
Changed-By: Martin A. Godisch [EMAIL PROTECTED]
Description: 
 latrine- curses-based LAnguage TRaINEr
Changes: 
 latrine (0.10.1-1) unstable; urgency=low
 .
   * New upstream release.
   * Updated standards version.
Checksums-Sha1: 
 df997219ae477c49a88a3397d1141ca6d695554d 981 latrine_0.10.1-1.dsc
 5735e66cb983fe269d4e45f353cb24b7634953d3 111070 latrine_0.10.1.orig.tar.gz
 5698d25ea701bc51bc8c618e093d26d9db1ffcb6 3231 latrine_0.10.1-1.diff.gz
 d4c8478f2a39036cbeaf071b6733d2dd520c8311 53212 latrine_0.10.1-1_i386.deb
Checksums-Sha256: 
 2b4180de4b8200280d260424b743874de5ba64d06054c4e8d7cf1d85883d75c7 981 
latrine_0.10.1-1.dsc
 48b61186c66be67a164138740d724da9c7b15452297c23b1d10427c89b824d98 111070 
latrine_0.10.1.orig.tar.gz
 d908bbcc73b22ec8ec25417a25f8c705853e435840f4d6cf256995fd5a10a9d9 3231 
latrine_0.10.1-1.diff.gz
 9f67d79245eb20713a29ffbf7b6be99710045a710e270533b089ae4be8e87032 53212 
latrine_0.10.1-1_i386.deb
Files: 
 43e437853564a02fc0e9b7725f494148 981 text optional latrine_0.10.1-1.dsc
 4d0faa046eb99f7e8ceac79ec5934ebf 111070 text optional 
latrine_0.10.1.orig.tar.gz
 02a08ddb6c17901e7129fbb29ce1781f 3231 text optional latrine_0.10.1-1.diff.gz
 2811e440d50f2b14420eb99d19e93e8e 53212 text optional latrine_0.10.1-1_i386.deb

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

iEYEARECAAYFAkiBo1IACgkQhOZKoAn8AVyBWgCfZLn+bQ0vIp8cbwT2u2e5xp13
coIAniYPuTsc+mlY2W8lV39utuK2TTxV
=pcLj
-END PGP SIGNATURE-


Accepted:
latrine_0.10.1-1.diff.gz
  to pool/main/l/latrine/latrine_0.10.1-1.diff.gz
latrine_0.10.1-1.dsc
  to pool/main/l/latrine/latrine_0.10.1-1.dsc
latrine_0.10.1-1_i386.deb
  to pool/main/l/latrine/latrine_0.10.1-1_i386.deb
latrine_0.10.1.orig.tar.gz
  to pool/main/l/latrine/latrine_0.10.1.orig.tar.gz


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



Accepted emacs21-non-dfsg 21.4a+1-1.1 (source all)

2008-07-19 Thread Frank Lichtenheld
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Jul 2008 23:53:10 +0200
Source: emacs21-non-dfsg
Binary: emacs21-common-non-dfsg
Architecture: source all
Version: 21.4a+1-1.1
Distribution: unstable
Urgency: high
Maintainer: Rob Browning [EMAIL PROTECTED]
Changed-By: Frank Lichtenheld [EMAIL PROTECTED]
Description: 
 emacs21-common-non-dfsg - GNU Emacs shared, architecture independent, non-DFSG 
items
Closes: 423126
Changes: 
 emacs21-non-dfsg (21.4a+1-1.1) unstable; urgency=high
 .
   * Non-maintainer upload.
   * Refer to /usr/share/common-licenses/GFDL for the full text
 of the GFDL. Refering to an info page in the package might
 meet the spirit of policy, but not the letter.
 (Closes: #423126)
   * Replace tail +2 with tail -n +2 since the former doesn't work
 anymore
Checksums-Sha1: 
 1c631015c44790d0416d571621613b2a9cc16bce 1145 emacs21-non-dfsg_21.4a+1-1.1.dsc
 8640682264d10b18ef4b02e3aac929a785837ebd 8732 
emacs21-non-dfsg_21.4a+1-1.1.diff.gz
 6129f1f2a1740ed63c8abc6bb59120f09cf89752 1467556 
emacs21-common-non-dfsg_21.4a+1-1.1_all.deb
Checksums-Sha256: 
 d723b291c010ee67be9d6c680430befe42d7aa57340e6f095a7e538fa2b680ff 1145 
emacs21-non-dfsg_21.4a+1-1.1.dsc
 967cb1f5bd1307cd3eb606efb1986cc4ee4e8638b72f81ed53efa76900bcc681 8732 
emacs21-non-dfsg_21.4a+1-1.1.diff.gz
 ae19a63ee341df6751c5c698c354fed10d0cec0597fdbecb484eb8ccf06fc7e6 1467556 
emacs21-common-non-dfsg_21.4a+1-1.1_all.deb
Files: 
 05ff76f3e4d41dec449965bb79ff15b6 1145 non-free/editors optional 
emacs21-non-dfsg_21.4a+1-1.1.dsc
 1070279acde8f7f71c2cc9990f09c839 8732 non-free/editors optional 
emacs21-non-dfsg_21.4a+1-1.1.diff.gz
 2990e36ecee7145e3d256bcde58a0865 1467556 non-free/editors optional 
emacs21-common-non-dfsg_21.4a+1-1.1_all.deb

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

iEYEARECAAYFAkh/xvYACgkQQbn06FtxPfDBJwCffVjGs8P31TdHEtqNmYJ9xMnH
lcQAnjVagfHP/zY8f4I3catmwVtIIsK5
=sR3X
-END PGP SIGNATURE-


Accepted:
emacs21-common-non-dfsg_21.4a+1-1.1_all.deb
  to 
pool/non-free/e/emacs21-non-dfsg/emacs21-common-non-dfsg_21.4a+1-1.1_all.deb
emacs21-non-dfsg_21.4a+1-1.1.diff.gz
  to pool/non-free/e/emacs21-non-dfsg/emacs21-non-dfsg_21.4a+1-1.1.diff.gz
emacs21-non-dfsg_21.4a+1-1.1.dsc
  to pool/non-free/e/emacs21-non-dfsg/emacs21-non-dfsg_21.4a+1-1.1.dsc


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



Accepted lua-posix 5.1.4-1 (source amd64)

2008-07-19 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 11:12:52 +0200
Source: lua-posix
Binary: liblua5.1-posix1 liblua5.1-posix-dev
Architecture: source amd64
Version: 5.1.4-1
Distribution: unstable
Urgency: low
Maintainer: Enrico Tassi [EMAIL PROTECTED]
Changed-By: Enrico Tassi [EMAIL PROTECTED]
Description: 
 liblua5.1-posix-dev - posix development files for the lua language version 5.1
 liblua5.1-posix1 - posix library for the lua language version 5.1
Changes: 
 lua-posix (5.1.4-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 d4feee21eae8950f6639745c1df36cb77047ed31 1236 lua-posix_5.1.4-1.dsc
 43446a9cb912473e82d3b5162383dd7a1078e9c5 13390 lua-posix_5.1.4.orig.tar.gz
 31aa09c66994d65622ee55496c986fab322b4e9b 3328 lua-posix_5.1.4-1.diff.gz
 d88011010e6842d77831f1f6e1597a4289ab713d 19464 
liblua5.1-posix1_5.1.4-1_amd64.deb
 a9097c41da90b40f1366f14d4669ca436ff15960 19482 
liblua5.1-posix-dev_5.1.4-1_amd64.deb
Checksums-Sha256: 
 b0da5fd0faeb8c537e5d05d178fefc81e3c96cdecc152ca1c4f5ebea2858abd4 1236 
lua-posix_5.1.4-1.dsc
 0f78fe9c88ac75959229a59dab0d8865b3f5c5730705a83e74c246f475228167 13390 
lua-posix_5.1.4.orig.tar.gz
 458bc6c5e6cd1d4795857be61449998c8b1dc634d3a1b7bd38c5b653a66a515c 3328 
lua-posix_5.1.4-1.diff.gz
 8a43fad63e626b0f20d2b3468f59d0806c9ebb11500dbe252415115beece003e 19464 
liblua5.1-posix1_5.1.4-1_amd64.deb
 e4a715875b2ad26d42136056569f52511f183b4acd1013e7164be4fd33db8420 19482 
liblua5.1-posix-dev_5.1.4-1_amd64.deb
Files: 
 471b2cb254f211e958987bad5e1fb994 1236 interpreters optional 
lua-posix_5.1.4-1.dsc
 073019b1a52bfddb94e2521553b47ef5 13390 interpreters optional 
lua-posix_5.1.4.orig.tar.gz
 1add3c4d0fe8d1acd84e3061ce1a45dd 3328 interpreters optional 
lua-posix_5.1.4-1.diff.gz
 76d6cdf421069f713a16a421fdc6fe7f 19464 interpreters optional 
liblua5.1-posix1_5.1.4-1_amd64.deb
 e89632c00a0a2178b910cd72b3220ed2 19482 libdevel optional 
liblua5.1-posix-dev_5.1.4-1_amd64.deb

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

iEYEARECAAYFAkiBtTUACgkQ7kkcPgEj8vImugCgrwK6KHg4GresVSc92W222AqP
7k8An0s6iQN1lj6/L8mqkuiHZXEz6Hi0
=BQJ8
-END PGP SIGNATURE-


Accepted:
liblua5.1-posix-dev_5.1.4-1_amd64.deb
  to pool/main/l/lua-posix/liblua5.1-posix-dev_5.1.4-1_amd64.deb
liblua5.1-posix1_5.1.4-1_amd64.deb
  to pool/main/l/lua-posix/liblua5.1-posix1_5.1.4-1_amd64.deb
lua-posix_5.1.4-1.diff.gz
  to pool/main/l/lua-posix/lua-posix_5.1.4-1.diff.gz
lua-posix_5.1.4-1.dsc
  to pool/main/l/lua-posix/lua-posix_5.1.4-1.dsc
lua-posix_5.1.4.orig.tar.gz
  to pool/main/l/lua-posix/lua-posix_5.1.4.orig.tar.gz


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



Accepted emacs22-non-dfsg 22.2+2-1.1 (source all)

2008-07-19 Thread Frank Lichtenheld
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 18 Jul 2008 00:15:19 +0200
Source: emacs22-non-dfsg
Binary: emacs22-common-non-dfsg
Architecture: source all
Version: 22.2+2-1.1
Distribution: unstable
Urgency: high
Maintainer: Rob Browning [EMAIL PROTECTED]
Changed-By: Frank Lichtenheld [EMAIL PROTECTED]
Description: 
 emacs22-common-non-dfsg - GNU Emacs shared, architecture independent, non-DFSG 
items
Closes: 490256
Changes: 
 emacs22-non-dfsg (22.2+2-1.1) unstable; urgency=high
 .
   * Non-maintainer upload.
   * Refer to /usr/share/common-licenses/GFDL for the full text
 of the GFDL. Refering to an info page in the package might
 meet the spirit of policy, but not the letter.
 (Closes: #490256)
Checksums-Sha1: 
 cfeb032aff0dae4528d72a6fa908ae06e3aae2e0 1138 emacs22-non-dfsg_22.2+2-1.1.dsc
 e1181097995310db97b6ee0eadd45b776dd00715 9058 
emacs22-non-dfsg_22.2+2-1.1.diff.gz
 2eee25cca5763e06fc4ed69b46adbce9901b4129 3645462 
emacs22-common-non-dfsg_22.2+2-1.1_all.deb
Checksums-Sha256: 
 a69fac355ce806a3e69e88d4ee864f36b6875fde0d094144dfff5730bcb33569 1138 
emacs22-non-dfsg_22.2+2-1.1.dsc
 4b669c56f7f8ed2545b28b47b3ff49912b5a5e084c6d85e07a0377f93cb7af01 9058 
emacs22-non-dfsg_22.2+2-1.1.diff.gz
 9645620daf9603aff5cfa14bbd6fef97db16376d647b8f8a07d878f1b2134166 3645462 
emacs22-common-non-dfsg_22.2+2-1.1_all.deb
Files: 
 87da59cfe7e28b8ae7352b498e51ee39 1138 non-free/editors optional 
emacs22-non-dfsg_22.2+2-1.1.dsc
 e2d24bbac126fd276b02edcd94627dd9 9058 non-free/editors optional 
emacs22-non-dfsg_22.2+2-1.1.diff.gz
 198b35d307dab5c42b2deebc9ea99b86 3645462 non-free/editors optional 
emacs22-common-non-dfsg_22.2+2-1.1_all.deb

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

iEYEARECAAYFAkh/xwUACgkQQbn06FtxPfCYywCeIAgO42x2nDOnF5smkwnC+Btj
xq8AnjKvaOmyeu/hxISA9TDY8Vujs1KT
=3Yxa
-END PGP SIGNATURE-


Accepted:
emacs22-common-non-dfsg_22.2+2-1.1_all.deb
  to pool/non-free/e/emacs22-non-dfsg/emacs22-common-non-dfsg_22.2+2-1.1_all.deb
emacs22-non-dfsg_22.2+2-1.1.diff.gz
  to pool/non-free/e/emacs22-non-dfsg/emacs22-non-dfsg_22.2+2-1.1.diff.gz
emacs22-non-dfsg_22.2+2-1.1.dsc
  to pool/non-free/e/emacs22-non-dfsg/emacs22-non-dfsg_22.2+2-1.1.dsc


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



Accepted libsql-abstract-perl 1.24-1 (source all)

2008-07-19 Thread Bart Martens
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 10:58:34 +0200
Source: libsql-abstract-perl
Binary: libsql-abstract-perl
Architecture: source all
Version: 1.24-1
Distribution: unstable
Urgency: low
Maintainer: Bart Martens [EMAIL PROTECTED]
Changed-By: Bart Martens [EMAIL PROTECTED]
Description: 
 libsql-abstract-perl - Generate SQL from Perl data structures
Closes: 490625
Changes: 
 libsql-abstract-perl (1.24-1) unstable; urgency=low
 .
   * New upstream release.  Closes: #490625.
   * debian/watch: Updated to search via www.cpan.org/modules/by-module.
   * debian/patches/01_label_undef.diff: Edited to fit new upstream release.
Checksums-Sha1: 
 1d8557c929a472d14ee7968f8b4436f001342983 1134 libsql-abstract-perl_1.24-1.dsc
 0c0eb25591c6889439b53140af554b0c24f3814e 27841 
libsql-abstract-perl_1.24.orig.tar.gz
 07d3a6a8f296bfbdea1281a115bee1a36ce9a8b7 2445 
libsql-abstract-perl_1.24-1.diff.gz
 fede5d0cca0dc19fa6297f317cdd20a33faa771c 36298 
libsql-abstract-perl_1.24-1_all.deb
Checksums-Sha256: 
 0d1ea54e9a67c18d2e29bb5cf84dd885b97ab9f5b461e957a9baf662e6f72355 1134 
libsql-abstract-perl_1.24-1.dsc
 6fdb1ca9570c2609fd1e974b90d56416cbef397b76e2ff3e98162a9614b3d76e 27841 
libsql-abstract-perl_1.24.orig.tar.gz
 65dea7af6c96cd575dd697615888acada09017eaef88fdb2ab64afaeb48d0e72 2445 
libsql-abstract-perl_1.24-1.diff.gz
 cdba1555870bd2ee64bc5c63f85ae6b8bbe6166e188bcd98ecb99c2d756535ee 36298 
libsql-abstract-perl_1.24-1_all.deb
Files: 
 0092e5fce6e04d75fd550a8ad7134ef6 1134 perl optional 
libsql-abstract-perl_1.24-1.dsc
 c750ba7f7b65db9d84aabdc8983811dd 27841 perl optional 
libsql-abstract-perl_1.24.orig.tar.gz
 41333522a6295196a1f8fdac7ffb15d1 2445 perl optional 
libsql-abstract-perl_1.24-1.diff.gz
 d74e1d0388facfed95ea376f30b149d2 36298 perl optional 
libsql-abstract-perl_1.24-1_all.deb

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

iEYEARECAAYFAkiBu74ACgkQbMaawmho9B8MjACgil8rInbC4thBNu1RkYX8cwm+
MGUAoLItJ8xC0LJYbEvWAi9/NhPylMf/
=g4oc
-END PGP SIGNATURE-


Accepted:
libsql-abstract-perl_1.24-1.diff.gz
  to pool/main/libs/libsql-abstract-perl/libsql-abstract-perl_1.24-1.diff.gz
libsql-abstract-perl_1.24-1.dsc
  to pool/main/libs/libsql-abstract-perl/libsql-abstract-perl_1.24-1.dsc
libsql-abstract-perl_1.24-1_all.deb
  to pool/main/libs/libsql-abstract-perl/libsql-abstract-perl_1.24-1_all.deb
libsql-abstract-perl_1.24.orig.tar.gz
  to pool/main/libs/libsql-abstract-perl/libsql-abstract-perl_1.24.orig.tar.gz


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



Accepted cpufrequtils 004-2 (source i386)

2008-07-19 Thread Mattia Dongili
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 15:10:07 +0900
Source: cpufrequtils
Binary: cpufrequtils libcpufreq0 libcpufreq-dev
Architecture: source i386
Version: 004-2
Distribution: unstable
Urgency: low
Maintainer: Mattia Dongili [EMAIL PROTECTED]
Changed-By: Mattia Dongili [EMAIL PROTECTED]
Description: 
 cpufrequtils - utilities to deal with the cpufreq Linux kernel feature
 libcpufreq-dev - development files to deal with the cpufreq Linux kernel 
feature
 libcpufreq0 - shared library to deal with the cpufreq Linux kernel feature
Closes: 491299
Changes: 
 cpufrequtils (004-2) unstable; urgency=low
 .
   * Load powernow-k8 for Phenom AMD CPUs (Closes: #491299)
Checksums-Sha1: 
 c5cab211816652450d0f844aeb8e91c5ad75ed17 1008 cpufrequtils_004-2.dsc
 dbde71207358f6381aa259341bd9998a23276a4f 10252 cpufrequtils_004-2.diff.gz
 28b33065894c66326acead9ab7a0ba70b3098bef 32322 cpufrequtils_004-2_i386.deb
 c143ede82ebcd2bf9bdca6194c2827934dac22d4 12372 libcpufreq0_004-2_i386.deb
 057773639696daeef48d884b2dd2f51529830859 12170 libcpufreq-dev_004-2_i386.deb
Checksums-Sha256: 
 716b5487620a44f8f24f2f8c3e1954b0285159055ca36b20d43cf01a86c98cb8 1008 
cpufrequtils_004-2.dsc
 0f6aeea4a522815fe11c5ae6fe0ec5a8c94ef36e3d8cc9433c2adf0660fc1424 10252 
cpufrequtils_004-2.diff.gz
 8a7142872f66835d7d40d6e604acf936c9676bf04605059340c7b9ef2c98bfd6 32322 
cpufrequtils_004-2_i386.deb
 5e905fe1153d0255c2509f70f25746af1210d3f206c849c55c26216e73c09298 12372 
libcpufreq0_004-2_i386.deb
 4d00c3ee779f84c99f11219da1757a6208086a9ffa43830caf491625aa734138 12170 
libcpufreq-dev_004-2_i386.deb
Files: 
 6c933e69bdc44c94dd9ae11f3150d804 1008 admin optional cpufrequtils_004-2.dsc
 4ffbb81c120318780548e024136dae64 10252 admin optional 
cpufrequtils_004-2.diff.gz
 e3603ed8add8da7a548949624d286f2e 32322 admin optional 
cpufrequtils_004-2_i386.deb
 7b745b173135fee16ea30f591f774171 12372 libs optional libcpufreq0_004-2_i386.deb
 05312dd8858137b5c3aaafb52a7b38df 12170 libdevel optional 
libcpufreq-dev_004-2_i386.deb

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

iEYEARECAAYFAkiBpMYACgkQgpRPaOotLEHjYQCeKEEVU20ckbEKN/eMShinVYjL
9OIAnjuQvKP4sqhi1uuAexpcmETFem+w
=TdUT
-END PGP SIGNATURE-


Accepted:
cpufrequtils_004-2.diff.gz
  to pool/main/c/cpufrequtils/cpufrequtils_004-2.diff.gz
cpufrequtils_004-2.dsc
  to pool/main/c/cpufrequtils/cpufrequtils_004-2.dsc
cpufrequtils_004-2_i386.deb
  to pool/main/c/cpufrequtils/cpufrequtils_004-2_i386.deb
libcpufreq-dev_004-2_i386.deb
  to pool/main/c/cpufrequtils/libcpufreq-dev_004-2_i386.deb
libcpufreq0_004-2_i386.deb
  to pool/main/c/cpufrequtils/libcpufreq0_004-2_i386.deb


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



Accepted webcheck 1.10.3 (source all)

2008-07-19 Thread Arthur de Jong
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 13:30:00 +0200
Source: webcheck
Binary: webcheck
Architecture: source all
Version: 1.10.3
Distribution: unstable
Urgency: low
Maintainer: Arthur de Jong [EMAIL PROTECTED]
Changed-By: Arthur de Jong [EMAIL PROTECTED]
Description: 
 webcheck   - website link and structure checker
Changes: 
 webcheck (1.10.3) unstable; urgency=low
 .
   * take a shot at making debian/copyright machine parseable
   * support iframe and some common usages of object
   * fix bug in command-line parsing of short -r option
   * implement the --userpass option to pass username and password information
 to specific sites based on a patch by Chris Shenton
   * handle errors while parsing more gracefully (addresses: #483579)
   * add parsing of script tag and background attributes, based on a patch by
 Robert M. Jansen
   * fix in parsing style tags and support style attributes
   * call tidy (if available) on HTML content, based on a patch by Henning
 Sielaff
   * fix problem with port numbers in host headers
   * upgrade to standards-version 3.8.0 (no changes needed)
Checksums-Sha1: 
 cfe085566cac52cdbcc4d32e1538cd7d01f96bf9 968 webcheck_1.10.3.dsc
 069af1cab02ad979701e4839cde4e52feca4e0b0 85803 webcheck_1.10.3.tar.gz
 159913cbe91a383760ee8d20fa5f2fa4b73a60b6 65188 webcheck_1.10.3_all.deb
Checksums-Sha256: 
 3368d97290ff34cf2ca29039dd69edf11bd400309c69e987f0c176e53f2c70bc 968 
webcheck_1.10.3.dsc
 85e2d56eb8da8bc946dd00278f80893f74b64416c2d292bf13016f29574f068c 85803 
webcheck_1.10.3.tar.gz
 04f85266d323ad8ee29bc580a8a90a02ac1289de96ab736cabf086630fba5bf3 65188 
webcheck_1.10.3_all.deb
Files: 
 4c5a5d6ae4891a97461b3c8dd67a8c0a 968 web extra webcheck_1.10.3.dsc
 efb86b009099b71827d9131e13c0db81 85803 web extra webcheck_1.10.3.tar.gz
 a93294b024cfdebf82e798e1d800b2db 65188 web extra webcheck_1.10.3_all.deb

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

iEYEARECAAYFAkiB1H4ACgkQVYan35+NCKd9+wCfcfUMbL7YlJp/62ybtQUESoEm
BIcAn3o60LOV9UA5e86WnD9M2UMEO2U0
=zyQj
-END PGP SIGNATURE-


Accepted:
webcheck_1.10.3.dsc
  to pool/main/w/webcheck/webcheck_1.10.3.dsc
webcheck_1.10.3.tar.gz
  to pool/main/w/webcheck/webcheck_1.10.3.tar.gz
webcheck_1.10.3_all.deb
  to pool/main/w/webcheck/webcheck_1.10.3_all.deb


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



Accepted stroq 0.2-7 (source amd64)

2008-07-19 Thread Arnaud Cornet
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 13:28:21 +0200
Source: stroq
Binary: stroq
Architecture: source amd64
Version: 0.2-7
Distribution: unstable
Urgency: low
Maintainer: Arnaud Cornet [EMAIL PROTECTED]
Changed-By: Arnaud Cornet [EMAIL PROTECTED]
Description: 
 stroq  - A Polarium/Chokkan Hitofude clone
Closes: 483330
Changes: 
 stroq (0.2-7) unstable; urgency=low
 .
   * Use pwd to guess built binary name, this seems to be what qmake does.
 (Closes: #483330).
Checksums-Sha1: 
 8e0adc07cbf8d992ba405415851539696730d58f 979 stroq_0.2-7.dsc
 a9b49ec12d5bf0c82bbb07cd900ad14c9e31c1b7 5616 stroq_0.2-7.diff.gz
 e19793cc6287cc297f33308f00cec608968b7461 165468 stroq_0.2-7_amd64.deb
Checksums-Sha256: 
 73f993a27f0736cbc316d757c0128cba5b4efe430d38e9a15bce395e8e3c8703 979 
stroq_0.2-7.dsc
 e9d40685e9c6330b018e3a5eda7bda357de64878525979f9812eaa7d087120f5 5616 
stroq_0.2-7.diff.gz
 b58b90379594ed25369f7fc77446b5e3bec4db7d7af87a8199bfd2f8d1a0524e 165468 
stroq_0.2-7_amd64.deb
Files: 
 d3d17116ee36ee77e7f61cb02186236d 979 games optional stroq_0.2-7.dsc
 30b36bba89e475fa514c21534a4a776c 5616 games optional stroq_0.2-7.diff.gz
 0a71c292c160c58078bdccd0c50753c8 165468 games optional stroq_0.2-7_amd64.deb

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

iEYEARECAAYFAkiB0XgACgkQsk+dgCIlhI6cBQCfZJNkI/N2Yt1NymK/OTTUy1Rk
b4UAnRZiBYDrYpaSxtmiJuj9ROwa2UDA
=yQH0
-END PGP SIGNATURE-


Accepted:
stroq_0.2-7.diff.gz
  to pool/main/s/stroq/stroq_0.2-7.diff.gz
stroq_0.2-7.dsc
  to pool/main/s/stroq/stroq_0.2-7.dsc
stroq_0.2-7_amd64.deb
  to pool/main/s/stroq/stroq_0.2-7_amd64.deb


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



Accepted linux-modules-nonfree-2.6 2.6.25-2 (source i386)

2008-07-19 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Jul 2008 23:19:00 +0200
Source: linux-modules-nonfree-2.6
Binary: fglrx-modules-2.6.25-2-486 fglrx-modules-2.6-486 
fglrx-modules-2.6.25-2-686 fglrx-modules-2.6-686 
fglrx-modules-2.6.25-2-686-bigmem fglrx-modules-2.6-686-bigmem 
fglrx-modules-2.6.25-2-vserver-686 fglrx-modules-2.6-vserver-686 
fglrx-modules-2.6.25-2-xen-686 fglrx-modules-2.6-xen-686
Architecture: source i386
Version: 2.6.25-2
Distribution: unstable
Urgency: high
Maintainer: Debian Kernel Team [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 fglrx-modules-2.6-486 - Display driver for AMD/ATI Radeon and FireGL graphics 
cards modul
 fglrx-modules-2.6-686 - Display driver for AMD/ATI Radeon and FireGL graphics 
cards modul
 fglrx-modules-2.6-686-bigmem - Display driver for AMD/ATI Radeon and FireGL 
graphics cards modul
 fglrx-modules-2.6-vserver-686 - Display driver for AMD/ATI Radeon and FireGL 
graphics cards modul
 fglrx-modules-2.6-xen-686 - Display driver for AMD/ATI Radeon and FireGL 
graphics cards modul
 fglrx-modules-2.6.25-2-486 - Display driver for AMD/ATI Radeon and FireGL 
graphics cards modul
 fglrx-modules-2.6.25-2-686 - Display driver for AMD/ATI Radeon and FireGL 
graphics cards modul
 fglrx-modules-2.6.25-2-686-bigmem - Display driver for AMD/ATI Radeon and 
FireGL graphics cards modul
 fglrx-modules-2.6.25-2-vserver-686 - Display driver for AMD/ATI Radeon and 
FireGL graphics cards modul
 fglrx-modules-2.6.25-2-xen-686 - Display driver for AMD/ATI Radeon and FireGL 
graphics cards modul
Closes: 490906
Changes: 
 linux-modules-nonfree-2.6 (2.6.25-2) unstable; urgency=high
 .
   * Upgrading to policy 3.8.0.
   * Manually triggering rebuild in order to get build against
 current fglrx from the archive (Closes: #490906).
Checksums-Sha1: 
 2444daa8ccdc61b7fd40f9ecf600b529e733d260 1883 
linux-modules-nonfree-2.6_2.6.25-2.dsc
 89994d459092d1c3f9ca8a4597405bc526ed3e3c 19505 
linux-modules-nonfree-2.6_2.6.25-2.tar.gz
 bfc2c8229c31ebabcbae4e0a397c91a0e2e23b4e 637810 
fglrx-modules-2.6.25-2-486_2.6.25+8-6-2_i386.deb
 6366d8aa0f2f118419e6638186a960fbb408cb8e 7618 
fglrx-modules-2.6-486_2.6.25-2_i386.deb
 6ac266e75d0e4b62bce5510c1953280430407c4c 638928 
fglrx-modules-2.6.25-2-686_2.6.25+8-6-2_i386.deb
 5659a1708a60f4e0a8c9ba0999de305ded01f891 7638 
fglrx-modules-2.6-686_2.6.25-2_i386.deb
 a7d0c79afe9e504c877f7c9f75ea1458449df15b 639736 
fglrx-modules-2.6.25-2-686-bigmem_2.6.25+8-6-2_i386.deb
 06f35406313fa0776c43f676ac5d5e186227c4c6 7662 
fglrx-modules-2.6-686-bigmem_2.6.25-2_i386.deb
 e8209250af475dd4466eab9a4d28ec6d15b34d4b 638940 
fglrx-modules-2.6.25-2-vserver-686_2.6.25+8-6-2_i386.deb
 15720dd70a7260c4fd805b1bc96f588c506cd8a0 7650 
fglrx-modules-2.6-vserver-686_2.6.25-2_i386.deb
 99eb5e04efe90adb6cafe6ca0fd6dfb13395f8b3 636904 
fglrx-modules-2.6.25-2-xen-686_2.6.25+8-6-2_i386.deb
 a5369e3e6b35e6cc46f4b3bef52ba338dc8f11b9 7616 
fglrx-modules-2.6-xen-686_2.6.25-2_i386.deb
Checksums-Sha256: 
 a11c46793fc57a1e522e2f9c027a4b016285b2d3e1d0079367b3ef9c9975b414 1883 
linux-modules-nonfree-2.6_2.6.25-2.dsc
 1317079825a63f7c5f6c65b29bc3eeac746a1250639b6a27f62073d6b7718fcb 19505 
linux-modules-nonfree-2.6_2.6.25-2.tar.gz
 7130bbc98e23f3bf085dab86065c5266b1e86dd67a8e3570b12706c9f5a19ba9 637810 
fglrx-modules-2.6.25-2-486_2.6.25+8-6-2_i386.deb
 271022dd4cf6fe6f3b907402f7938376e95eaa0799589f652a0075c6549ea191 7618 
fglrx-modules-2.6-486_2.6.25-2_i386.deb
 90ae4417ea4244a1b4b6a409c1e587e2ebae79698e042c4744e05bb9adb5a6ff 638928 
fglrx-modules-2.6.25-2-686_2.6.25+8-6-2_i386.deb
 170cdfea1e177d1031d695a5daebdad09eca271cfead649a18cd7b0732b317a3 7638 
fglrx-modules-2.6-686_2.6.25-2_i386.deb
 54fc7335f5b9f12a95c1a8b7ae3fbfc4508c414f9619d5b58508b3104bd1891c 639736 
fglrx-modules-2.6.25-2-686-bigmem_2.6.25+8-6-2_i386.deb
 007ea121cafa512e6ea6a3f9e0eb58e514a685f5c84dae4efbf3e95f449e2d11 7662 
fglrx-modules-2.6-686-bigmem_2.6.25-2_i386.deb
 415a54703cb6ec0831873895f0a28dd20f7fbbd175953c5ba6575699e88be065 638940 
fglrx-modules-2.6.25-2-vserver-686_2.6.25+8-6-2_i386.deb
 e09d634d05a410c32db7f57164fc9fd5ef8c083d2c7e1a353e40f4686ac56db4 7650 
fglrx-modules-2.6-vserver-686_2.6.25-2_i386.deb
 1bdec88626d66a8b7e0d22c925646cbc8f45fd0c92dff4f34c6ff26a4efaade8 636904 
fglrx-modules-2.6.25-2-xen-686_2.6.25+8-6-2_i386.deb
 20afa8c2b09b75f8c837099aca839c8d4af84c29adbee2daa3782b77866d9161 7616 
fglrx-modules-2.6-xen-686_2.6.25-2_i386.deb
Files: 
 803a3a8576a8e25104b2993ba3d40c0f 1883 non-free/devel optional 
linux-modules-nonfree-2.6_2.6.25-2.dsc
 1bfb90758c45b0779cd788d7f88af437 19505 non-free/devel optional 
linux-modules-nonfree-2.6_2.6.25-2.tar.gz
 a21fa3bcc7dc264a4c7475a906823e77 637810 non-free/admin optional 
fglrx-modules-2.6.25-2-486_2.6.25+8-6-2_i386.deb
 15de629c5141547b21c3ea423fdf350e 7618 non-free/admin optional 
fglrx-modules-2.6-486_2.6.25-2_i386.deb
 2b84178d87b2ae1ab70d187a9406d215 638928 non-free/admin optional 

Accepted libsub-name-perl 0.04-1 (source i386)

2008-07-19 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 11:09:58 +0200
Source: libsub-name-perl
Binary: libsub-name-perl
Architecture: source i386
Version: 0.04-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Ansgar Burchardt [EMAIL PROTECTED]
Description: 
 libsub-name-perl - Assigns a new name to referenced sub
Changes: 
 libsub-name-perl (0.04-1) unstable; urgency=low
 .
   [ Ansgar Burchardt ]
   * New upstream release
 + debian/copyright: Update copyright years
   * Regenerate rules for debhelper 7
 + update debian/control and debian/compat accordingly
   * Add myself to Uploaders
   * Bump Standards Version to 3.8.0 (no changes required)
 .
   [ gregor herrmann ]
   * Don't install README any more (text version of the POD documentation).
Checksums-Sha1: 
 d903545fd9e6e4e2bc3e6867e269155e875ab782 1328 libsub-name-perl_0.04-1.dsc
 d07eb33132b8032888139d29f560681d2632bf23 3010 libsub-name-perl_0.04.orig.tar.gz
 6e0bd074ee7fee23db1a011733c61b89d5fde6b2 1805 libsub-name-perl_0.04-1.diff.gz
 2f77e6376bdeb9a6c108bff190a72c90e0fbf20d 10208 libsub-name-perl_0.04-1_i386.deb
Checksums-Sha256: 
 d29d16da28f292f941be780c4373ce61d8a5ee5ae50fbcce854d36ca0df20cb5 1328 
libsub-name-perl_0.04-1.dsc
 0b2e43a2bf24c3c57ff9f1945ef1c6ce0b8ecdfa74dcab7cac374ff114b091da 3010 
libsub-name-perl_0.04.orig.tar.gz
 9ec1c02bbb6c621a7fa626149abcc726a838db05b52c45cdb93d3858c9714c72 1805 
libsub-name-perl_0.04-1.diff.gz
 e2d1330f1fd84519565d0d297d3a79bfe93683a50d00d5a662e977b607c7bc5d 10208 
libsub-name-perl_0.04-1_i386.deb
Files: 
 59db3cc30f56ec8a31da614d7d612379 1328 perl optional libsub-name-perl_0.04-1.dsc
 bde2bacba0c701f249135ada3c6cf699 3010 perl optional 
libsub-name-perl_0.04.orig.tar.gz
 f0f8add7e1dd25a28e1406d0c636920d 1805 perl optional 
libsub-name-perl_0.04-1.diff.gz
 672413296a18ab7fc47d9a00f5f42633 10208 perl optional 
libsub-name-perl_0.04-1_i386.deb

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

iEYEARECAAYFAkiB2zgACgkQOzKYnQDzz+RdNwCdGrtqKjc/6uydCBNJAhzgvQ1+
aJ0An17vlLO/pSY6oUDzRbuyKBWWQxwX
=3QXB
-END PGP SIGNATURE-


Accepted:
libsub-name-perl_0.04-1.diff.gz
  to pool/main/libs/libsub-name-perl/libsub-name-perl_0.04-1.diff.gz
libsub-name-perl_0.04-1.dsc
  to pool/main/libs/libsub-name-perl/libsub-name-perl_0.04-1.dsc
libsub-name-perl_0.04-1_i386.deb
  to pool/main/libs/libsub-name-perl/libsub-name-perl_0.04-1_i386.deb
libsub-name-perl_0.04.orig.tar.gz
  to pool/main/libs/libsub-name-perl/libsub-name-perl_0.04.orig.tar.gz


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



Accepted solfege 3.11.3-1 (source all i386)

2008-07-19 Thread Tom Cato Amundsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 14 Jul 2008 07:46:47 +0200
Source: solfege
Binary: solfege solfege-oss
Architecture: source all i386
Version: 3.11.3-1
Distribution: unstable
Urgency: low
Maintainer: Tom Cato Amundsen [EMAIL PROTECTED]
Changed-By: Tom Cato Amundsen [EMAIL PROTECTED]
Description: 
 solfege- Ear training software
 solfege-oss - OSS sound module for GNU Solfege
Changes: 
 solfege (3.11.3-1) unstable; urgency=low
 .
   * New upstream release
   * Adjusted pygtk version requirement.
   * Modified debian/rules to use the dh script
   * Build-depend on libxml2-utils since the tests use xmllint
   * Build-depend on gnome-doc-utils
Checksums-Sha1: 
 51009a4e44206f88b10957aa3b5059d2c6c0f412 1298 solfege_3.11.3-1.dsc
 a44e839bf106a3062518bb7b8f2a839b7bbc79c6 3350613 solfege_3.11.3.orig.tar.gz
 39101c5faaabaeda9c0584d27988923352c3afe0 7569 solfege_3.11.3-1.diff.gz
 c3f1d389fd63f5dff87d6bc5c754d37e714749a4 2774014 solfege_3.11.3-1_all.deb
 1609e67ecee93dd74a201f47b30c032aee6bb275 73418 solfege-oss_3.11.3-1_i386.deb
Checksums-Sha256: 
 97967efc3f6b2c45e6f4fc05f6ac44f67a4c36edc0d671569e5c993443fd083f 1298 
solfege_3.11.3-1.dsc
 340f26552a4626ee9bdb271af6273eab1c353cec5edd5977d75288d87c97a0ef 3350613 
solfege_3.11.3.orig.tar.gz
 d571510e9f4507211f665a82bef6b910cd0bdb3249c81b4e2084bc9d163797e9 7569 
solfege_3.11.3-1.diff.gz
 776c0428ea31572f4764ccc436d2ae94fbeccc2a064c4fde312de2f22940d610 2774014 
solfege_3.11.3-1_all.deb
 c9527dc9202e912d21ef5b8cef61cbb908396cb1b7fff88244c358a15452bef4 73418 
solfege-oss_3.11.3-1_i386.deb
Files: 
 9f4e54a2eef7768ea6ff0f1416ea4a07 1298 gnome optional solfege_3.11.3-1.dsc
 619c19a0bf4bfdc8adcdeaa977833583 3350613 gnome optional 
solfege_3.11.3.orig.tar.gz
 2355c2a76963abea01c2d8a795aedabc 7569 gnome optional solfege_3.11.3-1.diff.gz
 421689b559d9321cd6de8a3f9c018eed 2774014 gnome optional 
solfege_3.11.3-1_all.deb
 7d660cb6d74c61780115d7f0225db559 73418 gnome optional 
solfege-oss_3.11.3-1_i386.deb

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

iD8DBQFIe04DgUP37qXkPqMRAugRAJwJvMEkRWOmog6yuVAEKSmv47ZeyQCdFa9V
poXuZ6FRriWgBfOEKp57cyw=
=0oTx
-END PGP SIGNATURE-


Accepted:
solfege-oss_3.11.3-1_i386.deb
  to pool/main/s/solfege/solfege-oss_3.11.3-1_i386.deb
solfege_3.11.3-1.diff.gz
  to pool/main/s/solfege/solfege_3.11.3-1.diff.gz
solfege_3.11.3-1.dsc
  to pool/main/s/solfege/solfege_3.11.3-1.dsc
solfege_3.11.3-1_all.deb
  to pool/main/s/solfege/solfege_3.11.3-1_all.deb
solfege_3.11.3.orig.tar.gz
  to pool/main/s/solfege/solfege_3.11.3.orig.tar.gz


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



Accepted psycopg 1.1.21-17 (source all amd64)

2008-07-19 Thread Fabio Tranchitella
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 14 Jul 2008 09:55:56 +0200
Source: psycopg
Binary: python-psycopg python-psycopg-dbg zope-psycopgda python-psycopgda
Architecture: source all amd64
Version: 1.1.21-17
Distribution: unstable
Urgency: low
Maintainer: Fabio Tranchitella [EMAIL PROTECTED]
Changed-By: Fabio Tranchitella [EMAIL PROTECTED]
Description: 
 python-psycopg - Python module for PostgreSQL
 python-psycopg-dbg - Python module for PostgreSQL (debug extension)
 python-psycopgda - Zope database adapter based on python-psycopg -- zope3 
version
 zope-psycopgda - Zope database adapter based on python-psycopg
Closes: 490485
Changes: 
 psycopg (1.1.21-17) unstable; urgency=low
 .
   [ Piotr Ożarowski ]
   * XS-Vcs-Svn field renamed to Vcs-Svn
   * Vcs-Browser field added
 .
   [ Sandro Tosi ]
   * debian/control
 - uniforming Vcs-Browser field
 .
   [ Carlos Galisteo ]
   * debian/control
 - Added Homepage field.
 .
   [ Fabio Tranchitella ]
   * Rebuilt to move files to /usr/share/pyshared. (Closes: #490485)
Checksums-Sha1: 
 ee04abd091126e2d21f5e04c93b70251aae01516 1426 psycopg_1.1.21-17.dsc
 0828b164c55c848957fa74617371cfbc01d82db2 17586 psycopg_1.1.21-17.diff.gz
 1ab8d43332e6b227ada14e7a32c88c45582176ec 20726 zope-psycopgda_1.1.21-17_all.deb
 65d414d7ff18102628d0c1dbbb4dec23604d0d1d 19664 
python-psycopgda_1.1.21-17_all.deb
 aa339a8f8a24cf2d4303385f2a4ad7523709c320 173150 
python-psycopg_1.1.21-17_amd64.deb
 cfd9396f0be6f25ad7741bd6edeea03eb1b355d5 96480 
python-psycopg-dbg_1.1.21-17_amd64.deb
Checksums-Sha256: 
 884dd1342bb4ffd6421ac7a51f7be740d22910bf5e2571ce89474fb429adadf7 1426 
psycopg_1.1.21-17.dsc
 b869888a359e12bd62a8e9a0c8aeee95fd044de564c2cdfba201ef2f25bb17a6 17586 
psycopg_1.1.21-17.diff.gz
 a503a72805f4350ab80bb4b802590fe6ca1c9487449d13c51ccb728bf10f3dd1 20726 
zope-psycopgda_1.1.21-17_all.deb
 8781b9f59e3d38e8d1311c1e9cd3e84455841485c5f6745c7a68e148d476ffe0 19664 
python-psycopgda_1.1.21-17_all.deb
 c5be577e9f329eefb0037358891bc5b5b3fd54778e5e950eae200a921c7b3e57 173150 
python-psycopg_1.1.21-17_amd64.deb
 79132239143bca5c66358fc60b0d363f1ec63bab90d1bf1638c248a53f4b50b4 96480 
python-psycopg-dbg_1.1.21-17_amd64.deb
Files: 
 417aad24cb8f3ee6d2fd8fe299d8f560 1426 python optional psycopg_1.1.21-17.dsc
 3f149feeca836c6bd5a247b047c85e50 17586 python optional 
psycopg_1.1.21-17.diff.gz
 d97c2c36e0d2ecf3723d3284ed9fc828 20726 python optional 
zope-psycopgda_1.1.21-17_all.deb
 688d4cf64a926fb6282fecbdbfa40260 19664 python optional 
python-psycopgda_1.1.21-17_all.deb
 7a1335e56ca1477c576ba87f30cce156 173150 python optional 
python-psycopg_1.1.21-17_amd64.deb
 8b8db5cae940861f7c95d43accced4b0 96480 python extra 
python-psycopg-dbg_1.1.21-17_amd64.deb

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

iEYEARECAAYFAkh7DPkACgkQK/juK3+WFWSFBQCdEBJPDVYKfiNGOQ/V9FqX25Aj
4tYAnj+EJb9DcuiD+WfNm1nxM63fT3ne
=sMNC
-END PGP SIGNATURE-


Accepted:
psycopg_1.1.21-17.diff.gz
  to pool/main/p/psycopg/psycopg_1.1.21-17.diff.gz
psycopg_1.1.21-17.dsc
  to pool/main/p/psycopg/psycopg_1.1.21-17.dsc
python-psycopg-dbg_1.1.21-17_amd64.deb
  to pool/main/p/psycopg/python-psycopg-dbg_1.1.21-17_amd64.deb
python-psycopg_1.1.21-17_amd64.deb
  to pool/main/p/psycopg/python-psycopg_1.1.21-17_amd64.deb
python-psycopgda_1.1.21-17_all.deb
  to pool/main/p/psycopg/python-psycopgda_1.1.21-17_all.deb
zope-psycopgda_1.1.21-17_all.deb
  to pool/main/p/psycopg/zope-psycopgda_1.1.21-17_all.deb


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



Accepted gts 0.7.6+darcs080704-1 (source all amd64)

2008-07-19 Thread Ruben Molina
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 04 Jul 2008 17:20:55 -0500
Source: gts
Binary: libgts-doc libgts-dev libgts-dbg libgts-0.7-5 libgts-bin
Architecture: source all amd64
Version: 0.7.6+darcs080704-1
Distribution: unstable
Urgency: low
Maintainer: Ruben Molina [EMAIL PROTECTED]
Changed-By: Ruben Molina [EMAIL PROTECTED]
Description: 
 libgts-0.7-5 - GNU Triangulated Surface Library
 libgts-bin - GNU Triangulated Surface Library -- support binaries
 libgts-dbg - GNU Triangulated Surface Library -- debug symbols
 libgts-dev - GNU Triangulated Surface Library -- development files
 libgts-doc - GNU Triangulated Surface Library -- documentation files
Closes: 395846 422900 465189 465190 471987
Changes: 
 gts (0.7.6+darcs080704-1) unstable; urgency=low
 .
   * Acknowledge previous NMU
   * New upstream version
   * New maintainer (Closes: #471987)
   * Standards-Version updated to 3.8.0
   * Solved override disparities for libgts-dev
   * Migrated to CDBS
   * Added a new binary package with debugging symbols
   * tools/srf2oogl.1: Removed (tool deprecated)
   * Added new man pages
   * Added watch file
   * Restored missing docs to libgts-doc (Closes: #395846)
   * Added Replaces for libgts-0.7-1 (Closes: #422900)
   * Split binaries into libgts-bin (Closes: #465190)
   * Removed unneeded dependencies (Closes: #465189)
Checksums-Sha1: 
 6418dbba9c1a433bc911f96ba3e7d2e3a6af6408 1126 gts_0.7.6+darcs080704-1.dsc
 698a3c271338bacc467f67171e0a08c7e856fbf7 861365 
gts_0.7.6+darcs080704.orig.tar.gz
 cbc85fedb7cb93a9ec3f6a5f8a2177c778b3b967 5925 gts_0.7.6+darcs080704-1.diff.gz
 ae5aed854a79a461d36464ece75b6216fd09a2e2 15850 
libgts-doc_0.7.6+darcs080704-1_all.deb
 f7cd0cb7487bd1114cc0d39674b79002848492c5 228330 
libgts-dev_0.7.6+darcs080704-1_amd64.deb
 0f6e84cb37dabe898367912260c3445b8b08efea 373628 
libgts-dbg_0.7.6+darcs080704-1_amd64.deb
 b32c913c51e2a2fb33edb3382bc16604ef513b9a 177166 
libgts-0.7-5_0.7.6+darcs080704-1_amd64.deb
 5fae976fea72c227446182967c75f93c98b5e84a 60046 
libgts-bin_0.7.6+darcs080704-1_amd64.deb
Checksums-Sha256: 
 3bedbe1677939fa604bf5c00ef6db398a09704b7a0071781ce2c18f4179c90ab 1126 
gts_0.7.6+darcs080704-1.dsc
 4f7026077209e2c9eb36d647502b527f3ef4787cf1d3f265513a5b1c4cc0272b 861365 
gts_0.7.6+darcs080704.orig.tar.gz
 0e177534855478377bfcb1bd64d66e5f952accced53ab0ccde22a7cf30001907 5925 
gts_0.7.6+darcs080704-1.diff.gz
 c76d431d02ff577be8efe00e20b19fa431aad78028998dabb3ff3585fcc075e1 15850 
libgts-doc_0.7.6+darcs080704-1_all.deb
 9a8470610b7a0544302f5f15bfd6da5b8abfc8ed1ac70f8d36f75fae4e99e184 228330 
libgts-dev_0.7.6+darcs080704-1_amd64.deb
 52c88581df6eb96225afeae8b4ecdef907d3b3879139252e3da1b20a781335ac 373628 
libgts-dbg_0.7.6+darcs080704-1_amd64.deb
 1e27c6ef36332df52106a3e46c73cb201992fca513cc0d534a9666f49a0ada3a 177166 
libgts-0.7-5_0.7.6+darcs080704-1_amd64.deb
 043adc975dadc8ded42119735ff57b3f18b8b8fb228c9284fae020ca3085c910 60046 
libgts-bin_0.7.6+darcs080704-1_amd64.deb
Files: 
 3365b8817410c951e6a839642da40e2e 1126 math optional gts_0.7.6+darcs080704-1.dsc
 72e96f75bd96a9be0bfdd4c1779c849d 861365 math optional 
gts_0.7.6+darcs080704.orig.tar.gz
 d09df370d9fda2130d4c4d586bed357e 5925 math optional 
gts_0.7.6+darcs080704-1.diff.gz
 13507abf117403756565b9f67fa2f599 15850 doc optional 
libgts-doc_0.7.6+darcs080704-1_all.deb
 44bfab1138fcfedd6c5ce607ccd239b1 228330 libdevel optional 
libgts-dev_0.7.6+darcs080704-1_amd64.deb
 379da2e55e99b09f22d00d6a6f2b812e 373628 libdevel extra 
libgts-dbg_0.7.6+darcs080704-1_amd64.deb
 87a34027980ad79e9c6f927bb2489aec 177166 libs optional 
libgts-0.7-5_0.7.6+darcs080704-1_amd64.deb
 de16547eff173f0b770cd4bac12c82f9 60046 math optional 
libgts-bin_0.7.6+darcs080704-1_amd64.deb

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

iEYEARECAAYFAkh7OuIACgkQKFvXofIqeU7cygCeJCQYt8BGzs4XsxkkMvBCrgw3
npkAoL2/T1Hkjo1su2JjcmAcfVP9nZAF
=zoAZ
-END PGP SIGNATURE-


Accepted:
gts_0.7.6+darcs080704-1.diff.gz
  to pool/main/g/gts/gts_0.7.6+darcs080704-1.diff.gz
gts_0.7.6+darcs080704-1.dsc
  to pool/main/g/gts/gts_0.7.6+darcs080704-1.dsc
gts_0.7.6+darcs080704.orig.tar.gz
  to pool/main/g/gts/gts_0.7.6+darcs080704.orig.tar.gz
libgts-0.7-5_0.7.6+darcs080704-1_amd64.deb
  to pool/main/g/gts/libgts-0.7-5_0.7.6+darcs080704-1_amd64.deb
libgts-bin_0.7.6+darcs080704-1_amd64.deb
  to pool/main/g/gts/libgts-bin_0.7.6+darcs080704-1_amd64.deb
libgts-dbg_0.7.6+darcs080704-1_amd64.deb
  to pool/main/g/gts/libgts-dbg_0.7.6+darcs080704-1_amd64.deb
libgts-dev_0.7.6+darcs080704-1_amd64.deb
  to pool/main/g/gts/libgts-dev_0.7.6+darcs080704-1_amd64.deb
libgts-doc_0.7.6+darcs080704-1_all.deb
  to pool/main/g/gts/libgts-doc_0.7.6+darcs080704-1_all.deb


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



Accepted libdatetime-format-natural-perl 0.71-1 (source all)

2008-07-19 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Jul 2008 14:52:48 +0200
Source: libdatetime-format-natural-perl
Binary: libdatetime-format-natural-perl
Architecture: source all
Version: 0.71-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Ansgar Burchardt [EMAIL PROTECTED]
Description: 
 libdatetime-format-natural-perl - parse human-readable date/time strings
Closes: 488382
Changes: 
 libdatetime-format-natural-perl (0.71-1) unstable; urgency=low
 .
   * Initial Release (Closes: #488382)
Checksums-Sha1: 
 16ccec4349a1f8de488fd3e1009edb0c9750899f 1613 
libdatetime-format-natural-perl_0.71-1.dsc
 c6119cd68153966edfb4e172fb0565dacb3fca79 24485 
libdatetime-format-natural-perl_0.71.orig.tar.gz
 b411c6419149ce3bde22d6fb236bf15d65cb8085 1913 
libdatetime-format-natural-perl_0.71-1.diff.gz
 0b70ab7ad11b463059d1959ba8d686d56a8f6dd3 33486 
libdatetime-format-natural-perl_0.71-1_all.deb
Checksums-Sha256: 
 399df0444f5f1ba896fe00c47bdd8f71dfac4894c5d6dd841195c102fbbcd634 1613 
libdatetime-format-natural-perl_0.71-1.dsc
 a292e495b7d3db64f024a9e47c3ca667c25b781e0e1c10ca019d37e7671afe75 24485 
libdatetime-format-natural-perl_0.71.orig.tar.gz
 d4fad8ad61b82e4f11fda2be6478a25129a948e40062bab88cc92f1cfcf1dcd9 1913 
libdatetime-format-natural-perl_0.71-1.diff.gz
 b149f40e9990914cbb518764c0c74b135e39fc36e9de85bc057ecc6a6815ca82 33486 
libdatetime-format-natural-perl_0.71-1_all.deb
Files: 
 3634e9c995f2de2f9423812c1cfcd3a0 1613 perl optional 
libdatetime-format-natural-perl_0.71-1.dsc
 f5d1c948c2eed6efe918716ca2feb8f4 24485 perl optional 
libdatetime-format-natural-perl_0.71.orig.tar.gz
 641ec2c8b42619616857a64516da2d42 1913 perl optional 
libdatetime-format-natural-perl_0.71-1.diff.gz
 4ae5fd946382105aebc99225e229a2a3 33486 perl optional 
libdatetime-format-natural-perl_0.71-1_all.deb

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

iEYEARECAAYFAkh6GhcACgkQOzKYnQDzz+SMDQCg86Hun2mQLj1kpHe8UF1nHq5C
aqIAnjms237cBFGJChNPZkEjdddNI/6N
=s2SI
-END PGP SIGNATURE-


Accepted:
libdatetime-format-natural-perl_0.71-1.diff.gz
  to 
pool/main/libd/libdatetime-format-natural-perl/libdatetime-format-natural-perl_0.71-1.diff.gz
libdatetime-format-natural-perl_0.71-1.dsc
  to 
pool/main/libd/libdatetime-format-natural-perl/libdatetime-format-natural-perl_0.71-1.dsc
libdatetime-format-natural-perl_0.71-1_all.deb
  to 
pool/main/libd/libdatetime-format-natural-perl/libdatetime-format-natural-perl_0.71-1_all.deb
libdatetime-format-natural-perl_0.71.orig.tar.gz
  to 
pool/main/libd/libdatetime-format-natural-perl/libdatetime-format-natural-perl_0.71.orig.tar.gz


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



Accepted di-netboot-assistant 0.35 (source all)

2008-07-19 Thread Franklin Piat
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Jul 2008 00:26:10 +0200
Source: di-netboot-assistant
Binary: di-netboot-assistant
Architecture: source all
Version: 0.35
Distribution: unstable
Urgency: low
Maintainer: Franklin Piat [EMAIL PROTECTED]
Changed-By: Franklin Piat [EMAIL PROTECTED]
Description: 
 di-netboot-assistant - Debian-Installer netboot assistant
Closes: 489812
Changes: 
 di-netboot-assistant (0.35) unstable; urgency=low
 .
   * Implement MD5SUMS checkum checking.
   * Change the way unreachable mirrors are handled.
   * Fix path in pxelinux.HEAD
 .
   * Upload sponsored by Petter Reinholdtsen.
 .
 di-netboot-assistant (0.34) unstable; urgency=low
 .
   * Add an option to choose the mirror (actually, rewrite canonical URL).
   * Add etch-gtk, lenny-gtk entries, etc..
   * Use the mirror ftp.de.debian.org by default (it has all archs !).
   * Fix location of images in di-sources.list (drop /debian prefix)
   * Re-add curl as alternate dependency to wget (was removed by mistake)
   * Add elilo as recommend dependency.
 .
 di-netboot-assistant (0.33) unstable; urgency=low
 .
   * Fix location of sparc images in di-sources.list
   * Multiple improvements in the documenations, manpage,
 examples (thanks to Joey Hess).
   * Don't load french keymap (thanks to Joey Hess).
   * Don't use french mirrors in di-sources.list by default.
   * Add some wishlist from Joey Hess to the TODO list.
 .
 di-netboot-assistant (0.32) unstable; urgency=low
 .
   * Policy version 3.8.0 (bumped in previous release): no changes required.
   * ITP (closes: #489812).
 .
 di-netboot-assistant (0.31) unstable; urgency=low
 .
   * Policy version 3.7.3: no changes required.
   * Add Homepage: header to source package.
   * Update manpage and README.Debian.
 .
 di-netboot-assistant (0.30) unstable; urgency=low
 .
   * No upgrade from pre 0.30 : purge, then install.
   * Support downloading/unpacking alpha, ia64, hppa and sparc.
   * Support IA64's elilo (update file path in elilo.conf).
   * Improve dhcpd.conf example file.
   * Add vim syntax file for di-sources.list (disources.vim).
   * Dependency changed to [wget|curl].
   * Invoking purge without repository lists currently installed.
   * Don't build empty pxelinux.menu file (for ia64...)
   * Renamed pxelinux.cfg files renamed pxelinux.cfg/default
   * Renamed configuration file pxelinux.cfg.HEAD as pxelinux.HEAD
 .
 di-netboot-assistant (0.21) unstable; urgency=low
 .
   * Add package description.
   * Remove dummy prerm.
   * Fix debian/control's Maintainer name case.
   * Improve README.
   * cleanup /etc/di-netboot-assistant/pxelinux.cfg.HEAD
 .
 di-netboot-assistant (0.20) unstable; urgency=low
 .
   * Save information about downloaded repositories.
 .
 di-netboot-assistant (0.19) unstable; urgency=low
 .
   * Package rename.
   * Print warning if no argument is passed.
   * Add dhcpd.conf example (untested!)
 .
 dibas (0.18) unstable; urgency=low
 .
   * Initial Public Release.
Checksums-Sha1: 
 a093eeb8f0a0bcf83b4e303539a59bbfa49991c9 817 di-netboot-assistant_0.35.dsc
 9c4474833899be1b56fe0b4196c255a5883482f7 23755 di-netboot-assistant_0.35.tar.gz
 b8cc74d73d7eacf0894b9af33c91ab6da814689a 21870 
di-netboot-assistant_0.35_all.deb
Checksums-Sha256: 
 60081e0225f2dcc939a76875835f3d525881428ed0c2dc56864bdcb3d20d1184 817 
di-netboot-assistant_0.35.dsc
 2b2fea61276d4fd8c019cb3774440d4e526cfba07c9675c2354940229833637f 23755 
di-netboot-assistant_0.35.tar.gz
 e1b342b1f58c50486845bf20569b82f614fd780ce52ad472addb487d6be23b4c 21870 
di-netboot-assistant_0.35_all.deb
Files: 
 93bb47bece124cb17df27e3e4fc2766d 817 utils extra di-netboot-assistant_0.35.dsc
 04f7af1715663c8950f89cb258604753 23755 utils extra 
di-netboot-assistant_0.35.tar.gz
 0f0e415566731b77e528fae4801f4e40 21870 utils extra 
di-netboot-assistant_0.35_all.deb

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

iD8DBQFIekMS20zMSyow1ykRAtfjAKDEeOLGx63fnqYiT+bTTfGP+ZfIvQCgxi7r
xOPct4N7p9D96tnOzAR8yiI=
=sK1B
-END PGP SIGNATURE-


Accepted:
di-netboot-assistant_0.35.dsc
  to pool/main/d/di-netboot-assistant/di-netboot-assistant_0.35.dsc
di-netboot-assistant_0.35.tar.gz
  to pool/main/d/di-netboot-assistant/di-netboot-assistant_0.35.tar.gz
di-netboot-assistant_0.35_all.deb
  to pool/main/d/di-netboot-assistant/di-netboot-assistant_0.35_all.deb


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



Accepted python-scriptutil 1-1 (source all)

2008-07-19 Thread Matthew Johnson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Jul 2008 18:54:44 +0100
Source: python-scriptutil
Binary: python-scriptutil
Architecture: source all
Version: 1-1
Distribution: unstable
Urgency: low
Maintainer: Matthew Johnson [EMAIL PROTECTED]
Changed-By: Matthew Johnson [EMAIL PROTECTED]
Description: 
 python-scriptutil - Python module which provides the functionality of find and 
grep
Closes: 489587
Changes: 
 python-scriptutil (1-1) unstable; urgency=low
 .
   * Initial Debian Package (Closes: #489587)
Checksums-Sha1: 
 49f23980f0acc075fcd0299c4f917715e2ab0397 1033 python-scriptutil_1-1.dsc
 1ece856c11a5128110555db070998d2f9fc43e16 3623 python-scriptutil_1.orig.tar.gz
 29150a3fdb91f6591c89c3ec37bf6a82cd697d06 1864 python-scriptutil_1-1.diff.gz
 c800ae7f328a48380b1eef9766cb310f63aae9c1 5152 python-scriptutil_1-1_all.deb
Checksums-Sha256: 
 f0d3404971aef63883c0b20de93024d04e2c312a0637cd646a4c96d61ea301b2 1033 
python-scriptutil_1-1.dsc
 aec7636dfada8cc0950268d63ec438308ac91d35dba718f399e214e6f1b8856c 3623 
python-scriptutil_1.orig.tar.gz
 cc61f549b44a8fe803850220393c35a48c3938dabdf02228d0f3b6acac6e64a5 1864 
python-scriptutil_1-1.diff.gz
 9eb256b21c755815de8495cc11120b0d42b27e93d9e44c554ce67bc2823c5492 5152 
python-scriptutil_1-1_all.deb
Files: 
 2e2a5dd0c765d9e7a6e6a26f84b54737 1033 python optional python-scriptutil_1-1.dsc
 729decba6c9169f548853247b4a08432 3623 python optional 
python-scriptutil_1.orig.tar.gz
 a5b10493d7015d8131655de772fa529a 1864 python optional 
python-scriptutil_1-1.diff.gz
 66d0e054d224698fd7398ad0e22a11c7 5152 python optional 
python-scriptutil_1-1_all.deb

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

iD8DBQFIekRVpldmHVvob7kRAvt4AKCQvojlamDgOtzWpEjp/9X5HzU7uQCfQyXb
d4WutwYqRHITmVTaAmqBKMY=
=XmpA
-END PGP SIGNATURE-


Accepted:
python-scriptutil_1-1.diff.gz
  to pool/main/p/python-scriptutil/python-scriptutil_1-1.diff.gz
python-scriptutil_1-1.dsc
  to pool/main/p/python-scriptutil/python-scriptutil_1-1.dsc
python-scriptutil_1-1_all.deb
  to pool/main/p/python-scriptutil/python-scriptutil_1-1_all.deb
python-scriptutil_1.orig.tar.gz
  to pool/main/p/python-scriptutil/python-scriptutil_1.orig.tar.gz


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



Accepted libproc-processtable-perl 0.43-1 (source all i386)

2008-07-19 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 18 Jul 2008 18:02:53 +0200
Source: libproc-processtable-perl
Binary: libproc-processtable-perl libproc-process-perl
Architecture: source all i386
Version: 0.43-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Ansgar Burchardt [EMAIL PROTECTED]
Description: 
 libproc-process-perl - Dummy package for libproc-processtable-perl rename
 libproc-processtable-perl - Perl library for accessing process table 
information
Changes: 
 libproc-processtable-perl (0.43-1) unstable; urgency=low
 .
   * New upstream release
   * Update copyright years in debian/copyright
   * Regenerate debian/rules for debhelper 7
 + Update debian/compat and debian/control accordingly
   * Bump Standards Version to 3.8.0 (no changes needed)
   * Add myself to Uploaders
Checksums-Sha1: 
 97f8b6291f514541e8430cf2415f76618b1a61f0 1517 
libproc-processtable-perl_0.43-1.dsc
 8fa8856f99b10daef386641b6e068ba0973d7f01 66230 
libproc-processtable-perl_0.43.orig.tar.gz
 cf57366584e2e2094fd174647b339a3a5381289d 3367 
libproc-processtable-perl_0.43-1.diff.gz
 7f0952b54d084956b6d1b3d46021fb3059184a13 9666 
libproc-process-perl_0.43-1_all.deb
 1282f13648ab8a69d5f707f059e0068dde6bcfdc 42228 
libproc-processtable-perl_0.43-1_i386.deb
Checksums-Sha256: 
 916f30797339b6156488149f07a7c8be64f9e7a9cb32cb3c4d2cbb9ef22ce79e 1517 
libproc-processtable-perl_0.43-1.dsc
 18caf554206b58c0fef074583cdd2929900d6da97db40ad8d0893d95421d0286 66230 
libproc-processtable-perl_0.43.orig.tar.gz
 cdec1f0d668747b48fe2fc42141d8da11f42bcf3461503f2aaadbeb585425fc7 3367 
libproc-processtable-perl_0.43-1.diff.gz
 8a76d4bc92be112b9bd3007064292c53c98bf8ad57ab5ed77b9be6ab89a4201a 9666 
libproc-process-perl_0.43-1_all.deb
 2784a387b06c28a41b397a8147e0e35fec88258472ef1fe0f9421e0ecd437c1d 42228 
libproc-processtable-perl_0.43-1_i386.deb
Files: 
 fd864b642db7d8c14331de535273c602 1517 perl optional 
libproc-processtable-perl_0.43-1.dsc
 e87e53b15a504287da493b06503bae3b 66230 perl optional 
libproc-processtable-perl_0.43.orig.tar.gz
 657ec3f876572f4b3aa2333ccaa93646 3367 perl optional 
libproc-processtable-perl_0.43-1.diff.gz
 7a9aba183a2d30a08e0cb092a29299c1 9666 perl optional 
libproc-process-perl_0.43-1_all.deb
 17213fe9bfae1702836c05c93d4d5736 42228 perl optional 
libproc-processtable-perl_0.43-1_i386.deb

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

iEYEARECAAYFAkiB3TMACgkQOzKYnQDzz+TqJwCghrl7HZrBqKD0gEXEWqP7lIWB
dXcAoMSMzNTvFxOgKy1z9w6Gohf/8wPr
=vHh2
-END PGP SIGNATURE-


Accepted:
libproc-process-perl_0.43-1_all.deb
  to 
pool/main/libp/libproc-processtable-perl/libproc-process-perl_0.43-1_all.deb
libproc-processtable-perl_0.43-1.diff.gz
  to 
pool/main/libp/libproc-processtable-perl/libproc-processtable-perl_0.43-1.diff.gz
libproc-processtable-perl_0.43-1.dsc
  to 
pool/main/libp/libproc-processtable-perl/libproc-processtable-perl_0.43-1.dsc
libproc-processtable-perl_0.43-1_i386.deb
  to 
pool/main/libp/libproc-processtable-perl/libproc-processtable-perl_0.43-1_i386.deb
libproc-processtable-perl_0.43.orig.tar.gz
  to 
pool/main/libp/libproc-processtable-perl/libproc-processtable-perl_0.43.orig.tar.gz


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



Accepted openstreetmap-map-icons 1:0.0.0.20080713-1 (source all)

2008-07-19 Thread Andreas Putzo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Jul 2008 16:26:14 +
Source: openstreetmap-map-icons
Binary: openstreetmap-map-icons-classic openstreetmap-map-icons-square 
openstreetmap-map-icons-scalable
Architecture: source all
Version: 1:0.0.0.20080713-1
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project [EMAIL PROTECTED]
Changed-By: Andreas Putzo [EMAIL PROTECTED]
Description: 
 openstreetmap-map-icons-classic - Collection of map icons
 openstreetmap-map-icons-scalable - Collection of map icons
 openstreetmap-map-icons-square - Collection of map icons
Closes: 439676
Changes: 
 openstreetmap-map-icons (1:0.0.0.20080713-1) unstable; urgency=low
 .
   * Initial Release. (Closes: #439676)
 The openstreetmap-map-icons-* packages were originally provided
 by the gpdsrive source package up to version 2.10~pre4-3.
 Gpsdrive upstream no longer distributes the icon set.
   * Added epoch to version to provide a greater version then gpsdrive.
   * Cmake modules got removed upstream, no longer needed to mention
 them in the copyright file.
 .
   * Upload sponsored by Petter Reinholdtsen.
Checksums-Sha1: 
 5ecf0fb46f6a715be56644561f6261d1ae8999bf 1510 
openstreetmap-map-icons_0.0.0.20080713-1.dsc
 93a84006dac48c56c23170f033b9097fec5bbb2d 1550234 
openstreetmap-map-icons_0.0.0.20080713.orig.tar.gz
 1278a099bbdf9fa225478a9bdc0e60ea88f7b3d7 2266 
openstreetmap-map-icons_0.0.0.20080713-1.diff.gz
 3dcc11a527686a631531990104fcc2b76f385fb7 507704 
openstreetmap-map-icons-classic_0.0.0.20080713-1_all.deb
 35545b8381769c0c7270b1bdcb49c8c1af576977 618802 
openstreetmap-map-icons-square_0.0.0.20080713-1_all.deb
 3a710e4c41ce65b568f4ebb6b78fb021dfc04dc1 373140 
openstreetmap-map-icons-scalable_0.0.0.20080713-1_all.deb
Checksums-Sha256: 
 3ed9efa47b973f8677b8986d540561c491bce8124a483682e303a907a45bbd09 1510 
openstreetmap-map-icons_0.0.0.20080713-1.dsc
 53a4651fdabb7ce190a986e86745968168beb9f86ddbf5865bd06712230a6c0b 1550234 
openstreetmap-map-icons_0.0.0.20080713.orig.tar.gz
 ec2400556133f15e46843937ddecc9fd945ac540e7bd46a7fe872a509df93c1d 2266 
openstreetmap-map-icons_0.0.0.20080713-1.diff.gz
 5cea35aff6a291e0441b002db2936a16f84819a269659b5b03cfde821616657a 507704 
openstreetmap-map-icons-classic_0.0.0.20080713-1_all.deb
 cdfa5fd27a1839aa4db7410621f1d5a277b47f54ad2b9cabbdba8ff63f693da2 618802 
openstreetmap-map-icons-square_0.0.0.20080713-1_all.deb
 18624270a7f8c5d5289979ef8b99f4cf929a34e7bd2b43f68038339a4cfa8695 373140 
openstreetmap-map-icons-scalable_0.0.0.20080713-1_all.deb
Files: 
 1c7fde297f037ee976a32d2da9f4d567 1510 x11 optional 
openstreetmap-map-icons_0.0.0.20080713-1.dsc
 ebc3469be86ac3edf13f96290aad0bc4 1550234 x11 optional 
openstreetmap-map-icons_0.0.0.20080713.orig.tar.gz
 7ea9ee2fa401a02c44cf49ef9420e73a 2266 x11 optional 
openstreetmap-map-icons_0.0.0.20080713-1.diff.gz
 1bfb3c166d0b1b0345cf4a3a2ea4302f 507704 x11 optional 
openstreetmap-map-icons-classic_0.0.0.20080713-1_all.deb
 8c6db5e548fb57283e7dbae6d32a5901 618802 x11 optional 
openstreetmap-map-icons-square_0.0.0.20080713-1_all.deb
 5f5147ce71af56e960b73ee8c31e8f06 373140 x11 optional 
openstreetmap-map-icons-scalable_0.0.0.20080713-1_all.deb

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

iD8DBQFIezyl20zMSyow1ykRAqHbAKCmrH5mp2Kd+FQaBB3OVfjl+SuycACg0WRK
Jr5C4gYSv0byZuDRJFTOd7U=
=rfoG
-END PGP SIGNATURE-


Accepted:
openstreetmap-map-icons-classic_0.0.0.20080713-1_all.deb
  to 
pool/main/o/openstreetmap-map-icons/openstreetmap-map-icons-classic_0.0.0.20080713-1_all.deb
openstreetmap-map-icons-scalable_0.0.0.20080713-1_all.deb
  to 
pool/main/o/openstreetmap-map-icons/openstreetmap-map-icons-scalable_0.0.0.20080713-1_all.deb
openstreetmap-map-icons-square_0.0.0.20080713-1_all.deb
  to 
pool/main/o/openstreetmap-map-icons/openstreetmap-map-icons-square_0.0.0.20080713-1_all.deb
openstreetmap-map-icons_0.0.0.20080713-1.diff.gz
  to 
pool/main/o/openstreetmap-map-icons/openstreetmap-map-icons_0.0.0.20080713-1.diff.gz
openstreetmap-map-icons_0.0.0.20080713-1.dsc
  to 
pool/main/o/openstreetmap-map-icons/openstreetmap-map-icons_0.0.0.20080713-1.dsc
openstreetmap-map-icons_0.0.0.20080713.orig.tar.gz
  to 
pool/main/o/openstreetmap-map-icons/openstreetmap-map-icons_0.0.0.20080713.orig.tar.gz


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



Accepted kallery 1.2.0-2 (source all amd64)

2008-07-19 Thread Marvin Stark
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Jul 2008 22:50:54 +0200
Source: kallery
Binary: kallery kallery-data
Architecture: source amd64 all
Version: 1.2.0-2
Distribution: experimental
Urgency: low
Maintainer: Marvin Stark [EMAIL PROTECTED]
Changed-By: Marvin Stark [EMAIL PROTECTED]
Description: 
 kallery- Image gallery generator for the KDE
 kallery-data - Image gallery generator for the KDE
Closes: 485897
Changes: 
 kallery (1.2.0-2) experimental; urgency=low
 .
   * debian/control:
 - Updated Build-Depends (Closes: #485897)
   libmagick9-dev was renamed to libmagickcore-dev
   Added quilt to Build-Depends
   Added debian-imagemagick.diff patch
 - Updated Standards-Version to 3.8.0
 - Added Homepage field
   * debian/rules:
 - Included quilt patch target
   * debian/copyright:
 - added referer to /usr/share/common-licenses/GFDL-1.2
   * debian/menu:
 - Updated section
   * Added debian/README.source
   * Added debian/watch
   * Added Makefile.in.diff patch
 - Remove config.status|cache in cleaning target
   * Splitted kallery into kallery and kallery-data
Checksums-Sha1: 
 e60cc7e7c733d524a413c9afdfa9ec843fa7e6fb 1114 kallery_1.2.0-2.dsc
 a9f0584d0c04f5b427f6a49fb77827ae357a9b3e 28342 kallery_1.2.0-2.diff.gz
 5e1dfb991a77e2fb63816342adbfe845f99cf0b3 142196 kallery_1.2.0-2_amd64.deb
 52495cc272d70aece4d1e47c57c19cb64562a67e 938472 kallery-data_1.2.0-2_all.deb
Checksums-Sha256: 
 4331d09a55974f2dc005244ee2c70c80b373e12993b0587abf201e29f41b0875 1114 
kallery_1.2.0-2.dsc
 eed720e14b7e47572457d5afa925ef8d3a7bec66f0011acba54d0408cea8e778 28342 
kallery_1.2.0-2.diff.gz
 08b60b63a0d46d86a4027b525f01cde9a2451aadf0e47dcd3db8648b85ed87bc 142196 
kallery_1.2.0-2_amd64.deb
 cee231b914df4dc0c3595f4201e074ba6dcc4857830be675b9c6642d265b6e96 938472 
kallery-data_1.2.0-2_all.deb
Files: 
 9acd7bfb8260a6497e78fa2705eb8865 1114 kde optional kallery_1.2.0-2.dsc
 ef361eb7fd7bcc2546e1af4a1e557b37 28342 kde optional kallery_1.2.0-2.diff.gz
 25cc8dec6bb11bdf08c8055a0fd5887e 142196 kde optional kallery_1.2.0-2_amd64.deb
 d35cec2e8cab4f82b98b211faa40e71d 938472 kde optional 
kallery-data_1.2.0-2_all.deb

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

iEYEARECAAYFAkh6dHUACgkQxa93SlhRC1qQlACgjrP9fOEZSRnt92Yj1fk6TAnS
LWEAoNSSIkehzItKl/G2WFZvYj/5jKB1
=9xu8
-END PGP SIGNATURE-


Accepted:
kallery-data_1.2.0-2_all.deb
  to pool/main/k/kallery/kallery-data_1.2.0-2_all.deb
kallery_1.2.0-2.diff.gz
  to pool/main/k/kallery/kallery_1.2.0-2.diff.gz
kallery_1.2.0-2.dsc
  to pool/main/k/kallery/kallery_1.2.0-2.dsc
kallery_1.2.0-2_amd64.deb
  to pool/main/k/kallery/kallery_1.2.0-2_amd64.deb


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



Accepted digitemp 3.5.0ds1-1 (source amd64)

2008-07-19 Thread Riccardo Stagni
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 18 Jul 2008 00:33:07 +0200
Source: digitemp
Binary: digitemp
Architecture: source amd64
Version: 3.5.0ds1-1
Distribution: unstable
Urgency: low
Maintainer: Riccardo Stagni [EMAIL PROTECTED]
Changed-By: Riccardo Stagni [EMAIL PROTECTED]
Description: 
 digitemp   - read temperature sensors in a 1-Wire net
Closes: 350809 461576 474031
Changes: 
 digitemp (3.5.0ds1-1) unstable; urgency=low
 .
   * Taking over Jesus Roncero in maintainership with his permission
   * New upstream release (Closes: #474031)
 (repackaged as the upstream tarball contained the compiled programs, also
 for Windows. The resulting .tar.gz is about half of the original size)
   * Debian packaging remade from scratch
 - Acknowledge NMU (Closes: #461576)
 - debhelper compatibility switched to 7 (previous level undefined)
   * formatting issues in the digitemp.1 manpage (Closes: #350809)
 (also fixes a lintian's warning, thanks to Nicolas François for the patch)
   * Bumped standard version to 3.8.0
 - debian/control: Moved Homepage field from description to source section
 - updated DEB_BUILD_OPTIONS support to debian/rules
 - adjusted Makefile so we can tweak CFLAGS from debian/rules
Checksums-Sha1: 
 0e7e55d4e3636febb1faadfc2e387c77aec2db48 1027 digitemp_3.5.0ds1-1.dsc
 02ff791a6357e9f146123f6cc7fc1d3f3c864aa2 136484 digitemp_3.5.0ds1.orig.tar.gz
 3d3d13a8501d74a8053e25b6959a2e34d48f5127 5155 digitemp_3.5.0ds1-1.diff.gz
 991c0c1ae1d03aaf7175c11fe17135c542c910ce 128280 digitemp_3.5.0ds1-1_amd64.deb
Checksums-Sha256: 
 37ee462bf11d489156a078dc64f7d1c83159eddcf2f865dc7c5554a9580d4804 1027 
digitemp_3.5.0ds1-1.dsc
 ec63138fa15b67e522c4fcc63c78c6142d5369a703f63796e967ecd3c2156a69 136484 
digitemp_3.5.0ds1.orig.tar.gz
 e1e04ebc9b467396309f5cfbd2416f59e1bae5bb00c65062a534b25bced626af 5155 
digitemp_3.5.0ds1-1.diff.gz
 b1fd8267ed6d9e911defd8e808459e299c1ea11c97952c8d225e70897669d9e2 128280 
digitemp_3.5.0ds1-1_amd64.deb
Files: 
 a5c9c23e0e5f372e46b6029ac9c6bc88 1027 electronics optional 
digitemp_3.5.0ds1-1.dsc
 3ca6547a690dc54070417d193f124c98 136484 electronics optional 
digitemp_3.5.0ds1.orig.tar.gz
 abf49a6be3c3a6d1e4b2433ecd930a26 5155 electronics optional 
digitemp_3.5.0ds1-1.diff.gz
 14e0a60d4d4029d93149b43806e8c29d 128280 electronics optional 
digitemp_3.5.0ds1-1_amd64.deb

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

iD8DBQFIgeCy9LSwzHl+v6sRAvjwAJ90uhnmcJddFpIIGZZngu9LPEPNIACcCnif
sP2Lc9hJFOjzXNkIvoItNJ0=
=iw6u
-END PGP SIGNATURE-


Accepted:
digitemp_3.5.0ds1-1.diff.gz
  to pool/main/d/digitemp/digitemp_3.5.0ds1-1.diff.gz
digitemp_3.5.0ds1-1.dsc
  to pool/main/d/digitemp/digitemp_3.5.0ds1-1.dsc
digitemp_3.5.0ds1-1_amd64.deb
  to pool/main/d/digitemp/digitemp_3.5.0ds1-1_amd64.deb
digitemp_3.5.0ds1.orig.tar.gz
  to pool/main/d/digitemp/digitemp_3.5.0ds1.orig.tar.gz


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



Accepted reportbug-ng 1.0 (source all)

2008-07-19 Thread Bastian Venthur
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 13:45:24 +0200
Source: reportbug-ng
Binary: reportbug-ng
Architecture: source all
Version: 1.0
Distribution: unstable
Urgency: low
Maintainer: Bastian Venthur [EMAIL PROTECTED]
Changed-By: Bastian Venthur [EMAIL PROTECTED]
Description: 
 reportbug-ng - An easy to use alternative to Debian's classic reportbug
Closes: 417823 433524 433550 434130 459439 469332 486212 486743 488122
Changes: 
 reportbug-ng (1.0) unstable; urgency=low
 .
   The 'don't fear the 1.0'-release.
 .
   * Ported rng from qt3 to qt4 (Closes: #469332)
   * Use Webkit as internal browser:
 - Smoother fonts, CSS, etc (Closes: #417823)
 - No crashes (Closes: #486212, #486743, #488122)
 - passes acid1 and acid2 :P
   * Merged several stuff fom lib to rnghelpers (Closes: #459439)
   * Removed option to hide main menu (Closes: #434130, #433524, #433550)
 .
   * Depends on python2.5
   * Bumped standards version
   * Moved from pycentral to python-support
Checksums-Sha1: 
 81cda50bc2a1d9aaf08fb66147357591a2c2efd4 864 reportbug-ng_1.0.dsc
 08d2f916d9c56fb17d8c826ef942a0f838fe49ce 72058 reportbug-ng_1.0.tar.gz
 34c1ff3c161c737f835e943d2a44f20486ceb7ca 69636 reportbug-ng_1.0_all.deb
Checksums-Sha256: 
 6ca822fa4c2fd719fa0a09737c41a9e10de2d11c132af6df883c6f86b8c4e0bd 864 
reportbug-ng_1.0.dsc
 2dcf778dfdf29b7e87026f44935bd7bf22a6ee6e79fea508d4128fb1ab82e1d7 72058 
reportbug-ng_1.0.tar.gz
 567785f6188c66abbf6847d57cc36a3f9464d7dcfdb6331c640b5fa6dcdbaa95 69636 
reportbug-ng_1.0_all.deb
Files: 
 1d2c068bda583f6cfca676a30b04fbf2 864 utils optional reportbug-ng_1.0.dsc
 e91fbf82e60d2d0e60239e1396f2a32e 72058 utils optional reportbug-ng_1.0.tar.gz
 10c39c790820f317a23279b0c8060a77 69636 utils optional reportbug-ng_1.0_all.deb

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

iEYEARECAAYFAkiB53sACgkQmj66P/Yfc/gyHwCfbA5uixiuw4j+mOToWyml9/PP
VhEAniE82nhtGLgsJttN2dKwxJlWj3e6
=w/R4
-END PGP SIGNATURE-


Accepted:
reportbug-ng_1.0.dsc
  to pool/main/r/reportbug-ng/reportbug-ng_1.0.dsc
reportbug-ng_1.0.tar.gz
  to pool/main/r/reportbug-ng/reportbug-ng_1.0.tar.gz
reportbug-ng_1.0_all.deb
  to pool/main/r/reportbug-ng/reportbug-ng_1.0_all.deb


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



Accepted libmodule-install-perl 0.76-1 (source all)

2008-07-19 Thread AGOSTINI Yves
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Jul 2008 14:21:48 +0200
Source: libmodule-install-perl
Binary: libmodule-install-perl
Architecture: source all
Version: 0.76-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: AGOSTINI Yves [EMAIL PROTECTED]
Description: 
 libmodule-install-perl - A Cornucopiaelig of Module::Install Recipes
Changes: 
 libmodule-install-perl (0.76-1) unstable; urgency=low
 .
   [ AGOSTINI Yves ]
   * New upstream release.
   * fix debian-copyright-line-too-long on line 1,8,14
   * add export DH_ALWAYS_EXCLUDE=.svn in rules
   * rules: remove dir usr/share/perl5/auto/ with useless
 usr/share/perl5/auto/share/dist/Module-Install/dist_file.txt
 .
   [ gregor herrmann ]
   * debian/rules: add install to .PHONY.
   * debian/control: adjust versioned dependencies for libmodule-corelist-perl
 and libfile-remove-perl; add libfile-remove-perl to Depends.
Checksums-Sha1: 
 fb1a515f72be4afe43d082ddc3fefac82682445d 1983 libmodule-install-perl_0.76-1.dsc
 b53ec7b97995ed50d59dace89498c6c4b794d9b1 123451 
libmodule-install-perl_0.76.orig.tar.gz
 df20bee48610d1a4f660974f0cb6757de10636f2 4510 
libmodule-install-perl_0.76-1.diff.gz
 b3e004e68cf04b1f7817339ee0585cd67008d806 116124 
libmodule-install-perl_0.76-1_all.deb
Checksums-Sha256: 
 1405dc03e23872e0aaddd0703b990abeb7157e7e9a5a2d1fd0aef3c63668e94f 1983 
libmodule-install-perl_0.76-1.dsc
 4ee768fc46aa1bc9bc82a24800bc36c7d69a5378e481b3ad9a42201cb82e4bdb 123451 
libmodule-install-perl_0.76.orig.tar.gz
 ec58c9dc92a3add77da5e5e0a15b2a9c376f6104843d15d6301e0b660e66c6a2 4510 
libmodule-install-perl_0.76-1.diff.gz
 c7368063ba73098626fec947c437713d01f46400a524817fb187ee9c3b7b2cda 116124 
libmodule-install-perl_0.76-1_all.deb
Files: 
 7b4bd1d3140cee6201060188662a28e3 1983 perl optional 
libmodule-install-perl_0.76-1.dsc
 ae6f4658d75409f2a2e9ecd36b2fdb65 123451 perl optional 
libmodule-install-perl_0.76.orig.tar.gz
 d98e8b578cbf4df4b7c88156bf8440bd 4510 perl optional 
libmodule-install-perl_0.76-1.diff.gz
 62499c5ea74df4642ab432ee52044811 116124 perl optional 
libmodule-install-perl_0.76-1_all.deb

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

iEYEARECAAYFAkiB5lQACgkQOzKYnQDzz+QgIgCfUdbEEz5H1I1m1glWd7Xu3d1A
1dAAnigyUp/QN/lcBoCUv1kMoyCd6FDi
=GrSv
-END PGP SIGNATURE-


Accepted:
libmodule-install-perl_0.76-1.diff.gz
  to pool/main/libm/libmodule-install-perl/libmodule-install-perl_0.76-1.diff.gz
libmodule-install-perl_0.76-1.dsc
  to pool/main/libm/libmodule-install-perl/libmodule-install-perl_0.76-1.dsc
libmodule-install-perl_0.76-1_all.deb
  to pool/main/libm/libmodule-install-perl/libmodule-install-perl_0.76-1_all.deb
libmodule-install-perl_0.76.orig.tar.gz
  to 
pool/main/libm/libmodule-install-perl/libmodule-install-perl_0.76.orig.tar.gz


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



Accepted unixcw 2.3-10 (source i386)

2008-07-19 Thread Joop Stakenborg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 15:48:46 +0200
Source: unixcw
Binary: unixcw cw unixcw-dev cwcp xcwcp
Architecture: source i386
Version: 2.3-10
Distribution: unstable
Urgency: low
Maintainer: Joop Stakenborg [EMAIL PROTECTED]
Changed-By: Joop Stakenborg [EMAIL PROTECTED]
Description: 
 cw - Command-line frontend to unixcw
 cwcp   - Ncurses frontend to unixcw
 unixcw - Shared library for Morse programs
 unixcw-dev - Development files for Morse programs
 xcwcp  - Qt frontend to unixcw
Closes: 488988
Changes: 
 unixcw (2.3-10) unstable; urgency=low
 .
   * Build depend on mawk|gawk so a correct .pc file is created on
 hppa. Closes: #488988.
Checksums-Sha1: 
 4152fa141044de67e151fb41d14dc317212b2262 1029 unixcw_2.3-10.dsc
 b6800baa51bc1c1cdb99713816ccb9afbf0727a7 95861 unixcw_2.3-10.diff.gz
 eb0ff8515589b762cfa4c955b9a0299540baead1 31212 unixcw_2.3-10_i386.deb
 ed1218b3fd7d5f8aaa5aa5422e75e918b00e3eca 26022 cw_2.3-10_i386.deb
 247691c3b1d523c955612f7c25ed57abb036da60 37142 unixcw-dev_2.3-10_i386.deb
 5b672674fd7582b059e6359ffd54911668c73287 38646 cwcp_2.3-10_i386.deb
 d73d47798a9db2832d10edf0d0c6cede04ba5f75 75978 xcwcp_2.3-10_i386.deb
Checksums-Sha256: 
 9d7efc4536c098c78fcea89a55a99e27b76bfe803ee59db6cc9702edccba85fa 1029 
unixcw_2.3-10.dsc
 92ad1a4768c64142a77d6387c029d40f9017f1ceacd1a78993dd9a4770fe3211 95861 
unixcw_2.3-10.diff.gz
 a1978bcab33ed1a14e6bd352799fb10fb25e00b91ce44ce05f485b3df0bd5347 31212 
unixcw_2.3-10_i386.deb
 4f8c11e47e547210a25795f1522c54e81b27390c85498c4b46b208820ac3a03c 26022 
cw_2.3-10_i386.deb
 41b6d5d96a1441f3f482652cc2b5b1638a0f8dceb453046aa42b226dcda1de3c 37142 
unixcw-dev_2.3-10_i386.deb
 ccca620e1d701c94718a4ed38844792a305d1febf3d127e91c2954a0da9a6478 38646 
cwcp_2.3-10_i386.deb
 ff259241a78146637b01f356b531c39d6c43977993a645ff1b7c0c41ba4e7ea1 75978 
xcwcp_2.3-10_i386.deb
Files: 
 c3e6bc03cc43960a661a4005425f1397 1029 hamradio optional unixcw_2.3-10.dsc
 008ddc9aba0e00c9233f3724651dc550 95861 hamradio optional unixcw_2.3-10.diff.gz
 7bf440446b4b568742a0909fca97a043 31212 hamradio optional unixcw_2.3-10_i386.deb
 2a460e760a83b5a5f6e686ac30c452b6 26022 hamradio optional cw_2.3-10_i386.deb
 1b99a0f29e7da208fde4c5e78d0cfe4b 37142 devel optional 
unixcw-dev_2.3-10_i386.deb
 700d88e119e32ffd40d36535f4a58174 38646 hamradio optional cwcp_2.3-10_i386.deb
 41e00befbcfede3a1be980c85173125a 75978 hamradio optional xcwcp_2.3-10_i386.deb

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

iEYEARECAAYFAkiB8ZUACgkQ/CqtjGLxpX+nuACfQSAKkthr7VK1YfEYYYxijKr+
f0wAn1wBdIY0g//g1eqU0Mxg4VvO3hDE
=1sZy
-END PGP SIGNATURE-


Accepted:
cw_2.3-10_i386.deb
  to pool/main/u/unixcw/cw_2.3-10_i386.deb
cwcp_2.3-10_i386.deb
  to pool/main/u/unixcw/cwcp_2.3-10_i386.deb
unixcw-dev_2.3-10_i386.deb
  to pool/main/u/unixcw/unixcw-dev_2.3-10_i386.deb
unixcw_2.3-10.diff.gz
  to pool/main/u/unixcw/unixcw_2.3-10.diff.gz
unixcw_2.3-10.dsc
  to pool/main/u/unixcw/unixcw_2.3-10.dsc
unixcw_2.3-10_i386.deb
  to pool/main/u/unixcw/unixcw_2.3-10_i386.deb
xcwcp_2.3-10_i386.deb
  to pool/main/u/unixcw/xcwcp_2.3-10_i386.deb


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



Accepted extra-xdg-menus 1.0-4 (source all)

2008-07-19 Thread Hamish Moffatt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 20 Jul 2008 00:13:22 +1000
Source: extra-xdg-menus
Binary: extra-xdg-menus
Architecture: source all
Version: 1.0-4
Distribution: unstable
Urgency: low
Maintainer: Peter Clifton [EMAIL PROTECTED]
Changed-By: Hamish Moffatt [EMAIL PROTECTED]
Description: 
 extra-xdg-menus - Extra menu categories for applications under GNOME and KDE
Closes: 480596
Changes: 
 extra-xdg-menus (1.0-4) unstable; urgency=low
 .
   * Fixed bashisms in exmenen/exmendis commands (closes: #480596)
Checksums-Sha1: 
 a6df15c434acdda2be001bc52f953d92c1e279fb 1124 extra-xdg-menus_1.0-4.dsc
 533f1323c3770b810ff32149bb9f50a33e3935eb 2167 extra-xdg-menus_1.0-4.diff.gz
 7ae80729c6e2945431cd9618ad3e4c4223d61182 12732 extra-xdg-menus_1.0-4_all.deb
Checksums-Sha256: 
 a49f2e4fc0467e72adc233ac0a3f0b6781c51a5aaa9e3e869569ced9d1880687 1124 
extra-xdg-menus_1.0-4.dsc
 1c2b44c097feb80a39ac7c179455cd4cc6949f89549219bbf8510a85dc27e6e1 2167 
extra-xdg-menus_1.0-4.diff.gz
 e1e5c1bf3fa318b8c219c161fca5340950de6e46024f6ee9619c46de0898da48 12732 
extra-xdg-menus_1.0-4_all.deb
Files: 
 f25e4f7afe260aa79e8b0d18c947ae53 1124 misc optional extra-xdg-menus_1.0-4.dsc
 e2cdf9b5671d5ed0f10ca602ef4ce5cb 2167 misc optional 
extra-xdg-menus_1.0-4.diff.gz
 ae475ad257cd75ecc92ba416dc3ff232 12732 misc optional 
extra-xdg-menus_1.0-4_all.deb

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

iEYEARECAAYFAkiB9ywACgkQ30WoBV0H6VwSlgCgntV25V2uS4Ut3xOb+U3FCHGy
6CcAoNyTK50vfWV/CrUWDIl1G8/r1NQu
=/4jL
-END PGP SIGNATURE-


Accepted:
extra-xdg-menus_1.0-4.diff.gz
  to pool/main/e/extra-xdg-menus/extra-xdg-menus_1.0-4.diff.gz
extra-xdg-menus_1.0-4.dsc
  to pool/main/e/extra-xdg-menus/extra-xdg-menus_1.0-4.dsc
extra-xdg-menus_1.0-4_all.deb
  to pool/main/e/extra-xdg-menus/extra-xdg-menus_1.0-4_all.deb


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



Accepted baycomusb 0.10-10 (source i386)

2008-07-19 Thread Joop Stakenborg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 15:53:45 +0200
Source: baycomusb
Binary: baycomusb
Architecture: source i386
Version: 0.10-10
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers [EMAIL PROTECTED]
Changed-By: Joop Stakenborg [EMAIL PROTECTED]
Description: 
 baycomusb  - Drivers for the HB9JNX packet radio usb modem
Closes: 489541
Changes: 
 baycomusb (0.10-10) unstable; urgency=low
 .
   * Fix bashism in /usr/share/doc/baycomusb/examples/baycomusb.initscript.
 Closes: #489541.
Checksums-Sha1: 
 ae5599c23cd6dd7d1cf26b64bf547e8a0d59fe11 1225 baycomusb_0.10-10.dsc
 caa5f5c7a8390eca6793be1f9b195300 258793 baycomusb_0.10-10.diff.gz
 029b40e05a2aede9ae172677d20f0fb4ba1ec3c3 221934 baycomusb_0.10-10_i386.deb
Checksums-Sha256: 
 904449281e1450b435752a33038ca8f702322bd4ea9fc01b091bbfb9bbf2 1225 
baycomusb_0.10-10.dsc
 2266563da88ec06aa3afafe519ffecffeb396342f29f8ec2c8eabf35ef9536a2 258793 
baycomusb_0.10-10.diff.gz
 6fc549748583452a2258322a0506bd999125cdf4d03ee44be331de75424f608f 221934 
baycomusb_0.10-10_i386.deb
Files: 
 cdcda5ce613b9f6cf962af58e3cb4cda 1225 hamradio optional baycomusb_0.10-10.dsc
 c65c5aa8023b38d26ceedc26d18f1fee 258793 hamradio optional 
baycomusb_0.10-10.diff.gz
 ef454819ab3f9e58dd6b9508ddf55169 221934 hamradio optional 
baycomusb_0.10-10_i386.deb

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

iEYEARECAAYFAkiB8wwACgkQ/CqtjGLxpX/tNQCgvv8Q7YvUwroV31cSLD4wYbSL
cM4AniHQPB+Z8XlyKWROwvAxt17y4Odf
=932a
-END PGP SIGNATURE-


Accepted:
baycomusb_0.10-10.diff.gz
  to pool/main/b/baycomusb/baycomusb_0.10-10.diff.gz
baycomusb_0.10-10.dsc
  to pool/main/b/baycomusb/baycomusb_0.10-10.dsc
baycomusb_0.10-10_i386.deb
  to pool/main/b/baycomusb/baycomusb_0.10-10_i386.deb


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



Accepted kvm 71+dfsg-1 (source all i386)

2008-07-19 Thread Jan Lübbe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 15:52:45 +0200
Source: kvm
Binary: kvm kvm-source
Architecture: source all i386
Version: 71+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Jan Lübbe [EMAIL PROTECTED]
Changed-By: Jan Lübbe [EMAIL PROTECTED]
Description: 
 kvm- Full virtualization on x86 hardware
 kvm-source - Source for the KVM driver
Changes: 
 kvm (71+dfsg-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 33971d713482617c8a96e7768e33e2fbea8fbd71 1320 kvm_71+dfsg-1.dsc
 5078bebc26941feebd0279507a95cee08cf2fc65 3291480 kvm_71+dfsg.orig.tar.gz
 1d7a87aaacc8ceb76a47a4ef24f4cf2162fba009 35806 kvm_71+dfsg-1.diff.gz
 695e30eaf26c985a47072be0e5c06a122052 155494 kvm-source_71+dfsg-1_all.deb
 68656a2c64ee0b1009deae1e8e7c069576724edc 1000734 kvm_71+dfsg-1_i386.deb
Checksums-Sha256: 
 c296c124ba0b7e04199a6ec993adb55d6deb65b988033dd90ed191a60b7690aa 1320 
kvm_71+dfsg-1.dsc
 1938ad17efb1acac453c4a6d7093a7657a15cc5462969bdfa8f7423b7952686a 3291480 
kvm_71+dfsg.orig.tar.gz
 474ccd0951b805a3a9e01ee3611e6aba017e478eff815334391febaad4576da5 35806 
kvm_71+dfsg-1.diff.gz
 0803748f1853b23e08e20177b037d3e3e9d08ef1dc4f5667ec2e4944bfd10f9f 155494 
kvm-source_71+dfsg-1_all.deb
 2714a869a27510acde927b6b571c188ce0ceda0f4a515841511ec8aadeda79a8 1000734 
kvm_71+dfsg-1_i386.deb
Files: 
 e5d46d6a3dd3c1329bc763388de736ad 1320 misc optional kvm_71+dfsg-1.dsc
 a1df5d7bd5a5da5320b246ba7f8349e3 3291480 misc optional kvm_71+dfsg.orig.tar.gz
 2a9093f271e4918edc49de7eaa53063e 35806 misc optional kvm_71+dfsg-1.diff.gz
 5c5b66b10fa9d434a11f5bac9a731099 155494 misc optional 
kvm-source_71+dfsg-1_all.deb
 5fbaaaf6d34f94ddd1f3e7deed73851a 1000734 misc optional kvm_71+dfsg-1_i386.deb

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

iEYEARECAAYFAkiB9AkACgkQioOL5NhIDy7xIgCfXijJZxk3ZJ1fXd4UnV26lyd8
xhQAoLPsapHwF1cvezpM3Rcs44hPiOwA
=GnJ6
-END PGP SIGNATURE-


Accepted:
kvm-source_71+dfsg-1_all.deb
  to pool/main/k/kvm/kvm-source_71+dfsg-1_all.deb
kvm_71+dfsg-1.diff.gz
  to pool/main/k/kvm/kvm_71+dfsg-1.diff.gz
kvm_71+dfsg-1.dsc
  to pool/main/k/kvm/kvm_71+dfsg-1.dsc
kvm_71+dfsg-1_i386.deb
  to pool/main/k/kvm/kvm_71+dfsg-1_i386.deb
kvm_71+dfsg.orig.tar.gz
  to pool/main/k/kvm/kvm_71+dfsg.orig.tar.gz


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



Accepted freemat 3.6+dfsg-2 (source all amd64)

2008-07-19 Thread Giuseppe Iuculano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 11:24:52 +0200
Source: freemat
Binary: freemat freemat-data freemat-help
Architecture: source all amd64
Version: 3.6+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Giuseppe Iuculano [EMAIL PROTECTED]
Changed-By: Giuseppe Iuculano [EMAIL PROTECTED]
Description: 
 freemat- mathematics framework (mostly matlab compatible)
 freemat-data - freemat data files
 freemat-help - freemat help files
Changes: 
 freemat (3.6+dfsg-2) unstable; urgency=low
 .
   * debian/freemat.1:
 + Fix defualt freemat data path
 + Typo, remove a .TP before AUTHOR section.
   * Added a README.Debian to explain freemat -i /usr/share/freemat command
   * debian/patches/05_nostrip.dpatch: do not strip binaries
   * Added debian/freemat.desktop, and added dh_desktop in debian/rules
   * debian/copyright: Fixed some debian-copyright-line-too-long lintian
 warning
   * debian/control: move freemat-data from Recommends to Depends, freemat
 really needs it
Checksums-Sha1: 
 8de791cfc0d5a764c58f6468167f6cefe134e1c8 1317 freemat_3.6+dfsg-2.dsc
 51bbbe937b6a0f98a987df9a756a2b8bd5b7e08e 13223 freemat_3.6+dfsg-2.diff.gz
 70c3b0271d5d9d456f3a63ed645879f70be09215 203266 freemat-data_3.6+dfsg-2_all.deb
 4affefd8660992ec2a54694ee9b346d9c3486620 3092440 
freemat-help_3.6+dfsg-2_all.deb
 2ee2661c45e28415a45f0cd15ea395d84b9ccf56 1371464 freemat_3.6+dfsg-2_amd64.deb
Checksums-Sha256: 
 3a1e34a62554b6c043f1f3ef3c8506fa7b02bf40968c5ac9b17a2528f6a17983 1317 
freemat_3.6+dfsg-2.dsc
 1907c30151a178216f176e4ddcb549259e81027f4c1a8951db6d693b921ce161 13223 
freemat_3.6+dfsg-2.diff.gz
 38b73c4a0bdeff1aba27a9f4a72af374425faa8e09dbe6cf5efb95d775f94278 203266 
freemat-data_3.6+dfsg-2_all.deb
 fe68da57452f2ccff4ab8de0517fbe2573ec563a36ef6ac659c422f95c473c15 3092440 
freemat-help_3.6+dfsg-2_all.deb
 60d6e534d178256ba546cf27f013866e86a221d043de9bc42e14cb7917df76c2 1371464 
freemat_3.6+dfsg-2_amd64.deb
Files: 
 f508d8822a36dda726ab061328b08858 1317 math optional freemat_3.6+dfsg-2.dsc
 1ee369d87907705705ee0c071e751d49 13223 math optional freemat_3.6+dfsg-2.diff.gz
 725b4bd838d9472b6cd73aff0c608c33 203266 math optional 
freemat-data_3.6+dfsg-2_all.deb
 e1b42e19616e82a148f00852d41d2692 3092440 math optional 
freemat-help_3.6+dfsg-2_all.deb
 d4350a9aba60a9af1b188948b7974ee8 1371464 math optional 
freemat_3.6+dfsg-2_amd64.deb

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

iD8DBQFIgfcz9LSwzHl+v6sRAucbAJsH+eqawS1Li1Hiy45yvugIzTZUywCfU4mw
uCLvZ7MM4VnFlEfZSM2i42Y=
=kzMM
-END PGP SIGNATURE-


Accepted:
freemat-data_3.6+dfsg-2_all.deb
  to pool/main/f/freemat/freemat-data_3.6+dfsg-2_all.deb
freemat-help_3.6+dfsg-2_all.deb
  to pool/main/f/freemat/freemat-help_3.6+dfsg-2_all.deb
freemat_3.6+dfsg-2.diff.gz
  to pool/main/f/freemat/freemat_3.6+dfsg-2.diff.gz
freemat_3.6+dfsg-2.dsc
  to pool/main/f/freemat/freemat_3.6+dfsg-2.dsc
freemat_3.6+dfsg-2_amd64.deb
  to pool/main/f/freemat/freemat_3.6+dfsg-2_amd64.deb


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



Accepted xft 2.1.13-1 (source i386)

2008-07-19 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 16:30:18 +0200
Source: xft
Binary: libxft2 libxft2-dbg libxft-dev
Architecture: source i386
Version: 2.1.13-1
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Julien Cristau [EMAIL PROTECTED]
Description: 
 libxft-dev - FreeType-based font drawing library for X (development files)
 libxft2- FreeType-based font drawing library for X
 libxft2-dbg - FreeType-based font drawing library for X (unstripped)
Changes: 
 xft (2.1.13-1) experimental; urgency=low
 .
   [ Brice Goglin ]
   * Update upstream URL in debian/copyright.
 .
   [ Julien Cristau ]
   * New upstream release.
   * Stop handling nostrip explicitly in debian/rules (dh_strip does it
 already), and allow parallel builds using sample code from policy.
   * Switch to running autoreconf at build time; build-depend on automake,
 libtool and xutils-dev.
Checksums-Sha1: 
 e1f445e8bd63fc186f826d67a2636bc016f11f2a 1328 xft_2.1.13-1.dsc
 e049ca3cb23f8a8383ff53f8d16aaa29dea53ab1 380683 xft_2.1.13.orig.tar.gz
 34693221d7ec34923e5d64e81fe6fc5451f56739 21455 xft_2.1.13-1.diff.gz
 c3e85a29427eea10cc574ec7e1f27f734105138e 50394 libxft2_2.1.13-1_i386.deb
 d1215720f4788949f8a7e5d7f5a4df7fefdbf1ef 177018 libxft2-dbg_2.1.13-1_i386.deb
 ee5bd48f47a11f1ab4abb991934bf1309256a0b7 71822 libxft-dev_2.1.13-1_i386.deb
Checksums-Sha256: 
 6f8fba8874dcc9f98659af1f880cd9cf63799cc508a8a000bac54a1b9237328f 1328 
xft_2.1.13-1.dsc
 5c6058310325fe0b8da02968403fea23dd33fa4ed336d13374d955e04dfd94b5 380683 
xft_2.1.13.orig.tar.gz
 62ba649f06cd996b62afe0f71fbd591af51ae4846989efc6cdd26de0f26ebbc5 21455 
xft_2.1.13-1.diff.gz
 e66e259e0fe7bb0a1a60e87714752cfd2af09b9afad3f6b43716ca0664d47529 50394 
libxft2_2.1.13-1_i386.deb
 27c3051afdffbb804cd07edea0efe09f26ee327f6950ca7fe3f1050db2192cf5 177018 
libxft2-dbg_2.1.13-1_i386.deb
 500fd2a981492e46cd47d3abae8f4feefcde7b3b2be3acf014e8602fc407a05c 71822 
libxft-dev_2.1.13-1_i386.deb
Files: 
 07d75e7a116e78c23d0656c564f06603 1328 devel optional xft_2.1.13-1.dsc
 40ebc53da7efd520e528fa7a564863db 380683 devel optional xft_2.1.13.orig.tar.gz
 a6749b43aa944821c28617691fae6659 21455 devel optional xft_2.1.13-1.diff.gz
 e65a0ed59d8fc8f06b128eac44306c3c 50394 libs optional libxft2_2.1.13-1_i386.deb
 f77290a852498288a888550c9319f197 177018 libdevel extra 
libxft2-dbg_2.1.13-1_i386.deb
 f6d43781b9e8fb9ff59261396fe00a48 71822 libdevel optional 
libxft-dev_2.1.13-1_i386.deb

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

iEYEARECAAYFAkiB+4sACgkQmEvTgKxfcAxnGQCdEbVpUwla7rUmKbGpUKoox681
xMgAoMFGnc/4EKDOWAroavxOMwmbDP41
=93Vl
-END PGP SIGNATURE-


Accepted:
libxft-dev_2.1.13-1_i386.deb
  to pool/main/x/xft/libxft-dev_2.1.13-1_i386.deb
libxft2-dbg_2.1.13-1_i386.deb
  to pool/main/x/xft/libxft2-dbg_2.1.13-1_i386.deb
libxft2_2.1.13-1_i386.deb
  to pool/main/x/xft/libxft2_2.1.13-1_i386.deb
xft_2.1.13-1.diff.gz
  to pool/main/x/xft/xft_2.1.13-1.diff.gz
xft_2.1.13-1.dsc
  to pool/main/x/xft/xft_2.1.13-1.dsc
xft_2.1.13.orig.tar.gz
  to pool/main/x/xft/xft_2.1.13.orig.tar.gz


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



Accepted wmaker 0.92.0-8 (source amd64)

2008-07-19 Thread John H. Robinson, IV
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 19:35:34 -0700
Source: wmaker
Binary: wmaker libwmaker0-dev libwraster3-dev libwraster3 libwings-dev
Architecture: source amd64
Version: 0.92.0-8
Distribution: unstable
Urgency: low
Maintainer: John H. Robinson, IV [EMAIL PROTECTED]
Changed-By: John H. Robinson, IV [EMAIL PROTECTED]
Description: 
 libwings-dev - Window Maker's own widget set
 libwmaker0-dev - Static libraries and headers for Window Maker applications
 libwraster3 - Shared libraries of Window Maker rasterizer
 libwraster3-dev - Static libraries and headers of Window Maker rasterizer
 wmaker - NeXTSTEP-like window manager for X
Closes: 102314 394802
Changes: 
 wmaker (0.92.0-8) unstable; urgency=low
 .
   * Standards Version 3.8.0.1
   * Moved menu items into proper categories
   * Suggest programs in default Info menu
   * Restored default keybindings (Closes: #394802)
   * Applied Pedro Gimeno's keyboard timing patch (Closes: #102314)
   * Removed installation of documents that don't exist anymore
   * Removed empty /usr/include directory from wmaker package
Checksums-Sha1: 
 5c6a2b595409b6c897cbe25f0a325ef65e112c26 1260 wmaker_0.92.0-8.dsc
 be0d0e44afc82576bfca59fdc7f11c01eca04195 564001 wmaker_0.92.0-8.diff.gz
 978bddfa43cd31053f643a2522b4b6b1e763f5df 2520820 wmaker_0.92.0-8_amd64.deb
 0eabb15473434f6af3f8a59eb5607b1d10cf66af 71930 
libwmaker0-dev_0.92.0-8_amd64.deb
 76e95510dfc8a14bb95e79ad75de0259393cda51 123512 
libwraster3-dev_0.92.0-8_amd64.deb
 36daf92b4f1785adc391a06e7ad854be8fd0d675 112774 libwraster3_0.92.0-8_amd64.deb
 0f50cf6cd25dc00acedcb89706843f6f838df39a 398468 libwings-dev_0.92.0-8_amd64.deb
Checksums-Sha256: 
 79e3250ab21caa5b7eea057db52f0526984a44e30450c0d663e02caeaac4bf0f 1260 
wmaker_0.92.0-8.dsc
 65a46b81657d79bdac05835c84cccf572ca3593ad9913385cabba5b922f9fee2 564001 
wmaker_0.92.0-8.diff.gz
 6693ddbc994fb12acf296f6d75d32a5348a35052b5f3002392c3e192a612 2520820 
wmaker_0.92.0-8_amd64.deb
 10e95c5c5fcd725f6db3b73aecc6c905b2b821e17cee51e2eee3aea3f05d1164 71930 
libwmaker0-dev_0.92.0-8_amd64.deb
 f4b37614a0aa307681084006776fc9fbe9840752eb631d5119cabcf76b471a68 123512 
libwraster3-dev_0.92.0-8_amd64.deb
 8c43d254212ec24988ada97e9283f81cdb16afbebdfd9f6ee10f6c9b87626900 112774 
libwraster3_0.92.0-8_amd64.deb
 84f7e40d5362bcc857442e3042bcb10a211550fb3718f202a31e0e0564d2bdcc 398468 
libwings-dev_0.92.0-8_amd64.deb
Files: 
 391ea4778187b3b76b5a55f82612789a 1260 x11 optional wmaker_0.92.0-8.dsc
 c10ba97a4fdd7f2b8f8a3e4d2a5c831e 564001 x11 optional wmaker_0.92.0-8.diff.gz
 69c19e842dadfb3743f1edb9a3081583 2520820 x11 optional wmaker_0.92.0-8_amd64.deb
 0f3388800e56ea08a253d731ea0264ef 71930 libdevel optional 
libwmaker0-dev_0.92.0-8_amd64.deb
 065819897277a694ba90292ea4ccf96a 123512 libdevel optional 
libwraster3-dev_0.92.0-8_amd64.deb
 b98584bc4ca82dd64933232b3b132299 112774 libs optional 
libwraster3_0.92.0-8_amd64.deb
 9e329bc5022abe49bc68ccaf1dd50ead 398468 libdevel optional 
libwings-dev_0.92.0-8_amd64.deb

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

iD8DBQFIggZRrelPZQd5nnQRAq3MAKCKBc6OV0fEsAuumbPL0OvWqSjWyQCfdL39
a3xqKdDo3JGCw29O66WbNQM=
=aPl/
-END PGP SIGNATURE-


Accepted:
libwings-dev_0.92.0-8_amd64.deb
  to pool/main/w/wmaker/libwings-dev_0.92.0-8_amd64.deb
libwmaker0-dev_0.92.0-8_amd64.deb
  to pool/main/w/wmaker/libwmaker0-dev_0.92.0-8_amd64.deb
libwraster3-dev_0.92.0-8_amd64.deb
  to pool/main/w/wmaker/libwraster3-dev_0.92.0-8_amd64.deb
libwraster3_0.92.0-8_amd64.deb
  to pool/main/w/wmaker/libwraster3_0.92.0-8_amd64.deb
wmaker_0.92.0-8.diff.gz
  to pool/main/w/wmaker/wmaker_0.92.0-8.diff.gz
wmaker_0.92.0-8.dsc
  to pool/main/w/wmaker/wmaker_0.92.0-8.dsc
wmaker_0.92.0-8_amd64.deb
  to pool/main/w/wmaker/wmaker_0.92.0-8_amd64.deb


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



Accepted user-mode-linux 2.6.25-1um-1 (source i386)

2008-07-19 Thread Mattia Dongili
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 19:58:26 +0900
Source: user-mode-linux
Binary: user-mode-linux
Architecture: source i386
Version: 2.6.25-1um-1
Distribution: unstable
Urgency: low
Maintainer: User Mode Linux Maintainers [EMAIL PROTECTED]
Changed-By: Mattia Dongili [EMAIL PROTECTED]
Description: 
 user-mode-linux - User-mode Linux (kernel)
Closes: 467475 488830
Changes: 
 user-mode-linux (2.6.25-1um-1) unstable; urgency=low
 .
   * New upstream release.
   * now obviously depends on linux-source-2.6.25 (Closes: #488830)
   * added a patch successfully build with gcc-4.3 (Closes: #467475)
   * added a patch to fix UML segfaulting on negative semaphore values
Checksums-Sha1: 
 a3eeed0ef8dc2308c1536a2edbfa6f0de2df2266 1272 user-mode-linux_2.6.25-1um-1.dsc
 4de62c9851c06520926cf367ce374590753c8130 12178 
user-mode-linux_2.6.25-1um.orig.tar.gz
 2aad006cc535a970293d0c8141378bf7970283d0 14402 
user-mode-linux_2.6.25-1um-1.diff.gz
 65f9923e941d79587b70cf8fc27c610230a6e7d2 5335778 
user-mode-linux_2.6.25-1um-1_i386.deb
Checksums-Sha256: 
 86318d79d0af33229ba534599b9221a99ac91a2c9d5139ae9d2bb2772edf567f 1272 
user-mode-linux_2.6.25-1um-1.dsc
 1cdfe3d3117bc12df39bbe31ac9802238405d517c4ab8864126bf3ad34a380e9 12178 
user-mode-linux_2.6.25-1um.orig.tar.gz
 e68a12eea8e25bdd3748d785ae0e624f471a7f088e76e648f9bd5fc6f88029e2 14402 
user-mode-linux_2.6.25-1um-1.diff.gz
 d3ed3296572e8917dded2b1260c23466efd56099dc8b369337eac5c284e1ceba 5335778 
user-mode-linux_2.6.25-1um-1_i386.deb
Files: 
 400e04f473b27c25554115267f5e25a6 1272 misc extra 
user-mode-linux_2.6.25-1um-1.dsc
 8c803dd9c81acb7449deb2b70609ebcd 12178 misc extra 
user-mode-linux_2.6.25-1um.orig.tar.gz
 4d39de30ba883d500af49c2334cca0ff 14402 misc extra 
user-mode-linux_2.6.25-1um-1.diff.gz
 d0a749e8be752e7e1de914b93f3f4824 5335778 misc extra 
user-mode-linux_2.6.25-1um-1_i386.deb

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

iEYEARECAAYFAkiB/1gACgkQgpRPaOotLEE6VgCfXBkJf3k97toN4C8kBfCwzyoY
+3YAn2fsAZaGb9MjJcM56ygSlzeXjvAj
=e7d/
-END PGP SIGNATURE-


Accepted:
user-mode-linux_2.6.25-1um-1.diff.gz
  to pool/main/u/user-mode-linux/user-mode-linux_2.6.25-1um-1.diff.gz
user-mode-linux_2.6.25-1um-1.dsc
  to pool/main/u/user-mode-linux/user-mode-linux_2.6.25-1um-1.dsc
user-mode-linux_2.6.25-1um-1_i386.deb
  to pool/main/u/user-mode-linux/user-mode-linux_2.6.25-1um-1_i386.deb
user-mode-linux_2.6.25-1um.orig.tar.gz
  to pool/main/u/user-mode-linux/user-mode-linux_2.6.25-1um.orig.tar.gz


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



Accepted vdr 1.6.0-5 (source all i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 16:25:21 +0200
Source: vdr
Binary: vdr vdr-dev vdr-dbg vdr-plugin-sky vdr-plugin-examples
Architecture: source all i386
Version: 1.6.0-5
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr- Video Disk Recorder for DVB cards
 vdr-dbg- Debuggable version of the VDR Video Disk Recorder
 vdr-dev- Video Disk Recorder for DVB cards
 vdr-plugin-examples - Plugins for vdr to show some possible features
 vdr-plugin-sky - Plugin for using a Sky Digibox with vdr
Closes: 489914 490651
Changes: 
 vdr (1.6.0-5) unstable; urgency=low
 .
   [ Thomas Schmidt ]
   * Bumped Standards-Version to 3.8.0
 .
   [ Tobias Grimm ]
   * Using Provides: vdr-abi-1.6.0-debian now, which plugin packages can 
depend
 on. This way only plugins compiled for the specified ABI version can be
 installed, allowing us to remove the runtime patch level test.
 (Closes: #489914)
   * Setting VDR_LANG now takes care of /etc/default/locale if available,
 otherwise uses /etc/environment or falls back to C (Closes: #490651)
Checksums-Sha1: 
 bce0f762a00a0f9562d8a625fbbeb0e95581354c 1387 vdr_1.6.0-5.dsc
 8c815f4236d1981463749a68765b045e9bef0fc8 133558 vdr_1.6.0-5.diff.gz
 b4c74a5a4ec399b5f2e00a9d6def32282b61f579 295604 vdr-dev_1.6.0-5_all.deb
 5e98104acbe0a96c40e2b04499f7e99de0e0e923 836818 vdr_1.6.0-5_i386.deb
 b2577394e8cdb6636d5844d5dabe19013ab26be7 1225106 vdr-dbg_1.6.0-5_i386.deb
 e4e4d1aa3415fc1247297c46b8d588df48ef2dd8 32026 vdr-plugin-sky_1.6.0-5_i386.deb
 6e035a0a5e73d59ca0fe368d93e3cbcffb36f854 72094 
vdr-plugin-examples_1.6.0-5_i386.deb
Checksums-Sha256: 
 2243e6e7e6e3153c8705cfa5c5923b7df3008a8c22e250d82c057c0578179291 1387 
vdr_1.6.0-5.dsc
 e1690e009b17ca33304be9ad191209e893cda14b247f27fae492814e3f3e8aa4 133558 
vdr_1.6.0-5.diff.gz
 8766b7589c1258c31e757d8c38f35ccf8d8f20ff8b67920188653fed76ef3c9c 295604 
vdr-dev_1.6.0-5_all.deb
 87432fa40411c6d63e93da8162189a33164cfdac36eb9c85f4965b2c30e6eed3 836818 
vdr_1.6.0-5_i386.deb
 6bc4b8655601a0a998d5f89506036ff8a8cbffd3ef35b859acae4a591ede309e 1225106 
vdr-dbg_1.6.0-5_i386.deb
 4a64b8dcdbcce018d29cfa82dcc870a3b44a897bd27432e6033c15ce78fe50e5 32026 
vdr-plugin-sky_1.6.0-5_i386.deb
 711226777e622c92d01de0116a9b18956cb2147f19114ccc8b034d0d6a9c9537 72094 
vdr-plugin-examples_1.6.0-5_i386.deb
Files: 
 d028f033f49f003404fc6642445694cd 1387 misc extra vdr_1.6.0-5.dsc
 828bb1fc29fa6a294ed906f4ab01e336 133558 misc extra vdr_1.6.0-5.diff.gz
 a3f619f904b31c56361685eb50e93de6 295604 misc extra vdr-dev_1.6.0-5_all.deb
 983e1103b48c897fcd7fa460c2f6be8b 836818 misc extra vdr_1.6.0-5_i386.deb
 7baf3c0701a1d58dac0df7ebb25abf1e 1225106 misc extra vdr-dbg_1.6.0-5_i386.deb
 f0fad8f79facf34905df364c9d380058 32026 misc extra 
vdr-plugin-sky_1.6.0-5_i386.deb
 b666505dea980eb8ae5b399f965248bc 72094 misc extra 
vdr-plugin-examples_1.6.0-5_i386.deb

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

iEYEARECAAYFAkiCCRMACgkQc9+NqwoydlIEHQCfc5NP19F1QBgjwld2hjIm6H7E
BBEAoLL7HLZ4yla/dHCNcas84QtYIv2n
=yx7z
-END PGP SIGNATURE-


Accepted:
vdr-dbg_1.6.0-5_i386.deb
  to pool/main/v/vdr/vdr-dbg_1.6.0-5_i386.deb
vdr-dev_1.6.0-5_all.deb
  to pool/main/v/vdr/vdr-dev_1.6.0-5_all.deb
vdr-plugin-examples_1.6.0-5_i386.deb
  to pool/main/v/vdr/vdr-plugin-examples_1.6.0-5_i386.deb
vdr-plugin-sky_1.6.0-5_i386.deb
  to pool/main/v/vdr/vdr-plugin-sky_1.6.0-5_i386.deb
vdr_1.6.0-5.diff.gz
  to pool/main/v/vdr/vdr_1.6.0-5.diff.gz
vdr_1.6.0-5.dsc
  to pool/main/v/vdr/vdr_1.6.0-5.dsc
vdr_1.6.0-5_i386.deb
  to pool/main/v/vdr/vdr_1.6.0-5_i386.deb


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



Accepted gnustep-gui 0.14.0-4 (source all i386)

2008-07-19 Thread Hubert Chathi
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sat, 19 Jul 2008 11:13:23 -0400
Source: gnustep-gui
Binary: gnustep-gui-common gnustep-gui-runtime libgnustep-gui0.14 
libgnustep-gui-dev libgnustep-gui0.14-dbg gnustep-gui-doc
Architecture: source all i386
Version: 0.14.0-4
Distribution: unstable
Urgency: low
Maintainer: Debian GNUstep maintainers [EMAIL PROTECTED]
Changed-By: Hubert Chathi [EMAIL PROTECTED]
Description: 
 gnustep-gui-common - GNUstep GUI Library - common files
 gnustep-gui-doc - Documentation for the GNUstep GUI Library
 gnustep-gui-runtime - GNUstep GUI Library - runtime files
 libgnustep-gui-dev - GNUstep GUI header files and static libraries
 libgnustep-gui0.14 - GNUstep GUI Library
 libgnustep-gui0.14-dbg - GNUstep GUI Library - debugging symbols
Closes: 456257
Changes: 
 gnustep-gui (0.14.0-4) unstable; urgency=low
 .
   * debian/rules: Move definition of HURD_CONF outside of the rule.
 (Really closes: #456257)
   * debian/control: Build-depend on texlive-base and texlive-latex-base
 instead of just texlive-base-bin.
Checksums-Sha1: 
 e94e6619fab64295dd4248fdcaa853f2260c 1425 gnustep-gui_0.14.0-4.dsc
 6fb142d7411c7354fe5b0c767cf14127f12e835f 13439 gnustep-gui_0.14.0-4.diff.gz
 588d5b88fc468bf79cf48e026cdb547728d3872d 187788 
gnustep-gui-common_0.14.0-4_all.deb
 1c779c5375cdb4a701ca9e6e6e3681e2fcf9f70f 800 
gnustep-gui-doc_0.14.0-4_all.deb
 54835e94e652df9c8c19fc10e43c5e4dc2ee2471 170400 
gnustep-gui-runtime_0.14.0-4_i386.deb
 a2916e6bfa8f41e592c9e23a5e72f9b7fe2c5857 1197332 
libgnustep-gui0.14_0.14.0-4_i386.deb
 cd994c377f9c72f62e10766d84a161b161939889 2277986 
libgnustep-gui-dev_0.14.0-4_i386.deb
 740e25810881aea99ffd03ee7d51f7b3bd6f1365 2265000 
libgnustep-gui0.14-dbg_0.14.0-4_i386.deb
Checksums-Sha256: 
 ddb558e9e7ad5dc8714449a2937123277af645bc831fea69ed64e6fa273b9ef9 1425 
gnustep-gui_0.14.0-4.dsc
 9dcc8629b94f94efaa9d451b77504d34ab1f3feaa5a56a01b6f5eafaec4c3a49 13439 
gnustep-gui_0.14.0-4.diff.gz
 f3b8d30bdde33f729cea33d0da69a6145da228e1da8ca8209aeeccefe4789dea 187788 
gnustep-gui-common_0.14.0-4_all.deb
 fedeaf940eda9eb9a7ca8a0da6979790e8dd3ac4bb8eeb2f5da175d124469cad 800 
gnustep-gui-doc_0.14.0-4_all.deb
 74a87e2f295f816d6d5bee6b46aae170ba1bac6c0a9ec01ab3b9be6224da6b5b 170400 
gnustep-gui-runtime_0.14.0-4_i386.deb
 c3e18c7acf3214a711a5e867c9cc69ed2b27bb8a569eb62364beccfd5f7ae3bd 1197332 
libgnustep-gui0.14_0.14.0-4_i386.deb
 f37655e6645100e60fbad7561d493d87e3efae989f5c2d7995fdffc9adf579f3 2277986 
libgnustep-gui-dev_0.14.0-4_i386.deb
 79cb74a786a967fa8ca94c9a698cecbf794f8b28e121cf13a1023ff2bebb24c2 2265000 
libgnustep-gui0.14-dbg_0.14.0-4_i386.deb
Files: 
 970024125452c8ac978444b7dfc9ff78 1425 devel optional gnustep-gui_0.14.0-4.dsc
 19fe8d0b41f0c0a2400490402f4d41d6 13439 devel optional 
gnustep-gui_0.14.0-4.diff.gz
 c076e09f20c27f79a652f663ba3d8581 187788 libs optional 
gnustep-gui-common_0.14.0-4_all.deb
 86f75010dc2d742f91028b80632c82ac 800 doc optional 
gnustep-gui-doc_0.14.0-4_all.deb
 ac1000ef482e1d133dd8618a7da7437e 170400 libs optional 
gnustep-gui-runtime_0.14.0-4_i386.deb
 b2d89daab633d260b4e4788dc2c3b5b4 1197332 libs optional 
libgnustep-gui0.14_0.14.0-4_i386.deb
 6fe9d576773e5c553db21e3cbfbfc9dd 2277986 libdevel optional 
libgnustep-gui-dev_0.14.0-4_i386.deb
 d94f08e6c39b6699281996a36831f14a 2265000 libdevel extra 
libgnustep-gui0.14-dbg_0.14.0-4_i386.deb

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

iD8DBQFIggv5rynHGRJLYfoRAzfGAJ0cMiyYvVR4P1K7Myk7kdNhTvvj5QCfYjPk
JZ1HXa2TCGPjx6yBmWYNjtU=
=FUV4
-END PGP SIGNATURE-


Accepted:
gnustep-gui-common_0.14.0-4_all.deb
  to pool/main/g/gnustep-gui/gnustep-gui-common_0.14.0-4_all.deb
gnustep-gui-doc_0.14.0-4_all.deb
  to pool/main/g/gnustep-gui/gnustep-gui-doc_0.14.0-4_all.deb
gnustep-gui-runtime_0.14.0-4_i386.deb
  to pool/main/g/gnustep-gui/gnustep-gui-runtime_0.14.0-4_i386.deb
gnustep-gui_0.14.0-4.diff.gz
  to pool/main/g/gnustep-gui/gnustep-gui_0.14.0-4.diff.gz
gnustep-gui_0.14.0-4.dsc
  to pool/main/g/gnustep-gui/gnustep-gui_0.14.0-4.dsc
libgnustep-gui-dev_0.14.0-4_i386.deb
  to pool/main/g/gnustep-gui/libgnustep-gui-dev_0.14.0-4_i386.deb
libgnustep-gui0.14-dbg_0.14.0-4_i386.deb
  to pool/main/g/gnustep-gui/libgnustep-gui0.14-dbg_0.14.0-4_i386.deb
libgnustep-gui0.14_0.14.0-4_i386.deb
  to pool/main/g/gnustep-gui/libgnustep-gui0.14_0.14.0-4_i386.deb


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



Accepted gnustep-base 1.16.3-2 (source all i386)

2008-07-19 Thread Hubert Chathi
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sat, 19 Jul 2008 11:36:33 -0400
Source: gnustep-base
Binary: gnustep-base-common gnustep-base-runtime libgnustep-base1.16 
libgnustep-base1.16-libffi libgnustep-base-dev libgnustep-base1.16-dbg 
libgnustep-base1.16-libffi-dbg gnustep-base-examples gnustep-base-doc
Architecture: source all i386
Version: 1.16.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian GNUstep maintainers [EMAIL PROTECTED]
Changed-By: Hubert Chathi [EMAIL PROTECTED]
Description: 
 gnustep-base-common - GNUstep Base library - common files
 gnustep-base-doc - Documentation for the GNUstep Base Library
 gnustep-base-examples - Examples using the GNUstep Base Library
 gnustep-base-runtime - GNUstep Base library
 libgnustep-base-dev - GNUstep Base header files and development libraries
 libgnustep-base1.16 - GNUstep Base library
 libgnustep-base1.16-dbg - GNUstep Base library - debugging symbols
 libgnustep-base1.16-libffi - GNUstep Base library - libffi version
 libgnustep-base1.16-libffi-dbg - GNUstep Base library - debugging symbols
Changes: 
 gnustep-base (1.16.3-2) unstable; urgency=low
 .
   * debian/rules: Don't build against libffi on non-libffi packages.
Checksums-Sha1: 
 375eb1356922189dc1eef0859c7812f542cced83 1877 gnustep-base_1.16.3-2.dsc
 964a6c4a463a48630a3d31d1a7dec6885f3165d0 18720 gnustep-base_1.16.3-2.diff.gz
 324ae7b62ba4fa69d86e6e9f65a890a998457401 130356 
gnustep-base-common_1.16.3-2_all.deb
 51605a7718b8a2cbfbaaecd32e06a84882b66341 67782 
gnustep-base-examples_1.16.3-2_all.deb
 1ccb59028bf27a518fb17c2e12c64f57f7ee6d7b 87894 
gnustep-base-doc_1.16.3-2_all.deb
 ca6990a703e65b7566efe623b4b60908e39aff7c 189042 
gnustep-base-runtime_1.16.3-2_i386.deb
 b6f99fc514263eb3c4767566d9744bd69273bb1f 1011022 
libgnustep-base1.16_1.16.3-2_i386.deb
 c3958ff5f40a57f0b1c50b38fccd1dec22a8220a 1009890 
libgnustep-base1.16-libffi_1.16.3-2_i386.deb
 5e828ed7440954a9ef27fd2c81f4ccbf81ee3976 1856076 
libgnustep-base-dev_1.16.3-2_i386.deb
 23d0aa7c5b20bb3f704d6536abf045f88fda997d 1382428 
libgnustep-base1.16-dbg_1.16.3-2_i386.deb
 6450bdf292ebe4be1f07d7fc4280087205b8d1f6 2577534 
libgnustep-base1.16-libffi-dbg_1.16.3-2_i386.deb
Checksums-Sha256: 
 1d0ccd62a05817af963723c32a0a9e3c58ab4cbb80a9a085b929b44ba89d4a87 1877 
gnustep-base_1.16.3-2.dsc
 2c6297d1980a39ea4b34d67ea01181eaf4c0c7c89b7151b378acb2505fac1b31 18720 
gnustep-base_1.16.3-2.diff.gz
 51e28bdf3595a1d439237f1f05d1a6be363e3e478e776e01dc83b7c73f5c537f 130356 
gnustep-base-common_1.16.3-2_all.deb
 e51ac5d00f8ded72a76fa69749094d2cd9a3077e73d2fe375603b067bc94d008 67782 
gnustep-base-examples_1.16.3-2_all.deb
 2a2f885b4dfd4167ab1d5253f67fe818ce770e87fd1fd75c7c440b7ce317c9f4 87894 
gnustep-base-doc_1.16.3-2_all.deb
 01e5ad391cf9559f80d9e35a6529469445fdf1fe3366cff83b1e0abc014abe55 189042 
gnustep-base-runtime_1.16.3-2_i386.deb
 aed30ac9a6f1081206f146ae81d39f83a101592ad229f5f00f920191aa361c34 1011022 
libgnustep-base1.16_1.16.3-2_i386.deb
 8b82962c901d13c78c38fcf208dca9314cc5a11572e140658fe8839112260842 1009890 
libgnustep-base1.16-libffi_1.16.3-2_i386.deb
 09b52733370bf65d1a17acb688a866929264ba0c99c7496c7277bc07cbc9aff9 1856076 
libgnustep-base-dev_1.16.3-2_i386.deb
 439dd304ef15c89220405cd85945e92b32e570303a9d06f113275a525c0b6723 1382428 
libgnustep-base1.16-dbg_1.16.3-2_i386.deb
 a4598c9c00664d1180a993eb78e82b3672290f093664baf49ce326dcfe83f588 2577534 
libgnustep-base1.16-libffi-dbg_1.16.3-2_i386.deb
Files: 
 081695ee08f7bae08c0b63ff820d569d 1877 devel optional gnustep-base_1.16.3-2.dsc
 d897e6e56385d7ce14d7df273209877f 18720 devel optional 
gnustep-base_1.16.3-2.diff.gz
 3540283bf1a1d209105184d9d5af7291 130356 libs optional 
gnustep-base-common_1.16.3-2_all.deb
 69006eea0b28499327499645a122ec9b 67782 devel optional 
gnustep-base-examples_1.16.3-2_all.deb
 ab8b860a4625ed73b349a6b8e69fce94 87894 doc optional 
gnustep-base-doc_1.16.3-2_all.deb
 3bdc127d030eebcca410f42d89755dc6 189042 libs optional 
gnustep-base-runtime_1.16.3-2_i386.deb
 d3c9f69daaf4f8579a4b5cce81aec906 1011022 libs optional 
libgnustep-base1.16_1.16.3-2_i386.deb
 148bcc362351c566b1cddc100303e3db 1009890 libs optional 
libgnustep-base1.16-libffi_1.16.3-2_i386.deb
 70aa005a505f97a96f2dc7ad61549b2c 1856076 libdevel optional 
libgnustep-base-dev_1.16.3-2_i386.deb
 a26784cf76e0c542af73f963a946dce5 1382428 libdevel extra 
libgnustep-base1.16-dbg_1.16.3-2_i386.deb
 16defff98bc568f989db752da0f33214 2577534 libdevel extra 
libgnustep-base1.16-libffi-dbg_1.16.3-2_i386.deb

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

iD8DBQFIghMJrynHGRJLYfoRA8msAJ0cgxN+/AyVdGFHBqVuJofYOjjRyACcCcTB
302EflN216/VynD0o3i8/Y0=
=jPG+
-END PGP SIGNATURE-


Accepted:
gnustep-base-common_1.16.3-2_all.deb
  to pool/main/g/gnustep-base/gnustep-base-common_1.16.3-2_all.deb
gnustep-base-doc_1.16.3-2_all.deb
  to pool/main/g/gnustep-base/gnustep-base-doc_1.16.3-2_all.deb
gnustep-base-examples_1.16.3-2_all.deb
  to 

Accepted wu-ftpd 2.6.2-30 (source amd64)

2008-07-19 Thread Chris Butler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 21 Jun 2008 16:19:51 +0100
Source: wu-ftpd
Binary: wu-ftpd
Architecture: source amd64
Version: 2.6.2-30
Distribution: unstable
Urgency: low
Maintainer: Chris Butler [EMAIL PROTECTED]
Changed-By: Chris Butler [EMAIL PROTECTED]
Description: 
 wu-ftpd- powerful and widely used FTP server
Closes: 486703
Changes: 
 wu-ftpd (2.6.2-30) unstable; urgency=low
 .
   * Removed logcheck ignore rules, to avoid conflict with logcheck-database
 package (closes: #486703)
   * Upped standards-version to 3.8.0
 - Added support for parallel option to debian/rules
Checksums-Sha1: 
 2e82cda52705cae5b73e0ea2d44ee615913606bf 1156 wu-ftpd_2.6.2-30.dsc
 3e96077111877563845484dabccf075c7ce77435 143044 wu-ftpd_2.6.2-30.diff.gz
 7fa3d1b63e74dc1941b03bc5bf8066f7275d6ed1 292098 wu-ftpd_2.6.2-30_amd64.deb
Checksums-Sha256: 
 fdd89098622a2879bcc4d2c5c1a519e69bf8a7a8bbed42a2d490e51cea488224 1156 
wu-ftpd_2.6.2-30.dsc
 5e946af13ba5cbeada1aa22d232a6363485717f795c8eb434967ec58cc0fe0e7 143044 
wu-ftpd_2.6.2-30.diff.gz
 a49a1827dfb61fbf53109720279c2b8128476b621755fcdc2b60862b1e79dcef 292098 
wu-ftpd_2.6.2-30_amd64.deb
Files: 
 4ad9c03a7316a160853a52bd2a2edac3 1156 net extra wu-ftpd_2.6.2-30.dsc
 c5c407fa05beda9656eff041f5c72d13 143044 net extra wu-ftpd_2.6.2-30.diff.gz
 98a451d3d9640a562924ee4e2373f829 292098 net extra wu-ftpd_2.6.2-30_amd64.deb

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

iD8DBQFIgg+MDzQFd9CXomERAkQpAKCHFBnYTcdOeJMIiJcYZg0BNMYF0wCgoXR9
6Zc5fBwVeLCswVaglM7hd2I=
=lhVe
-END PGP SIGNATURE-


Accepted:
wu-ftpd_2.6.2-30.diff.gz
  to pool/main/w/wu-ftpd/wu-ftpd_2.6.2-30.diff.gz
wu-ftpd_2.6.2-30.dsc
  to pool/main/w/wu-ftpd/wu-ftpd_2.6.2-30.dsc
wu-ftpd_2.6.2-30_amd64.deb
  to pool/main/w/wu-ftpd/wu-ftpd_2.6.2-30_amd64.deb


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



Accepted sixpack 1:0.64-1 (source all)

2008-07-19 Thread Carlo Segre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 11:00:32 -0500
Source: sixpack
Binary: sixpack
Architecture: source all
Version: 1:0.64-1
Distribution: unstable
Urgency: low
Maintainer: Carlo Segre [EMAIL PROTECTED]
Changed-By: Carlo Segre [EMAIL PROTECTED]
Description: 
 sixpack- full-featured package for XAS analysis
Changes: 
 sixpack (1:0.64-1) unstable; urgency=low
 .
   * New upstream release
   * add call to dh_desktop
Checksums-Sha1: 
 ca783a192e2aaa627d9a0576d41e884b300f6137 1093 sixpack_0.64-1.dsc
 529cac1e0a4cd88e021e4a484ee2075ab8cb15d4 274797 sixpack_0.64.orig.tar.gz
 259c6788c37af3a21b403f687395fe051458db81 9699 sixpack_0.64-1.diff.gz
 629909574399ad25f2784b1825f5fb1ed4729dca 161952 sixpack_0.64-1_all.deb
Checksums-Sha256: 
 e7372a7dcf51bca8de7cc7fa5ea2ab0e28a769dfd9b210c72bec2f268ed823ea 1093 
sixpack_0.64-1.dsc
 2257a904580c28b8b396ab6d3eddb967baaf59f7d0358d526b0ba6a19aafac87 274797 
sixpack_0.64.orig.tar.gz
 8812712da23f83c8600aedbc7613f5d5fb796b7626f4a7b1b2210b8411efb83a 9699 
sixpack_0.64-1.diff.gz
 4cd6c5aaeea44aef814ab0d13619c434971731b9adc43b9692c383d952dde09c 161952 
sixpack_0.64-1_all.deb
Files: 
 70b1d0df6e022324916f6752502490ef 1093 contrib/science optional 
sixpack_0.64-1.dsc
 e9cad970c523deeff90c163bc0a41017 274797 contrib/science optional 
sixpack_0.64.orig.tar.gz
 8f60465505ee63498784a9c7982752d6 9699 contrib/science optional 
sixpack_0.64-1.diff.gz
 033e65f580113abe556e9ce1eb4745e3 161952 contrib/science optional 
sixpack_0.64-1_all.deb

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

iD8DBQFIghCZebASZpNwHu8RAuXyAJ9UHeogPeCjLOGmToXE1oOLhvbxnwCfYRfg
aBnmfPPBVQH1d4fH4xgzKPA=
=Dm3y
-END PGP SIGNATURE-


Accepted:
sixpack_0.64-1.diff.gz
  to pool/contrib/s/sixpack/sixpack_0.64-1.diff.gz
sixpack_0.64-1.dsc
  to pool/contrib/s/sixpack/sixpack_0.64-1.dsc
sixpack_0.64-1_all.deb
  to pool/contrib/s/sixpack/sixpack_0.64-1_all.deb
sixpack_0.64.orig.tar.gz
  to pool/contrib/s/sixpack/sixpack_0.64.orig.tar.gz


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



Accepted aufs 0+20080719-1 (source all amd64)

2008-07-19 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:52:16 +0200
Source: aufs
Binary: aufs-tools aufs-source linux-patch-aufs
Architecture: source all amd64
Version: 0+20080719-1
Distribution: unstable
Urgency: low
Maintainer: Julian Andres Klode [EMAIL PROTECTED]
Changed-By: Julian Andres Klode [EMAIL PROTECTED]
Description: 
 aufs-source - Source for the aufs driver
 aufs-tools - Tools to manage aufs filesystems
 linux-patch-aufs - Kernel patches for aufs
Closes: 489538 490079
Changes: 
 aufs (0+20080719-1) unstable; urgency=low
 .
   * New upstream snapshot, fixing many bugs
   * debian/conf.mk: Build with CONFIG_AUFS_EXPORT (Closes: #490079)
   * debian/patches/01_vserver_apparmor.dpatch: Update for whitespace changes
   * debian/patches/08_bashisms.dpatch: Remove some bashisms (Closes: #489538)
 - The $HOSTNAME in the bug was no bashism, but a variable set in linuxrc.
 - This fixes many test -[a|o] and local foo=bar issues.
   * debian/patches/09_fixmanpage.dpatch: Fix all hyphen used as minus sign
 lintian messages.
   * debian/watch: Add comments-only watch file explaining that no upstream
 tarballs are available.
   * Policy 3.8.0, add README.source
Checksums-Sha1: 
 3f27213c401b006886ed67161a232ac931e56f7b 1101 aufs_0+20080719-1.dsc
 ea8b5848885df13cdec4d0dea4b36e0f808090c7 421406 aufs_0+20080719.orig.tar.gz
 d6b816c5c54cf5710a0a812b36e6ae7bd32022e7 14575 aufs_0+20080719-1.diff.gz
 a2002ac60901c7cb307d4b2bd4be6a5bb71add66 41780 
linux-patch-aufs_0+20080719-1_all.deb
 2bad2ba7209fa7c4927e0294b9aeaa93b2fa2e53 223972 
aufs-source_0+20080719-1_all.deb
 e601b65511a4659d62566a486e703b73b8fd64b1 121914 
aufs-tools_0+20080719-1_amd64.deb
Checksums-Sha256: 
 4c07a4c872866a1d89dc85052b9f72cf3aabfa926dae890d4e1be7fb8ac761fe 1101 
aufs_0+20080719-1.dsc
 b877f72f79886a4d52586bef57d8d5fb7c0681b610a30d2a2cfad27913337d22 421406 
aufs_0+20080719.orig.tar.gz
 563629565838ec7696f033cf9139178406955a82fc07f91bc078ca5d83f5ea82 14575 
aufs_0+20080719-1.diff.gz
 d7c358c18127292ec0323aec1e383b4b36852a3900a2047df272ace315a5a413 41780 
linux-patch-aufs_0+20080719-1_all.deb
 6d0cad6849e85a45e7e1d1d39f49d54e96a8237eeb648ad65151f961263160db 223972 
aufs-source_0+20080719-1_all.deb
 7bbc45d5b77b9420538ca9b9fd712b4a469613014bb5ed82e930cab4a7051134 121914 
aufs-tools_0+20080719-1_amd64.deb
Files: 
 146fe42705b0507ba465dba56eea37cd 1101 misc optional aufs_0+20080719-1.dsc
 a4b7398525045f5c8c0c12e21a4c1db8 421406 misc optional 
aufs_0+20080719.orig.tar.gz
 6ff79e49972d689b7c25d16b6f482fb2 14575 misc optional aufs_0+20080719-1.diff.gz
 6032f4ee3fcf14bc3ef78a01e3a551ed 41780 misc optional 
linux-patch-aufs_0+20080719-1_all.deb
 58c9875a7cdcff8c0c8e8f90f6feb082 223972 misc optional 
aufs-source_0+20080719-1_all.deb
 ae918e8db5125bfc1e5916b13d326c50 121914 misc optional 
aufs-tools_0+20080719-1_amd64.deb

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

iEYEARECAAYFAkiCHIAACgkQrCpf/gCCPsK1gACdEQ/titlPNrKwwXuFUr90fSte
+a8AoLRxVlmwfXfnfgtqXeT2kqFbqi+D
=rvVU
-END PGP SIGNATURE-


Accepted:
aufs-source_0+20080719-1_all.deb
  to pool/main/a/aufs/aufs-source_0+20080719-1_all.deb
aufs-tools_0+20080719-1_amd64.deb
  to pool/main/a/aufs/aufs-tools_0+20080719-1_amd64.deb
aufs_0+20080719-1.diff.gz
  to pool/main/a/aufs/aufs_0+20080719-1.diff.gz
aufs_0+20080719-1.dsc
  to pool/main/a/aufs/aufs_0+20080719-1.dsc
aufs_0+20080719.orig.tar.gz
  to pool/main/a/aufs/aufs_0+20080719.orig.tar.gz
linux-patch-aufs_0+20080719-1_all.deb
  to pool/main/a/aufs/linux-patch-aufs_0+20080719-1_all.deb


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



Accepted nis 3.17-15 (source amd64)

2008-07-19 Thread Mark Brown
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 16:19:04 +0100
Source: nis
Binary: nis
Architecture: source amd64
Version: 3.17-15
Distribution: unstable
Urgency: low
Maintainer: Mark Brown [EMAIL PROTECTED]
Changed-By: Mark Brown [EMAIL PROTECTED]
Description: 
 nis- Clients and daemons for the Network Information Services (NIS)
Closes: 484780 489643
Changes: 
 nis (3.17-15) unstable; urgency=low
 .
   * Tweak reportbug script to avoid echo -e (closes: #489643).
   * Add a note about consulting your network administrator to the text
 about configuring the NIS domainname for clients (closes: #484780).
Checksums-Sha1: 
 787cf0c7c0f7ba45402c7c40eac222cd9606ff35 1140 nis_3.17-15.dsc
 3d0f41569ef359cc505e6684633c03785a2dd85d 40126 nis_3.17-15.diff.gz
 a0a2bdead95a3614cfeff4647fc5a40f09a212c3 223130 nis_3.17-15_amd64.deb
Checksums-Sha256: 
 be72c56372be797fdf84368eab6ffcec09f6a5e08f88c54227ca01a7826a98f7 1140 
nis_3.17-15.dsc
 41721146c584e8c983d77e507ddf9668d9621da56c3ae2ab1a4621627b8c8121 40126 
nis_3.17-15.diff.gz
 c81a25f11ff439b22e6e54fd8f28943e6dc223589189ca4702693eb88279ebdd 223130 
nis_3.17-15_amd64.deb
Files: 
 40ca1d2c6ad3c1533024ff020b37ccaf 1140 net extra nis_3.17-15.dsc
 2c8c24154bd6f5a97a4d53e19a5b7791 40126 net extra nis_3.17-15.diff.gz
 8d494b8e1c9ac62d992f4088ef6d9735 223130 net extra nis_3.17-15_amd64.deb

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

iEYEARECAAYFAkiCGkgACgkQJ2Vo11xhU61hjwCfVByjwh1fQVHokVkpBIca/ZyY
a6MAoMXqg/Aja1sGMq/T1sYLwq5WhRYj
=ie2l
-END PGP SIGNATURE-


Accepted:
nis_3.17-15.diff.gz
  to pool/main/n/nis/nis_3.17-15.diff.gz
nis_3.17-15.dsc
  to pool/main/n/nis/nis_3.17-15.dsc
nis_3.17-15_amd64.deb
  to pool/main/n/nis/nis_3.17-15_amd64.deb


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



Accepted dieharder 2.24.7-1 (source i386)

2008-07-19 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 11:14:06 -0500
Source: dieharder
Binary: dieharder libdieharder2 libdieharder-dev
Architecture: source i386
Version: 2.24.7-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
Changed-By: Dirk Eddelbuettel [EMAIL PROTECTED]
Description: 
 dieharder  - Random-number generator test front-end
 libdieharder-dev - Random-number generator test library -- development package
 libdieharder2 - Random-number generator test library
Changes: 
 dieharder (2.24.7-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/watch: Added watch file, after hint from Robert re locations
Checksums-Sha1: 
 eac9a406421cc9708e17017b7f44c0c0455894c3 1102 dieharder_2.24.7-1.dsc
 244d1d41cbc43de6bc8402e4c7eb46e60fdae294 921813 dieharder_2.24.7.orig.tar.gz
 323151cdc3d2dcd6223a1ae2b29bdb9b5d6f2b69 6491 dieharder_2.24.7-1.diff.gz
 f335f0513536ede423b244c65f1e33730b3c4c3f 35006 dieharder_2.24.7-1_i386.deb
 3f4eb41d70be9eeec9889baf932266b043b90cb2 82336 libdieharder2_2.24.7-1_i386.deb
 0496be26315bc3b01e84dbe6129088d1dbee5216 514376 
libdieharder-dev_2.24.7-1_i386.deb
Checksums-Sha256: 
 1bd5195f423e2efce8dad48afcca3c007123793846913587ccd76ced1c40db7b 1102 
dieharder_2.24.7-1.dsc
 23988f78a56c4dd33bc664057ef1b45595e197ea689994b3c454e805ebe4a250 921813 
dieharder_2.24.7.orig.tar.gz
 72f1cb1fa79180c5fa4799fc99bbbe3993d17e30e752e277e11ee5badc5c851e 6491 
dieharder_2.24.7-1.diff.gz
 b31f6d3e5dd516bd583213c6635c8a612b7284edd926633dd00b1c1aad4675a5 35006 
dieharder_2.24.7-1_i386.deb
 ba138170753444ef16339f52ec3eddde4bd95157412a8e63b4c8f07a3c3b9740 82336 
libdieharder2_2.24.7-1_i386.deb
 7aeda21c00138960f29bcf270811e2179cf77e21d187d8376bf84894b614af99 514376 
libdieharder-dev_2.24.7-1_i386.deb
Files: 
 15272c63b463b660a50db0b09c582a72 1102 devel optional dieharder_2.24.7-1.dsc
 ec62eeb29322b78de7348041ed0df07b 921813 devel optional 
dieharder_2.24.7.orig.tar.gz
 dfb887c5ced475b4eacdebc9972f8d3b 6491 devel optional dieharder_2.24.7-1.diff.gz
 cd07bf911d60af8e67e712820a239ff8 35006 devel optional 
dieharder_2.24.7-1_i386.deb
 7939b259703cf0a5ce4a0aad67efc819 82336 devel optional 
libdieharder2_2.24.7-1_i386.deb
 4eea364a146ef2c4cce435516a97ecb0 514376 libdevel optional 
libdieharder-dev_2.24.7-1_i386.deb

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

iD8DBQFIghqgCZSR95Gw07cRAgqOAJ0fQM3n/Gpe3PsQt/6Eu9QLwdpvfgCfcN3c
tErk7jppsoU0zdHFw7to+X4=
=EiYv
-END PGP SIGNATURE-


Accepted:
dieharder_2.24.7-1.diff.gz
  to pool/main/d/dieharder/dieharder_2.24.7-1.diff.gz
dieharder_2.24.7-1.dsc
  to pool/main/d/dieharder/dieharder_2.24.7-1.dsc
dieharder_2.24.7-1_i386.deb
  to pool/main/d/dieharder/dieharder_2.24.7-1_i386.deb
dieharder_2.24.7.orig.tar.gz
  to pool/main/d/dieharder/dieharder_2.24.7.orig.tar.gz
libdieharder-dev_2.24.7-1_i386.deb
  to pool/main/d/dieharder/libdieharder-dev_2.24.7-1_i386.deb
libdieharder2_2.24.7-1_i386.deb
  to pool/main/d/dieharder/libdieharder2_2.24.7-1_i386.deb


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



Accepted vdr-plugin-fritzbox 1.0.0-3 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 17:40:19 +0200
Source: vdr-plugin-fritzbox
Binary: vdr-plugin-fritzbox
Architecture: source i386
Version: 1.0.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-fritzbox - VDR plugin to access certain functions of an AVM 
Fritz!Box
Changes: 
 vdr-plugin-fritzbox (1.0.0-3) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 76c85163129aef71fe5abb0a07c17e24b5d6fdfb 1419 vdr-plugin-fritzbox_1.0.0-3.dsc
 b54f93bfc8ddf8c99eff0bb2f6e0e4273b64a425 2585 
vdr-plugin-fritzbox_1.0.0-3.diff.gz
 fa528aadd4b6705948c25a2bb3534a3df21f0a2b 72776 
vdr-plugin-fritzbox_1.0.0-3_i386.deb
Checksums-Sha256: 
 f87a3e6bdb27fa494457e975c85e2bc249471a3abcdbf685ae1e57d0d19b417e 1419 
vdr-plugin-fritzbox_1.0.0-3.dsc
 cf55b3ce85d607b31cdedb3e0679b07b625a825910d833ed83e900c16113cf1f 2585 
vdr-plugin-fritzbox_1.0.0-3.diff.gz
 6adebfcca284d3f9098569eb01ae73af972eac20baeeafd1202d0a8eafd44169 72776 
vdr-plugin-fritzbox_1.0.0-3_i386.deb
Files: 
 023fb3b182a645aad90747e231dac66d 1419 misc extra 
vdr-plugin-fritzbox_1.0.0-3.dsc
 74567f55036056a2ad30518b218f2a18 2585 misc extra 
vdr-plugin-fritzbox_1.0.0-3.diff.gz
 197378bd93d3be462a3cb26907b06c87 72776 misc extra 
vdr-plugin-fritzbox_1.0.0-3_i386.deb

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

iEYEARECAAYFAkiCGeoACgkQc9+NqwoydlIujgCfQZ29hdaVoiV3quSfwYQzX7w0
mr4An3LUK6D73NfWNawfOFmWI72fuJ9n
=IAwU
-END PGP SIGNATURE-


Accepted:
vdr-plugin-fritzbox_1.0.0-3.diff.gz
  to pool/main/v/vdr-plugin-fritzbox/vdr-plugin-fritzbox_1.0.0-3.diff.gz
vdr-plugin-fritzbox_1.0.0-3.dsc
  to pool/main/v/vdr-plugin-fritzbox/vdr-plugin-fritzbox_1.0.0-3.dsc
vdr-plugin-fritzbox_1.0.0-3_i386.deb
  to pool/main/v/vdr-plugin-fritzbox/vdr-plugin-fritzbox_1.0.0-3_i386.deb


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



Accepted vdr-plugin-svdrpext 0.0.1-17 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:31:36 +0200
Source: vdr-plugin-svdrpext
Binary: vdr-plugin-svdrpext
Architecture: source i386
Version: 0.0.1-17
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-svdrpext - VDR plugin that extends the SVDRP command set of VDR
Changes: 
 vdr-plugin-svdrpext (0.0.1-17) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 084b329c21e4f6a86c0e59b42726cdbf449e6fe9 1396 vdr-plugin-svdrpext_0.0.1-17.dsc
 699cf8283f864d0c5d1a1fbbf1bf1b9bd5286aa1 2313 
vdr-plugin-svdrpext_0.0.1-17.diff.gz
 c25090902a17585b0bde914cea76bec574b65690 11502 
vdr-plugin-svdrpext_0.0.1-17_i386.deb
Checksums-Sha256: 
 6469decc04cc9ed64cd731c4d254b8366bf2335afbe57200d3601e4c6c1cd9e7 1396 
vdr-plugin-svdrpext_0.0.1-17.dsc
 92ca3bc62f8b132678e7d7be87d32048dea13d21d34258caf164388b818f7ea9 2313 
vdr-plugin-svdrpext_0.0.1-17.diff.gz
 35ab302258d4e210f341fdb9f43fe62aa74e1cd6396448f5bcac7711b478242d 11502 
vdr-plugin-svdrpext_0.0.1-17_i386.deb
Files: 
 4b1b06553761fffad09ee312fc902693 1396 misc extra 
vdr-plugin-svdrpext_0.0.1-17.dsc
 f6cce7fc8c73879ef82bab4546edf75a 2313 misc extra 
vdr-plugin-svdrpext_0.0.1-17.diff.gz
 35a683b0d9ebde9be5b6340d111ce1ad 11502 misc extra 
vdr-plugin-svdrpext_0.0.1-17_i386.deb

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

iEYEARECAAYFAkiCGe4ACgkQc9+NqwoydlLEugCgrpISO5UnqtgFS32lWi1W55DM
/VMAnjh7wuQcQBZuXSHKvpmK7NuhB0tz
=kVKN
-END PGP SIGNATURE-


Accepted:
vdr-plugin-svdrpext_0.0.1-17.diff.gz
  to pool/main/v/vdr-plugin-svdrpext/vdr-plugin-svdrpext_0.0.1-17.diff.gz
vdr-plugin-svdrpext_0.0.1-17.dsc
  to pool/main/v/vdr-plugin-svdrpext/vdr-plugin-svdrpext_0.0.1-17.dsc
vdr-plugin-svdrpext_0.0.1-17_i386.deb
  to pool/main/v/vdr-plugin-svdrpext/vdr-plugin-svdrpext_0.0.1-17_i386.deb


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



Accepted vdr-plugin-prefermenu 0.6.6-24 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:08:02 +0200
Source: vdr-plugin-prefermenu
Binary: vdr-plugin-prefermenu
Architecture: source i386
Version: 0.6.6-24
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-prefermenu - VDR plugin that implements a preferred channels menu
Changes: 
 vdr-plugin-prefermenu (0.6.6-24) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 ae14f68bf2fb63245b8f042ea22e963099bd07d1 1446 
vdr-plugin-prefermenu_0.6.6-24.dsc
 f539196a786d27cb9c4b5f3e771bd49a30580ae3 5627 
vdr-plugin-prefermenu_0.6.6-24.diff.gz
 040a9ded1e60f4957feb3b07a434eb5261f8537f 26370 
vdr-plugin-prefermenu_0.6.6-24_i386.deb
Checksums-Sha256: 
 741ba271c2e92b358262762e7f115e3d21354c3f3ed3b854642a7047b90f2630 1446 
vdr-plugin-prefermenu_0.6.6-24.dsc
 a5d077856280760fbd87551879c1dfadde1cd1f79e0853d0e3b8ccc38f85954a 5627 
vdr-plugin-prefermenu_0.6.6-24.diff.gz
 49458bc91183c2e28cd209f023da3a4cd7abb96d3dfb54d802c01da8c32b526d 26370 
vdr-plugin-prefermenu_0.6.6-24_i386.deb
Files: 
 eb7df12654947feccb325f698f9d47f6 1446 misc extra 
vdr-plugin-prefermenu_0.6.6-24.dsc
 72d710e89e8a8285a702b03b525940b3 5627 misc extra 
vdr-plugin-prefermenu_0.6.6-24.diff.gz
 7fc11a7ff3a5d9fb0e1aef716568b5ab 26370 misc extra 
vdr-plugin-prefermenu_0.6.6-24_i386.deb

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

iEYEARECAAYFAkiCGewACgkQc9+NqwoydlLBdQCeJcdq7Eh7xTnwMZQpvE2Ka3WJ
SMUAnjFU/j32iHqeOAun8D5E5wBHxhIJ
=KyFw
-END PGP SIGNATURE-


Accepted:
vdr-plugin-prefermenu_0.6.6-24.diff.gz
  to pool/main/v/vdr-plugin-prefermenu/vdr-plugin-prefermenu_0.6.6-24.diff.gz
vdr-plugin-prefermenu_0.6.6-24.dsc
  to pool/main/v/vdr-plugin-prefermenu/vdr-plugin-prefermenu_0.6.6-24.dsc
vdr-plugin-prefermenu_0.6.6-24_i386.deb
  to pool/main/v/vdr-plugin-prefermenu/vdr-plugin-prefermenu_0.6.6-24_i386.deb


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



Accepted vdr-plugin-live 0.2.0-3 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 17:48:12 +0200
Source: vdr-plugin-live
Binary: vdr-plugin-live
Architecture: source i386
Version: 0.2.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-live - Web administration plugin for VDR
Changes: 
 vdr-plugin-live (0.2.0-3) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 6da8fba34f628946552392aa1f494dfa6ad3286a 1462 vdr-plugin-live_0.2.0-3.dsc
 c899e290ce5c8013b434eeeafe50d63abd41fa8c 8958 vdr-plugin-live_0.2.0-3.diff.gz
 9bd93f597e6595b830809c27bfd41d609f15c38e 963832 
vdr-plugin-live_0.2.0-3_i386.deb
Checksums-Sha256: 
 7856f10b6d49aab2f12e24cc6a423d53fea1c3ff86084c3bf188475b3c338c37 1462 
vdr-plugin-live_0.2.0-3.dsc
 e88bbcb86c83b22ddb97275dbcf2dcdad2a4bc8d779173b4716452679cd60520 8958 
vdr-plugin-live_0.2.0-3.diff.gz
 5f0fd6f5f69caa7d1cafe5ec43ba4880b7c45b029cf6731617c4ad69a9f86eb9 963832 
vdr-plugin-live_0.2.0-3_i386.deb
Files: 
 2dcfe0c8011ee34d999c3503020b393c 1462 misc extra vdr-plugin-live_0.2.0-3.dsc
 f38481f3665e9d0b826d591e33c51f17 8958 misc extra 
vdr-plugin-live_0.2.0-3.diff.gz
 afb128126fd5f5dab810439ccebe0600 963832 misc extra 
vdr-plugin-live_0.2.0-3_i386.deb

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

iEYEARECAAYFAkiCGeoACgkQc9+NqwoydlKGWgCfdBLgqAH0190R0KgZ5a3iGk29
9m4AnjwWkYoeyyYH0txG+2ImXyTtJBO1
=cmlL
-END PGP SIGNATURE-


Accepted:
vdr-plugin-live_0.2.0-3.diff.gz
  to pool/main/v/vdr-plugin-live/vdr-plugin-live_0.2.0-3.diff.gz
vdr-plugin-live_0.2.0-3.dsc
  to pool/main/v/vdr-plugin-live/vdr-plugin-live_0.2.0-3.dsc
vdr-plugin-live_0.2.0-3_i386.deb
  to pool/main/v/vdr-plugin-live/vdr-plugin-live_0.2.0-3_i386.deb


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



Accepted vdr-plugin-osdteletext 0.5.1-37 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:06:10 +0200
Source: vdr-plugin-osdteletext
Binary: vdr-plugin-osdteletext
Architecture: source i386
Version: 0.5.1-37
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-osdteletext - Teletext plugin for VDR
Changes: 
 vdr-plugin-osdteletext (0.5.1-37) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 0c17ac57f2fc27d4626041def979d67526b7a4a1 1456 
vdr-plugin-osdteletext_0.5.1-37.dsc
 fa2a416fe589b4734f19b5ca65d14f0578082249 5785 
vdr-plugin-osdteletext_0.5.1-37.diff.gz
 47569f0635c5218209d087d87ffd78d92a3efb76 58162 
vdr-plugin-osdteletext_0.5.1-37_i386.deb
Checksums-Sha256: 
 e763671788d4bd50d9cd6a60dc8c03f0fdf0958dea8b33bbb6f762d988a004cb 1456 
vdr-plugin-osdteletext_0.5.1-37.dsc
 8461679684dd35a002592a47eb9477ed35600e6c5658c638663d7bd0935a3de5 5785 
vdr-plugin-osdteletext_0.5.1-37.diff.gz
 f868f5673d28054f41cfb6ec8128f3a47a0614784937df2cd394ad3b974138a6 58162 
vdr-plugin-osdteletext_0.5.1-37_i386.deb
Files: 
 9b955efc4709f259eaa486bc8c4edc72 1456 misc extra 
vdr-plugin-osdteletext_0.5.1-37.dsc
 14b0ca888d78f2c660588f8141b13549 5785 misc extra 
vdr-plugin-osdteletext_0.5.1-37.diff.gz
 d126d8f3fcf30781c6f9d91720676b42 58162 misc extra 
vdr-plugin-osdteletext_0.5.1-37_i386.deb

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

iEYEARECAAYFAkiCGesACgkQc9+NqwoydlL1OwCcCanCln6zRj5pRNRKiviiS0Ai
SxAAmQFuwCB38Asb3cxCFmxc5lVVsli7
=zc3O
-END PGP SIGNATURE-


Accepted:
vdr-plugin-osdteletext_0.5.1-37.diff.gz
  to pool/main/v/vdr-plugin-osdteletext/vdr-plugin-osdteletext_0.5.1-37.diff.gz
vdr-plugin-osdteletext_0.5.1-37.dsc
  to pool/main/v/vdr-plugin-osdteletext/vdr-plugin-osdteletext_0.5.1-37.dsc
vdr-plugin-osdteletext_0.5.1-37_i386.deb
  to pool/main/v/vdr-plugin-osdteletext/vdr-plugin-osdteletext_0.5.1-37_i386.deb


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



Accepted vdr-plugin-remote 0.4.0-14 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:09:46 +0200
Source: vdr-plugin-remote
Binary: vdr-plugin-remote
Architecture: source i386
Version: 0.4.0-14
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-remote - VDR Plugin to support the built-in remote control port of 
DVB-Car
Changes: 
 vdr-plugin-remote (0.4.0-14) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
   * Using COMPAT=5 now
Checksums-Sha1: 
 71760516a8b16fe7c15db444bc95cc25c35a2005 1452 vdr-plugin-remote_0.4.0-14.dsc
 ae816612a24d877b51ca2cdb37241b7f3cac7af5 9093 
vdr-plugin-remote_0.4.0-14.diff.gz
 69e7a3350ecd290281902293c3c00865e6674ef4 32102 
vdr-plugin-remote_0.4.0-14_i386.deb
Checksums-Sha256: 
 a7b1a1c395410e8d33c5276f251487736d697fdca9b42e2151314772ac40c246 1452 
vdr-plugin-remote_0.4.0-14.dsc
 0262d97a28e1f7f2ddf4bc13bea81a4f0c0b711013efd9688cdb346eec79f26f 9093 
vdr-plugin-remote_0.4.0-14.diff.gz
 fc5796a2dd00e6b09d4d011dce09c43ff08c2f0a2988eb5c019e47eea408fc7a 32102 
vdr-plugin-remote_0.4.0-14_i386.deb
Files: 
 d03387c5e463da38204f1b50187f6131 1452 misc extra vdr-plugin-remote_0.4.0-14.dsc
 1ea83270f18b6299bcc2c730e4265eea 9093 misc extra 
vdr-plugin-remote_0.4.0-14.diff.gz
 046800c898f6d9267c03abe33be9e98f 32102 misc extra 
vdr-plugin-remote_0.4.0-14_i386.deb

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

iEYEARECAAYFAkiCGewACgkQc9+NqwoydlJcjgCdHffsFal0/j60J3DFeFa24ZCw
WtoAoIyMpzdmPXS/Pip2GB35XZbTyW3C
=FCvv
-END PGP SIGNATURE-


Accepted:
vdr-plugin-remote_0.4.0-14.diff.gz
  to pool/main/v/vdr-plugin-remote/vdr-plugin-remote_0.4.0-14.diff.gz
vdr-plugin-remote_0.4.0-14.dsc
  to pool/main/v/vdr-plugin-remote/vdr-plugin-remote_0.4.0-14.dsc
vdr-plugin-remote_0.4.0-14_i386.deb
  to pool/main/v/vdr-plugin-remote/vdr-plugin-remote_0.4.0-14_i386.deb


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



Accepted vdr-plugin-vcd 0.9-7 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:35:11 +0200
Source: vdr-plugin-vcd
Binary: vdr-plugin-vcd
Architecture: source i386
Version: 0.9-7
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-vcd - VDR Plugin for playing (S)VCD's
Changes: 
 vdr-plugin-vcd (0.9-7) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 72689fbcc2ab239a55022e40fad01bb0eb5cd040 1344 vdr-plugin-vcd_0.9-7.dsc
 a85d44cdb8ef9c035013f70e5c0fe1dc3608176d 4415 vdr-plugin-vcd_0.9-7.diff.gz
 b25ba4de2156302308f57ef5898f08742e0f5a9a 51262 vdr-plugin-vcd_0.9-7_i386.deb
Checksums-Sha256: 
 3a1a77593a013f3b321af389a972e1cb52e9f50f04b4246b909cf6b66d47d3c1 1344 
vdr-plugin-vcd_0.9-7.dsc
 4113395c89d3bfc4536f4d0547703e2c1bc5abb7e21ae2c89047b87f1eb746a4 4415 
vdr-plugin-vcd_0.9-7.diff.gz
 1ebe2fb5ea740c3b9a49311edd73fa104fbdc8fa1b96220a78fde4a03c937919 51262 
vdr-plugin-vcd_0.9-7_i386.deb
Files: 
 c46b1795a76e2fc99f3b22b3715f05a0 1344 misc extra vdr-plugin-vcd_0.9-7.dsc
 a3ee1f0c740dd2bd8608836ab98e9402 4415 misc extra vdr-plugin-vcd_0.9-7.diff.gz
 ab35de4024ab50f37735a3f72773fa57 51262 misc extra vdr-plugin-vcd_0.9-7_i386.deb

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

iEYEARECAAYFAkiCGe4ACgkQc9+NqwoydlIGkQCgyv6e+2XePQ83IyD/ccHnmTSu
Hw0AoMd527YuUSnX7AdlSUG/OrXgRFSG
=+zwS
-END PGP SIGNATURE-


Accepted:
vdr-plugin-vcd_0.9-7.diff.gz
  to pool/main/v/vdr-plugin-vcd/vdr-plugin-vcd_0.9-7.diff.gz
vdr-plugin-vcd_0.9-7.dsc
  to pool/main/v/vdr-plugin-vcd/vdr-plugin-vcd_0.9-7.dsc
vdr-plugin-vcd_0.9-7_i386.deb
  to pool/main/v/vdr-plugin-vcd/vdr-plugin-vcd_0.9-7_i386.deb


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



Accepted vdr-plugin-bitstreamout 0.89b-3 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 16:39:56 +0200
Source: vdr-plugin-bitstreamout
Binary: vdr-plugin-bitstreamout
Architecture: source i386
Version: 0.89b-3
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-bitstreamout - Plugin for VDR to play AC3 sound over a sound card
Closes: 489491
Changes: 
 vdr-plugin-bitstreamout (0.89b-3) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Added 03_hppa-workaround.dpatch to fix FTBFS on hppa (Closes: #489491)
   * Bumped Standards-Version to 3.8.0
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
Checksums-Sha1: 
 6371330c9773afe236d8f801a5783883d5f17e10 1500 
vdr-plugin-bitstreamout_0.89b-3.dsc
 a79e8762487946e7462addab0dda79275185b239 11801 
vdr-plugin-bitstreamout_0.89b-3.diff.gz
 c75cdc32972a01a5862cd490f61bbe8e06313204 76566 
vdr-plugin-bitstreamout_0.89b-3_i386.deb
Checksums-Sha256: 
 2ec906e20f4b75147e23f3a9702a151deebc62711685841d3425d16c3cd8d9ff 1500 
vdr-plugin-bitstreamout_0.89b-3.dsc
 e9cd222d05dbcef52d24a1678d102bdde2c23d46924ec63a0b601dab88c19892 11801 
vdr-plugin-bitstreamout_0.89b-3.diff.gz
 dd29516c72cdb081ce415311f84f1e45393cf3d139f7cf1726e0e321d30ab8ad 76566 
vdr-plugin-bitstreamout_0.89b-3_i386.deb
Files: 
 a9734034d5281bc2a33a38c82a4a5e1e 1500 misc extra 
vdr-plugin-bitstreamout_0.89b-3.dsc
 bf56b6c8a08583a2ba2dac19076c880d 11801 misc extra 
vdr-plugin-bitstreamout_0.89b-3.diff.gz
 3c83c057592764ee05f4f7296acec36f 76566 misc extra 
vdr-plugin-bitstreamout_0.89b-3_i386.deb

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

iEYEARECAAYFAkiCGegACgkQc9+NqwoydlL1aQCgpEXwJZydlgs67i7TGJJqP4Yj
GnoAn3HT9oqPnGk40mqtCm0VQFAnJrl8
=dyUe
-END PGP SIGNATURE-


Accepted:
vdr-plugin-bitstreamout_0.89b-3.diff.gz
  to pool/main/v/vdr-plugin-bitstreamout/vdr-plugin-bitstreamout_0.89b-3.diff.gz
vdr-plugin-bitstreamout_0.89b-3.dsc
  to pool/main/v/vdr-plugin-bitstreamout/vdr-plugin-bitstreamout_0.89b-3.dsc
vdr-plugin-bitstreamout_0.89b-3_i386.deb
  to 
pool/main/v/vdr-plugin-bitstreamout/vdr-plugin-bitstreamout_0.89b-3_i386.deb


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



Accepted vdr-plugin-console 0.6.0-38 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 16:50:46 +0200
Source: vdr-plugin-console
Binary: vdr-plugin-console
Architecture: source i386
Version: 0.6.0-38
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-console - Plugin for vdr that implements a virtual terminal
Changes: 
 vdr-plugin-console (0.6.0-38) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
   * Using COMPAT=5 now
Checksums-Sha1: 
 4c0ebed350fa5f3a6dbef78a3baa8385552ff36d 1360 vdr-plugin-console_0.6.0-38.dsc
 5030002088912087896dd4bfbdc95caa18dfe9ac 7394 
vdr-plugin-console_0.6.0-38.diff.gz
 f1c35a31275de655d36530eb4f5102638e6a573c 53860 
vdr-plugin-console_0.6.0-38_i386.deb
Checksums-Sha256: 
 8da03f25c98177135d9a9508efdb7a6ab8bfe55db027d0d91ba30526cb6d460c 1360 
vdr-plugin-console_0.6.0-38.dsc
 72c68cfc1d135d6e0e8978446f90cf4e89f5620fca129e6442533f05e261d0d9 7394 
vdr-plugin-console_0.6.0-38.diff.gz
 6d2dbc9d93966bc575cc791ce5b7e104653d028ddd8f1a8cb684eedf5072e78a 53860 
vdr-plugin-console_0.6.0-38_i386.deb
Files: 
 fe376e6e1191d71540aa3bfbb974e867 1360 misc extra 
vdr-plugin-console_0.6.0-38.dsc
 8b6c73a2d85780cfd91e6e3320e006b7 7394 misc extra 
vdr-plugin-console_0.6.0-38.diff.gz
 5a96673b4d128b0665a16b4b3517648e 53860 misc extra 
vdr-plugin-console_0.6.0-38_i386.deb

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

iEYEARECAAYFAkiCGegACgkQc9+NqwoydlI/cACfR9CaIuQlE+IWc53TJZJgrfTN
odwAoIZToCsH3ZhbNDi7whYrIB23ZSSh
=bO9/
-END PGP SIGNATURE-


Accepted:
vdr-plugin-console_0.6.0-38.diff.gz
  to pool/main/v/vdr-plugin-console/vdr-plugin-console_0.6.0-38.diff.gz
vdr-plugin-console_0.6.0-38.dsc
  to pool/main/v/vdr-plugin-console/vdr-plugin-console_0.6.0-38.dsc
vdr-plugin-console_0.6.0-38_i386.deb
  to pool/main/v/vdr-plugin-console/vdr-plugin-console_0.6.0-38_i386.deb


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



Accepted vdr-plugin-games 0.6.3-22 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 17:46:04 +0200
Source: vdr-plugin-games
Binary: vdr-plugin-games
Architecture: source i386
Version: 0.6.3-22
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-games - VDR plugin providing OSD games like tetris, snake and more
Changes: 
 vdr-plugin-games (0.6.3-22) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 2c02c4f57eecf9bbdf0a162f22e8d3fe605fc6f8 1377 vdr-plugin-games_0.6.3-22.dsc
 b052c9a881453ca5feeff528988109304181d4c0 5140 vdr-plugin-games_0.6.3-22.diff.gz
 0b6ce1d3222373090655775196017b330597bf11 35974 
vdr-plugin-games_0.6.3-22_i386.deb
Checksums-Sha256: 
 349bf078d686c8b7e3d405c243b32ce0772f728b05c3d8e1a7a08f0bb800ff8c 1377 
vdr-plugin-games_0.6.3-22.dsc
 db0e4c9a8a4c153c0a5baf76f45d96b69abf5695a7a51493b31771af3bcd9925 5140 
vdr-plugin-games_0.6.3-22.diff.gz
 6debee0bf86cfa3348e2c80c8712d1d16774cbe68a1d6161e6455298c096c15f 35974 
vdr-plugin-games_0.6.3-22_i386.deb
Files: 
 90db2d474934be3562fcef9a3ccfbbe3 1377 misc extra vdr-plugin-games_0.6.3-22.dsc
 9edbd7d184d1699f254ea2407a9eaa4f 5140 misc extra 
vdr-plugin-games_0.6.3-22.diff.gz
 71a9b1be5b4a8132529595699b3acc98 35974 misc extra 
vdr-plugin-games_0.6.3-22_i386.deb

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

iEYEARECAAYFAkiCGeoACgkQc9+NqwoydlKnTwCgx4JKNymTROp53UOcEuQkm+vL
EYgAn1pxHCs2fRuMaaCeZfl3/CpmAbu3
=UIQU
-END PGP SIGNATURE-


Accepted:
vdr-plugin-games_0.6.3-22.diff.gz
  to pool/main/v/vdr-plugin-games/vdr-plugin-games_0.6.3-22.diff.gz
vdr-plugin-games_0.6.3-22.dsc
  to pool/main/v/vdr-plugin-games/vdr-plugin-games_0.6.3-22.dsc
vdr-plugin-games_0.6.3-22_i386.deb
  to pool/main/v/vdr-plugin-games/vdr-plugin-games_0.6.3-22_i386.deb


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



Accepted vdr-plugin-weather 0.2.1e-50 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:39:38 +0200
Source: vdr-plugin-weather
Binary: vdr-plugin-weather
Architecture: source i386
Version: 0.2.1e-50
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-weather - Weather plugin for VDR
Changes: 
 vdr-plugin-weather (0.2.1e-50) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 ca68e407bc009b24a521fa16071713c1e002cdaf 1455 vdr-plugin-weather_0.2.1e-50.dsc
 0f1a4607e53e58a221bce295f46ab8fa785e7ae1 6707 
vdr-plugin-weather_0.2.1e-50.diff.gz
 3f4a91ec52dc3cd6b2c9c3223f98184a901ee75a 55418 
vdr-plugin-weather_0.2.1e-50_i386.deb
Checksums-Sha256: 
 9fc80d1118a575ab8d2561a651429b3484556db40f0bb9bed349f72da79abd6e 1455 
vdr-plugin-weather_0.2.1e-50.dsc
 21a7edd99be4b1d48eeec35e4cccd7c3d9ac3c206159234e7d66ca8c890c7716 6707 
vdr-plugin-weather_0.2.1e-50.diff.gz
 0065c553ce0cf902bb9a3a0d25bedc68dc26eccf472c16be97527ea97eba9140 55418 
vdr-plugin-weather_0.2.1e-50_i386.deb
Files: 
 0af688ac61250f8e4cce4b7d0aa40523 1455 misc extra 
vdr-plugin-weather_0.2.1e-50.dsc
 dc4a9d7281965bb64bc316c9de342cad 6707 misc extra 
vdr-plugin-weather_0.2.1e-50.diff.gz
 80995e88b0820316c6298077b65346bb 55418 misc extra 
vdr-plugin-weather_0.2.1e-50_i386.deb

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

iEYEARECAAYFAkiCGe8ACgkQc9+NqwoydlJa+QCgukUqDJ6u7q5Ay/YShfQZCgoj
lKgAn3VxS6fJq/WqZYEikm45P4YCNStX
=FCWP
-END PGP SIGNATURE-


Accepted:
vdr-plugin-weather_0.2.1e-50.diff.gz
  to pool/main/v/vdr-plugin-weather/vdr-plugin-weather_0.2.1e-50.diff.gz
vdr-plugin-weather_0.2.1e-50.dsc
  to pool/main/v/vdr-plugin-weather/vdr-plugin-weather_0.2.1e-50.dsc
vdr-plugin-weather_0.2.1e-50_i386.deb
  to pool/main/v/vdr-plugin-weather/vdr-plugin-weather_0.2.1e-50_i386.deb


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



Accepted vdr-plugin-solitaire 0.0.2-43 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:19:16 +0200
Source: vdr-plugin-solitaire
Binary: vdr-plugin-solitaire
Architecture: source i386
Version: 0.0.2-43
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-solitaire - Plugin to vdr that implements the card game Solitaire
Changes: 
 vdr-plugin-solitaire (0.0.2-43) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 a189ce717c79ded79fec81dc6b2f2ed24f29c421 1434 vdr-plugin-solitaire_0.0.2-43.dsc
 575085089936e5b6ad6f0cd44bb6f32e556e40f4 5037 
vdr-plugin-solitaire_0.0.2-43.diff.gz
 71ada7733e2956231f588d939c76d52fa552e375 324934 
vdr-plugin-solitaire_0.0.2-43_i386.deb
Checksums-Sha256: 
 7932037614c09ff2e366893e1873f2876653b793b60d919b326b22b338df632e 1434 
vdr-plugin-solitaire_0.0.2-43.dsc
 3419a1669df7d1138a16ebe244f5e866abc433a478941addb0b902714db10800 5037 
vdr-plugin-solitaire_0.0.2-43.diff.gz
 d1154799c407885e098da4ac1f010291b1aab5b34ae8c110a9f5b0c51bf3d649 324934 
vdr-plugin-solitaire_0.0.2-43_i386.deb
Files: 
 abe2f18ee7e34518d51c71fdf5e67906 1434 misc extra 
vdr-plugin-solitaire_0.0.2-43.dsc
 51236c8add02cd66aab0088fbd6fb38a 5037 misc extra 
vdr-plugin-solitaire_0.0.2-43.diff.gz
 6df232401238e9bdc82bce09acd36c88 324934 misc extra 
vdr-plugin-solitaire_0.0.2-43_i386.deb

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

iEYEARECAAYFAkiCGe0ACgkQc9+NqwoydlLT9QCffBFwT7nr4Zyd1OdBWxr2TNvC
qmgAn2L0IencXPxCoi8C3tjorvI7JORy
=Y1GJ
-END PGP SIGNATURE-


Accepted:
vdr-plugin-solitaire_0.0.2-43.diff.gz
  to pool/main/v/vdr-plugin-solitaire/vdr-plugin-solitaire_0.0.2-43.diff.gz
vdr-plugin-solitaire_0.0.2-43.dsc
  to pool/main/v/vdr-plugin-solitaire/vdr-plugin-solitaire_0.0.2-43.dsc
vdr-plugin-solitaire_0.0.2-43_i386.deb
  to pool/main/v/vdr-plugin-solitaire/vdr-plugin-solitaire_0.0.2-43_i386.deb


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



Accepted vdr-plugin-mp3 0.10.1-12 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 17:59:50 +0200
Source: vdr-plugin-mp3
Binary: vdr-plugin-mp3 vdr-plugin-mplayer
Architecture: source i386
Version: 0.10.1-12
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-mp3 - MP3 playback plugin for VDR
 vdr-plugin-mplayer - MPlayer playback plugin for VDR
Changes: 
 vdr-plugin-mp3 (0.10.1-12) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
   * Using COMPAT=5 now
Checksums-Sha1: 
 56bca7aff0d75276d56c7589ed0ecd0b03c76062 1455 vdr-plugin-mp3_0.10.1-12.dsc
 0c4aa8b8f198bbf41abf05dab41f19239f3bd89a 19050 vdr-plugin-mp3_0.10.1-12.diff.gz
 dc1a6feb110aec74e7b3c1932fbf066485874e47 167632 
vdr-plugin-mp3_0.10.1-12_i386.deb
 b6099e8d8bc762776d0521a5ba8aaca718c4b943 95478 
vdr-plugin-mplayer_0.10.1-12_i386.deb
Checksums-Sha256: 
 dd0af8b0c5f551b16b82894998dd1916b3951ad3718a7b03d8cec9d1e4dd01b4 1455 
vdr-plugin-mp3_0.10.1-12.dsc
 55bb03c95968f1046c1e22a75c3c610bbcd224924bf4d9f8a9791099efb1b1cb 19050 
vdr-plugin-mp3_0.10.1-12.diff.gz
 b62d4422165e4f1a836239461b7551e269564966e1bf1071368c893c7159522f 167632 
vdr-plugin-mp3_0.10.1-12_i386.deb
 ade51479be8a1cee53d86259d7dbb3260729f54b89891d30fdd295e9f68a1060 95478 
vdr-plugin-mplayer_0.10.1-12_i386.deb
Files: 
 282f73ce6427c1ea0f2d1d2d4d8d4014 1455 misc extra vdr-plugin-mp3_0.10.1-12.dsc
 1d7ecf1072ee5a2d67bc8190184c6e62 19050 misc extra 
vdr-plugin-mp3_0.10.1-12.diff.gz
 19e03ff4e7e5556adf9383df16c72056 167632 misc extra 
vdr-plugin-mp3_0.10.1-12_i386.deb
 3fa1c15690719687310e4390533c1b91 95478 misc extra 
vdr-plugin-mplayer_0.10.1-12_i386.deb

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

iEYEARECAAYFAkiCGesACgkQc9+NqwoydlLuJwCgqzsZgsiPHh070722x0edLgNq
pH4Ani5ym+VIiOUdlNYOyaV0i8nzxmi9
=MoOH
-END PGP SIGNATURE-


Accepted:
vdr-plugin-mp3_0.10.1-12.diff.gz
  to pool/main/v/vdr-plugin-mp3/vdr-plugin-mp3_0.10.1-12.diff.gz
vdr-plugin-mp3_0.10.1-12.dsc
  to pool/main/v/vdr-plugin-mp3/vdr-plugin-mp3_0.10.1-12.dsc
vdr-plugin-mp3_0.10.1-12_i386.deb
  to pool/main/v/vdr-plugin-mp3/vdr-plugin-mp3_0.10.1-12_i386.deb
vdr-plugin-mplayer_0.10.1-12_i386.deb
  to pool/main/v/vdr-plugin-mp3/vdr-plugin-mplayer_0.10.1-12_i386.deb


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



Accepted vdr-plugin-xineliboutput 1.0.1-5 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:41:38 +0200
Source: vdr-plugin-xineliboutput
Binary: vdr-plugin-xineliboutput libxineliboutput-fbfe libxineliboutput-sxfe 
xineliboutput-fbfe xineliboutput-sxfe libxine1-xvdr
Architecture: source i386
Version: 1.0.1-5
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 libxine1-xvdr - Xine input plugin for vdr-plugin-xineliboutput streams
 libxineliboutput-fbfe - Local framebuffer frontend for the xineliboutput plugin
 libxineliboutput-sxfe - Local X-Server frontend for the xineliboutput plugin
 vdr-plugin-xineliboutput - VDR plugin for Xine based sofdevice frontends
 xineliboutput-fbfe - Remote Framebuffer frontend for vdr-plugin-xineliboutput
 xineliboutput-sxfe - Remote X-Server frontend for vdr-plugin-xineliboutput
Changes: 
 vdr-plugin-xineliboutput (1.0.1-5) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 2a66de8fe62926217984c9e6d8274b3e44ec4bd6 1695 
vdr-plugin-xineliboutput_1.0.1-5.dsc
 9a077922b2ed38e2acfd982fe7e7859f04f80050 61126 
vdr-plugin-xineliboutput_1.0.1-5.diff.gz
 ab151d653b7b4b313e4c42d40ea7af38959d78b8 235020 
vdr-plugin-xineliboutput_1.0.1-5_i386.deb
 69c71fa7efbf754949bd8713fe5b327d1b7131fe 40494 
libxineliboutput-fbfe_1.0.1-5_i386.deb
 f648824cef0fe20cd113ad9ca2f3bece5f4c0d02 47742 
libxineliboutput-sxfe_1.0.1-5_i386.deb
 b4cd869ec042eb8b112f2e9b9e3832a6035703ee 50324 
xineliboutput-fbfe_1.0.1-5_i386.deb
 f3e8c56af44febe5e90fe4a898c2fa8f24465554 57738 
xineliboutput-sxfe_1.0.1-5_i386.deb
 c8590b229f14c7987b4a9a66e856fa442cfd80b4 131190 libxine1-xvdr_1.0.1-5_i386.deb
Checksums-Sha256: 
 13b1b00d36d3397b3313680b7f2e8da3052e69e176b4c882526e2caaf06a005d 1695 
vdr-plugin-xineliboutput_1.0.1-5.dsc
 7f9bc8d506fb139902236ad3f9deb8f6950e57336cfdf5bd77b6f0e3596cf01f 61126 
vdr-plugin-xineliboutput_1.0.1-5.diff.gz
 b66e81f1dc3fb259ab237ae859778334e4d92350dfdc74a0bc11b39a9a87837c 235020 
vdr-plugin-xineliboutput_1.0.1-5_i386.deb
 da14cc977dcd14ab2018b0d59202944df59898ee1a968be4c7939db9fc003ab1 40494 
libxineliboutput-fbfe_1.0.1-5_i386.deb
 88249b5fcaee05c61612ecf187c2ad9cb767b765b5966b5333284ec335cf010b 47742 
libxineliboutput-sxfe_1.0.1-5_i386.deb
 d6c5614b81d14e29220ea7c75fb2c95a228148cbe905afb169d146d4c5e03cfe 50324 
xineliboutput-fbfe_1.0.1-5_i386.deb
 7b62ce90a8bebf3d137fbc6539207c6ad32f217e28ce3d569a10aaac23bf0fc6 57738 
xineliboutput-sxfe_1.0.1-5_i386.deb
 c22699aa57374f759a4508349dfe23390991fb2dd7ebe03b381158e514582aa7 131190 
libxine1-xvdr_1.0.1-5_i386.deb
Files: 
 328962a305e27e992ba5701080127ec9 1695 misc extra 
vdr-plugin-xineliboutput_1.0.1-5.dsc
 b5eac10e568ca540bedec1de0a09c1e2 61126 misc extra 
vdr-plugin-xineliboutput_1.0.1-5.diff.gz
 934286995852b0bcd56efebe08ee4ab2 235020 misc extra 
vdr-plugin-xineliboutput_1.0.1-5_i386.deb
 9bdf0317b210a105313114d55e6e6979 40494 misc extra 
libxineliboutput-fbfe_1.0.1-5_i386.deb
 f8501854b04dbc45155da5344f2a06ab 47742 misc extra 
libxineliboutput-sxfe_1.0.1-5_i386.deb
 971237efd2ac9e4ab979f58ebc3b8fcf 50324 misc extra 
xineliboutput-fbfe_1.0.1-5_i386.deb
 08d36b8b4ef686dbbe94589845276627 57738 misc extra 
xineliboutput-sxfe_1.0.1-5_i386.deb
 bc4bc6f5325671ec4dedbc6b2c42ee73 131190 misc extra 
libxine1-xvdr_1.0.1-5_i386.deb

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

iEYEARECAAYFAkiCGe8ACgkQc9+NqwoydlIdegCgy5aPrXp5bX4LTMrHqEzr5YJD
QS0AoKY/YpvaJMPBd3K1oE+tJtpNgOCN
=QKrD
-END PGP SIGNATURE-


Accepted:
libxine1-xvdr_1.0.1-5_i386.deb
  to pool/main/v/vdr-plugin-xineliboutput/libxine1-xvdr_1.0.1-5_i386.deb
libxineliboutput-fbfe_1.0.1-5_i386.deb
  to pool/main/v/vdr-plugin-xineliboutput/libxineliboutput-fbfe_1.0.1-5_i386.deb
libxineliboutput-sxfe_1.0.1-5_i386.deb
  to pool/main/v/vdr-plugin-xineliboutput/libxineliboutput-sxfe_1.0.1-5_i386.deb
vdr-plugin-xineliboutput_1.0.1-5.diff.gz
  to 
pool/main/v/vdr-plugin-xineliboutput/vdr-plugin-xineliboutput_1.0.1-5.diff.gz
vdr-plugin-xineliboutput_1.0.1-5.dsc
  to pool/main/v/vdr-plugin-xineliboutput/vdr-plugin-xineliboutput_1.0.1-5.dsc
vdr-plugin-xineliboutput_1.0.1-5_i386.deb
  to 
pool/main/v/vdr-plugin-xineliboutput/vdr-plugin-xineliboutput_1.0.1-5_i386.deb
xineliboutput-fbfe_1.0.1-5_i386.deb
  to pool/main/v/vdr-plugin-xineliboutput/xineliboutput-fbfe_1.0.1-5_i386.deb
xineliboutput-sxfe_1.0.1-5_i386.deb
  to pool/main/v/vdr-plugin-xineliboutput/xineliboutput-sxfe_1.0.1-5_i386.deb


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



Accepted ocamlnet 2.2.9-3 (source all amd64)

2008-07-19 Thread Stefano Zacchiroli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:55:19 +0200
Source: ocamlnet
Binary: libocamlnet-ocaml-dev libocamlnet-ocaml libocamlnet-ocaml-bin 
libocamlnet-gtk2-ocaml-dev libocamlnet-ssl-ocaml-dev libocamlnet-ssl-ocaml 
libnethttpd-ocaml-dev libapache2-mod-ocamlnet libocamlnet-ocaml-doc 
libequeue-ocaml-dev libnetclient-ocaml-dev librpc-ocaml-dev libequeue-ocaml 
libequeue-gtk2-ocaml-dev
Architecture: source all amd64
Version: 2.2.9-3
Distribution: unstable
Urgency: medium
Maintainer: Stefano Zacchiroli [EMAIL PROTECTED]
Changed-By: Stefano Zacchiroli [EMAIL PROTECTED]
Description: 
 libapache2-mod-ocamlnet - OCaml application-level Internet libraries - netcgi2 
Apache2 conn
 libequeue-gtk2-ocaml-dev - transitional dummy package for Ocamlnet 2.2
 libequeue-ocaml - transitional dummy package for Ocamlnet 2.2
 libequeue-ocaml-dev - transitional dummy package for Ocamlnet 2.2
 libnetclient-ocaml-dev - transitional dummy package for Ocamlnet 2.2
 libnethttpd-ocaml-dev - OCaml application-level Internet libraries - HTTP 
daemon developm
 libocamlnet-gtk2-ocaml-dev - OCaml application-level Internet libraries - GTK2 
development lib
 libocamlnet-ocaml - OCaml application-level Internet libraries - core runtime 
librari
 libocamlnet-ocaml-bin - OCaml application-level Internet libraries - binaries
 libocamlnet-ocaml-dev - OCaml application-level Internet libraries - core 
development lib
 libocamlnet-ocaml-doc - OCaml application-level Internet libraries - 
documentation and ex
 libocamlnet-ssl-ocaml - OCaml application-level Internet libraries - SSL 
runtime librarie
 libocamlnet-ssl-ocaml-dev - OCaml application-level Internet libraries - SSL 
development libr
 librpc-ocaml-dev - transitional dummy package for Ocamlnet 2.2
Closes: 462878
Changes: 
 ocamlnet (2.2.9-3) unstable; urgency=medium
 .
   [ Stephane Glondu ]
   * Update Homepage, fix watch file.
 .
   [ Stefano Zacchiroli ]
   * add missing dep from ocamlnet-dev to cryptgps
   * move doc-base file corresponding to ocamldoc API reference (back) to
 libocamlnet-ocaml-doc; add Replaces as needed in debian/control
 (Closes: #462878)
   * bump Standards-Version to 3.8.0 (no changes needed)
Checksums-Sha1: 
 b864900f874aaf256ecf2c6a7e37d07f9da1f7d7 1775 ocamlnet_2.2.9-3.dsc
 b97571665f1d7623b97883c287121ecbc256b506 15619 ocamlnet_2.2.9-3.diff.gz
 a8fbac2dd5ca174e4dabb42a15d95b9b04875b26 968098 
libocamlnet-ocaml-doc_2.2.9-3_all.deb
 4c9241a50dc25226c65e484390836c4eb9d628a0 9150 
libequeue-ocaml-dev_2.2.9-3_all.deb
 deb1b8fd32c8b916d5a5f2641145a87e8419eb4f 9156 
libnetclient-ocaml-dev_2.2.9-3_all.deb
 b7cd437dfac0d8f0c5b18dcaca5136d787b42e74 9156 librpc-ocaml-dev_2.2.9-3_all.deb
 034f75d70dbb4663858ad84463be0651672fc6bc 9142 libequeue-ocaml_2.2.9-3_all.deb
 43a0c05a72d38fa8a6b477f57df640b1db796e04 9158 
libequeue-gtk2-ocaml-dev_2.2.9-3_all.deb
 f422d937f4018dbde752cde83fdb9e7c1c7d9e93 6302736 
libocamlnet-ocaml-dev_2.2.9-3_amd64.deb
 ce44c9e7e5b2961dbda7ff5ed5cb3a47158af2dc 16904 
libocamlnet-ocaml_2.2.9-3_amd64.deb
 e2707abe39835d9882c7a323105deba6158132e4 1322634 
libocamlnet-ocaml-bin_2.2.9-3_amd64.deb
 909d5118cf06c7560c6626b53b96811b6c9a4fdd 36802 
libocamlnet-gtk2-ocaml-dev_2.2.9-3_amd64.deb
 a000495adfce96e2d5508dacebcb22ee8f32b916 77254 
libocamlnet-ssl-ocaml-dev_2.2.9-3_amd64.deb
 9d842dfeb026699a6c9b43c1b03672111bad4c14 12388 
libocamlnet-ssl-ocaml_2.2.9-3_amd64.deb
 f80e0a80d2ecfacb61430f6bf7aaba2b32be04d3 1183480 
libnethttpd-ocaml-dev_2.2.9-3_amd64.deb
 d4db23e91a71a8e3b9f272926b689950251819a5 124230 
libapache2-mod-ocamlnet_2.2.9-3_amd64.deb
Checksums-Sha256: 
 44738682a479369d711a2635b2f1580857a29d6733e891d70f131764060612ca 1775 
ocamlnet_2.2.9-3.dsc
 a38bac975e0a015168923cfc7a9606087a1ce0f46b72294bdab50689d5c8acec 15619 
ocamlnet_2.2.9-3.diff.gz
 6fc9a93a66a9271c92dfa2d13207f3aa9a9d1d298b8aa1baac457089f536f9e0 968098 
libocamlnet-ocaml-doc_2.2.9-3_all.deb
 d3314ed916abe51dc98b3f2519d2f57a12bacec19d15803263427d039aec55e8 9150 
libequeue-ocaml-dev_2.2.9-3_all.deb
 8fe393033af262c6601103a708515bdf0c1f7c68befc5c5b7fca61e81da5e7c1 9156 
libnetclient-ocaml-dev_2.2.9-3_all.deb
 01ff3e220a23614016cfc412b5e0d4b24525cddf391a102e6c9ab007951d3bd4 9156 
librpc-ocaml-dev_2.2.9-3_all.deb
 ce57527d2508c99e02fe59e11c98b1bc981d2cd886a353f6d9d705407463b47e 9142 
libequeue-ocaml_2.2.9-3_all.deb
 5988c99d8c9ca034766c60dc0bccedd459cb41108faa1d1dfe126b0c12d6dd6d 9158 
libequeue-gtk2-ocaml-dev_2.2.9-3_all.deb
 fb56431fbde3f79fae2c747dcb814735bab57fa3fa36aad2d4038e2210a372cf 6302736 
libocamlnet-ocaml-dev_2.2.9-3_amd64.deb
 0284a1c012eb003ad30fb60f37db050b61f385c29228bed7c0248b0c7698f789 16904 
libocamlnet-ocaml_2.2.9-3_amd64.deb
 b6c05fead0506273251ca1084fd647a8f0e142eae302b5455229d00ec7776f93 1322634 
libocamlnet-ocaml-bin_2.2.9-3_amd64.deb
 d14e2b967b7bb9bf1bab813865808c0662271f2163f34faf8c3865cb2cc6b84a 36802 
libocamlnet-gtk2-ocaml-dev_2.2.9-3_amd64.deb
 

Accepted vdr-plugin-epgsearch 0.9.24-3 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 17:28:51 +0200
Source: vdr-plugin-epgsearch
Binary: vdr-plugin-epgsearch
Architecture: source i386
Version: 0.9.24-3
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-epgsearch - VDR plugin that provides extensive EPG searching 
capabilities
Changes: 
 vdr-plugin-epgsearch (0.9.24-3) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 5d317927486633f39e93b4212884187dbb4d0bf1 1450 vdr-plugin-epgsearch_0.9.24-3.dsc
 3a8218edf104ed229db4b88d4337a4e02f5cfbc0 11412 
vdr-plugin-epgsearch_0.9.24-3.diff.gz
 acc6f6922e0a9320f154117a28567e596ea1387b 576388 
vdr-plugin-epgsearch_0.9.24-3_i386.deb
Checksums-Sha256: 
 403f12e83e75f5cf5c9bafa78c36c9e4f746c31ae023c791f4e45a6e841cf380 1450 
vdr-plugin-epgsearch_0.9.24-3.dsc
 6d2a83eece2f9bc70479cbaf96686520d3e8ae4090ab8bb3c9572e0403e48432 11412 
vdr-plugin-epgsearch_0.9.24-3.diff.gz
 f98a7f71985cef71fcae218d9c2181f89197690834a9dcab75053bb415e9a221 576388 
vdr-plugin-epgsearch_0.9.24-3_i386.deb
Files: 
 1214c7603f91a2a5652731a6d83ddc9a 1450 misc extra 
vdr-plugin-epgsearch_0.9.24-3.dsc
 6986d7542e65edfc71f02388d9f6c852 11412 misc extra 
vdr-plugin-epgsearch_0.9.24-3.diff.gz
 55e97d363fd6a2053f9962744a6bcae8 576388 misc extra 
vdr-plugin-epgsearch_0.9.24-3_i386.deb

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

iEYEARECAAYFAkiCGekACgkQc9+NqwoydlJY8wCbB9pdLlNVk4EB0nQi7wdfFAYB
CbkAoKRkmk43UrShiJdX43y5izPmPQmU
=mvCD
-END PGP SIGNATURE-


Accepted:
vdr-plugin-epgsearch_0.9.24-3.diff.gz
  to pool/main/v/vdr-plugin-epgsearch/vdr-plugin-epgsearch_0.9.24-3.diff.gz
vdr-plugin-epgsearch_0.9.24-3.dsc
  to pool/main/v/vdr-plugin-epgsearch/vdr-plugin-epgsearch_0.9.24-3.dsc
vdr-plugin-epgsearch_0.9.24-3_i386.deb
  to pool/main/v/vdr-plugin-epgsearch/vdr-plugin-epgsearch_0.9.24-3_i386.deb


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



Accepted vdr-plugin-skinenigmang 0.0.6-4 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:13:38 +0200
Source: vdr-plugin-skinenigmang
Binary: vdr-plugin-skinenigmang
Architecture: source i386
Version: 0.0.6-4
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-skinenigmang - Skin plugin for VDR
Changes: 
 vdr-plugin-skinenigmang (0.0.6-4) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 acd09cde0585b8a59eccefc22d13ba55c0cc9dc2 1471 
vdr-plugin-skinenigmang_0.0.6-4.dsc
 2707b4485887e24139411758190f23879c3b6921 2368 
vdr-plugin-skinenigmang_0.0.6-4.diff.gz
 190a446f84b166402f13260bbf18af38b779062c 107304 
vdr-plugin-skinenigmang_0.0.6-4_i386.deb
Checksums-Sha256: 
 ffea8bb9bf1a2acc68216f0278081ca5cbe1420709fe79bde72cecf163b1ee73 1471 
vdr-plugin-skinenigmang_0.0.6-4.dsc
 092fd5385f1d1688aa9d576009dc393320f6300946801c98df14626a97ea2fbc 2368 
vdr-plugin-skinenigmang_0.0.6-4.diff.gz
 d5cfce7326de434300e99e496b9a033c4f3028bab1195c04d726445c34dd7735 107304 
vdr-plugin-skinenigmang_0.0.6-4_i386.deb
Files: 
 1cfa5793a35cc8d3ea8789341f76089a 1471 misc extra 
vdr-plugin-skinenigmang_0.0.6-4.dsc
 259367a5639f1673e25163c75672190d 2368 misc extra 
vdr-plugin-skinenigmang_0.0.6-4.diff.gz
 30852cebcb4fc45a72b82912950d7f8c 107304 misc extra 
vdr-plugin-skinenigmang_0.0.6-4_i386.deb

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

iEYEARECAAYFAkiCGewACgkQc9+NqwoydlKpzwCfQ2XLi1RA+rYFL7RLM9KTcT0h
Nm0AoNBTGHBwtRck9Pj56HYfCZPdmoBd
=3ZQ9
-END PGP SIGNATURE-


Accepted:
vdr-plugin-skinenigmang_0.0.6-4.diff.gz
  to pool/main/v/vdr-plugin-skinenigmang/vdr-plugin-skinenigmang_0.0.6-4.diff.gz
vdr-plugin-skinenigmang_0.0.6-4.dsc
  to pool/main/v/vdr-plugin-skinenigmang/vdr-plugin-skinenigmang_0.0.6-4.dsc
vdr-plugin-skinenigmang_0.0.6-4_i386.deb
  to 
pool/main/v/vdr-plugin-skinenigmang/vdr-plugin-skinenigmang_0.0.6-4_i386.deb


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



Accepted vdr-plugin-sudoku 0.2.1-4 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:29:36 +0200
Source: vdr-plugin-sudoku
Binary: vdr-plugin-sudoku
Architecture: source i386
Version: 0.2.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-sudoku - VDR-Plugin to generate and solve Sudokus
Changes: 
 vdr-plugin-sudoku (0.2.1-4) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 fd70c2479ff088f3a34d95813331fab2323bd9fc 1389 vdr-plugin-sudoku_0.2.1-4.dsc
 b501b02a55337ee77220d379f737730d20848f62 3042 vdr-plugin-sudoku_0.2.1-4.diff.gz
 4b8a3ad49625a6fe3888df644c21b271a1db868c 50440 
vdr-plugin-sudoku_0.2.1-4_i386.deb
Checksums-Sha256: 
 87a6ae8dabfab96628f01bbdea6af35c4e0a63d215bab81015692a737650c239 1389 
vdr-plugin-sudoku_0.2.1-4.dsc
 293268c2fa31409961f0eab426bb6b9b55a9264c07a06deea85086f6a72a9880 3042 
vdr-plugin-sudoku_0.2.1-4.diff.gz
 d30425f1aac02d657e38109fd4683e42e1dd4129fe93c5c075031db5ece4eec2 50440 
vdr-plugin-sudoku_0.2.1-4_i386.deb
Files: 
 1502248c839cd85af25da9e40596660d 1389 misc extra vdr-plugin-sudoku_0.2.1-4.dsc
 6987f5423982d9209c3ad72ab7c69d14 3042 misc extra 
vdr-plugin-sudoku_0.2.1-4.diff.gz
 9e5c12a574f917c9d26b9d2209ee50e0 50440 misc extra 
vdr-plugin-sudoku_0.2.1-4_i386.deb

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

iEYEARECAAYFAkiCGe0ACgkQc9+NqwoydlLVZQCgwxPlp51A9IQ2nWmSgyWZ+sBB
JR8AnjMEWj+hMfhoPOYVDfpp/v3jmSDR
=oKL2
-END PGP SIGNATURE-


Accepted:
vdr-plugin-sudoku_0.2.1-4.diff.gz
  to pool/main/v/vdr-plugin-sudoku/vdr-plugin-sudoku_0.2.1-4.diff.gz
vdr-plugin-sudoku_0.2.1-4.dsc
  to pool/main/v/vdr-plugin-sudoku/vdr-plugin-sudoku_0.2.1-4.dsc
vdr-plugin-sudoku_0.2.1-4_i386.deb
  to pool/main/v/vdr-plugin-sudoku/vdr-plugin-sudoku_0.2.1-4_i386.deb


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



Accepted vdr-plugin-spider 0.2.1-4 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:21:45 +0200
Source: vdr-plugin-spider
Binary: vdr-plugin-spider
Architecture: source i386
Version: 0.2.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-spider - Plugin to vdr that implements the card game Spider 
Arachnid
Changes: 
 vdr-plugin-spider (0.2.1-4) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 20eeb3751921b4accd3d4a0ada8b3c9a00edbf3a 1389 vdr-plugin-spider_0.2.1-4.dsc
 d6f941bb3d3f693501196faa06cf6d46f8a200d1 3187 vdr-plugin-spider_0.2.1-4.diff.gz
 4223f064aca430a8a782fef3f65ae4e268b44ff4 61752 
vdr-plugin-spider_0.2.1-4_i386.deb
Checksums-Sha256: 
 51f02a5498577d99f60562bdacf6772495fbb42fb2d0e3c38371558f797ca643 1389 
vdr-plugin-spider_0.2.1-4.dsc
 927ac591d7ccdfa4f2d317e05767fe0ae585bc5f219ebb9c21ec45274b92523c 3187 
vdr-plugin-spider_0.2.1-4.diff.gz
 b619bf790eb030c4f80969d43f2065dd3cd80897400b895e6c1296c718143521 61752 
vdr-plugin-spider_0.2.1-4_i386.deb
Files: 
 7c5714c56bd7d10f8ce6a617a38ce645 1389 misc extra vdr-plugin-spider_0.2.1-4.dsc
 2d45e60bee5e645002cfb8ca08404bf4 3187 misc extra 
vdr-plugin-spider_0.2.1-4.diff.gz
 a43f97156cf7d2562163ff08a333061f 61752 misc extra 
vdr-plugin-spider_0.2.1-4_i386.deb

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

iEYEARECAAYFAkiCGe0ACgkQc9+NqwoydlJ5qACgoq6FFnJVL6B9CvcyS+ZRC5j7
bi0AmQGGTqOLY2MwB5FS+qzwR7V+5RqC
=9JXE
-END PGP SIGNATURE-


Accepted:
vdr-plugin-spider_0.2.1-4.diff.gz
  to pool/main/v/vdr-plugin-spider/vdr-plugin-spider_0.2.1-4.diff.gz
vdr-plugin-spider_0.2.1-4.dsc
  to pool/main/v/vdr-plugin-spider/vdr-plugin-spider_0.2.1-4.dsc
vdr-plugin-spider_0.2.1-4_i386.deb
  to pool/main/v/vdr-plugin-spider/vdr-plugin-spider_0.2.1-4_i386.deb


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



Accepted vdr-plugin-freecell 0.0.2-45 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 17:38:18 +0200
Source: vdr-plugin-freecell
Binary: vdr-plugin-freecell
Architecture: source i386
Version: 0.0.2-45
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-freecell - Plugin for VDR that implements the card game Freecell
Changes: 
 vdr-plugin-freecell (0.0.2-45) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
   * Using COMPAT=5 now
Checksums-Sha1: 
 d3bf46d8e7cd9e281d3b97f141d9c0c6bfd87881 1432 vdr-plugin-freecell_0.0.2-45.dsc
 54574e4b2ef387d4736fd0abd94c89efcc1fab26 5408 
vdr-plugin-freecell_0.0.2-45.diff.gz
 22be12d58571d5075bbd2c8b0588a45506a8ee56 47650 
vdr-plugin-freecell_0.0.2-45_i386.deb
Checksums-Sha256: 
 afc662ec6b582d11eb70f7b2bba38b0c69b7217dd0cfa09bb6569035dac74b87 1432 
vdr-plugin-freecell_0.0.2-45.dsc
 c6fd675d65030469b4e736d9dbf7898901c918ced9348b34368d11629795c2a3 5408 
vdr-plugin-freecell_0.0.2-45.diff.gz
 536bd69ab94d6881f6b3b2366eea383f30b5f176836625c1dd7b765ee34aa560 47650 
vdr-plugin-freecell_0.0.2-45_i386.deb
Files: 
 85367b2c0128db551ccda68f68c7a37d 1432 misc extra 
vdr-plugin-freecell_0.0.2-45.dsc
 e44910b52717b6a0cc10f2ddf3523b76 5408 misc extra 
vdr-plugin-freecell_0.0.2-45.diff.gz
 c7f1a4f3eae4388c3a01850cc6ffd59b 47650 misc extra 
vdr-plugin-freecell_0.0.2-45_i386.deb

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

iEYEARECAAYFAkiCGeoACgkQc9+NqwoydlLhzQCggkdUqjI6XZv/NYWLp6JrGeKp
7jMAnimv1XLBSm630AipVe+/y87PTXwj
=npXQ
-END PGP SIGNATURE-


Accepted:
vdr-plugin-freecell_0.0.2-45.diff.gz
  to pool/main/v/vdr-plugin-freecell/vdr-plugin-freecell_0.0.2-45.diff.gz
vdr-plugin-freecell_0.0.2-45.dsc
  to pool/main/v/vdr-plugin-freecell/vdr-plugin-freecell_0.0.2-45.dsc
vdr-plugin-freecell_0.0.2-45_i386.deb
  to pool/main/v/vdr-plugin-freecell/vdr-plugin-freecell_0.0.2-45_i386.deb


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



Accepted vdr-plugin-streamdev 0.3.3~cvs20080406.1321-4 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:24:29 +0200
Source: vdr-plugin-streamdev
Binary: vdr-plugin-streamdev-client vdr-plugin-streamdev-server
Architecture: source i386
Version: 0.3.3~cvs20080406.1321-4
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-streamdev-client - VDR Plugin to stream Live-TV to other VDR's - 
client part
 vdr-plugin-streamdev-server - VDR Plugin to stream Live-TV to other VDR's - 
server part
Changes: 
 vdr-plugin-streamdev (0.3.3~cvs20080406.1321-4) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 c9cb650a782e0169f36099cef20e9e9ff441443e 1612 
vdr-plugin-streamdev_0.3.3~cvs20080406.1321-4.dsc
 ab0935380c3ecf7aa275c8a0b96599dbfe6efcc2 4926 
vdr-plugin-streamdev_0.3.3~cvs20080406.1321-4.diff.gz
 c3d63bfa916bf24e913e0c5aef3da529d838b49a 67084 
vdr-plugin-streamdev-client_0.3.3~cvs20080406.1321-4_i386.deb
 041e346e43eb193dbbfc428e998eb6181363cc03 153062 
vdr-plugin-streamdev-server_0.3.3~cvs20080406.1321-4_i386.deb
Checksums-Sha256: 
 8d40723a4ef3b75399d7a3e831c02780542032363bb6e8833e193b5cbe03bad3 1612 
vdr-plugin-streamdev_0.3.3~cvs20080406.1321-4.dsc
 6b5e2f8bba02db721ba6f41c90e507bbf94f5fbd9fb7c13754096c7ddb95f85e 4926 
vdr-plugin-streamdev_0.3.3~cvs20080406.1321-4.diff.gz
 d5f7c8604b77904d55eccd0cde5734518d95e6e642129b7cec31f73afd651561 67084 
vdr-plugin-streamdev-client_0.3.3~cvs20080406.1321-4_i386.deb
 2df8a47beee1fc0f0ac7090d90872910b39fab6ff4eaaad6958be9cc03f8ba52 153062 
vdr-plugin-streamdev-server_0.3.3~cvs20080406.1321-4_i386.deb
Files: 
 f8a0b0d4b724dc13490893c1a0d9df0f 1612 misc extra 
vdr-plugin-streamdev_0.3.3~cvs20080406.1321-4.dsc
 d94b46662a4755561075b3b811c9cf6d 4926 misc extra 
vdr-plugin-streamdev_0.3.3~cvs20080406.1321-4.diff.gz
 54f13322b5251a176ffc519e2ae2ecfe 67084 misc extra 
vdr-plugin-streamdev-client_0.3.3~cvs20080406.1321-4_i386.deb
 11092e2ccf2da671137e23bb807c6f22 153062 misc extra 
vdr-plugin-streamdev-server_0.3.3~cvs20080406.1321-4_i386.deb

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

iEYEARECAAYFAkiCGe0ACgkQc9+NqwoydlIEnQCgt1bPTJQQ2Ej6m3JFhxx8YejK
5+wAoI2GUiLosITOZY0WmupPihlE5krO
=fA0X
-END PGP SIGNATURE-


Accepted:
vdr-plugin-streamdev-client_0.3.3~cvs20080406.1321-4_i386.deb
  to 
pool/main/v/vdr-plugin-streamdev/vdr-plugin-streamdev-client_0.3.3~cvs20080406.1321-4_i386.deb
vdr-plugin-streamdev-server_0.3.3~cvs20080406.1321-4_i386.deb
  to 
pool/main/v/vdr-plugin-streamdev/vdr-plugin-streamdev-server_0.3.3~cvs20080406.1321-4_i386.deb
vdr-plugin-streamdev_0.3.3~cvs20080406.1321-4.diff.gz
  to 
pool/main/v/vdr-plugin-streamdev/vdr-plugin-streamdev_0.3.3~cvs20080406.1321-4.diff.gz
vdr-plugin-streamdev_0.3.3~cvs20080406.1321-4.dsc
  to 
pool/main/v/vdr-plugin-streamdev/vdr-plugin-streamdev_0.3.3~cvs20080406.1321-4.dsc


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



Accepted vdr-plugin-osdserver 0.1.1a-1 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:03:58 +0200
Source: vdr-plugin-osdserver
Binary: vdr-plugin-osdserver
Architecture: source i386
Version: 0.1.1a-1
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-osdserver - VDR plugin to provide other programs access to the OSD
Changes: 
 vdr-plugin-osdserver (0.1.1a-1) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * New upstream release
   * Dropped 01_vdr-1.5.15.dpatch - fixed upstream
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 896007e592d5d58585ac8d587e61cca760d6 1433 vdr-plugin-osdserver_0.1.1a-1.dsc
 20f6bdf1b1be06f1e1c03183d267c8e5b6d193c5 41537 
vdr-plugin-osdserver_0.1.1a.orig.tar.gz
 7f475757c9e63dbf9a21ebfe5effe9cba3768c63 2383 
vdr-plugin-osdserver_0.1.1a-1.diff.gz
 3ff191e1d0ac4a5d2faea34a2a160ecf1d14e473 78720 
vdr-plugin-osdserver_0.1.1a-1_i386.deb
Checksums-Sha256: 
 a6ddd8d08c0d6b641a7e63d134dd606446b22178d352fde42eff1d4067c19108 1433 
vdr-plugin-osdserver_0.1.1a-1.dsc
 6d5fe45eb28a7bcb2ab3ac813a173e0b0a33f575e324deb49b5a3e84aa88a4ae 41537 
vdr-plugin-osdserver_0.1.1a.orig.tar.gz
 fd588b5a74609a017e77e87747ea57dc86e0bed8e7c9ba9a45c54a639cb0ff5d 2383 
vdr-plugin-osdserver_0.1.1a-1.diff.gz
 dbf224dd5c1d8c3d851999a1d8e37182260ac1c17026e4a3d907ee71390b191c 78720 
vdr-plugin-osdserver_0.1.1a-1_i386.deb
Files: 
 857391c49e2cfe973379ac16b3dd3262 1433 misc extra 
vdr-plugin-osdserver_0.1.1a-1.dsc
 cc3c9bc4c2a26f693bab257614664ff8 41537 misc extra 
vdr-plugin-osdserver_0.1.1a.orig.tar.gz
 8381f24ac9d1e67fd576c5e618be4b7b 2383 misc extra 
vdr-plugin-osdserver_0.1.1a-1.diff.gz
 87de070f75ceba2f4f4433af3f69edc0 78720 misc extra 
vdr-plugin-osdserver_0.1.1a-1_i386.deb

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

iEYEARECAAYFAkiCGesACgkQc9+NqwoydlI+tQCeJ5q37QLdfh/F55hSPu6cAN++
WL0An1OJbIyiudKXDI62TxjV/6rvOTLm
=6fpw
-END PGP SIGNATURE-


Accepted:
vdr-plugin-osdserver_0.1.1a-1.diff.gz
  to pool/main/v/vdr-plugin-osdserver/vdr-plugin-osdserver_0.1.1a-1.diff.gz
vdr-plugin-osdserver_0.1.1a-1.dsc
  to pool/main/v/vdr-plugin-osdserver/vdr-plugin-osdserver_0.1.1a-1.dsc
vdr-plugin-osdserver_0.1.1a-1_i386.deb
  to pool/main/v/vdr-plugin-osdserver/vdr-plugin-osdserver_0.1.1a-1_i386.deb
vdr-plugin-osdserver_0.1.1a.orig.tar.gz
  to pool/main/v/vdr-plugin-osdserver/vdr-plugin-osdserver_0.1.1a.orig.tar.gz


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



Accepted vdr-plugin-svdrpservice 0.0.3-15 (source all i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:33:25 +0200
Source: vdr-plugin-svdrpservice
Binary: vdr-plugin-svdrpservice svdrpservice-dev
Architecture: source all i386
Version: 0.0.3-15
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 svdrpservice-dev - VDR svdrpservice plugin development files
 vdr-plugin-svdrpservice - VDR plugin that provides a SVDRP service for other 
plugins
Changes: 
 vdr-plugin-svdrpservice (0.0.3-15) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 de78063d64b62b20fe20115064edf6a44bcf8b4c 1420 
vdr-plugin-svdrpservice_0.0.3-15.dsc
 54a2355987a5b2883c564520bd6994c0d9d8dda2 2499 
vdr-plugin-svdrpservice_0.0.3-15.diff.gz
 7074088976148bec6308639bdc1940ef38f454af 5942 svdrpservice-dev_0.0.3-15_all.deb
 9a45803e36f9904b0856ff41ebc639e845d686f6 16586 
vdr-plugin-svdrpservice_0.0.3-15_i386.deb
Checksums-Sha256: 
 7447fd6664bd468add0619846b8a53a5e5230f46c08da306ec25c633d2ac1074 1420 
vdr-plugin-svdrpservice_0.0.3-15.dsc
 bb0f73c80aa1af54b8f8d8b90d12369e255ab097913af805b5cb86c42ef0b794 2499 
vdr-plugin-svdrpservice_0.0.3-15.diff.gz
 a78ecc7f124eb34d13f1a8564009268c5bb3c2812f38b47aa0a6d41e083f6e15 5942 
svdrpservice-dev_0.0.3-15_all.deb
 a6e807512f08ec42c35080b5869881a16f6dd9891b6dbed7176c31b3e3aba8a3 16586 
vdr-plugin-svdrpservice_0.0.3-15_i386.deb
Files: 
 97bae150c4500646c1aca2d251369fc7 1420 misc extra 
vdr-plugin-svdrpservice_0.0.3-15.dsc
 639f7abe269b9e8ef4631950da88a3ce 2499 misc extra 
vdr-plugin-svdrpservice_0.0.3-15.diff.gz
 d584ba9d6c4cc9d1f31afdae5b1ac019 5942 misc extra 
svdrpservice-dev_0.0.3-15_all.deb
 dfd74321989da16fd1b8b02d29dbef02 16586 misc extra 
vdr-plugin-svdrpservice_0.0.3-15_i386.deb

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

iEYEARECAAYFAkiCGe4ACgkQc9+NqwoydlINcACgpAZnF8FyGRPpT22lnEuv4/Mf
u8YAniMvNY6wKxpWAJKyoQDAYJCx3psx
=PVbH
-END PGP SIGNATURE-


Accepted:
svdrpservice-dev_0.0.3-15_all.deb
  to pool/main/v/vdr-plugin-svdrpservice/svdrpservice-dev_0.0.3-15_all.deb
vdr-plugin-svdrpservice_0.0.3-15.diff.gz
  to 
pool/main/v/vdr-plugin-svdrpservice/vdr-plugin-svdrpservice_0.0.3-15.diff.gz
vdr-plugin-svdrpservice_0.0.3-15.dsc
  to pool/main/v/vdr-plugin-svdrpservice/vdr-plugin-svdrpservice_0.0.3-15.dsc
vdr-plugin-svdrpservice_0.0.3-15_i386.deb
  to 
pool/main/v/vdr-plugin-svdrpservice/vdr-plugin-svdrpservice_0.0.3-15_i386.deb


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



Accepted vdr-plugin-remoteosd 0.0.2-15 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:11:46 +0200
Source: vdr-plugin-remoteosd
Binary: vdr-plugin-remoteosd
Architecture: source i386
Version: 0.0.2-15
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-remoteosd - VDR plugin to control the OSD of a remote VDR
Changes: 
 vdr-plugin-remoteosd (0.0.2-15) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
Checksums-Sha1: 
 5edb3426364c900bfbea0a44f01fbd2a9a3f7a47 1432 vdr-plugin-remoteosd_0.0.2-15.dsc
 7d48a9af8ab5b128158559b2e67e7f6a079ed030 2652 
vdr-plugin-remoteosd_0.0.2-15.diff.gz
 6cba8a010abf0ddd5ecf1a42f122f61e65f991dd 19752 
vdr-plugin-remoteosd_0.0.2-15_i386.deb
Checksums-Sha256: 
 9f0d75cf33248c9b79b2fbf2598a82cf90981049133d598eec40482108868ea4 1432 
vdr-plugin-remoteosd_0.0.2-15.dsc
 22fda4d2063fae59ab01b8ce47c461c153e492424b06dc2d9e656b141eeb1101 2652 
vdr-plugin-remoteosd_0.0.2-15.diff.gz
 bedb960f30edb1d46600965dd819bcb1a5fb8cd7d1def4683e9414fc062fa950 19752 
vdr-plugin-remoteosd_0.0.2-15_i386.deb
Files: 
 8a2d358534be97154be1d2dc148b60a0 1432 misc extra 
vdr-plugin-remoteosd_0.0.2-15.dsc
 175d9e3f74809a7ceaaafa902d41f40f 2652 misc extra 
vdr-plugin-remoteosd_0.0.2-15.diff.gz
 145ccab508c35b471cb4139ecc927eca 19752 misc extra 
vdr-plugin-remoteosd_0.0.2-15_i386.deb

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

iEYEARECAAYFAkiCGewACgkQc9+NqwoydlKcugCeLao7qCwCOkKAabBlr454746J
lDEAoJhb/XsuMyyc9Jv3giHHlvys1cSc
=Squ9
-END PGP SIGNATURE-


Accepted:
vdr-plugin-remoteosd_0.0.2-15.diff.gz
  to pool/main/v/vdr-plugin-remoteosd/vdr-plugin-remoteosd_0.0.2-15.diff.gz
vdr-plugin-remoteosd_0.0.2-15.dsc
  to pool/main/v/vdr-plugin-remoteosd/vdr-plugin-remoteosd_0.0.2-15.dsc
vdr-plugin-remoteosd_0.0.2-15_i386.deb
  to pool/main/v/vdr-plugin-remoteosd/vdr-plugin-remoteosd_0.0.2-15_i386.deb


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



Accepted vdr-plugin-femon 1.6.1-1 (source i386)

2008-07-19 Thread Thomas Schmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 17:34:09 +0200
Source: vdr-plugin-femon
Binary: vdr-plugin-femon
Architecture: source i386
Version: 1.6.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Thomas Schmidt [EMAIL PROTECTED]
Description: 
 vdr-plugin-femon - DVB frontend status monitor plugin for VDR
Changes: 
 vdr-plugin-femon (1.6.1-1) unstable; urgency=low
 .
   [ Tobias Grimm ]
   * New upstream release
   * Dropped patchlevel control field
   * Build-Depend on vdr-dev (=1.6.0-5)
   * Bumped Standards-Version to 3.8.0
   * Using COMPAT=5 now
Checksums-Sha1: 
 f16ab6dd49be007deaeacc424683d6a1bc705b4b 1401 vdr-plugin-femon_1.6.1-1.dsc
 f1ca0c14a11784c4872b5aca03f85bda7f55b210 53766 
vdr-plugin-femon_1.6.1.orig.tar.gz
 5b9a357d9d33a7ab3610c721dbca6fbe463f6b05 4466 vdr-plugin-femon_1.6.1-1.diff.gz
 b07e8efc7f199189fa68d5dc8953dad84eb65084 74692 
vdr-plugin-femon_1.6.1-1_i386.deb
Checksums-Sha256: 
 3ef4e6a8d0d8413f764fcb9532ffc0c474e94b08de61931e3e7859bc698398dc 1401 
vdr-plugin-femon_1.6.1-1.dsc
 d22159ea4f3023606ad0133d6e13bba06396181ad3b940ff974d3b1b9a7b503f 53766 
vdr-plugin-femon_1.6.1.orig.tar.gz
 f9dd2efc84271d92582caeb8aa305c34022b45402cfa27c57f75680e0a304e04 4466 
vdr-plugin-femon_1.6.1-1.diff.gz
 8297c78552ff45eebaffe25fc04126002f4f90363eeeb94fe90da32e01bf294c 74692 
vdr-plugin-femon_1.6.1-1_i386.deb
Files: 
 ea1e5e39e41f28ad1b75cbb9cc518108 1401 misc extra vdr-plugin-femon_1.6.1-1.dsc
 ffbdace32bdd068a12ef332b3dc94762 53766 misc extra 
vdr-plugin-femon_1.6.1.orig.tar.gz
 5941fbf87d81f05b51af62a1230d45ed 4466 misc extra 
vdr-plugin-femon_1.6.1-1.diff.gz
 ad43f8230fdd1205ebadadc1f474fed4 74692 misc extra 
vdr-plugin-femon_1.6.1-1_i386.deb

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

iEYEARECAAYFAkiCGekACgkQc9+NqwoydlI/qACbBbnvDaPB3Uh8aggJjXOxpuVK
fMcAoMiDypN9AeluNbWYe69fM4N3EpN2
=VYCG
-END PGP SIGNATURE-


Accepted:
vdr-plugin-femon_1.6.1-1.diff.gz
  to pool/main/v/vdr-plugin-femon/vdr-plugin-femon_1.6.1-1.diff.gz
vdr-plugin-femon_1.6.1-1.dsc
  to pool/main/v/vdr-plugin-femon/vdr-plugin-femon_1.6.1-1.dsc
vdr-plugin-femon_1.6.1-1_i386.deb
  to pool/main/v/vdr-plugin-femon/vdr-plugin-femon_1.6.1-1_i386.deb
vdr-plugin-femon_1.6.1.orig.tar.gz
  to pool/main/v/vdr-plugin-femon/vdr-plugin-femon_1.6.1.orig.tar.gz


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



Accepted libfilesys-diskspace-perl 0.05-12 (source all)

2008-07-19 Thread midget
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Jul 2008 23:56:27 +0200
Source: libfilesys-diskspace-perl
Binary: libfilesys-diskspace-perl
Architecture: source all
Version: 0.05-12
Distribution: unstable
Urgency: low
Maintainer: Dario Minnucci (midget) [EMAIL PROTECTED]
Changed-By: Dario Minnucci (midget) [EMAIL PROTECTED]
Description: 
 libfilesys-diskspace-perl - fetch filesystem size and usage information from 
Perl
Closes: 491215
Changes: 
 libfilesys-diskspace-perl (0.05-12) unstable; urgency=low
 .
   * debian/control: Bump Standards-Version to 3.8.0
   * debian/control  debian/rules: Added dpatch support
   * debian/patches/01_add_CIFS_filesystem_support.dpatch: Added CIFS support.
 Thanks Mark Sheppard [EMAIL PROTECTED] for the patch. (Closes: #491215)
   * debian/copyright: MPCF (Machine-Parsable Copyright Format) implementation.
 Visit http://wiki.debian.org/Proposals/CopyrightFormat for details.
Checksums-Sha1: 
 8b1ec5ef759538646a5d3bd5633702fc764dc6c2 1116 
libfilesys-diskspace-perl_0.05-12.dsc
 3cd03455d8fcc13b8bc16959dac0c672dc7673c7 6844 
libfilesys-diskspace-perl_0.05-12.diff.gz
 3bb4d6656cf978a6aa409d5d60dcdaee113dcf1a 10340 
libfilesys-diskspace-perl_0.05-12_all.deb
Checksums-Sha256: 
 8df22d06038b947d5b0531cfef0878525cbedd14d8a945c4ddd239843812f14b 1116 
libfilesys-diskspace-perl_0.05-12.dsc
 fee26cd2623f7bcca3fb802b9876507ddb5a3f4aac37c975dd22f2a6396919ea 6844 
libfilesys-diskspace-perl_0.05-12.diff.gz
 135ca134d929cc7dacfde7a5414ecda6c1865458d63d41f006d5534178607e3d 10340 
libfilesys-diskspace-perl_0.05-12_all.deb
Files: 
 2b71d8de4313feeb97cab222ac2216df 1116 perl optional 
libfilesys-diskspace-perl_0.05-12.dsc
 150b2df782e9ff59405850ed8c04a9e9 6844 perl optional 
libfilesys-diskspace-perl_0.05-12.diff.gz
 1fa9efe65c4a535d006bdf00d2e4c11c 10340 perl optional 
libfilesys-diskspace-perl_0.05-12_all.deb

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

iEYEARECAAYFAkiCKBMACgkQxRSvjkukAcNE+wCgxaa0HP3U21Fja+2tm3W/vRqX
19QAniEW6ZxWHdlwKXCIPiXG8vHAXunk
=6Y9z
-END PGP SIGNATURE-


Accepted:
libfilesys-diskspace-perl_0.05-12.diff.gz
  to 
pool/main/libf/libfilesys-diskspace-perl/libfilesys-diskspace-perl_0.05-12.diff.gz
libfilesys-diskspace-perl_0.05-12.dsc
  to 
pool/main/libf/libfilesys-diskspace-perl/libfilesys-diskspace-perl_0.05-12.dsc
libfilesys-diskspace-perl_0.05-12_all.deb
  to 
pool/main/libf/libfilesys-diskspace-perl/libfilesys-diskspace-perl_0.05-12_all.deb


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



Accepted libset-object-perl 1.24-1 (source amd64)

2008-07-19 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 17:40:06 +0200
Source: libset-object-perl
Binary: libset-object-perl
Architecture: source amd64
Version: 1.24-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Ansgar Burchardt [EMAIL PROTECTED]
Description: 
 libset-object-perl - Collection of objects without duplications
Changes: 
 libset-object-perl (1.24-1) unstable; urgency=low
 .
   [ gregor herrmann ]
   * debian/watch: extended regexp for matching upstream releases.
   * debian/copyright: copy updated copyright information verbatim from
 upstream source.
   * Set Standards-Version to 3.8.0 (no changes).
   * debian/control: change my email address.
   * Refresh debian/rules, no functional changes.
   * Use pod2text for converting Changes.pod in debian/rules, drop dependency
 on perl-doc in debian/control.
 .
   [ Ansgar Burchardt ]
   * New upstream release
   * Add myself to Uploaders
Checksums-Sha1: 
 a7feffbbdff4c1eab3635ce7436be0b6f8dd160b 1561 libset-object-perl_1.24-1.dsc
 32828332e773012f34d964cffbb862ca13b681ee 61541 
libset-object-perl_1.24.orig.tar.gz
 50e9c6fa3f05fd741dc897d1f0d08639e16ddfab 4196 libset-object-perl_1.24-1.diff.gz
 33d38fd899d97654a1b940b1efdf695b35963c32 43578 
libset-object-perl_1.24-1_amd64.deb
Checksums-Sha256: 
 5b9ef24f16eb79ff1b2da258eddbb200fd1b72d0cbc0346f97ccdf56e27adac7 1561 
libset-object-perl_1.24-1.dsc
 9ff31850d504c241f72f611efc114ff6a1cfded082ff706792fbfce9ece67c7e 61541 
libset-object-perl_1.24.orig.tar.gz
 12a6a6e4ef7c7b0691421f55ae3a2ff7d5826dde28b79457efd4854a827826ed 4196 
libset-object-perl_1.24-1.diff.gz
 d7a09ab08fa4fddb05fa72014f9d920f402b013f8bbae3adeb27c2fbb5baca7d 43578 
libset-object-perl_1.24-1_amd64.deb
Files: 
 172e24aee82e43b3dcce3ca742c33d6c 1561 perl optional 
libset-object-perl_1.24-1.dsc
 47d1a5f3fa8e25cb94958b1a1c559c39 61541 perl optional 
libset-object-perl_1.24.orig.tar.gz
 d7632cd7d06685d069f14d907d4430e5 4196 perl optional 
libset-object-perl_1.24-1.diff.gz
 39dd031b03594a3bbd558925299917d2 43578 perl optional 
libset-object-perl_1.24-1_amd64.deb

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

iEYEARECAAYFAkiCMRIACgkQHqjlqpcl9juVfACfcTipxx0qufnFVgqHkQLBhwhf
p2oAn0QmXVogr+wWDdtwceORsnYHODRS
=yXrm
-END PGP SIGNATURE-


Accepted:
libset-object-perl_1.24-1.diff.gz
  to pool/main/libs/libset-object-perl/libset-object-perl_1.24-1.diff.gz
libset-object-perl_1.24-1.dsc
  to pool/main/libs/libset-object-perl/libset-object-perl_1.24-1.dsc
libset-object-perl_1.24-1_amd64.deb
  to pool/main/libs/libset-object-perl/libset-object-perl_1.24-1_amd64.deb
libset-object-perl_1.24.orig.tar.gz
  to pool/main/libs/libset-object-perl/libset-object-perl_1.24.orig.tar.gz


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



Accepted openoffice.org-thesaurus-it 2.0.7.gh.deb1-1 (source all)

2008-07-19 Thread Enrico Zini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 18:04:08 +0100
Source: openoffice.org-thesaurus-it
Binary: openoffice.org-thesaurus-it
Architecture: source all
Version: 2.0.7.gh.deb1-1
Distribution: unstable
Urgency: low
Maintainer: Enrico Zini [EMAIL PROTECTED]
Changed-By: Enrico Zini [EMAIL PROTECTED]
Description: 
 openoffice.org-thesaurus-it - Italian Thesaurus for OpenOffice.org 2
Closes: 402468
Changes: 
 openoffice.org-thesaurus-it (2.0.7.gh.deb1-1) unstable; urgency=low
 .
   * New upstream version.  Closes: #402468.
   * Moved to collab-maint and added Vcs- fields.
   * Repackaged upstream source, therefore adding .deb1 to the version number.
Checksums-Sha1: 
 8806cd483e9ba39a7a5f1ad500bb5e905a8c432b 1359 
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1.dsc
 a92405c95f30514d277df2c752d19b5a1acdbfb8 933087 
openoffice.org-thesaurus-it_2.0.7.gh.deb1.orig.tar.gz
 d3bf066af66d9d4f7fc08e4100ee804866b380b2 61611 
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1.diff.gz
 6bef4aa4b73684bf0f32f5a996074cd1c83321f9 968212 
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1_all.deb
Checksums-Sha256: 
 68747f22ce38fe808ef91d5878f1f10522f3b18d6043183ee108216fd582fbb6 1359 
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1.dsc
 2b22b9ad76df77382931a6ea4b87d680f471b151580434f8795cbebe0cfc7b89 933087 
openoffice.org-thesaurus-it_2.0.7.gh.deb1.orig.tar.gz
 14eff9668353ec4c6a244533634852d55585087ed6da9401365c629853d06cef 61611 
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1.diff.gz
 472d479cde675bc1195cc1bbc364551a671ed70952789fc88e1d848fa3bdb20e 968212 
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1_all.deb
Files: 
 25d0cb0cdc847a976c80565f2cb6707a 1359 text optional 
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1.dsc
 2e7dbc441ecf9398ee03a14657e0c80b 933087 text optional 
openoffice.org-thesaurus-it_2.0.7.gh.deb1.orig.tar.gz
 d1b21aaf2326d8f54b717e408a90a927 61611 text optional 
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1.diff.gz
 838767730a4573755757782e4dcfd553 968212 text optional 
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1_all.deb

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

iD8DBQFIgiwc9LSwzHl+v6sRAp+HAJ9gAobwa1l3svsR+AADwfKEU/HwDwCeKm73
vHnq60sWQ98X0RQx+dJYQHo=
=2F2l
-END PGP SIGNATURE-


Accepted:
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1.diff.gz
  to 
pool/main/o/openoffice.org-thesaurus-it/openoffice.org-thesaurus-it_2.0.7.gh.deb1-1.diff.gz
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1.dsc
  to 
pool/main/o/openoffice.org-thesaurus-it/openoffice.org-thesaurus-it_2.0.7.gh.deb1-1.dsc
openoffice.org-thesaurus-it_2.0.7.gh.deb1-1_all.deb
  to 
pool/main/o/openoffice.org-thesaurus-it/openoffice.org-thesaurus-it_2.0.7.gh.deb1-1_all.deb
openoffice.org-thesaurus-it_2.0.7.gh.deb1.orig.tar.gz
  to 
pool/main/o/openoffice.org-thesaurus-it/openoffice.org-thesaurus-it_2.0.7.gh.deb1.orig.tar.gz


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



Accepted janest-core 0.5.0-5 (source amd64)

2008-07-19 Thread Stefano Zacchiroli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Jul 2008 19:47:03 +0200
Source: janest-core
Binary: libcore-ocaml-dev libcore-ocaml
Architecture: source amd64
Version: 0.5.0-5
Distribution: unstable
Urgency: medium
Maintainer: Stefano Zacchiroli [EMAIL PROTECTED]
Changed-By: Stefano Zacchiroli [EMAIL PROTECTED]
Description: 
 libcore-ocaml - Jane Street Capital's alternative standard library for OCaml
 libcore-ocaml-dev - Jane Street Capital's alternative standard library for 
OCaml
Closes: 485156
Changes: 
 janest-core (0.5.0-5) unstable; urgency=medium
 .
   * debian/README.Debian: clarify the bin-prot issue on some arch
   * get rid of the (unused) conditional quilt machinery (Closes: #485156)
Checksums-Sha1: 
 bd30bf91f1274916c2aaf3135f4718244dd0b6f6 1413 janest-core_0.5.0-5.dsc
 e9b2e49877212287545bb59b336dbeb5fb99d48f 4432 janest-core_0.5.0-5.diff.gz
 6928e551752e3d54328f952e4fa0c18e5fa2178c 932912 
libcore-ocaml-dev_0.5.0-5_amd64.deb
 2d3a82dda4b4f70b374ad1c2f4312f49bd324c80 19892 libcore-ocaml_0.5.0-5_amd64.deb
Checksums-Sha256: 
 a6e0d904a26ee7d293dcc9530738595cdb034100c0056aa8b3f1ea009504bbd4 1413 
janest-core_0.5.0-5.dsc
 6a9ca3aafe1bd541c85f5d55ce4db16d5bdb90dfb2b7c0240b2cbbdb975fc2ca 4432 
janest-core_0.5.0-5.diff.gz
 7c73418346450abed6d9e5d81cbe1560cfb45edac91bb806f7d669b3729ef358 932912 
libcore-ocaml-dev_0.5.0-5_amd64.deb
 2eab1f5d41872f340a9be55de2ffce5335d4813b9726d8c5506d09536dd0d162 19892 
libcore-ocaml_0.5.0-5_amd64.deb
Files: 
 508ca80c7e245b15986f3bcb73c22512 1413 devel optional janest-core_0.5.0-5.dsc
 d13c8c4ea6b9cc223aa2eb222a7fd4a0 4432 devel optional 
janest-core_0.5.0-5.diff.gz
 b66c4b88d703b4a5f0a8a2a755ee1f16 932912 libdevel optional 
libcore-ocaml-dev_0.5.0-5_amd64.deb
 d0137a1eed169555bf42790718761b20 19892 libs optional 
libcore-ocaml_0.5.0-5_amd64.deb

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

iD8DBQFIgi4O1cqbBPLEI7wRAs98AKCEZkBYxLMzSArGNEET2yEYdLZk+QCgkCvv
tM65MCsnUGFcsyhrclsv7YE=
=xdCv
-END PGP SIGNATURE-


Accepted:
janest-core_0.5.0-5.diff.gz
  to pool/main/j/janest-core/janest-core_0.5.0-5.diff.gz
janest-core_0.5.0-5.dsc
  to pool/main/j/janest-core/janest-core_0.5.0-5.dsc
libcore-ocaml-dev_0.5.0-5_amd64.deb
  to pool/main/j/janest-core/libcore-ocaml-dev_0.5.0-5_amd64.deb
libcore-ocaml_0.5.0-5_amd64.deb
  to pool/main/j/janest-core/libcore-ocaml_0.5.0-5_amd64.deb


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



  1   2   >