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

[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

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

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

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

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

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

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

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

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

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

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

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

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

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.

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

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

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

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

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.

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

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

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 :

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.

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

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

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

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

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.

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

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

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

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:

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

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

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

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/...

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

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

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

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

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

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

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

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

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

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

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:

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

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

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:

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:

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

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:

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

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

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)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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:

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:

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:

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:

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:

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:

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:

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:

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

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

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

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

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

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

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

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:

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:

  1   2   >