Re: Dependencies on shared libs, take 2

2007-06-07 Thread Raphael Hertzog
On Wed, 06 Jun 2007, Steve Langasek wrote: Can you expand? I don't see at all how libgl would benefit from this new approach. The current shlibs is already very lax and non-versioned. Yes, and that's the problem: I know the libgl shlibs to have been wrong in certain corner cases involving

Re: APT 0.7 for sid

2007-06-07 Thread Eduard Bloch
#include hallo.h * Russ Allbery [Wed, Jun 06 2007, 08:40:47PM]: Is this the same dependency resolver that tries to remove half your packages as a result of the most minor package removal? No, that's not done by the dependency resolver. That's done by the code that removes packages that

Re: APT 0.7 for sid

2007-06-07 Thread Stefano Zacchiroli
On Thu, Jun 07, 2007 at 12:59:38AM +0200, Michael Vogt wrote: The big new stuff is: - support for unattended installing security upgrades (via the unattended-upgrades package and the apt cronjob) This sounds juicy, assuming it matches what I've in mind; where can I find more info on this new

Re: APT 0.7 for sid

2007-06-07 Thread Raphael Hertzog
Hi, On Thu, 07 Jun 2007, Michael Vogt wrote: I plan to do an apt 0.7.2 upload for sid this weekend. It's a big merge of the version in debian/experimental and the version in Ubuntu. Big thanks and kudos for your work! - automatic removal of unused dependencies moved into libapt so that

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Josselin Mouette
Le jeudi 07 juin 2007 à 09:05 +0200, Raphael Hertzog a écrit : Yes, and that's the problem: I know the libgl shlibs to have been wrong in certain corner cases involving uncommon symbols (whether those are implementors adding their own extensions, or failing to implement the standard, or

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Steve Langasek
On Thu, Jun 07, 2007 at 09:05:23AM +0200, Raphael Hertzog wrote: On Wed, 06 Jun 2007, Steve Langasek wrote: Can you expand? I don't see at all how libgl would benefit from this new approach. The current shlibs is already very lax and non-versioned. Yes, and that's the problem: I know

Re: APT 0.7 for sid

2007-06-07 Thread Michael Vogt
On Wed, Jun 06, 2007 at 04:44:47PM -0700, Steve Langasek wrote: Hi Michael, Hi Steve, On Thu, Jun 07, 2007 at 12:59:38AM +0200, Michael Vogt wrote: I plan to do an apt 0.7.2 upload for sid this weekend. It's a big merge of the version in debian/experimental and the version in Ubuntu.

Re: APT 0.7 for sid

2007-06-07 Thread Michael Vogt
On Wed, Jun 06, 2007 at 09:49:00PM -0400, Joey Hess wrote: Michael Vogt wrote: - support for the new dpkg Breaks field (thanks to Ian Jackson for his work on this) Although dpkg still doesn't have Breaks support, so we still can't use it, AFAIK.. In this case apt will be ready for it

Re: Touching a file in another package

2007-06-07 Thread Andreas Barth
* Josselin Mouette ([EMAIL PROTECTED]) [070603 18:46]: Despite its ugliness, the only proposed solution that works so far is to touch the libgstgnomevfs.so file in libgnomevfs2-extra's postinst (and the same for other packages providing GnomeVFS methods), so that its timestamp changes. Why

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Andreas Barth
* Raphael Hertzog ([EMAIL PROTECTED]) [070606 14:03]: On Wed, 06 Jun 2007, Steve Langasek wrote: On Wed, Jun 06, 2007 at 09:15:02AM +0200, Raphael Hertzog wrote: Now, if we have people store symbols in shlibs file, it means that dh_installdeb would install the shlibs file with symbols.

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Mike Hommey
On Thu, Jun 07, 2007 at 05:39:56PM +0200, Andreas Barth [EMAIL PROTECTED] wrote: The real lib has precedence over the provided symbols file. - any new symbol is added and marked with mininal version being the current version of the package - a symbol that disappeared is marked as

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Andreas Barth
* Mike Hommey ([EMAIL PROTECTED]) [070607 17:49]: On Thu, Jun 07, 2007 at 05:39:56PM +0200, Andreas Barth [EMAIL PROTECTED] wrote: The real lib has precedence over the provided symbols file. - any new symbol is added and marked with mininal version being the current version of

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Julien Cristau
On Thu, Jun 7, 2007 at 17:56:46 +0200, Andreas Barth wrote: * Mike Hommey ([EMAIL PROTECTED]) [070607 17:49]: On Thu, Jun 07, 2007 at 05:39:56PM +0200, Andreas Barth [EMAIL PROTECTED] wrote: symbols MUST NEVER disappear! Reality is that it happens. Reality is that this build

Cleanup before install (Re: Purging of unneeded ... (cleaL10n))

2007-06-07 Thread Oleg Verych
It was good to have ability to make simple dpkg-deb wrapper [0] (for clean locales script). Moving further, it must be noted, that current way dpkg uses dpkg-deb isn't optimal for any kind of pre-cleanup, such as: - removing locales, mans; - striping scripts (comments: they're already in the

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Joey Hess
Raphael Hertzog wrote: For me the only significant advantage of this proposed format is that it offers the possibility to add additional automatic dependencies at the package level and not only at the symbol level. Joey, how would you integrate this new scheme if I decided to reuse the

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Bernhard R. Link
* Julien Cristau [EMAIL PROTECTED] [070607 18:04]: Reality is that this build must fail with a proper warning, so that the maintainer can decide if this is an excption and ok or whether he should cluebat upstream about a what soname means. Reality is that libs export private symbols (not

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Joey Hess
Raphael Hertzog wrote: I double-checked this and no, it's not the case. Extract from dpkg-shlibdeps: while (SLF) { s/\s*\n$//; next if m/^\#/; if (!m/^\s*(?:(\S+):\s+)?(\S+)\s+(\S+)/) { warn(sprintf(_g(shared libs info file \`%s' line %d: bad line \`%s'),

Re: APT 0.7 for sid

2007-06-07 Thread Russ Allbery
Eduard Bloch [EMAIL PROTECTED] writes: #include hallo.h * Russ Allbery [Wed, Jun 06 2007, 08:40:47PM]: No, that's not done by the dependency resolver. That's done by the code that removes packages that you never told it should be installed. This problem goes away completely if you only use

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Manoj Srivastava
On Thu, 7 Jun 2007 19:15:22 +0200, Bernhard R Link [EMAIL PROTECTED] said: * Julien Cristau [EMAIL PROTECTED] [070607 18:04]: Reality is that this build must fail with a proper warning, so that the maintainer can decide if this is an excption and ok or whether he should cluebat upstream

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Pierre Habouzit
On Thu, Jun 07, 2007 at 07:15:22PM +0200, Bernhard R. Link wrote: * Julien Cristau [EMAIL PROTECTED] [070607 18:04]: Reality is that this build must fail with a proper warning, so that the maintainer can decide if this is an excption and ok or whether he should cluebat upstream about a

Bug#427976: ITP: vodovod -- lead the water from the house to the storage tank

2007-06-07 Thread Miriam Ruiz
Package: wnpp Severity: wishlist Owner: Miriam Ruiz [EMAIL PROTECTED] * Package name: vodovod Version : 1.05 Upstream Author : Milan Babus¡kov [EMAIL PROTECTED] * URL : http://home.gna.org/vodovod/ * License : GPL Programming Lang: C++ Description :

Re: Bug#427976: ITP: vodovod -- lead the water from the house to the storage tank

2007-06-07 Thread Jonny Lamb
On Thu, 2007-06-07 at 21:06 +0200, Miriam Ruiz wrote: Description : lead the water from the house to the storage tank You get a limited number of pipes on each level and need to combine them to lead the water from the house at the top of the screen to the storage tan at the bottom.

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Raphael Hertzog
Hello, On Mon, 04 Jun 2007, Raphael Hertzog wrote: What comes next --- Up to now, I only tested those scripts on a few packages. What comes next is some archive-wide work: - I want to generate ready-to-use symbols file for all libraries initialized with packages from etch and

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Steve Langasek
On Thu, Jun 07, 2007 at 08:44:32PM +0200, Pierre Habouzit wrote: On Thu, Jun 07, 2007 at 07:15:22PM +0200, Bernhard R. Link wrote: * Julien Cristau [EMAIL PROTECTED] [070607 18:04]: Reality is that this build must fail with a proper warning, so that the maintainer can decide if this is

Re: Wanted: introductory page for all teams

2007-06-07 Thread Oleg Verych
* From: David Nusinow [EMAIL PROTECTED] * Date: Tue, 29 May 2007 20:15:08 -0400 On Tue, May 29, 2007 at 08:00:17PM +0200, Josip Rodin wrote: On Sat, May 26, 2007 at 07:53:30PM -0400, David Nusinow wrote: The only thing I've ever heard about helping out with the website is that it's a

Bug#428005: ITP: debtorrent -- the BitTorrent proxy for downloading Debian packages

2007-06-07 Thread Cameron Dale
Package: wnpp Severity: wishlist Owner: Cameron Dale [EMAIL PROTECTED] * Package name: debtorrent Version : 0.2.0 Upstream Author : Cameron Dale [EMAIL PROTECTED] * URL : http://debtorrent.alioth.debian.org/ * License : MIT Programming Lang: Python

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Henrique de Moraes Holschuh
On Thu, 07 Jun 2007, Steve Langasek wrote: It's been possible to avoid the export of symbols for years using version scripts, which most libraries also ought to be using anyway. Maybe on Solaris. On Linux? Who are you kidding? -- One disk to rule them all, One disk to find them. One disk to

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Steve Langasek
On Thu, Jun 07, 2007 at 06:03:49PM +0200, Julien Cristau wrote: On Thu, Jun 7, 2007 at 17:56:46 +0200, Andreas Barth wrote: * Mike Hommey ([EMAIL PROTECTED]) [070607 17:49]: On Thu, Jun 07, 2007 at 05:39:56PM +0200, Andreas Barth [EMAIL PROTECTED] wrote: symbols MUST NEVER

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Steve Langasek
On Thu, Jun 07, 2007 at 11:23:18PM -0300, Henrique de Moraes Holschuh wrote: On Thu, 07 Jun 2007, Steve Langasek wrote: It's been possible to avoid the export of symbols for years using version scripts, which most libraries also ought to be using anyway. Maybe on Solaris. On Linux? Who are

Re: Dependencies on shared libs, take 2

2007-06-07 Thread Mike Hommey
On Thu, Jun 07, 2007 at 10:28:35PM +0200, Raphael Hertzog [EMAIL PROTECTED] wrote: Otherwise, the discussions in this thread lead to several interesting points (listed in the TODO in the repository) which will require some rewrite and optimization of the format of the symbols file. I'll update

Accepted kdevelop 4:3.4.1-1 (source i386 all)

2007-06-07 Thread Jeremy Lainé
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Wed, 06 Jun 2007 09:59:46 +0200 Source: kdevelop Binary: kdevelop-doc kdevelop-data kdevelop kdevelop-dev Architecture: source i386 all Version: 4:3.4.1-1 Distribution: unstable Urgency: low Maintainer: Jeremy Lainé [EMAIL

Accepted twisted 2.5.0-2 (source all powerpc)

2007-06-07 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 07:14:49 +0200 Source: twisted Binary: python-twisted-bin-dbg python-twisted-core twisted-doc-api twisted-doc python-twisted-bin python-twisted Architecture: source all powerpc Version: 2.5.0-2 Distribution:

Accepted menu 2.1.34 (source amd64)

2007-06-07 Thread Bill Allombert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Wed, 6 Jun 2007 20:09:59 +0200 Source: menu Binary: menu Architecture: source amd64 Version: 2.1.34 Distribution: unstable Urgency: low Maintainer: Bill Allombert [EMAIL PROTECTED] Changed-By: Bill Allombert [EMAIL PROTECTED]

Accepted telepathy-glib 0.5.13-1 (source i386 all)

2007-06-07 Thread Simon McVittie
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Tue, 05 Jun 2007 13:10:24 +0100 Source: telepathy-glib Binary: libtelepathy-glib0 libtelepathy-glib0-dbg libtelepathy-glib-doc libtelepathy-glib-unstable-dev libtelepathy-glib-dev Architecture: source i386 all Version: 0.5.13-1

Accepted z80asm 1.4-1 (source i386)

2007-06-07 Thread Bas Wijnen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 10:58:09 +0200 Source: z80asm Binary: z80asm Architecture: source i386 Version: 1.4-1 Distribution: unstable Urgency: low Maintainer: Bas Wijnen [EMAIL PROTECTED] Changed-By: Bas Wijnen [EMAIL PROTECTED] Description:

Accepted cmake 2.4.5-2 (source amd64)

2007-06-07 Thread Pierre Habouzit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 11:09:46 +0200 Source: cmake Binary: cmake Architecture: source amd64 Version: 2.4.5-2 Distribution: unstable Urgency: low Maintainer: A. Maitland Bottoms [EMAIL PROTECTED] Changed-By: Pierre Habouzit [EMAIL

Accepted cyrus-sasl2 2.1.22.dfsg1-11 (source i386 all)

2007-06-07 Thread Fabian Fagerholm
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 7 Jun 2007 13:37:51 +0300 Source: cyrus-sasl2 Binary: libsasl2-modules-ldap libsasl2-2 sasl2-bin cyrus-sasl2-doc libsasl2-dev libsasl2-modules-otp libsasl2-modules-sql libsasl2-modules libsasl2-modules-gssapi-mit

Accepted cyrus-sasl2-heimdal 2.1.22.dfsg1-11 (source i386)

2007-06-07 Thread Fabian Fagerholm
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 7 Jun 2007 14:37:21 +0300 Source: cyrus-sasl2-heimdal Binary: cyrus-sasl2-heimdal-dbg libsasl2-modules-gssapi-heimdal Architecture: source i386 Version: 2.1.22.dfsg1-11 Distribution: unstable Urgency: low Maintainer: Fabian

Accepted unattended-upgrades 0.25.1debian1 (source all)

2007-06-07 Thread Michael Vogt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 13:36:47 +0200 Source: unattended-upgrades Binary: unattended-upgrades Architecture: source all Version: 0.25.1debian1 Distribution: unstable Urgency: low Maintainer: Michael Vogt [EMAIL PROTECTED] Changed-By:

Accepted octave2.9 1:2.9.12-2 (source all i386)

2007-06-07 Thread Thomas Weber
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Wed, 06 Jun 2007 07:48:32 + Source: octave2.9 Binary: octave2.9-headers octave octave2.9-info octave2.9-htmldoc octave2.9 octave2.9-emacsen octave2.9-doc Architecture: source all i386 Version: 1:2.9.12-2 Distribution: unstable

Accepted driconf 0.9.1-1 (source all)

2007-06-07 Thread Michel Dänzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 13:29:18 +0200 Source: driconf Binary: driconf Architecture: source all Version: 0.9.1-1 Distribution: unstable Urgency: low Maintainer: Michel Dänzer [EMAIL PROTECTED] Changed-By: Michel Dänzer [EMAIL PROTECTED]

Accepted gp2c 0.0.5pl4-1 (source amd64)

2007-06-07 Thread Bill Allombert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 7 Jun 2007 11:58:52 +0200 Source: gp2c Binary: pari-gp2c Architecture: source amd64 Version: 0.0.5pl4-1 Distribution: unstable Urgency: low Maintainer: Bill Allombert [EMAIL PROTECTED] Changed-By: Bill Allombert [EMAIL

Accepted praat 4.6.6-1 (source i386)

2007-06-07 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 7 Jun 2007 14:09:10 +0200 Source: praat Binary: praat Architecture: source i386 Version: 4.6.6-1 Distribution: unstable Urgency: low Maintainer: Rafael Laboissiere [EMAIL PROTECTED] Changed-By: Rafael Laboissiere [EMAIL

Accepted uim 1:1.4.1-3.1 (source i386 all)

2007-06-07 Thread Loic Minier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 14:03:31 +0200 Source: uim Binary: uim-utils uim-qt uim-applet-kde uim-anthy libuim-data uim-hangul uim-viqr uim-m17nlib libuim-dev uim-fep uim-byeoru uim-canna uim-latin libuim5-dbg uim-gtk2.0 uim-tcode uim-pinyin

Accepted gtk+2.0 2.10.12-3 (source i386 all)

2007-06-07 Thread Loic Minier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 00:13:00 +0200 Source: gtk+2.0 Binary: libgtk2.0-dev gtk2-engines-pixbuf libgtk-directfb-2.0-dev libgtk-directfb-2.0-0 libgtk-directfb-2.0-0-udeb libgtk2.0-0-dbg libgtk2.0-0 libgtk2.0-doc gtk2.0-examples

Accepted alevt 1:1.6.1-8 (source i386)

2007-06-07 Thread Andreas Rottmann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 14:43:28 +0200 Source: alevt Binary: alevt Architecture: source i386 Version: 1:1.6.1-8 Distribution: unstable Urgency: low Maintainer: Andreas Rottmann [EMAIL PROTECTED] Changed-By: Andreas Rottmann [EMAIL

Accepted manpages 2.50-1 (source all)

2007-06-07 Thread Martin Schulze
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 14:51:57 +0200 Source: manpages Binary: manpages manpages-dev Architecture: source all Version: 2.50-1 Distribution: unstable Urgency: low Maintainer: Martin Schulze [EMAIL PROTECTED] Changed-By: Martin Schulze

Accepted xfce4-screenshooter-plugin 1.0.0-3 (source amd64)

2007-06-07 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 14:01:10 +0100 Source: xfce4-screenshooter-plugin Binary: xfce4-screenshooter-plugin Architecture: source amd64 Version: 1.0.0-3 Distribution: unstable Urgency: low Maintainer: Debian Xfce Maintainers [EMAIL

Accepted cl-kmrcl 1.95-1 (source all)

2007-06-07 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 7 Jun 2007 07:22:43 -0600 Source: cl-kmrcl Binary: cl-kmrcl Architecture: source all Version: 1.95-1 Distribution: unstable Urgency: low Maintainer: Kevin M. Rosenberg [EMAIL PROTECTED] Changed-By: Kevin M. Rosenberg [EMAIL

Accepted sysklogd 1.4.1-21 (source i386)

2007-06-07 Thread Martin Schulze
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 15:32:46 +0200 Source: sysklogd Binary: sysklogd klogd Architecture: source i386 Version: 1.4.1-21 Distribution: unstable Urgency: low Maintainer: Martin Schulze [EMAIL PROTECTED] Changed-By: Martin Schulze [EMAIL

Accepted qdox 1.6.1-2 (source all)

2007-06-07 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 7 Jun 2007 15:48:05 +0200 Source: qdox Binary: libqdox-java-doc libqdox-java Architecture: source all Version: 1.6.1-2 Distribution: unstable Urgency: low Maintainer: Debian Java Maintainers [EMAIL PROTECTED] Changed-By: Arnaud

Accepted libdate-simple-perl 3.02-1 (source i386)

2007-06-07 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 15:01:06 +0200 Source: libdate-simple-perl Binary: libdate-simple-perl Architecture: source i386 Version: 3.02-1 Distribution: unstable Urgency: low Maintainer: Debian Perl Group [EMAIL PROTECTED] Changed-By: gregor

Accepted schroedinger 0.6.0-1 (source i386)

2007-06-07 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 16:22:05 +0200 Source: schroedinger Binary: libschroedinger-0.1-0 libschroedinger-0.1-dev gstreamer0.10-schroedinger Architecture: source i386 Version: 0.6.0-1 Distribution: unstable Urgency: low Maintainer:

Accepted gst-plugins-base0.10 0.10.13-2 (source i386 all)

2007-06-07 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 16:29:57 +0200 Source: gst-plugins-base0.10 Binary: libgstreamer-plugins-base0.10-dev gstreamer0.10-plugins-base-dbg gstreamer0.10-plugins-base libgstreamer-plugins-base0.10-0 gstreamer0.10-plugins-base-apps

Accepted libxtst 1:1.0.2-1 (source i386)

2007-06-07 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 17:54:08 +0200 Source: libxtst Binary: libxtst6-dbg libxtst6 libxtst-dev Architecture: source i386 Version: 1:1.0.2-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force [EMAIL PROTECTED]

Accepted radvd 1:1.0-2 (source i386)

2007-06-07 Thread Andreas Rottmann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 18:34:48 +0200 Source: radvd Binary: radvd Architecture: source i386 Version: 1:1.0-2 Distribution: unstable Urgency: low Maintainer: Andreas Rottmann [EMAIL PROTECTED] Changed-By: Andreas Rottmann [EMAIL PROTECTED]

Accepted sharutils 1:4.6.3-1 (source all powerpc)

2007-06-07 Thread Santiago Vila
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 7 Jun 2007 18:49:50 +0200 Source: sharutils Binary: sharutils-doc sharutils Architecture: source powerpc all Version: 1:4.6.3-1 Distribution: unstable Urgency: low Maintainer: Santiago Vila [EMAIL PROTECTED] Changed-By:

Accepted scribus-ng 1.3.4.dfsg-1 (source i386)

2007-06-07 Thread Oleksandr Moskalenko
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Mon, 28 May 2007 10:17:28 -0600 Source: scribus-ng Binary: scribus-ng Architecture: source i386 Version: 1.3.4.dfsg-1 Distribution: unstable Urgency: low Maintainer: Oleksandr Moskalenko [EMAIL PROTECTED] Changed-By: Oleksandr

Accepted scribus-ng-doc 1.3.4-1 (source all)

2007-06-07 Thread Oleksandr Moskalenko
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Wed, 30 May 2007 12:05:57 -0600 Source: scribus-ng-doc Binary: scribus-ng-doc Architecture: source all Version: 1.3.4-1 Distribution: unstable Urgency: low Maintainer: Oleksandr Moskalenko [EMAIL PROTECTED] Changed-By: Oleksandr

Accepted hibernate 1.96~pre-svn.r1125-1 (source all)

2007-06-07 Thread martin f. krafft
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 18:58:01 +0200 Source: hibernate Binary: hibernate Architecture: source all Version: 1.96~pre-svn.r1125-1 Distribution: unstable Urgency: low Maintainer: martin f. krafft [EMAIL PROTECTED] Changed-By: martin f.

Accepted nexuiz-data 2.3-1 (source all)

2007-06-07 Thread Fuddl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Fri, 1 Jun 2007 14:51:30 +0200 Source: nexuiz-data Binary: nexuiz-music nexuiz-data Architecture: source all Version: 2.3-1 Distribution: unstable Urgency: low Maintainer: Debian Games Team [EMAIL PROTECTED] Changed-By: Bruno Fuddl

Accepted nexuiz 2.3-1 (source amd64)

2007-06-07 Thread Fuddl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Fri, 1 Jun 2007 16:29:38 +0200 Source: nexuiz Binary: nexuiz-server nexuiz Architecture: source amd64 Version: 2.3-1 Distribution: unstable Urgency: low Maintainer: Debian Games Team [EMAIL PROTECTED] Changed-By: Bruno Fuddl

Accepted eclipse 3.2.2-1 (source i386 all)

2007-06-07 Thread Michael Koch
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Mon, 04 Jun 2007 08:18:23 -0100 Source: eclipse Binary: libswt3.2-gtk-gcj eclipse-jdt eclipse-platform-gcj eclipse-source eclipse-platform libswt3.2-gtk-java eclipse-sdk eclipse eclipse-jdt-gcj eclipse-pde eclipse-efj eclipse-rcp

Accepted aufs 0+20070605-2 (source i386 all)

2007-06-07 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 7 Jun 2007 16:19:16 +0200 Source: aufs Binary: aufs-source aufs-tools Architecture: source i386 all Version: 0+20070605-2 Distribution: unstable Urgency: low Maintainer: Julian Andres Klode [EMAIL PROTECTED] Changed-By: Julian

Accepted libgeo-coordinates-utm-perl 0.06-1 (source all)

2007-06-07 Thread Dominic Hargreaves
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 7 Jun 2007 19:29:56 +0100 Source: libgeo-coordinates-utm-perl Binary: libgeo-coordinates-utm-perl Architecture: source all Version: 0.06-1 Distribution: unstable Urgency: low Maintainer: Dominic Hargreaves [EMAIL PROTECTED]

Accepted libplexus-utils 1:1.4.1-1 (source all)

2007-06-07 Thread Paul Cager
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Wed, 06 Jun 2007 12:07:28 +0100 Source: libplexus-utils Binary: libplexus-utils-java libplexus-utils-java-doc Architecture: source all Version: 1:1.4.1-1 Distribution: unstable Urgency: low Maintainer: Debian Java Maintainers [EMAIL

Accepted cscope 15.6-3 (source i386)

2007-06-07 Thread Tobias Klauser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 00:31:15 +0200 Source: cscope Binary: cscope Architecture: source i386 Version: 15.6-3 Distribution: unstable Urgency: low Maintainer: Tobias Klauser [EMAIL PROTECTED] Changed-By: Tobias Klauser [EMAIL PROTECTED]

Accepted deskbar-applet 2.18.1-2 (source amd64)

2007-06-07 Thread Romain Francoise
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 20:54:19 +0200 Source: deskbar-applet Binary: deskbar-applet Architecture: source amd64 Version: 2.18.1-2 Distribution: unstable Urgency: low Maintainer: Debian GNOME Maintainers [EMAIL PROTECTED] Changed-By: Romain

Accepted cadaver 0.22.5-2 (source i386)

2007-06-07 Thread Sebastian Harl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 7 Jun 2007 16:10:48 + Source: cadaver Binary: cadaver Architecture: source i386 Version: 0.22.5-2 Distribution: unstable Urgency: low Maintainer: Sebastian Harl [EMAIL PROTECTED] Changed-By: Sebastian Harl [EMAIL PROTECTED]

Accepted kkbswitch 1.4.3-5 (source i386)

2007-06-07 Thread Lior Kaplan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 23:06:17 +0300 Source: kkbswitch Binary: kkbswitch Architecture: source i386 Version: 1.4.3-5 Distribution: unstable Urgency: low Maintainer: Debian Hebrew Packaging Team [EMAIL PROTECTED] Changed-By: Lior Kaplan

Accepted stalonetray 0.6.5-1 (source i386)

2007-06-07 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 15:07:22 +0530 Source: stalonetray Binary: stalonetray Architecture: source i386 Version: 0.6.5-1 Distribution: unstable Urgency: low Maintainer: Roman Dubtsov [EMAIL PROTECTED] Changed-By: Torsten Werner [EMAIL

Accepted xmountains 2.7-5 (source i386)

2007-06-07 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 15:03:46 +0530 Source: xmountains Binary: xmountains Architecture: source i386 Version: 2.7-5 Distribution: unstable Urgency: low Maintainer: Kartik Mistry [EMAIL PROTECTED] Changed-By: Torsten Werner [EMAIL

Accepted windows-el 2.41-1 (source all)

2007-06-07 Thread Hubert Chan
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Format: 1.7 Date: Thu, 7 Jun 2007 16:14:45 -0400 Source: windows-el Binary: windows-el Architecture: source all Version: 2.41-1 Distribution: unstable Urgency: low Maintainer: Hubert Chan [EMAIL PROTECTED] Changed-By: Hubert Chan [EMAIL

Accepted schroedinger 0.6.0-2 (source i386)

2007-06-07 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 07 Jun 2007 16:53:39 +0200 Source: schroedinger Binary: libschroedinger-0.1-0 libschroedinger-0.1-dev gstreamer0.10-schroedinger Architecture: source i386 Version: 0.6.0-2 Distribution: unstable Urgency: low Maintainer:

Accepted libemail-send-perl 2.185-1 (source all)

2007-06-07 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Fri, 08 Jun 2007 00:40:49 +0300 Source: libemail-send-perl Binary: libemail-send-perl Architecture: source all Version: 2.185-1 Distribution: unstable Urgency: low Maintainer: Debian Perl Group [EMAIL PROTECTED] Changed-By: Damyan

Accepted libdatetime-format-db2-perl 0.05-1 (source all)

2007-06-07 Thread eloy
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Mon, 30 Apr 2007 15:42:56 +0200 Source: libdatetime-format-db2-perl Binary: libdatetime-format-db2-perl Architecture: source all Version: 0.05-1 Distribution: unstable Urgency: low Maintainer: Debian Perl Group [EMAIL PROTECTED]

Accepted libmarc-charset-perl 0.97-1 (source all)

2007-06-07 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Fri, 08 Jun 2007 01:34:04 +0300 Source: libmarc-charset-perl Binary: libmarc-charset-perl Architecture: source all Version: 0.97-1 Distribution: unstable Urgency: low Maintainer: Debian Perl Group [EMAIL PROTECTED] Changed-By: Damyan

Accepted ttf-sil-charis 4.100-1 (source all)

2007-06-07 Thread Nicolas Spalinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Thu, 8 Feb 2007 13:32:16 +0100 Source: ttf-sil-charis Binary: ttf-sil-charis Architecture: source all Version: 4.100-1 Distribution: unstable Urgency: low Maintainer: Debian Fonts Task Force [EMAIL PROTECTED] Changed-By: Nicolas

Accepted ttf-sil-doulos 4.100-1 (source all)

2007-06-07 Thread Nicolas Spalinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Sat, 3 Feb 2007 00:25:13 +0100 Source: ttf-sil-doulos Binary: ttf-sil-doulos Architecture: source all Version: 4.100-1 Distribution: unstable Urgency: low Maintainer: Debian Fonts Task Force [EMAIL PROTECTED] Changed-By: Nicolas

Accepted hocr 0.8.2-3 (source i386)

2007-06-07 Thread Baruch Even
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Sun, 03 Jun 2007 02:28:13 +0300 Source: hocr Binary: libhocr-perl libhocr-dev hocr-gtk libhocr0 libhocr-python Architecture: source i386 Version: 0.8.2-3 Distribution: unstable Urgency: low Maintainer: Debian Hebrew Packaging Team

Accepted culmus 0.101-7 (source all)

2007-06-07 Thread Baruch Even
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Sat, 02 Jun 2007 23:41:03 +0300 Source: culmus Binary: culmus Architecture: source all Version: 0.101-7 Distribution: unstable Urgency: low Maintainer: Debian Hebrew Packaging Team [EMAIL PROTECTED] Changed-By: Baruch Even [EMAIL

Accepted twm 1:1.0.3-1 (source i386)

2007-06-07 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Fri, 08 Jun 2007 01:03:48 +0200 Source: twm Binary: twm Architecture: source i386 Version: 1:1.0.3-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force [EMAIL PROTECTED] Changed-By: Julien Cristau [EMAIL PROTECTED]

Accepted alsaplayer 0.99.79-2 (source i386)

2007-06-07 Thread Hubert Chan
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Format: 1.7 Date: Thu, 7 Jun 2007 16:23:38 -0400 Source: alsaplayer Binary: alsaplayer-daemon alsaplayer-xosd libalsaplayer-dev alsaplayer-jack alsaplayer-esd alsaplayer-text alsaplayer-nas alsaplayer-oss alsaplayer-alsa alsaplayer-gtk

Accepted vcf 0.0.5-5 (source i386)

2007-06-07 Thread Joost Yervante Damad
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Fri, 08 Jun 2007 07:05:59 +0200 Source: vcf Binary: vcf Architecture: source i386 Version: 0.0.5-5 Distribution: unstable Urgency: low Maintainer: Debian Multimedia Team [EMAIL PROTECTED] Changed-By: Joost Yervante Damad [EMAIL

Inlcusió n en planeta debian

2007-06-07 Thread Ghe Rivero
Pues lo dicho, http://vortice.upsa.es/blog/wp-rss2.php?cat=3 Ghe Rivero -- .''`. Pienso, Luego Incordio : :' : `. `' `-www.debian.orgwww.hispalinux.es GPG Key: 26F020F7 GPG fingerprint: 4986 39DA D152 050B 4699 9A71 66DB 5A36 26F0 20F7 signature.asc

Re: Inlcusió n en planeta debian

2007-06-07 Thread David Moreno Garza
Ghe Rivero wrote: Pues lo dicho, http://vortice.upsa.es/blog/wp-rss2.php?cat=3 Ghe Rivero Hola, Listo, ya te agregué. Saludos, -- David Moreno Garza [EMAIL PROTECTED] | http://www.damog.net/ URL:http://pub.tsn.dk/how-to-quote.php -- To UNSUBSCRIBE, email to [EMAIL