Re: using perl in preinst script

2010-12-30 Thread Philipp Kern
On 2010-12-30, Peter Samuelson pe...@p12n.org wrote:
 On 2010-12-28, Carsten Hey cars...@debian.org wrote:
  system.  The remaining perl library packages could be removed after
  installing debconf-english.
 [Philipp Kern]
 You don't care about non-native speakers?  SCNR.
 That's not how I read it at all.  I think he's just saying,
 debconf-i18n requires perl, but that in itself is not a barrier to
 removing perl-base from Essential, because debconf-english (its
 alternative) does not need it.  Obviously the discussion of what
 belongs in the Essential set is not at all the same thing as the
 discussion of what packages debootstrap should install by default
 (a base system).

I know.  It was ironic, thus the Sorry, could not resist..  I recently
listened to a talk where there was a complaint about gdm running a full Gnome
session and why the heck this was necessary.  It was countered with so you
don't care about disabled people!? argument because you want screenreader
and input method infrastructure available.

But that's way off-topic. ;)

Kind regards
Philipp Kern



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/slrnihop2a.afk.tr...@kelgar.0x539.de



[vu...@gnome.org: Cross-distro meeting about application installer]

2010-12-30 Thread Stefano Zacchiroli
- Forwarded message from Vincent Untz vu...@gnome.org -

Date: Wed, 29 Dec 2010 18:49:48 +0100
From: Vincent Untz vu...@gnome.org
To: distributi...@lists.freedesktop.org
Subject: Cross-distro meeting about application installer

Hi all,

We're organizing a cross-distro meeting in January to discuss the
application installer topic. It's a hot topic in many distros at the
moment, and we believe it's an area where we can collaborate a lot.

I've contacted various people privately already (from Debian, Fedora,
Mageia, openSUSE and Ubuntu), and there's interest in such a meeting.

All the information about the meeting is at
http://distributions.freedesktop.org/wiki/Meetings/AppInstaller2011

If you'd like to attend the meeting, or if there's any specific topic
that you'd like to see discussed, please edit the wiki page!

(I'll be away from mails for a few days, but I'll reply to questions
when I come back, if you have any :-))

Cheers,

Vincent

-- 
Les gens heureux ne sont pas pressés.
___
Distributions mailing list
distributi...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/distributions


- End forwarded message -

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -- http://upsilon.cc/zack/
Quando anche i santi ti voltano le spalle, |  .  |. I've fans everywhere
ti resta John Fante -- V. Capossela ...| ..: |.. -- C. Adams


signature.asc
Description: Digital signature


Bug#608364: ITP: dmedia -- A simple distributed media library

2010-12-30 Thread Bilal Akhtar
Package: wnpp
Severity: wishlist
Owner: Bilal Akhtar bilalakh...@ubuntu.com


* Package name: dmedia
  Version : 0.2-1
  Upstream Author : Jason Gerard DeRose jder...@novacut.com
* URL : http://launchpad.net/dmedia
* License : AGPL
  Programming Lang: Python
  Description : A simple distributed media library

 DMedia is a simple distributed media library which greatly
facilitates playing of media files and storing their metadata
for quick access. It stores the metadata of the media files in
CouchDB. Media files can also be loaded remotely over a network
connection.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101230104439.2991.79377.report...@localhost6



Bug#608371: ITP: libparallel-prefork-perl -- A simple prefork server framework

2010-12-30 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist
Owner: Dominic Hargreaves d...@earth.li

* Package name: libparallel-prefork-perl
  Version : 0.11
  Upstream Author : Kazuho Oku kazuho...@gmail.com
* URL : http://search.cpan.org/dist/Parallel-Prefork/
* License : Perl
  Programming Lang: Perl
  Description : A simple prefork server framework

This module is intended for use in operations that can be done in parallel
where the number of processes to be forked off should be limited, much like
Parallel::ForkManager. Parallel::Prefork also supports graceful shutdown
and run-time reconfiguration.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101230110427.5498.68442.report...@carme.larted.org.uk



Bug#608375: ITP: libserver-starter-perl -- a superdaemon for hot-deploying server programs

2010-12-30 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist
Owner: Dominic Hargreaves d...@earth.li

* Package name: libserver-starter-perl
  Version : 0.09
  Upstream Author : Kazuho Oku kazuho...@gmail.com
* URL : http://search.cpan.org/dist/Server-Starter/
* License : Perl
  Programming Lang: Perl
  Description : a superdaemon for hot-deploying server programs

Server::Starter supports the deployment of server programs with graceful
restarts. It includes a script which works as a superdaemon that binds to
zero or more TCP ports, and repeatedly spawns the server program that
actually handles the necessary tasks (for example, responding to incoming
connections). The spawned server programs under Server::Starter call
accept(2) and handle the requests.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101230111521.5574.81066.report...@carme.larted.org.uk



Re: Safe File Update (atomic)

2010-12-30 Thread Henrique de Moraes Holschuh
On Wed, 29 Dec 2010, Olaf van der Spek wrote:
 Writing a temp file, fsync, rename is often proposed. However, the

It is:
  write temp file (in same directory as file to be replaced), fsync temp
  file[1], rename (atomic), fsync directory[2].

[1] Makes sure file data has been commited to backend device before
the metadata update

[2] Makes sure the metadata has been commited to permantent storage.
Can often be ignored when you don't really care to know you will
get the new contents (as opposed to the old contents) in case of
a crash.  MTAs and spools, for example, MUST do it.

Which steps you can skip is filesystem-options/filesystem/
kernel-version/kernel dependent.  When the rename acts as a barrier, [1]
can be skipped, for example.  Tracking this is a losing proposition.

If we could use some syscall to make [1] into a simple barrier request
(guaranteed to degrade to fsync if barriers are not operating), it would
be better performance-wise.  This is what one should request of libc and
the kernels with a non-zero chance of getting it implemented (in fact,
it might even already exist).

 I've brought this up on linux-fsdevel and linux-ext4 but they (Ted)
 claim those exceptions aren't really a problem.

Indeed they are not.  Code has been dealing with them for years.  You
name the temp file properly, and teach your program to clean old ones up
*safely* (see vim swap file handling for an example) when it starts.

vim is a good example: nobody gets surprised by vim swap-files left over
when vim/computer crashes. And vim will do something smart with them if
it finds them in the current directory when it is started.

BTW: safely removing a file is also tricky.  AFAIK, one must open it RW,
in exclusive mode. stat it by fd and check whether it is what one
expects (regular file, ownership).  unlink it by fd.  close the fd.

 Is there a code snippet or lib function that handles this properly?

I don't know.  I'd be interested in the answer, though :-)

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101230114655.ga19...@khazad-dum.debian.net



Bug#608377: ITP: libhtml-quoted-perl -- extract structure of quoted HTML mail message

2010-12-30 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist
Owner: Dominic Hargreaves d...@earth.li

* Package name: libhtml-quoted-perl
  Version : 0.02
  Upstream Author : Ruslan Zakirov r...@bestpractical.com
* URL : http://search.cpan.org/dist/HTML-Quoted/
* License : not yet determined
  Programming Lang: Perl
  Description : extract structure of quoted HTML mail message

Like Text::Quoted, this module extracts the structure of quoted
text in mail messages, but for HTML email.

NB: the current CPAN release is marked as experimental and is missing
a licence. I will clarify these points with the author before uploading.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101230113310.7199.91797.report...@carme.larted.org.uk



Bug#608380: ITP: libregexp-common-net-cidr-perl -- provide patterns for CIDR blocks

2010-12-30 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist
Owner: Dominic Hargreaves d...@earth.li

* Package name: libregexp-common-net-cidr-perl
  Version : 0.02
  Upstream Author : Ruslan U. Zakirov r...@bestpractical.com
* URL : http://search.cpan.org/dist/Regexp-Common-net-CIDR/
* License : not yet determined
  Programming Lang: Perl
  Description : provide patterns for CIDR blocks

This module provides regexp patterns for CIDR netblocks.

NB: The licence for this software is not yet determined. I will
check with the author before uploading.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101230113901.7325.38289.report...@carme.larted.org.uk



Re: Safe File Update (atomic)

2010-12-30 Thread Olaf van der Spek
On Thu, Dec 30, 2010 at 12:46 PM, Henrique de Moraes Holschuh
h...@debian.org wrote:
  write temp file (in same directory as file to be replaced), fsync temp

What if the target name is actually a symlink? To a different volume?
What if you're not allowed to create a file in that dir.

 If we could use some syscall to make [1] into a simple barrier request
 (guaranteed to degrade to fsync if barriers are not operating), it would
 be better performance-wise.  This is what one should request of libc and
 the kernels with a non-zero chance of getting it implemented (in fact,
 it might even already exist).

My proposal was O_ATOMIC:
// begin transaction
open(fname, O_ATOMIC | O_TRUNC);
write; // 0+ times
close;

Seems like the ideal API from the app's point of view.

 I've brought this up on linux-fsdevel and linux-ext4 but they (Ted)
 claim those exceptions aren't really a problem.

 Indeed they are not.  Code has been dealing with them for years.  You

Code has been wrong for years to, based on the reason reports about
file corruption with ext4.

 name the temp file properly, and teach your program to clean old ones up
 *safely* (see vim swap file handling for an example) when it starts.

What about restoring meta-data? File-owner?

 vim is a good example: nobody gets surprised by vim swap-files left over
 when vim/computer crashes. And vim will do something smart with them if
 it finds them in the current directory when it is started.

I'm sure the vim code is far from trivial. I think this complexity is
part of the reason most apps don't bother.

 BTW: safely removing a file is also tricky.  AFAIK, one must open it RW,
 in exclusive mode. stat it by fd and check whether it is what one

Exclusive mode? Linux doesn't know about mandatory locking (AFAIK).

 expects (regular file, ownership).  unlink it by fd.  close the fd.

 Is there a code snippet or lib function that handles this properly?

 I don't know.  I'd be interested in the answer, though :-)

I'll ask glibc.

Olaf


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktikm+dacfnq7lort9vo7p-m-gvn0dgqxup5au...@mail.gmail.com



Bug#608392: ITP: underscore -- functional programming aid for JavaScript working well with jQuery

2010-12-30 Thread Jonas Smedegaard
Package: wnpp
Severity: wishlist
Owner: Jonas Smedegaard d...@jones.dk

* Package name: underscore
  Version : 1.1.3
  Upstream Author : Jeremy Ashkenas jer...@documentcloud.org
* URL : http://documentcloud.github.com/underscore/
* License : Expat
  Programming Lang: JavaScript
  Description : functional programming aid for JavaScript working well with 
jQuery

 Underscore is a utility-belt library for JavaScript that provides a lot
 of the functional programming support that you would expect in
 Prototype.js (or Ruby), but without extending any of the built-in
 JavaScript objects.  It's the tie to go along with jQuery's tux.
 .
 Underscore provides 60-odd functions that support both the usual
 functional suspects: map, select, invoke - as well as more specialized
 helpers: function binding, javascript templating, deep equality
 testing, and so on.  It delegates to built-in functions, if present, so
 modern browsers will use the native implementations of forEach, map,
 reduce, filter, every, some and indexOf.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101230142859.15188.13649.report...@localhost.localdomain



Re: Safe File Update (atomic)

2010-12-30 Thread Shachar Shemesh

On 30/12/10 13:46, Henrique de Moraes Holschuh wrote:




Is there a code snippet or lib function that handles this properly?


I don't know.  I'd be interested in the answer, though :-)




I'm working on one under the MIT license. Will probably release it by 
the end of this week. Will also handle copying the permissions over and 
following symlinks.


Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting Ltd.
http://www.lingnu.com


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d1c9d3b.6060...@debian.org



Bug#608395: ITP: varnisnncsa-vhost -- Wrapper around 'varnishncsa' tool to save varnish logs with virtualhost

2010-12-30 Thread Joenio Costa
Package: wnpp
Severity: wishlist
Owner: Joenio Costa joe...@perl.org.br


* Package name: varnisnncsa-vhost
  Version : 0.1
  Upstream Author : Joenio Costa joe...@perl.org.br
* URL : http://gitorious.org/varnisnncsa-vhost
* License : GPL2
  Programming Lang: Perl
  Description : Wrapper around 'varnishncsa' tool to save varnish logs with 
virtualhost

This simple script uses varnishncsa tool to provide a way to store varnish logs
with vhost, cause varnish by default until version 2.1.5 not allow to customize
log formats.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101230143644.28765.80997.report...@case.neuromancer



Re: Safe File Update (atomic)

2010-12-30 Thread Olaf van der Spek
On Thu, Dec 30, 2010 at 3:51 PM, Shachar Shemesh shac...@shemesh.biz wrote:
 I'm working on one under the MIT license. Will probably release it by the
 end of this week. Will also handle copying the permissions over and
 following symlinks.

Sounds great!
Got a project page already?
What aboue file owner? Meta-data (ACL)?

Olaf


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktik-o2mu47dfdvm8kedobjfhw7swkxcwy9fwh...@mail.gmail.com



Re: Safe File Update (atomic)

2010-12-30 Thread Mike Hommey
On Thu, Dec 30, 2010 at 03:30:29PM +0100, Olaf van der Spek wrote:
  name the temp file properly, and teach your program to clean old ones up
  *safely* (see vim swap file handling for an example) when it starts.
 
 What about restoring meta-data? File-owner?

owner, permissions, acl, xattrs, and whatever other future stuff can be
stored about files, which then all applications should be made aware of?
Yay for simplicity.

Mike


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101230151011.ga12...@glandium.org



Re: Safe File Update (atomic)

2010-12-30 Thread Shachar Shemesh

On 30/12/10 17:02, Olaf van der Spek wrote:

On Thu, Dec 30, 2010 at 3:51 PM, Shachar Shemeshshac...@shemesh.biz  wrote:
   

I'm working on one under the MIT license. Will probably release it by the
end of this week. Will also handle copying the permissions over and
following symlinks.
 

Sounds great!
Got a project page already?
   
No. I was doing it as code to accompany an article on my company's site 
about how it should be done. I was originally out to write the article, 
and then decided to add code. A good thing, too, as recursively 
resolving symbolic links is not trivial. There is an extremely simple 
way to do it on Linux, but it will not work on all platforms (the *BSD 
platforms, including Mac, do not have /proc by default).

What aboue file owner? Meta-data (ACL)?

Olaf
   


The current code (I'm still working on it, or I would have released it 
already, but it's about 80% done) does copy owner data over (but ignores 
failures), but does not handle ACLs. I decided to postpone this 
particular hot potato until I can get a chance to see how to do it (i.e. 
- never had a chance on Linux) AND how to do it in a cross-platform way 
(the code is designed to work on any Posix). Pointers/patches once 
released are, of course, welcome :-)


Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting Ltd.
http://www.lingnu.com


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d1ca143.9020...@debian.org



Re: Safe File Update (atomic)

2010-12-30 Thread Olaf van der Spek
On Thu, Dec 30, 2010 at 4:12 PM, Shachar Shemesh shac...@debian.org wrote:
 No. I was doing it as code to accompany an article on my company's site
 about how it should be done. I was originally out to write the article, and
 then decided to add code. A good thing, too, as recursively resolving
 symbolic links is not trivial. There is an extremely simple way to do it on
 Linux, but it will not work on all platforms (the *BSD platforms, including
 Mac, do not have /proc by default).

Depending on /proc is probably not reasonable.
Are you sure it will be atomic? ;)

 What aboue file owner? Meta-data (ACL)?

 Olaf


 The current code (I'm still working on it, or I would have released it
 already, but it's about 80% done) does copy owner data over (but ignores
 failures), but does not handle ACLs. I decided to postpone this particular

How do you preserve owner (as non-root)?

 hot potato until I can get a chance to see how to do it (i.e. - never had a
 chance on Linux) AND how to do it in a cross-platform way (the code is
 designed to work on any Posix). Pointers/patches once released are, of
 course, welcome :-)

The reason I asked for a kernelland solution is because it's hard if
not impossible to do properly in userland. But some kernel devs (Ted
and others) don't agree. They reason that the desire to preserve all
meta-data isn't reasonable by itself.

Olaf


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktik93zn1yjf5xyq_+rhaonrj1bszcafpnmkrt...@mail.gmail.com



Re: Safe File Update (atomic)

2010-12-30 Thread Henrique de Moraes Holschuh
On Thu, 30 Dec 2010, Olaf van der Spek wrote:
 On Thu, Dec 30, 2010 at 12:46 PM, Henrique de Moraes Holschuh
 h...@debian.org wrote:
   write temp file (in same directory as file to be replaced), fsync temp
 
 What if the target name is actually a symlink? To a different volume?

Indeed. You have to check that first, of course :-(  This is about safe
handling of such functions, symlinks always have to be derreferenced and
their target checked.  After that, you operate on the target, if the symlink
changes, your operations will not.

 What if you're not allowed to create a file in that dir.

You fail the write.  Or the user has to request the unsafe handling
(truncate + write).  Or you have to detect it will happen and switch modes
if you're allowed to.

  If we could use some syscall to make [1] into a simple barrier request
  (guaranteed to degrade to fsync if barriers are not operating), it would
  be better performance-wise.  This is what one should request of libc and
  the kernels with a non-zero chance of getting it implemented (in fact,
  it might even already exist).
 
 My proposal was O_ATOMIC:
 // begin transaction
 open(fname, O_ATOMIC | O_TRUNC);
 write; // 0+ times
 close;
 
 Seems like the ideal API from the app's point of view.

POSIX filesystems do not support it, so you'd need glibc to do everything
your application would have to get that atomicity.  I.e. it should go in a
separate lib, anyway, and you will have to code for it in the app :(

It is not transparent.  It cannot be.  What about mmap()?  What about
read+write patterns?

At most you could have an open+write+close function that encapsulate most
of the crap, with a few options to tell it what to do if it finds a symlink
or mismatched owner, what to do if it cannot do it in an atomic way, etc.

I suppose one could actually ask for a non-posix interface to do all those
three operations in one syscall, but I don't think the kernel people will
want to implement it.  It would make sense only if object stores become
commonplace (where this thing is likely an object store primitive, anyway).

  I've brought this up on linux-fsdevel and linux-ext4 but they (Ted)
  claim those exceptions aren't really a problem.
 
  Indeed they are not.  Code has been dealing with them for years.  You
 
 Code has been wrong for years to, based on the reason reports about
 file corruption with ext4.

Code written to *deal with files safely* by people who wanted to get it
right and actually checked what needs to be done, has been right for years.
And has piss-poor performance.

Code written by random joe which has no clue about the braindamages of POSIX
and Unix, well... this thread shows how much crap is really needed.

One can, obviously, have most filesystems be super-safe, and create a new
fadvise or something to say this is crap, be unsafe if you can.
Performance will be poor, everything will be safe, and the extra fsyncs()
will not hurt much because the fs would do it anyway.

  name the temp file properly, and teach your program to clean old ones up
  *safely* (see vim swap file handling for an example) when it starts.
 
 What about restoring meta-data? File-owner?

Hmm, yes, more steps if you want to do something like that, as you must do
it with the target open in exclusive mode.  close target only after the
rename went ok.

But if the file owner is not yourself, you really should change it, not to
mention you might not want to complete the operation in the first place.

A lib for this is a really good idea :p

  vim is a good example: nobody gets surprised by vim swap-files left over
  when vim/computer crashes. And vim will do something smart with them if
  it finds them in the current directory when it is started.
 
 I'm sure the vim code is far from trivial. I think this complexity is
 part of the reason most apps don't bother.

That I agree with completely.

  BTW: safely removing a file is also tricky.  AFAIK, one must open it RW,
  in exclusive mode. stat it by fd and check whether it is what one
 
 Exclusive mode? Linux doesn't know about mandatory locking (AFAIK).

Yeah... races everywhere...

  expects (regular file, ownership).  unlink it by fd.  close the fd.
 
  Is there a code snippet or lib function that handles this properly?
 
  I don't know.  I'd be interested in the answer, though :-)
 
 I'll ask glibc.

This really should be in a separate lib.  You want it to be usable outside
of glibc systems, and you CAN implement it (slow that it will be) on
anything POSIX.  You need only some help of the kernel to speed it up, and
that has to be detected at compile time (support) and runtime (availability
of the feature) anyway.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. 

Re: Safe File Update (atomic)

2010-12-30 Thread Henrique de Moraes Holschuh
On Thu, 30 Dec 2010, Olaf van der Spek wrote:
 The reason I asked for a kernelland solution is because it's hard if
 not impossible to do properly in userland. But some kernel devs (Ted
 and others) don't agree. They reason that the desire to preserve all
 meta-data isn't reasonable by itself.

It isn't.  And you can do it anyway:

1. open target, keep it open.
2. do the safe open+write dance on the temp target.
3. get metadata from target by fd
4. apply metadata to temp target by fd
5. atomic rename
6. close both fds
7. sync parent dir.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101230152401.gb4...@khazad-dum.debian.net



Re: Safe File Update (atomic)

2010-12-30 Thread Olaf van der Spek
On Thu, Dec 30, 2010 at 4:20 PM, Henrique de Moraes Holschuh
h...@debian.org wrote:
 What if the target name is actually a symlink? To a different volume?

 Indeed. You have to check that first, of course :-(  This is about safe
 handling of such functions, symlinks always have to be derreferenced and
 their target checked.  After that, you operate on the target, if the symlink
 changes, your operations will not.

That's not really atomic.

 What if you're not allowed to create a file in that dir.

 You fail the write.

That's a regression from the non-atomic case.

 Or the user has to request the unsafe handling
 (truncate + write).  Or you have to detect it will happen and switch modes
 if you're allowed to.

  If we could use some syscall to make [1] into a simple barrier request
  (guaranteed to degrade to fsync if barriers are not operating), it would
  be better performance-wise.  This is what one should request of libc and
  the kernels with a non-zero chance of getting it implemented (in fact,
  it might even already exist).

 My proposal was O_ATOMIC:
 // begin transaction
 open(fname, O_ATOMIC | O_TRUNC);
 write; // 0+ times
 close;

 Seems like the ideal API from the app's point of view.

 POSIX filesystems do not support it, so you'd need glibc to do everything

Not yet, but I assume it'll be added when there's enough demand.

 your application would have to get that atomicity.  I.e. it should go in a
 separate lib, anyway, and you will have to code for it in the app :(

Why would it have to go in a separate lib?

 It is not transparent.  It cannot be.  What about mmap()?  What about
 read+write patterns?

They either happen before or after this atomic transaction. Comparable
to the rename workaround.

 At most you could have an open+write+close function that encapsulate most
 of the crap, with a few options to tell it what to do if it finds a symlink
 or mismatched owner, what to do if it cannot do it in an atomic way, etc.

 I suppose one could actually ask for a non-posix interface to do all those
 three operations in one syscall, but I don't think the kernel people will

There's no need for a single syscall.

 want to implement it.  It would make sense only if object stores become
 commonplace (where this thing is likely an object store primitive, anyway).

Nah. Tons of files are written in one go. All could use this atomic flag.

  I've brought this up on linux-fsdevel and linux-ext4 but they (Ted)
  claim those exceptions aren't really a problem.
 
  Indeed they are not.  Code has been dealing with them for years.  You

 Code has been wrong for years to, based on the reason reports about
 file corruption with ext4.

 Code written to *deal with files safely* by people who wanted to get it
 right and actually checked what needs to be done, has been right for years.
 And has piss-poor performance.

Isn't fixing / improving that a good thing?

 Code written by random joe which has no clue about the braindamages of POSIX
 and Unix, well... this thread shows how much crap is really needed.

So you agree that this should be improved?

 One can, obviously, have most filesystems be super-safe, and create a new
 fadvise or something to say this is crap, be unsafe if you can.
 Performance will be poor, everything will be safe, and the extra fsyncs()
 will not hurt much because the fs would do it anyway.

I actually think this can be done with better performance then the
rename workaround.

  name the temp file properly, and teach your program to clean old ones up
  *safely* (see vim swap file handling for an example) when it starts.

 What about restoring meta-data? File-owner?

 Hmm, yes, more steps if you want to do something like that, as you must do
 it with the target open in exclusive mode.  close target only after the
 rename went ok.

 But if the file owner is not yourself, you really should change it, not to
 mention you might not want to complete the operation in the first place.

Why? Of course write access to the file is required.

 I'll ask glibc.

 This really should be in a separate lib.  You want it to be usable outside
 of glibc systems, and you CAN implement it (slow that it will be) on
 anything POSIX.  You need only some help of the kernel to speed it up, and
 that has to be detected at compile time (support) and runtime (availability
 of the feature) anyway.

Olaf


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktinhoftnychhjsd6og04jrvyube8ul55szyyl...@mail.gmail.com



Re: Safe File Update (atomic)

2010-12-30 Thread Olaf van der Spek
On Thu, Dec 30, 2010 at 4:24 PM, Henrique de Moraes Holschuh
h...@debian.org wrote:
 On Thu, 30 Dec 2010, Olaf van der Spek wrote:
 The reason I asked for a kernelland solution is because it's hard if
 not impossible to do properly in userland. But some kernel devs (Ted
 and others) don't agree. They reason that the desire to preserve all
 meta-data isn't reasonable by itself.

 It isn't.

Why not?

 And you can do it anyway:

 1. open target, keep it open.
 2. do the safe open+write dance on the temp target.
 3. get metadata from target by fd
 4. apply metadata to temp target by fd
 5. atomic rename
 6. close both fds
 7. sync parent dir.

Doesn't work for file-owner.
How does it handle meta-data you don't know about yet?

Olaf


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktimgqaavbzgwndr6bf87=1bvb1au++qje29d+...@mail.gmail.com



Re: Safe File Update (atomic)

2010-12-30 Thread Shachar Shemesh

On 30/12/10 13:46, Henrique de Moraes Holschuh wrote:




Is there a code snippet or lib function that handles this properly?
 

I don't know.  I'd be interested in the answer, though :-)

   


I'm working on one under the MIT license. Will probably release it by 
the end of this week. Will also handle copying the permissions over and 
following symlinks.


Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting Ltd.
http://www.lingnu.com


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d1c9c74.2050...@shemesh.biz



Bug#608409: ITP: diaspora-x2 -- web-based client for XMPP-based decentral social networking

2010-12-30 Thread Jonas Smedegaard
Package: wnpp
Severity: wishlist
Owner: Jonas Smedegaard d...@jones.dk

* Package name: diaspora-x2
  Version : 0~git20101222
  Upstream Author : Ben Nolan b...@nolanconsul.com
* URL : https://github.com/bnolan/diaspora-x2
* License : Expat (maybe - still working on resolving that)
  Programming Lang: CoffeeScript
  Description : web-based client for XMPP-based decentral social networking

 Diaspora x² is a web-based client for XMPP-based decentral social
 networking.
 .
 Diaspora x² is based on the frontend part of Diaspora (the Ruby on
 Rails project launched early fall of 2010 at much attention),
 reimplemented in CoffeeScript and redesigned to connect to use XMPP
 as developed at http://open.buddycloud.com/ .



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101230170807.11041.14691.report...@localhost.localdomain



Bug#608410: ITP: libmodule-starter-smart-perl -- Module::Starter plugin to add new modules into existing distributions

2010-12-30 Thread Alessandro Ghedini
Package: wnpp
Severity: wishlist
Owner: Alessandro Ghedini al3x...@gmail.com

* Package name: libmodule-starter-smart-perl
  Version : 0.0.2
  Upstream Author : Ruey-Cheng Chen rueych...@gmail.com
* URL : http://search.cpan.org/dist/Module-Starter-Smart/
* License : Artistic or GPL-1+ (same as Perl)
  Programming Lang: Perl
  Description : Module::Starter plugin to add new modules into existing 
distributions

Module::Starter::Smart is a simple helper plugin for Module::Starter. It
overrides the create_distro, create_modules, and create_t subroutines 
defined in whichever engine plugin in use (say, Module::Starter::Simple). 
.
When invoked with an existing distribution, the plugin may bypass the
create_basedir subroutine, pull in a list of existing modules as well as 
test files, create new modules, and recreate the manifest file accordingly.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101230171048.24235.55172.report...@pc-ale.rete



Re: Safe File Update (atomic)

2010-12-30 Thread Henrique de Moraes Holschuh
On Thu, 30 Dec 2010, Olaf van der Spek wrote:
 On Thu, Dec 30, 2010 at 4:24 PM, Henrique de Moraes Holschuh
 h...@debian.org wrote:
  On Thu, 30 Dec 2010, Olaf van der Spek wrote:
  The reason I asked for a kernelland solution is because it's hard if
  not impossible to do properly in userland. But some kernel devs (Ted
  and others) don't agree. They reason that the desire to preserve all
  meta-data isn't reasonable by itself.
 
  It isn't.
 
 Why not?

You touched it, it is not the same file/inode anymore.

 How does it handle meta-data you don't know about yet?

It doesn't.  You need a copy inode without the file data filesystem
interface to be able to do that in the first place.  It might exist, but I
never heard of it.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101230174822.ga20...@khazad-dum.debian.net



Re: Safe File Update (atomic)

2010-12-30 Thread Olaf van der Spek
On Thu, Dec 30, 2010 at 6:48 PM, Henrique de Moraes Holschuh
h...@debian.org wrote:
 Why not?

 You touched it, it is not the same file/inode anymore.

That's again a regression from the non-atomic case.

 How does it handle meta-data you don't know about yet?

 It doesn't.  You need a copy inode without the file data filesystem
 interface to be able to do that in the first place.  It might exist, but I
 never heard of it.

You wouldn't need that with O_ATOMIC.

Olaf


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktimyynyyyw2osbkbg8wxgv2ybrdotzymzlu83...@mail.gmail.com



Re: Safe File Update (atomic)

2010-12-30 Thread Shachar Shemesh

On 30/12/10 19:48, Henrique de Moraes Holschuh wrote:


It doesn't.  You need a copy inode without the file data filesystem
interface to be able to do that in the first place.  It might exist, but I
never heard of it.

   


If my (extremely leaky) memory serves me right, Windows has it. It's 
called delete and then rename. It is not atomic (since when do Windows 
care about not breaking stuff), but it does exactly that.


If you delete a file and quickly (yes, this feature is time based) 
rename a different file to the same name, the new file will receive all 
metadata information the old file had (including owner, permissions etc.)


Just thought I'd share this little nugget to show you how much worse 
non-posix has it.


Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting Ltd.
http://www.lingnu.com


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d1ccc38.6000...@debian.org



Re: Safe File Update (atomic)

2010-12-30 Thread Shachar Shemesh

On 30/12/10 17:17, Olaf van der Spek wrote:

On Thu, Dec 30, 2010 at 4:12 PM, Shachar Shemeshshac...@debian.org  wrote:
   

No. I was doing it as code to accompany an article on my company's site
about how it should be done. I was originally out to write the article, and
then decided to add code. A good thing, too, as recursively resolving
symbolic links is not trivial. There is an extremely simple way to do it on
Linux, but it will not work on all platforms (the *BSD platforms, including
Mac, do not have /proc by default).
 

Depending on /proc is probably not reasonable.
Are you sure it will be atomic? ;)

   
open old file, get fd (we'll assume it's 5). Do readlink on 
/proc/self/fd/5, and get file's real path. Do everything in said path. 
It's atomic, in the sense that the determining point in time is the 
point in which you opened the old file.


How do you preserve owner (as non-root)?

   
I thought I answered that. Best effort. You perform the chown, but do 
not bother with the return code. If it succeeded, great. If not, well, 
you did your best.


The reason I asked for a kernelland solution is because it's hard if
not impossible to do properly in userland. But some kernel devs (Ted
and others) don't agree. They reason that the desire to preserve all
meta-data isn't reasonable by itself.
   
I'm with Henrique on that one. I am more concerned with the amount of 
non-Posix code that needs to go into this than preserving all attributes.


Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting Ltd.
http://www.lingnu.com


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d1ccd81.3010...@debian.org



Re: Safe File Update (atomic)

2010-12-30 Thread Olaf van der Spek
On Thu, Dec 30, 2010 at 7:15 PM, Shachar Shemesh shac...@debian.org wrote:
 If my (extremely leaky) memory serves me right, Windows has it. It's called
 delete and then rename. It is not atomic (since when do Windows care about
 not breaking stuff), but it does exactly that.

 If you delete a file and quickly (yes, this feature is time based) rename a
 different file to the same name, the new file will receive all metadata
 information the old file had (including owner, permissions etc.)

 Just thought I'd share this little nugget to show you how much worse
 non-posix has it.

You're kidding me. Got any source to back this up?

Olaf


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktik8ywzth67auoukrxmt2w1urmpgahnbg4k9s...@mail.gmail.com



Re: Safe File Update (atomic)

2010-12-30 Thread Olaf van der Spek
On Thu, Dec 30, 2010 at 7:20 PM, Shachar Shemesh shac...@debian.org wrote:
 Depending on /proc is probably not reasonable.
 Are you sure it will be atomic? ;)



 open old file, get fd (we'll assume it's 5). Do readlink on /proc/self/fd/5,
 and get file's real path. Do everything in said path. It's atomic, in the
 sense that the determining point in time is the point in which you opened
 the old file.

 How do you preserve owner (as non-root)?



 I thought I answered that. Best effort. You perform the chown, but do not
 bother with the return code. If it succeeded, great. If not, well, you did
 your best.

Ah. Another regression.


 The reason I asked for a kernelland solution is because it's hard if
 not impossible to do properly in userland. But some kernel devs (Ted
 and others) don't agree. They reason that the desire to preserve all
 meta-data isn't reasonable by itself.


 I'm with Henrique on that one. I am more concerned with the amount of
 non-Posix code that needs to go into this than preserving all attributes.

With kernel support you would only need a single non-POSIX flag.
Please be sure to document all assumptions / limitations of your variant.

Olaf


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktimzgfzwpj8phtevdycbxwwd5s7pp+enlcpi+...@mail.gmail.com



Re: Safe File Update (atomic)

2010-12-30 Thread Ben Hutchings
On Thu, 2010-12-30 at 19:29 +0100, Olaf van der Spek wrote:
 On Thu, Dec 30, 2010 at 7:15 PM, Shachar Shemesh shac...@debian.org wrote:
  If my (extremely leaky) memory serves me right, Windows has it. It's called
  delete and then rename. It is not atomic (since when do Windows care about
  not breaking stuff), but it does exactly that.
 
  If you delete a file and quickly (yes, this feature is time based) rename a
  different file to the same name, the new file will receive all metadata
  information the old file had (including owner, permissions etc.)
 
  Just thought I'd share this little nugget to show you how much worse
  non-posix has it.
 
 You're kidding me. Got any source to back this up?

http://support.microsoft.com/?kbid=172190

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Re: Safe File Update (atomic)

2010-12-30 Thread Olaf van der Spek
On Thu, Dec 30, 2010 at 7:46 PM, Ben Hutchings b...@decadent.org.uk wrote:
 You're kidding me. Got any source to back this up?

 http://support.microsoft.com/?kbid=172190

Interesting. Although no longer available on Vista / 7.

Olaf


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktinuqjcgdg0aazqkiomfthqyorfzc89y7xquu...@mail.gmail.com



Bitcoin donation

2010-12-30 Thread cyclonite
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear friends,

I have been looking in your site for any reference to Bitcoin for making a 
small donation.

As you probably know, Bitcoin (bitcoin.org) is a new kind of a P2P 
crypto-currency in which the general public can make donations, macro or 
micropayments in a secure and anonymous way usually without any transaction fee 
involved.

You can change Bitcoins for real Dollars (eg: https://mtgox.com) or purchase 
services or goods in an increasing number of sites.

In order to receive donations you only have to publish one of your accounts as 
generated by the bitcoin client or any specialized bitcoin trader (eg: 
mybitcoin.com)

Currently some projects as www.i2p2.de, www.torrentservers.net and 
organizations like the EFF are accepting donations.

In my opinion this kind of decentralized solution without the need to trust any 
middlemen is much better than Paypal (Visa, Mastercard ...) for security-minded 
people as most of your donors are.

If you are interested in pushing Bitcoin forward, do not hesitate to contact me 
if you have any doubt.

Yours,
Cyclonite
-BEGIN PGP SIGNATURE-

iQIcBAEBAgAGBQJNFp4aAAoJEL/jfnFwT5SQ2wEQAK7s6wGleGBcY7VkioSnqv4I
92JlZqG1QU3N9PRVDWl9ZNpEEdg7In16HvBhctsUSS+MfuaIgRQWjV3bN1a10oVW
BQtc2zcNExeNAHKBVea2niqEPxutQkoxvMv3wgTb5NiOzQBjTydQ7TNjmOxSrg0q
MKUyuhux94bM3r/+QrEWqcy6z+62IZhSceyIP6hnC+Lb4CA/RBVLMpsMnno/YvFB
mhTldfhIwJExmZf77C979aCwbeKDyGd2EVsKO6sPNFD6Fke8H3PXwW7Stp48lnfg
YIn0kMbJS7YXvP8C0qhJhOi/eMETGmmLEy9CmFlTUgfLbM4qjfzz+vX8NP3zrLJO
G7nHKWNrLv3WneemrSpo9uVfrxKyLSO8H/X7XTKjrfnDB3L6S1Yp/Nk23nb30jmj
lVx+9Elu5wOWG2CDel1MWiDIBrLUl7km+h4JmR0hSzOt2DJMw62IPT0aFwOAZVt/
4EPKF0CzxwjIaK5q2CC1FzbM47wBAQqJ7Ua0HcCx71i0YJuGy4GkZapOwm3+zuSn
kBcOVBZB2PnseZ1f3ntF+Y77Lvqz4JyZa5cPTHevvnqw0No/IJsJp4+2mduE7HOR
JRqLDM1NuXSfinTE4x+H/144efiZuTV8YcAnuZD1+DPuyv4xjwrrD4H1rnjs7HW/
FsLmo9yPZDRvfUZKEVYe
=52Cw
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/n1r-_s5jd0o...@safe-mail.net



Bug#608424: ITP: backbone -- some Backbone for JS Apps with Models, Views, Collections, and Events

2010-12-30 Thread Jonas Smedegaard
Package: wnpp
Severity: wishlist
Owner: Jonas Smedegaard d...@jones.dk

* Package name: backbone
  Version : 0.3.3
  Upstream Author : Jeremy Ashkenas jer...@documentcloud.org
* URL : http://documentcloud.github.com/backbone/
* License : Expat
  Programming Lang: JavaScript
  Description : some Backbone for JS Apps with Models, Views, Collections, 
and Events

 Backbone supplies structure to JavaScript-heavy applications by
 providing models key-value binding and custom events, collections with
 a rich API of enumerable functions, views with declarative event
 handling, and connects it all to your existing application over a
 RESTful JSON interface.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101230194600.29119.55004.report...@localhost.localdomain



Re: Bug#608377: ITP: libhtml-quoted-perl -- extract structure of quoted HTML mail message

2010-12-30 Thread Dominic Hargreaves
On Thu, Dec 30, 2010 at 11:33:10AM +, Dominic Hargreaves wrote:

 NB: the current CPAN release is marked as experimental and is missing
 a licence. I will clarify these points with the author before uploading.

This was a mistake; this module does in fact come with a Free licence
but I failed to spot it at the search.cpan.org listing.

With regards to the 'experimental' description, I will initially
upload this to Debian experimental, along with the RT package which
requires it.

Cheers,
Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101230212525.go4...@urchin.earth.li



Re: Bug#608395: ITP: varnisnncsa-vhost -- Wrapper around 'varnishncsa' tool to save varnish logs with virtualhost

2010-12-30 Thread Joenio Costa
On Thu, Dec 30, 2010 at 07:48:16PM +0100, Tollef Fog Heen wrote:
 This is fairly pointless as 3.0 supports user-specifiable formats and
 filtering and will be out in 2011Q1 so varnishncsa-vhost won't ever be
 in a stable release where it makes sense to have it.

I figured it out.

I had packaged it and uploaded to my personal repository, maybe can be
usefull to someone:

http://sede.colivre.coop.br/~joenio/debian/

-- 
Joenio Costa
- www.Colivre.coop.br
- www.Perl.org.br
- Salvador.pm.org

GNU/Linux User #431067 http://counter.li.org


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101230214119.ga30...@debian



Re: Bitcoin donation

2010-12-30 Thread Petter Reinholdtsen

[Cyclonite]
 Dear friends,

 I have been looking in your site for any reference to Bitcoin for
 making a small donation.

As far as I know, none of the organisations accepting donations on
behalf of the Debian project accept bitcoin.

We are considering it for the SLX Debian Labs foundation which accept
donations for the Debian Edu/Skolelinux project, but have not
concluded yet.  I am the chair of the SLX Debianc Labs foundation.  I
believe there are some accounting and legal issues as well as some
practical issues to consider before we can accept it.

Given that the EFF with its privacy sensitive target group so far has
only received 2483.8 bitcoins[1] to its bitcoin donation address, it
seem unlikely that Debian will receive much money this way any time
soon.

But it might be interesting to support the bitcoin system by accepting
donations, and give users of bitcoin more to spend their bitcoins
on. :)

 1 Extracted using lynx -dump 
http://blockexplorer.com/address/1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt|grep 
Received:|grep Block|awk '{sum = sum + $6} END { print sum}'.

Happy hacking,
-- 
Petter Reinholdtsen


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/2flr5cy5398@login1.uio.no



Re: securing/monitoring Debian devel environment

2010-12-30 Thread Christian Kastner
On 12/22/2010 05:10 PM, Yaroslav Halchenko wrote:
 May be there is a lightweight utility which could be used for
 monitoring, e.g. it would report suspicious actions being taken from
 within a monitored environment?  e.g., it would
 
 * sanitize environment variables
 * monitor open/socket/... syscalls and report abnormal activities
   (e.g. opening network connection, writing to a file outside of
   build-tree,/tmp/, etc)
 * provide a summary at the end on the invoked actions by the target
   command
 
 I guess a possible solution which would not only monitor but
 guarantee would be SELinux, but I am afraid it might be somewhat
 cumbersome to setup policies across the variety of packages I maintain.
 So I just wanted to monitor to start with.

In private communication, Yaroslav and I have been bouncing some crude
ideas around, which I'm going to summarize here.

Of the possible approaches we discussed, two seem to fulfill the
requirements above:
 * SystemTap [0,1]
 * auditd [2,3]

[0] http://sourceware.org/systemtap/
[1] http://packages.debian.org/sid/systemtap
[2] http://people.redhat.com/sgrubb/audit/
[3] http://packages.debian.org/sid/auditd

note that SELinux was excluded for the reasons Yaroslav mentioned above.

SYSTEMTAP: The SystemTap approach appeared the most promising at first
glance, as it is fully scriptable and the Beginner's Guide contains
ready-to-use scripts covering basically all the requirements mentioned
above. Yaroslav also discussed this with #systemtap, they pointed out
some issues WRT fork()s etc but otherwise had no major objections.

SystemTap has one drawback: it requires a kernel with debugging stuff
enabled (see #568866), which AFAIUI is only available on i386/amd64 and
requires 1.5GB disk space.


AUDITD: Seeing that SystemTap's purpose goes way beyond simple auditing,
I took a shot at auditd -- which is supported by the standard kernel --
with the goal of producing a simple wrapper script for debuild.

My initial optimism and success was dampened as I gained more experience
with auditd and it's goals. To elaborate, it is quite simple to create
auditing rules achieving the goals above, however an approach tailored
to package-build-audit *only* is a pain. For example, it is easy to
monitor *all* access to /etc/shadow or changes to /bin/login, it is
quite hard to limit the monitoring to a *process tree* (our building
process).

Furthermore, generating sensible reports from the data above wasn't all
too easy as well. ausearch and aureport are very useful, but one must
still pre- or postprocess their respective outputs to get the desired
results.

Finally, it appears -- at least to me -- that Prelude IDS (already
packaged) is the way to go. It is a full-scale, real-time IDS (using the
auditing subsystem) with numerous features including plugin support for
sensors and also good reporting. The initial objective is just a subset
of Prelude's goal, and seeing as there is a lot of weight thrown behind
Prelude, the merit of a custom solution (based on the raw auditing data)
is probably debatable.


Anyway, I'm at my limits here -- even though the idea and the available
technology is highly interesting, I do not have the necessary time
available ATM to go deeper. If there's anyone security-minded with time
on his/her hands, the ball is yours...


Regards,
Christian


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d1d0e7d.5030...@kvr.at



Re: securing/monitoring Debian devel environment

2010-12-30 Thread Olaf van der Spek
On Thu, Dec 30, 2010 at 11:58 PM, Christian Kastner deb...@kvr.at wrote:
 to package-build-audit *only* is a pain. For example, it is easy to
 monitor *all* access to /etc/shadow or changes to /bin/login, it is
 quite hard to limit the monitoring to a *process tree* (our building
 process).

Does the build process run as root? If so, I think it shouldn't. If
not, it can't read /etc/shadow.
About elevation via sudo: don't enable/use ssh/sudo/etc from the
account you use to build.

Olaf


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktikh_rvdsjy+2_=lut0qcqggersg=ebnwv2-5...@mail.gmail.com



Re: Static linking: pkgconfig vs libtool

2010-12-30 Thread Enrico Weigelt
* Russ Allbery r...@debian.org schrieb:

 pkg-config is much superior to libtool, since libtool includes all the
 libraries on dynamic links as well, which creates unwanted shared library
 dependencies and causes other problems.  Because of that, the trend in
 Debian is to empty that information from libtool *.la files or not ship
 them at all, making them useless for static linking information.

Gentoo is also in process of getting rid of .la files.


cu
-- 
--
 Enrico Weigelt, metux IT service -- http://www.metux.de/

 phone:  +49 36207 519931  email: weig...@metux.de
 mobile: +49 151 27565287  icq:   210169427 skype: nekrad666
--
 Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme
--


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101230233959.ga10...@nibiru.local



Re: using perl in preinst script

2010-12-30 Thread Carsten Hey
* Philipp Kern [2010-12-29 05:38 +]:
 On 2010-12-28, Carsten Hey cars...@debian.org wrote:
  ...  One reason for this is that dpkg's perl scripts were rewritten
  in C.

 I know you phrased it differently but wasn't the motivation for this
 rewrite to be more robust in the base system on upgrades?  I.e. do not
 rely on Perl and thus avoid adding more contraints on how the base
 upgrade must be performed to keep dpkg working properly.

I don't know what the main motivation was, although making upgrades more
robust seems to be a possible and a good one.

http://wiki.debian.org/Teams/Dpkg/RoadMap says:
| Make dpkg.deb contain only sh and C programs (to help embedded
| distros, to make it possible to remove perl-base from essential)


Regards
Carsten


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101231005641.ga6...@furrball.stateful.de



Re: Safe File Update (atomic)

2010-12-30 Thread Henrique de Moraes Holschuh
On Thu, 30 Dec 2010, Henrique de Moraes Holschuh wrote:
 BTW: safely removing a file is also tricky.  AFAIK, one must open it RW,
 in exclusive mode. stat it by fd and check whether it is what one
 expects (regular file, ownership).  unlink it by fd.  close the fd.

Eh, as it was pointed to me by private mail, this is obviously a load of
crap :p  There is no unlink by fd.  Sorry about that.

The attacks here are races by messing with intermediate path components,
which are either not worth bothering with, or have to be avoided in a
much more convoluted manner.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101231021723.ga9...@khazad-dum.debian.net



Bug#608460: ITP: pev -- Utility to get Product Version of PE32 executables

2010-12-30 Thread Fernando Mercês
Package: wnpp
Severity: wishlist
Owner: Fernando Mercês ferna...@mentebinaria.com.br


* Package name: pev
  Version : 0.22
  Upstream Author : Fernando Mercês ferna...@mentebinaria.com.br
* URL : http://coding40.mentebinaria.com.br
* License : GPL
  Programming Lang: C
  Description : Utility to get Product Version of PE32 executables

pev is a little text-based tool to get the Product Version field of PE32
executables (EXE, DLL, OCX etc).



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101231041516.8420.58585.report...@brussels



Re: Safe File Update (atomic)

2010-12-30 Thread Shachar Shemesh

On 30/12/10 17:02, Olaf van der Spek wrote:

Got a project page already?
   


Watch this space. Actual code coming soon(tm).

https://github.com/Shachar/safewrite

Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting Ltd.
http://www.lingnu.com


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d1d743b.8080...@shemesh.biz



Accepted audacious-plugins 2.4.2-1 (source amd64)

2010-12-30 Thread Benjamin Drung
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 29 Dec 2010 23:35:46 +0100
Source: audacious-plugins
Binary: audacious-plugins audacious-plugins-dbg
Architecture: source amd64
Version: 2.4.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Benjamin Drung bdr...@debian.org
Description: 
 audacious-plugins - Base plugins for audacious
 audacious-plugins-dbg - Audacious-Plugins debug symbols
Closes: 485491 544097 552466 584249 584962 585574 586453 589756 598808
Changes: 
 audacious-plugins (2.4.2-1) experimental; urgency=low
 .
   * New upstream release.
 - Fixes error with alsa-gapless and dmix (Closes: #585574).
 - Remove Audacious standard menu from status icon (Closes: #485491).
 - Allow updating FLAC tags (Closes: #586453, LP: #211946).
 - Adds scrobbler plugin again (Closes: #552466, #584962, LP: #568651).
 - Fix volume decreases with every new song with PulseAudio output
   (Closes: #544097).
 - Fix shows meaningless timer values when playing Internet streams
   (Closes: #584249).
 - Provides RoarAudio plugin (Closes: #589756).
 - Fix 100% CPU load on pause in amidi-plugin (Closes: #598808).
   * Drop all patches.
   * Drop override_dh_auto_clean.
   * Bump build dependency on audacious-dev to = 2.4.2.
   * Bump breaks  replaces of audacious to 2.4.2.
   * Update my email address.
Checksums-Sha1: 
 d7f4aa1931d30ed6f0cdd5f8fbbfb6a7f4c38bee 3134 audacious-plugins_2.4.2-1.dsc
 c425d178ae090245be61b236f3197dd6d9b82afd 3123495 
audacious-plugins_2.4.2.orig.tar.gz
 606b3aab544c3db2699848d76ff31e457c3d10a0 10305 
audacious-plugins_2.4.2-1.debian.tar.gz
 e0a6236c0a54204a94786296e5f8f4346897cbea 2421590 
audacious-plugins_2.4.2-1_amd64.deb
 dd81daf5794a7e87edb85f0d2336c78a98799e84 4024724 
audacious-plugins-dbg_2.4.2-1_amd64.deb
Checksums-Sha256: 
 017875459c0c949afce0bce9627475538f9561b5f4c94e4536e8313ca46c8614 3134 
audacious-plugins_2.4.2-1.dsc
 d1f8f287d0cfef0572c74a31938ecdb9279ccded33be17461136391de110e2f0 3123495 
audacious-plugins_2.4.2.orig.tar.gz
 a2f9359700a4813a926b1d37597e72333d78ddee9b1bef2d252fd6e5b7d410f1 10305 
audacious-plugins_2.4.2-1.debian.tar.gz
 ab3b1d20701d14cad42f19d6ea93513ddfcbe82d69ff44f66c01ac986d8178e2 2421590 
audacious-plugins_2.4.2-1_amd64.deb
 b291c1b0a86001171f4c22571f78987f8fb4d5f5276fbac15273017ec0cb 4024724 
audacious-plugins-dbg_2.4.2-1_amd64.deb
Files: 
 1b0b8965135afbc93741228fdb0d1db8 3134 sound optional 
audacious-plugins_2.4.2-1.dsc
 153b9f7b063d45db5403cf167063261b 3123495 sound optional 
audacious-plugins_2.4.2.orig.tar.gz
 76f1b22446c1a62b25fb12807fce12a2 10305 sound optional 
audacious-plugins_2.4.2-1.debian.tar.gz
 2ad40dc411322395e0842af6a6523c0c 2421590 sound optional 
audacious-plugins_2.4.2-1_amd64.deb
 3b59cf093c4d78d07967b0ea8bdf8d91 4024724 debug extra 
audacious-plugins-dbg_2.4.2-1_amd64.deb

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

iQIcBAEBCgAGBQJNHFTRAAoJEBWetcTvyHdMR2MQAJ5qDpgk/EDCUXB9O/H/h2h7
pFgVhQE1iD2EhAeIKmrxa4D6Tk8Mj/7unMMnudSaDlOEA3QQyFlHZ51opldFFGTJ
GiS1a3pQx2k795pH+L7fw3TKNYu1Z60Mpp6S3Q+FrVO36oIfOZkWvnE6Um87v9GP
IcTW6ioe5y/XZU/GwghUahZvkRm7HEDLCpZPZpCbND8j1pscryoaEORjfEUbO2VY
CVXQW3WR4yLLXi6SAMgsiqeorVEYGrXN015TabY+BXCRPWOPe1R7Or5XGqmecTym
r8TQp91MRYdprWtWYGwUPt788lakxZ9bVT4ao+YUkTB4tKRLhfGNdfW6pZd1Fa3p
mdYX0NsT+6dBowzfDY8UrnLH0xn27Fn0Ivll5SWXKaqZMbrZKWCPYj8EdODEFFVs
vluK+1tg+m1p5juIUjxmbQjkWFtUexlmsbEUTD046MCjEZ3vndjw5OLbQGwj+Jpy
QtETphBYivIdP9nZ+FcxKdG8nQ5Q2YQycP0kX7pFqZLHhQnd5DqCeD9N0ySjWC5f
OP0AOai0BANKcCftpVJ2F3Xb9YW96MPu5SPTDwi09grYoILlP+ls9yhClUggJsa2
QATvJXyV7QskzXkN8BIO5xnHUutHoxCwBD1lo1sl3XjllOINXaE54WRrRJHYUIKR
qPxjWwmiAgcFYsdX9We6
=KsnT
-END PGP SIGNATURE-


Accepted:
audacious-plugins-dbg_2.4.2-1_amd64.deb
  to main/a/audacious-plugins/audacious-plugins-dbg_2.4.2-1_amd64.deb
audacious-plugins_2.4.2-1.debian.tar.gz
  to main/a/audacious-plugins/audacious-plugins_2.4.2-1.debian.tar.gz
audacious-plugins_2.4.2-1.dsc
  to main/a/audacious-plugins/audacious-plugins_2.4.2-1.dsc
audacious-plugins_2.4.2-1_amd64.deb
  to main/a/audacious-plugins/audacious-plugins_2.4.2-1_amd64.deb
audacious-plugins_2.4.2.orig.tar.gz
  to main/a/audacious-plugins/audacious-plugins_2.4.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyfkm-0004pb...@franck.debian.org



Accepted ktorrent 4.0.5-1 (source all amd64)

2010-12-30 Thread Modestas Vainius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Dec 2010 12:07:01 +0200
Source: ktorrent
Binary: ktorrent ktorrent-data plasma-widget-ktorrent ktorrent-dbg
Architecture: source amd64 all
Version: 4.0.5-1
Distribution: experimental
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Modestas Vainius mo...@debian.org
Description: 
 ktorrent   - BitTorrent client based on the KDE platform
 ktorrent-data - KTorrent data and other architecture independent files
 ktorrent-dbg - KTorrent debugging symbols
 plasma-widget-ktorrent - KTorrent Plasma widget
Changes: 
 ktorrent (4.0.5-1) UNRELEASED; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 746373a7d1c34538801ed07c94f62371125a6fdb 1552 ktorrent_4.0.5-1.dsc
 eca1186dcd878868317743b21b90fb5880b774bf 2813499 ktorrent_4.0.5.orig.tar.bz2
 9b73fd749a2ca01b244ecb07fb62a9e28f86aa76 26579 ktorrent_4.0.5-1.debian.tar.gz
 ba78daf9ff191709b65a760bbe281188c5acbedb 1500406 ktorrent_4.0.5-1_amd64.deb
 d7c44e1482b1b266362422de035db7c93b317d62 2594922 ktorrent-data_4.0.5-1_all.deb
 aff5b3ce56731668ca541479a9569402206fe569 98894 
plasma-widget-ktorrent_4.0.5-1_amd64.deb
 4f4e9a96b4f36cc54a3a1aaddd908e9561d981f4 13312168 
ktorrent-dbg_4.0.5-1_amd64.deb
Checksums-Sha256: 
 307535a9bec935f2e43a19b633f92eaff50bd8a0380d821e8e778ff2a527dd61 1552 
ktorrent_4.0.5-1.dsc
 d6b199be0d24933da55c5eee8d13d22fda03b7098aca59e4468387c25206fecd 2813499 
ktorrent_4.0.5.orig.tar.bz2
 103fdcedf13ee1a3064d0975a621c12f0c33b25739bdb9bcacb17e4061a84856 26579 
ktorrent_4.0.5-1.debian.tar.gz
 dd77e106c770f758b5fe5f3b0214cf49b091f561face3cd5ec6334c2413b024e 1500406 
ktorrent_4.0.5-1_amd64.deb
 3bdad543d541a3e492157507e352d81f2e0cf80c8f7d33a75de972fa4c5ebc4f 2594922 
ktorrent-data_4.0.5-1_all.deb
 73f170767bce4d5eb7bd4500a5bfda17b6919973b5c6012256e48ac4661590be 98894 
plasma-widget-ktorrent_4.0.5-1_amd64.deb
 f41821fe7c877682187f062c936e11c6238809b506373bfcfa56611ebdbf5931 13312168 
ktorrent-dbg_4.0.5-1_amd64.deb
Files: 
 d6da51e22b309d71c234c5e45c2aac7d 1552 net optional ktorrent_4.0.5-1.dsc
 3a2e9a92d3a30d44b98ded0e4984ae8a 2813499 net optional 
ktorrent_4.0.5.orig.tar.bz2
 09e6a5ae84653d9597620e489b55ee57 26579 net optional 
ktorrent_4.0.5-1.debian.tar.gz
 bc4216f9a0090f76fc15a095b8d49f81 1500406 net optional 
ktorrent_4.0.5-1_amd64.deb
 6ae2ab4f23657b8ac970e1957919c27c 2594922 net optional 
ktorrent-data_4.0.5-1_all.deb
 e033490b754da577de312c4462bb9f26 98894 kde optional 
plasma-widget-ktorrent_4.0.5-1_amd64.deb
 5e2819acb324730da7413ddbfd8556b5 13312168 debug extra 
ktorrent-dbg_4.0.5-1_amd64.deb

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

iEYEARECAAYFAk0cXVoACgkQHO9JRnPq4hQGUQCgzkFSyEsW+tTaA4wLbTakgB2e
YicAoK2t8fvmk/oCbfk2cv7bQ94CVmz8
=gXzw
-END PGP SIGNATURE-


Accepted:
ktorrent-data_4.0.5-1_all.deb
  to main/k/ktorrent/ktorrent-data_4.0.5-1_all.deb
ktorrent-dbg_4.0.5-1_amd64.deb
  to main/k/ktorrent/ktorrent-dbg_4.0.5-1_amd64.deb
ktorrent_4.0.5-1.debian.tar.gz
  to main/k/ktorrent/ktorrent_4.0.5-1.debian.tar.gz
ktorrent_4.0.5-1.dsc
  to main/k/ktorrent/ktorrent_4.0.5-1.dsc
ktorrent_4.0.5-1_amd64.deb
  to main/k/ktorrent/ktorrent_4.0.5-1_amd64.deb
ktorrent_4.0.5.orig.tar.bz2
  to main/k/ktorrent/ktorrent_4.0.5.orig.tar.bz2
plasma-widget-ktorrent_4.0.5-1_amd64.deb
  to main/k/ktorrent/plasma-widget-ktorrent_4.0.5-1_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyfnr-0001gc...@franck.debian.org



Accepted libktorrent 1.0.5-1 (source all amd64)

2010-12-30 Thread Modestas Vainius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Dec 2010 12:14:33 +0200
Source: libktorrent
Binary: libktorrent2 libktorrent-dev libktorrent-l10n libktorrent-dbg
Architecture: source amd64 all
Version: 1.0.5-1
Distribution: experimental
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Modestas Vainius mo...@debian.org
Description: 
 libktorrent-dbg - debugging symbols for the KTorrent library
 libktorrent-dev - development files for the KTorrent Library
 libktorrent-l10n - localization files for the KTorrent library
 libktorrent2 - the KTorrent library for C++ / Qt 4 / KDE Platform
Changes: 
 libktorrent (1.0.5-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 1f5747259e13ec0164248e3e5ef5f6ebc9902027 1443 libktorrent_1.0.5-1.dsc
 7e0551d731e18075eae8d8e92f9e5d5d26cc3f18 872674 libktorrent_1.0.5.orig.tar.bz2
 f2dca860b4438a3c461a7f7e8db1a01c3c42f878 25163 
libktorrent_1.0.5-1.debian.tar.gz
 cd42a9263b7b5b7f4dba988e82bf8bf550e82d08 564168 libktorrent2_1.0.5-1_amd64.deb
 76fef64f137c4a54f05cfc9c5899c5cd9c0ea50e 111454 
libktorrent-dev_1.0.5-1_amd64.deb
 8f425f256622d62ebb40e136b6d46948183733a3 83408 libktorrent-l10n_1.0.5-1_all.deb
 cc5bd581e36f1460284da8a5582ede5f2a0e8959 4649606 
libktorrent-dbg_1.0.5-1_amd64.deb
Checksums-Sha256: 
 f228683bd2d3d88755537fd93fd4e2b7202d5010f799011ad1d9ad482f2230c5 1443 
libktorrent_1.0.5-1.dsc
 5b1d8cb866c5837960241588eaf227dd364c31a2f35be889f69cd7ce47bc836c 872674 
libktorrent_1.0.5.orig.tar.bz2
 017d0f407356c835fc0d13987a482d429e17f56e0854a957ed5afee124f9 25163 
libktorrent_1.0.5-1.debian.tar.gz
 30e2a99df9c561159cbd709d654aff3e5841b2f81d9a757d6d6a05209561d48f 564168 
libktorrent2_1.0.5-1_amd64.deb
 29abfeb86af90fb6c34cae29d136d7793c3462192b357a1219095405aa5e3efe 111454 
libktorrent-dev_1.0.5-1_amd64.deb
 443cb3f6282e4f7d0a922dc65d2253e4e5129b8020f5f4ed54c07413c471a97b 83408 
libktorrent-l10n_1.0.5-1_all.deb
 414dc4cc302a0e21bc36cb369a993467348078d903b60c40e07951e30293afee 4649606 
libktorrent-dbg_1.0.5-1_amd64.deb
Files: 
 1d50af3e3e9c056ba9ddf6fbd0bf2aff 1443 libs optional libktorrent_1.0.5-1.dsc
 31f0397a28557220ce38fe2c8630826d 872674 libs optional 
libktorrent_1.0.5.orig.tar.bz2
 fe28920e1d073bb31613d734edcc513e 25163 libs optional 
libktorrent_1.0.5-1.debian.tar.gz
 a15ac714eb90144a3d7dd4c5077c741f 564168 libs optional 
libktorrent2_1.0.5-1_amd64.deb
 b83b42f49315c5d765c43966a0b8acdb 111454 libdevel optional 
libktorrent-dev_1.0.5-1_amd64.deb
 ff8aa743a145cc539090321103af91eb 83408 localization optional 
libktorrent-l10n_1.0.5-1_all.deb
 3cf4abb6b7e7dfed349ae6c6c36203b1 4649606 debug extra 
libktorrent-dbg_1.0.5-1_amd64.deb

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

iEYEARECAAYFAk0cXLYACgkQHO9JRnPq4hTvhACfbbRc0zHiVYgb95ZSyPLYFd9d
sV0AnAnXwVpmWjIUKQce4WXpKzA4MFH5
=KJIi
-END PGP SIGNATURE-


Accepted:
libktorrent-dbg_1.0.5-1_amd64.deb
  to main/libk/libktorrent/libktorrent-dbg_1.0.5-1_amd64.deb
libktorrent-dev_1.0.5-1_amd64.deb
  to main/libk/libktorrent/libktorrent-dev_1.0.5-1_amd64.deb
libktorrent-l10n_1.0.5-1_all.deb
  to main/libk/libktorrent/libktorrent-l10n_1.0.5-1_all.deb
libktorrent2_1.0.5-1_amd64.deb
  to main/libk/libktorrent/libktorrent2_1.0.5-1_amd64.deb
libktorrent_1.0.5-1.debian.tar.gz
  to main/libk/libktorrent/libktorrent_1.0.5-1.debian.tar.gz
libktorrent_1.0.5-1.dsc
  to main/libk/libktorrent/libktorrent_1.0.5-1.dsc
libktorrent_1.0.5.orig.tar.bz2
  to main/libk/libktorrent/libktorrent_1.0.5.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyfo3-0001mm...@franck.debian.org



Accepted ktorrent 4.0.5-2 (source all amd64)

2010-12-30 Thread Modestas Vainius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Dec 2010 12:32:26 +0200
Source: ktorrent
Binary: ktorrent ktorrent-data plasma-widget-ktorrent ktorrent-dbg
Architecture: source amd64 all
Version: 4.0.5-2
Distribution: experimental
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Modestas Vainius mo...@debian.org
Description: 
 ktorrent   - BitTorrent client based on the KDE platform
 ktorrent-data - KTorrent data and other architecture independent files
 ktorrent-dbg - KTorrent debugging symbols
 plasma-widget-ktorrent - KTorrent Plasma widget
Changes: 
 ktorrent (4.0.5-2) experimental; urgency=low
 .
   * Reupload because previous upload was screwed.
Checksums-Sha1: 
 b2023a5849ed6920a4f9d424f9732df146e97bf2 1552 ktorrent_4.0.5-2.dsc
 93a846ba30b76bba95271eb9d65ac106ff047c81 26604 ktorrent_4.0.5-2.debian.tar.gz
 2866e23bbf9cb9f6cf48163ea100f1ab707c16f2 1500424 ktorrent_4.0.5-2_amd64.deb
 8e2b7e9346977090718ae31c669da8d830a8060c 2594876 ktorrent-data_4.0.5-2_all.deb
 015ff3b495bdafd29cdac52e7f29012cdabf3353 98914 
plasma-widget-ktorrent_4.0.5-2_amd64.deb
 79f20d340577d97494ae733b36c14beef9757976 13315072 
ktorrent-dbg_4.0.5-2_amd64.deb
Checksums-Sha256: 
 92df65cd6517535c3ac8930eded9de2fa4cc3d92d7e9519dda2392c3f48d7ba5 1552 
ktorrent_4.0.5-2.dsc
 14f7e590b829959982965f82c97941988680c1445fffec784887b4d95f1b 26604 
ktorrent_4.0.5-2.debian.tar.gz
 d4c8cf9d52563ade99ee5cc7a76fc1f9b50b6f495a4efacdfd337e193c61f8a1 1500424 
ktorrent_4.0.5-2_amd64.deb
 d96979196a624ed22873d40e452e39feb09d94f3cf58d649562bcf8f9956984b 2594876 
ktorrent-data_4.0.5-2_all.deb
 3ee742f649a2a3b7da957e7787c4c9e2ffc184cd2c2b47a95ef3e928f316b691 98914 
plasma-widget-ktorrent_4.0.5-2_amd64.deb
 4f4f3b19d0e8dd3d9bfa6c44227f8f55e85d51172e675ba3ca595901f66113b9 13315072 
ktorrent-dbg_4.0.5-2_amd64.deb
Files: 
 9ee7130927a97c82364763919337c162 1552 net optional ktorrent_4.0.5-2.dsc
 1b3036fbdd0c1646d1666ad23c08607c 26604 net optional 
ktorrent_4.0.5-2.debian.tar.gz
 e3350fbfedb414a7fb56a2299441f7a7 1500424 net optional 
ktorrent_4.0.5-2_amd64.deb
 5e26a7c048ca6313b28ec0252ca09fd0 2594876 net optional 
ktorrent-data_4.0.5-2_all.deb
 8264f860903d107e15c9f9232098eec4 98914 kde optional 
plasma-widget-ktorrent_4.0.5-2_amd64.deb
 25c51a1bbaf6986d2041bb47b06306f9 13315072 debug extra 
ktorrent-dbg_4.0.5-2_amd64.deb

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

iEYEARECAAYFAk0cYSsACgkQHO9JRnPq4hSz2wCeJ4KsQA+HJ/9o00qcQ1wJXsCW
krgAoKe0cky09A2HXBqugrkJaCsN02nH
=EwuB
-END PGP SIGNATURE-


Accepted:
ktorrent-data_4.0.5-2_all.deb
  to main/k/ktorrent/ktorrent-data_4.0.5-2_all.deb
ktorrent-dbg_4.0.5-2_amd64.deb
  to main/k/ktorrent/ktorrent-dbg_4.0.5-2_amd64.deb
ktorrent_4.0.5-2.debian.tar.gz
  to main/k/ktorrent/ktorrent_4.0.5-2.debian.tar.gz
ktorrent_4.0.5-2.dsc
  to main/k/ktorrent/ktorrent_4.0.5-2.dsc
ktorrent_4.0.5-2_amd64.deb
  to main/k/ktorrent/ktorrent_4.0.5-2_amd64.deb
plasma-widget-ktorrent_4.0.5-2_amd64.deb
  to main/k/ktorrent/plasma-widget-ktorrent_4.0.5-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyg2o-0001py...@franck.debian.org



Accepted openssh 1:5.6p1-3 (source i386 all)

2010-12-30 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 30 Dec 2010 11:48:00 +
Source: openssh
Binary: openssh-client openssh-server ssh ssh-krb5 ssh-askpass-gnome 
openssh-client-udeb openssh-server-udeb
Architecture: source i386 all
Version: 1:5.6p1-3
Distribution: experimental
Urgency: low
Maintainer: Debian OpenSSH Maintainers debian-...@lists.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 openssh-client - secure shell (SSH) client, for secure access to remote 
machines
 openssh-client-udeb - secure shell client for the Debian installer (udeb)
 openssh-server - secure shell (SSH) server, for secure access from remote 
machines
 openssh-server-udeb - secure shell server for the Debian installer (udeb)
 ssh- secure shell client and server (metapackage)
 ssh-askpass-gnome - interactive X program to prompt users for a passphrase for 
ssh-ad
 ssh-krb5   - secure shell client and server (transitional package)
Changes: 
 openssh (1:5.6p1-3) experimental; urgency=low
 .
   * Drop override for desktop-file-but-no-dh_desktop-call, which Lintian no
 longer issues.
   * Merge 1:5.5p1-6.
Checksums-Sha1: 
 387eb180e2fe296cda43921377e7bd2ffcaf7d1b 2251 openssh_5.6p1-3.dsc
 36aa12fd078ae0655caf1dbb378fcb9e173e7475 236257 openssh_5.6p1-3.debian.tar.gz
 8552fddd8c82a299c4f7a1fd591438f1ab439b70 899870 openssh-client_5.6p1-3_i386.deb
 54ee8855d7bd5d18ad8697a58cc9cf3c3b5c396f 301174 openssh-server_5.6p1-3_i386.deb
 4cc20444acd12c08b8fdb215319135cd3eedf085 1244 ssh_5.6p1-3_all.deb
 b3870a0c2f265b73fb0c210ee521b45277f03832 103234 ssh-krb5_5.6p1-3_all.deb
 fc81e598c9df6aee4d9e13ef7ff6f11537049339 110672 
ssh-askpass-gnome_5.6p1-3_i386.deb
 4d5299e973c33b32ab0ac426aa4d52287e2fe43e 198858 
openssh-client-udeb_5.6p1-3_i386.udeb
 424a8a39ac7f9de41c42fa2b14f4333577a4ffc9 222874 
openssh-server-udeb_5.6p1-3_i386.udeb
Checksums-Sha256: 
 7d84313bfcfc92310cd10fcb7d7ce8a61f4f60fe55b72aefd5170b16c9fedb05 2251 
openssh_5.6p1-3.dsc
 9cb4ff055048fb87fc9de8a210d337a692c839e65a4c63bf9c25aecd5e9f0aa6 236257 
openssh_5.6p1-3.debian.tar.gz
 2393b7d2bcc2f8dba04d429d1e7649008ae84f230d34c5afc5cd13a9f17dd4ce 899870 
openssh-client_5.6p1-3_i386.deb
 d9714c571d62c95e74876770559f99ec939d560852eefcb4dced6cce89d591c7 301174 
openssh-server_5.6p1-3_i386.deb
 8573e1e22db7ddfa5b7338a45cb29983adcdd9584d30aeb53f0fefaa2a8a2a6e 1244 
ssh_5.6p1-3_all.deb
 09f1dc75fb48dd10fea57c33efa64ff35b7493bcae20166d794a93aaa110e831 103234 
ssh-krb5_5.6p1-3_all.deb
 224554cfc8e5742fc059c5ef2c04596614add0a27ca1f368b9547a489f73577e 110672 
ssh-askpass-gnome_5.6p1-3_i386.deb
 cf25af1a02498c4910156b5b9ffb2dda4a9d5aac3258958d9d7a17957b1deee4 198858 
openssh-client-udeb_5.6p1-3_i386.udeb
 5023fb6d293559391c28f783cbe20a1787285e433d1efc3601fa257426f98038 222874 
openssh-server-udeb_5.6p1-3_i386.udeb
Files: 
 ca530dfbd1a01305d0b0773903eee7d4 2251 net standard openssh_5.6p1-3.dsc
 f4ac2c9b8a77c8c384fe8d55505fa599 236257 net standard 
openssh_5.6p1-3.debian.tar.gz
 54f01b1cbb5454d831d41e9861db67c9 899870 net standard 
openssh-client_5.6p1-3_i386.deb
 5d1d1dbf265aa0064759fdc40ff675a1 301174 net optional 
openssh-server_5.6p1-3_i386.deb
 1047c4ba3e806020a095982210312a2d 1244 net extra ssh_5.6p1-3_all.deb
 fc380d9e1031e5d4356b207d2b68ed09 103234 net extra ssh-krb5_5.6p1-3_all.deb
 6db86e5ff48459caeb5aeebb5dfe8f30 110672 gnome optional 
ssh-askpass-gnome_5.6p1-3_i386.deb
 c2dc872087326e889f6513f0620afac6 198858 debian-installer optional 
openssh-client-udeb_5.6p1-3_i386.udeb
 ff7bf3e0465a83b7d2fa50c803aa60dd 222874 debian-installer optional 
openssh-server-udeb_5.6p1-3_i386.udeb
Package-Type: udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Colin Watson cjwat...@debian.org -- Debian developer

iQIVAwUBTRxy7jk1h9l9hlALAQhWaw/+IqEY2g97IEb7U6a0CQMYlWAm92qlxfG8
IbaqKIJtpDkmsLfXelKw5jFlFTGznkpjAykeShCgw0O1+Gtd5bfpQ1KjmurGJfJN
CSn9U98iRllSyeRsUdBItN5FCVCbE9iSeeZfCVYXt4JUM8A0R140cSNRpl5n3aAF
qYfRcCzQKAhfVm4BxzKC060F016bOL2q/PGSk3OV3hqmZz4Bqw1V/f+sicMlCrJ/
O04R/dSLWnbqC2SkoLnlhuynJy0aa91eytITzVaBJfPZ67pUCJ0LtlpwvUIvNKLn
pQ51WDi1OUxVvRGxdv6+UNdez7CMovYiLl2+XhDKUKp1UJG/LjmcrzCQyuGFACsX
ukIGfaOa5+cXqQeNB0e7MVkkSQhAgV4HMcDXiO/34S6Faj6xva4XMFxxvFBI0FVY
P+1eKidEBnXu+avtp7tIKAyD2QkQioh78fZMSvfD+rkn0yvM/AR/gPO6DVjnzlT/
7Y9h3PQhhAoimRwkeWz/WAc9BFxHUYQYC+1fyOd4MxcgCli3TjZ4CT83gJvqPVju
LahBNMq4f4PSAsnp2yX+odFG2Dasoy0SvHYQeOJkYoA0txxHpdTAcP2KENPbAE/f
/5HjixVQEanajqg4uAnZl0Uo3d0hW0HVHuDVGnV1/g1NkGh1rZakRx76/8hbDBUt
RmSYHJUWliE=
=uD6d
-END PGP SIGNATURE-


Accepted:
openssh-client-udeb_5.6p1-3_i386.udeb
  to main/o/openssh/openssh-client-udeb_5.6p1-3_i386.udeb
openssh-client_5.6p1-3_i386.deb
  to main/o/openssh/openssh-client_5.6p1-3_i386.deb
openssh-server-udeb_5.6p1-3_i386.udeb
  to main/o/openssh/openssh-server-udeb_5.6p1-3_i386.udeb
openssh-server_5.6p1-3_i386.deb
  to main/o/openssh/openssh-server_5.6p1-3_i386.deb
openssh_5.6p1-3.debian.tar.gz
  to main/o/openssh/openssh_5.6p1-3.debian.tar.gz

Accepted anjuta 2:2.32.0.0-5 (source all amd64)

2010-12-30 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Dec 2010 14:22:26 +0100
Source: anjuta
Binary: anjuta anjuta-common libanjuta0 libanjuta-dev anjuta-dbg
Architecture: source all amd64
Version: 2:2.32.0.0-5
Distribution: unstable
Urgency: low
Maintainer: Rob Bradford robs...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 anjuta - A GNOME development IDE, for C/C++
 anjuta-common - A GNOME development IDE, for C/C++ - data files
 anjuta-dbg - A GNOME development IDE, for C/C++ - debug files
 libanjuta-dev - A GNOME development IDE, for C/C++ - development files
 libanjuta0 - A GNOME development IDE, for C/C++ - shared libraries
Changes: 
 anjuta (2:2.32.0.0-5) unstable; urgency=low
 .
   * Pick more patches in the upstream repository.
 + 08_launcher_kill.patch: avoid anjuta petit-suiciding by killing
   itself.
 + 09_libxml_crash.patch: fix a crash when using pulseaudio, caused
   by a misuse of libxml.
   * 90_autotools.patch: regenerated accordingly.
Checksums-Sha1: 
 03f587812f97b1f54cbefa9b08e2ede56a7961c3 1905 anjuta_2.32.0.0-5.dsc
 9eee2251e803fd9705d937142726967354741c79 45221 anjuta_2.32.0.0-5.debian.tar.gz
 6861a8d7ea829b348599b2a4e5a155a1229f010b 8301014 
anjuta-common_2.32.0.0-5_all.deb
 d187aeb4cb8345a109bbb9a72e799d6b0d80a410 2156238 anjuta_2.32.0.0-5_amd64.deb
 d136592130abff3fe65c5ba8a61f15acb33575e2 605774 libanjuta0_2.32.0.0-5_amd64.deb
 7e90e8f7d3db47c73648c9dea891a6475bf70c8b 754560 
libanjuta-dev_2.32.0.0-5_amd64.deb
 955272d7ff55ca30c84d5f668676eb7274cb93b6 4283258 
anjuta-dbg_2.32.0.0-5_amd64.deb
Checksums-Sha256: 
 a54033a2fba210188a2ad66b3085d9da6ca8439180fe531177d1f9f6fb1adef3 1905 
anjuta_2.32.0.0-5.dsc
 2e1d1bab719aa2e698e99028f84b27520780a04c9a97292fd0e64cde8f6d302f 45221 
anjuta_2.32.0.0-5.debian.tar.gz
 98e9a01fea9fe2cbe54a75c393456509efbbea953de8ef23a453e24ab2be730f 8301014 
anjuta-common_2.32.0.0-5_all.deb
 be1cf8d6831c5a33d7bb15bc3852b53eafd88a17d8ad81859d7865fc5f43729a 2156238 
anjuta_2.32.0.0-5_amd64.deb
 5b57d0f98c8f1ab78e497a3f242747d6bb406d66d6b7821ed0ccfab2b13f054c 605774 
libanjuta0_2.32.0.0-5_amd64.deb
 c0d0e11a50fff4f5ca157dbf1a3abe079f5f1a817066ca2beae0e23258099019 754560 
libanjuta-dev_2.32.0.0-5_amd64.deb
 c23dded914281f5e0e055ecb07ef74eb8c037210db3e0c353fd03b5a79f3c0d7 4283258 
anjuta-dbg_2.32.0.0-5_amd64.deb
Files: 
 1efbd2f6edda8880a41f95f8a476369e 1905 gnome optional anjuta_2.32.0.0-5.dsc
 f97ff28dd5d4fef2038c82fe5aabb18b 45221 gnome optional 
anjuta_2.32.0.0-5.debian.tar.gz
 81689ea6d1f7a2488c06d376a5dbe0b6 8301014 devel optional 
anjuta-common_2.32.0.0-5_all.deb
 f0605c3f78230bfb4b688796c12cc9af 2156238 gnome optional 
anjuta_2.32.0.0-5_amd64.deb
 586a42beba6b791d8a8881f9dd15cb51 605774 libs optional 
libanjuta0_2.32.0.0-5_amd64.deb
 02eb075c1a13c1517d2df978159365f5 754560 libdevel optional 
libanjuta-dev_2.32.0.0-5_amd64.deb
 fd725f48dc3f78e6d51966069f5fd1ab 4283258 debug extra 
anjuta-dbg_2.32.0.0-5_amd64.deb

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

iD8DBQFNHI1VrSla4ddfhTMRAndXAJ9RQAp4cGKavsY10AQ0nWcqi2xcNgCffWe1
eLxu0JN2wPffNq+/U1jv27s=
=Yo1J
-END PGP SIGNATURE-


Accepted:
anjuta-common_2.32.0.0-5_all.deb
  to main/a/anjuta/anjuta-common_2.32.0.0-5_all.deb
anjuta-dbg_2.32.0.0-5_amd64.deb
  to main/a/anjuta/anjuta-dbg_2.32.0.0-5_amd64.deb
anjuta_2.32.0.0-5.debian.tar.gz
  to main/a/anjuta/anjuta_2.32.0.0-5.debian.tar.gz
anjuta_2.32.0.0-5.dsc
  to main/a/anjuta/anjuta_2.32.0.0-5.dsc
anjuta_2.32.0.0-5_amd64.deb
  to main/a/anjuta/anjuta_2.32.0.0-5_amd64.deb
libanjuta-dev_2.32.0.0-5_amd64.deb
  to main/a/anjuta/libanjuta-dev_2.32.0.0-5_amd64.deb
libanjuta0_2.32.0.0-5_amd64.deb
  to main/a/anjuta/libanjuta0_2.32.0.0-5_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyjyn-0004zl...@franck.debian.org



Accepted anjuta-extras 2.32.0.0-3 (source amd64)

2010-12-30 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Dec 2010 14:27:27 +0100
Source: anjuta-extras
Binary: anjuta-extras
Architecture: source amd64
Version: 2.32.0.0-3
Distribution: unstable
Urgency: low
Maintainer: Luca Bruno lethalma...@gmail.com
Changed-By: Josselin Mouette j...@debian.org
Description: 
 anjuta-extras - plugins and extras for anjuta
Changes: 
 anjuta-extras (2.32.0.0-3) unstable; urgency=low
 .
   * 01_libxml_crash.patch: stolen upstream. Fix crasher with pulseaudio
 caused by misuse of libxml.
Checksums-Sha1: 
 aa8da4a846d67e4a197db26d6ac63bcccbbf6304 1670 anjuta-extras_2.32.0.0-3.dsc
 07019ca77ecddb997ee3f242cc53b13df5094147 5706 
anjuta-extras_2.32.0.0-3.debian.tar.gz
 3d03c5e479e1ec1bbdedfc8c33013282c3a4a6ed 2614958 
anjuta-extras_2.32.0.0-3_amd64.deb
Checksums-Sha256: 
 78f833b70f8730ea4797250f6e4207b283c4aca0266300150d43b2414a74e24f 1670 
anjuta-extras_2.32.0.0-3.dsc
 49b318284e28d6d9b3530baae3ec1078beb662a5b55af85eb789cf393d368133 5706 
anjuta-extras_2.32.0.0-3.debian.tar.gz
 1fad53aae5ae8ce4ed7f7ccb0a48cadb727191b6fd13ce2b5df4f61e58aa8e47 2614958 
anjuta-extras_2.32.0.0-3_amd64.deb
Files: 
 e134160ce343cea73b887481b4a69e32 1670 gnome optional 
anjuta-extras_2.32.0.0-3.dsc
 d7ca1d9b5b66d551328326416f8e8f2a 5706 gnome optional 
anjuta-extras_2.32.0.0-3.debian.tar.gz
 be12a8b2a16c8214a54693c51c47595c 2614958 gnome optional 
anjuta-extras_2.32.0.0-3_amd64.deb

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

iD8DBQFNHI36rSla4ddfhTMRAqrwAKDZg0KUo5GSrD2hQpORHmJ5K5MAawCfVss0
4UW4XnTTiPJaxVQLihpjUx0=
=QYh5
-END PGP SIGNATURE-


Accepted:
anjuta-extras_2.32.0.0-3.debian.tar.gz
  to main/a/anjuta-extras/anjuta-extras_2.32.0.0-3.debian.tar.gz
anjuta-extras_2.32.0.0-3.dsc
  to main/a/anjuta-extras/anjuta-extras_2.32.0.0-3.dsc
anjuta-extras_2.32.0.0-3_amd64.deb
  to main/a/anjuta-extras/anjuta-extras_2.32.0.0-3_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyjyy-0004e8...@franck.debian.org



Accepted localechooser 2.34 (source i386)

2010-12-30 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Dec 2010 12:03:28 +0100
Source: localechooser
Binary: localechooser
Architecture: source i386
Version: 2.34
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 localechooser - choose language/country/locale (udeb)
Changes: 
 localechooser (2.34) unstable; urgency=low
 .
   [ Updated translations ]
   * Russian (ru.po) by Yuri Kozlov
Checksums-Sha1: 
 7bba4b409eb668715890c8368545b9530694af53 1595 localechooser_2.34.dsc
 c3aa5d5d1a8fbe41686fb31d11f7f45115a512b3 200243 localechooser_2.34.tar.gz
 6e3771d8b196a1325a8c5883f086a81e7663a2f9 254266 localechooser_2.34_i386.udeb
Checksums-Sha256: 
 29a370036bed171aa00994819ee88e10d4bf9a7ba419b26577de1e2d737bc4d4 1595 
localechooser_2.34.dsc
 824a3988843409c2bf4cda00fba736685c213f0907df6d547ed9684aeb92c54c 200243 
localechooser_2.34.tar.gz
 121a453f24a49cf1baa65eceb08babc617ba656f382c78a52fcdd4939b71aa11 254266 
localechooser_2.34_i386.udeb
Files: 
 7c498e8ab0dc2594575e9e9dc13af504 1595 debian-installer optional 
localechooser_2.34.dsc
 55d957ace83c635e62830f8298742986 200243 debian-installer optional 
localechooser_2.34.tar.gz
 22063e4d4e2a2037f8f639b7b0673c8b 254266 debian-installer optional 
localechooser_2.34_i386.udeb
Package-Type: udeb

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

iQIVAwUBTRyLw4cvcCxNbiWoAQIMihAApCCiUKc2jMrSX4tP5bgYaVyB4Gcwd6NV
SWU6A5Fdd42bW+5YOO/jUvXZWCnQV8eJ5WbQLXwAbQmcZIHOtuMwqW+m9er6R/DM
fnawIQ12AXy6Ve8zyjjiHsm8aoR/End11wmPz6dsYoBng4ERORG2ER1LS86kPYAe
BOqGihIhQzmpN4FgIyyvOJJma0za750HdHvBvXVNpPg3iJeEQ6oHl12B9b5D4JSL
ZUYKe1izQwhDLWCdi6x9Shq2Chol+TCD5WIhc0afk1QVuWzwitJ1HU4z/CHpS/uA
c3Viqpkkdlxrblb9yMKKpcyitoXXfCwkSUJNHsVS9zvtukkP6+4nEDbhHhIxxZXi
/i2z409EH4K9FBUfHnV9U7TwFBLvMrknz8/MFAT6ohtrxu05bDWJRLmVLBatwDmx
UOsfxifD718AOhh/eJ4Un4tp8VmhjK3kp597egTi+NCtWdPlIQNBZ2tsQ8dZ0NYv
HjLT1NocxkDmKi5wB3c6+dzL4LxPxTpdxV9Qf2fp/7Z30tgVY65B9zhauSmoj+jt
Brb/7DR3CaB0EBc8uktAfXA426ftS8+xYj3w5ZQ//NoSJtVjPkgiaJayqQoNYnlr
TG5T1bsb0VFcmeJUU9zITlGZwFoX6t1NZHM6eFpvai/Oz7hBXkXZpiaIxwlnXM9f
0R7eTlZvlI0=
=QvQd
-END PGP SIGNATURE-


Accepted:
localechooser_2.34.dsc
  to main/l/localechooser/localechooser_2.34.dsc
localechooser_2.34.tar.gz
  to main/l/localechooser/localechooser_2.34.tar.gz
localechooser_2.34_i386.udeb
  to main/l/localechooser/localechooser_2.34_i386.udeb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyjad-0004o5...@franck.debian.org



Accepted tzsetup 1:0.33 (source all)

2010-12-30 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Dec 2010 12:04:53 +0100
Source: tzsetup
Binary: tzsetup-udeb
Architecture: source all
Version: 1:0.33
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 tzsetup-udeb - choose time zone (udeb)
Changes: 
 tzsetup (1:0.33) unstable; urgency=low
 .
   [ Updated translations ]
   * Russian (ru.po) by Yuri Kozlov
Checksums-Sha1: 
 e98ab62c87c2994ad5355de976b4b77701b1e57a 1538 tzsetup_0.33.dsc
 2bc70b083056e08dd1f40a69f896c073014de632 119493 tzsetup_0.33.tar.gz
 d2685763dae73f5a1c7bee9b44194c59d1018cea 65706 tzsetup-udeb_0.33_all.udeb
Checksums-Sha256: 
 333bc850eaeddbb3d35d8920c9c6e2e0708c1501ff6c7eb46f93d98bf90af066 1538 
tzsetup_0.33.dsc
 230ccf0a0a2ff9e12f521fdb42b5cc9256dad88515536bf3c158dbd7ba382390 119493 
tzsetup_0.33.tar.gz
 18d01f1e2c99c1d30786706e92a17ce3bc53992c5b6b80e51184f1edc0a95f8b 65706 
tzsetup-udeb_0.33_all.udeb
Files: 
 c4fbd530a7e3229aa481a08e626263b7 1538 debian-installer optional 
tzsetup_0.33.dsc
 209dd21323a8136bebabcba867731199 119493 debian-installer optional 
tzsetup_0.33.tar.gz
 aacc198638cb6ae694431ef18d744016 65706 debian-installer optional 
tzsetup-udeb_0.33_all.udeb
Package-Type: udeb

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

iQIVAwUBTRyL4ocvcCxNbiWoAQLdGg/8CKLzPWipbv78RgMFgGstObf5CHS+NAaR
fsVbFYWIQq94GbyHBSN34Z6HeXc4Xt+eYymk3YYI3jzwvpBWno/Tj1OSlHL1JV5m
Q4poF8h7ogs+QIx3I96nhe64KzdxZx4U3qLrAe3PKgmwOgwZ3z9cBFrjMDf12lX2
vt9v+XeQRFsaBBSzkOoFgXzY2bliJNyTyFLw0PBWDQx9sLS0ht4ttJieOlYNAfgM
3Gh2uM0LfyEOaySNk9IWmMG851LjLfvtfU1/SoB+JmAzY3Ha2qUVNJHpybWErNTH
pImABS4lulwQ7ybHZFn7HSeFbvvqZx35JvPo5K//nmNMcP/N+2iG8QR9dXQRcuj8
Ld2Oyfm6FrbpKvABOrued13/yTnbjk28BTKpgRfg4lGbgkPDFsMiVZ4yMeMgnvGC
03xR86fd2JZsh4d2oRjGInf7ckm+JfBq4KYFEvGbff2HFjpoZPqHlCc3g05Wpdmy
WbP5fUoPfKPvKQFkp+hJEuc9uhvfQHhT8B26otnZx7YOeHfBO5Io3NwVi2mYDCor
4nGBM8Z8QC2cZtOzTkxzHNBHLz+xGTpdh8WWtWiPAIMeU4z/czBRF/ZYncoP4Jv0
ZV+1Kx/XphgFBjLKzFeigfp1jinxlmixYxdwc/dEMCnJAkezF6NxZZZYXxJnsk6e
6Qbxs5c247I=
=oMi/
-END PGP SIGNATURE-


Accepted:
tzsetup-udeb_0.33_all.udeb
  to main/t/tzsetup/tzsetup-udeb_0.33_all.udeb
tzsetup_0.33.dsc
  to main/t/tzsetup/tzsetup_0.33.dsc
tzsetup_0.33.tar.gz
  to main/t/tzsetup/tzsetup_0.33.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyjd3-000509...@franck.debian.org



Accepted user-setup 1.38 (source all)

2010-12-30 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Dec 2010 12:05:54 +0100
Source: user-setup
Binary: user-setup-udeb user-setup
Architecture: source all
Version: 1.38
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 user-setup - Set up initial user and password
 user-setup-udeb - Set up users and passwords (udeb)
Changes: 
 user-setup (1.38) unstable; urgency=low
 .
   [ Updated translations ]
   * Russian (ru.po) by Yuri Kozlov
Checksums-Sha1: 
 b7b58d54ff0af75e8961429139e5dd95b1dc5114 1572 user-setup_1.38.dsc
 1490d7c122a73a5b0764ca6dc78dd085699cf86f 153615 user-setup_1.38.tar.gz
 28efebaef14a8386000b2cd5c8af830b6c435863 147370 user-setup-udeb_1.38_all.udeb
 cec9571c8a39885cab95a8dbf668b32c3e58ac8e 156782 user-setup_1.38_all.deb
Checksums-Sha256: 
 fdd84b3ce6b537f8165f8cc375dd24340e588349f49e88af9d6b4dcab3a1f8ea 1572 
user-setup_1.38.dsc
 731efa1455fdf795a4e102ef0d18864dbab3eca4f24456130c5f396440c9a71a 153615 
user-setup_1.38.tar.gz
 4a4cebb15a58bc979923d903939eaf28106fdad7351c1bcc9e68716391fb16e0 147370 
user-setup-udeb_1.38_all.udeb
 5ac1216ee0261d1d09ba3dcf5f8f5846015514c08940a6c3f143fb8c47e26c62 156782 
user-setup_1.38_all.deb
Files: 
 16e3da50dce7ff17e4e20d2c32ececdb 1572 debian-installer extra 
user-setup_1.38.dsc
 36a483957b1a6b0e8236afbf82db7a2e 153615 debian-installer extra 
user-setup_1.38.tar.gz
 ee2ee66aae45bd4a7ddfd7f2b0179614 147370 debian-installer standard 
user-setup-udeb_1.38_all.udeb
 10716e1c548d80916c2876b0a8f0cd2d 156782 admin extra user-setup_1.38_all.deb
Package-Type: udeb

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

iQIVAwUBTRyMF4cvcCxNbiWoAQI2rBAAlrQVqKZnHh0csqIY75ABO9qBD7fDvzxH
nCBmYMo4L1T8c5EK4X8/Qf0stbeKd+bWFIDt3AXGTLEoZMLqTKG7+t7vUUx9DnrL
S3wDN70TcRErxCTVGaQTqU97Ca8cSaANYfhfXsqld/LqGmYqvyrhTboD3pdhstnV
gyOqEBfTdF87B0hprzr/3sdZXOyDs+mcxEmvUCJjQGP9intBV5ovoBwaqt6FgztT
s1vDjVf39ttcVqynfdOsLKEk6fQ3iJ9DZx9wln9qUw/ek/jLn4f72JgVaIX/fs3I
f8vU9egI44JrQ8VurSKEv70v4kC6l2+z+7/KRRTH/RJapHQKsPK2f686kOVw+dfC
7fW6F+IW7jaaNNlgKBAJVx9y7r63TF7EKTYK8r7gZ5XfJCD2J2FWGHe6LVojJiu+
lfQPdwsefxgodwzpt8g/+nqMUjIl3ab8BNPJSPZANruwxhF+fnBMvat/LUsdGe3o
3Ul5aYrncqzeTi9zLYvTRalovekn0CxL4h8UUcGmEotOJTDvXYmpF2+oAKshlIlY
gu770GHEp4h3tzPe2oZ78D/nTfv/Gtwx1zCuLAr4jPFricbwW8xqOkHvlj8NinpQ
0f7pnfZFxt9mc8xJcwxHUJQPc4N33Tuon9dscgx3cw2fuMmNYPVwHXilHwz1TBbK
GggI/EG3Yss=
=NeqX
-END PGP SIGNATURE-


Accepted:
user-setup-udeb_1.38_all.udeb
  to main/u/user-setup/user-setup-udeb_1.38_all.udeb
user-setup_1.38.dsc
  to main/u/user-setup/user-setup_1.38.dsc
user-setup_1.38.tar.gz
  to main/u/user-setup/user-setup_1.38.tar.gz
user-setup_1.38_all.deb
  to main/u/user-setup/user-setup_1.38_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyjdj-00054e...@franck.debian.org



Accepted wordpress 3.0.4+dfsg-1 (source all)

2010-12-30 Thread Giuseppe Iuculano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Dec 2010 14:47:40 +0100
Source: wordpress
Binary: wordpress wordpress-l10n
Architecture: source all
Version: 3.0.4+dfsg-1
Distribution: unstable
Urgency: high
Maintainer: Giuseppe Iuculano iucul...@debian.org
Changed-By: Giuseppe Iuculano iucul...@debian.org
Description: 
 wordpress  - weblog manager
 wordpress-l10n - weblog manager - language files
Changes: 
 wordpress (3.0.4+dfsg-1) unstable; urgency=high
 .
   * [9d62499] Imported Upstream version 3.0.4+dfsg
 - This is critical security update, more info: http://wp.me/pZhYe-qt
Checksums-Sha1: 
 4ce5f5b108dd90c8a9ae31732079157a911b3128 1294 wordpress_3.0.4+dfsg-1.dsc
 1c10c65b63bd048360a2951448ce23da3fcc9537 2684144 
wordpress_3.0.4+dfsg.orig.tar.gz
 a51427da7ae4e022ba606936abf9dc7a331c7fce 7031536 
wordpress_3.0.4+dfsg-1.debian.tar.gz
 e554f3de4aa4034ce4468f12118925e4d67954f4 2512696 wordpress_3.0.4+dfsg-1_all.deb
 864c2461f2aed78bf1138e11bf885a03b425f012 5988000 
wordpress-l10n_3.0.4+dfsg-1_all.deb
Checksums-Sha256: 
 b294b7052806d7abfcdb6977a9be8faa33742033b500701843834f293cd5a217 1294 
wordpress_3.0.4+dfsg-1.dsc
 87a833869e76b8c2024479bfc2a076524b28c09faf9d4258f40e22ee88e4da09 2684144 
wordpress_3.0.4+dfsg.orig.tar.gz
 3e37dcaf9a28ec303506cbf74a90ea0dd0fbd71a5538ae38e4a4683164a42b7f 7031536 
wordpress_3.0.4+dfsg-1.debian.tar.gz
 f11a70f6b19b9cc7a22113f18f2ac287c4adaaf07e1cc4e2d5dbea0d9adcd070 2512696 
wordpress_3.0.4+dfsg-1_all.deb
 e6b337dd3573c820ac2ef32680d56622a72cc1658a00674fb1bb1431aa67d71c 5988000 
wordpress-l10n_3.0.4+dfsg-1_all.deb
Files: 
 b23c21ddb471294ffd762caf98de5ef4 1294 web optional wordpress_3.0.4+dfsg-1.dsc
 419e7bda9ba244ce1cb32f645ed7dde7 2684144 web optional 
wordpress_3.0.4+dfsg.orig.tar.gz
 c2c77c2770c36360132d55d88bf26579 7031536 web optional 
wordpress_3.0.4+dfsg-1.debian.tar.gz
 ed657dca322942b8bed97ba1de6b3e52 2512696 web optional 
wordpress_3.0.4+dfsg-1_all.deb
 749281e24e6dca29ef03a0f9ce8aec94 5988000 localization optional 
wordpress-l10n_3.0.4+dfsg-1_all.deb

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

iEYEARECAAYFAk0clHwACgkQNxpp46476aqtUgCfdQgFp9SEMXUL6GGOF/rG1IaB
TmcAn2IfTmFSuv56ktW1mtXKusOSaPg1
=0mIY
-END PGP SIGNATURE-


Accepted:
wordpress-l10n_3.0.4+dfsg-1_all.deb
  to main/w/wordpress/wordpress-l10n_3.0.4+dfsg-1_all.deb
wordpress_3.0.4+dfsg-1.debian.tar.gz
  to main/w/wordpress/wordpress_3.0.4+dfsg-1.debian.tar.gz
wordpress_3.0.4+dfsg-1.dsc
  to main/w/wordpress/wordpress_3.0.4+dfsg-1.dsc
wordpress_3.0.4+dfsg-1_all.deb
  to main/w/wordpress/wordpress_3.0.4+dfsg-1_all.deb
wordpress_3.0.4+dfsg.orig.tar.gz
  to main/w/wordpress/wordpress_3.0.4+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyjdq-0005bo...@franck.debian.org



Accepted libdata-validate-ip-perl 0.12-1 (source all)

2010-12-30 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 30 Dec 2010 15:27:26 +0100
Source: libdata-validate-ip-perl
Binary: libdata-validate-ip-perl
Architecture: source all
Version: 0.12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libdata-validate-ip-perl - Perl module for IP validation
Changes: 
 libdata-validate-ip-perl (0.12-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release
   * Refresh debian/copyright:
 - Explicitly refer to GPL-1 license text in common-lincenses.
 - Refer to Debian systems in general instead of Debian GNU/Linux systems.
   * Bump Standards-Version to 3.9.1.
   * Convert to '3.0 (quilt)' source package format.
Checksums-Sha1: 
 a7c2f9a86fc7c383d0fd1afc9237073230209cf0 2211 
libdata-validate-ip-perl_0.12-1.dsc
 57f42a3fb8340a0d65e3c1de224b752098b1d9fb 8253 
libdata-validate-ip-perl_0.12.orig.tar.gz
 8136b07019ab8d82e0c6529724d37229081cb2c2 2454 
libdata-validate-ip-perl_0.12-1.debian.tar.gz
 84a5ed58ec250466d1b0eec67df104ed5070e961 13830 
libdata-validate-ip-perl_0.12-1_all.deb
Checksums-Sha256: 
 fdbf20313810b0209b0882d27e8ef2dcc1877c7075d84ac9fbcdbe82cb49be25 2211 
libdata-validate-ip-perl_0.12-1.dsc
 3531755ec0827ad031017ab1ea2d888b96f36abfd79b2d245c13ef4e62e14c22 8253 
libdata-validate-ip-perl_0.12.orig.tar.gz
 ca29f8334aa813e5419342e81f2843c8caf159525b8c0b972fe3517fdaf7e71a 2454 
libdata-validate-ip-perl_0.12-1.debian.tar.gz
 8ad4c8602af4f0b32637f7c7c7d5bb881ceaad6dd22047a44c5d20217b8fc1a7 13830 
libdata-validate-ip-perl_0.12-1_all.deb
Files: 
 8373c45a37a544810b38f449a904063d 2211 perl optional 
libdata-validate-ip-perl_0.12-1.dsc
 e6957a118ca2bd23942c39447b6abc33 8253 perl optional 
libdata-validate-ip-perl_0.12.orig.tar.gz
 f72d31efaec76f092183d9d8faaab089 2454 perl optional 
libdata-validate-ip-perl_0.12-1.debian.tar.gz
 4d5c8868d81ee226a8bb906437e7e40f 13830 perl optional 
libdata-validate-ip-perl_0.12-1_all.deb

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

iQIcBAEBCAAGBQJNHJgdAAoJEHidbwV/2GP+ox8QAMAVR/X29CvXLbWowgyXzufY
EMyr4DVpD0gWr1xBdrydGxKrw2+kllM73QbcrONLsaCg/W2W8kG14HwheiEmCgZG
BBHPL7JNzrkutRAWjhIp4+z2ZLQr3cywAylXU0rPqADWaJsUdtWS2FuC6uP61swY
BWDaPEoThQHgAfIIp5fpD6+e4lF8Kah1ZO+Rfoar4efMX/SHJ0Ej9lJ9j9qlcU0h
Ys5fdv3k2uOJ6uaSJitQens/DY6R1VvdAUzRLiEMdfky3k1M/QXMMe+V3oDEkese
F7+x2DhOo+D922KWpHk0fE1kDmHCkuVpw6JRnIxpu4lkFRv9fILIMCeptG90NVlA
n2/UwW/7C0Cj6XHyPTnGCal7mlm9MTZnuMA6l9Q3VhPDax2qTWcPJi4zrynPqetb
93DY4G02ILbMIjmExitTHEpzLQBpY/baArywxbw4W5ud0dgMdvFSsYSZq+Psz2CH
SyykxD0ShHkO06OPxtKnNpaQK9Kfnqb1cqlSNFHtKdtCDJ9CfwgCm/RrXIoWA1KQ
mXVxyRJ9oUFV+i8OlEUaAf6wb/BQ3FtpWouID/GYHIHrtwcbtGbzBOhoZyrwS9PU
KLrn+c3hmvsgBJ6XeJy7KPM5Okhw2ARTe9YC/U7a8V7mHAkNOxtLGcsHY0ta88op
y6LiznWU9dKwEC7c8Lnr
=VGsO
-END PGP SIGNATURE-


Accepted:
libdata-validate-ip-perl_0.12-1.debian.tar.gz
  to 
main/libd/libdata-validate-ip-perl/libdata-validate-ip-perl_0.12-1.debian.tar.gz
libdata-validate-ip-perl_0.12-1.dsc
  to main/libd/libdata-validate-ip-perl/libdata-validate-ip-perl_0.12-1.dsc
libdata-validate-ip-perl_0.12-1_all.deb
  to main/libd/libdata-validate-ip-perl/libdata-validate-ip-perl_0.12-1_all.deb
libdata-validate-ip-perl_0.12.orig.tar.gz
  to 
main/libd/libdata-validate-ip-perl/libdata-validate-ip-perl_0.12.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyjmy-0006fp...@franck.debian.org



Accepted schroot 1.4.17-1 (source all amd64)

2010-12-30 Thread Roger Leigh
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Wed, 29 Dec 2010 16:41:30 +
Source: schroot
Binary: schroot-common libsbuild-dev schroot-dbg libsbuild-doc schroot dchroot 
dchroot-dsa
Architecture: source all amd64
Version: 1.4.17-1
Distribution: unstable
Urgency: low
Maintainer: Debian buildd-tools Developers 
buildd-tools-de...@lists.alioth.debian.org
Changed-By: Roger Leigh rle...@debian.org
Description: 
 dchroot- Execute commands in a chroot environment
 dchroot-dsa - Execute commands in a chroot environment
 libsbuild-dev - development files for the Debian source builder
 libsbuild-doc - development documentation for the Debian source builder
 schroot- Execute commands in a chroot environment
 schroot-common - common files for schroot
 schroot-dbg - schroot, dchroot and dchroot-dsa debuggging symbols
Closes: 606245 606305 606394 608054
Changes: 
 schroot (1.4.17-1) unstable; urgency=low
 .
   * New upstream stable release.
   * 15killprocs: Don't kill processes in other sessions
 (Closes: #608054).  Compare full chroot path in addition to device
 and inode numbers, since the device and inode are not sufficiently
 unique (they are shared between non-cloned sessions such as for
 directory type chroots).
   * Updated translations:
 - da (Closes: #606305).  Thanks to Joe Hansen.
 - de (Closes: #606245).  Thanks to Holger Wansing.
 - fr (Closes: #606394).  Thanks to Thomas Blein.
 - it.  Thanks to Vincenzo Campanella.
 - zh_CN.  Thanks to Ji ZhengYu.
Checksums-Sha1: 
 0c8049f57dcc3ca28893bcc11b28d97069665d53 1578 schroot_1.4.17-1.dsc
 f52d126d6d284a6a5af3111293b7350a50a08e9b 773664 schroot_1.4.17.orig.tar.bz2
 0a2a1f996124ec9b95d9d6e4ef8552093c77fafa 22754 schroot_1.4.17-1.debian.tar.gz
 bc8d4d3cdf6706b018dd7b5d76354829143e4cf3 248262 schroot-common_1.4.17-1_all.deb
 de65f000a9dd7c77e166de25a697d866a4c3b983 7234776 libsbuild-doc_1.4.17-1_all.deb
 ec71bdc77584948c2306b1c9be51bb0f49bb57c7 1853254 
libsbuild-dev_1.4.17-1_amd64.deb
 b38cad1243235e5718be2f18eae5210b52ce1312 16471200 
schroot-dbg_1.4.17-1_amd64.deb
 b1def604937be61d3948f243d604c4098b4e9b62 915466 schroot_1.4.17-1_amd64.deb
 7af5f46b12b309ef14e1c8a2c0699d63fe4f1a94 402424 dchroot_1.4.17-1_amd64.deb
 69ed238a19d0e182969e2ba832e52ad9b44e2702 402258 dchroot-dsa_1.4.17-1_amd64.deb
Checksums-Sha256: 
 c7abfbbc7b6b589dfbfed809de7ce267c5aeaa576ae35197a5bc65da89c56a93 1578 
schroot_1.4.17-1.dsc
 d924cadcb0b7b20ca14a5edb0e3f0a841a4386d59e39417824b6fd139d70f167 773664 
schroot_1.4.17.orig.tar.bz2
 72f0d170a48b22085ca8ccdd15c019cb8b00e51dc09f100973dbc84999abce0c 22754 
schroot_1.4.17-1.debian.tar.gz
 310544e4375d2dfe4c1166b57a50359c7f1cad88fe8c9d0e3c831aeff7cd72e0 248262 
schroot-common_1.4.17-1_all.deb
 402db4f6601121d736fb2332cf37e45e752b77855640061340adb327fc5e0b0d 7234776 
libsbuild-doc_1.4.17-1_all.deb
 dbf7bc016c70c0659e0eb2ba1592576e9db38f7c561d938d1181520be1bb1421 1853254 
libsbuild-dev_1.4.17-1_amd64.deb
 6703e035be3eb8cf135603e850a158632c27c87b13e5f7adc88f3b31ffe102e0 16471200 
schroot-dbg_1.4.17-1_amd64.deb
 82c7efc3657121a710fb8b705299b5156ce5604926c68b348f26d4081793c9c9 915466 
schroot_1.4.17-1_amd64.deb
 d04ceb22fa55d9e35f88d9539eb49e2c7980e00f2055eb5c047229f43f9d21f4 402424 
dchroot_1.4.17-1_amd64.deb
 dcf6bec9d40aff46c7e80a19c9178400da1536a2bff787640bb44f14988af43c 402258 
dchroot-dsa_1.4.17-1_amd64.deb
Files: 
 92fe75022e1e5b34683e80ed76bc0434 1578 admin optional schroot_1.4.17-1.dsc
 a115bcb67d3fe8307b5d1fb4cf426e6f 773664 admin optional 
schroot_1.4.17.orig.tar.bz2
 529a73ee09b84ab539b2fb713550512f 22754 admin optional 
schroot_1.4.17-1.debian.tar.gz
 3a90c5222ff1cad0993a81c955c08464 248262 admin optional 
schroot-common_1.4.17-1_all.deb
 7928eab29fb94a285e7f1a1b0d7916e4 7234776 doc optional 
libsbuild-doc_1.4.17-1_all.deb
 77ff707b74c7e2ecfe385b4a3ccfd8a0 1853254 libdevel optional 
libsbuild-dev_1.4.17-1_amd64.deb
 3338f895cf5a060a6b9fb68216a1c62c 16471200 debug extra 
schroot-dbg_1.4.17-1_amd64.deb
 e5ee079c4455bdbe2aa2433fdf7183a5 915466 admin optional 
schroot_1.4.17-1_amd64.deb
 35471ecc7c0135a6442fb747f62eb1f8 402424 admin optional 
dchroot_1.4.17-1_amd64.deb
 8771a9630800fa2966712959b1518678 402258 admin optional 
dchroot-dsa_1.4.17-1_amd64.deb

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

iEYEAREDAAYFAk0cog4ACgkQVcFcaSW/uEgpzwCfZ0BLqd4HzGVCduYg3VsvK4EI
SgQAn3oz0Gjvc58mwQqaxiuD1QDCENCb
=nf5q
-END PGP SIGNATURE-


Accepted:
dchroot-dsa_1.4.17-1_amd64.deb
  to main/s/schroot/dchroot-dsa_1.4.17-1_amd64.deb
dchroot_1.4.17-1_amd64.deb
  to main/s/schroot/dchroot_1.4.17-1_amd64.deb
libsbuild-dev_1.4.17-1_amd64.deb
  to main/s/schroot/libsbuild-dev_1.4.17-1_amd64.deb
libsbuild-doc_1.4.17-1_all.deb
  to main/s/schroot/libsbuild-doc_1.4.17-1_all.deb
schroot-common_1.4.17-1_all.deb
  to main/s/schroot/schroot-common_1.4.17-1_all.deb
schroot-dbg_1.4.17-1_amd64.deb
  to main/s/schroot/schroot-dbg_1.4.17-1_amd64.deb

Accepted sl-modem 2.9.11~20100718-3 (source i386)

2010-12-30 Thread Ahmed El-Mahmoudy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 30 Dec 2010 17:50:05 +0200
Source: sl-modem
Binary: sl-modem-source sl-modem-daemon
Architecture: source i386
Version: 2.9.11~20100718-3
Distribution: unstable
Urgency: low
Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) aelmahmo...@sabily.org
Changed-By: أحمد المحمودي (Ahmed El-Mahmoudy) aelmahmo...@sabily.org
Description: 
 sl-modem-daemon - SmartLink software modem daemon
 sl-modem-source - SmartLink software modem driver - module building source
Closes: 608367
Changes: 
 sl-modem (2.9.11~20100718-3) unstable; urgency=low
 .
   * Add /usr/sbin:/sbin to PATH before calling execstack (Closes: #608367)
Checksums-Sha1: 
 3b2c6de5b1f8f5eb83ad2adca05bfba1c7a2a915 1889 sl-modem_2.9.11~20100718-3.dsc
 12381473c9c4987a1c9dfa6cc268dff28211f7f7 36143 
sl-modem_2.9.11~20100718-3.debian.tar.gz
 6ae8ba63dd2230b25a27aadfbed87373f5a8726f 262816 
sl-modem-source_2.9.11~20100718-3_i386.deb
 793597cda9ef234b3cb6e3dbb4591cb764f1c662 520222 
sl-modem-daemon_2.9.11~20100718-3_i386.deb
Checksums-Sha256: 
 0ba6635a141aa8c86d3c0e0d32a477ae26acb129c563f08b54532490c79944f1 1889 
sl-modem_2.9.11~20100718-3.dsc
 fbd381bfa8371fe83f6b402a9ba65b1b3f9b364133b6c0bbb8e949144c970e2f 36143 
sl-modem_2.9.11~20100718-3.debian.tar.gz
 ba6072f4e7d2964baa1bffcfc94b7bf713fd4ba10eb100d034d0585f3116d260 262816 
sl-modem-source_2.9.11~20100718-3_i386.deb
 23d37258f9e902519761f5068ad62bb28a1f9ea0137aa21bd087d61d6b15d006 520222 
sl-modem-daemon_2.9.11~20100718-3_i386.deb
Files: 
 7d56722cbdaef43169dc4f2ec74419ca 1889 non-free/misc optional 
sl-modem_2.9.11~20100718-3.dsc
 abb8e78088273e0bdf326641cbbfa708 36143 non-free/misc optional 
sl-modem_2.9.11~20100718-3.debian.tar.gz
 ddc21d16831cc341291e6d7da8b03dbe 262816 non-free/misc optional 
sl-modem-source_2.9.11~20100718-3_i386.deb
 d9923656df0cdff4c086547aeef757cc 520222 non-free/misc optional 
sl-modem-daemon_2.9.11~20100718-3_i386.deb

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

iQEcBAEBCAAGBQJNHKxvAAoJELwZapTt3aG3jm0H/2Ymem6F+HcF5j7DKiRrlKMp
/7gpOP45a9ByWkFWECYlWEe1oySIAN9N6Dw1eL1e3QHCEhCLWJiFMwcZSHvn8vh5
UoXLpNF4n9PvtlJ6eEs+ic2ZPUllHmjLxgtl6CDJRSYD97f6y51m/LP1snl1WWnp
AeRQ5dbBPaL9kM4oymscS/Rs9XtD9ys6MJzRIaaa4/BFdmrN3ztnYYAZAq3MRZjt
fo1+XVukd+PNBc45wqW0s+dk7zlDSl/QRgCzB4MV4FOlPEod36O4gTGkrXcdTdSb
uuDHs9BxPgnYuLJjIvzj/oS654CjgHtiPprVUv0TIJAFP1eSycdeBBwo3HzhbUQ=
=oi5A
-END PGP SIGNATURE-


Accepted:
sl-modem-daemon_2.9.11~20100718-3_i386.deb
  to non-free/s/sl-modem/sl-modem-daemon_2.9.11~20100718-3_i386.deb
sl-modem-source_2.9.11~20100718-3_i386.deb
  to non-free/s/sl-modem/sl-modem-source_2.9.11~20100718-3_i386.deb
sl-modem_2.9.11~20100718-3.debian.tar.gz
  to non-free/s/sl-modem/sl-modem_2.9.11~20100718-3.debian.tar.gz
sl-modem_2.9.11~20100718-3.dsc
  to non-free/s/sl-modem/sl-modem_2.9.11~20100718-3.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pylbs-0001er...@franck.debian.org



Accepted sbuild 0.60.8-1 (source all)

2010-12-30 Thread Roger Leigh
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sun, 12 Dec 2010 19:24:11 +
Source: sbuild
Binary: libsbuild-perl sbuild wanna-build buildd
Architecture: source all
Version: 0.60.8-1
Distribution: unstable
Urgency: low
Maintainer: Debian buildd-tools Developers 
buildd-tools-de...@lists.alioth.debian.org
Changed-By: Roger Leigh rle...@debian.org
Description: 
 buildd - Daemon for automatically building Debian binary packages from Deb
 libsbuild-perl - Tool for building Debian binary packages from Debian sources
 sbuild - Tool for building Debian binary packages from Debian sources
 wanna-build - Database to track building of Debian binary packages from Debian
Closes: 606668
Changes: 
 sbuild (0.60.8-1) unstable; urgency=low
 .
   * New release.
   * sbuild:
 - Don't use user's default GPG configuration and keyrings for
   signing archives; use sbuild archive signing keys only
   (Closes: #606668).  Thanks to Simon McVittie for this patch.
 - Use an empty directory as GPG homedir.
 - Don't run apt-get update to update local archive; copy files
   directly into /var/lib/apt/lists.  This means the remote mirror
   lists can't be updated during a build, and it also saves the
   time needed to update the lists an additional two times.
Checksums-Sha1: 
 57cf7bf1ffe799a5d6fb9c92985c029b2b5d2492 1265 sbuild_0.60.8-1.dsc
 638790e34b11a174b93d8e924e5a704337c5afe1 533041 sbuild_0.60.8.orig.tar.gz
 a0fddd5458378c1bf3c10dd2f5c060d1347741ed 20 sbuild_0.60.8-1.diff.gz
 429da7d6aab435a8a0a7c1f14a19c06c6ae36d51 244856 libsbuild-perl_0.60.8-1_all.deb
 ba8f2f6e3094c53e96110ded9280de7fc1af7cb7 245496 sbuild_0.60.8-1_all.deb
 ad437adcaf8257bd63f90cc8281b7082b2f9dc41 248590 wanna-build_0.60.8-1_all.deb
 a6e164959aab1849be937eb5b3e69cf81157db74 238272 buildd_0.60.8-1_all.deb
Checksums-Sha256: 
 c7a554b68ae720e8e4c372e46b6c404a41925dd6e6a4081dd70cba35c6a0c268 1265 
sbuild_0.60.8-1.dsc
 28e8b62a369f0c01f6b6674503beb7a97bbcc6029c98c0f3272b25cebd60cdcc 533041 
sbuild_0.60.8.orig.tar.gz
 f61f27bd17de546264aa58f40f3aafaac7021e0ef69c17f6b1b4cd7664a037ec 20 
sbuild_0.60.8-1.diff.gz
 4176cb8fe94a1ead33ff5d2f673e5011788c838067d708c8488aa2cc1853418e 244856 
libsbuild-perl_0.60.8-1_all.deb
 069efb66bcdf4afda21b7fcc1316fffa6b06fdb15caef6f5fdbe66684c3416fb 245496 
sbuild_0.60.8-1_all.deb
 d67779f190f3552425f14ec9f8cf38202c2c8dc3db4816c7b67f30cb27418310 248590 
wanna-build_0.60.8-1_all.deb
 d64bcaec339ba3b7c8bb2dc695845b150708fd3dc65f4b5b5d5b07b444ccd3f5 238272 
buildd_0.60.8-1_all.deb
Files: 
 898626838966c76e0e5831287a7c551f 1265 devel extra sbuild_0.60.8-1.dsc
 17b66cd36b8f2a03a4c9599411fe319f 533041 devel extra sbuild_0.60.8.orig.tar.gz
 4a4dd3598707603b3f76a2378a4504aa 20 devel extra sbuild_0.60.8-1.diff.gz
 8b5d30384a0c1297819409ca596a2c1b 244856 perl extra 
libsbuild-perl_0.60.8-1_all.deb
 cea9802a5d6f2b857645888cc69b36da 245496 devel extra sbuild_0.60.8-1_all.deb
 61ea12fbefbca8e43d212d6fd5568eae 248590 devel extra 
wanna-build_0.60.8-1_all.deb
 2f4e2b4c4d373247933d12f962856196 238272 devel extra buildd_0.60.8-1_all.deb

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

iEYEAREDAAYFAk0cs3cACgkQVcFcaSW/uEh8iACgrmUZs70nefO5QIFG/FAmErT4
vrkAn2Kcb/0bJ3M4bJHfs6205LSPN6gG
=Cmtr
-END PGP SIGNATURE-


Accepted:
buildd_0.60.8-1_all.deb
  to main/s/sbuild/buildd_0.60.8-1_all.deb
libsbuild-perl_0.60.8-1_all.deb
  to main/s/sbuild/libsbuild-perl_0.60.8-1_all.deb
sbuild_0.60.8-1.diff.gz
  to main/s/sbuild/sbuild_0.60.8-1.diff.gz
sbuild_0.60.8-1.dsc
  to main/s/sbuild/sbuild_0.60.8-1.dsc
sbuild_0.60.8-1_all.deb
  to main/s/sbuild/sbuild_0.60.8-1_all.deb
sbuild_0.60.8.orig.tar.gz
  to main/s/sbuild/sbuild_0.60.8.orig.tar.gz
wanna-build_0.60.8-1_all.deb
  to main/s/sbuild/wanna-build_0.60.8-1_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pylef-00072v...@franck.debian.org



Accepted libaudio-flac-header-perl 2.4-1 (source i386)

2010-12-30 Thread Jonathan Yu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 29 Dec 2010 20:02:11 -0500
Source: libaudio-flac-header-perl
Binary: libaudio-flac-header-perl
Architecture: source i386
Version: 2.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jonathan Yu jaw...@cpan.org
Description: 
 libaudio-flac-header-perl - Perl interface to FLAC file header metadata
Changes: 
 libaudio-flac-header-perl (2.4-1) unstable; urgency=low
 .
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 .
   [ Jonathan Yu ]
   * New upstream release
   * Use new short debhelper rules format
   * Standards-Version 3.9.1 (no changes)
   * Refresh copyright information
   * Add myself to Uploaders and Copyright
   * Use new 3.0 (quilt) source format
Checksums-Sha1: 
 190e10da7e1b607ae1454deb1768222f6a5a399e 2228 
libaudio-flac-header-perl_2.4-1.dsc
 7a036801b2557a196134064fe2b294a791286355 121068 
libaudio-flac-header-perl_2.4.orig.tar.gz
 e51c314d1a69a11592b8a2f14e314196b6347d8a 3678 
libaudio-flac-header-perl_2.4-1.debian.tar.gz
 cf2d83f7aea4b44394bbad2a3b66688de7cd4bfb 31570 
libaudio-flac-header-perl_2.4-1_i386.deb
Checksums-Sha256: 
 f59c7ff7f30d95e3b1dc35411f14b373332200a1453af0aef408f9a8a9e6a047 2228 
libaudio-flac-header-perl_2.4-1.dsc
 fba5911d6c22d81506565cd9a1438e8605420ff7986cf03d1a12d006a4070543 121068 
libaudio-flac-header-perl_2.4.orig.tar.gz
 b3fcc70846eae438acce62d5ef3ed602f9e09e9f6c884952b68581701d9c409d 3678 
libaudio-flac-header-perl_2.4-1.debian.tar.gz
 8c76c003e81211711d151aaa82fecf01d8b48aacb18413e6a47b79199beab453 31570 
libaudio-flac-header-perl_2.4-1_i386.deb
Files: 
 0691a1c4ac639cf98670f671957da10b 2228 perl optional 
libaudio-flac-header-perl_2.4-1.dsc
 743292694c050be1b10fb4a307f81e87 121068 perl optional 
libaudio-flac-header-perl_2.4.orig.tar.gz
 932ddc8cf9cf8175cb59a31b36ba6adc 3678 perl optional 
libaudio-flac-header-perl_2.4-1.debian.tar.gz
 5160ad619ad101a24974673a77a32ca3 31570 perl optional 
libaudio-flac-header-perl_2.4-1_i386.deb

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

iQIcBAEBCAAGBQJNHLe+AAoJELs6aAGGSaoG2PIQAMRzPCuHyIgJ/2xpqAfAs58P
uBVy/hTqH7v1QEyPeB0QGNLeteKDQhc3jBByk9ysyZ7SNAAGwZabFEJ5zVfZJ48w
fFXVeEI9gOMkfHhih2OZZeJl0XxiDHh1hkL4cjqeUvbdXTZKZ1zQbvE4ELX1KU//
JQ/EiQqomX1ZNvaNuRnUyiiIvQ0hZPYmArOtTbFoAKlW5EVmqSbnQwl5MpvASCBo
DPekiOIYg+OIeKXsaFTo/otT3jmbCRZI+mYJHZzAOlo9/KR7QK61DPTCKPooAgoc
xUVBBwpk4zsFK+owiZLhhk0doEOF83sdI4Zg3lqO4gjr8Boiby3x5ZrL8kt7ulPz
W0lTT0kOsQViNpLQzpgBf9W4Eepz4M3YqocTOcgfvWiTD5SA8N9wrRCRxgWHeA9k
oniztBcZzg8OTBn4ArxV4UyxojS4X62DZnjKz1rW02YJs5n9YELzwqtM1NuW26jH
mZtkAZNg8aJxlh5KkuBxASwOn2Y3OFKdIqOhWWsGgLnZ1Waxk7cBjsvNwA+6hPbX
M41p1gsfRHGT4wfaq6HAFu1PA6hOD9j2XCIsxyMzzP2ZJQ435y+lDQez2iuoma6w
XO+RUi9fysImapStjEkJ9tis29D7XFNZdfK74VRPOG387NOJvwtA+2CbRgewR9kS
KdPMSTCK4lWfZhGZYlfg
=YDch
-END PGP SIGNATURE-


Accepted:
libaudio-flac-header-perl_2.4-1.debian.tar.gz
  to 
main/liba/libaudio-flac-header-perl/libaudio-flac-header-perl_2.4-1.debian.tar.gz
libaudio-flac-header-perl_2.4-1.dsc
  to main/liba/libaudio-flac-header-perl/libaudio-flac-header-perl_2.4-1.dsc
libaudio-flac-header-perl_2.4-1_i386.deb
  to 
main/liba/libaudio-flac-header-perl/libaudio-flac-header-perl_2.4-1_i386.deb
libaudio-flac-header-perl_2.4.orig.tar.gz
  to 
main/liba/libaudio-flac-header-perl/libaudio-flac-header-perl_2.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyltr-0001w9...@franck.debian.org



Accepted liblingua-en-inflect-perl 1.893-1 (source all)

2010-12-30 Thread Jonathan Yu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 29 Dec 2010 20:28:27 -0500
Source: liblingua-en-inflect-perl
Binary: liblingua-en-inflect-perl
Architecture: source all
Version: 1.893-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jonathan Yu jaw...@cpan.org
Description: 
 liblingua-en-inflect-perl - Perl module to pluralize English words
Changes: 
 liblingua-en-inflect-perl (1.893-1) unstable; urgency=low
 .
   * New upstream release
   * Use new 3.0 (quilt) source format
   * Refresh quilt patch
   * Drop overrides; Build.pl is gone
   * Standards-Version 3.9.1 (no changes)
Checksums-Sha1: 
 f30ab632348b96e605001f63a5017fa14587c0c2 2100 
liblingua-en-inflect-perl_1.893-1.dsc
 f8835db05b381982d591808622343e2eb1147a24 45630 
liblingua-en-inflect-perl_1.893.orig.tar.gz
 bbea843a42fe35932a87b219490acad91448c732 2610 
liblingua-en-inflect-perl_1.893-1.debian.tar.gz
 dd91b3d01fa779eaf6907cc94d0418146e66f533 52140 
liblingua-en-inflect-perl_1.893-1_all.deb
Checksums-Sha256: 
 4f944609e81f08b1e461c545b16251b4547e8882fe4667b799416da83d76a2a2 2100 
liblingua-en-inflect-perl_1.893-1.dsc
 be765284f6ae7d2cca9f633c9867fdd0884f2b7b93b75ba7825a5b7c87eb12c8 45630 
liblingua-en-inflect-perl_1.893.orig.tar.gz
 1cae1f00aff4c9b4f3259c4e401160be9c624e75ab74cc62584d4561439b84ee 2610 
liblingua-en-inflect-perl_1.893-1.debian.tar.gz
 422b8532ba8ece238ac1df6012a80cfd670f10da3ac309a3bea38bb7e84eb884 52140 
liblingua-en-inflect-perl_1.893-1_all.deb
Files: 
 a7e162a50a75e0184056bf596d3480cc 2100 perl optional 
liblingua-en-inflect-perl_1.893-1.dsc
 5ce5088c808617851651eb6e278849bb 45630 perl optional 
liblingua-en-inflect-perl_1.893.orig.tar.gz
 b5310c6cf3f388dfbfa9cb5c21187aca 2610 perl optional 
liblingua-en-inflect-perl_1.893-1.debian.tar.gz
 9b3284906e10f1e526f1e131098060e9 52140 perl optional 
liblingua-en-inflect-perl_1.893-1_all.deb

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

iQIcBAEBCAAGBQJNHLkZAAoJELs6aAGGSaoGUJoP/3enZE/VXPdhvsKzEYBuW7cj
0AVWwo7flQ9cOFs6MV9XoeBx00+MClX8811ts8B12WezKDJjsg78pexsfEoaXs7l
wZWpKANiVJQgHOCW050vTIEZC9fb0n7XkPGWIMZBNTv20op2gwtPTCv8aAijBFmm
XD9Hm+6FXJ4/3KZrf0VmAc1LSJ0s8YnBLa70Fjzr1UOvfDgt4uPyi6ZZAHze0ei3
NTku35h+vOqGkl8RCpZJOzOzbxLZf4TYF2NsmIA6Uv+9m4UbWWEP+RN3XkoKB6wM
WRNBjqtVrPuLK9/RAvXC8zvhPaaj+Gj4leHIvIlzfV7bvb0YAmMf4SMFzFjGpSQl
0SuhxGqqjySP9yu1WANwRZPe/zZ/b3aP+48vQwCM+ilVtf4bfzRRy7+gaOQcdOr5
uKqKcyXfoAWhQHeynvPCEu6js5/i1CzswljrZFZeUU44GUwwWfw9Z5jcmkNjdf22
OmE+X6aAoJWpvtIjfJ3SBTSG2kynJe83U+nq/Fyb5tgXUSjES4c0YHpR4j0VqZvR
reAtyPM21Zm8uHV+TZfl94XJm2cFndVPomfdYrvoqLCQFjZt/zURl0zARvbtYtJw
PMGXZOYkGW+pmeGw2RfFp2m3PZdSNRWopaiHUORYcaeI+80XUCnOruy/AeHNF/o+
tX4XHUW25rSZYCYzD0n3
=XwgT
-END PGP SIGNATURE-


Accepted:
liblingua-en-inflect-perl_1.893-1.debian.tar.gz
  to 
main/libl/liblingua-en-inflect-perl/liblingua-en-inflect-perl_1.893-1.debian.tar.gz
liblingua-en-inflect-perl_1.893-1.dsc
  to main/libl/liblingua-en-inflect-perl/liblingua-en-inflect-perl_1.893-1.dsc
liblingua-en-inflect-perl_1.893-1_all.deb
  to 
main/libl/liblingua-en-inflect-perl/liblingua-en-inflect-perl_1.893-1_all.deb
liblingua-en-inflect-perl_1.893.orig.tar.gz
  to 
main/libl/liblingua-en-inflect-perl/liblingua-en-inflect-perl_1.893.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pylty-0001z8...@franck.debian.org



Accepted phpmyadmin 4:3.3.7-3 (source all)

2010-12-30 Thread Thijs Kinkhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Dec 2010 17:48:08 +0100
Source: phpmyadmin
Binary: phpmyadmin
Architecture: source all
Version: 4:3.3.7-3
Distribution: unstable
Urgency: high
Maintainer: Thijs Kinkhorst th...@debian.org
Changed-By: Thijs Kinkhorst th...@debian.org
Description: 
 phpmyadmin - MySQL web administration tool
Closes: 608290
Changes: 
 phpmyadmin (4:3.3.7-3) unstable; urgency=high
 .
   * Address two security issues (Closes: #608290):
   - It was possible to display arbitrary text and link to external site
 using parameters passed to particular script
 (CVE-2010-4480, PMASA-2010-9).
   - Phpinfo could be visible to not logged in users if this feature was
 enabled (minor issue; CVE-2010-4481, PMASA-2010-10).
Checksums-Sha1: 
 fb328acd589fde6e1cebccc9082bd23318fcadbe 1517 phpmyadmin_3.3.7-3.dsc
 fd42a4e669db8fedeab8bf47d8e2ab94c6e352c7 47501 phpmyadmin_3.3.7-3.debian.tar.gz
 c343ea2bb9b6b5170ffb9f04576077286481d737 4352748 phpmyadmin_3.3.7-3_all.deb
Checksums-Sha256: 
 e16434a5886ba312b5b137bb69e37a39f9bd1161c0d0337c23649b007468b868 1517 
phpmyadmin_3.3.7-3.dsc
 72fcd7eb7dc0cfe12da9e76688b0b34e664aa2ab68f5da8451d3e106d6cac8e8 47501 
phpmyadmin_3.3.7-3.debian.tar.gz
 20a966067cc632c3fda423e9232ef297b96664abc6f90cbde704ebe9d80bd136 4352748 
phpmyadmin_3.3.7-3_all.deb
Files: 
 a4d8b319f5748ead9f2824e3f1e778d5 1517 web extra phpmyadmin_3.3.7-3.dsc
 af6f312c16a0d449ed28a09247db615b 47501 web extra 
phpmyadmin_3.3.7-3.debian.tar.gz
 427b91b46b227c53065520835d170396 4352748 web extra phpmyadmin_3.3.7-3_all.deb

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

iQEcBAEBAgAGBQJNHLh8AAoJEOxfUAG2iX5727cIAL1dlCaD7b6M7BbNPiu3qlMq
tO45JmgiLFaifUGFaOTSkxpAN4P2KCbb+5uwIYlhgSBjJ4ztXs3y4NgYcOqePSnW
pb2nI6TBAXeIDFhjR5MbZN1W6qUfAZIpw/xBRjno8DYt/wxr/uMbaME7SIzKhKVb
pB07XfF/iKRWEc3XI9r59A6IbgaMAM8esR5AUo5V2MtucDumEp1o/E9sukk+3i2m
ACWprc9DNZhODH5tnya4+wUhh493+wuQWZQrBCcRN8j7Qz+lMBidgHctJ8OK9Xax
s1LxR4+GwwmQp7me8E4F5q+DI3qPk39W9tnUMeUZZLvTLTVjHLJBnbYkzvrGtIw=
=91s7
-END PGP SIGNATURE-


Accepted:
phpmyadmin_3.3.7-3.debian.tar.gz
  to main/p/phpmyadmin/phpmyadmin_3.3.7-3.debian.tar.gz
phpmyadmin_3.3.7-3.dsc
  to main/p/phpmyadmin/phpmyadmin_3.3.7-3.dsc
phpmyadmin_3.3.7-3_all.deb
  to main/p/phpmyadmin/phpmyadmin_3.3.7-3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyltn-0001dz...@franck.debian.org



Accepted openerp-web 5.0.6+dfsg-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 03 Oct 2009 09:37:46 +0200
Source: openerp-web
Binary: openerp-web
Architecture: source all
Version: 5.0.6+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Open Object Maintainers 
open-obj...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 openerp-web - Enterprise Resource Management (web frontend)
Closes: 513366
Changes: 
 openerp-web (5.0.6+dfsg-1) unstable; urgency=low
 .
   * Initial release (Closes: #513366):
 - thanks to Peter A. McGill petermcg...@goco.net for helping getting it
   ready.
   * Rebuilding upstream tarball:
 - removing embedded libjs-mochikit.
 - removing embedded libjs-mootools.
 - removing embedded python-feedparser.
 - removing embedded tinymce.
Checksums-Sha1: 
 ab9afaa2f8afad5afe11a144ae1a79c3674cbddf 1376 openerp-web_5.0.6+dfsg-1.dsc
 438eda12be63a97875b0c16119e72382058ef5db 860483 
openerp-web_5.0.6+dfsg.orig.tar.gz
 2a4ed98783c4623af0120554e9ab03f0478f3a99 14883 openerp-web_5.0.6+dfsg-1.diff.gz
 aeabdef24e8ed88f65dcd6a81f744b567ba42c3a 736844 
openerp-web_5.0.6+dfsg-1_all.deb
Checksums-Sha256: 
 20ebef77b6d9d881efb5e8dd4b408407edcd1877d7ac7bc50a7c007704744b60 1376 
openerp-web_5.0.6+dfsg-1.dsc
 f9ce31ff63cd62dc24102afc71a1adb96ec821e2fc6e8b5226e9dbb1c81a4174 860483 
openerp-web_5.0.6+dfsg.orig.tar.gz
 73b14e04998debd6689d13ecb094f281942c96ab3896c00fb779503cef13facf 14883 
openerp-web_5.0.6+dfsg-1.diff.gz
 df3684870ca56499e353f5f266e65afa652a5c3a73a9d1409a1b31a69cb23a51 736844 
openerp-web_5.0.6+dfsg-1_all.deb
Files: 
 e4fbb8519a9c0e729594e5768daa08d7 1376 non-free/web optional 
openerp-web_5.0.6+dfsg-1.dsc
 aebadbb57228bd8cc446e9f7fdb68114 860483 non-free/web optional 
openerp-web_5.0.6+dfsg.orig.tar.gz
 63b2590efb9db4c514176a15734a5335 14883 non-free/web optional 
openerp-web_5.0.6+dfsg-1.diff.gz
 7095154bfb0c222b34dab9218a16 736844 non-free/web optional 
openerp-web_5.0.6+dfsg-1_all.deb

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

iEYEARECAAYFAkrZbFkACgkQ+C5cwEsrK54rcACeL9kU/EjNGMt1Pb/WOIjyAzZJ
7I0AnizGEWlO5Z684VaFtKUgQLh7BCzp
=owR4
-END PGP SIGNATURE-


Accepted:
openerp-web_5.0.6+dfsg-1.diff.gz
  to non-free/o/openerp-web/openerp-web_5.0.6+dfsg-1.diff.gz
openerp-web_5.0.6+dfsg-1.dsc
  to non-free/o/openerp-web/openerp-web_5.0.6+dfsg-1.dsc
openerp-web_5.0.6+dfsg-1_all.deb
  to non-free/o/openerp-web/openerp-web_5.0.6+dfsg-1_all.deb
openerp-web_5.0.6+dfsg.orig.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.6+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymmb-0007zb...@franck.debian.org



Accepted openerp-web 5.0.7+dfsg-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 17 Apr 2010 14:21:03 +0200
Source: openerp-web
Binary: openerp-web
Architecture: source all
Version: 5.0.7+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Open Object Maintainers 
open-obj...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 openerp-web - Enterprise Resource Management (web frontend)
Changes: 
 openerp-web (5.0.7+dfsg-1) unstable; urgency=low
 .
   * Adding explicit debian source version 1.0 until switch to 3.0.
   * Updating year in copyright file.
   * Updating to standards 3.8.4.
   * Merging upstream version 5.0.7+dfsg.
   * Updating dfsg target in rules for upstream version 5.0.7+dfgs.
   * Updating copyright file for upstream version 5.0.7+dfsg.
   * Sorting dh call in rules to more common order.
   * Updating README.source.
   * Adding contact information in header of copyright file.
   * Updating date and version header in manpage.
   * Updating chmod calls in rules for upstream version 5.0.7+dfsg.
   * Updating python build-depends.
   * Removing extra license files from package.
   * Adding remote_fs dependency in init script lsb header.
Checksums-Sha1: 
 e2eaca66865100ebcee9f09fddeeca33d5df5dc6 1372 openerp-web_5.0.7+dfsg-1.dsc
 1eb9b9cadfbf9132a8ef22527caa6eac69595640 657019 
openerp-web_5.0.7+dfsg.orig.tar.gz
 2c463e044cdd32926d99bc8e38aa284d2f300bde 15588 openerp-web_5.0.7+dfsg-1.diff.gz
 0c4c353ef5c7c27cca484561a4ac420dbc8e2474 600346 
openerp-web_5.0.7+dfsg-1_all.deb
Checksums-Sha256: 
 1788a73e369147663b0ca2f9cda151da7250b2ff2bad89dfc1aa99928c0fb33f 1372 
openerp-web_5.0.7+dfsg-1.dsc
 0cedc4ee6845f7dd4a0845a1ab210a003e971277392cd33de5eb3c9a6f706ea3 657019 
openerp-web_5.0.7+dfsg.orig.tar.gz
 77217117b535e35311761f4b2b2b46da746a4ccff8868dae5d60af5e624ce92b 15588 
openerp-web_5.0.7+dfsg-1.diff.gz
 615d2541b8dbac9e883a75cfc80805b1300b424e4ce0f968e191d59342cf4a71 600346 
openerp-web_5.0.7+dfsg-1_all.deb
Files: 
 815bde18813c894da08e6bd97b9a67ea 1372 non-free/web optional 
openerp-web_5.0.7+dfsg-1.dsc
 169f9877fa9bcad9b19491ab8dfd07a7 657019 non-free/web optional 
openerp-web_5.0.7+dfsg.orig.tar.gz
 dbe3e6bf1238f599527e90cc2886a714 15588 non-free/web optional 
openerp-web_5.0.7+dfsg-1.diff.gz
 42a8eb912c20c64075ee3bc089984425 600346 non-free/web optional 
openerp-web_5.0.7+dfsg-1_all.deb

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

iEYEARECAAYFAkvJqAYACgkQ+C5cwEsrK56VwgCgjl91oJOquMsxvXIarylQSHpt
2lgAnRZcT+1ychQhoIa15BVUFP3x2t/7
=tZOg
-END PGP SIGNATURE-


Accepted:
openerp-web_5.0.7+dfsg-1.diff.gz
  to non-free/o/openerp-web/openerp-web_5.0.7+dfsg-1.diff.gz
openerp-web_5.0.7+dfsg-1.dsc
  to non-free/o/openerp-web/openerp-web_5.0.7+dfsg-1.dsc
openerp-web_5.0.7+dfsg-1_all.deb
  to non-free/o/openerp-web/openerp-web_5.0.7+dfsg-1_all.deb
openerp-web_5.0.7+dfsg.orig.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.7+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymmm-0007cq...@franck.debian.org



Accepted openerp-web 5.0.8+dfsg-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 24 Apr 2010 11:59:21 +0200
Source: openerp-web
Binary: openerp-web
Architecture: source all
Version: 5.0.8+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Open Object Maintainers 
open-obj...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 openerp-web - Enterprise Resource Management (web frontend)
Changes: 
 openerp-web (5.0.8+dfsg-1) unstable; urgency=low
 .
   * Merging upstream version 5.0.8+dfsg.
   * Removing leftovers from the buildsystem in clean target in rules.
Checksums-Sha1: 
 25d054f276857aa12ccdce62e4da70513aa87219 1366 openerp-web_5.0.8+dfsg-1.dsc
 f260114327aa302e27e6869b2ae8b68f4d30c47e 690063 
openerp-web_5.0.8+dfsg.orig.tar.gz
 1f5c5f414e73380dd50778351db6eac7cf105fa1 420 openerp-web_5.0.8+dfsg-1.diff.gz
 0df4adbd3ce5a1c77894c5ef86d9a71ae81be34d 609532 
openerp-web_5.0.8+dfsg-1_all.deb
Checksums-Sha256: 
 32abf6cbbfc1e7334b59c21ea4ed7a8904cff7af7de35ec2a1e67684791acc06 1366 
openerp-web_5.0.8+dfsg-1.dsc
 f4e01b5bbf53a424d0faef189eb9a91f281cb9eb35df778218db0badf74a469d 690063 
openerp-web_5.0.8+dfsg.orig.tar.gz
 4dfe331670af816523f2d34ea4f0312c2062752ccc9ae8e32ae697dba420c94a 420 
openerp-web_5.0.8+dfsg-1.diff.gz
 fd506dfb9482eae760ad8e2754b764b98125eb9e6c45f572bbf9cd54e9c76f3d 609532 
openerp-web_5.0.8+dfsg-1_all.deb
Files: 
 d95ec6958f7182409dd1956cf5b2f686 1366 non-free/web optional 
openerp-web_5.0.8+dfsg-1.dsc
 bedc04b41d94bc3cb38a84794dbed4af 690063 non-free/web optional 
openerp-web_5.0.8+dfsg.orig.tar.gz
 867c714e20453cf9d4fff65c2d972337 420 non-free/web optional 
openerp-web_5.0.8+dfsg-1.diff.gz
 de1b47ef0be8fad4fcfe89c734423574 609532 non-free/web optional 
openerp-web_5.0.8+dfsg-1_all.deb

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

iEYEARECAAYFAkvSwrAACgkQ+C5cwEsrK54qBgCePWzielOuCQ63sPcjoJc6qS8t
ST0AoLe6D0j+s+BzxRlw4wh5uEQ8vqLP
=FQKW
-END PGP SIGNATURE-


Accepted:
openerp-web_5.0.8+dfsg-1.diff.gz
  to non-free/o/openerp-web/openerp-web_5.0.8+dfsg-1.diff.gz
openerp-web_5.0.8+dfsg-1.dsc
  to non-free/o/openerp-web/openerp-web_5.0.8+dfsg-1.dsc
openerp-web_5.0.8+dfsg-1_all.deb
  to non-free/o/openerp-web/openerp-web_5.0.8+dfsg-1_all.deb
openerp-web_5.0.8+dfsg.orig.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.8+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymmw-0007jc...@franck.debian.org



Accepted openerp-web 5.0.9+dfsg-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 May 2010 05:30:29 +0200
Source: openerp-web
Binary: openerp-web
Architecture: source all
Version: 5.0.9+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Open Object Maintainers 
open-obj...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 openerp-web - Enterprise Resource Management (web frontend)
Changes: 
 openerp-web (5.0.9+dfsg-1) unstable; urgency=low
 .
   * Correcting typo in rules file.
   * Merging upstream version 5.0.9+dfsg.
   * Removing clean target override in rules, not required anymore.
Checksums-Sha1: 
 2a6b6a352f014ffc764c0eae9fcb3e4e7eb9f4ad 1372 openerp-web_5.0.9+dfsg-1.dsc
 d42bd9dd8de7b36f84775772900d07cbc0d8d352 676074 
openerp-web_5.0.9+dfsg.orig.tar.gz
 13025467dbec8f6be55c29113fb579321a37b73f 15703 openerp-web_5.0.9+dfsg-1.diff.gz
 13873ff8618c42b30c5f9863eb2469e4ffa8eed1 609598 
openerp-web_5.0.9+dfsg-1_all.deb
Checksums-Sha256: 
 e39c27b48b9613b51a833a8ab8ac0594d812e79a58ddd37b2a9f1ddde862bb95 1372 
openerp-web_5.0.9+dfsg-1.dsc
 6b83438b26fbf25a713e99900395ad886a8cb4139f9fed7b4f588a7cc1385c2b 676074 
openerp-web_5.0.9+dfsg.orig.tar.gz
 b7b98fd6a4591894c1fa724e4c02411496ad1da706c6ff4be2d681b936a6d78b 15703 
openerp-web_5.0.9+dfsg-1.diff.gz
 38ce064ea49d7351a2fc4b330f51114208837cb340a0e5227dff1e68b5704aa3 609598 
openerp-web_5.0.9+dfsg-1_all.deb
Files: 
 2b8bbf3262b09ac0a7db5e045ecd303a 1372 non-free/web optional 
openerp-web_5.0.9+dfsg-1.dsc
 3d41e07b8b600179a6ea907ff0cd67c6 676074 non-free/web optional 
openerp-web_5.0.9+dfsg.orig.tar.gz
 068ff293e5fa6e0538743f44a14800ee 15703 non-free/web optional 
openerp-web_5.0.9+dfsg-1.diff.gz
 588edf9ed769ee1006c7154cd434d009 609598 non-free/web optional 
openerp-web_5.0.9+dfsg-1_all.deb

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

iEYEARECAAYFAkvboLoACgkQ+C5cwEsrK57noQCgvk67JQnDLtGaFkHFwkSqQPm2
jIoAoNHU6uCb/P60qedKhsIjDfDLRD1S
=wTer
-END PGP SIGNATURE-


Accepted:
openerp-web_5.0.9+dfsg-1.diff.gz
  to non-free/o/openerp-web/openerp-web_5.0.9+dfsg-1.diff.gz
openerp-web_5.0.9+dfsg-1.dsc
  to non-free/o/openerp-web/openerp-web_5.0.9+dfsg-1.dsc
openerp-web_5.0.9+dfsg-1_all.deb
  to non-free/o/openerp-web/openerp-web_5.0.9+dfsg-1_all.deb
openerp-web_5.0.9+dfsg.orig.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.9+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymmh-0007mj...@franck.debian.org



Accepted openerp-web 5.0.10+dfsg-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 May 2010 21:46:54 +0200
Source: openerp-web
Binary: openerp-web
Architecture: source all
Version: 5.0.10+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Open Object Maintainers 
open-obj...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 openerp-web - Enterprise Resource Management (web frontend)
Changes: 
 openerp-web (5.0.10+dfsg-1) unstable; urgency=low
 .
   * Merging upstream version 5.0.10+dfsg.
Checksums-Sha1: 
 eb940ebbc2c2fd55592e5233370fa21ef1285e95 1379 openerp-web_5.0.10+dfsg-1.dsc
 ce4ee2c191c1434c6590fd3fe5173de764193410 765626 
openerp-web_5.0.10+dfsg.orig.tar.gz
 6a8feca11cf4be4756c62f2555da9b8d049f52fd 15730 
openerp-web_5.0.10+dfsg-1.diff.gz
 d8ea9665339fb36b866916529bf77ac905e78511 614854 
openerp-web_5.0.10+dfsg-1_all.deb
Checksums-Sha256: 
 4118e2df83d4fc7b1a80941247e047dec494231507057703008cba8624a64306 1379 
openerp-web_5.0.10+dfsg-1.dsc
 faf06f01e11e360a4e318f07efcbfcb2bf5b5af373af1c07102711c6d09e96c6 765626 
openerp-web_5.0.10+dfsg.orig.tar.gz
 31b1fb56e6f4cf2cb833374d84349f7ec81978e049ba4d2d190465e7b2b0d17d 15730 
openerp-web_5.0.10+dfsg-1.diff.gz
 a99f76439afd2c7cd2dae02303aa12dd6b51eda1e2cbd350c18e3975a11feb32 614854 
openerp-web_5.0.10+dfsg-1_all.deb
Files: 
 5de0bf09601559a01fe41477684f7d80 1379 non-free/web optional 
openerp-web_5.0.10+dfsg-1.dsc
 1efcfe1f34f5e1e26f9538ca606a01f8 765626 non-free/web optional 
openerp-web_5.0.10+dfsg.orig.tar.gz
 81f9f5d2548e713fbd6b7ad4656d96fa 15730 non-free/web optional 
openerp-web_5.0.10+dfsg-1.diff.gz
 cc0b710dd6cb8a59bf3fa8b55dbb0079 614854 non-free/web optional 
openerp-web_5.0.10+dfsg-1_all.deb

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

iEYEARECAAYFAkvkbrYACgkQ+C5cwEsrK56/YgCgtxJK5PS5SVomPOXMliYe1xVL
bnMAn3FHQa65zpEEtlcWHnFrk1+Wv5ZN
=pOJ2
-END PGP SIGNATURE-


Accepted:
openerp-web_5.0.10+dfsg-1.diff.gz
  to non-free/o/openerp-web/openerp-web_5.0.10+dfsg-1.diff.gz
openerp-web_5.0.10+dfsg-1.dsc
  to non-free/o/openerp-web/openerp-web_5.0.10+dfsg-1.dsc
openerp-web_5.0.10+dfsg-1_all.deb
  to non-free/o/openerp-web/openerp-web_5.0.10+dfsg-1_all.deb
openerp-web_5.0.10+dfsg.orig.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.10+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymmr-0007qj...@franck.debian.org



Accepted openerp-web 5.0.11+dfsg-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 08 Jun 2010 11:52:14 +0200
Source: openerp-web
Binary: openerp-web
Architecture: source all
Version: 5.0.11+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Open Object Maintainers 
open-obj...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 openerp-web - Enterprise Resource Management (web frontend)
Changes: 
 openerp-web (5.0.11+dfsg-1) unstable; urgency=low
 .
   * Merging upstream version 5.0.11+dfsg.
Checksums-Sha1: 
 1dd8e30c0eb5c444ee96922432129ed5a91f2c29 1379 openerp-web_5.0.11+dfsg-1.dsc
 fcbe1299d029d1314c9222e3886e2735e4271469 766124 
openerp-web_5.0.11+dfsg.orig.tar.gz
 3ec73539fb001c78f3d2b3a3a85c19709becd1a6 15758 
openerp-web_5.0.11+dfsg-1.diff.gz
 9766c74334525d18aeb847ad2f69d8c05b0f3266 615484 
openerp-web_5.0.11+dfsg-1_all.deb
Checksums-Sha256: 
 1b5ac42f50ba30ef20e8800fca014e76d8579d0d341195c77cad9a06f7667b4f 1379 
openerp-web_5.0.11+dfsg-1.dsc
 145539c18b5fa842df9d5917b82af52e81fcab1009c146815b96ef2401b1ca63 766124 
openerp-web_5.0.11+dfsg.orig.tar.gz
 72c564be6d08d674d9ffda3fd63ef10344638b83bf502e5c91c050629c7cdfc5 15758 
openerp-web_5.0.11+dfsg-1.diff.gz
 47b310e6856c73a5e69e45c0ef786b725f2073b1a2c597d26abda446a792b167 615484 
openerp-web_5.0.11+dfsg-1_all.deb
Files: 
 f939cc4e7caad632bd39a769f0717324 1379 non-free/web optional 
openerp-web_5.0.11+dfsg-1.dsc
 3c0f0c01d03cd0e9f211c80762b4c8f5 766124 non-free/web optional 
openerp-web_5.0.11+dfsg.orig.tar.gz
 c94c30957a2befd2358985e92372a8b7 15758 non-free/web optional 
openerp-web_5.0.11+dfsg-1.diff.gz
 56a82f9cb3b593caa2c9eaf6fc9682e2 615484 non-free/web optional 
openerp-web_5.0.11+dfsg-1_all.deb

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

iEYEARECAAYFAkwOExoACgkQ+C5cwEsrK56GZACfVs30oXAo3IgNsywc3d+0tEy3
1mQAn1dpO1N1tVA4ARR97ZNyrQDREbxB
=6GLJ
-END PGP SIGNATURE-


Accepted:
openerp-web_5.0.11+dfsg-1.diff.gz
  to non-free/o/openerp-web/openerp-web_5.0.11+dfsg-1.diff.gz
openerp-web_5.0.11+dfsg-1.dsc
  to non-free/o/openerp-web/openerp-web_5.0.11+dfsg-1.dsc
openerp-web_5.0.11+dfsg-1_all.deb
  to non-free/o/openerp-web/openerp-web_5.0.11+dfsg-1_all.deb
openerp-web_5.0.11+dfsg.orig.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.11+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymn0-0007uh...@franck.debian.org



Accepted openerp-web 5.0.12+dfsg-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 13 Sep 2010 09:21:22 +0200
Source: openerp-web
Binary: openerp-web
Architecture: source all
Version: 5.0.12+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Open Object Maintainers 
open-obj...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 openerp-web - Enterprise Resource Management (web frontend)
Changes: 
 openerp-web (5.0.12+dfsg-1) unstable; urgency=low
 .
   * Updating standards version to 3.9.0.
   * Merging upstream version 5.0.12+dfsg.
Checksums-Sha1: 
 09ad7b3db000d4f1cdded345f5572a1b566e9c42 1379 openerp-web_5.0.12+dfsg-1.dsc
 0d06c482f76822451b39bd4fb1dd1badde6a6bf4 765700 
openerp-web_5.0.12+dfsg.orig.tar.gz
 0f76b9ff162d1e2de42fad07052a0245add17daa 15907 
openerp-web_5.0.12+dfsg-1.diff.gz
 63a4ba0a0189668c0990e9d492559979ba327037 616286 
openerp-web_5.0.12+dfsg-1_all.deb
Checksums-Sha256: 
 5fc5e4a9fa38d370a433bd80d2983e063dfd5c60761a41a3e2746f27e143dd97 1379 
openerp-web_5.0.12+dfsg-1.dsc
 d8df9ec595cfcacdd19ac7f2ffa1728465770a4dc9a502458dcc9d606bdfca0d 765700 
openerp-web_5.0.12+dfsg.orig.tar.gz
 ff1f5683b2e6725ba9d2fadb11754f6bb2cedfeeabc967b95dca0103203d17cc 15907 
openerp-web_5.0.12+dfsg-1.diff.gz
 cbc188ed45e2742f002f9822488ba81d3026002efb9dddbe350c3ccf0849079e 616286 
openerp-web_5.0.12+dfsg-1_all.deb
Files: 
 192a607828cfc3321e6007070c6b639b 1379 non-free/web optional 
openerp-web_5.0.12+dfsg-1.dsc
 c403e7b300ce8c158b2b51159b9bf77f 765700 non-free/web optional 
openerp-web_5.0.12+dfsg.orig.tar.gz
 a92344072fdfe731089a503e70945301 15907 non-free/web optional 
openerp-web_5.0.12+dfsg-1.diff.gz
 7f93fc5ed43f6a1a37f2e90282b74398 616286 non-free/web optional 
openerp-web_5.0.12+dfsg-1_all.deb

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

iEYEARECAAYFAkyN0iMACgkQ+C5cwEsrK56fGACgpDWKQOK7vKZIisIiCxRysCFO
oB4AoKejduxPGgpbxqeahfSW3mdqrK72
=u8OF
-END PGP SIGNATURE-


Accepted:
openerp-web_5.0.12+dfsg-1.diff.gz
  to non-free/o/openerp-web/openerp-web_5.0.12+dfsg-1.diff.gz
openerp-web_5.0.12+dfsg-1.dsc
  to non-free/o/openerp-web/openerp-web_5.0.12+dfsg-1.dsc
openerp-web_5.0.12+dfsg-1_all.deb
  to non-free/o/openerp-web/openerp-web_5.0.12+dfsg-1_all.deb
openerp-web_5.0.12+dfsg.orig.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.12+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymn9-0007xo...@franck.debian.org



Accepted openerp-web 5.0.13+dfsg-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 13 Sep 2010 09:32:48 +0200
Source: openerp-web
Binary: openerp-web
Architecture: source all
Version: 5.0.13+dfsg-1
Distribution: experimental
Urgency: low
Maintainer: Debian Open Object Maintainers 
open-obj...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 openerp-web - Enterprise Resource Management (web frontend)
Changes: 
 openerp-web (5.0.13+dfsg-1) experimental; urgency=low
 .
   * Merging upstream version 5.0.13+dfsg.
   * Updating to standards version 3.9.1.
Checksums-Sha1: 
 bd07fb1e2920eef47143c04015663a7844dab785 1379 openerp-web_5.0.13+dfsg-1.dsc
 06d426453a9e8c6b9a356cf93a75034acf20d3ec 768472 
openerp-web_5.0.13+dfsg.orig.tar.gz
 88b0b2b6138285b4c048b39b7bd9d85f9e7bc7ac 15977 
openerp-web_5.0.13+dfsg-1.diff.gz
 31ecc1c8f0211603166cd1b7628a93fa1ff51b55 619466 
openerp-web_5.0.13+dfsg-1_all.deb
Checksums-Sha256: 
 369e27fb0bbbd50b8a8416782c7fc1f7387145a1f0bacee6ac4011d3c6dd8306 1379 
openerp-web_5.0.13+dfsg-1.dsc
 18b0f2f115ac50ed01b08102b7e73a87b20397a18e32c56764fc39743e8eaae5 768472 
openerp-web_5.0.13+dfsg.orig.tar.gz
 af4b938d589d64dcf36224760ca34ffbdbec499a51383b8d9b46bcc5aa57510a 15977 
openerp-web_5.0.13+dfsg-1.diff.gz
 5988a5a100e2349fe6f79f53aebb3159e9df4db75992644c71dd9e5642831c21 619466 
openerp-web_5.0.13+dfsg-1_all.deb
Files: 
 8c125fd80eb3e471654253bfe8bd96c5 1379 non-free/web optional 
openerp-web_5.0.13+dfsg-1.dsc
 35cc3ae1d85dbd600091cebb562364f3 768472 non-free/web optional 
openerp-web_5.0.13+dfsg.orig.tar.gz
 9d54ced5d65d44976f20f9b408fbb4dc 15977 non-free/web optional 
openerp-web_5.0.13+dfsg-1.diff.gz
 3f04d8c38eabfd5b5215b126e041a045 619466 non-free/web optional 
openerp-web_5.0.13+dfsg-1_all.deb

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

iEYEARECAAYFAkyN1FIACgkQ+C5cwEsrK56ecQCdFumQe2uMplcWu30og784sy8f
TOQAoIQCv/nuFiguXSZ9LHRvpSnTmebu
=6zw8
-END PGP SIGNATURE-


Accepted:
openerp-web_5.0.13+dfsg-1.diff.gz
  to non-free/o/openerp-web/openerp-web_5.0.13+dfsg-1.diff.gz
openerp-web_5.0.13+dfsg-1.dsc
  to non-free/o/openerp-web/openerp-web_5.0.13+dfsg-1.dsc
openerp-web_5.0.13+dfsg-1_all.deb
  to non-free/o/openerp-web/openerp-web_5.0.13+dfsg-1_all.deb
openerp-web_5.0.13+dfsg.orig.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.13+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymnj-00080h...@franck.debian.org



Accepted openerp-web 5.0.14+dfsg-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 15 Sep 2010 00:29:44 +0200
Source: openerp-web
Binary: openerp-web
Architecture: source all
Version: 5.0.14+dfsg-1
Distribution: experimental
Urgency: low
Maintainer: Debian Open Object Maintainers 
open-obj...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 openerp-web - Enterprise Resource Management (web frontend)
Changes: 
 openerp-web (5.0.14+dfsg-1) experimental; urgency=low
 .
   * Merging upstream version 5.0.14+dfsg.
Checksums-Sha1: 
 17e25526a884bbf6000f0a5fbc3b5cf5f2ca9449 1379 openerp-web_5.0.14+dfsg-1.dsc
 627a45ab5f300ea9639de71c0640f5e64b6fa0db 768486 
openerp-web_5.0.14+dfsg.orig.tar.gz
 d12d389755acc4998937045b12eb66e4eb42751d 15931 
openerp-web_5.0.14+dfsg-1.diff.gz
 d204296a86b6611b054f482b1107050da9ba 619606 
openerp-web_5.0.14+dfsg-1_all.deb
Checksums-Sha256: 
 48b524686c12b8af0a71c445e9eb95a67c902058cad1c82428fccf2765ecf94d 1379 
openerp-web_5.0.14+dfsg-1.dsc
 0de9b5375f3f4938605e53d9f8b8cb51e370d2410f36bf7d43fab42afa503cc5 768486 
openerp-web_5.0.14+dfsg.orig.tar.gz
 5f5ebb2fe7e66a43f3bdc0584c6756e0d13cf8a9047178df8ac092b6d2270860 15931 
openerp-web_5.0.14+dfsg-1.diff.gz
 02a324c5aa68c05f79e7a57f89d7329ace930bd4fe715f14c46891d0c3c69de2 619606 
openerp-web_5.0.14+dfsg-1_all.deb
Files: 
 3fb5cfb7d18f8eed526f3aec3929e6fd 1379 non-free/web optional 
openerp-web_5.0.14+dfsg-1.dsc
 3dc2041e4289e39b2980c34aa9d77381 768486 non-free/web optional 
openerp-web_5.0.14+dfsg.orig.tar.gz
 18423ae78b9f7b7a6e2f62263034386d 15931 non-free/web optional 
openerp-web_5.0.14+dfsg-1.diff.gz
 3895f7c9a98106de5b952bc8f85e5afd 619606 non-free/web optional 
openerp-web_5.0.14+dfsg-1_all.deb

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

iEYEARECAAYFAkyP9+MACgkQ+C5cwEsrK54RQgCdFdu3zYbGD87gd3OBvu3JOond
W8kAn0JD0RE4WBsQol+eqJP2nMpNNGeF
=IxTX
-END PGP SIGNATURE-


Accepted:
openerp-web_5.0.14+dfsg-1.diff.gz
  to non-free/o/openerp-web/openerp-web_5.0.14+dfsg-1.diff.gz
openerp-web_5.0.14+dfsg-1.dsc
  to non-free/o/openerp-web/openerp-web_5.0.14+dfsg-1.dsc
openerp-web_5.0.14+dfsg-1_all.deb
  to non-free/o/openerp-web/openerp-web_5.0.14+dfsg-1_all.deb
openerp-web_5.0.14+dfsg.orig.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.14+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymnt-00084b...@franck.debian.org



Accepted openerp-web 5.0.15+dfsg-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 21 Nov 2010 21:39:14 +0100
Source: openerp-web
Binary: openerp-web
Architecture: source all
Version: 5.0.15+dfsg-1
Distribution: experimental
Urgency: low
Maintainer: Debian Open Object Maintainers 
open-obj...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 openerp-web - Enterprise Resource Management (web frontend)
Changes: 
 openerp-web (5.0.15+dfsg-1) experimental; urgency=low
 .
   * Merging upstream version 5.0.15+dfsg.
   * Updating to debhelper version 8.
   * Switching to source format 3.0 (quilt).
Checksums-Sha1: 
 7fcfeddc67b394b0cc15b0f9dbf7c006e0c3a7f5 1380 openerp-web_5.0.15+dfsg-1.dsc
 fdc3511c83e984e0df15ada82ec91075d4c493f5 769545 
openerp-web_5.0.15+dfsg.orig.tar.gz
 0dc79a5f36ad43cd63253c90d9c5afa327676adc 16452 
openerp-web_5.0.15+dfsg-1.debian.tar.gz
 7cd497f60ebd1a5a37898cc8791e45ed0a017ee6 619542 
openerp-web_5.0.15+dfsg-1_all.deb
Checksums-Sha256: 
 f139105c1d4239d165eee510cf7ee17a0df5955f705173588ebcb2f01f6a0edc 1380 
openerp-web_5.0.15+dfsg-1.dsc
 046a4694957ca5e67dc0326a42a3cce7d2657f057e2ad9793cf5583db7ba36aa 769545 
openerp-web_5.0.15+dfsg.orig.tar.gz
 f71f8465e1291553b525de55897ef4b18b3bf0c0655fdf03cabce776af7009a4 16452 
openerp-web_5.0.15+dfsg-1.debian.tar.gz
 e9fc5773287160e22889b0ba3c3d1b19ef7ee80b41042142f98e321c33763567 619542 
openerp-web_5.0.15+dfsg-1_all.deb
Files: 
 dd44e79506d7f385fb97eb92fae5017e 1380 non-free/web optional 
openerp-web_5.0.15+dfsg-1.dsc
 ce9def9dec3bfeae5488ae9ac4974012 769545 non-free/web optional 
openerp-web_5.0.15+dfsg.orig.tar.gz
 2f4675dba6727173821c29e5c19b5d4b 16452 non-free/web optional 
openerp-web_5.0.15+dfsg-1.debian.tar.gz
 e6e47af6ed4807dbcec6f2f0f57c2262 619542 non-free/web optional 
openerp-web_5.0.15+dfsg-1_all.deb

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

iEYEARECAAYFAkzpihoACgkQ+C5cwEsrK57dZwCghZD4OCIosctSrWBBTHrzFeUP
sdoAn3agIaIPDrNw0qkvbHA6Cju+sOHu
=i9ze
-END PGP SIGNATURE-


Accepted:
openerp-web_5.0.15+dfsg-1.debian.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.15+dfsg-1.debian.tar.gz
openerp-web_5.0.15+dfsg-1.dsc
  to non-free/o/openerp-web/openerp-web_5.0.15+dfsg-1.dsc
openerp-web_5.0.15+dfsg-1_all.deb
  to non-free/o/openerp-web/openerp-web_5.0.15+dfsg-1_all.deb
openerp-web_5.0.15+dfsg.orig.tar.gz
  to non-free/o/openerp-web/openerp-web_5.0.15+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymne-00087t...@franck.debian.org



Accepted zutils 0.2-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 08 Aug 2009 10:53:00 +0200
Source: zutils
Binary: zutils
Architecture: source all
Version: 0.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.2-1) unstable; urgency=low
 .
   * Initial release.
Checksums-Sha1: 
 9ee7cf5f100c2c87b0c7d266c6ba5261d54a440f 1191 zutils_0.2-1.dsc
 5b79469cad9e075e7519a62007d6604d32b8f438 21378 zutils_0.2.orig.tar.gz
 4557b028ae5dc6717dad53c39979d93136628894 1262 zutils_0.2-1.diff.gz
 e67a76a5949e4820997fa97f9e81058867733f5a 9748 zutils_0.2-1_all.deb
Checksums-Sha256: 
 6b94dab7878d0d40228de20a7efa02b8627fb9cc719df20a92ad07a09c44fee8 1191 
zutils_0.2-1.dsc
 e43ef87f3afca3ecabdabea71b1bc0be30f7adf00bbc55bea66c7efcfbfe1cbc 21378 
zutils_0.2.orig.tar.gz
 f0325764aae510c3efb3eb05d2477c56bb50ded9e5627647a918be4d85dc675e 1262 
zutils_0.2-1.diff.gz
 31d9f3994bf67619fd8f8745f154584fb13347a6486aa8fee282f60991fee0d5 9748 
zutils_0.2-1_all.deb
Files: 
 e88abbff11855889cd8d197b57b135cd 1191 utils extra zutils_0.2-1.dsc
 2fcb9bcf2079ba6c36298a3c86998da3 21378 utils extra zutils_0.2.orig.tar.gz
 d5009c0ba73573d83acc2ef60330d34d 1262 utils extra zutils_0.2-1.diff.gz
 09c1c9fec66ceb05458bcbf630c6cdfd 9748 utils extra zutils_0.2-1_all.deb

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

iEYEARECAAYFAkqEulkACgkQ+C5cwEsrK57F7ACfVu7AHh5B66X6DXVTtXrhjHfk
QoYAninzYD1nC2mD4PTcv2XOuhIDqNqJ
=ecwV
-END PGP SIGNATURE-


Accepted:
zutils_0.2-1.diff.gz
  to main/z/zutils/zutils_0.2-1.diff.gz
zutils_0.2-1.dsc
  to main/z/zutils/zutils_0.2-1.dsc
zutils_0.2-1_all.deb
  to main/z/zutils/zutils_0.2-1_all.deb
zutils_0.2.orig.tar.gz
  to main/z/zutils/zutils_0.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymnl-0008ak...@franck.debian.org



Accepted zutils 0.3-1 (source all)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 20 Sep 2009 21:32:39 +0200
Source: zutils
Binary: zutils
Architecture: source all
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.3-1) unstable; urgency=low
 .
   * Updating package to standards version 3.8.3.
   * Adding maintainer homepage field to control.
   * Marking maintainer homepage field to be also included in binary
 packages and changelog.
   * Adding README.source.
   * Merging upstream version 0.3.
   * Moving maintainer homepage from control to copyright.
   * Updating homepage field in control.
   * Bumping version build-depends on debhelper.
   * Adding manual depends on newer dpkg because of install-info.
Checksums-Sha1: 
 5aa6ecae2f0e668611f49ef04317468b4c5e622b 1200 zutils_0.3-1.dsc
 c16fa4e37369b6207defc56507e885ed3324d52a 21407 zutils_0.3.orig.tar.gz
 c48f1a4dc46c1fb77ff31401cd34417d69c5c2a5 1985 zutils_0.3-1.diff.gz
 c08d83a7b3d95024176fbdae3a54d7c76e07c650 10004 zutils_0.3-1_all.deb
Checksums-Sha256: 
 9c8a1fec9c52fe429f1e14325bae32fe8ebaa4cb5109a6d0adf16715e8833017 1200 
zutils_0.3-1.dsc
 1daa75a692086bafc7bdb6edfb1ab69a842479b95b2fdf9e3f7b59986bb47443 21407 
zutils_0.3.orig.tar.gz
 d2278ba917ec9f59a8905cbf8d94d389c606a5475bb4fb1cebea662aacfac6dc 1985 
zutils_0.3-1.diff.gz
 4f96d5452b800c61e27ebe9cd65fe0a5f6cd44a5c89fbbd452ab2d452d9763d0 10004 
zutils_0.3-1_all.deb
Files: 
 d2cf1f88c21baabed3f966a1649d98c4 1200 utils extra zutils_0.3-1.dsc
 a15cd40e62a6e660e37f6cda8dcc5792 21407 utils extra zutils_0.3.orig.tar.gz
 20c1b355c89d7d7adab3c684eb573be3 1985 utils extra zutils_0.3-1.diff.gz
 1b8c8de6b4f2ba72fa1f45720c6f9366 10004 utils extra zutils_0.3-1_all.deb

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

iEYEARECAAYFAkq2g/cACgkQ+C5cwEsrK54kegCg4hPutUI0Huf6hW89KJIgf7ZU
SlcAniQr/1m/3f7Nkd7VWBRwTO/vulk9
=86iS
-END PGP SIGNATURE-


Accepted:
zutils_0.3-1.diff.gz
  to main/z/zutils/zutils_0.3-1.diff.gz
zutils_0.3-1.dsc
  to main/z/zutils/zutils_0.3-1.dsc
zutils_0.3-1_all.deb
  to main/z/zutils/zutils_0.3-1_all.deb
zutils_0.3.orig.tar.gz
  to main/z/zutils/zutils_0.3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymnt-0008dw...@franck.debian.org



Accepted zutils 0.4-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 02 Oct 2009 22:17:47 +0200
Source: zutils
Binary: zutils
Architecture: source i386
Version: 0.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.4-1) unstable; urgency=low
 .
   * Merging upstream version 0.4.
   * Removing manual make call in auto_install target, not required
 anymore.
   * Adding divertions for newly added zegrep and zfgrep.
   * Making package architecture dependent, upstream has rewritten
 helpers in C.
Checksums-Sha1: 
 b0b1cdf80c25930fa83d946b6d924b305d0e5335 1200 zutils_0.4-1.dsc
 e524727fd8d7b3056961ef036ba76ca69a6aac35 30576 zutils_0.4.orig.tar.gz
 71c0f23ddb7866df064ead544894b422e2173f57 2090 zutils_0.4-1.diff.gz
 26fe06696f9b4f2077854d70556c92b36c0545f5 22996 zutils_0.4-1_i386.deb
Checksums-Sha256: 
 11f81b760b8dc7baad4d91b0294d0021dcecbf17921ddb7c2961b0ad77a5e66d 1200 
zutils_0.4-1.dsc
 4399a2fbb974ec6193356c855605687c8bec4ecaf2d7027529f2a57769b15283 30576 
zutils_0.4.orig.tar.gz
 1ae6f2d3c9be441ff3612c089f9aaf25f151388df3b67f8740ab0504ef7b8121 2090 
zutils_0.4-1.diff.gz
 1a682abdfec83add32f11bd8fe893682bdd58b82a4e104a4a350e429aaf95514 22996 
zutils_0.4-1_i386.deb
Files: 
 3cb799ba79389331816d5ca9e7d4efb2 1200 utils extra zutils_0.4-1.dsc
 8822a96251285a92030b17fa60580a25 30576 utils extra zutils_0.4.orig.tar.gz
 a5853b8772e7d92bcafeff1fbd6eb7c2 2090 utils extra zutils_0.4-1.diff.gz
 63960f1ff7092aca04c247ba14a4c393 22996 utils extra zutils_0.4-1_i386.deb

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

iEYEARECAAYFAkrGYIcACgkQ+C5cwEsrK57lpwCeIojgORn8DN9hYvjS7D6vMCps
nVgAn2Qz2+OvHFjTSqbdnDNfKSnp2yo7
=hL08
-END PGP SIGNATURE-


Accepted:
zutils_0.4-1.diff.gz
  to main/z/zutils/zutils_0.4-1.diff.gz
zutils_0.4-1.dsc
  to main/z/zutils/zutils_0.4-1.dsc
zutils_0.4-1_i386.deb
  to main/z/zutils/zutils_0.4-1_i386.deb
zutils_0.4.orig.tar.gz
  to main/z/zutils/zutils_0.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymo0-0008gd...@franck.debian.org



Accepted zutils 0.5-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 03 Oct 2009 08:37:50 +0200
Source: zutils
Binary: zutils
Architecture: source i386
Version: 0.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.5-1) unstable; urgency=low
 .
   * Merging upstream version 0.5.
Checksums-Sha1: 
 f26e492ce32888a8211a2322e808a0110de4cc20 1200 zutils_0.5-1.dsc
 6d39dc162f9aa37326a836be49cedccb257ed52a 31125 zutils_0.5.orig.tar.gz
 a762f4970496cd06051b3ea82a3b17f6a0461ca6 2107 zutils_0.5-1.diff.gz
 03e86b6d8b83cca90e2a8756f776af96cda95100 23740 zutils_0.5-1_i386.deb
Checksums-Sha256: 
 121142ccb47b8b01480f22763698be74c7157233dedf8210ee12d268c52b488b 1200 
zutils_0.5-1.dsc
 2874302f221e248c1a2c6ef49386f5fd21653ec03c26648d3d1dc057fd5ef769 31125 
zutils_0.5.orig.tar.gz
 ef0e6f57112368989134f09e5a5c1910b17bbf5e5660f6aec0c3adcf8d0e3e4a 2107 
zutils_0.5-1.diff.gz
 d2a93ee47d9a332fdc100f733f57ababea47d64a3f89d595c4c96fbd32708eff 23740 
zutils_0.5-1_i386.deb
Files: 
 e8ec795820a68ecd6fe98cab81bec67e 1200 utils extra zutils_0.5-1.dsc
 afce7e8ee4b9f2c1cf458af52957f922 31125 utils extra zutils_0.5.orig.tar.gz
 04aedc7fdd36889f08fbf397fd971cb7 2107 utils extra zutils_0.5-1.diff.gz
 4116541307795296e061efa3ce2e2f38 23740 utils extra zutils_0.5-1_i386.deb

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

iEYEARECAAYFAkrG8WYACgkQ+C5cwEsrK56ycACeL6jDPNJr+mlJLm8HydZb99ye
4RkAoIoZjGxvMQMtOY98YzBKxbSgA9kq
=iPVB
-END PGP SIGNATURE-


Accepted:
zutils_0.5-1.diff.gz
  to main/z/zutils/zutils_0.5-1.diff.gz
zutils_0.5-1.dsc
  to main/z/zutils/zutils_0.5-1.dsc
zutils_0.5-1_i386.deb
  to main/z/zutils/zutils_0.5-1_i386.deb
zutils_0.5.orig.tar.gz
  to main/z/zutils/zutils_0.5.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymo9-0008js...@franck.debian.org



Accepted zutils 0.6-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 06 Oct 2009 20:20:20 +0200
Source: zutils
Binary: zutils
Architecture: source i386
Version: 0.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.6-1) unstable; urgency=low
 .
   * Merging upstream version 0.6.
Checksums-Sha1: 
 935715bf09612ebe23c178e3c3e9dffcb650454b 1200 zutils_0.6-1.dsc
 857c993aad3636a20b99deffba654bb533647d5a 31415 zutils_0.6.orig.tar.gz
 f0f721acf2942d2e33d99c91161ba335f5e57d00 2135 zutils_0.6-1.diff.gz
 73178d6ad1611803fce8dd934d3f69a167046042 24750 zutils_0.6-1_i386.deb
Checksums-Sha256: 
 3e293637a2e743f17be42fe48fbfc16b92494003a9b8dba73166bcd0510dd5e9 1200 
zutils_0.6-1.dsc
 2e5e609b22b02f62fbbb56a64949ce4aefb5c6e60369a72f68622bc688878f84 31415 
zutils_0.6.orig.tar.gz
 6b2d0e9452caf7dad17a99b93eed3eee4ca0758ae55eb01a63f51dd14f0eedc4 2135 
zutils_0.6-1.diff.gz
 b1521d9b046e64c5eaff5997da27fb4c9fca9918b414b0ddce624b865c0a88fb 24750 
zutils_0.6-1_i386.deb
Files: 
 9d0aeb3a9cf2cc207f11bc40f2a7ca0a 1200 utils extra zutils_0.6-1.dsc
 231f0c45078fad932c5736810a81b8ab 31415 utils extra zutils_0.6.orig.tar.gz
 5bb198c35d03990b4bc3fdc2c8f800bc 2135 utils extra zutils_0.6-1.diff.gz
 8b4f44e7545ec463262b39b954fc0e36 24750 utils extra zutils_0.6-1_i386.deb

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

iEYEARECAAYFAkrLi3IACgkQ+C5cwEsrK54PUwCfbJkLbijP96YLRChYRXeL4Myw
BkEAoKzGhpr0vO49RQKDUnqa+8Wv07eJ
=dMu2
-END PGP SIGNATURE-


Accepted:
zutils_0.6-1.diff.gz
  to main/z/zutils/zutils_0.6-1.diff.gz
zutils_0.6-1.dsc
  to main/z/zutils/zutils_0.6-1.dsc
zutils_0.6-1_i386.deb
  to main/z/zutils/zutils_0.6-1_i386.deb
zutils_0.6.orig.tar.gz
  to main/z/zutils/zutils_0.6.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymog-0008mu...@franck.debian.org



Accepted zutils 0.7-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 22 Oct 2009 21:39:27 +0200
Source: zutils
Binary: zutils
Architecture: source i386
Version: 0.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.7-1) unstable; urgency=low
 .
   * Merging upstream version 0.7.
Checksums-Sha1: 
 923f93a85d4ae883b1ef7284de4c08cc319c46ce 1200 zutils_0.7-1.dsc
 a43d38285fc903e3693f86b034ee9f8fa795543c 32684 zutils_0.7.orig.tar.gz
 a000fbaa1804fa90991da5226b37e96e98b79748 2154 zutils_0.7-1.diff.gz
 d791791919716e5725a368d78fbdb730325ae759 26448 zutils_0.7-1_i386.deb
Checksums-Sha256: 
 3631ad54798b3d403262ba82dccac4c7b350e417ee95f0b37ef91b1de7153e7a 1200 
zutils_0.7-1.dsc
 2b97d36febb68492850731cb6b927cac7c350f67aa812870aac05e85d2f7d5b0 32684 
zutils_0.7.orig.tar.gz
 467078738ffcd0f71c374cb48d643b3d82f63bd629717a0b172fac3ccc0a2214 2154 
zutils_0.7-1.diff.gz
 0af5ca9681fd749474c6f86e7c3b5087e966d1119e792c35da5decd226679b56 26448 
zutils_0.7-1_i386.deb
Files: 
 018a3e0a5a7bc2159d53f3e46aa49732 1200 utils extra zutils_0.7-1.dsc
 c9163bbaf3c6e84044b86b58fa9fe3ff 32684 utils extra zutils_0.7.orig.tar.gz
 9637a3d112e51df6701673a26e9f4c24 2154 utils extra zutils_0.7-1.diff.gz
 50ed7479d621317ebf9fa2e64dd98ebb 26448 utils extra zutils_0.7-1_i386.deb

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

iEYEARECAAYFAkrgtSwACgkQ+C5cwEsrK5648QCfXc+X4/9Vq93OEDzF/anlLhab
RBgAn1xBGBWK2dU7NZ8CHqSqvL3cuGAm
=oxXY
-END PGP SIGNATURE-


Accepted:
zutils_0.7-1.diff.gz
  to main/z/zutils/zutils_0.7-1.diff.gz
zutils_0.7-1.dsc
  to main/z/zutils/zutils_0.7-1.dsc
zutils_0.7-1_i386.deb
  to main/z/zutils/zutils_0.7-1_i386.deb
zutils_0.7.orig.tar.gz
  to main/z/zutils/zutils_0.7.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymoo-0008qn...@franck.debian.org



Accepted zutils 0.8~rc1-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 14 Mar 2010 12:44:08 +0100
Source: zutils
Binary: zutils
Architecture: source i386
Version: 0.8~rc1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.8~rc1-1) unstable; urgency=low
 .
   * Adding explicit debian source version 1.0 until switch to 3.0.
   * Updating year in copyright file.
   * Updating to standards 3.8.4.
   * Merging upstream version 0.8~rc1.
   * Updating README.source.
Checksums-Sha1: 
 c2636a6d580fc01a331eea4647049545f64f2297 1228 zutils_0.8~rc1-1.dsc
 07c2d70ed8dce20b5b803f596e52cb0dedbef95c 32684 zutils_0.8~rc1.orig.tar.gz
 37d836dc672286ae4dfc9ade1deb9f5345c9d1ba 2291 zutils_0.8~rc1-1.diff.gz
 44378d9f7840db569d4eed813590d4d3b85462ff 26172 zutils_0.8~rc1-1_i386.deb
Checksums-Sha256: 
 8c2d9f8a246167411cc806799d5e8d67bc0af5d0e6dac9cf1fae5e690a18a134 1228 
zutils_0.8~rc1-1.dsc
 c857cd1e3a541f1f9cde2a671eb5dbf8860bcca721160f7a33304f3df6412eaf 32684 
zutils_0.8~rc1.orig.tar.gz
 c9a5fd9b675e9eb63e033116e0fdb08514a3f04cc250b2171f547ee90f943220 2291 
zutils_0.8~rc1-1.diff.gz
 642a2b32d2e96ff88c937769c1b0523b7a4fccd3ff6c7496b9ec9924521fd079 26172 
zutils_0.8~rc1-1_i386.deb
Files: 
 d1b4e894c1ce4a4349603bfbe75c9398 1228 utils extra zutils_0.8~rc1-1.dsc
 23fb8b82827de3c2c24901ffa3e392e8 32684 utils extra zutils_0.8~rc1.orig.tar.gz
 56faef8a52277f22031dae92db1d6d4d 2291 utils extra zutils_0.8~rc1-1.diff.gz
 625d8028b504ebbd98da59c12cae35f0 26172 utils extra zutils_0.8~rc1-1_i386.deb

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

iEYEARECAAYFAkuczEwACgkQ+C5cwEsrK56u1ACdG2t5b815G2PqySoHknwZvNRC
gewAniDHY/X9Nq4QIyuE0u84q4mCf+X1
=glNs
-END PGP SIGNATURE-


Accepted:
zutils_0.8~rc1-1.diff.gz
  to main/z/zutils/zutils_0.8~rc1-1.diff.gz
zutils_0.8~rc1-1.dsc
  to main/z/zutils/zutils_0.8~rc1-1.dsc
zutils_0.8~rc1-1_i386.deb
  to main/z/zutils/zutils_0.8~rc1-1_i386.deb
zutils_0.8~rc1.orig.tar.gz
  to main/z/zutils/zutils_0.8~rc1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymox-0008th...@franck.debian.org



Accepted zutils 0.8-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 21 Nov 2010 22:34:48 +0100
Source: zutils
Binary: zutils
Architecture: source i386
Version: 0.8-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.8-1) unstable; urgency=low
 .
   * Updating standards version to 3.9.0.
   * Updating to standards version 3.9.1.
   * Updating to debhelper version 8.
   * Removing pre-squeeze depends to dpkg.
   * Switching to source format 3.0 (quilt).
   * Merging upstream version 0.8.
   * Adding options file for dpkg source.
Checksums-Sha1: 
 9ee8664ef812ff6f22d110364992dbdfebde313d 1220 zutils_0.8-1.dsc
 2c1f1c59d43879264766f366e2bd5f2ffdc4e45a 54860 zutils_0.8.orig.tar.gz
 f2e5177694f5f6d3086ad5042897065652d1f9e2 2679 zutils_0.8-1.debian.tar.gz
 30cb010c1fbe189af61cd106d0eaa7197ed58e3f 65640 zutils_0.8-1_i386.deb
Checksums-Sha256: 
 0fa7a99dd3150be071a18148abbe445dc9a68a1e6a4c9409a83424c176207193 1220 
zutils_0.8-1.dsc
 9266d6451e3090783270e3f07ee5a641afcae3ff4f665fe577ee5f01034462fa 54860 
zutils_0.8.orig.tar.gz
 34263781c9b9f2e570d3581c8ec0c826047b2600b6f3468740fa56be81de6c5e 2679 
zutils_0.8-1.debian.tar.gz
 94d927b26f56901257c8235a0a1a056cc463e4ba7bd3866516f50dfdbcb7e8af 65640 
zutils_0.8-1_i386.deb
Files: 
 d70ef799091017c1dd27edda095c0d7c 1220 utils extra zutils_0.8-1.dsc
 e7607d23b62ef3c4c74baed04a79ec6d 54860 utils extra zutils_0.8.orig.tar.gz
 f04cb54224e7e5b48c596fe6ad7804db 2679 utils extra zutils_0.8-1.debian.tar.gz
 2f140b0db9681e8a04613205fe1028e1 65640 utils extra zutils_0.8-1_i386.deb

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

iEYEARECAAYFAkzpkNkACgkQ+C5cwEsrK54NyQCeOeUh/RHN2Ma8i11a5gVdCA6X
StYAoLcOoOqSLg9gKW5cXGw/L2NS5A0e
=47LK
-END PGP SIGNATURE-


Accepted:
zutils_0.8-1.debian.tar.gz
  to main/z/zutils/zutils_0.8-1.debian.tar.gz
zutils_0.8-1.dsc
  to main/z/zutils/zutils_0.8-1.dsc
zutils_0.8-1_i386.deb
  to main/z/zutils/zutils_0.8-1_i386.deb
zutils_0.8.orig.tar.gz
  to main/z/zutils/zutils_0.8.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymog-5i...@franck.debian.org



Accepted zutils 0.9~rc1-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 26 Nov 2010 18:34:33 +0100
Source: zutils
Binary: zutils
Architecture: source i386
Version: 0.9~rc1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.9~rc1-1) unstable; urgency=low
 .
   * Merging upstream version 0.9~rc1.
Checksums-Sha1: 
 e12cc2aa459fb839b086c568969e83d0e0bddb0f 1248 zutils_0.9~rc1-1.dsc
 f1e02c9c56f15a7637b59fc93b362f0294952327 54923 zutils_0.9~rc1.orig.tar.gz
 f7726a6c774fb2608cbe6e7e44d4342c38dabd33 2679 zutils_0.9~rc1-1.debian.tar.gz
 5516b29bbeecfb6b37ce3b060581338dc6a2fc60 65438 zutils_0.9~rc1-1_i386.deb
Checksums-Sha256: 
 f8639aaf8dfb1617c755f0016a05b73fe16d7bd5dbbe39a52091e56261702a99 1248 
zutils_0.9~rc1-1.dsc
 fba63d1404d84e43c7e24b377296649953098af0c2da5ee0d2545263878ed06a 54923 
zutils_0.9~rc1.orig.tar.gz
 5e15e46e74d527d3dd694bc7c919b6df6da74622f529c240a328f2c34ef953a5 2679 
zutils_0.9~rc1-1.debian.tar.gz
 113b23bde1b3568051edfe6815466ccef11e0f28904bd3de44a494b9bc7cbdfc 65438 
zutils_0.9~rc1-1_i386.deb
Files: 
 0c9a78a0e08b622f1b12e6f37ea63dd9 1248 utils extra zutils_0.9~rc1-1.dsc
 8872ac4e5fe444241aa0b8051a40 54923 utils extra zutils_0.9~rc1.orig.tar.gz
 2effdc1bf1c1d76d4614bab5a0a63654 2679 utils extra 
zutils_0.9~rc1-1.debian.tar.gz
 761f2aea91a57b4526a177c929703055 65438 utils extra zutils_0.9~rc1-1_i386.deb

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

iEYEARECAAYFAkzv8CgACgkQ+C5cwEsrK54xxACfYhZgFgwlwtN4CwJ9ODqWCcCc
1BEAoLLD8jeLdxGDcCqnJdHFApDL9Pl/
=h/61
-END PGP SIGNATURE-


Accepted:
zutils_0.9~rc1-1.debian.tar.gz
  to main/z/zutils/zutils_0.9~rc1-1.debian.tar.gz
zutils_0.9~rc1-1.dsc
  to main/z/zutils/zutils_0.9~rc1-1.dsc
zutils_0.9~rc1-1_i386.deb
  to main/z/zutils/zutils_0.9~rc1-1_i386.deb
zutils_0.9~rc1.orig.tar.gz
  to main/z/zutils/zutils_0.9~rc1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymon-9p...@franck.debian.org



Accepted zutils 0.9~rc2-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 Dec 2010 19:35:45 +0100
Source: zutils
Binary: zutils
Architecture: source i386
Version: 0.9~rc2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.9~rc2-1) unstable; urgency=low
 .
   * Merging upstream version 0.9~rc2.
   * Switching to source format 3.0 (quilt).
   * Updating year in copyright file.
Checksums-Sha1: 
 d0df6c1c103c2f36347e9fbf89bbc9ca6ce587c9 1248 zutils_0.9~rc2-1.dsc
 bca03ef58c4acfcb82ff076f030fbc8361dc1587 66539 zutils_0.9~rc2.orig.tar.gz
 47969584b6c8fcabea3ea124bd58ed5b0460a0e2 2286 zutils_0.9~rc2-1.debian.tar.gz
 d133cb6e77321e6c127f8c20fea9f2b97c5b77bf 65690 zutils_0.9~rc2-1_i386.deb
Checksums-Sha256: 
 fa53c94ff0699e54a778212ce0345e55fc970d513dd0c6039112476eb63c1f19 1248 
zutils_0.9~rc2-1.dsc
 f7d8003df889ee18ac5bb1187483cad560db21a162004895a535cc526effe25f 66539 
zutils_0.9~rc2.orig.tar.gz
 8bd7a2e2f874d7d731e80a13fd81357bd50b7129f6bd8de77d49938facdbb096 2286 
zutils_0.9~rc2-1.debian.tar.gz
 f76d236e5e2b60988fb45522131e8e44add00aad62f1325e2a1da9f3330e20f1 65690 
zutils_0.9~rc2-1_i386.deb
Files: 
 b5831263fae429f4395f8fd4392cc737 1248 utils extra zutils_0.9~rc2-1.dsc
 b07f47be469db4086f9d4857261ca408 66539 utils extra zutils_0.9~rc2.orig.tar.gz
 a3e6a17acdde1a124e9a94888fd1d3e5 2286 utils extra 
zutils_0.9~rc2-1.debian.tar.gz
 a6b76f3dcbe150c3c430734c7e30d4c9 65690 utils extra zutils_0.9~rc2-1_i386.deb

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

iEYEARECAAYFAk0HuX8ACgkQ+C5cwEsrK554UQCgwhWNiNWmGHy0sulFeGW9QUVT
cqIAnR31D5pjZYWZ7afeGWmx2LtZUjkB
=OWoh
-END PGP SIGNATURE-


Accepted:
zutils_0.9~rc2-1.debian.tar.gz
  to main/z/zutils/zutils_0.9~rc2-1.debian.tar.gz
zutils_0.9~rc2-1.dsc
  to main/z/zutils/zutils_0.9~rc2-1.dsc
zutils_0.9~rc2-1_i386.deb
  to main/z/zutils/zutils_0.9~rc2-1_i386.deb
zutils_0.9~rc2.orig.tar.gz
  to main/z/zutils/zutils_0.9~rc2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymou-ct...@franck.debian.org



Accepted zutils 0.9~rc2-2 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 27 Dec 2010 06:12:58 +0100
Source: zutils
Binary: zutils
Architecture: source i386
Version: 0.9~rc2-2
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 zutils - utilities for dealing with compressed files transparently
Changes: 
 zutils (0.9~rc2-2) unstable; urgency=low
 .
   * Updating copyright file.
Checksums-Sha1: 
 aa7e8e105da7598976749b53385f957ea7a47cd3 1248 zutils_0.9~rc2-2.dsc
 1a48eca071d6d648a6d665b8c705c67fe31f156e 2492 zutils_0.9~rc2-2.debian.tar.gz
 c122b22146653a8c68163f7c491d7d382352b9ca 66136 zutils_0.9~rc2-2_i386.deb
Checksums-Sha256: 
 2a3076326cad90e69e89c97ffd8a74751cecd3fc0ff7d4f274515eb6f49f3ce0 1248 
zutils_0.9~rc2-2.dsc
 228513174ab7250313a0d574cb6d6610051eee949b3b6a8d5f100c6159082860 2492 
zutils_0.9~rc2-2.debian.tar.gz
 5c8f0359caac0c6ca421905bbdd897e5c1e0742bc59b11f153489728c6e2e37e 66136 
zutils_0.9~rc2-2_i386.deb
Files: 
 6e82362d23ce5b2fd2a19dbe6b16d63a 1248 utils extra zutils_0.9~rc2-2.dsc
 0e6cce1f1847b200922cfb2783aef4e6 2492 utils extra 
zutils_0.9~rc2-2.debian.tar.gz
 e6e870ab875d0c6d0abbffde555ded11 66136 utils extra zutils_0.9~rc2-2_i386.deb

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

iEYEARECAAYFAk0YIf0ACgkQ+C5cwEsrK56BUACfSSmpnIOfYbo7aiZ9yuL7q31I
44kAoMqAbfnqt2AR0GHxiXgPTsU2fGy8
=uGs5
-END PGP SIGNATURE-


Accepted:
zutils_0.9~rc2-2.debian.tar.gz
  to main/z/zutils/zutils_0.9~rc2-2.debian.tar.gz
zutils_0.9~rc2-2.dsc
  to main/z/zutils/zutils_0.9~rc2-2.dsc
zutils_0.9~rc2-2_i386.deb
  to main/z/zutils/zutils_0.9~rc2-2_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymp1-gv...@franck.debian.org



Accepted papyon 0.5.4-1 (source all)

2010-12-30 Thread Laurent Bigonville
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 30 Dec 2010 18:29:03 +0100
Source: papyon
Binary: python-papyon
Architecture: source all
Version: 0.5.4-1
Distribution: experimental
Urgency: low
Maintainer: Devid Antonio Filoni d.fil...@ubuntu.com
Changed-By: Laurent Bigonville bi...@debian.org
Description: 
 python-papyon - MSN client library written in Python
Changes: 
 papyon (0.5.4-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 bcb72196a71296b9180b3c78e013dddf2708961f 1746 papyon_0.5.4-1.dsc
 b95d760383781eeda5616145e9a4e970ee280d8f 194141 papyon_0.5.4.orig.tar.gz
 e9b849dfc5e2d4b210de9569f3ff8de0265948a0 3295 papyon_0.5.4-1.diff.gz
 6984b16a38848b498b5ace5ee8e0f7a50ae41a4b 198024 python-papyon_0.5.4-1_all.deb
Checksums-Sha256: 
 e5b4632a85398252d20dc2870aef9fed9fc92796a5f1537e277df7fa9322d9d4 1746 
papyon_0.5.4-1.dsc
 600ecb2480c4fca0efa7aa6df8665e75fdf7b7d38fa3ae23214436eb057e8ff3 194141 
papyon_0.5.4.orig.tar.gz
 922190066b45b1e5b6bc3e85ffc24be0d5a4a851b801037ac3f8d6db51cae3b4 3295 
papyon_0.5.4-1.diff.gz
 6661f1bc8913933efc0e77ba1cf883fcbd831cdaaed855dde9fb9e4da6abb9e7 198024 
python-papyon_0.5.4-1_all.deb
Files: 
 d3846c0ffec0298d1d046d52a29b6a79 1746 python optional papyon_0.5.4-1.dsc
 42005206dfdc01221da140e30687b0b9 194141 python optional 
papyon_0.5.4.orig.tar.gz
 4d68899b05f705bb2d4f6c0233567b1c 3295 python optional papyon_0.5.4-1.diff.gz
 02ce903b46dec5e8b1b2b3f38c81a96d 198024 python optional 
python-papyon_0.5.4-1_all.deb

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

iQEcBAEBCAAGBQJNHMHUAAoJEB/FiR66sEPVZU8H/1ZsQC7oUk+F4kK92tIn4unq
+0FHkGOcGwFEkcKpNvi/Jnm76q8sBQx5ulgThyw4nkto/a4zzregs73pYkf/y5l+
I6rwjrK1H2z0PqKlVYAIgy116uuKZLQQRU6ZU7LtPB2D9sIhaZHi4YcrpHbyzmM7
EI5zG64ulqYD/C2hyhNg3cPOPlBIrwLUCVRlcsTMgses4KsjvjkoimXNJklEw11U
g3vvumYa3BRk/JFN9XKCQaLX0JK6P1ltBZhqFpCyNfWLc+rxDkZxYD4VwFP2XUpP
aoroUc8j9gAFGOX/+x2lWOeaxY31GlTtTB6TfwnsXsFVo+jlYnWSLLlo8YFTc7I=
=3OWx
-END PGP SIGNATURE-


Accepted:
papyon_0.5.4-1.diff.gz
  to main/p/papyon/papyon_0.5.4-1.diff.gz
papyon_0.5.4-1.dsc
  to main/p/papyon/papyon_0.5.4-1.dsc
papyon_0.5.4.orig.tar.gz
  to main/p/papyon/papyon_0.5.4.orig.tar.gz
python-papyon_0.5.4-1_all.deb
  to main/p/papyon/python-papyon_0.5.4-1_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pymq0-yh...@franck.debian.org



Accepted plzip 0.1-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 06 Dec 2009 22:07:43 +0100
Source: plzip
Binary: plzip plzip-dbg
Architecture: source i386
Version: 0.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 plzip  - parallel data compressor based on the LZMA algorithm
 plzip-dbg  - parallel data compressor based on the LZMA algorithm (debug)
Changes: 
 plzip (0.1-1) unstable; urgency=low
 .
   * Initial release.
Checksums-Sha1: 
 6c0b227ac4b2ba7a2507ee527834bcbad94ffdcd 1208 plzip_0.1-1.dsc
 3c2b7d1f20ab9651c63222a0a1778fd1fd4a4f64 56027 plzip_0.1.orig.tar.gz
 9206f7893619e85de189e442beb92919c09b0e4b 1892 plzip_0.1-1.diff.gz
 ff89e23beb54b109a0825d5ab64baef3729d3fb9 29646 plzip_0.1-1_i386.deb
 9261f80eb9875356c41a33abe747d6f443548cfe 6940 plzip-dbg_0.1-1_i386.deb
Checksums-Sha256: 
 26be670f715f554c467eca563cfd019118dafeef16ddc57237fb7e0172b56f77 1208 
plzip_0.1-1.dsc
 ec069c4c36fb2695a6c171ab0498464a8f72bb15b2a377411cecd72cf805c7d5 56027 
plzip_0.1.orig.tar.gz
 f440a30a443d004ed29046bb3be0c8b6430ce83f764613917be2929cc0ac9f46 1892 
plzip_0.1-1.diff.gz
 121f858a93532706cf29586cc8ae60552217c587c7a914004910944ad432d53b 29646 
plzip_0.1-1_i386.deb
 060db14c36fffbce32142c2e625f6e4d99609a214f0d8e97737b0ceacca259e8 6940 
plzip-dbg_0.1-1_i386.deb
Files: 
 da2d34235ce78e2aac6e47c9b5468f9d 1208 utils optional plzip_0.1-1.dsc
 8e736e5d24ca40046a2c52a5b4bebb62 56027 utils optional plzip_0.1.orig.tar.gz
 f9d614388be4d7c2d60646e648aab27d 1892 utils optional plzip_0.1-1.diff.gz
 15f3a06dc8e78ef3c50b9e17f7ab3fb0 29646 utils optional plzip_0.1-1_i386.deb
 faf4cef11df1cdabbb8e84c1dec9b8a5 6940 debug extra plzip-dbg_0.1-1_i386.deb

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

iEYEARECAAYFAkscJrkACgkQ+C5cwEsrK56rLgCgqvSZz/bSAFZMGOr2DVymR8yC
GvkAnj1ygFXJtKD1VbYAKfU84KWLwQRO
=/HtK
-END PGP SIGNATURE-


Accepted:
plzip-dbg_0.1-1_i386.deb
  to main/p/plzip/plzip-dbg_0.1-1_i386.deb
plzip_0.1-1.diff.gz
  to main/p/plzip/plzip_0.1-1.diff.gz
plzip_0.1-1.dsc
  to main/p/plzip/plzip_0.1-1.dsc
plzip_0.1-1_i386.deb
  to main/p/plzip/plzip_0.1-1_i386.deb
plzip_0.1.orig.tar.gz
  to main/p/plzip/plzip_0.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pynzm-0003sf...@franck.debian.org



Accepted plzip 0.2-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 18 Jan 2010 21:53:57 +0100
Source: plzip
Binary: plzip plzip-dbg
Architecture: source i386
Version: 0.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 plzip  - parallel data compressor based on the LZMA algorithm
 plzip-dbg  - parallel data compressor based on the LZMA algorithm (debug)
Changes: 
 plzip (0.2-1) unstable; urgency=low
 .
   * Adding explicit debian source version 1.0 until switch to 3.0.
   * Updating year in copyright file.
   * Merging upstream version 0.2.
   * Updating year in copyright file.
   * Bumping build-depends on lzlib to 0.8.
Checksums-Sha1: 
 ef5ca0b8f1df75aee7ea7e3ac1036e9c7058dabb 1217 plzip_0.2-1.dsc
 48b261af19f7bcfed534c0ca54eef34c9a401f09 64079 plzip_0.2.orig.tar.gz
 25774ee6908d0485f70a99137fa478471cf293ee 2042 plzip_0.2-1.diff.gz
 2bc9e707fb0cf1f1162957482440ba8b1683d495 50182 plzip_0.2-1_i386.deb
 c7b37f0178226bc66a831bdedc8a7016b4fc4c4e 8192 plzip-dbg_0.2-1_i386.deb
Checksums-Sha256: 
 622164dd0f2d9ead7b3936c2b784e1222abe751fafdf871db185fc91757c7db4 1217 
plzip_0.2-1.dsc
 440e0aa79caf746852c51b2f7f6fbf1a6e8d5bfa0b35ab11463691d936e0 64079 
plzip_0.2.orig.tar.gz
 c6ca30ab8934ad32f0af9a574741a3203b1b98aec31fcfcb7d121744d5722ade 2042 
plzip_0.2-1.diff.gz
 64269410645255e16f2d30f29d61904cd4b4a3befb5e299e5ee4c14e9f2e5af1 50182 
plzip_0.2-1_i386.deb
 d424ddb5c96cf1e162ca069808d7b2b05cc8baef5755736e1ca0c5f51699d75d 8192 
plzip-dbg_0.2-1_i386.deb
Files: 
 525966009e59e08c7419804dff204035 1217 utils optional plzip_0.2-1.dsc
 5d5f0722b385c0f8e235b8e2996eb35f 64079 utils optional plzip_0.2.orig.tar.gz
 37bae73eced5d4ea8b0ed30af97941f3 2042 utils optional plzip_0.2-1.diff.gz
 47ee346be766ee90a458c479a65a9ae8 50182 utils optional plzip_0.2-1_i386.deb
 6d40abd94a28d0753109b1553cc6c990 8192 debug extra plzip-dbg_0.2-1_i386.deb

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

iEYEARECAAYFAktUyp4ACgkQ+C5cwEsrK57p4wCfe49UKzO+29P+6LRjBZv7b0Bj
1IcAn0rS7/mIflgmONnzIf77Q+mrIRrV
=0t5Q
-END PGP SIGNATURE-


Accepted:
plzip-dbg_0.2-1_i386.deb
  to main/p/plzip/plzip-dbg_0.2-1_i386.deb
plzip_0.2-1.diff.gz
  to main/p/plzip/plzip_0.2-1.diff.gz
plzip_0.2-1.dsc
  to main/p/plzip/plzip_0.2-1.dsc
plzip_0.2-1_i386.deb
  to main/p/plzip/plzip_0.2-1_i386.deb
plzip_0.2.orig.tar.gz
  to main/p/plzip/plzip_0.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pynzv-0003xt...@franck.debian.org



Accepted plzip 0.3-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 27 Jan 2010 05:44:30 +0100
Source: plzip
Binary: plzip plzip-dbg
Architecture: source i386
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 plzip  - parallel data compressor based on the LZMA algorithm
 plzip-dbg  - parallel data compressor based on the LZMA algorithm (debug)
Changes: 
 plzip (0.3-1) unstable; urgency=low
 .
   * Merging upstream version 0.3.
Checksums-Sha1: 
 a26649b1dcd879c71d44deac3fb855a3effb9b05 1217 plzip_0.3-1.dsc
 993aec1e9d1b6184f9c33df7b2f7ad2b04398ef0 61893 plzip_0.3.orig.tar.gz
 22b0747120598fab74d47716dfc3279abcd04a62 2065 plzip_0.3-1.diff.gz
 6093aa81e92e27d11b3e55eaeba588d612682531 49284 plzip_0.3-1_i386.deb
 34de0c4d3b9d0dcfb809935401de64b28ece9fa4 7958 plzip-dbg_0.3-1_i386.deb
Checksums-Sha256: 
 c0fae16548811328a73b5a6c09cefa0de83146bcd3bdb60fad95016a9b047ab9 1217 
plzip_0.3-1.dsc
 1eb922797e9dc29baa8b48fc6670b19bab4966061fb892de4ef76c6a67cc9c80 61893 
plzip_0.3.orig.tar.gz
 979dcb051d247562da9c9499b4c46c545fb13440ebd7b66ca30c49a413ea1ee6 2065 
plzip_0.3-1.diff.gz
 886a46ac8de33d52a4a051cba4449e00e476903b150ff5ebff020ab78029c168 49284 
plzip_0.3-1_i386.deb
 9778eed6b5bffb290050a4497f403d85a57f8601f35383f166a7a4e6e1366560 7958 
plzip-dbg_0.3-1_i386.deb
Files: 
 dab67767f9b719f6d02f39d39940b454 1217 utils optional plzip_0.3-1.dsc
 e36a943e8b0b33c5ac41dcf470e05260 61893 utils optional plzip_0.3.orig.tar.gz
 1904ea38dd19471a1470a7be23989a43 2065 utils optional plzip_0.3-1.diff.gz
 7b9eca252896c0e550297bbabe7b000f 49284 utils optional plzip_0.3-1_i386.deb
 a4d80b3e2d9911fd14e93f45e68d07ef 7958 debug extra plzip-dbg_0.3-1_i386.deb

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

iEYEARECAAYFAktfxPQACgkQ+C5cwEsrK54+iwCcDwuBTHvXqFQ2Sl3+ct22QkVO
rtQAnidAxrYHbo9zXlfUsQCOuSIfHsRJ
=HZYY
-END PGP SIGNATURE-


Accepted:
plzip-dbg_0.3-1_i386.deb
  to main/p/plzip/plzip-dbg_0.3-1_i386.deb
plzip_0.3-1.diff.gz
  to main/p/plzip/plzip_0.3-1.diff.gz
plzip_0.3-1.dsc
  to main/p/plzip/plzip_0.3-1.dsc
plzip_0.3-1_i386.deb
  to main/p/plzip/plzip_0.3-1_i386.deb
plzip_0.3.orig.tar.gz
  to main/p/plzip/plzip_0.3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo03-0003c6...@franck.debian.org



Accepted plzip 0.4-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 06 Feb 2010 09:30:13 +0100
Source: plzip
Binary: plzip plzip-dbg
Architecture: source i386
Version: 0.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 plzip  - parallel data compressor based on the LZMA algorithm
 plzip-dbg  - parallel data compressor based on the LZMA algorithm (debug)
Changes: 
 plzip (0.4-1) unstable; urgency=low
 .
   * Updating to standards 3.8.4.
   * Merging upstream version 0.4.
Checksums-Sha1: 
 59fdfd9d728bd09c873a75dc2cb832673c27daa2 1217 plzip_0.4-1.dsc
 19fc13ce2d163f1b7db7af114e6df67bedc09b07 61951 plzip_0.4.orig.tar.gz
 3d40dd3d572d512bf2dc2a89b1129544ba79ae00 2105 plzip_0.4-1.diff.gz
 918397adee8d9c28befe06461edcc1caaf29e932 50118 plzip_0.4-1_i386.deb
 917ea100746dda4668b700878b5593c414f0d3ff 8108 plzip-dbg_0.4-1_i386.deb
Checksums-Sha256: 
 d5d9a80dbeed917df5024393e259a6db1652c1b97abd729173f568791dceb043 1217 
plzip_0.4-1.dsc
 c9c3645ca76d67aa93a133fa6e1e88e5efee98065cf29ec9b5c752cd89db5d12 61951 
plzip_0.4.orig.tar.gz
 a074dab16d13ea50c58f2fea65cd9ff6003d9acfdbbe5b9150e3e3e68f2a7a5f 2105 
plzip_0.4-1.diff.gz
 f15b9877e5161c9f834b8ce61f1aa0de40ff3f715c98e1737dc8e019cf99b087 50118 
plzip_0.4-1_i386.deb
 50ef0905e478c11609c3d410fc8fb6dfa88fd044767f3e87c6b1d19182a1b490 8108 
plzip-dbg_0.4-1_i386.deb
Files: 
 0373552dae5e7d65cf7dda780ac0b948 1217 utils optional plzip_0.4-1.dsc
 00e08bedb803bbf1f2e7b52eea67279c 61951 utils optional plzip_0.4.orig.tar.gz
 9afaae4a26c44c8317269ae7db7a0cf8 2105 utils optional plzip_0.4-1.diff.gz
 b9a91e2034cc5337d2bfc346e2b87cfa 50118 utils optional plzip_0.4-1_i386.deb
 5959a90d68589098018b6af85b715d31 8108 debug extra plzip-dbg_0.4-1_i386.deb

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

iEYEARECAAYFAkttKPAACgkQ+C5cwEsrK55jzACfdm7oy8bqu0yxYM5dHcZALdfe
ZaEAoNLi+xoOgNSeNPctZVM+29qqKXzN
=VRhx
-END PGP SIGNATURE-


Accepted:
plzip-dbg_0.4-1_i386.deb
  to main/p/plzip/plzip-dbg_0.4-1_i386.deb
plzip_0.4-1.diff.gz
  to main/p/plzip/plzip_0.4-1.diff.gz
plzip_0.4-1.dsc
  to main/p/plzip/plzip_0.4-1.dsc
plzip_0.4-1_i386.deb
  to main/p/plzip/plzip_0.4-1_i386.deb
plzip_0.4.orig.tar.gz
  to main/p/plzip/plzip_0.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo0a-0003fq...@franck.debian.org



Accepted plzip 0.5-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 11 Feb 2010 16:54:22 +0100
Source: plzip
Binary: plzip plzip-dbg
Architecture: source i386
Version: 0.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 plzip  - parallel data compressor based on the LZMA algorithm
 plzip-dbg  - parallel data compressor based on the LZMA algorithm (debug)
Changes: 
 plzip (0.5-1) unstable; urgency=low
 .
   * Merging upstream version 0.5.
Checksums-Sha1: 
 9f9e1cea58f0a95943bd83a2b10173c6056ced91 1217 plzip_0.5-1.dsc
 bd048630c4ddbb0f516f617595dd71bd63038d7b 63241 plzip_0.5.orig.tar.gz
 75c99d510b05c44e04cbf5d34f7fee395b9f7d0c 2126 plzip_0.5-1.diff.gz
 d2f9172f4aad085d2c5d184cf88cab3993c3590b 54636 plzip_0.5-1_i386.deb
 d56cdba4f0add31eb456385c778dc00c1493bd80 8150 plzip-dbg_0.5-1_i386.deb
Checksums-Sha256: 
 aaff5321b318fa5b4033bc099dc49970aec1cbc4810567b13b9e5b69a4413de5 1217 
plzip_0.5-1.dsc
 f5971e975a2febd7bf448984a977b35ce1e3aceb9c2cfaee4369ceecb1eb8eca 63241 
plzip_0.5.orig.tar.gz
 d0a1a906420faadbbc808a9770b46a94671676a9a76556af801b972b552003be 2126 
plzip_0.5-1.diff.gz
 730e4bb53e510a3d24aca4f3e09557782f3e9b676b8e2ac639a40d61bdeff027 54636 
plzip_0.5-1_i386.deb
 76bd9f0dc61fccf335f086ba0d24a55cf910f4971d3b3b93f3d6bb77013ca7a9 8150 
plzip-dbg_0.5-1_i386.deb
Files: 
 b37f0ba45da92ba74cdc56993e32a6fb 1217 utils optional plzip_0.5-1.dsc
 f32bd13e94afc29c6d7f2ff770845cf1 63241 utils optional plzip_0.5.orig.tar.gz
 69f63cb862940d84e7ac57f68ac51e7b 2126 utils optional plzip_0.5-1.diff.gz
 7be34c9d42a53fb2f241eaed15dfab49 54636 utils optional plzip_0.5-1_i386.deb
 e9faea4ae1c3eff2e3f006992a625f54 8150 debug extra plzip-dbg_0.5-1_i386.deb

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

iEYEARECAAYFAkt0KIMACgkQ+C5cwEsrK54EEACdHUxsowl5vqCnt/qYVINogNeQ
7EUAoNQIZshRShLBB7d+CVlLP/x3EDda
=V2VD
-END PGP SIGNATURE-


Accepted:
plzip-dbg_0.5-1_i386.deb
  to main/p/plzip/plzip-dbg_0.5-1_i386.deb
plzip_0.5-1.diff.gz
  to main/p/plzip/plzip_0.5-1.diff.gz
plzip_0.5-1.dsc
  to main/p/plzip/plzip_0.5-1.dsc
plzip_0.5-1_i386.deb
  to main/p/plzip/plzip_0.5-1_i386.deb
plzip_0.5.orig.tar.gz
  to main/p/plzip/plzip_0.5.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo0i-0003jo...@franck.debian.org



Accepted plzip 0.6-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 27 Mar 2010 10:33:25 +0100
Source: plzip
Binary: plzip plzip-dbg
Architecture: source i386
Version: 0.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 plzip  - parallel data compressor based on the LZMA algorithm
 plzip-dbg  - parallel data compressor based on the LZMA algorithm (debug)
Changes: 
 plzip (0.6-1) unstable; urgency=low
 .
   * Merging upstream version 0.6.
Checksums-Sha1: 
 d2dff2a418222c3abaad3fe291899890877a1870 1217 plzip_0.6-1.dsc
 20bb3e08efe3381304e50a49d338e1177e6e8726 64535 plzip_0.6.orig.tar.gz
 5d9d0321f1772d1a3279328747a7ee12834f0b1f 2149 plzip_0.6-1.diff.gz
 933d60f98043b7151ee779675c032175cb999861 55092 plzip_0.6-1_i386.deb
 4fa12a8d1ff4a23afc705e766866e31475911865 8212 plzip-dbg_0.6-1_i386.deb
Checksums-Sha256: 
 3ed52c29a8ab11644337497a82b82f7bc82397311d1f85a4627a9e23a41bcb4f 1217 
plzip_0.6-1.dsc
 6ce0e98027399694d93dc46816d7ddd7593ab7c96b5ecf23b497fb46a7ef5aeb 64535 
plzip_0.6.orig.tar.gz
 786dbad35e9dcc46c7a664fa49cc1587d045269a459c29b3bafdedc66eff54ae 2149 
plzip_0.6-1.diff.gz
 5cb71fa11682f4c2954145eea1c760bdd5dfe290e67d677b8d30e349cbc53b54 55092 
plzip_0.6-1_i386.deb
 a3c55c6a157a4acccee50057f36947d0dd5612ccca37cde2ca4a09b3bd4e1bdd 8212 
plzip-dbg_0.6-1_i386.deb
Files: 
 26c5b8466ff20cb8e41f8264dc9c5d9e 1217 utils optional plzip_0.6-1.dsc
 f452029b1e8232cbe837f4437613e1ed 64535 utils optional plzip_0.6.orig.tar.gz
 dcb244fde3b5ba89f7c7041f948b602a 2149 utils optional plzip_0.6-1.diff.gz
 4e4b42961de63acab093bb4c8d300275 55092 utils optional plzip_0.6-1_i386.deb
 08579063144add08029c694412ba6213 8212 debug extra plzip-dbg_0.6-1_i386.deb

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

iEYEARECAAYFAkut0RIACgkQ+C5cwEsrK55LyACaAjE8048CDpgpI9YQ5rkSZj4Z
tZEAoIRzz2b5Hc4RA+9qAaoP5fTzfXlI
=8mF+
-END PGP SIGNATURE-


Accepted:
plzip-dbg_0.6-1_i386.deb
  to main/p/plzip/plzip-dbg_0.6-1_i386.deb
plzip_0.6-1.diff.gz
  to main/p/plzip/plzip_0.6-1.diff.gz
plzip_0.6-1.dsc
  to main/p/plzip/plzip_0.6-1.dsc
plzip_0.6-1_i386.deb
  to main/p/plzip/plzip_0.6-1_i386.deb
plzip_0.6.orig.tar.gz
  to main/p/plzip/plzip_0.6.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo0r-0003ni...@franck.debian.org



Accepted plzip 0.6-2 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 10 May 2010 18:22:29 +0200
Source: plzip
Binary: plzip plzip-dbg
Architecture: source i386
Version: 0.6-2
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 plzip  - parallel data compressor based on the LZMA algorithm
 plzip-dbg  - parallel data compressor based on the LZMA algorithm (debug)
Changes: 
 plzip (0.6-2) unstable; urgency=low
 .
   * Rebuilding against lzlib 1.0.
Checksums-Sha1: 
 d0bba1ecadc524f51170b47ec11bdc2351d4dff2 1217 plzip_0.6-2.dsc
 8e3bbde307c3c5baca458088e97612959b259df1 2184 plzip_0.6-2.diff.gz
 20649cc57fa88aa13d76868b6e75e3985831dc8e 34768 plzip_0.6-2_i386.deb
 1daa76c63f5279d0c26725341c542e730a84ac89 7150 plzip-dbg_0.6-2_i386.deb
Checksums-Sha256: 
 f6e0149f53782d814f8ec31b460c26bf039467b13a19bb26f8c1dc4af515aa17 1217 
plzip_0.6-2.dsc
 fe2c1d4e3a87cf9e83017abe8e1ccab27337fda286ca4c0655209fe4fc537676 2184 
plzip_0.6-2.diff.gz
 6d11fd523c1cf9f97c5f1b7e40b14509607e86c1d40e0666d911eb50d31ea132 34768 
plzip_0.6-2_i386.deb
 c6bffabd0e197b202af7daa9e6708c3f5f0428ded58bf3042f59c2f6d8e26e77 7150 
plzip-dbg_0.6-2_i386.deb
Files: 
 8bdebc8ad2e42c620f8a200509ec15ac 1217 utils optional plzip_0.6-2.dsc
 857fab5d6b5270e29673bf11c12302b4 2184 utils optional plzip_0.6-2.diff.gz
 354257d473b7ddb309fee33241e56016 34768 utils optional plzip_0.6-2_i386.deb
 f303e3b82de16030a6c05142d84883e8 7150 debug extra plzip-dbg_0.6-2_i386.deb

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

iEYEARECAAYFAkvoMxAACgkQ+C5cwEsrK55UcACgiv91NaYa8QsxpctEKI6cphJB
SO0An2AvKeE9IF5pdFtT2TwOna6+ewY4
=+sf1
-END PGP SIGNATURE-


Accepted:
plzip-dbg_0.6-2_i386.deb
  to main/p/plzip/plzip-dbg_0.6-2_i386.deb
plzip_0.6-2.diff.gz
  to main/p/plzip/plzip_0.6-2.diff.gz
plzip_0.6-2.dsc
  to main/p/plzip/plzip_0.6-2.dsc
plzip_0.6-2_i386.deb
  to main/p/plzip/plzip_0.6-2_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo0a-0003s0...@franck.debian.org



Accepted plzip 0.6-3 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 27 Dec 2010 06:49:21 +0100
Source: plzip
Binary: plzip plzip-dbg
Architecture: source i386
Version: 0.6-3
Distribution: unstable
Urgency: low
Maintainer: Debian Lzip Maintainers l...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 plzip  - parallel data compressor based on the LZMA algorithm
 plzip-dbg  - parallel data compressor based on the LZMA algorithm (debug)
Changes: 
 plzip (0.6-3) unstable; urgency=low
 .
   * Updating standards version to 3.9.0.
   * Updating to debhelper version 8.
   * Updating to standards version 3.9.1.
   * Switching to source format 3.0 (quilt).
   * Removing pre-squeeze depends to dpkg.
   * Updating copyright file.
   * Removing README.source and headers in copyright file.
   * Adding debhelper docs file.
   * Adding dpkg source option file.
Checksums-Sha1: 
 405f1ec403af6ea2f9f8cb7c72b7cf04ffac2fe2 1237 plzip_0.6-3.dsc
 4c156c023a93a069db57ee6347450b94f125dfcc 2377 plzip_0.6-3.debian.tar.gz
 1bdf8e3809479e70b3280071a23e31546f5a94d3 35870 plzip_0.6-3_i386.deb
 d55e79cc2ca4e89f3fa41f6fa564ef35f2076396 7468 plzip-dbg_0.6-3_i386.deb
Checksums-Sha256: 
 55e52230a93fd8f3ddcd8e0edc94f3ded90c5bc1fba7412d74f4d87751d55ba8 1237 
plzip_0.6-3.dsc
 4f54f4b2a47cbad814fdb623f65a1a9cffd0069c15f1fea9c25fe6e849aebf0f 2377 
plzip_0.6-3.debian.tar.gz
 07d36e76a68bc0924c1c5f21a7444d69f934a4f5ca9e11a8bf8b8b8d49648672 35870 
plzip_0.6-3_i386.deb
 4b1d160d40ae00f5e21eabfb9641de2a95e6ef64613ff3c38a4a2d0146e583b5 7468 
plzip-dbg_0.6-3_i386.deb
Files: 
 07e3281bc3c742fa432d4f19171a2ffa 1237 utils optional plzip_0.6-3.dsc
 efe9743d204412822efb2df7ac3324fa 2377 utils optional plzip_0.6-3.debian.tar.gz
 c86ab900d32ea893409402e5526ad2a4 35870 utils optional plzip_0.6-3_i386.deb
 16de0914dbcffedcacb01f1021eef8eb 7468 debug extra plzip-dbg_0.6-3_i386.deb

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

iEYEARECAAYFAk0YKYEACgkQ+C5cwEsrK55BUwCfaaVuNFBkRXvg7TIqI0AMiR8b
U4oAoKYjjsOZfeV3ooQvCeAISGvTZfDG
=07JC
-END PGP SIGNATURE-


Accepted:
plzip-dbg_0.6-3_i386.deb
  to main/p/plzip/plzip-dbg_0.6-3_i386.deb
plzip_0.6-3.debian.tar.gz
  to main/p/plzip/plzip_0.6-3.debian.tar.gz
plzip_0.6-3.dsc
  to main/p/plzip/plzip_0.6-3.dsc
plzip_0.6-3_i386.deb
  to main/p/plzip/plzip_0.6-3_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo0j-0003wz...@franck.debian.org



Accepted surf 0.1.2-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Sep 2009 10:21:11 +0200
Source: surf
Binary: surf
Architecture: source i386
Version: 0.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Suckless Maintainers suckl...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 surf   - simple web browser
Changes: 
 surf (0.1.2-1) unstable; urgency=low
 .
   * Initial release.
Checksums-Sha1: 
 8780287b8c0beb5d3dedd9576f11ea41ceaabe93 1224 surf_0.1.2-1.dsc
 96ac66b54cc0b0e28dd89147d8d1c1c3b135f679 8548 surf_0.1.2.orig.tar.gz
 ddff626f02d18aca09cab6e936817ac751bdd56a 1779 surf_0.1.2-1.diff.gz
 3230d285fc40cf05534d9b7aed3b9d7fe828ec5c 12436 surf_0.1.2-1_i386.deb
Checksums-Sha256: 
 e73843ba02d787e624fda75a9431bd557bf7c9f845bc9995e7064aabcc0dd6da 1224 
surf_0.1.2-1.dsc
 139564cf33b04849b9ae78022dff0fe5effdfe90f0197e59b4c3e732eca4e8fa 8548 
surf_0.1.2.orig.tar.gz
 ef81cb2b696ee204daa91be5c0514e76960f5fb33ee19200a3e7ef886057ddd0 1779 
surf_0.1.2-1.diff.gz
 d2164dcec7d60ef22e8cb4008437c0d3b7455b560b9afa80a3792de41306bc70 12436 
surf_0.1.2-1_i386.deb
Files: 
 53152642e27881b3acc1c09caf1b0731 1224 web optional surf_0.1.2-1.dsc
 3d6f936b3159aaa036e408f57f0a1f9d 8548 web optional surf_0.1.2.orig.tar.gz
 4fdfa5104a90395e926c8212b4aecc47 1779 web optional surf_0.1.2-1.diff.gz
 ecc1cd0bf2d5bb42ded17e135ec58b2d 12436 web optional surf_0.1.2-1_i386.deb

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

iEYEARECAAYFAkqszrMACgkQ+C5cwEsrK54chQCcDn9lR9VPEflrIGnORuFfV2lK
3SEAoK4jTrhWI9cS+Fc3h1BzTX8HBPJl
=jr6T
-END PGP SIGNATURE-


Accepted:
surf_0.1.2-1.diff.gz
  to main/s/surf/surf_0.1.2-1.diff.gz
surf_0.1.2-1.dsc
  to main/s/surf/surf_0.1.2-1.dsc
surf_0.1.2-1_i386.deb
  to main/s/surf/surf_0.1.2-1_i386.deb
surf_0.1.2.orig.tar.gz
  to main/s/surf/surf_0.1.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo0s-0003zs...@franck.debian.org



Accepted surf 0.2-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 18 Oct 2009 20:35:54 +0200
Source: surf
Binary: surf
Architecture: source i386
Version: 0.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Suckless Maintainers suckl...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 surf   - simple web browser
Changes: 
 surf (0.2-1) unstable; urgency=low
 .
   * Merging upstream version 0.2.
   * Sorting depends.
Checksums-Sha1: 
 e8e4e8a724d19804ffbcbb40c1fbad8111f5c309 1210 surf_0.2-1.dsc
 d213dfe218de399787cc433efd09ffa37c645993 9494 surf_0.2.orig.tar.gz
 5206464270ad659b363e62b62363dbac569c496a 1828 surf_0.2-1.diff.gz
 8b5c972e3370531f816d7f49de73c51385d9f95b 13558 surf_0.2-1_i386.deb
Checksums-Sha256: 
 add69fdfd1248fcc0e681fd5ec108fbbfc7967272f8f14ae7cc090ff7ba5a77a 1210 
surf_0.2-1.dsc
 2d0217631980f025a13e6282813335597a47166f12d40dae633fbb0e47f92822 9494 
surf_0.2.orig.tar.gz
 da2c3954403cc3a279fc209c081489fcc16f424542e635e21a11b69a7b3343da 1828 
surf_0.2-1.diff.gz
 b5e9255bdba45fe89b88591f5243a4a374d45a0fa38a6b8ce57f169eaf49d608 13558 
surf_0.2-1_i386.deb
Files: 
 715edda5afc2f74a7f7efc4280532d07 1210 web optional surf_0.2-1.dsc
 3f2572e28e91112b44a6f2a86f6ad97a 9494 web optional surf_0.2.orig.tar.gz
 e2feeb4497cd70aa60778de0ced0a91a 1828 web optional surf_0.2-1.diff.gz
 22fd8d6606df8925f9c4cdcd3cf7c094 13558 web optional surf_0.2-1_i386.deb

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

iEYEARECAAYFAkrbZIMACgkQ+C5cwEsrK55wFQCgq2KbD0tTa7BGNb9a1r9hxlc+
bl4An1AASLCyL60IQmgxpgMiz0FFsRik
=/iNG
-END PGP SIGNATURE-


Accepted:
surf_0.2-1.diff.gz
  to main/s/surf/surf_0.2-1.diff.gz
surf_0.2-1.dsc
  to main/s/surf/surf_0.2-1.dsc
surf_0.2-1_i386.deb
  to main/s/surf/surf_0.2-1_i386.deb
surf_0.2.orig.tar.gz
  to main/s/surf/surf_0.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo0z-000438...@franck.debian.org



Accepted surf 0.3-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 30 Oct 2009 17:14:47 +0100
Source: surf
Binary: surf
Architecture: source i386
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Suckless Maintainers suckl...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 surf   - simple web browser
Changes: 
 surf (0.3-1) unstable; urgency=low
 .
   * Merging upstream version 0.3.
Checksums-Sha1: 
 388a009b104ebecfdce7ecc78e222e5387f3ce1a 1210 surf_0.3-1.dsc
 c201a48e0b0e2de573b73e286ca4feda4f6df9a8 9838 surf_0.3.orig.tar.gz
 b24a216df587e9cb4971eb8f4211cabd7246e8aa 1862 surf_0.3-1.diff.gz
 37a5906718315eb188169ca8f7989ea8849e4e3b 13774 surf_0.3-1_i386.deb
Checksums-Sha256: 
 6e1cba88e419da2f88173748dd51717f4e8f542f334fd9ec82f8df6a644612bb 1210 
surf_0.3-1.dsc
 652a9ddb0a82a6350fabbc7c8d8a9f852b8c838263f892ac7695dfcdd5b31842 9838 
surf_0.3.orig.tar.gz
 ac13b4d2f520dbd87a90965fd2abb5a9db1656dc3a20b218e22ae68c36f81dfa 1862 
surf_0.3-1.diff.gz
 a41e786e2b63e955aba86f24a0d7c3eb70aae8da06bd10bb1bc808a567c9de77 13774 
surf_0.3-1_i386.deb
Files: 
 465393d1456491b9c00e1412a7d60f23 1210 web optional surf_0.3-1.dsc
 0b7bbe58f0ca140f1fb7aac09c4319d9 9838 web optional surf_0.3.orig.tar.gz
 1ecfab8be87ad8088443127a2ba72b23 1862 web optional surf_0.3-1.diff.gz
 c42777540d4f548cc90a504ee23088a4 13774 web optional surf_0.3-1_i386.deb

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

iEYEARECAAYFAkrrEX0ACgkQ+C5cwEsrK56umwCgyKBqEYA5a9Nir1mcjkAYsPO4
fMIAoM5Q+dXkzQVOvSvFYAoKLvEZo0WZ
=QoEP
-END PGP SIGNATURE-


Accepted:
surf_0.3-1.diff.gz
  to main/s/surf/surf_0.3-1.diff.gz
surf_0.3-1.dsc
  to main/s/surf/surf_0.3-1.dsc
surf_0.3-1_i386.deb
  to main/s/surf/surf_0.3-1_i386.deb
surf_0.3.orig.tar.gz
  to main/s/surf/surf_0.3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo16-00046k...@franck.debian.org



Accepted surf 0.4-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 01 Jun 2010 08:07:12 +0200
Source: surf
Binary: surf
Architecture: source i386
Version: 0.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Suckless Maintainers suckl...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 surf   - simple web browser
Changes: 
 surf (0.4-1) unstable; urgency=low
 .
   * Adding explicit debian source version 1.0 until switch to 3.0.
   * Updating year in copyright file.
   * Updating to standards 3.8.4.
   * Merging upstream version 0.4.
   * Updating year in copyright file.
Checksums-Sha1: 
 0c51e94125ea1e7d948485435a2fc78342489973 1213 surf_0.4-1.dsc
 9cbcbcf20f6fd396418cff757440f5970a0254ca 10089 surf_0.4.orig.tar.gz
 81243a82b51a9957c41d0ebecc4ffdff60a0fd82 1978 surf_0.4-1.diff.gz
 914c14528434a4387315a015ba10477aac822410 13614 surf_0.4-1_i386.deb
Checksums-Sha256: 
 0b579da9b9bf2f00038140d32ab35b4aa3578d1838c5c87271c11ca54e983e89 1213 
surf_0.4-1.dsc
 f45f8be98a47894a5d93656ee4a20266a1f9c9ba9dfbd3bed25df7f6ac4799c5 10089 
surf_0.4.orig.tar.gz
 13265c4edc58b5a24cb75967832d6481b67a5675bf33c9f38d2b920f3c057302 1978 
surf_0.4-1.diff.gz
 2c97a1f69382db916d41a92d8a1f992831b1b762fd1ffbc9f759011bb97ad333 13614 
surf_0.4-1_i386.deb
Files: 
 c8cf1a6aaf7e85c0474f6b97cda97221 1213 web optional surf_0.4-1.dsc
 1a7f1bf219f2da0b97c20802bcf498c7 10089 web optional surf_0.4.orig.tar.gz
 558dd61b3789601bbf8a724ebc8b3178 1978 web optional surf_0.4-1.diff.gz
 665e0c1ee88703daa5b004622efcc993 13614 web optional surf_0.4-1_i386.deb

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

iEYEARECAAYFAkwEpAAACgkQ+C5cwEsrK54ofQCgvKyA+0oZ6h+nlep1wIojqGlg
6n0An1wmfxCse1SBcmvUSuPSbqSIycsu
=N3Eu
-END PGP SIGNATURE-


Accepted:
surf_0.4-1.diff.gz
  to main/s/surf/surf_0.4-1.diff.gz
surf_0.4-1.dsc
  to main/s/surf/surf_0.4-1.dsc
surf_0.4-1_i386.deb
  to main/s/surf/surf_0.4-1_i386.deb
surf_0.4.orig.tar.gz
  to main/s/surf/surf_0.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo1f-00049x...@franck.debian.org



Accepted surf 0.4.1-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jun 2010 17:24:00 +0200
Source: surf
Binary: surf
Architecture: source i386
Version: 0.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Suckless Maintainers suckl...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 surf   - simple web browser
Changes: 
 surf (0.4.1-1) unstable; urgency=low
 .
   * Merging upstream version 0.4.1.
Checksums-Sha1: 
 922fb458815b685fac3ac91a793f973f996d4fb6 1227 surf_0.4.1-1.dsc
 2f6aa19c48ab661dcafd38ff73d450c9dc46a599 10102 surf_0.4.1.orig.tar.gz
 a5a49b0cd4b6d2f644f8d7d7cf7f0ede703f3e2f 2002 surf_0.4.1-1.diff.gz
 8e8b481962519ffc822dac6700c5d4fd054f77d0 13740 surf_0.4.1-1_i386.deb
Checksums-Sha256: 
 e6c31800f91190ae4f55ee699027921141ba004e8d469b44ad537437180537de 1227 
surf_0.4.1-1.dsc
 93709ba3e84baf2118676e96a5b2e5d4176f28c35c782fffd80a65c0a5bea546 10102 
surf_0.4.1.orig.tar.gz
 60521d13a906cc81172f1bb5413438f161d2140e4ebe34489b858b77091b30db 2002 
surf_0.4.1-1.diff.gz
 87970fb2ae027e6b25e4ac5db196b3a66f4ee823637abd6949e8c13a3e641d96 13740 
surf_0.4.1-1_i386.deb
Files: 
 7ac7b0ba0390bcf025ef1dc54d718899 1227 web optional surf_0.4.1-1.dsc
 28ac7a6d193d25844aa6b1db77fcbafa 10102 web optional surf_0.4.1.orig.tar.gz
 581aef7ae017c453ef2403a705436d7c 2002 web optional surf_0.4.1-1.diff.gz
 832fe84a22bf9e43e975629f59381ee7 13740 web optional surf_0.4.1-1_i386.deb

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

iEYEARECAAYFAkwRBCIACgkQ+C5cwEsrK54R/ACcDkZGYmsnzLY7SDCCALTLSo0G
sT8AoM4h0sW7NN5aSY9jYD8P3sGcYh+F
=7tmj
-END PGP SIGNATURE-


Accepted:
surf_0.4.1-1.diff.gz
  to main/s/surf/surf_0.4.1-1.diff.gz
surf_0.4.1-1.dsc
  to main/s/surf/surf_0.4.1-1.dsc
surf_0.4.1-1_i386.deb
  to main/s/surf/surf_0.4.1-1_i386.deb
surf_0.4.1.orig.tar.gz
  to main/s/surf/surf_0.4.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo1n-0004d1...@franck.debian.org



Accepted surf 0.4.1-2 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 29 Nov 2010 21:19:05 +0100
Source: surf
Binary: surf
Architecture: source i386
Version: 0.4.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Suckless Maintainers suckl...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 surf   - simple web browser
Changes: 
 surf (0.4.1-2) unstable; urgency=low
 .
   * Updating standards version to 3.9.0.
   * Switching to source format 3.0 (quilt).
   * Updating to debhelper version 8.
   * Updating to standards version 3.9.1.
Checksums-Sha1: 
 c0e2365aa2446ada5e784559af7a5bf9ddf1f4c4 1247 surf_0.4.1-2.dsc
 3a9c212b156d0e77b2065ff4f8f586866e4dc4eb 2414 surf_0.4.1-2.debian.tar.gz
 fe4f35706d89110b88e11ba4ee533c88a4af8862 13734 surf_0.4.1-2_i386.deb
Checksums-Sha256: 
 84a171c7e5433a6c318016a7e62bf3b6d8b403f80fd7ca998d2ac1392badee60 1247 
surf_0.4.1-2.dsc
 f39bd78787c2fc55d3cb5f47c5bcb642d18f2d1c47b58cd07ef271892f6e4987 2414 
surf_0.4.1-2.debian.tar.gz
 dfeb21627e65d2a8c976180a89841f8bce9074a57934220d4d54da7d3a72ffa1 13734 
surf_0.4.1-2_i386.deb
Files: 
 e8ca167e362f58c8ddf40aa47086bbd3 1247 web optional surf_0.4.1-2.dsc
 4c5b1d8f86f5655970573d5310ae496b 2414 web optional surf_0.4.1-2.debian.tar.gz
 3a0554b9adbd9fb73503462867982be5 13734 web optional surf_0.4.1-2_i386.deb

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

iEYEARECAAYFAkz0DAcACgkQ+C5cwEsrK57m3ACfVvcrlnNHNPdAkQ2l8/lehmDL
50AAoLxCOiMIxCI1PCmS17CgVMT0exjo
=lemY
-END PGP SIGNATURE-


Accepted:
surf_0.4.1-2.debian.tar.gz
  to main/s/surf/surf_0.4.1-2.debian.tar.gz
surf_0.4.1-2.dsc
  to main/s/surf/surf_0.4.1-2.dsc
surf_0.4.1-2_i386.deb
  to main/s/surf/surf_0.4.1-2_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo1v-0004gc...@franck.debian.org



Accepted surf 0.4.1-3 (source i386)

2010-12-30 Thread Kai Hendry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 05 Dec 2010 14:38:31 +
Source: surf
Binary: surf
Architecture: source i386
Version: 0.4.1-3
Distribution: unstable
Urgency: low
Maintainer: Kai Hendry hen...@iki.fi
Changed-By: Kai Hendry hen...@iki.fi
Description: 
 surf   - simple web browser
Changes: 
 surf (0.4.1-3) unstable; urgency=low
 .
   * New maintainer
Checksums-Sha1: 
 1e0abf71072e7d0cd4137148522ec26b02874b69 1096 surf_0.4.1-3.dsc
 e3d215b0f699416f8ca6fce6d98e1e6105cc6370 3610 surf_0.4.1-3.debian.tar.gz
 8e00280f6a6971cd2f4df153bcdbc474cd1ad3a1 13812 surf_0.4.1-3_i386.deb
Checksums-Sha256: 
 60cfdffd594829cb89c2acfb2dd01ac0164913fdcd6f3b42d6ba3ae26ac6ac66 1096 
surf_0.4.1-3.dsc
 939798fbcd37ca0a39cb6b04c61a132a8eb2d2ede4ba607fff3cf57bb42c3c1f 3610 
surf_0.4.1-3.debian.tar.gz
 df7d0c36804e8381b9afd01d6f359be248badbc4537b88084b62a599d8d5 13812 
surf_0.4.1-3_i386.deb
Files: 
 fa026ac073a19053c2efb0a51cf091ee 1096 web optional surf_0.4.1-3.dsc
 4ad717bf53a0b37f062608051b15ba8e 3610 web optional surf_0.4.1-3.debian.tar.gz
 5b4f84c6c9d59c96f71788d3e271e8cb 13812 web optional surf_0.4.1-3_i386.deb

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

iEYEARECAAYFAkz752YACgkQ+C5cwEsrK55KhACcCX2/UArgPDLUE3AjW+4pzRFR
Q6QAoNF6moEIq5NYnz5WVaEUNz9zimF2
=DCjK
-END PGP SIGNATURE-


Accepted:
surf_0.4.1-3.debian.tar.gz
  to main/s/surf/surf_0.4.1-3.debian.tar.gz
surf_0.4.1-3.dsc
  to main/s/surf/surf_0.4.1-3.dsc
surf_0.4.1-3_i386.deb
  to main/s/surf/surf_0.4.1-3_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyo1e-0004jf...@franck.debian.org



Accepted compcache-tools 0.6-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 23 Dec 2009 10:49:30 +0100
Source: compcache-tools
Binary: compcache-tools
Architecture: source i386
Version: 0.6-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 compcache-tools - create RAM based block devices to act as swap disks 
(utilities)
Closes: 495386
Changes: 
 compcache-tools (0.6-1) unstable; urgency=low
 .
   * Initial release (Closes: #495386).
Checksums-Sha1: 
 9b43ca50b37f6e5a4c298eae2514864ddf1ce74c 1256 compcache-tools_0.6-1.dsc
 4e9bada83a32654bcb18a8dc5830a13c43848547 33881 compcache-tools_0.6.orig.tar.gz
 41a0f4bfb191f08ce10f7fadffb5e14ceae75473 1955 compcache-tools_0.6-1.diff.gz
 dd3b1440342563e82c2d9a358e0b58b6d6d91c28 10620 compcache-tools_0.6-1_i386.deb
Checksums-Sha256: 
 b120da101059ecf1b96221acc9dd55ee653b57af04fadebdb50aacbc61d99220 1256 
compcache-tools_0.6-1.dsc
 e5f697be6c1b7bfb9ac9ba5b8d836ff20f880c161f998c482caba83caf443c0c 33881 
compcache-tools_0.6.orig.tar.gz
 034b5401948c596c371a745cde21bcc2db58d02a4acdad96a974c69a1aaecc7c 1955 
compcache-tools_0.6-1.diff.gz
 54f996dc5affa728d01c36b194dff93127af706b7b57f669404fe5f7f6367efb 10620 
compcache-tools_0.6-1_i386.deb
Files: 
 beefa025ba5a6b686e5a2a4143cdc306 1256 kernel optional compcache-tools_0.6-1.dsc
 0a574643c0eb857b946adcd5d5a22eb0 33881 kernel optional 
compcache-tools_0.6.orig.tar.gz
 d648c5a35106c1857ed0384cf519ceeb 1955 kernel optional 
compcache-tools_0.6-1.diff.gz
 796b41308cdaa2e3f574b939b14b0451 10620 kernel optional 
compcache-tools_0.6-1_i386.deb

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

iEYEARECAAYFAks3VtkACgkQ+C5cwEsrK56pRACeK43ZV24EL/dVKKS8s0R+EHAj
isoAoIxb+tMckkf12mtijga/p2AHiLy4
=TPDl
-END PGP SIGNATURE-


Accepted:
compcache-tools_0.6-1.diff.gz
  to main/c/compcache-tools/compcache-tools_0.6-1.diff.gz
compcache-tools_0.6-1.dsc
  to main/c/compcache-tools/compcache-tools_0.6-1.dsc
compcache-tools_0.6-1_i386.deb
  to main/c/compcache-tools/compcache-tools_0.6-1_i386.deb
compcache-tools_0.6.orig.tar.gz
  to main/c/compcache-tools/compcache-tools_0.6.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyosn-0001zr...@franck.debian.org



Accepted compcache-tools 0.6.2-1 (source i386)

2010-12-30 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Jan 2010 10:42:22 +0100
Source: compcache-tools
Binary: compcache-tools
Architecture: source i386
Version: 0.6.2-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 compcache-tools - create RAM based block devices to act as swap disks 
(utilities)
Changes: 
 compcache-tools (0.6.2-1) unstable; urgency=low
 .
   * Updating year in copyright file.
   * Updating to standards 3.8.4.
   * Merging upstream version 0.6.2.
   * Updating debhelper install file for new upstream.
   * Updating year in copyright file.
Checksums-Sha1: 
 3b507782eba10834f31fd298bc6c1402e928de39 1270 compcache-tools_0.6.2-1.dsc
 d2844aff60517c93477031df0705553f1ee7e743 26618 
compcache-tools_0.6.2.orig.tar.gz
 4f5587885ae73bd83f8364a1f079955c7a39a843 2030 compcache-tools_0.6.2-1.diff.gz
 4c306d4e15319d458b522fe70341726f352950d3 10248 compcache-tools_0.6.2-1_i386.deb
Checksums-Sha256: 
 182a3f5854f9466eece426d028800f79d897092740294443d148ab6932fc7778 1270 
compcache-tools_0.6.2-1.dsc
 969e39aa08c3c65fe104777156caef3e9c58fc87720d45801a6dce04745abac3 26618 
compcache-tools_0.6.2.orig.tar.gz
 9224ff428b1f8030dea8b26d3e9227367c79551c756c5bfc833dc918339e09ea 2030 
compcache-tools_0.6.2-1.diff.gz
 e41d41546531a57683203eb1656a707ee3a8645efb3e3a3eeec34d48aea673e8 10248 
compcache-tools_0.6.2-1_i386.deb
Files: 
 8f383b470efffc6b932fd2c82d986523 1270 kernel optional 
compcache-tools_0.6.2-1.dsc
 27aec78dc50e34fb800c74e879057743 26618 kernel optional 
compcache-tools_0.6.2.orig.tar.gz
 670a96d75f186ae6445a32633b2347e6 2030 kernel optional 
compcache-tools_0.6.2-1.diff.gz
 2d38a6bd92bcce670ce72a39cc9bb51a 10248 kernel optional 
compcache-tools_0.6.2-1_i386.deb

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

iEYEARECAAYFAktj/0AACgkQ+C5cwEsrK55j8wCeIJaPxBuUwLc/erG9AqOGh0oz
GqUAnAzzCwxSEx1uowC7otPkhAhuTDNR
=2eqS
-END PGP SIGNATURE-


Accepted:
compcache-tools_0.6.2-1.diff.gz
  to main/c/compcache-tools/compcache-tools_0.6.2-1.diff.gz
compcache-tools_0.6.2-1.dsc
  to main/c/compcache-tools/compcache-tools_0.6.2-1.dsc
compcache-tools_0.6.2-1_i386.deb
  to main/c/compcache-tools/compcache-tools_0.6.2-1_i386.deb
compcache-tools_0.6.2.orig.tar.gz
  to main/c/compcache-tools/compcache-tools_0.6.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pyosv-00022u...@franck.debian.org



  1   2   >