Re: status of jackd? (bug #318098)

2005-08-11 Thread Steve Langasek
On Wed, Aug 10, 2005 at 03:12:52PM -0700, Erik Steffl wrote:

 That, of course, when we're not busy handling unhelpful ideas or
 complaints from people who do not really understand what's going on. How
 many times more this same discussion is going to happen?

   why do you assume I don't know how debian release process works?

Well, for understanding how the release process works, you certainly seem to
be expending quite a few words arguing the claim that people are
gratuitously breaking things in unstable -- despite your own admission that
you don't actually *know* what the issue with jackd is.

Ok, so I guess you have a pretty solid grasp of Debian list *culture*, but
that doesn't really imply you understand the release processes... :)

   and I guess it will be repeated until debian (i.e. debian developers) 
 comes up with a solution. Perhpas the fact that this is being repeated 
 over and over means that it should be addressed?

No, it just explains why developers are irritated when the hundredth user in
a row comes to complain about unstable being... unstable.

-- 
Steve Langasek
postmodern programmer


signature.asc
Description: Digital signature


Re: net-tools maintenance status

2005-08-11 Thread Olaf van der Spek
Bump.

On 8/6/05, Bernd Eckenfels [EMAIL PROTECTED] wrote:
 In article [EMAIL PROTECTED] you wrote:
  Didn't I (also) send you a much later version?

 Hmm.. I cant find that, but yes I thin u did. Can you dig that up?

Sure: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=222324msg=19

Just one more question: what happened to my original emails?



Re: Bug#322282: ITP: swapspace -- Dynamic swap space manager

2005-08-11 Thread Jeroen Vermeulen
On Wed, Aug 10, 2005 at 01:00:59PM +0200, Henning Makholm wrote:

 On the other hand integrating Debian's *packaging* infrastructure
 (i.e., the debian/ subdirectory) in upstream source cannot be
 recommended. It only creates trouble for developers when the policy
 and environment they are packaging for drift out of sync with your
 offer (as it will inevitably). Even in the cases where a Debian
 developer is himself the upstream author of some software, it is
 common that he maintains the Debian infrastructure separately from the
 upstream tarball.
 
In this particular case though, Debian is the primary environment for
the program.  For us, taking the Debian parts out might be just as
awkward.  Can't we use Subversion branches on the entire source tree
plus packaging, and do without separate distribution-specific patches
apart from that?  We could branch when etch is released, for instance. 


 The best way to be packager friendly as an upstream author is to
 provide a robust, portable build infrastructure with a configure
 script and flexible 'install' targets in the Makefile that behave like
 autoconf-generated ones. Keep autotools support files up-to-date when
 you release, and so forth.

So far we've avoided the use of the autotools.  This is not meant to be
a portable program, although of course there's no telling if maybe
someday it will be.


 If you want, you can encourage packagers to submit patches for your
 makefiles rather than working around them in their Debian rules. Many
 packagers by default try to touch the upstream makefiles as little as
 possible, but that ought to be reversible if the upstream author
 requests so.

I would want that in any case.  In fact it would not be a major problem
to provide subversion access to a Debian maintainer.


Jeroen


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



libnss-db and /usr/lib/* libraries

2005-08-11 Thread Piotr Roszatycki
Hi. The problem is important not only for libnss-db package but also for 
libnss-ldap, libnss-mysql and others.

$ ldd /usr/lib/libnss_db.so.2 | grep /usr
libdb-4.3.so = /usr/lib/libdb-4.3.so (0xb7e1)

So the system can't unmount /usr partition on poweroff process. I wonder if I 
should link statically the BDB library. The other distros works that way. It 
might be a problem if the libdb4.3 package will be updated and then the 
libnss-db should be recompiled. Another thing is the PIC and non-PIC stuff, 
so I'm afraid that I would need the libdb4.3-pic package which doesn't exist 
yet.

What do you think?

-- 
 .''`.Piotr Roszatycki, Netia SA
: :' :mailto:[EMAIL PROTECTED]
`. `' mailto:[EMAIL PROTECTED]
  `-


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



Re: please fix your RC bugs

2005-08-11 Thread Nathanael Nerode

[EMAIL PROTECTED] wrote:


sigh.. okay, my correction had bugs, too :-)
better as


if [ ! -d ~root -a -x /usr/xpg4/bin/sh  ] ; then



Better yet, be POSIX compliant:

if [ ! -d ~root ]  [ -x /usr/xpg4/bin/sh ] ; then


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



Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread Qingning Huo
On Wed, Aug 10, 2005 at 10:09:44PM -0600, Sebastian Kuzminsky wrote:
 So, I'm proposing this:
 
 GNU Interactive Tools installs /usr/bin/git.shell (or something)
 
 Cogito installs /usr/bin/git.scm (or something)
 
 update-alternatives is used to make one of those appear as
 /usr/bin/git

As I understand it, update-alternatives is used for programs providing
similar functions, this is not the case for /usr/bin/git.

Please consider Debian as a multiuser OS, what should the admin do if
half the user want git the scm, and the other half want GNU Interactive
Tools?

I suggest dpkg-divert /usr/bin/git, and install a shell script as
/usr/bin/git, which will invoke either program depending on a certain
environment variable[1] or a configuration file.  It is possible to achieve
the following objectives.

(1) Installing cogito will not change the meaning of /usr/bin/git by
default;

(2) System admin can decide a default preference of /usr/bin/git,
through e.g. /etc/git.rc;

(3) Each user can choose her/his own preference by e.g. ~/.gitrc;

(4) cogito on Debian works the same as on other systems.

Of course, whatever configuration files or environment variables used
should be agreed by both package maintainers.

[1] I understand environment variable is not the recommended way to
configure Debian packages.  However, it can be used as a shortcut to
avoid reading any configuration files.

Regards,
Qingning


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



Re: libnss-db and /usr/lib/* libraries

2005-08-11 Thread Tim Dijkstra
On Thu, 11 Aug 2005 10:17:27 +0200
Piotr Roszatycki [EMAIL PROTECTED] wrote:

 Hi. The problem is important not only for libnss-db package but also
 for libnss-ldap, libnss-mysql and others.
 
 $ ldd /usr/lib/libnss_db.so.2 | grep /usr
 libdb-4.3.so = /usr/lib/libdb-4.3.so (0xb7e1)
 
 So the system can't unmount /usr partition on poweroff process. I
 wonder if I should link statically the BDB library. The other distros
 works that way. It might be a problem if the libdb4.3 package will be
 updated and then the libnss-db should be recompiled. Another thing is
 the PIC and non-PIC stuff, so I'm afraid that I would need the
 libdb4.3-pic package which doesn't exist yet.
 
 What do you think?

This is probably bug

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=120340

grts Tim


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



Bug#322534: ITP: mpfi -- multiple precision floating-point interval computation

2005-08-11 Thread Laurent Fousse
Package: wnpp
Severity: wishlist
Owner: Laurent Fousse [EMAIL PROTECTED]

* Package name: mpfi
  Version : 1.3.3
  Upstream Authors : Nathalie Revol, Fabrice Rouillier (email ommited)
* URL : http://perso.ens-lyon.fr/nathalie.revol/software.html
* License : LGPL 2.1 or later
  Description : multiple precision floating-point interval computation

 The basic principle of interval arithmetic consists in enclosing every number
 by an interval containing it and being representable by machine numbers: for
 instance it can be stored as its lower and upper endpoints and these bounds
 are machine numbers, or as a centre and a radius which are machine numbers.
 .
 The arithmetic operations are extended for interval operands in such a way
 that the exact result of the operation belongs to the computed interval.
 .
 The purpose of an arbitrary precision interval arithmetic is on the one hand
 to get guaranteed results, thanks to interval computation, and on the other
 hand to obtain accurate results, thanks to multiple precision arithmetic. The
 MPFI library is built upon MPFR in order to benefit from the correct roundings
 provided by MPFR. Further advantages of using MPFR are its portability and
 compliance with the IEEE 754 standard for floating-point arithmetic. 


signature.asc
Description: Digital signature


[EMAIL PROTECTED] no longer exists

2005-08-11 Thread Wayne Christopher
The mail you sent to Wayne Christopher regarding Re: my application
was not delivered, because [EMAIL PROTECTED] addresses
are no longer being used.


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



Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread Marco d'Itri
On Aug 11, Sebastian Kuzminsky [EMAIL PROTECTED] wrote:

 People who just want GNU Interactive Tools get what they want.  People who
 just want Cogito get what they want.  People who want both have to learn
 a new name for one of them.  Seems good to me.  Am I missing anything?
Reality? git is the kernel SCM and GNU Interactive Tools is an obscure
package, and you should just install /usr/bin/git.
If the GNU Interactive Tools maintainer refuses to rename the other
program then just conflict with it.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread Petter Reinholdtsen
[Marco d'Itri]
 Reality? git is the kernel SCM and GNU Interactive Tools is an
 obscure package, and you should just install /usr/bin/git.
 If the GNU Interactive Tools maintainer refuses to rename the other
 program then just conflict with it.

Ah, conflict resolution by the use of force.  The method seem to gain
popularity in the world today, but I do not recommend it.

It is is not obvious which tool is more obscure, as this will differ
from user group to user group.  It is a better idea for the
maintainers to try to reach an agreement, and perhaps to discuss the
choice of name with upstream as well, to try to make the choosen name
used in other distros.

Friendly,
-- 
Petter Reinholdtsen


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



Re: Partition, LVM, and RAID management utility

2005-08-11 Thread Goswin von Brederlow
Shaun Jackman [EMAIL PROTECTED] writes:

 For for the first time since potato, I reinstalled Debian from scratch
 on my main box. Hoorah for dist-upgrade! One experience I took away
 from the installation is how impressed I was with partman, the
 debian-installer partition management tool. This was my first time
 using SATA, LVM, and RAID -- I figured I'd play with all the new
 buzzwords while I had the opportunity -- and partman made it all quite
 simple!

 Once I had my system up and running, I decided to go back and tweak a
 couple things  in the partitioning / LVM / RAID scheme. After looking
 for a bit, I didn't find a utility [1] quite as good as partman for
 this task, so I fell back to the command line utilities fdisk, lvm,
 and mdadm. My sense of it is that there isn't a tool packaged in
 Debian to fill this need -- although feel free to give suggestions at
 this point.

 I suggest one of two things, or if there's time both! 1. Port partman
 from debian-installer to make it a full fledged utility. 2. Port
 whatever tool Red Hat uses [2] for this same task and package it for
 Debian. I haven't used the latter, so the former would be my
 preference. Can someone more familiar with partman and
 debian-installer give an indication of how much work this would be?

 Cheers!
 Shaun

 [1] qtparted is a nice tool, but doesn't handle LVM or RAID yet as far
 as I know. webmin-lvm is a capable looking tool though.

 [2] I think this tool might be called DiskDruid, but I'm quite out of
 touch with Red Hat state-of-the-art.

FYI: Martin Loschwitz (madkiss) is working on the Yast partitioner
module (from SuSe), part of the Yast for Debian project.

MfG
Goswin


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



Re: please fix your RC bugs

2005-08-11 Thread Steve Greenland
On 10-Aug-05, 13:38 (CDT), Philip Brown [EMAIL PROTECTED] wrote: 
  [1] Useful fragment for cross platform shell scripts:
  
  #!/bin/sh
  # Do the Solaris Dance:
  if [ ! -d ~root ]  ; then
  exec /usr/xpg4/bin/sh $0 $@ 
  fi
  
 
 sigh.. okay, my correction had bugs, too :-)
 better as
 
 
 if [ ! -d ~root -a -x /usr/xpg4/bin/sh  ] ; then
 

No, because that will let the script continue if there is no POSIX shell
available. You want it to exit immediately, rather than randomly fail
when you hit unsupported functionality.

As a practical matter, any modern Solaris (=7, probably even 2.6 and 2.5)
machine has /usr/xpg4/bin/sh installed.

Steve

-- 
Steve Greenland
The irony is that Bill Gates claims to be making a stable operating
system and Linus Torvalds claims to be trying to take over the
world.   -- seen on the net


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



Re: Bug#322534: ITP: mpfi -- multiple precision floating-point in terval computation

2005-08-11 Thread Laurent Fousse
* Humberto Massa Guimarães [Thu, Aug 11, 2005 at 10:39:56AM -0300]:
 Yeah, but what does it *DO*? If it is a library, it oughta be called
 libmpfi ... and it should be stated.

It is a library. The source package is called `mpfi', the binary
package is called `libmpfi-dev' (only a static library is provided).
So with the package name, section (libdevel) and last paragraph of
description this will be fairly obvious it is a library. But I am open
to improvements to the description (maybe the first two paragraphs
could be made shorter, but on first glance I thought the concept of
interval arithmetics was worth explaining).

I chose the mpfi/libmpfi-dev naming convention as was done for mpfr,
see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276085.


signature.asc
Description: Digital signature


Bug#292222: ITH: ibuild -- custom LiveCD creator

2005-08-11 Thread Martin-Éric Racine
Package: wnpp
Followup-For: Bug #29
Owner: Martin-Éric Racine [EMAIL PROTECTED]

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I notice that this ITP is already 192 days old and still has not been acted 
upon.

Meanwhile, I have been spending the last few hours helping the upstream author 
clean up his source tree and doing 
various improvements to the software to bring it to a state where it can be 
uploaded to Debian.

As it so happens, ibuild was brought up again on the debian-custom mailing list 
a few days ago, along with pressing 
questions about the status of this ITP.

As such, I no longer see any valid reason to wait for the initial ITP submitter 
and am hereby hijacking this ITP and 
proceeding with the submission of this new package to the archive.

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

iD8DBQFC+1MdeXr56x4Muc0RAqsVAJ9fUbWM0giu0goKiP70IDgcw78t5gCgnYWk
Eo+0eRLbWlz6lnIGnBaUFVQ=
=188M
-END PGP SIGNATURE-


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



RE: Bug#322534: ITP: mpfi -- multiple precision floating-point in terval computation

2005-08-11 Thread Humberto Massa Guimarães
 * Package name: mpfi
   Version : 1.3.3
   Upstream Authors: Nathalie Revol, Fabrice Rouillier (email ommited)
 * URL :
 http://perso.ens-lyon.fr/nathalie.revol/software.html
 * License : LGPL 2.1 or later
   Description : multiple precision floating-point interval
   computation
 
  The basic principle of interval arithmetic consists in enclosing
  every number by an interval containing it and being representable
  by machine numbers: for instance it can be stored as its lower
  and upper endpoints and these bounds are machine numbers, or as a
  centre and a radius which are machine numbers.
  .
  The arithmetic operations are extended for interval operands in
  such a way that the exact result of the operation belongs to the
  computed interval.
  .
  The purpose of an arbitrary precision interval arithmetic is on
  the one hand to get guaranteed results, thanks to interval
  computation, and on the other hand to obtain accurate results,
  thanks to multiple precision arithmetic. The MPFI library is
  built upon MPFR in order to benefit from the correct roundings
  provided by MPFR. Further advantages of using MPFR are its
  portability and compliance with the IEEE 754 standard for
  floating-point arithmetic. 
 
Yeah, but what does it *DO*? If it is a library, it oughta be called
libmpfi ... and it should be stated. If it is an utility program,
the what is arbitrary precision foo is secondary WRT what the
program actually does.


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



Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread Joey Hess
Sebastian Kuzminsky wrote:
 All packages which supply an instance of a common command name (or, in
 general, filename) should generally use update-alternatives, so that
 they may be installed together. If update-alternatives is not used,
 then each package must use Conflicts to ensure that other packages
 are de-installed.

 Two different packages must not install programs with different
 functionality but with the same filenames. 
 [...]
 If this case happens, one of the programs must be renamed.

 -- policy 10.1.

 So, I'm proposing this:
 
 GNU Interactive Tools installs /usr/bin/git.shell (or something)
 
 Cogito installs /usr/bin/git.scm (or something)
 
 update-alternatives is used to make one of those appear as
 /usr/bin/git

Yeah and people who want to deal with kernel sources would complicate
this scenario greatly. And then someone might package rm as git just
to prove the point. There's a reason we don't do this.

-- 
see shy jo


signature.asc
Description: Digital signature


Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread Sebastian Kuzminsky
Petter Reinholdtsen [EMAIL PROTECTED] wrote:
 [Marco d'Itri]
  Reality? git is the kernel SCM and GNU Interactive Tools is an
  obscure package, and you should just install /usr/bin/git.
  If the GNU Interactive Tools maintainer refuses to rename the other
  program then just conflict with it.
 
 Ah, conflict resolution by the use of force.  The method seem to gain
 popularity in the world today, but I do not recommend it.
 
 It is is not obvious which tool is more obscure, as this will differ
 from user group to user group.  It is a better idea for the
 maintainers to try to reach an agreement, and perhaps to discuss the
 choice of name with upstream as well, to try to make the choosen name
 used in other distros.

The just conflict idea is what I naively did first, and got flamed
right here on debian-devel. [1]

I've pushed the rename it upstream idea on the upstream maintainers
twice now and it gets shut down by both Linus (the original author)
and Junio (the current maintainer). [2]

update-alternatives seems like it would work but it's apparently not
supposed to used unless the programs that share a name also do the
same thing.

Qingning Huo suggested using diversions to make /usr/bin/git a little
selector script that lets the admin  user choose between git-the-shell
and git-the-scm.  This sounds good to me, who objects?


[1]: http://lists.debian.org/debian-devel/2005/06/msg00909.html

[2]: http://marc.theaimsgroup.com/?l=gitm=112371729330066w=2


-- 
Sebastian Kuzminsky


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



Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread W. Borgert
Quoting Sebastian Kuzminsky [EMAIL PROTECTED]:
 I've pushed the rename it upstream idea on the upstream maintainers
 twice now and it gets shut down by both Linus (the original author)
 and Junio (the current maintainer). [2]

There is still the option to rename it for Debian only,
without changing it upstream.  Not really nice, but
possible and used in the past, IIRC.

 Qingning Huo suggested using diversions to make /usr/bin/git a little
 selector script that lets the admin  user choose between git-the-shell
 and git-the-scm.  This sounds good to me, who objects?

Aarrgghh! :-) That's what alternatives are for and people
already objected for good reasons.  Please not.

Either rename the executable to /usr/bin/git-the-scm (or
whatever) or conflict with the other git.  Or ask the
other git people to rename their binary.  Maybe git-the-scm
is (or will be) in wider use than git-the-shell, so it
might be OK to rename the more obscure executable.

Cheers, WB


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



Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread Steinar H. Gunderson
On Thu, Aug 11, 2005 at 09:20:23AM -0600, Sebastian Kuzminsky wrote:
 Qingning Huo suggested using diversions to make /usr/bin/git a little
 selector script that lets the admin  user choose between git-the-shell
 and git-the-scm.  This sounds good to me, who objects?

What are you going to do about automated scripts that use either?

/* Steinar */
-- 
Homepage: http://www.sesse.net/


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



what happened to RunDinstallHourly proposal?

2005-08-11 Thread kamaraju kusumanchi

Hi
  I was just browsing through the wiki and came across this very 
interesting idea. It would be really useful if the mirrors are updated 
more frequently. I need not wait for one day to erect my broken sid machine.


http://wiki.debian.net/?RunDinstallHourly

I have also read the corresponding thread on debian-devel

http://lists.debian.org/debian-devel/2005/01/msg00141.html

I was just wondering if there are any efforts currently undergoing to 
make this a reality? or has the idea been just dropped? What is 
preventing its implementation?


I guess this is something that should be done by the DDs as they have 
access to the actual machines or is there anything that a normal user 
(like me) can do to make this possible?



thanks
raju

--
Kamaraju S Kusumanchi
Graduate Student, MAE
Cornell University
http://www.people.cornell.edu/pages/kk288/


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



Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread Henning Makholm
Scripsit W. Borgert [EMAIL PROTECTED]

 Either rename the executable to /usr/bin/git-the-scm (or
 whatever) or conflict with the other git.

Conflicting is Not An Option. So policy says, for good reasons.

 Or ask the other git people to rename their binary.  Maybe
 git-the-scm is (or will be) in wider use than git-the-shell, so it
 might be OK to rename the more obscure executable.

There is precedence to consider. Sarge already contains a git package
that provides /usr/bin/git. Users who update from sarge to etch would
not be served well if the software they are used to suddenly changes
name just to accommodate a newcomer.

OTOH, cogito is not in sarge; there are no prior user expectations
about what its command name should be.

-- 
Henning Makholm  Punctuation, is? fun!


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



Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread W. Borgert
Quoting Henning Makholm [EMAIL PROTECTED]:
 Conflicting is Not An Option. So policy says, for good reasons.

OK, bad idea.

 There is precedence to consider. Sarge already contains a git package
 that provides /usr/bin/git. Users who update from sarge to etch would
 not be served well if the software they are used to suddenly changes
 name just to accommodate a newcomer.

 OTOH, cogito is not in sarge; there are no prior user expectations
 about what its command name should be.

Well, there will be user expectations (e.g. if people use cogito-git
on other distributions as well), but I agree: We can live with that.

Cheers, WB


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



Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread Brian Nelson
On Thu, Aug 11, 2005 at 05:28:48PM +0200, Steinar H. Gunderson wrote:
 On Thu, Aug 11, 2005 at 09:20:23AM -0600, Sebastian Kuzminsky wrote:
  Qingning Huo suggested using diversions to make /usr/bin/git a little
  selector script that lets the admin  user choose between git-the-shell
  and git-the-scm.  This sounds good to me, who objects?
 
 What are you going to do about automated scripts that use either?

Uhhh, why the hell would users of GNU Interactive Tools use them
non-interactively?

-- 
Society is never going to make any progress until we all learn to
pretend to like each other.


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



Re: Bug#322282: ITP: swapspace -- Dynamic swap space manager

2005-08-11 Thread Henning Makholm
Scripsit Jeroen Vermeulen [EMAIL PROTECTED]
 On Wed, Aug 10, 2005 at 01:00:59PM +0200, Henning Makholm wrote:

 On the other hand integrating Debian's *packaging* infrastructure
 (i.e., the debian/ subdirectory) in upstream source cannot be
 recommended. It only creates trouble for developers when the policy
 and environment they are packaging for drift out of sync with your
 offer (as it will inevitably).

 In this particular case though, Debian is the primary environment for
 the program.

That's not by itself a reason to include packaging-specific files in
the upstream tarball.

 For us, taking the Debian parts out might be just as awkward.

I really doubt that.  Could you explain which problems you see with
having a clear separation?

But even if true, you'll just have to decide between awkwardness for
yourself and forcing awkwardness on a Debian maintainer. Of course we
can't (and wouldn't, if we could) force you to do things the friendly
way, so it's your call.

-- 
Henning Makholm  En tapper tinsoldat. En dame i
 spagat. Du er en lykkelig mand ...


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



libxslt1 / libxslt1.1 clean-up, comments welcome

2005-08-11 Thread Mike Hommey
Hello,

I'm about to remove the libxslt1 package, which has been created a long
time ago for backward compatibility, when upstream did screw up ABI and
removed support for the libxsltbreakpoint library.

Now that no package depend on it, I am going to remove it, but that
leaves a libxslt1.1 package alone, not really respectful of the debian
standards for package naming.

I was wondering if I should come back to good practice and provide a
libxslt1 package with the library, and a dummy libxslt1.1 package for
upgrade support (which should only be removed after etch release).

It could break some external stuff depending on old libxslt1 (thus
libxsltbreakpoint), but are there really any left outside of debian ?

So, what do you think ? Should I just leave it the way it is now or try
to make it cleaner ?

At the same time, should I do the same with libxml2 and name it libxml2-2 ?

Mike


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



Re: status of jackd? (bug #318098)

2005-08-11 Thread Philipp Kern
On Tue, 2005-08-09 at 15:18 -0700, Erik Steffl wrote:
   all in all, if you offer a distro that is several years old it's not 
 suitable for _general_ desktop use (I'm sure it would be OK for _some_ 
 dektop users), regardless of how much you dislike people running unstable.

Then stick with testing.

Just my few cents,
Philipp Kern



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



Re: net-tools maintenance status

2005-08-11 Thread Bernd Eckenfels
On Thu, Aug 11, 2005 at 09:23:12AM +0200, Olaf van der Spek wrote:
 Just one more question: what happened to my original emails?

I read them. Most likely I saved the wrong one for further processing. Thats
why it is a good idea to copy the bug report. Sorry for your double work.

Gruss
Bernd


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



Re: libxslt1 / libxslt1.1 clean-up, comments welcome

2005-08-11 Thread Graham Wilson
On Thu, Aug 11, 2005 at 07:41:08PM +0200, Mike Hommey wrote:
 Now that no package depend on it, I am going to remove it, but that
 leaves a libxslt1.1 package alone, not really respectful of the debian
 standards for package naming.

How is it not respectful of Debian standards for package naming?

 So, what do you think ? Should I just leave it the way it is now or try
 to make it cleaner ?

Are there any functional or practical reasons to change the package name
back to libxslt1? If not, I don't see any need to change it.

-- 
gram


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



Bug#322615: ITP: libmodule-find-perl -- Find and use installed modules in a (sub)category

2005-08-11 Thread Krzysztof Krzyzaniak (eloy)
Package: wnpp
Severity: wishlist
Owner: Krzysztof Krzyzaniak (eloy) [EMAIL PROTECTED]


* Package name: libmodule-find-perl
  Version : 0.04
  Upstream Author : Christian Renz, [EMAIL PROTECTED]
* URL : http://search.cpan.org/~crenz/Module-Find-0.04/
* License : (GPL, Artistic)
  Description : Find and use installed modules in a (sub)category

 Module::Find lets you find and use modules in categories. This can be very
 useful for auto-detecting driver or plugin modules. You can differentiate
 between looking in the category itself or in all subcategories.
 .
 If you want Module::Find to search in a certain directory on your
 harddisk (such as the plugins directory of your software installation),
 make sure you modify @INC before you call the Module::Find functions.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-11-amd64-k8
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2) (ignored: LC_ALL set to 
pl_PL)


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



Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread Sebastian Kuzminsky
Qingning Huo [EMAIL PROTECTED] wrote:
 I suggest dpkg-divert /usr/bin/git, and install a shell script as
 /usr/bin/git, which will invoke either program depending on a certain
 environment variable[1] or a configuration file.  It is possible to achieve
 the following objectives.
 
 (1) Installing cogito will not change the meaning of /usr/bin/git by
 default;
 
 (2) System admin can decide a default preference of /usr/bin/git,
 through e.g. /etc/git.rc;
 
 (3) Each user can choose her/his own preference by e.g. ~/.gitrc;
 
 (4) cogito on Debian works the same as on other systems.

This sounds like a great suggestion, thank you very much.

In this thought experiment, the cogito package would do this:

1.  Install its git as /usr/bin/git.scm (or something).

2.  Divert GNU Interactive Tools' /usr/bin/git to /usr/bin/git.shell
(or something).

3.  Install something like this as /usr/bin/git (written in the
mailer, not tested):
#!/bin/sh
GIT=/usr/bin/git.scm
[ -f /etc/git-selector   ]  source /etc/git-selector
[ -f $HOME/.git-selector ]  source $HOME/.git-selector
exec $GIT

4.  Typical /etc/git-selector, set via debconf on install of cogito:
#GIT=/usr/bin/git.scm
GIT=/usr/bin/git.shell

5.  Typical $HOME/.git-selector, set by user:
GIT=/usr/bin/git.scm
#GIT=/usr/bin/git.shell


Wow, this seems like a really nice save -- I especially like objective 4.

I changed the names git.rc and .gitrc, as those might reasonably be
taken by the upstream package(s).

Does this solution seem acceptable to everyone?


-- 
Sebastian Kuzminsky


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



Re: mass bug filing on packages that are blocking use of cdebconf

2005-08-11 Thread Thijs Kinkhorst
On Tue, 2005-08-02 at 18:46 -0400, Joey Hess wrote:
 Jeroen van Wolffelaar [EMAIL PROTECTED]
phpbb2

For the curious: fixed in svn, will be included in next upload.


Thijs


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


Re: libxslt1 / libxslt1.1 clean-up, comments welcome

2005-08-11 Thread Mike Hommey
On Thu, Aug 11, 2005 at 01:40:41PM -0500, Graham Wilson [EMAIL PROTECTED] 
wrote:
 On Thu, Aug 11, 2005 at 07:41:08PM +0200, Mike Hommey wrote:
  Now that no package depend on it, I am going to remove it, but that
  leaves a libxslt1.1 package alone, not really respectful of the debian
  standards for package naming.
 
 How is it not respectful of Debian standards for package naming?

The run-time shared library needs to be placed in a package whose name
changes whenever the shared object version changes. The most common
mechanism is to place it in a package called librarynamesoversion, where
soversion is the version number in the soname of the shared library

soname is libxslt.so.1

Mike


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



Re: Packaging a PostScript resource

2005-08-11 Thread Alexander Schmehl
* Terry Burton [EMAIL PROTECTED] [050810 17:37]:

  Documentation in /usr/lib/foo? 
  Sorry? I don't understand what documentation you mean. The .ps file _is_ 
 the resource.

Ah, okay.  Sorry, I missunderstood that.


Yours sincerely,
  Alexander

-- 
http://learn.to/quote/
http://www.catb.org/~esr/faqs/smart-questions.html


signature.asc
Description: Digital signature


Re: net-tools maintenance status

2005-08-11 Thread Olaf van der Spek
On 8/11/05, Bernd Eckenfels [EMAIL PROTECTED] wrote:
 On Thu, Aug 11, 2005 at 09:23:12AM +0200, Olaf van der Spek wrote:
  Just one more question: what happened to my original emails?
 
 I read them. Most likely I saved the wrong one for further processing. Thats
 why it is a good idea to copy the bug report. Sorry for your double work.

Thanks, I'll keep them in mind.
When can the patch be expected in unstable?



Re: please fix your RC bugs

2005-08-11 Thread Goswin von Brederlow
Steve Greenland [EMAIL PROTECTED] writes:

 On 10-Aug-05, 13:38 (CDT), Philip Brown [EMAIL PROTECTED] wrote: 
  [1] Useful fragment for cross platform shell scripts:
  
  #!/bin/sh
  # Do the Solaris Dance:
  if [ ! -d ~root ]  ; then
  exec /usr/xpg4/bin/sh $0 $@ 
  fi
  
 
 sigh.. okay, my correction had bugs, too :-)
 better as
 
 
 if [ ! -d ~root -a -x /usr/xpg4/bin/sh  ] ; then
 

 No, because that will let the script continue if there is no POSIX shell
 available. You want it to exit immediately, rather than randomly fail
 when you hit unsupported functionality.

 As a practical matter, any modern Solaris (=7, probably even 2.6 and 2.5)
 machine has /usr/xpg4/bin/sh installed.

 Steve

But what if there is a /usr/xpg4/bin/sh that isn't posix? :)

MfG
Goswin


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



Re: what happened to RunDinstallHourly proposal?

2005-08-11 Thread Goswin von Brederlow
kamaraju kusumanchi [EMAIL PROTECTED] writes:

 Hi
I was just browsing through the wiki and came across this very
interesting idea. It would be really useful if the mirrors are
updated more frequently. I need not wait for one day to erect my
broken sid machine.

 http://wiki.debian.net/?RunDinstallHourly

 I have also read the corresponding thread on debian-devel

 http://lists.debian.org/debian-devel/2005/01/msg00141.html

 I was just wondering if there are any efforts currently undergoing to
 make this a reality? or has the idea been just dropped? What is
 preventing its implementation?

 I guess this is something that should be done by the DDs as they have
 access to the actual machines or is there anything that a normal user
 (like me) can do to make this possible?


 thanks
 raju

Processing time to do a dinstall cycle and pulse all mirrors is quite
high. You would hit mirrors with the next pulse while the old one
still runs a lot of the time and, even worse, update the master mirror
between phase1 and phase2 of the mirror run causing the mirror to be
incosistent for some time.

Also the download traffic would greatly increase with people
downloading Packages.bz2 files every hour.

All that just to break your sid an hour earlier?

MfG
Goswin


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



Re: Bug#322282: ITP: swapspace -- Dynamic swap space manager

2005-08-11 Thread Goswin von Brederlow
Scripsit Jeroen Vermeulen [EMAIL PROTECTED]
 On Wed, Aug 10, 2005 at 01:00:59PM +0200, Henning Makholm wrote:

 On the other hand integrating Debian's *packaging* infrastructure
 (i.e., the debian/ subdirectory) in upstream source cannot be
 recommended. It only creates trouble for developers when the policy
 and environment they are packaging for drift out of sync with your
 offer (as it will inevitably).

 In this particular case though, Debian is the primary environment for
 the program.

 For us, taking the Debian parts out might be just as awkward.

You say us so I assume you are more then one person. Why not make
one of them (or all as a group) Debian maintainer of the package? Make
the package a debian native package, which obviously includes a debian
dir.

You do not have to be a Debian Developer to be a maintainer. As non DD
you only need a DD to sponsor your uploads.

My 2c,
   Goswin


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



Re: what happened to RunDinstallHourly proposal?

2005-08-11 Thread Olaf van der Spek
On 8/11/05, Goswin von Brederlow [EMAIL PROTECTED] wrote:
 Processing time to do a dinstall cycle and pulse all mirrors is quite
 high. You would hit mirrors with the next pulse while the old one
 still runs a lot of the time and, even worse, update the master mirror
 between phase1 and phase2 of the mirror run causing the mirror to be
 incosistent for some time.
 
 Also the download traffic would greatly increase with people
 downloading Packages.bz2 files every hour.

Is downloading deltas/diffs still not supported?

 All that just to break your sid an hour earlier?

Wouldn't that be between 0 and 24 hours earlier?



alioth down ?

2005-08-11 Thread Junichi Uekawa
Hi,

I see that alioth/haydn is down in the IRC channel topic,
and trying to ssh to the server seems to confirm the situation.

Is this a scheduled downtime that I missed an annoucement for or 
some unexpected breakage? (i.e. How long should I wait for it
to come back up)




regards,
junichi
-- 
Junichi Uekawa, Debian Developer   http://www.netfort.gr.jp/~dancer/
183A 70FC 4732 1B87 57A5  CE82 D837 7D4E E81E 55C1 


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



Re: alioth down ?

2005-08-11 Thread Neil McGovern
On Fri, Aug 12, 2005 at 08:18:10AM +0900, Junichi Uekawa wrote:
 Hi,
 
 I see that alioth/haydn is down in the IRC channel topic,
 and trying to ssh to the server seems to confirm the situation.
 
 Is this a scheduled downtime that I missed an annoucement for or 
 some unexpected breakage? (i.e. How long should I wait for it
 to come back up)
 

I think that this was due to some dodgy ram.

I'm sure haydn admins are working as quick as they can :)

Neil
-- 
   __   
 .Ž  `. [EMAIL PROTECTED]
 : :' ! 
 `. `Ž  gpg: B345BDD3
   `-   Please don't cc, I'm subscribed to the list


signature.asc
Description: Digital signature


Re: shouldn't I use update-alternatives for this?

2005-08-11 Thread Henning Makholm
Scripsit Sebastian Kuzminsky [EMAIL PROTECTED]
 Qingning Huo [EMAIL PROTECTED] wrote:

 I suggest dpkg-divert /usr/bin/git, and install a shell script as
 /usr/bin/git, which will invoke either program depending on a certain
 environment variable[1] or a configuration file.

 Does this solution seem acceptable to everyone?

No it doesn't. It has the same basic trouble as using alternatives.
The fact that it uses a granularity of accounts rather than a
granularity of machines for choosing between one program and the
other does not change the property that it requires such a spurious
choice to be made.

The choice is spurious because there is (as I understand it) nothing
inherent in the two pieces of software that makes it nonsensical for
someone to want to use both of them regularly. For this, each of them
needs to have a unique name.

Even if nobody ever wanted to use both, a solution that silently pulls
the carpet from under users that are used to git #1 just because the
sysadmin installs git #2 *and does not uninstall anything*, is not
desirable at all.

If the maintainers of the two packages cannot resolve the question of
name priority amicably, the matter will have to be referred to the
Technical Committee. There can be no circumventing this.

-- 
Henning Makholm   Jeg mener, at der eksisterer et hemmeligt
 selskab med forgreninger i hele verden, som
 arbejder i det skjulte for at udsprede det rygte at
  der eksisterer en verdensomspændende sammensværgelse.



Re: what happened to RunDinstallHourly proposal?

2005-08-11 Thread Steve Langasek
On Thu, Aug 11, 2005 at 12:04:18PM -0400, kamaraju kusumanchi wrote:
   I was just browsing through the wiki and came across this very 
 interesting idea. It would be really useful if the mirrors are updated 
 more frequently. I need not wait for one day to erect my broken sid machine.

 http://wiki.debian.net/?RunDinstallHourly

 I have also read the corresponding thread on debian-devel

 http://lists.debian.org/debian-devel/2005/01/msg00141.html

 I was just wondering if there are any efforts currently undergoing to 
 make this a reality? or has the idea been just dropped? What is 
 preventing its implementation?

The fact that it's technically infeasible for Debian to actually pulse its
mirrors that quickly.  A more realistic proposal has been to pulse things
twice daily, but any change at all would require a substantial reworking of
the infrastructure.

It's also wholly out of the question while ftp-master is in temporary
quarters as it is right now, and probably out of the question until after
the archive split takes place.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer  to set it on, and I will move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Re: what happened to RunDinstallHourly proposal?

2005-08-11 Thread Adeodato Simó
* kamaraju kusumanchi [Thu, 11 Aug 2005 12:04:18 -0400]:

 I need not wait for one day to erect my broken sid machine.

  Indeed, you need not. In case of breakage, fixed packages would be
  available right after upload in http://incoming.debian.org.
  
  (Except during that special hour or now hours of the day...)

-- 
Adeodato Simó
EM: asp16 [ykwim] alu.ua.es | PK: DA6AE621
 
When the only tool you have is a hammer, every problem starts to look
like a nail.


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



Bug#322666: ITP: eyeos -- personal content management system based upon the style of an operating system

2005-08-11 Thread David Moreno Garza
Package: wnpp
Severity: wishlist
Owner: David Moreno Garza [EMAIL PROTECTED]


* Package name: eyeos
  Version : 0.6.2.3
  Upstream Author : Pau Garcia-Milà [EMAIL PROTECTED]
* URL : http://www.eyeos.org/
* License : GPL
  Description : personal CMS based upon the style of a desktop operating 
system

EyeOS is a cross-platform Personal Content Manager System based upon
the style of a desktop operating system. The base package includes
the whole operating system structure and ten apps, as a Calendar,
a File Manager, a Text Editor, an Internal Messenger, a Browser and
a Calculator. Written in PHP.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-386
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)



Re: libxslt1 / libxslt1.1 clean-up, comments welcome

2005-08-11 Thread Steve Langasek
On Thu, Aug 11, 2005 at 07:41:08PM +0200, Mike Hommey wrote:
 I'm about to remove the libxslt1 package, which has been created a long
 time ago for backward compatibility, when upstream did screw up ABI and
 removed support for the libxsltbreakpoint library.

 Now that no package depend on it, I am going to remove it, but that
 leaves a libxslt1.1 package alone, not really respectful of the debian
 standards for package naming.

 I was wondering if I should come back to good practice and provide a
 libxslt1 package with the library, and a dummy libxslt1.1 package for
 upgrade support (which should only be removed after etch release).

 It could break some external stuff depending on old libxslt1 (thus
 libxsltbreakpoint), but are there really any left outside of debian ?

 So, what do you think ? Should I just leave it the way it is now or try
 to make it cleaner ?

I think leaving it as-is would be the better option.  The ideal state is to
never have to reuse a library package name for something with an
incompatible interface; which is exactly what you would be doing here, so
I can only see that being justified if you expect a future upstream version
to have libxslt1.1 as the soname.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Accepted mpich 1.2.5.3-6.1 (source i386 all)

2005-08-11 Thread Adeodato Simó
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 04 Aug 2005 00:15:23 +0200
Source: mpich
Binary: libmpich-mpd1.0c2 libmpich1.0-dev mpe-source mpich-mpd-bin mpich-bin 
libmpich1.0c2 mpi-doc libmpich-shmem1.0c2 libmpich-mpd1.0-dev mpich-shmem-bin 
libmpich-shmem1.0-dev
Architecture: source i386 all
Version: 1.2.5.3-6.1
Distribution: unstable
Urgency: low
Maintainer: Adam C. Powell, IV [EMAIL PROTECTED]
Changed-By: Adeodato Simó [EMAIL PROTECTED]
Description: 
 libmpich-mpd1.0-dev - mpich static libraries and development files
 libmpich-mpd1.0c2 - mpich-mpd runtime shared library
 libmpich-shmem1.0-dev - mpich static libraries and development files
 libmpich-shmem1.0c2 - mpich-shmem runtime shared library
 libmpich1.0-dev - mpich static libraries and development files
 libmpich1.0c2 - mpich runtime shared library
 mpe-source - Source for MPE, for other package to build-depend
 mpi-doc- Documentation for the MPICH implementation of MPI
 mpich-bin  - MPI parallel computing system implementation
 mpich-mpd-bin - MPI parallel computing system implementation, MPD version
 mpich-shmem-bin - MPI parallel computing system implementation, SHMEM version
Closes: 253422 306305 314173 320891 321052 321093 321158
Changes: 
 mpich (1.2.5.3-6.1) unstable; urgency=low
 .
   * Non-maintainer upload based on 1.2.5.3-6 (never in unstable since it was
 rejected from NEW; files grabbed from the maintainer's website).
 .
   * Make the necessary changes for the C++ ABI transition: the libmpich1.0,
 libmpich-mpd1.0 and libmpich-shmem1.0 packages get renamed as appropriate
 ('c2' suffix added):
 + debian/control:
   - renamed packages, and conflict and replace the old ones.
   - updated the dependencies of the *-dev and *-bin packages.
 + debian/rules:
   - added the c2 suffix in a couple places in the install target.
 .
   * Make sure all shipped shared libraries are linked against all libraries
 they use symbols from (closes: #320891). List of changes introduced in
 debian/patches/18_link_against_needed_libs.dpatch:
 .
 + link libmpich++ against libstdc++ and libmpich.
 + link libmpe and libfmpich against libmpich.
 + always invoke the linker with -z defs, and make the build fail if the
   linkage fails (errors were previously ignored).
 + move target mpichsharelibs before mpelib in the Makefile, so that
   -lmpich is available when creating libmpe.so.
 + to implement the above, make util/makesharedlib use the value of
   $EXTRA_LIBS as extra arguments to the linker, and fix the path of the
   created .so symlinks.
 .
   * Fix bogus libpmpich++-p4mpd.so symlink; the soname is libpmpich-p4mpd++
 (closes: #321158). Fix libpmpich++-shmem.so as well, new in 1.2.5.3-6.
 .
   * Remove on clean several files created during build which were not being
 removed (closes: #321052).
 .
   * Added missing build-dependency on tk8.4 | wish (closes: #321093).
 .
 mpich (1.2.5.3-6) unstable; urgency=low
 .
   * Removed mpich and mpich-mpd packages which were deprecated in sarge.
   * Updated DH_COMPAT and standards version.
   * Fixed mpich-bin.prerm to remove alternatives symlinks (closes: #306305).
   * Fixed libmpi++.so link in libmpich1.0-dev.postinst (closes: #314173).
   * Added ch_shmem transport for performance on SMP systems (closes: #253422).
   * Updated TODO file closing items which have been done.
   * Rebuild using new gcc default version (4.0) to make sure C++ is okay.
Files: 
 e086b984314ef4b6b9276643057cfc45 903 devel extra mpich_1.2.5.3-6.1.dsc
 f0996f70c34862961dad860d8e37a893 39285 devel extra mpich_1.2.5.3-6.1.diff.gz
 8abb1e81a2ba9473c45d9342b21dd309 3230910 doc optional 
mpi-doc_1.2.5.3-6.1_all.deb
 7417d52fc2a4643499be3e64a5e7dc0f 7044318 devel extra 
mpe-source_1.2.5.3-6.1_all.deb
 d3c4cb09a1a84d9bf8a23f5775fc2d01 314128 devel extra 
mpich-bin_1.2.5.3-6.1_i386.deb
 d7533fdf8897eb36ad0e02c6fb10346c 364562 devel extra 
mpich-mpd-bin_1.2.5.3-6.1_i386.deb
 ca0894d576caa88083119d7f67f91ac8 251602 devel extra 
mpich-shmem-bin_1.2.5.3-6.1_i386.deb
 eb363a610d4dfecaf3885e5be16db193 917336 libdevel extra 
libmpich1.0-dev_1.2.5.3-6.1_i386.deb
 4ca71c790370c8896668cd9ea478c869 919314 libdevel extra 
libmpich-mpd1.0-dev_1.2.5.3-6.1_i386.deb
 e32f165366027f1e2932ec99d4c4b3e6 860656 libdevel extra 
libmpich-shmem1.0-dev_1.2.5.3-6.1_i386.deb
 6fa402fc9d3036d215ccc4d7f922aa5c 631688 libs extra 
libmpich1.0c2_1.2.5.3-6.1_i386.deb
 99fc33ebe0bee71349af303072f18145 633674 libs extra 
libmpich-mpd1.0c2_1.2.5.3-6.1_i386.deb
 9652c53a1c0ccad5d3f180c826a18ce2 544670 libs extra 
libmpich-shmem1.0c2_1.2.5.3-6.1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Signed by Adeodato Simó [EMAIL PROTECTED]

iEYEARECAAYFAkL6h1oACgkQgyNlRdHEGIIi9gCgmoSBZV9eUhPlt15l3q1Dw6vt
8lMAoNosH9bOFgw6bOqbJwYzuKwbP+7G
=gde6
-END PGP SIGNATURE-


Accepted:
libmpich-mpd1.0-dev_1.2.5.3-6.1_i386.deb
  to 

Accepted partman-base 69 (source powerpc)

2005-08-11 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 10 Aug 2005 15:16:15 +0100
Source: partman-base
Binary: partman-base
Architecture: source powerpc
Version: 69
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Colin Watson [EMAIL PROTECTED]
Description: 
 partman-base - Partition the storage devices (partman) (udeb)
Closes: 320443
Changes: 
 partman-base (69) unstable; urgency=low
 .
   [ Frans Pop ]
   * Apply patch from Max Vozeler adding loop device support
 (closes: #320443).
 .
   [ Colin Watson ]
   * Rename to partman-base, to free up the name 'partman' for use by a .deb
 in the future. Provides: partman for now.
   * Add myself to Uploaders.
Files: 
 e6a04e4587c185fc798c08666e3388a5 691 debian-installer standard 
partman-base_69.dsc
 a4d0db26fd2c1ccfc492c3a979b027f6 133127 debian-installer standard 
partman-base_69.tar.gz
 f020181b624a42092edbb6c98c799a20 125932 debian-installer standard 
partman-base_69_powerpc.udeb
package-type: udeb

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

iD8DBQFC+g0N9t0zAhD6TNERAhfZAKCBp+M5y4nHfFR8/mPKDZ/HfSygfACfb8yI
/JoKLwMyuX4vmV0ey1oKUNs=
=nmit
-END PGP SIGNATURE-


Accepted:
partman-base_69.dsc
  to pool/main/p/partman-base/partman-base_69.dsc
partman-base_69.tar.gz
  to pool/main/p/partman-base/partman-base_69.tar.gz
partman-base_69_powerpc.udeb
  to pool/main/p/partman-base/partman-base_69_powerpc.udeb


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



Accepted fail2ban 0.5.2-1 (source all)

2005-08-11 Thread Yaroslav Halchenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat,  6 Aug 2005 09:21:07 -1000
Source: fail2ban
Binary: fail2ban
Architecture: source all
Version: 0.5.2-1
Distribution: unstable
Urgency: low
Maintainer: [EMAIL PROTECTED]
Changed-By: Yaroslav Halchenko [EMAIL PROTECTED]
Description: 
 fail2ban   - bans IPs that cause multiple authentication errors for ssh/apache
Changes: 
 fail2ban (0.5.2-1) unstable; urgency=low
 .
   * New upstream release
   * No log4py any more
   * removed -i eth0 from config
Files: 
 087d480e576c4a597bf40b39ad0053c8 610 net optional fail2ban_0.5.2-1.dsc
 216f4c03373ac7db7b603a01b4ff54a2 18753 net optional fail2ban_0.5.2.orig.tar.gz
 82d0b5f84424a0a4a53d4b0bf0f4cce6 5679 net optional fail2ban_0.5.2-1.diff.gz
 2f0727438af13026e90192bc30b829f7 20946 net optional fail2ban_0.5.2-1_all.deb

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

iD8DBQFC+V/OLz4Gnv7CP7IRAlSiAJ4tkqDUIVtEbqM7YOAjINxz8hvG1ACfbmco
B5uYIkLqGQlEHLx2l+5LOuY=
=xnMi
-END PGP SIGNATURE-


Accepted:
fail2ban_0.5.2-1.diff.gz
  to pool/main/f/fail2ban/fail2ban_0.5.2-1.diff.gz
fail2ban_0.5.2-1.dsc
  to pool/main/f/fail2ban/fail2ban_0.5.2-1.dsc
fail2ban_0.5.2-1_all.deb
  to pool/main/f/fail2ban/fail2ban_0.5.2-1_all.deb
fail2ban_0.5.2.orig.tar.gz
  to pool/main/f/fail2ban/fail2ban_0.5.2.orig.tar.gz


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



Accepted core++ 1.7-2 (source all i386)

2005-08-11 Thread Joachim Reichel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 15 Jul 2005 00:38:55 +0200
Source: core++
Binary: libcore++-demo libcore++-dev libcore++-doc libcore++1c2
Architecture: source all i386
Version: 1.7-2
Distribution: unstable
Urgency: low
Maintainer: Joachim Reichel [EMAIL PROTECTED]
Changed-By: Joachim Reichel [EMAIL PROTECTED]
Description: 
 libcore++-demo - C/C++ library for robust computation (demos)
 libcore++-dev - C/C++ library for robust computation (development files)
 libcore++-doc - C/C++ library for robust computation (documentation)
 libcore++1c2 - C/C++ library for robust computation
Changes: 
 core++ (1.7-2) unstable; urgency=low
 .
   * transition to g++-4.0.
 - libcore++1 renamed to libcore++1c2,
   Conflicts: libcore++1 and Replaces: libcore++1c2 added.
 - debian/patches/g++-4.0-compatibility.dpatch added.
   * debian/libcore++1c2.shlibs added.
   * Updated Standards-Version to 3.6.2.
Files: 
 1dfba661a7f815e6eb982982387b1a03 713 non-free/math optional core++_1.7-2.dsc
 8352c9a260e7d8f61140a076200807a4 13863 non-free/math optional 
core++_1.7-2.diff.gz
 317a3512b311818ebcac67537c759af8 1234350 non-free/doc optional 
libcore++-doc_1.7-2_all.deb
 7986588d55466933a8cd0782db0b8126 396388 non-free/devel optional 
libcore++-demo_1.7-2_all.deb
 7f32d3a9df01aa7ef7a0aaf541561541 415670 non-free/libs optional 
libcore++1c2_1.7-2_i386.deb
 8cc9853102e5e6117bb95f299204e30d 751828 non-free/libdevel optional 
libcore++-dev_1.7-2_i386.deb

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

iD8DBQFC+V970i2bPSHbMcURAjVJAKCxRCrOgujjwNC/qQkn7o+EeqDQmACfQQXN
P6qbop41P5du4flbB81yZYQ=
=GwsN
-END PGP SIGNATURE-


Accepted:
core++_1.7-2.diff.gz
  to pool/non-free/c/core++/core++_1.7-2.diff.gz
core++_1.7-2.dsc
  to pool/non-free/c/core++/core++_1.7-2.dsc
libcore++-demo_1.7-2_all.deb
  to pool/non-free/c/core++/libcore++-demo_1.7-2_all.deb
libcore++-dev_1.7-2_i386.deb
  to pool/non-free/c/core++/libcore++-dev_1.7-2_i386.deb
libcore++-doc_1.7-2_all.deb
  to pool/non-free/c/core++/libcore++-doc_1.7-2_all.deb
libcore++1c2_1.7-2_i386.deb
  to pool/non-free/c/core++/libcore++1c2_1.7-2_i386.deb


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



Accepted apcupsd 3.10.18-1 (source i386 all)

2005-08-11 Thread Samuele Giovanni Tonon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 11:40:35 +0200
Source: apcupsd
Binary: apcupsd-doc apcupsd-cgi apcupsd
Architecture: source i386 all
Version: 3.10.18-1
Distribution: unstable
Urgency: low
Maintainer: Samuele Giovanni Tonon [EMAIL PROTECTED]
Changed-By: Samuele Giovanni Tonon [EMAIL PROTECTED]
Description: 
 apcupsd- APC UPS Power Management
 apcupsd-cgi - Cgi for APC UPS Power Management
 apcupsd-doc - Documentation for apcupsd
Closes: 256261 310460 313642 315928 316398 316932 321929
Changes: 
 apcupsd (3.10.18-1) unstable; urgency=low
 .
   * New Upstream Release (Closes: #315928)
   * apcupsd-3.10.17 is now in stable (Closes: #256261)
   * Fixed NEWS file (Closes: #310460)
   * Provides Virtual Package ups-monitor added (Closes: #316398)
   * Better doc for NISPORT (Closes: #321929)
   * Other information on NEWS file inserted (Closes: #313642) (Closes: #316932)
Files: 
 dec5ba20b57142aa954b3851fa2d2841 765 - extra apcupsd_3.10.18-1.dsc
 7e66988105314eff0a0f3da4be99402d 5673946 - extra apcupsd_3.10.18.orig.tar.gz
 513ad48a326b7cd7de4686ad99396614 50181 - extra apcupsd_3.10.18-1.diff.gz
 d6d3664e3229cb1b8aa122e151a02457 304962 admin extra apcupsd_3.10.18-1_i386.deb
 529acf53ab5c0addf6040ff9817608cf 46708 web extra apcupsd-cgi_3.10.18-1_i386.deb
 8aef5207fda378a8e361fd3cca8fbaab 3129314 doc extra 
apcupsd-doc_3.10.18-1_all.deb

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

iD8DBQFC+x9PzvFcH/JZfgQRAh2LAJ90RWa//ej+PR4Jr9OR0dczV0ZEHQCeKD4m
JMETqyxPc+DpfyWNymhgpLM=
=XqdS
-END PGP SIGNATURE-


Accepted:
apcupsd-cgi_3.10.18-1_i386.deb
  to pool/main/a/apcupsd/apcupsd-cgi_3.10.18-1_i386.deb
apcupsd-doc_3.10.18-1_all.deb
  to pool/main/a/apcupsd/apcupsd-doc_3.10.18-1_all.deb
apcupsd_3.10.18-1.diff.gz
  to pool/main/a/apcupsd/apcupsd_3.10.18-1.diff.gz
apcupsd_3.10.18-1.dsc
  to pool/main/a/apcupsd/apcupsd_3.10.18-1.dsc
apcupsd_3.10.18-1_i386.deb
  to pool/main/a/apcupsd/apcupsd_3.10.18-1_i386.deb
apcupsd_3.10.18.orig.tar.gz
  to pool/main/a/apcupsd/apcupsd_3.10.18.orig.tar.gz


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



Accepted libcatalyst-modules-perl 0.01 (source all)

2005-08-11 Thread Florian Ragwitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 10 Aug 2005 10:44:57 +0200
Source: libcatalyst-modules-perl
Binary: libcatalyst-modules-perl
Architecture: source all
Version: 0.01
Distribution: unstable
Urgency: low
Maintainer: Debian Catalyst Maintainers [EMAIL PROTECTED]
Changed-By: Florian Ragwitz [EMAIL PROTECTED]
Description: 
 libcatalyst-modules-perl - Modules for Catalyst
Changes: 
 libcatalyst-modules-perl (0.01) unstable; urgency=low
 .
   * Initial release.
Files: 
 c9173a35382439555c9b6b6e28966b1c 1046 perl optional 
libcatalyst-modules-perl_0.01.dsc
 78e18b2187236ff55dac5cec8c9e66ef 8306 perl optional 
libcatalyst-modules-perl_0.01.tar.gz
 986ff39020994b371f5b2d83ac239bbb 10328 perl optional 
libcatalyst-modules-perl_0.01_all.deb

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

iQCVAwUBQvoNub8Zfhn2SkeXAQLmeQQAhS1iaVG8o3PdkErIf+IE5b+8tfmYPcFh
VX/7QemwJifHdTH39IU3SnZywDYZJXm2+f5srTI7laMvPFJ6dc+cOVXFpn8GbEa3
viUToRjYBfIJtDAtQuS8RzvkKJCdgBWmvRJT0C2fM8xDrcHB+aFWELB2nOoK0Eis
iGVfniwB7Wc=
=Ej13
-END PGP SIGNATURE-


Accepted:
libcatalyst-modules-perl_0.01.dsc
  to pool/main/libc/libcatalyst-modules-perl/libcatalyst-modules-perl_0.01.dsc
libcatalyst-modules-perl_0.01.tar.gz
  to 
pool/main/libc/libcatalyst-modules-perl/libcatalyst-modules-perl_0.01.tar.gz
libcatalyst-modules-perl_0.01_all.deb
  to 
pool/main/libc/libcatalyst-modules-perl/libcatalyst-modules-perl_0.01_all.deb


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



Accepted libcatalyst-modules-perl 0.02 (source all)

2005-08-11 Thread Florian Ragwitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 10 Aug 2005 16:59:57 +0200
Source: libcatalyst-modules-perl
Binary: libcatalyst-modules-perl
Architecture: source all
Version: 0.02
Distribution: unstable
Urgency: low
Maintainer: Debian Catalyst Maintainers [EMAIL PROTECTED]
Changed-By: Florian Ragwitz [EMAIL PROTECTED]
Description: 
 libcatalyst-modules-perl - Modules for Catalyst
Changes: 
 libcatalyst-modules-perl (0.02) unstable; urgency=low
 .
   * Updated C::M::CDBI::CRUD to 0.03.
Files: 
 c1d68bc311652971a4914d94ac1b3576 1046 perl optional 
libcatalyst-modules-perl_0.02.dsc
 2d62b3bddcade2b6444dc2d0074e85d6 8372 perl optional 
libcatalyst-modules-perl_0.02.tar.gz
 681e7e9b9276b96769908234e05f9a2d 10382 perl optional 
libcatalyst-modules-perl_0.02_all.deb

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

iQCVAwUBQvoXHL8Zfhn2SkeXAQLq4gQAm3+0v0jgHJUyJlLc2yf0dl8dfL+G1i1z
bikBBSQWJqUSWDPwCLhNIlaPA+0cmf828RnbJF0jqCSe2mnbQWz2a+PFH9jdYjWb
k0XMQv7FFY96qk5k6+2xJbLj/bYeXNG6mtdtaTy8B4zB2uOs+FviWZCfe3Uj7H79
KZc/MAFJia0=
=S8E5
-END PGP SIGNATURE-


Accepted:
libcatalyst-modules-perl_0.02.dsc
  to pool/main/libc/libcatalyst-modules-perl/libcatalyst-modules-perl_0.02.dsc
libcatalyst-modules-perl_0.02.tar.gz
  to 
pool/main/libc/libcatalyst-modules-perl/libcatalyst-modules-perl_0.02.tar.gz
libcatalyst-modules-perl_0.02_all.deb
  to 
pool/main/libc/libcatalyst-modules-perl/libcatalyst-modules-perl_0.02_all.deb


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



Accepted libclass-dbi-fromform-perl 0.03-1 (source all)

2005-08-11 Thread Florian Ragwitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 10 Aug 2005 12:25:51 +0200
Source: libclass-dbi-fromform-perl
Binary: libclass-dbi-fromform-perl
Architecture: source all
Version: 0.03-1
Distribution: unstable
Urgency: low
Maintainer: Debian Catalyst Maintainers [EMAIL PROTECTED]
Changed-By: Florian Ragwitz [EMAIL PROTECTED]
Description: 
 libclass-dbi-fromform-perl - Perl module to update Class::DBI data using 
Data::FormValidator
Changes: 
 libclass-dbi-fromform-perl (0.03-1) unstable; urgency=low
 .
   * Initial release.
Files: 
 ec11c7b309559c9343604a959cf04d8b 928 perl optional 
libclass-dbi-fromform-perl_0.03-1.dsc
 b097e1c224f406c0b34eb12ca27c4b9b 1844 perl optional 
libclass-dbi-fromform-perl_0.03.orig.tar.gz
 20da4e48ed51d5ee558d479e0ece659d 1294 perl optional 
libclass-dbi-fromform-perl_0.03-1.diff.gz
 b2ca8aa866f4dbcb770063747452e0aa 4838 perl optional 
libclass-dbi-fromform-perl_0.03-1_all.deb

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

iQCVAwUBQvoNW78Zfhn2SkeXAQKF+QP+Mi5eYXiDwtcbub1Edj0+BUWw6rHi9aZY
BdhfcB+fcGDH7vKQfIZ7BS+wvVBBOcqUp3EZBwM1h+jSalA9u4uCeoIG6PXwehaj
8p8ZgMUcTnZk0q0pKpBS/Ih/frs/au10YobJMMDJT64yM4I/QxMAGzOt82ua8TeW
yryorL+dHys=
=UYTp
-END PGP SIGNATURE-


Accepted:
libclass-dbi-fromform-perl_0.03-1.diff.gz
  to 
pool/main/libc/libclass-dbi-fromform-perl/libclass-dbi-fromform-perl_0.03-1.diff.gz
libclass-dbi-fromform-perl_0.03-1.dsc
  to 
pool/main/libc/libclass-dbi-fromform-perl/libclass-dbi-fromform-perl_0.03-1.dsc
libclass-dbi-fromform-perl_0.03-1_all.deb
  to 
pool/main/libc/libclass-dbi-fromform-perl/libclass-dbi-fromform-perl_0.03-1_all.deb
libclass-dbi-fromform-perl_0.03.orig.tar.gz
  to 
pool/main/libc/libclass-dbi-fromform-perl/libclass-dbi-fromform-perl_0.03.orig.tar.gz


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



Accepted systraq 0.0.20050213-6 (source all)

2005-08-11 Thread Laurent Fousse
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 11:30:11 +0200
Source: systraq
Binary: systraq
Architecture: source all
Version: 0.0.20050213-6
Distribution: unstable
Urgency: low
Maintainer: Laurent Fousse [EMAIL PROTECTED]
Changed-By: Laurent Fousse [EMAIL PROTECTED]
Description: 
 systraq- monitor your system and warn when system files change
Changes: 
 systraq (0.0.20050213-6) unstable; urgency=low
 .
   * Changed one remaining systraq to debian-systraq in the cron file,
 could cause email delivery to fail.
   * Modified postinst to not warn about the old username if the new username
 is already in use.
   * Updated Standards-Version to 3.6.2, no change needed.
Files: 
 44189a31b6cf613a9ed22c58f176dc26 682 admin optional systraq_0.0.20050213-6.dsc
 b4c21c3e9eb88eb933bf988e02237d1d 6630 admin optional 
systraq_0.0.20050213-6.diff.gz
 96b6a31605373b44ec88a253415572d0 437408 admin optional 
systraq_0.0.20050213-6_all.deb

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

iD8DBQFC+yL2RoAVF6FpbSsRAk15AJ9N/ne7xyVIrlrshr93USEGC7HFgwCgkYOF
vy9sfh0lte92PGYRwNqWswo=
=burt
-END PGP SIGNATURE-


Accepted:
systraq_0.0.20050213-6.diff.gz
  to pool/main/s/systraq/systraq_0.0.20050213-6.diff.gz
systraq_0.0.20050213-6.dsc
  to pool/main/s/systraq/systraq_0.0.20050213-6.dsc
systraq_0.0.20050213-6_all.deb
  to pool/main/s/systraq/systraq_0.0.20050213-6_all.deb


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



Accepted traffic-vis 0.34-13 (source i386)

2005-08-11 Thread Samuele Giovanni Tonon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 12:17:35 +0200
Source: traffic-vis
Binary: traffic-vis
Architecture: source i386
Version: 0.34-13
Distribution: unstable
Urgency: low
Maintainer: Samuele Giovanni Tonon [EMAIL PROTECTED]
Changed-By: Samuele Giovanni Tonon [EMAIL PROTECTED]
Description: 
 traffic-vis - A sniffer that can display reports in HTML, Postscript and other 
Closes: 308749 322330
Changes: 
 traffic-vis (0.34-13) unstable; urgency=low
 .
   * Added CS and VI translation, thanks to
  Miroslav Kure and Clytie Siddall (Closes: #308749) (Closes: #322330)
Files: 
 46b0d983a1e9b0998d32de2d3188ce04 621 net optional traffic-vis_0.34-13.dsc
 5ebbdef44c03a9ec83a39a10547b9343 9380 net optional traffic-vis_0.34-13.diff.gz
 b4e9eba24acad34951b5b6ab564a741a 55838 net optional 
traffic-vis_0.34-13_i386.deb

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

iD8DBQFC+yZjzvFcH/JZfgQRArQDAJ0ZMEV6T3dzF/5qjveNh1BtXYssXwCgnSLh
ASl5Py1k9MzOcuIm1+OOY2c=
=YpBF
-END PGP SIGNATURE-


Accepted:
traffic-vis_0.34-13.diff.gz
  to pool/main/t/traffic-vis/traffic-vis_0.34-13.diff.gz
traffic-vis_0.34-13.dsc
  to pool/main/t/traffic-vis/traffic-vis_0.34-13.dsc
traffic-vis_0.34-13_i386.deb
  to pool/main/t/traffic-vis/traffic-vis_0.34-13_i386.deb


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



Accepted rancid 2.3.1-2 (source all i386)

2005-08-11 Thread Samuele Giovanni Tonon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 12:04:35 +0200
Source: rancid
Binary: rancid-installer rancid-util rancid-cgi rancid-core
Architecture: source all i386
Version: 2.3.1-2
Distribution: unstable
Urgency: low
Maintainer: Samuele Giovanni Tonon [EMAIL PROTECTED]
Changed-By: Samuele Giovanni Tonon [EMAIL PROTECTED]
Description: 
 rancid-cgi - CGI for rancid
 rancid-core - rancid -- Really Awesome New Cisco confIg Differ
 rancid-installer - Installer for Rancid suite on non i386 machine
 rancid-util - Utilities for rancid
Closes: 306311 319636
Changes: 
 rancid (2.3.1-2) unstable; urgency=low
 .
   * Added amd64 to arch that can be compiled (Closes: #306311)
   * Added Czech translationa translation, thanks to Miroslav Kure
 (Closes: #319636)
Files: 
 cfb566782759928a003cbb0419a4b773 663 non-free/net optional rancid_2.3.1-2.dsc
 8f8e4709b80acc54d3ada0539e840f80 33219 non-free/net optional 
rancid_2.3.1-2.diff.gz
 a2bd19759b5d60920561101628819e6d 175804 non-free/net optional 
rancid-core_2.3.1-2_i386.deb
 4d2b9bc5e81dcf335b227af96da96d1f 35488 non-free/net optional 
rancid-util_2.3.1-2_i386.deb
 b02146b23bacabcc9270be04ff07bc2f 39926 non-free/net optional 
rancid-cgi_2.3.1-2_i386.deb
 acc4c4c91667aedc54301db97c005421 14900 non-free/net optional 
rancid-installer_2.3.1-2_all.deb

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

iD8DBQFC+yTuzvFcH/JZfgQRApdxAJ9vQ+g59dHE8q8GPuFvmZANXdYhEwCaArVy
578cCJvUhs11LPF4CK14Et0=
=lJf/
-END PGP SIGNATURE-


Accepted:
rancid-cgi_2.3.1-2_i386.deb
  to pool/non-free/r/rancid/rancid-cgi_2.3.1-2_i386.deb
rancid-core_2.3.1-2_i386.deb
  to pool/non-free/r/rancid/rancid-core_2.3.1-2_i386.deb
rancid-installer_2.3.1-2_all.deb
  to pool/non-free/r/rancid/rancid-installer_2.3.1-2_all.deb
rancid-util_2.3.1-2_i386.deb
  to pool/non-free/r/rancid/rancid-util_2.3.1-2_i386.deb
rancid_2.3.1-2.diff.gz
  to pool/non-free/r/rancid/rancid_2.3.1-2.diff.gz
rancid_2.3.1-2.dsc
  to pool/non-free/r/rancid/rancid_2.3.1-2.dsc


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



Accepted python-crypto 2.0+dp1-2.1 (source i386)

2005-08-11 Thread Bastian Kleineidam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  9 Aug 2005 10:54:41 +0200
Source: python-crypto
Binary: python2.1-crypto python-crypto python2.3-crypto python2.2-crypto
Architecture: source i386
Version: 2.0+dp1-2.1
Distribution: unstable
Urgency: low
Maintainer: Andreas Rottmann [EMAIL PROTECTED]
Changed-By: Bastian Kleineidam [EMAIL PROTECTED]
Description: 
 python-crypto - cryptographic algorithms and protocols for Python
 python2.1-crypto - cryptographic algorithms and protocols for Python
 python2.2-crypto - cryptographic algorithms and protocols for Python
 python2.3-crypto - cryptographic algorithms and protocols for Python
Closes: 318055
Changes: 
 python-crypto (2.0+dp1-2.1) unstable; urgency=low
 .
   * NMU to make package installable again
   * Added missing build dependency on (versioned) libgmp3-dev, otherwise
 the _fastmath module won't be compiled.
   * Recompile against libgmp3c2 (Closes: #318055)
Files: 
 c8660355585435ebf6583dfea2565f90 765 python optional 
python-crypto_2.0+dp1-2.1.dsc
 8a46ca7bdc1e22b991ff0d0d694d9c32 4042 python optional 
python-crypto_2.0+dp1-2.1.diff.gz
 38dcc8f0ff3d8e8f0b52f720433176c3 10656 python optional 
python-crypto_2.0+dp1-2.1_i386.deb
 4cdd6c91662e057a1246f890d217f11e 158924 python optional 
python2.1-crypto_2.0+dp1-2.1_i386.deb
 2bbe470c6dbe6f3f31f82dbd0c6e0081 166812 python optional 
python2.2-crypto_2.0+dp1-2.1_i386.deb
 25ba55c6ed6e098c9bcee96da6f42207 166902 python optional 
python2.3-crypto_2.0+dp1-2.1_i386.deb

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

iD8DBQFC+HcseBwlBDLsbz4RAmjrAJ9CixL5tB9ZLF4rBFIkE/7cBQE5jACfWY8V
/81dPcLCf2KKG4iBmpLLzwM=
=UYxw
-END PGP SIGNATURE-


Accepted:
python-crypto_2.0+dp1-2.1.diff.gz
  to pool/main/p/python-crypto/python-crypto_2.0+dp1-2.1.diff.gz
python-crypto_2.0+dp1-2.1.dsc
  to pool/main/p/python-crypto/python-crypto_2.0+dp1-2.1.dsc
python-crypto_2.0+dp1-2.1_i386.deb
  to pool/main/p/python-crypto/python-crypto_2.0+dp1-2.1_i386.deb
python2.1-crypto_2.0+dp1-2.1_i386.deb
  to pool/main/p/python-crypto/python2.1-crypto_2.0+dp1-2.1_i386.deb
python2.2-crypto_2.0+dp1-2.1_i386.deb
  to pool/main/p/python-crypto/python2.2-crypto_2.0+dp1-2.1_i386.deb
python2.3-crypto_2.0+dp1-2.1_i386.deb
  to pool/main/p/python-crypto/python2.3-crypto_2.0+dp1-2.1_i386.deb


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



Accepted driftnet 0.1.6-4 (source i386)

2005-08-11 Thread Steve Kemp
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu,  11 Aug 2005 06:54:36 +
Source: driftnet
Binary: driftnet
Architecture: source i386
Version: 0.1.6-4
Distribution: unstable
Urgency: low
Maintainer: Steve Kemp [EMAIL PROTECTED]
Changed-By: Steve Kemp [EMAIL PROTECTED]
Description: 
 driftnet   - Picks out and displays images from network traffic
Closes: 301695
Changes: 
 driftnet (0.1.6-4) unstable; urgency=low
 .
   * More changes from Eric Cooper:
  * Fixed button_press/release code that broke with gtk2
  * Added support for PNG image capture (Closes: #301695)
Files: 
 2417550d91d38eb2676af9a83e594bf4 632 admin extra driftnet_0.1.6-4.dsc
 b9e776d649c5d51624958da35d2e9b41 5844 admin extra driftnet_0.1.6-4.diff.gz
 9cdaf5fdb44d296f1694a353f543fc23 25858 admin extra driftnet_0.1.6-4_i386.deb

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

iD8DBQFC+uxHwM/Gs81MDZ0RAjCGAJ9RuED27uAJAZxPKPLJaUbEfJU6QQCgnxwK
B33G8pkreiOxM3sItSHy20I=
=Ot/Z
-END PGP SIGNATURE-


Accepted:
driftnet_0.1.6-4.diff.gz
  to pool/main/d/driftnet/driftnet_0.1.6-4.diff.gz
driftnet_0.1.6-4.dsc
  to pool/main/d/driftnet/driftnet_0.1.6-4.dsc
driftnet_0.1.6-4_i386.deb
  to pool/main/d/driftnet/driftnet_0.1.6-4_i386.deb


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



Accepted gamin 0.1.5-1 (source powerpc)

2005-08-11 Thread Sjoerd Simons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 08:01:02 +0200
Source: gamin
Binary: gamin python2.3-gamin libgamin0 libgamin-dev
Architecture: source powerpc
Version: 0.1.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers [EMAIL PROTECTED]
Changed-By: Sjoerd Simons [EMAIL PROTECTED]
Description: 
 gamin  - File and directory monitoring system
 libgamin-dev - Development files for the gamin client library
 libgamin0  - Client library for the gamin file and directory monitoring system
 python2.3-gamin - Python binding for the gamin client library
Changes: 
 gamin (0.1.5-1) unstable; urgency=low
 .
   * New upstream release
   * debian/patches/00_compile_without_inotify.patch
 + Fix compilation when inotify support is disabled
Files: 
 f8260e6958e8cd326b018d93d3fff7c7 1575 admin optional gamin_0.1.5-1.dsc
 0fad3fce44466bbb5a5d0450b4700e05 531603 admin optional gamin_0.1.5.orig.tar.gz
 d19868ec636aff16b46b8581ab976c45 3461 admin optional gamin_0.1.5-1.diff.gz
 a5ef36315c9a330db88d5f1c676da5d9 49522 admin optional gamin_0.1.5-1_powerpc.deb
 3872416236750a78e5cd5d3ce1d47fbe 32502 libs optional 
libgamin0_0.1.5-1_powerpc.deb
 bea749f9a3f9e862121c0a072d8ed11e 51670 libdevel optional 
libgamin-dev_0.1.5-1_powerpc.deb
 7a15277b7bc44af89beb14d6240920d3 26002 python optional 
python2.3-gamin_0.1.5-1_powerpc.deb

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

iD8DBQFC+vBfgTd+SodosdIRAvumAJ9SQt0Injy4AtJlGx56gzelv5VF0gCfeR/v
+tAfCoWmv0AbGOl060HP5DY=
=YH3A
-END PGP SIGNATURE-


Accepted:
gamin_0.1.5-1.diff.gz
  to pool/main/g/gamin/gamin_0.1.5-1.diff.gz
gamin_0.1.5-1.dsc
  to pool/main/g/gamin/gamin_0.1.5-1.dsc
gamin_0.1.5-1_powerpc.deb
  to pool/main/g/gamin/gamin_0.1.5-1_powerpc.deb
gamin_0.1.5.orig.tar.gz
  to pool/main/g/gamin/gamin_0.1.5.orig.tar.gz
libgamin-dev_0.1.5-1_powerpc.deb
  to pool/main/g/gamin/libgamin-dev_0.1.5-1_powerpc.deb
libgamin0_0.1.5-1_powerpc.deb
  to pool/main/g/gamin/libgamin0_0.1.5-1_powerpc.deb
python2.3-gamin_0.1.5-1_powerpc.deb
  to pool/main/g/gamin/python2.3-gamin_0.1.5-1_powerpc.deb


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



Accepted pxlib 0.5.1-1 (source powerpc)

2005-08-11 Thread Uwe Steinmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 08:49:44 +0200
Source: pxlib
Binary: pxlib-dev pxlib1
Architecture: source powerpc
Version: 0.5.1-1
Distribution: unstable
Urgency: low
Maintainer: Uwe Steinmann [EMAIL PROTECTED]
Changed-By: Uwe Steinmann [EMAIL PROTECTED]
Description: 
 pxlib-dev  - library to read/write Paradox database files
 pxlib1 - library to read/write Paradox database files
Changes: 
 pxlib (0.5.1-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 c10810639bcaa122667c7ab96e03eb53 630 - optional pxlib_0.5.1-1.dsc
 ad969f041de588aeafdcf34813948039 463166 - optional pxlib_0.5.1.orig.tar.gz
 85dcbe3fab070946485962199c7fd703 7433 - optional pxlib_0.5.1-1.diff.gz
 a92c0b2a625f8ca06a434253a7533fa8 87140 libdevel optional 
pxlib-dev_0.5.1-1_powerpc.deb
 9fa304cc41896521bdff2ea18cc743f2 45574 libs optional pxlib1_0.5.1-1_powerpc.deb

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

iD8DBQFC+vWPih2Zvw18pwERArwYAJ9CioNnG09PlJI2Q2p2+fMJAtvIwACfbglM
o6PXqVMYl94MAiQTpuqKidg=
=My8J
-END PGP SIGNATURE-


Accepted:
pxlib-dev_0.5.1-1_powerpc.deb
  to pool/main/p/pxlib/pxlib-dev_0.5.1-1_powerpc.deb
pxlib1_0.5.1-1_powerpc.deb
  to pool/main/p/pxlib/pxlib1_0.5.1-1_powerpc.deb
pxlib_0.5.1-1.diff.gz
  to pool/main/p/pxlib/pxlib_0.5.1-1.diff.gz
pxlib_0.5.1-1.dsc
  to pool/main/p/pxlib/pxlib_0.5.1-1.dsc
pxlib_0.5.1.orig.tar.gz
  to pool/main/p/pxlib/pxlib_0.5.1.orig.tar.gz


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



Accepted plucker 1.8-6 (source i386)

2005-08-11 Thread Amaya Rodrigo Sastre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 10:09:50 +0200
Source: plucker
Binary: plucker plucker-desktop
Architecture: source i386
Version: 1.8-6
Distribution: unstable
Urgency: low
Maintainer: Amaya Rodrigo Sastre [EMAIL PROTECTED]
Changed-By: Amaya Rodrigo Sastre [EMAIL PROTECTED]
Description: 
 plucker- Pluck stuff from the web and read it on your PalmOS device
 plucker-desktop - Plucker Desktop is a GUI for Plucker
Closes: 321554
Changes: 
 plucker (1.8-6) unstable; urgency=low
 .
   * Corrected Dependencies on libwxgtk2.4-1 (Closes: #321554).
   * Jens, you will be very dearly missed.
Files: 
 35151cbace01552729325969ddbcecf4 723 otherosfs optional plucker_1.8-6.dsc
 cf3c570b986d9f2e581d3863a20a541f 42599 otherosfs optional plucker_1.8-6.diff.gz
 a1038c6b05211ba4d44481ddda64764f 409296 otherosfs optional 
plucker_1.8-6_i386.deb
 7fe5d05e949911b822bf486fc5d67c5f 820484 otherosfs optional 
plucker-desktop_1.8-6_i386.deb

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

iD8DBQFC+wmQNFDtUT/MKpARAnZ3AJ9CXepViW595Vo95N+s3/qRfIUImQCdGfty
b4a9knM9ZkwJlIGkze/NsAI=
=DAyy
-END PGP SIGNATURE-


Accepted:
plucker-desktop_1.8-6_i386.deb
  to pool/main/p/plucker/plucker-desktop_1.8-6_i386.deb
plucker_1.8-6.diff.gz
  to pool/main/p/plucker/plucker_1.8-6.diff.gz
plucker_1.8-6.dsc
  to pool/main/p/plucker/plucker_1.8-6.dsc
plucker_1.8-6_i386.deb
  to pool/main/p/plucker/plucker_1.8-6_i386.deb


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



Accepted libfoundation1.0 1.0.76-1 (source i386 all)

2005-08-11 Thread Sebastian Ley
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 11:48:39 +0200
Source: libfoundation1.0
Binary: libfoundation-tools libfoundation-data libfoundation1.0-dev 
libfoundation1.0
Architecture: source i386 all
Version: 1.0.76-1
Distribution: unstable
Urgency: low
Maintainer: Sebastian Ley [EMAIL PROTECTED]
Changed-By: Sebastian Ley [EMAIL PROTECTED]
Description: 
 libfoundation-data - Static data files used by libFoundation
 libfoundation-tools - Configuration tools for libFoundation
 libfoundation1.0 - Implementation of the OpenStep specification
 libfoundation1.0-dev - Development files for libfoundation
Changes: 
 libfoundation1.0 (1.0.76-1) unstable; urgency=low
 .
   * New upstream release
   * Declare an existing alternative dependency to virtual package
 libobjc-lf-dev
Files: 
 70c9d0c13cca7ef94ef0c87a2ee5eb57 744 - extra libfoundation1.0_1.0.76-1.dsc
 9f974070f30ba9e45d799a56674471d4 522518 - extra 
libfoundation1.0_1.0.76.orig.tar.gz
 9841363fbfc083f48290a0bd1ebdb4aa 22489 - extra 
libfoundation1.0_1.0.76-1.diff.gz
 c9996440aed536023e0c5beb50a0a22d 106994 libdevel extra 
libfoundation1.0-dev_1.0.76-1_i386.deb
 22d107afe660ab1954679858d687c422 396446 libs extra 
libfoundation1.0_1.0.76-1_i386.deb
 eed7177b536342d50f8039191305cd2a 54800 misc extra 
libfoundation-data_1.0.76-1_all.deb
 a9ed72eeefc2471fce18d4cd580c8743 43456 misc extra 
libfoundation-tools_1.0.76-1_i386.deb

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

iD8DBQFC+yCgl+AzCZ/W4+YRAsGPAKDY9jjU0xbuTd3GzXK8mhZhoiZusACg8Lgk
/sHWOJPQyJcicZZvEhzux5A=
=FS1E
-END PGP SIGNATURE-


Accepted:
libfoundation-data_1.0.76-1_all.deb
  to pool/main/libf/libfoundation1.0/libfoundation-data_1.0.76-1_all.deb
libfoundation-tools_1.0.76-1_i386.deb
  to pool/main/libf/libfoundation1.0/libfoundation-tools_1.0.76-1_i386.deb
libfoundation1.0-dev_1.0.76-1_i386.deb
  to pool/main/libf/libfoundation1.0/libfoundation1.0-dev_1.0.76-1_i386.deb
libfoundation1.0_1.0.76-1.diff.gz
  to pool/main/libf/libfoundation1.0/libfoundation1.0_1.0.76-1.diff.gz
libfoundation1.0_1.0.76-1.dsc
  to pool/main/libf/libfoundation1.0/libfoundation1.0_1.0.76-1.dsc
libfoundation1.0_1.0.76-1_i386.deb
  to pool/main/libf/libfoundation1.0/libfoundation1.0_1.0.76-1_i386.deb
libfoundation1.0_1.0.76.orig.tar.gz
  to pool/main/libf/libfoundation1.0/libfoundation1.0_1.0.76.orig.tar.gz


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



Accepted qt-x11-free 3:3.3.4-4 (source i386 all)

2005-08-11 Thread Debian Qt/KDE Maintainers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 26 Jul 2005 19:06:03 +0200
Source: qt-x11-free
Binary: libqt3-mysql libqt3-i18n libqt3 qt3-apps-dev libqt3-mt-sqlite 
libqt3-ibase qt3-assistant qt3-examples qt3-doc libqt3-headers libqt3-mt-mysql 
libqt3-mt libqt3-odbc libqt3-mt-odbc qt3-dev-tools-embedded 
libqt3-compat-headers libqt3-dev qt3-dev-tools libqt3-mt-ibase libqt3-sqlite 
qt3-designer qt3-linguist libqt3-psql qt3-qtconfig qt3-dev-tools-compat 
libqt3-mt-psql libqt3-mt-dev
Architecture: source i386 all
Version: 3:3.3.4-4
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Changed-By: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Description: 
 libqt3 - Qt GUI Library, Version 3
 libqt3-compat-headers - Qt 1.x and 2.x compatibility includes
 libqt3-dev - Qt development files
 libqt3-headers - Qt3 header files
 libqt3-i18n - i18n files for Qt3 library
 libqt3-mt  - Qt GUI Library (Threaded runtime version), Version 3
 libqt3-mt-dev - Qt development files (Threaded)
 libqt3-mt-mysql - MySQL database driver for Qt3 (Threaded)
 libqt3-mt-odbc - ODBC database driver for Qt3 (Threaded)
 libqt3-mt-psql - PostgreSQL database driver for Qt3 (Threaded)
 libqt3-mt-sqlite - SQLite database driver for Qt3 (Threaded)
 libqt3-mysql - MySQL database driver for Qt3
 libqt3-odbc - ODBC database driver for Qt3
 libqt3-psql - PostgreSQL database driver for Qt3
 libqt3-sqlite - SQLite database driver for Qt3
 qt3-apps-dev - Qt3 Developer applications development files
 qt3-assistant - The Qt3 assistant application
 qt3-designer - Qt3 Designer
 qt3-dev-tools - Qt3 development tools
 qt3-dev-tools-compat - Conversion utilities for Qt3 development
 qt3-dev-tools-embedded - Tools to develop embedded Qt applications
 qt3-doc- Qt3 API documentation
 qt3-examples - Examples for Qt3
 qt3-linguist - The Qt3 Linguist
 qt3-qtconfig - The Qt3 Configuration Application
Closes: 182366 268882 282217 290402 303065 305919 311562 317500 317768 319305
Changes: 
 qt-x11-free (3:3.3.4-4) unstable; urgency=low
 .
   * The Three transitions and one maintainer switch release.
 .
   * Cope with the following ongoing transitions in unstable:
 - C++ ABI transition.
 - X.org transition.
 - PostgreSQL 8.0 transition.
 .
   * Move the package to the Debian Qt/KDE team, as agreed with the
 maintainer. Thanks to Martin Loschwitz for all his work over the
 years.
 .
   +++ Changes by Adeodato Simó:
 .
   * Transition to the new C++ ABI. Rename all the library packages as
 necessary: every libqt3c102-* goes back to libqt3-* now. Changes based
 on the patch provided by Matthias Klose in Ubuntu Bug 10723.
 .
 + debian/control:
   - renamed library packages.
   - add conflicts and replaces against the libqt3c102-* packages, or
 change the existing libqt3-* ones.
   - change the existing recommends and suggests on libqt3c102-* to
 libqt3-*.
   - adjusted descriptions where appropriate.
 .
 + debian/rules:
   - s/c102// in various places.
 .
 + debian/*.install, debian/*.links:
   - renamed as appropriate.
 .
 + debian/patches/31_gcc4_buildkey.dpatch:
   - new patch picked from the Fedora Qt packages to ensure a stable
 buildkey accross compiler upgrades now that GCC 4 is the default.
 Kudos to Christopher Martin for finding about the existence of this
 patch.
 .
 The above solves trouble for users when using qt3-designer with g++ 4.0,
 so this upload closes: #317768.
 .
 Also, disabling InterBase support has been necessary in this upload,
 because nobody has cared to make firebird2 not FTBFS with g++ 4.0. Dropped
 the libqt3-ibase and libqt3-mt-ibase packages, which can be reintroduced
 as soon as #317314 gets fixed.
 .
   + debian/control:
 - don't build-depend on firebird2-dev.
 .
   + debian/rules:
 - unconditionally use -no-sql-ibase and -Nlibqt3{,-mt}-ibase.
 .
   * Transition to the new X.org packages:
 + debian/control:
   - build-depend in libglu1-xorg-dev instead of xlibmesa-glu-dev; make the
 same change in the dependencies of libqt3-dev and libqt3-mt-dev.
   - add libxinerama-dev and libxkbfile-dev to build-dependencies; add
 libxinerama-dev to the dependencies of libqt3-dev and libqt3-mt-dev as
 well (closes: #319305).
   - add libxi-dev to the dependencies of libqt3-dev and libqt3-mt-dev. [cm]
 .
   * Transition to the new PostgreSQL 8.0 packaging (closes: #317500):
 + debian/control: build-depend on libpq-dev instead of postgresql-dev.
 + debian/rules: invoke pg_config to determine the include directory.
 .
   * Don't modify debian/control at build time, since doing it in the clean
 target it's a release critical bug now:
 + debian/rules: don't invoke type-handling to generate debian/control.
 + debian/control.in: removed.
 + 

Accepted qt-x11-free 3:3.3.4-5 (source i386 all)

2005-08-11 Thread Debian Qt/KDE Maintainers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 10 Aug 2005 12:10:01 +0200
Source: qt-x11-free
Binary: libqt3-mysql libqt3-i18n libqt3 qt3-apps-dev libqt3-mt-sqlite 
libqt3-ibase qt3-assistant qt3-examples qt3-doc libqt3-headers libqt3-mt-mysql 
libqt3-mt libqt3-odbc libqt3-mt-odbc qt3-dev-tools-embedded 
libqt3-compat-headers libqt3-dev qt3-dev-tools libqt3-mt-ibase libqt3-sqlite 
qt3-designer qt3-linguist libqt3-psql qt3-qtconfig qt3-dev-tools-compat 
libqt3-mt-psql libqt3-mt-dev
Architecture: source i386 all
Version: 3:3.3.4-5
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Changed-By: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Description: 
 libqt3 - Qt GUI Library, Version 3
 libqt3-compat-headers - Qt 1.x and 2.x compatibility includes
 libqt3-dev - Qt development files
 libqt3-headers - Qt3 header files
 libqt3-i18n - i18n files for Qt3 library
 libqt3-mt  - Qt GUI Library (Threaded runtime version), Version 3
 libqt3-mt-dev - Qt development files (Threaded)
 libqt3-mt-mysql - MySQL database driver for Qt3 (Threaded)
 libqt3-mt-odbc - ODBC database driver for Qt3 (Threaded)
 libqt3-mt-psql - PostgreSQL database driver for Qt3 (Threaded)
 libqt3-mt-sqlite - SQLite database driver for Qt3 (Threaded)
 libqt3-mysql - MySQL database driver for Qt3
 libqt3-odbc - ODBC database driver for Qt3
 libqt3-psql - PostgreSQL database driver for Qt3
 libqt3-sqlite - SQLite database driver for Qt3
 qt3-apps-dev - Qt3 Developer applications development files
 qt3-assistant - The Qt3 assistant application
 qt3-designer - Qt3 Designer
 qt3-dev-tools - Qt3 development tools
 qt3-dev-tools-compat - Conversion utilities for Qt3 development
 qt3-dev-tools-embedded - Tools to develop embedded Qt applications
 qt3-doc- Qt3 API documentation
 qt3-examples - Examples for Qt3
 qt3-linguist - The Qt3 Linguist
 qt3-qtconfig - The Qt3 Configuration Application
Changes: 
 qt-x11-free (3:3.3.4-5) unstable; urgency=low
 .
   +++ Changes by Adeodato Simó:
 .
   * Fix FTBFS on arm due to incomplete compiler version check: teach qglobal.h
 that GCC versions with major version != 3 exist. [08_arm_gcc4.dpatch]
Files: 
 5dbaf3b2daf724315b221c19ad5e1fe2 1888 libs optional qt-x11-free_3.3.4-5.dsc
 949b0ceb47af58d2569e57af4687de44 64829 libs optional 
qt-x11-free_3.3.4-5.diff.gz
 619bfaab87eb61475b5ca8fae6c3ff1f 93562 libs optional 
libqt3-i18n_3.3.4-5_all.deb
 7c89b327f426f4545b6b812a164dc771 5612560 doc extra qt3-doc_3.3.4-5_all.deb
 39de31aad0d53364127eb4498e6455fd 1553678 doc extra qt3-examples_3.3.4-5_all.deb
 961be71494c1572eec6f3266073fb7a3 2809664 libs optional libqt3_3.3.4-5_i386.deb
 b600dce6368cf7f5317a742a2a56783f 2913256 libs optional 
libqt3-mt_3.3.4-5_i386.deb
 55d0a6015b76b452a24bbf6e42919d0a 47026 libs optional 
libqt3-mysql_3.3.4-5_i386.deb
 96477f920278ce303b12cc2ce5d18bcb 46914 libs optional 
libqt3-mt-mysql_3.3.4-5_i386.deb
 2186d6769d62f678a0c2de30badb1c9b 63974 libs optional 
libqt3-odbc_3.3.4-5_i386.deb
 cd83055f06c1bef3a774cc0e8bf36ca1 63858 libs optional 
libqt3-mt-odbc_3.3.4-5_i386.deb
 74c1ed12b50f495466add0eba4275d23 53636 libs optional 
libqt3-psql_3.3.4-5_i386.deb
 12cf378c6a3261eec46fb159224d2d4f 53510 libs optional 
libqt3-mt-psql_3.3.4-5_i386.deb
 d2e2eb01fd8089123c1b99698d4b0d71 208220 libs optional 
libqt3-sqlite_3.3.4-5_i386.deb
 3d0ca9a86a73006bb5ea56a18af4f521 208090 libs optional 
libqt3-mt-sqlite_3.3.4-5_i386.deb
 65e4288172d84b7ad110394b4627be33 41918 libdevel optional 
libqt3-dev_3.3.4-5_i386.deb
 99f10510ea6d77f4d9d719eb8650148c 48182 libdevel optional 
libqt3-mt-dev_3.3.4-5_i386.deb
 7f86d2cb7a1ea0bbd2a2763e002c0eac 362064 devel optional 
libqt3-headers_3.3.4-5_i386.deb
 32faba65edc579480b2d1d81a6b2d022 79540 devel optional 
libqt3-compat-headers_3.3.4-5_i386.deb
 fd7c5ba8b9ea8a50c24f4685509585e4 1264682 devel optional 
qt3-dev-tools_3.3.4-5_i386.deb
 90fba2e1138f4dc20408585c568274cc 4039466 devel optional 
qt3-designer_3.3.4-5_i386.deb
 fe5236afe49757165779d2485da56801 2013958 devel optional 
qt3-apps-dev_3.3.4-5_i386.deb
 dc1c4f655abc2ba08212b25bc6713ba7 332338 devel optional 
qt3-linguist_3.3.4-5_i386.deb
 e70eca0ef3d611fedac07098d92b7a8e 233620 x11 optional 
qt3-assistant_3.3.4-5_i386.deb
 3a9ddf6a013ce7ff0ac14b6c61fd7e5c 91466 x11 optional 
qt3-qtconfig_3.3.4-5_i386.deb
 7dfb2dfed6ad8f39f43de72f602539da 282020 devel optional 
qt3-dev-tools-embedded_3.3.4-5_i386.deb
 83d5e0860066b145c3639e087207dbaf 66118 devel optional 
qt3-dev-tools-compat_3.3.4-5_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Signed by Adeodato Simó [EMAIL PROTECTED]

iEYEARECAAYFAkL7GgsACgkQgyNlRdHEGIIsMgCg54nwUGEBFi81Wtv2h8BQ/q06
WHYAoIzSYzTXNJOilWZSPteuejr66Oj3
=J9eR
-END PGP SIGNATURE-


Accepted:
libqt3-compat-headers_3.3.4-5_i386.deb
  to pool/main/q/qt-x11-free/libqt3-compat-headers_3.3.4-5_i386.deb
libqt3-dev_3.3.4-5_i386.deb
  to 

Accepted sope 4.4rc.2-2 (source i386 all)

2005-08-11 Thread Sebastian Ley
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 13:09:15 +0200
Source: sope
Binary: libsope-gdl1-4.4-dev libapache-mod-ngobjweb libsope-xml4.4-dev 
libsope4.4-dev libsope-core4.4 libsope-appserver4.4 libsope-mime4.4 
sope4.4-appserver sope4.4-versitsaxdriver libsope-ldap4.4-dev 
libsope-core4.4-dev libapache2-mod-ngobjweb libsope-ical4.4-dev 
sope4.4-stxsaxdriver sope4.4-libxmlsaxdriver libsope-appserver4.4-dev 
libsope-xml4.4 libsope-ical4.4 libsope-ldap4.4 libsope-mime4.4-dev 
libsope-gdl1-4.4 sope-tools sope4.4-gdl1-postgresql
Architecture: source i386 all
Version: 4.4rc.2-2
Distribution: unstable
Urgency: low
Maintainer: Sebastian Ley [EMAIL PROTECTED]
Changed-By: Sebastian Ley [EMAIL PROTECTED]
Description: 
 libapache-mod-ngobjweb - Apache module for the SOPE application server
 libapache2-mod-ngobjweb - Apache2 module for the SOPE application server
 libsope-appserver4.4 - SOPE application server libraries
 libsope-appserver4.4-dev - Development files for the SOPE libraries
 libsope-core4.4 - Core libraries of the SOPE application server
 libsope-core4.4-dev - Development files for the SOPE core libraries
 libsope-gdl1-4.4 - GNUstep database libraries for SOPE
 libsope-gdl1-4.4-dev - Development files for the GNUstep database libraries
 libsope-ical4.4 - SOPE libraries for iCal handling
 libsope-ical4.4-dev - Development files for the SOPE iCal libraries
 libsope-ldap4.4 - SOPE libraries for LDAP access
 libsope-ldap4.4-dev - Development files for the SOPE LDAP libraries
 libsope-mime4.4 - SOPE libraries for MIME processing
 libsope-mime4.4-dev - Development files for the SOPE MIME libraries
 libsope-xml4.4 - SOPE libraries for XML processing
 libsope-xml4.4-dev - Development files for the SOPE XML libraries
 libsope4.4-dev - Development files for all SOPE libraries
 sope-tools - Tools shipped with SOPE application server
 sope4.4-appserver - SOPE application server
 sope4.4-gdl1-postgresql - PostgreSQL connector for SOPE's fork of the GNUstep 
database envi
 sope4.4-libxmlsaxdriver - XML Parser for SOPE's SAX engine
 sope4.4-stxsaxdriver - Structured Text Parser for SOPE's SAX engine
 sope4.4-versitsaxdriver - iCal and vCard Parser for SOPE's SAX engine
Changes: 
 sope (4.4rc.2-2) unstable; urgency=low
 .
   * Add real packages as alternatives to virtual build dependencies
Files: 
 404ca1beecea56506e71d35e30b8d72f 1301 - extra sope_4.4rc.2-2.dsc
 c445cd9a619ccf0f8f39fbbc9e7a58e3 861 - extra sope_4.4rc.2-2.diff.gz
 42e244c655be2133bc81b5d1ebc5a181 2742 libdevel extra 
libsope4.4-dev_4.4rc.2-2_all.deb
 728a4abace602de634d1c30efbdd3f65 56772 libdevel extra 
libsope-appserver4.4-dev_4.4rc.2-2_i386.deb
 55f481d405d4e6f43f385e0942cf52b6 888694 libs extra 
libsope-appserver4.4_4.4rc.2-2_i386.deb
 7df68ba53682d0b579869b248efdc9f7 186082 web extra sope-tools_4.4rc.2-2_i386.deb
 91a90ae0019193477c348c7a6df9864b 7624 web extra 
sope4.4-appserver_4.4rc.2-2_i386.deb
 204db873973154aed0f77308413e329c 49952 libdevel extra 
libsope-core4.4-dev_4.4rc.2-2_i386.deb
 5f68848f19d9b312c8acf8dc87d29308 286898 libs extra 
libsope-core4.4_4.4rc.2-2_i386.deb
 497dbe4c04cf6136b1d140205c4b7018 21888 libdevel extra 
libsope-xml4.4-dev_4.4rc.2-2_i386.deb
 b839b6b987bc05a4c9e83f131fac3021 126678 libs extra 
libsope-xml4.4_4.4rc.2-2_i386.deb
 e28400e3db4052e1f7ca0c34fae50f48 6612 libdevel extra 
libsope-ldap4.4-dev_4.4rc.2-2_i386.deb
 f0ad51cbc907756b0352b4085a5b7f3c 42204 libs extra 
libsope-ldap4.4_4.4rc.2-2_i386.deb
 ef5db24d44516f67d14501bcf6402f78 24912 libdevel extra 
libsope-mime4.4-dev_4.4rc.2-2_i386.deb
 7a99deae7c91762c398988ec8e125889 228100 libs extra 
libsope-mime4.4_4.4rc.2-2_i386.deb
 0e5e60e47201e4dca3bee3e0d3f9e6ce 11936 libdevel extra 
libsope-ical4.4-dev_4.4rc.2-2_i386.deb
 c6ca74411abaab6d1400edf3f6da353c 68204 libs extra 
libsope-ical4.4_4.4rc.2-2_i386.deb
 768ae40b968371e7c950506614fca0fa 22200 libdevel extra 
libsope-gdl1-4.4-dev_4.4rc.2-2_i386.deb
 d837af7f5e9fb229056c2b2f6a198f8c 141134 libs extra 
libsope-gdl1-4.4_4.4rc.2-2_i386.deb
 be501642d4669f4a06287b5898fa40ba 35614 web extra 
sope4.4-gdl1-postgresql_4.4rc.2-2_i386.deb
 ba583113e227f0a1f3ca809d2ab86ca6 29420 web extra 
sope4.4-stxsaxdriver_4.4rc.2-2_i386.deb
 016c40c389a734462c4cb56616e72cd4 31716 web extra 
sope4.4-libxmlsaxdriver_4.4rc.2-2_i386.deb
 b7cd130b083d2fd96f55ebe12fbcd5ae 23214 web extra 
sope4.4-versitsaxdriver_4.4rc.2-2_i386.deb
 a568a35ac4cfaf79856f3d7ae00b7324 12426 web extra 
libapache-mod-ngobjweb_4.4rc.2-2_i386.deb
 5993bef7922437c3c15f06d8795c1d1b 12738 web extra 
libapache2-mod-ngobjweb_4.4rc.2-2_i386.deb

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

iD8DBQFC+zZbl+AzCZ/W4+YRAvqAAJ4y8cPzry+VznfE0h6fQidkDoBVnQCcCa4k
Pn6XAv5TBQ0oXcJFvAM5iGM=
=BsFz
-END PGP SIGNATURE-


Accepted:
libapache-mod-ngobjweb_4.4rc.2-2_i386.deb
  to pool/main/s/sope/libapache-mod-ngobjweb_4.4rc.2-2_i386.deb
libapache2-mod-ngobjweb_4.4rc.2-2_i386.deb
  to 

Accepted gaim-irchelper 0.12-1 (source i386)

2005-08-11 Thread Martin-Éric Racine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  9 Aug 2005 20:11:53 +0300
Source: gaim-irchelper
Binary: gaim-irchelper
Architecture: source i386
Version: 0.12-1
Distribution: unstable
Urgency: low
Maintainer: Martin-Éric Racine [EMAIL PROTECTED]
Changed-By: Martin-Éric Racine [EMAIL PROTECTED]
Description: 
 gaim-irchelper - IRC extensions for GAIM
Changes: 
 gaim-irchelper (0.12-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 c31ec0957994a7de1b717899f789c7f4 626 gnome optional gaim-irchelper_0.12-1.dsc
 5db71c2107f7980e9a2891b9e4486468 20685 gnome optional 
gaim-irchelper_0.12.orig.tar.gz
 0156c0d7f95fcc935853521163b059a1 1612 gnome optional 
gaim-irchelper_0.12-1.diff.gz
 8278b74c664c10374977387f3d28fe31 12512 gnome optional 
gaim-irchelper_0.12-1_i386.deb

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

iD8DBQFC+zhx0U6FJtxHyhYRAn+QAKDRNXJqlKI3l33s1vAUqNz9qe5lSwCfdnYw
9W12SajKu/8ylC+1wpKo0mI=
=+Y+h
-END PGP SIGNATURE-


Accepted:
gaim-irchelper_0.12-1.diff.gz
  to pool/main/g/gaim-irchelper/gaim-irchelper_0.12-1.diff.gz
gaim-irchelper_0.12-1.dsc
  to pool/main/g/gaim-irchelper/gaim-irchelper_0.12-1.dsc
gaim-irchelper_0.12-1_i386.deb
  to pool/main/g/gaim-irchelper/gaim-irchelper_0.12-1_i386.deb
gaim-irchelper_0.12.orig.tar.gz
  to pool/main/g/gaim-irchelper/gaim-irchelper_0.12.orig.tar.gz


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



Accepted xboard 4.2.7-1 (source i386)

2005-08-11 Thread Florian Ernst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 13:44:56 +0200
Source: xboard
Binary: xboard
Architecture: source i386
Version: 4.2.7-1
Distribution: unstable
Urgency: low
Maintainer: Florian Ernst [EMAIL PROTECTED]
Changed-By: Florian Ernst [EMAIL PROTECTED]
Description: 
 xboard - An X Window System Chess Board
Closes: 192196 205155 228403 237829 259558 295115 303340 321343
Changes: 
 xboard (4.2.7-1) unstable; urgency=low
 .
   * New maintainer (Closes: #321343)
   * New upstream release (Closes: #259558)
 + dropped some patches from diff.gz as they are now included upstream
   (3.6.2 entry in changelog, set -e in configure, mktemp in pxboard,
   strerror in xboard.c).
 + dropped .PP from beginning of manpage (Closes: #237829), also inserted
   date
 + still has xterm hardcoded, now changed to x-terminal-emulator and added
   appropriate Suggests. Thanks, Frankie Fisher! (Closes: #295115)
   * debian/control:
 + Standards-Version 3.6.2
 + drop B-D on xlibs-dev as xaw3dg-dev pulls in all that is needed
 + drop trailing full stop in short description
 + add upstream homepage to long description
   * debian/copright:
 + extend information about previous and current maintainer(s)
   * debian/menu: added menu entry for active chessboard, clarified other entry
 (Closes: #228403)
   * debian/rules:
 + dropped kk13.pgn
 + include newer config.{guess,sub}, using B-D on autotools-dev
   (Closes: #205155, #303340)
 + complete redo, using debhelper v4
   * Dropped postinst, postrm, prerm and xaw-wrapper.config, they are not
 necessary anymore / debhelper will take care; added preinst to faciliate
 updates / removing registered alternates
   * debian/watch: added
   * Acknowledge NMU, thanks Sebastien Bacher! (Closes: #192196)
Files: 
 4584a0263f5e2ef24ec6ae0048972a74 592 games optional xboard_4.2.7-1.dsc
 b70ad8ff7569975302c5fb402d5eea32 1318110 games optional 
xboard_4.2.7.orig.tar.gz
 ffe8504a8dfe284173091a333d5eac01 9329 games optional xboard_4.2.7-1.diff.gz
 5dc1f07cc0e86aa9220d71f63db962b6 520754 games optional xboard_4.2.7-1_i386.deb

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

iD8DBQFC+zxus3U+TVFLPnwRAvWzAJ48RBnhqR6msGhYeQ/12UcFc8PjTwCfd7UH
OSD6DI9xH1KxJ9z7HCvU85Q=
=Tv0d
-END PGP SIGNATURE-


Accepted:
xboard_4.2.7-1.diff.gz
  to pool/main/x/xboard/xboard_4.2.7-1.diff.gz
xboard_4.2.7-1.dsc
  to pool/main/x/xboard/xboard_4.2.7-1.dsc
xboard_4.2.7-1_i386.deb
  to pool/main/x/xboard/xboard_4.2.7-1_i386.deb
xboard_4.2.7.orig.tar.gz
  to pool/main/x/xboard/xboard_4.2.7.orig.tar.gz


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



Accepted libhdate 1.3.0-2 (source i386)

2005-08-11 Thread Lior Kaplan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 10 Aug 2005 23:10:05 +0300
Source: libhdate
Binary: libhdate-perl libhdate-python libhdate-pascal libhdate1 libhdate-dev
Architecture: source i386
Version: 1.3.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Hebrew Packaging Team [EMAIL PROTECTED]
Changed-By: Lior Kaplan [EMAIL PROTECTED]
Description: 
 libhdate-dev - A library that help use hebrew dates
 libhdate-pascal - A library that help use hebrew dates
 libhdate-perl - A library that help use hebrew dates
 libhdate-python - A library that help use hebrew dates
 libhdate1  - A library that help use hebrew dates
Changes: 
 libhdate (1.3.0-2) unstable; urgency=low
 .
   * debian/control:
  - Limit the build dependency of fp-compiler to i386, sparc  powerpc.
  - Build libhdate-pascl only on i386, sparc  powerpc
  - Add -s option (short for --same-arch) to all dh_* lines.
Files: 
 442aacb336c55071164dc88b5f695683 818 libdevel optional libhdate_1.3.0-2.dsc
 20e8ca10d691c8cdaabd141d8f45e708 124489 libdevel optional 
libhdate_1.3.0-2.diff.gz
 dc6c14a6f4cb621423c3c9544dcc668e 34530 libdevel optional 
libhdate-dev_1.3.0-2_i386.deb
 af38266f49da23894c5e3b0b57e58049 19062 libdevel optional 
libhdate-python_1.3.0-2_i386.deb
 e9c6d83293c83b5b76949b651839c106 21204 libdevel optional 
libhdate-perl_1.3.0-2_i386.deb
 b61082b29b8714ae22cb005ab4c5c433 15194 libdevel optional 
libhdate-pascal_1.3.0-2_i386.deb
 6ff20ada9fb7b7d0bde33b6d94fe1ac3 28002 libs optional libhdate1_1.3.0-2_i386.deb

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

iD8DBQFC+0xEHCar6qtHRZgRAkeDAJ9yJM9dETsAEGr8qYXUp84xCodT6QCfdkZ7
DsUfnTae12f7z6unMDqdsh8=
=N+z5
-END PGP SIGNATURE-


Accepted:
libhdate-dev_1.3.0-2_i386.deb
  to pool/main/libh/libhdate/libhdate-dev_1.3.0-2_i386.deb
libhdate-pascal_1.3.0-2_i386.deb
  to pool/main/libh/libhdate/libhdate-pascal_1.3.0-2_i386.deb
libhdate-perl_1.3.0-2_i386.deb
  to pool/main/libh/libhdate/libhdate-perl_1.3.0-2_i386.deb
libhdate-python_1.3.0-2_i386.deb
  to pool/main/libh/libhdate/libhdate-python_1.3.0-2_i386.deb
libhdate1_1.3.0-2_i386.deb
  to pool/main/libh/libhdate/libhdate1_1.3.0-2_i386.deb
libhdate_1.3.0-2.diff.gz
  to pool/main/libh/libhdate/libhdate_1.3.0-2.diff.gz
libhdate_1.3.0-2.dsc
  to pool/main/libh/libhdate/libhdate_1.3.0-2.dsc


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



Accepted clamav 0.86.2-4 (source all i386)

2005-08-11 Thread Stephen Gran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 08:34:23 -0400
Source: clamav
Binary: clamav libclamav-dev clamav-milter clamav-base clamav-freshclam 
clamav-testfiles clamav-daemon libclamav1 clamav-docs
Architecture: source all i386
Version: 0.86.2-4
Distribution: unstable
Urgency: low
Maintainer: Stephen Gran [EMAIL PROTECTED]
Changed-By: Stephen Gran [EMAIL PROTECTED]
Description: 
 clamav - antivirus scanner for Unix
 clamav-base - base package for clamav, an anti-virus utility for Unix
 clamav-daemon - antivirus scanner daemon
 clamav-docs - documentation package for clamav, an anti-virus utility for Unix
 clamav-freshclam - downloads clamav virus databases from the Internet
 clamav-milter - antivirus scanner for sendmail
 clamav-testfiles - use these files to test that your Antivirus program works
 libclamav-dev - clam Antivirus library development files
 libclamav1 - virus scanner library
Changes: 
 clamav (0.86.2-4) unstable; urgency=low
 .
   * Really, I mean it this time, add the depends on lsb-base.
Files: 
 574026316c063d1024486237a6d6d1ec 862 utils optional clamav_0.86.2-4.dsc
 3db0fa5b23f169b7616767ca8a493416 188413 utils optional clamav_0.86.2-4.diff.gz
 6b1ef4e1736e0cd560ea25316eae5ec3 165296 utils optional 
clamav-base_0.86.2-4_all.deb
 47428b959ad7d7a9b138d729becd917b 126396 utils optional 
clamav-testfiles_0.86.2-4_all.deb
 ad2b3ed9386eaff8a4f55235466598ba 697744 utils optional 
clamav-docs_0.86.2-4_all.deb
 c3abaf834c1bc81954cb5048edbf6728 256842 libs optional 
libclamav1_0.86.2-4_i386.deb
 08c5d946458b719e98a46c28da2d18fa 65688 utils optional clamav_0.86.2-4_i386.deb
 0064927f9081da56eeb968a84cd33192 38734 utils optional 
clamav-daemon_0.86.2-4_i386.deb
 22a45cbf41c8dbcc104cac6ee6fd4987 2494932 utils optional 
clamav-freshclam_0.86.2-4_i386.deb
 80196dc82adcab1b57366a71e4f4cd43 37916 utils extra 
clamav-milter_0.86.2-4_i386.deb
 866a79843cff4a9556167c694987d97f 158724 libdevel optional 
libclamav-dev_0.86.2-4_i386.deb

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

iD8DBQFC+09OSYIMHOpZA44RAh0XAJ9S98HD96fA4dlLne0/IpWu5hXuMwCgnK97
f9ShdwLcCMGAhOs+XEP5EQA=
=RzNB
-END PGP SIGNATURE-


Accepted:
clamav-base_0.86.2-4_all.deb
  to pool/main/c/clamav/clamav-base_0.86.2-4_all.deb
clamav-daemon_0.86.2-4_i386.deb
  to pool/main/c/clamav/clamav-daemon_0.86.2-4_i386.deb
clamav-docs_0.86.2-4_all.deb
  to pool/main/c/clamav/clamav-docs_0.86.2-4_all.deb
clamav-freshclam_0.86.2-4_i386.deb
  to pool/main/c/clamav/clamav-freshclam_0.86.2-4_i386.deb
clamav-milter_0.86.2-4_i386.deb
  to pool/main/c/clamav/clamav-milter_0.86.2-4_i386.deb
clamav-testfiles_0.86.2-4_all.deb
  to pool/main/c/clamav/clamav-testfiles_0.86.2-4_all.deb
clamav_0.86.2-4.diff.gz
  to pool/main/c/clamav/clamav_0.86.2-4.diff.gz
clamav_0.86.2-4.dsc
  to pool/main/c/clamav/clamav_0.86.2-4.dsc
clamav_0.86.2-4_i386.deb
  to pool/main/c/clamav/clamav_0.86.2-4_i386.deb
libclamav-dev_0.86.2-4_i386.deb
  to pool/main/c/clamav/libclamav-dev_0.86.2-4_i386.deb
libclamav1_0.86.2-4_i386.deb
  to pool/main/c/clamav/libclamav1_0.86.2-4_i386.deb


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



Accepted gnutls12 1.2.6-1 (source i386)

2005-08-11 Thread Matthias Urlichs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Changed-By: Matthias Urlichs [EMAIL PROTECTED]
Date: Thu, 11 Aug 2005 12:21:36 +0200
Version: 1.2.6-1
Distribution: unstable
Source: gnutls12
Urgency: low
Maintainer: Matthias Urlichs [EMAIL PROTECTED]
Binary: gnutls-bin libgnutls-dev libgnutls12 libgnutls12-dbg
Architecture: i386 source
Changes:
 gnutls12 (1.2.6-1) unstable; urgency=low
 .
   * New Upstream version.
   * Remove Provides: on libgnutls11-dev.
 Hopefully this will be temporary (pending discussion with Upstream).
Description:
 libgnutls12 - the GNU TLS library - runtime library
 gnutls-bin - the GNU TLS library - commandline utilities
 libgnutls12-dbg - GNU TLS library - debugger symbols
 libgnutls-dev - the GNU TLS library - development files
Files:
 12fa1e8d128944b963c8839e0e8cee53 322199 devel optional gnutls12_1.2.6-1.diff.gz
 4c22d4168084fb90026f8cf6eb00af64 259382 net optional 
gnutls-bin_1.2.6-1_i386.deb
 d0b999e99314a7050f676fd4af5162d0 773 devel optional gnutls12_1.2.6-1.dsc
 c1cabd25f457227de35bb69d918dc4c5 541310 devel optional 
libgnutls12-dbg_1.2.6-1_i386.deb
 420f719f23b9f5b4edea9da30f540c98 3011029 devel optional 
gnutls12_1.2.6.orig.tar.gz
 b322e605d82258fdc57bfe43b666c4c2 415176 libdevel optional 
libgnutls-dev_1.2.6-1_i386.deb
 bc2be064595e086750b88c221b4e22e3 348628 libs important 
libgnutls12_1.2.6-1_i386.deb

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

iD8DBQFC+1MA8+hUANcKr/kRAkJvAJwMsRgsvxmh71HCl6H2RGK6N3nDUQCdFUut
V1vWKEaJTC1QRVsGHFJ4gpc=
=qtQX
-END PGP SIGNATURE-


Accepted:
gnutls-bin_1.2.6-1_i386.deb
  to pool/main/g/gnutls12/gnutls-bin_1.2.6-1_i386.deb
gnutls12_1.2.6-1.diff.gz
  to pool/main/g/gnutls12/gnutls12_1.2.6-1.diff.gz
gnutls12_1.2.6-1.dsc
  to pool/main/g/gnutls12/gnutls12_1.2.6-1.dsc
gnutls12_1.2.6.orig.tar.gz
  to pool/main/g/gnutls12/gnutls12_1.2.6.orig.tar.gz
libgnutls-dev_1.2.6-1_i386.deb
  to pool/main/g/gnutls12/libgnutls-dev_1.2.6-1_i386.deb
libgnutls12-dbg_1.2.6-1_i386.deb
  to pool/main/g/gnutls12/libgnutls12-dbg_1.2.6-1_i386.deb
libgnutls12_1.2.6-1_i386.deb
  to pool/main/g/gnutls12/libgnutls12_1.2.6-1_i386.deb


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



Accepted zephyr 2.1.20010518.SNAPSHOT-13 (source i386)

2005-08-11 Thread Karl Ramm
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 09:36:28 -0400
Source: zephyr
Binary: zephyr-server libzephyr3 libzephyr3-krb zephyr-server-krb 
zephyr-clients libzephyr-dev
Architecture: source i386
Version: 2.1.20010518.SNAPSHOT-13
Distribution: unstable
Urgency: low
Maintainer: Karl Ramm [EMAIL PROTECTED]
Changed-By: Karl Ramm [EMAIL PROTECTED]
Description: 
 libzephyr-dev - The original Instant Message system development libraries
 libzephyr3 - The original Instant Message system libraries without Kerberos
 libzephyr3-krb - The original Instant Message system libraries with Kerberos
 zephyr-clients - The original Instant Message system client
 zephyr-server - The original Instant Message system-server without Kerberos
 zephyr-server-krb - The original Instant Message system-server with Kerberos
Closes: 218079
Changes: 
 zephyr (2.1.20010518.SNAPSHOT-13) unstable; urgency=low
 .
   * Add alternate dependency on zephyr-2.0
   * Fix brain-damage in package description.  Closes: #218079
   (libzephyr3 was misidentified as having kerberos support, and
 libzephyr3-krb was not identified as such.)
Files: 
 6158396a7f4d03dbf4e85cf6bbd77a57 1575 net optional 
zephyr_2.1.20010518.SNAPSHOT-13.dsc
 9dcd9ee7273027bbe52d58862b551b9f 435923 net optional 
zephyr_2.1.20010518.SNAPSHOT-13.diff.gz
 ceb975eaa5b74b9bba4eefc43a22ac2e 24280 libs optional 
libzephyr3_2.1.20010518.SNAPSHOT-13_i386.deb
 137d68803451ce7ce8b4a743593192ef 25278 libs optional 
libzephyr3-krb_2.1.20010518.SNAPSHOT-13_i386.deb
 26c0f2aa66556faea2e5556a9c7f794e 149228 net optional 
zephyr-clients_2.1.20010518.SNAPSHOT-13_i386.deb
 10edbf5560c2686bb670e19d4cd2e72f 54034 net optional 
zephyr-server_2.1.20010518.SNAPSHOT-13_i386.deb
 cd50f9f4b417a4d7dad35bc60a74fcef 61502 net optional 
zephyr-server-krb_2.1.20010518.SNAPSHOT-13_i386.deb
 ef98976fd06d449692646a81bd05caee 34218 devel optional 
libzephyr-dev_2.1.20010518.SNAPSHOT-13_i386.deb

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

iQIVAwUBQvtVv7Itdz86KScoAQKvohAArSXgAWgzb52mKLW0IwpOEM1qSX5FNW6c
+R36iNvXKF50DJbFHJWlxtw+75gCrKx6ugkLe/Eqw/Pzc8wAiVynBymvrjaaxvAv
pKLF4pDqFt75IoIvEkjpUf5F+09kdLU63OQWEU9cKkDBfOvE0LR6PkDukd53LEVP
eoflwwMrBHFwhnNencnW8AjrkZoJ9c7wZ/pilJpKs5N/iMWWk3X3aXxCTUiP6rOn
rA8EgJt6lemDjCVJlcyNhkGnJK85tMVxtvTkeNOijK+DKpguR6rALIKik3fOSoVQ
JlldvMeShOHbcAARKUTHH9Dc6upYFczirGDxfz7pCrCsMRDIiwg0dUL+0+bajq16
iTbc21E4nVikQH8uN1tVAjKJRhJR7cGFKiN/l919zGlIhnk8iu5rPxY50DU9L/1e
gBNWDiDUMRdwZOAv5e4MujEm8E/fsgHRkt/N85RRdy9e3zBYQii063tWfE5LiNFo
hL8wbMOzhiMnXDq52yGJeCMiZmaLAtP6Xeuidamz3poEBTvFd9yFWDHUiRdC080c
wXphGR6yNpq9HFFGerUammpu9VdAHLjBEY7r+TD+NwjMopYYlJ53EhArtIvFEhu1
UXEzmuuhiaChQDmIfGG30kg+EBYWtAFK3K7j/aT07twKrUtWTsJl9irjRiuzuaNn
LM0w4cum5Io=
=IF2p
-END PGP SIGNATURE-


Accepted:
libzephyr-dev_2.1.20010518.SNAPSHOT-13_i386.deb
  to pool/main/z/zephyr/libzephyr-dev_2.1.20010518.SNAPSHOT-13_i386.deb
libzephyr3-krb_2.1.20010518.SNAPSHOT-13_i386.deb
  to pool/main/z/zephyr/libzephyr3-krb_2.1.20010518.SNAPSHOT-13_i386.deb
libzephyr3_2.1.20010518.SNAPSHOT-13_i386.deb
  to pool/main/z/zephyr/libzephyr3_2.1.20010518.SNAPSHOT-13_i386.deb
zephyr-clients_2.1.20010518.SNAPSHOT-13_i386.deb
  to pool/main/z/zephyr/zephyr-clients_2.1.20010518.SNAPSHOT-13_i386.deb
zephyr-server-krb_2.1.20010518.SNAPSHOT-13_i386.deb
  to pool/main/z/zephyr/zephyr-server-krb_2.1.20010518.SNAPSHOT-13_i386.deb
zephyr-server_2.1.20010518.SNAPSHOT-13_i386.deb
  to pool/main/z/zephyr/zephyr-server_2.1.20010518.SNAPSHOT-13_i386.deb
zephyr_2.1.20010518.SNAPSHOT-13.diff.gz
  to pool/main/z/zephyr/zephyr_2.1.20010518.SNAPSHOT-13.diff.gz
zephyr_2.1.20010518.SNAPSHOT-13.dsc
  to pool/main/z/zephyr/zephyr_2.1.20010518.SNAPSHOT-13.dsc


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



Accepted qt-x11-free 3:3.3.4-6 (source i386 all)

2005-08-11 Thread Debian Qt/KDE Maintainers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 14:29:47 +0200
Source: qt-x11-free
Binary: libqt3-mysql libqt3-i18n libqt3 qt3-apps-dev libqt3-mt-sqlite 
libqt3-ibase qt3-assistant qt3-examples qt3-doc libqt3-headers libqt3-mt-mysql 
libqt3-mt libqt3-odbc libqt3-mt-odbc qt3-dev-tools-embedded 
libqt3-compat-headers libqt3-dev qt3-dev-tools libqt3-mt-ibase libqt3-sqlite 
qt3-designer qt3-linguist libqt3-psql qt3-qtconfig qt3-dev-tools-compat 
libqt3-mt-psql libqt3-mt-dev
Architecture: source i386 all
Version: 3:3.3.4-6
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Changed-By: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Description: 
 libqt3 - Qt GUI Library, Version 3
 libqt3-compat-headers - Qt 1.x and 2.x compatibility includes
 libqt3-dev - Qt development files
 libqt3-headers - Qt3 header files
 libqt3-i18n - i18n files for Qt3 library
 libqt3-mt  - Qt GUI Library (Threaded runtime version), Version 3
 libqt3-mt-dev - Qt development files (Threaded)
 libqt3-mt-mysql - MySQL database driver for Qt3 (Threaded)
 libqt3-mt-odbc - ODBC database driver for Qt3 (Threaded)
 libqt3-mt-psql - PostgreSQL database driver for Qt3 (Threaded)
 libqt3-mt-sqlite - SQLite database driver for Qt3 (Threaded)
 libqt3-mysql - MySQL database driver for Qt3
 libqt3-odbc - ODBC database driver for Qt3
 libqt3-psql - PostgreSQL database driver for Qt3
 libqt3-sqlite - SQLite database driver for Qt3
 qt3-apps-dev - Qt3 Developer applications development files
 qt3-assistant - The Qt3 assistant application
 qt3-designer - Qt3 Designer
 qt3-dev-tools - Qt3 development tools
 qt3-dev-tools-compat - Conversion utilities for Qt3 development
 qt3-dev-tools-embedded - Tools to develop embedded Qt applications
 qt3-doc- Qt3 API documentation
 qt3-examples - Examples for Qt3
 qt3-linguist - The Qt3 Linguist
 qt3-qtconfig - The Qt3 Configuration Application
Changes: 
 qt-x11-free (3:3.3.4-6) unstable; urgency=low
 .
   * The If debussy had been up... release.
 .
   +++ Changes by Adeodato Simó:
 .
   * Include in 08_arm_gcc4.dpatch an appropriate cast so that GCC 4.0 does not
 barf. Patch stolen from SuSE, kudos to Isaac Clerencia for finding it.
Files: 
 9bcd455061d45fd68012bb8b87f83e4d 1888 libs optional qt-x11-free_3.3.4-6.dsc
 dfe34d8ed9ce32abcf8f31bc0fdaa6e4 65060 libs optional 
qt-x11-free_3.3.4-6.diff.gz
 12a69784f2ae731c132f98eb2604570d 93658 libs optional 
libqt3-i18n_3.3.4-6_all.deb
 89113a95c9132785d7028e342da8ff7f 5612628 doc extra qt3-doc_3.3.4-6_all.deb
 87c4721d3f196ceca88c4d274f95 1553778 doc extra qt3-examples_3.3.4-6_all.deb
 2ded83c3a49310d1872f4245c61c6e5f 2809776 libs optional libqt3_3.3.4-6_i386.deb
 b7067e4405c328f52080f676aa876024 2913378 libs optional 
libqt3-mt_3.3.4-6_i386.deb
 d335ea7db53364791e87da7c5adb0cc0 47134 libs optional 
libqt3-mysql_3.3.4-6_i386.deb
 a6d0ef8c1ac980ee1ba984a9ffe7768b 47028 libs optional 
libqt3-mt-mysql_3.3.4-6_i386.deb
 cf11c39f49a6407b3a20ef41ca67faa7 64090 libs optional 
libqt3-odbc_3.3.4-6_i386.deb
 36d09d638f5236660f59008b74c4eda3 63966 libs optional 
libqt3-mt-odbc_3.3.4-6_i386.deb
 b2e36da93fd7d5f67dd765c5c521710e 53746 libs optional 
libqt3-psql_3.3.4-6_i386.deb
 d6cba7a2aaacf481feb620726c6d369a 53624 libs optional 
libqt3-mt-psql_3.3.4-6_i386.deb
 56294cab9f84bd6f736261f59a130990 208334 libs optional 
libqt3-sqlite_3.3.4-6_i386.deb
 9578839393180988794c2480436deee2 208202 libs optional 
libqt3-mt-sqlite_3.3.4-6_i386.deb
 962ac06503757e5157706f28c9b163f5 42034 libdevel optional 
libqt3-dev_3.3.4-6_i386.deb
 ae2eb78e4827ef52a85d1f253f0ec41e 48302 libdevel optional 
libqt3-mt-dev_3.3.4-6_i386.deb
 7d174b16a098978cb63e80f80e6fc72b 362120 devel optional 
libqt3-headers_3.3.4-6_i386.deb
 56689771bf7907120da2dbce1fc42f8d 79640 devel optional 
libqt3-compat-headers_3.3.4-6_i386.deb
 7d5841607883d71c388a87ecfd1132b8 1264830 devel optional 
qt3-dev-tools_3.3.4-6_i386.deb
 b02341b29357d0b5651be9f90c423ca2 4039652 devel optional 
qt3-designer_3.3.4-6_i386.deb
 5b44286e8131121e603784c6e1312549 2014042 devel optional 
qt3-apps-dev_3.3.4-6_i386.deb
 6c320d0f4de9fa8d19d68618d74315cf 332504 devel optional 
qt3-linguist_3.3.4-6_i386.deb
 4671db04067a0999259263bbe4c9cd36 233758 x11 optional 
qt3-assistant_3.3.4-6_i386.deb
 60b293a9727f4e8acdee3717b9c106a7 91574 x11 optional 
qt3-qtconfig_3.3.4-6_i386.deb
 10ac2c87854632ba3da2ef081dd96a75 282134 devel optional 
qt3-dev-tools-embedded_3.3.4-6_i386.deb
 4d80dd3d725662112588f7897b3d7980 66242 devel optional 
qt3-dev-tools-compat_3.3.4-6_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Signed by Adeodato Simó [EMAIL PROTECTED]

iEYEARECAAYFAkL7VowACgkQgyNlRdHEGIJZagCeMZYUFgqDXWtUo623CB+IoddS
ilYAn0e9FJWE8T/Aso24kbdZoRCENiy1
=Blr9
-END PGP SIGNATURE-


Accepted:
libqt3-compat-headers_3.3.4-6_i386.deb
  to pool/main/q/qt-x11-free/libqt3-compat-headers_3.3.4-6_i386.deb

Accepted hdparm 6.1-4 (source i386)

2005-08-11 Thread Stephen Gran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 09:57:28 -0400
Source: hdparm
Binary: hdparm hdparm-udeb
Architecture: source i386
Version: 6.1-4
Distribution: unstable
Urgency: low
Maintainer: Stephen Gran [EMAIL PROTECTED]
Changed-By: Stephen Gran [EMAIL PROTECTED]
Description: 
 hdparm - tune hard disk parameters for high performance
 hdparm-udeb - tune hard disk parameters for high performance (udeb)
Changes: 
 hdparm (6.1-4) unstable; urgency=low
 .
   * Grr, I _would_ have had a working solution, if only I actually installed
 all the files.
Files: 
 f4787e649c2c82dd6a29b623a487e90e 577 admin optional hdparm_6.1-4.dsc
 0040b7cfbd63f8c64f206e7928eae504 14029 admin optional hdparm_6.1-4.diff.gz
 22d5dfefb72773de9b6e56f5e6e9b1e9 54928 admin optional hdparm_6.1-4_i386.deb
 d6465e4f2fc19a677c3114f697c966b0 23650 debian-installer optional 
hdparm-udeb_6.1-4_i386.udeb
package-type: udeb

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

iD8DBQFC+2KXSYIMHOpZA44RAhH8AKC4IiWGWNBeBVNmW4FHgIEtgR7OUwCfeOrK
NVj1weDuFbyv2rZbRfzcbYA=
=HH10
-END PGP SIGNATURE-


Accepted:
hdparm-udeb_6.1-4_i386.udeb
  to pool/main/h/hdparm/hdparm-udeb_6.1-4_i386.udeb
hdparm_6.1-4.diff.gz
  to pool/main/h/hdparm/hdparm_6.1-4.diff.gz
hdparm_6.1-4.dsc
  to pool/main/h/hdparm/hdparm_6.1-4.dsc
hdparm_6.1-4_i386.deb
  to pool/main/h/hdparm/hdparm_6.1-4_i386.deb


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



Accepted libhdate 1.3.0-3 (source i386)

2005-08-11 Thread Baruch Even
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 15:52:35 +0100
Source: libhdate
Binary: libhdate-perl libhdate-python libhdate-pascal libhdate1 libhdate-dev
Architecture: source i386
Version: 1.3.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian Hebrew Packaging Team [EMAIL PROTECTED]
Changed-By: Baruch Even [EMAIL PROTECTED]
Description: 
 libhdate-dev - A library that help use hebrew dates
 libhdate-pascal - A library that help use hebrew dates
 libhdate-perl - A library that help use hebrew dates
 libhdate-python - A library that help use hebrew dates
 libhdate1  - A library that help use hebrew dates
Changes: 
 libhdate (1.3.0-3) unstable; urgency=low
 .
   * debian/control:
  - Change section to match overrides
Files: 
 7ab71cc750f72e4fa0613811ff5ebd1f 818 libdevel optional libhdate_1.3.0-3.dsc
 23e62e7a19720ea7ec0f62e8cce46a7b 124555 libdevel optional 
libhdate_1.3.0-3.diff.gz
 88a75b75c20f035692259f7297d3bf01 34588 libdevel optional 
libhdate-dev_1.3.0-3_i386.deb
 092e128141da29736740eb0f553c51b0 19130 python optional 
libhdate-python_1.3.0-3_i386.deb
 1f3e00e75c4a9cc777e07621fc6ff2f7 21266 perl optional 
libhdate-perl_1.3.0-3_i386.deb
 f6d409d49781af488e6c2d487cc9627e 15270 libdevel optional 
libhdate-pascal_1.3.0-3_i386.deb
 d76ffb70156aa6241fc664f54d12afb7 28072 libs optional libhdate1_1.3.0-3_i386.deb

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

iD8DBQFC+2kVHCar6qtHRZgRAlUlAKDSYflTQqzm5P+Jna2fweMrZNgCgQCfZH9H
ShQZsLj8FgnJK3puSga9wIw=
=T/p3
-END PGP SIGNATURE-


Accepted:
libhdate-dev_1.3.0-3_i386.deb
  to pool/main/libh/libhdate/libhdate-dev_1.3.0-3_i386.deb
libhdate-pascal_1.3.0-3_i386.deb
  to pool/main/libh/libhdate/libhdate-pascal_1.3.0-3_i386.deb
libhdate-perl_1.3.0-3_i386.deb
  to pool/main/libh/libhdate/libhdate-perl_1.3.0-3_i386.deb
libhdate-python_1.3.0-3_i386.deb
  to pool/main/libh/libhdate/libhdate-python_1.3.0-3_i386.deb
libhdate1_1.3.0-3_i386.deb
  to pool/main/libh/libhdate/libhdate1_1.3.0-3_i386.deb
libhdate_1.3.0-3.diff.gz
  to pool/main/libh/libhdate/libhdate_1.3.0-3.diff.gz
libhdate_1.3.0-3.dsc
  to pool/main/libh/libhdate/libhdate_1.3.0-3.dsc


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



Accepted kazehakase 0.2.9-2 (source i386)

2005-08-11 Thread Hidetaka Iwai
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon,  8 Aug 2005 11:45:01 +0900
Source: kazehakase
Binary: kazehakase
Architecture: source i386
Version: 0.2.9-2
Distribution: unstable
Urgency: low
Maintainer: Hidetaka Iwai [EMAIL PROTECTED]
Changed-By: Hidetaka Iwai [EMAIL PROTECTED]
Description: 
 kazehakase - gecko based web browser using GTK
Closes: 321815
Changes: 
 kazehakase (0.2.9-2) unstable; urgency=low
 .
   * debian/control: Added libssl to the Build-Depends field (closes: #321815).
   * Sponsored by Fumitoshi UKAI [EMAIL PROTECTED].
Files: 
 ed8e1ff942a803f5bbf5b08ae4dcc0be 790 web optional kazehakase_0.2.9-2.dsc
 752da15fac59b1dd96f5cb166e463765 9376 web optional kazehakase_0.2.9-2.diff.gz
 0da08141f24915983af24c688f922bc0 637166 web optional 
kazehakase_0.2.9-2_i386.deb

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

iD8DBQFC+2Sn9D5yZjzIjAkRAj2nAJ48+f04b6jGUDBGdR0VP4GjSdYVnwCgmxb1
C/oURA2HBl9t3O5zpR9eF38=
=cUqm
-END PGP SIGNATURE-


Accepted:
kazehakase_0.2.9-2.diff.gz
  to pool/main/k/kazehakase/kazehakase_0.2.9-2.diff.gz
kazehakase_0.2.9-2.dsc
  to pool/main/k/kazehakase/kazehakase_0.2.9-2.dsc
kazehakase_0.2.9-2_i386.deb
  to pool/main/k/kazehakase/kazehakase_0.2.9-2_i386.deb


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



Accepted sdcc 2.5.0-4 (source all i386)

2005-08-11 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 11:06:53 +0200
Source: sdcc
Binary: sdcc-ucsim sdcc-doc sdcc-libraries sdcc
Architecture: source all i386
Version: 2.5.0-4
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 sdcc   - Small Device C Compiler
 sdcc-doc   - Small Device C Compiler (documentation)
 sdcc-libraries - Small Device C Compiler (libraries)
 sdcc-ucsim - Micro-controller simulator for SDCC
Closes: 308623
Changes: 
 sdcc (2.5.0-4) unstable; urgency=low
 .
   * Added pic14 .h files (closes: bug#308623).
   * Added inc2h.pl and keil2sdcc.pl to the sdcc-libraries package.
Files: 
 ca806a811e52f17e103ad61a8d109538 720 electronics optional sdcc_2.5.0-4.dsc
 cf667a97e53aeef207058ac11003c8ab 17016 electronics optional 
sdcc_2.5.0-4.diff.gz
 f36d3f641dddf15a79738342e79c0eda 1044830 electronics optional 
sdcc_2.5.0-4_i386.deb
 86eae6862fa724ed80314e1a800d6572 487682 electronics optional 
sdcc-ucsim_2.5.0-4_i386.deb
 7993fdb4ec1fbfa5304e0da851a64c2f 1180154 electronics optional 
sdcc-libraries_2.5.0-4_all.deb
 bd8094f779f92eb012246abb9b8fd656 212372 doc optional sdcc-doc_2.5.0-4_all.deb

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

iD8DBQFC+zRdw3ao2vG823MRAhByAKCM1iVg0CdBbfhQo/XdPs1xZy/d7QCfXpm9
eqQkEQAUwa8MOmZ4E7Jwr2A=
=hJVg
-END PGP SIGNATURE-


Accepted:
sdcc-doc_2.5.0-4_all.deb
  to pool/main/s/sdcc/sdcc-doc_2.5.0-4_all.deb
sdcc-libraries_2.5.0-4_all.deb
  to pool/main/s/sdcc/sdcc-libraries_2.5.0-4_all.deb
sdcc-ucsim_2.5.0-4_i386.deb
  to pool/main/s/sdcc/sdcc-ucsim_2.5.0-4_i386.deb
sdcc_2.5.0-4.diff.gz
  to pool/main/s/sdcc/sdcc_2.5.0-4.diff.gz
sdcc_2.5.0-4.dsc
  to pool/main/s/sdcc/sdcc_2.5.0-4.dsc
sdcc_2.5.0-4_i386.deb
  to pool/main/s/sdcc/sdcc_2.5.0-4_i386.deb


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



Accepted plucker 1.8-7 (source i386)

2005-08-11 Thread Amaya Rodrigo Sastre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 13:56:54 +0200
Source: plucker
Binary: plucker plucker-desktop
Architecture: source i386
Version: 1.8-7
Distribution: unstable
Urgency: low
Maintainer: Amaya Rodrigo Sastre [EMAIL PROTECTED]
Changed-By: Amaya Rodrigo Sastre [EMAIL PROTECTED]
Description: 
 plucker- Pluck stuff from the web and read it on your PalmOS device
 plucker-desktop - Plucker Desktop is a GUI for Plucker
Closes: 190648 279668 289226 305251
Changes: 
 plucker (1.8-7) unstable; urgency=low
 .
   * Get FAQ from CVS fixing broken URLS (Closes: #190648).
   * Remove bashism in plucker-prc-install (Closes: #279668).
   * Get docs/plucker-build.1 from CVS (Closes: #289226).
   * Fix email address hyphenation in docs/plucker-build (Closes: #305251).
Files: 
 7ef6820013364197b4c2054c43a33ddf 723 otherosfs optional plucker_1.8-7.dsc
 17044e7c16c930824d0779b5bcc0ca63 43392 otherosfs optional plucker_1.8-7.diff.gz
 b4191c6eedffcc9f0d4881dd6bff569b 409374 otherosfs optional 
plucker_1.8-7_i386.deb
 3041e2ee803a15556b514ae54b1c99fe 820574 otherosfs optional 
plucker-desktop_1.8-7_i386.deb

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

iD8DBQFC+2qJNFDtUT/MKpARApbaAKDuCGoFYPYtCFkQix+sMy4asWL4VgCghesH
O9zFidql+YNTtoGJAWkDTic=
=Yhsb
-END PGP SIGNATURE-


Accepted:
plucker-desktop_1.8-7_i386.deb
  to pool/main/p/plucker/plucker-desktop_1.8-7_i386.deb
plucker_1.8-7.diff.gz
  to pool/main/p/plucker/plucker_1.8-7.diff.gz
plucker_1.8-7.dsc
  to pool/main/p/plucker/plucker_1.8-7.dsc
plucker_1.8-7_i386.deb
  to pool/main/p/plucker/plucker_1.8-7_i386.deb


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



Accepted clamav 0.86.2-5 (source all i386)

2005-08-11 Thread Stephen Gran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 11:52:05 -0400
Source: clamav
Binary: clamav libclamav-dev clamav-milter clamav-base clamav-freshclam 
clamav-testfiles clamav-daemon libclamav1 clamav-docs
Architecture: source all i386
Version: 0.86.2-5
Distribution: unstable
Urgency: low
Maintainer: Stephen Gran [EMAIL PROTECTED]
Changed-By: Stephen Gran [EMAIL PROTECTED]
Description: 
 clamav - antivirus scanner for Unix
 clamav-base - base package for clamav, an anti-virus utility for Unix
 clamav-daemon - antivirus scanner daemon
 clamav-docs - documentation package for clamav, an anti-virus utility for Unix
 clamav-freshclam - downloads clamav virus databases from the Internet
 clamav-milter - antivirus scanner for sendmail
 clamav-testfiles - use these files to test that your Antivirus program works
 libclamav-dev - clam Antivirus library development files
 libclamav1 - virus scanner library
Closes: 322564
Changes: 
 clamav (0.86.2-5) unstable; urgency=low
 .
   * Make sure pidfile always expands to something in clamd init script
 (closes: #322564)
Files: 
 a49d128a47ce35c9a19866c6e2b48c17 862 utils optional clamav_0.86.2-5.dsc
 3ea63e987abde89ac7d0b785b5f12ab7 188465 utils optional clamav_0.86.2-5.diff.gz
 67dc47e7f869eb6b13ba582bf45819ed 165354 utils optional 
clamav-base_0.86.2-5_all.deb
 4d94b2adb8c6401e8c7718707be5d100 126446 utils optional 
clamav-testfiles_0.86.2-5_all.deb
 da0fd8c7be6da3b3dc1b68f38a12cd2e 697756 utils optional 
clamav-docs_0.86.2-5_all.deb
 53b2f614a8df400c0549825014454143 256872 libs optional 
libclamav1_0.86.2-5_i386.deb
 a11fe57e80eb68a44e7a9129ca40d512 65692 utils optional clamav_0.86.2-5_i386.deb
 bc5af16515771d6f1c09989bfaea1da6 38754 utils optional 
clamav-daemon_0.86.2-5_i386.deb
 c8d90fd51ffa66807d9614133ce87dfe 2494928 utils optional 
clamav-freshclam_0.86.2-5_i386.deb
 82b77cc19ea3e2a798d8b546984b849a 37910 utils extra 
clamav-milter_0.86.2-5_i386.deb
 75c412c1d56f5031dc0f5542de52096a 158730 libdevel optional 
libclamav-dev_0.86.2-5_i386.deb

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

iD8DBQFC+3ZWSYIMHOpZA44RAmbSAJ9cVSQeRhD9JUuLYVbj9kXROHAuKwCfWwvw
1CImKFpetU1fJvM6/R1wXFw=
=S4qn
-END PGP SIGNATURE-


Accepted:
clamav-base_0.86.2-5_all.deb
  to pool/main/c/clamav/clamav-base_0.86.2-5_all.deb
clamav-daemon_0.86.2-5_i386.deb
  to pool/main/c/clamav/clamav-daemon_0.86.2-5_i386.deb
clamav-docs_0.86.2-5_all.deb
  to pool/main/c/clamav/clamav-docs_0.86.2-5_all.deb
clamav-freshclam_0.86.2-5_i386.deb
  to pool/main/c/clamav/clamav-freshclam_0.86.2-5_i386.deb
clamav-milter_0.86.2-5_i386.deb
  to pool/main/c/clamav/clamav-milter_0.86.2-5_i386.deb
clamav-testfiles_0.86.2-5_all.deb
  to pool/main/c/clamav/clamav-testfiles_0.86.2-5_all.deb
clamav_0.86.2-5.diff.gz
  to pool/main/c/clamav/clamav_0.86.2-5.diff.gz
clamav_0.86.2-5.dsc
  to pool/main/c/clamav/clamav_0.86.2-5.dsc
clamav_0.86.2-5_i386.deb
  to pool/main/c/clamav/clamav_0.86.2-5_i386.deb
libclamav-dev_0.86.2-5_i386.deb
  to pool/main/c/clamav/libclamav-dev_0.86.2-5_i386.deb
libclamav1_0.86.2-5_i386.deb
  to pool/main/c/clamav/libclamav1_0.86.2-5_i386.deb


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



Accepted larswm 7.5.3-2 (source i386)

2005-08-11 Thread Edelhard Becker
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  9 Aug 2005 18:07:03 +0200
Source: larswm
Binary: larswm
Architecture: source i386
Version: 7.5.3-2
Distribution: unstable
Urgency: low
Maintainer: Edelhard Becker [EMAIL PROTECTED]
Changed-By: Edelhard Becker [EMAIL PROTECTED]
Description: 
 larswm - Lars Window Manager with tiled windows
Changes: 
 larswm (7.5.3-2) unstable; urgency=low
 .
   * applied Mikolaj Golubs 'larsclock -update' patch, thanks Mikolaj
   * applied Tommy Petterssons 'skip-floating-tools' patch, mailed to
 larswm-devel list on Tue, 09 Aug 2005
Files: 
 cf72659a139672d877cb9d6927226270 582 x11 optional larswm_7.5.3-2.dsc
 9486e640d4844c3997d4c2d8aa4ae3e9 8505 x11 optional larswm_7.5.3-2.diff.gz
 9a7766ebf2d4da6212f3761e6e3c5e60 101540 x11 optional larswm_7.5.3-2_i386.deb

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

iD8DBQFC+4g3lByGkm8iLx8RAvCvAJ9AHF3bBao5415JHBExufCsHgmi5wCfccKv
tJqh5csYR2Pz/fhHWXVJoMI=
=rzeO
-END PGP SIGNATURE-


Accepted:
larswm_7.5.3-2.diff.gz
  to pool/main/l/larswm/larswm_7.5.3-2.diff.gz
larswm_7.5.3-2.dsc
  to pool/main/l/larswm/larswm_7.5.3-2.dsc
larswm_7.5.3-2_i386.deb
  to pool/main/l/larswm/larswm_7.5.3-2_i386.deb


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



Accepted cvs-syncmail 2.3-1 (source all)

2005-08-11 Thread Christopher Sacca
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri,  5 Aug 2005 11:26:14 -0400
Source: cvs-syncmail
Binary: cvs-syncmail
Architecture: source all
Version: 2.3-1
Distribution: unstable
Urgency: low
Maintainer: Christopher Sacca [EMAIL PROTECTED]
Changed-By: Christopher Sacca [EMAIL PROTECTED]
Description: 
 cvs-syncmail - Notification program for CVS checkins
Closes: 246997 247281 251814 294846 300564
Changes: 
 cvs-syncmail (2.3-1) unstable; urgency=low
 .
   * New maintainer (Closes: #300564)
   * Updated encoding patch and using dpatch to deal with it
 (Closes: #251814)
   * Added patch to correct spelling in man page (Closes: #247281)
   * Corrected issues with directory handling (Closes: #246997)
   * Seems that version 2.3 handles multiple emails fine
 (Closes: #294846)
   * Added patch to correct use of - in the man page
Files: 
 385393e43f9617bf6cb0a5b075ab432e 592 utils optional cvs-syncmail_2.3-1.dsc
 7cfba43811e4ebda0c25987904599ebc 17349 utils optional 
cvs-syncmail_2.3.orig.tar.gz
 2f39fa1eb4e2b56e18c8767ef45b053a 7515 utils optional cvs-syncmail_2.3-1.diff.gz
 ddc2b5aa238077141896e762209e705d 13614 utils optional 
cvs-syncmail_2.3-1_all.deb

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

iD8DBQFC+47z7Ro5M7LPzdgRAnyzAJ47dPKzl8sqF/P4feY0g7kC6xKmoACfaxFZ
vOq0QKVON6OgGP9j+qMQ038=
=VVRo
-END PGP SIGNATURE-


Accepted:
cvs-syncmail_2.3-1.diff.gz
  to pool/main/c/cvs-syncmail/cvs-syncmail_2.3-1.diff.gz
cvs-syncmail_2.3-1.dsc
  to pool/main/c/cvs-syncmail/cvs-syncmail_2.3-1.dsc
cvs-syncmail_2.3-1_all.deb
  to pool/main/c/cvs-syncmail/cvs-syncmail_2.3-1_all.deb
cvs-syncmail_2.3.orig.tar.gz
  to pool/main/c/cvs-syncmail/cvs-syncmail_2.3.orig.tar.gz


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



Accepted glark 1.7.4-1 (source all)

2005-08-11 Thread Michael Ablassmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 11:07:50 +0200
Source: glark
Binary: glark
Architecture: source all
Version: 1.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Michael Ablassmeier [EMAIL PROTECTED]
Changed-By: Michael Ablassmeier [EMAIL PROTECTED]
Description: 
 glark  - pattern matching tool similar to grep
Changes: 
 glark (1.7.4-1) unstable; urgency=low
 .
   * New upstream release
   * Remove debian/patches/01_inputfile.diff, fixed upstream with 1.7.4
 + Remove patchsys include from debian/rules
   * Update upstream homepage in debian/copyright.
Files: 
 0b3d05a022b33a76f58527ba43424fcd 587 utils optional glark_1.7.4-1.dsc
 e00d8258105856c98b4361b94d40c37a 34037 utils optional glark_1.7.4.orig.tar.gz
 595c753e4e86916f2899bb04217b29e2 2353 utils optional glark_1.7.4-1.diff.gz
 5d96a700a3c9a7edb9580e21414e23f4 34090 utils optional glark_1.7.4-1_all.deb

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

iD8DBQFC+5lxTFkUq7Drx3cRAmBFAJ9YmdnzZC7PWRfWnh481GXxqEYcGQCeMXgB
Ci59FWCThiGpALMSilsN3Ig=
=l5ZR
-END PGP SIGNATURE-


Accepted:
glark_1.7.4-1.diff.gz
  to pool/main/g/glark/glark_1.7.4-1.diff.gz
glark_1.7.4-1.dsc
  to pool/main/g/glark/glark_1.7.4-1.dsc
glark_1.7.4-1_all.deb
  to pool/main/g/glark/glark_1.7.4-1_all.deb
glark_1.7.4.orig.tar.gz
  to pool/main/g/glark/glark_1.7.4.orig.tar.gz


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



Accepted quick-lounge-applet 2.10.0-2 (source i386)

2005-08-11 Thread Andreas Rottmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 19:07:10 +0200
Source: quick-lounge-applet
Binary: quick-lounge-applet
Architecture: source i386
Version: 2.10.0-2
Distribution: unstable
Urgency: low
Maintainer: Andreas Rottmann [EMAIL PROTECTED]
Changed-By: Andreas Rottmann [EMAIL PROTECTED]
Description: 
 quick-lounge-applet - GNOME 2 Panel Applet to organize your preferred 
applications
Changes: 
 quick-lounge-applet (2.10.0-2) unstable; urgency=low
 .
   * Upload to unstable.
   * Bumped standards-version to 3.6.2 (no changes).
Files: 
 1bf4f9cce4a754fd0fad7edaf0163360 797 gnome optional 
quick-lounge-applet_2.10.0-2.dsc
 37361d3066d1390f4516fb6ece248d61 6120 gnome optional 
quick-lounge-applet_2.10.0-2.diff.gz
 6cd59308bf28c8855bfcd7ba531c9531 94672 gnome optional 
quick-lounge-applet_2.10.0-2_i386.deb

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

iD8DBQFC+4vg+S/PxQH9W2IRApUjAJ9dZwa0j4UHu3HNorw28j1izgGZBwCfUDLZ
ABH0VOAEhGGtyOCKZnLeqw0=
=fBgi
-END PGP SIGNATURE-


Accepted:
quick-lounge-applet_2.10.0-2.diff.gz
  to pool/main/q/quick-lounge-applet/quick-lounge-applet_2.10.0-2.diff.gz
quick-lounge-applet_2.10.0-2.dsc
  to pool/main/q/quick-lounge-applet/quick-lounge-applet_2.10.0-2.dsc
quick-lounge-applet_2.10.0-2_i386.deb
  to pool/main/q/quick-lounge-applet/quick-lounge-applet_2.10.0-2_i386.deb


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



Accepted zsh-beta 4.3.0-dev-1+20050811-1 (source all)

2005-08-11 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 15:26:11 -0400
Source: zsh-beta
Binary: zsh-beta-static zsh-beta-doc zsh-beta
Architecture: source all
Version: 4.3.0-dev-1+20050811-1
Distribution: unstable
Urgency: low
Maintainer: Clint Adams [EMAIL PROTECTED]
Changed-By: Clint Adams [EMAIL PROTECTED]
Description: 
 zsh-beta   - A shell with lots of features (dev tree)
 zsh-beta-doc - zsh beta documentation - info/HTML format
Changes: 
 zsh-beta (4.3.0-dev-1+20050811-1) unstable; urgency=low
 .
   * Update to HEAD.
Files: 
 9027f7a4a5a399e4c834fdba614441fe 745 shells optional 
zsh-beta_4.3.0-dev-1+20050811-1.dsc
 0bbe07fb3b3f54d1fa6089f99eb678d9 2158247 shells optional 
zsh-beta_4.3.0-dev-1+20050811.orig.tar.gz
 8ca3e4672c03ae60b59d53da92b3a274 732739 shells optional 
zsh-beta_4.3.0-dev-1+20050811-1.diff.gz
 c667452c11fbb0afc5f8b2965dfe67c6 661194 shells optional 
zsh-beta-doc_4.3.0-dev-1+20050811-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Debian!

iD8DBQFC+6sO5m0u66uWM3ARAht6AJ4sMjTjbo0znM9OyAh5mP+H34PsrACgr1dE
+uRwQOZ2yf1Mn8D3T+fDLbs=
=2TnT
-END PGP SIGNATURE-


Accepted:
zsh-beta-doc_4.3.0-dev-1+20050811-1_all.deb
  to pool/main/z/zsh-beta/zsh-beta-doc_4.3.0-dev-1+20050811-1_all.deb
zsh-beta_4.3.0-dev-1+20050811-1.diff.gz
  to pool/main/z/zsh-beta/zsh-beta_4.3.0-dev-1+20050811-1.diff.gz
zsh-beta_4.3.0-dev-1+20050811-1.dsc
  to pool/main/z/zsh-beta/zsh-beta_4.3.0-dev-1+20050811-1.dsc
zsh-beta_4.3.0-dev-1+20050811.orig.tar.gz
  to pool/main/z/zsh-beta/zsh-beta_4.3.0-dev-1+20050811.orig.tar.gz


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



Accepted spkproxy 1.4.8-2 (source all)

2005-08-11 Thread Javier Fernandez-Sanguino Pen~a
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 20:48:04 +0200
Source: spkproxy
Binary: spikeproxy
Architecture: source all
Version: 1.4.8-2
Distribution: unstable
Urgency: low
Maintainer: Javier Fernandez-Sanguino Pen~a [EMAIL PROTECTED]
Changed-By: Javier Fernandez-Sanguino Pen~a [EMAIL PROTECTED]
Description: 
 spikeproxy - Web application security testing proxy
Closes: 39
Changes: 
 spkproxy (1.4.8-2) unstable; urgency=low
 .
   * Add timeoutsocked and read_query to the Makefile's python files
 to install (Closes: #39
Files: 
 be8ad18ae654fb5be3d36e50aa58a4c6 710 net optional spkproxy_1.4.8-2.dsc
 c4a90620a12b6c3d1c4506864e9d1d7b 7790 net optional spkproxy_1.4.8-2.diff.gz
 4b14052ac552ae51ebcc9e02a878d417 599144 net optional spikeproxy_1.4.8-2_all.deb

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

iQCVAwUBQvueGvtEPvakNq0lAQLn/wQAqJZe4HMePst+T1ByONNyYXiJ3wk2ki+U
KuG7ViI+59ldlOgAnfj1BHDfYh1dLmgeJvgAaamigfeGs8KHxUvmFWDb9vhDsc+d
sD3v+IEeEB2QyQ08qa8JcJ4z45FuIUtuYZMEuitmnk3UUUfu2HmNfjYhY20SE0KT
vxynyaFQ9Us=
=bU7z
-END PGP SIGNATURE-


Accepted:
spikeproxy_1.4.8-2_all.deb
  to pool/main/s/spkproxy/spikeproxy_1.4.8-2_all.deb
spkproxy_1.4.8-2.diff.gz
  to pool/main/s/spkproxy/spkproxy_1.4.8-2.diff.gz
spkproxy_1.4.8-2.dsc
  to pool/main/s/spkproxy/spkproxy_1.4.8-2.dsc


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



Accepted sourcenav 5.1.4-2 (source i386)

2005-08-11 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 21:03:11 +0200
Source: sourcenav
Binary: sourcenav
Architecture: source i386
Version: 5.1.4-2
Distribution: unstable
Urgency: low
Maintainer: Torsten Werner [EMAIL PROTECTED]
Changed-By: Torsten Werner [EMAIL PROTECTED]
Description: 
 sourcenav  - Source code analysis, editor, browser and build tool.
Closes: 303692
Changes: 
 sourcenav (5.1.4-2) unstable; urgency=low
 .
   * applied portabiliy patch for amd64 from Andreas Jochens, closes: #303692
Files: 
 af559d9033703b5bf5309ae22e57db80 606 devel optional sourcenav_5.1.4-2.dsc
 39a23ebf8ba9c7621ba68414647b5ce5 9538 devel optional sourcenav_5.1.4-2.diff.gz
 93ad3b69dd5c62dbb26081e9fbb1a399 6846954 devel optional 
sourcenav_5.1.4-2_i386.deb

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

iD8DBQFC+6KbfY3dicTPjsMRAv26AJ99zATyIHuwSdOdFkwcC1vHB0fEigCfSSTS
9+istmiXJh2VrwsEhf6dvZc=
=Q6q4
-END PGP SIGNATURE-


Accepted:
sourcenav_5.1.4-2.diff.gz
  to pool/main/s/sourcenav/sourcenav_5.1.4-2.diff.gz
sourcenav_5.1.4-2.dsc
  to pool/main/s/sourcenav/sourcenav_5.1.4-2.dsc
sourcenav_5.1.4-2_i386.deb
  to pool/main/s/sourcenav/sourcenav_5.1.4-2_i386.deb


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



Accepted lyskom-elisp-client 0.48-3 (source all)

2005-08-11 Thread Joel Rosdahl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 21:32:59 +0200
Source: lyskom-elisp-client
Binary: lyskom-elisp-client
Architecture: source all
Version: 0.48-3
Distribution: unstable
Urgency: low
Maintainer: Joel Rosdahl [EMAIL PROTECTED]
Changed-By: Joel Rosdahl [EMAIL PROTECTED]
Description: 
 lyskom-elisp-client - emacs client for LysKOM
Changes: 
 lyskom-elisp-client (0.48-3) unstable; urgency=low
 .
   * Depend on debconf | debconf-2.0 as requested by Joey Hess.
   * Updated to Standards-Version 3.6.2.
Files: 
 da59fd2ce6a3ccbff9792abedc20bc6f 618 net optional 
lyskom-elisp-client_0.48-3.dsc
 fa3096e243890a94a88a6d038dc62e2b 6087 net optional 
lyskom-elisp-client_0.48-3.diff.gz
 6241b74acbab62e979e91248cf52c125 558934 net optional 
lyskom-elisp-client_0.48-3_all.deb

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

iD8DBQFC+6iNAGT5/7uEXpcRAscRAJwP4Qdh6LM93h9xM0Ym7vMTwdf1tgCcCPvc
3m1mKXE41Wf+8P0XlIHnt7E=
=4OJy
-END PGP SIGNATURE-


Accepted:
lyskom-elisp-client_0.48-3.diff.gz
  to pool/main/l/lyskom-elisp-client/lyskom-elisp-client_0.48-3.diff.gz
lyskom-elisp-client_0.48-3.dsc
  to pool/main/l/lyskom-elisp-client/lyskom-elisp-client_0.48-3.dsc
lyskom-elisp-client_0.48-3_all.deb
  to pool/main/l/lyskom-elisp-client/lyskom-elisp-client_0.48-3_all.deb


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



Accepted libio-socket-ssl-perl 0.97-1 (source all)

2005-08-11 Thread Florian Ragwitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 19:33:45 +0200
Source: libio-socket-ssl-perl
Binary: libio-socket-ssl-perl
Architecture: source all
Version: 0.97-1
Distribution: unstable
Urgency: low
Maintainer: Florian Ragwitz [EMAIL PROTECTED]
Changed-By: Florian Ragwitz [EMAIL PROTECTED]
Description: 
 libio-socket-ssl-perl - Perl module implementing object oriented interface to 
SSL sockets
Closes: 322099
Changes: 
 libio-socket-ssl-perl (0.97-1) unstable; urgency=low
 .
   * New upstream version.
   * New Maintainer (Closes: #322099).
   * Changed Section from interpreters to perl because it's more accurate.
   * Removed dependency on openssl. I don't see why it's needed. Net::SSLeay is
 used as the interface to libssl.
   * Removed Conflicts: and Replaces: libnet-socketssl-perl. It's not in the
 archive anymore.
   * Using debhelper 4.
   * Updated standards version.
   * Rewrote debian/rules.
   * Updated copyright.
Files: 
 ee97b56c3ec29f65519e608431b4e6d8 807 perl optional 
libio-socket-ssl-perl_0.97-1.dsc
 34562e9475de132faa0f14ca2be053a5 32741 perl optional 
libio-socket-ssl-perl_0.97.orig.tar.gz
 a5c08e85bfcb7ea70f0d34742e54a896 2354 perl optional 
libio-socket-ssl-perl_0.97-1.diff.gz
 c122f6bf28e854371c40aaa787f4727d 35758 perl optional 
libio-socket-ssl-perl_0.97-1_all.deb

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

iQCVAwUBQvukeL8Zfhn2SkeXAQJHPgP+N/tUfDIOertVnqv+e7wqy4TLzuo1j2HF
qv+PFW5OysI1uxcov1/wbjZgR+dgeTmTxsbCrBUDkMvQ/PUL0gAPe1nDRb1A4/fy
RLyz5dOGyoJ8ZdY4yAA/kDdQ/oMyMUeP667BaUWrZ8XEm4gtIeSawnk2+w+vO4cH
Isw3D+XQHCI=
=TuJJ
-END PGP SIGNATURE-


Accepted:
libio-socket-ssl-perl_0.97-1.diff.gz
  to pool/main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_0.97-1.diff.gz
libio-socket-ssl-perl_0.97-1.dsc
  to pool/main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_0.97-1.dsc
libio-socket-ssl-perl_0.97-1_all.deb
  to pool/main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_0.97-1_all.deb
libio-socket-ssl-perl_0.97.orig.tar.gz
  to pool/main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_0.97.orig.tar.gz


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



Accepted chase 0.5.2-2 (source i386)

2005-08-11 Thread Andreas Rottmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 21:16:46 +0200
Source: chase
Binary: chase
Architecture: source i386
Version: 0.5.2-2
Distribution: unstable
Urgency: low
Maintainer: Andreas Rottmann [EMAIL PROTECTED]
Changed-By: Andreas Rottmann [EMAIL PROTECTED]
Description: 
 chase  - Follow a symlink and print out its target file
Closes: 281045 320276
Changes: 
 chase (0.5.2-2) unstable; urgency=low
 .
   * Rebuild for GCC 4 transition (closes: #320276).
   * Fix up - and ` characters in manpage (closes: #281045).
   * Add itla-debuild support.
Files: 
 effb70246dc4fda9a064cba3f2fc2541 567 utils optional chase_0.5.2-2.dsc
 f9c50445a35544974022745d72b8e63f 4810 utils optional chase_0.5.2-2.diff.gz
 b29fea7d1004464af0acf25e9d68dab6 14710 utils optional chase_0.5.2-2_i386.deb

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

iD8DBQFC+6YZ+S/PxQH9W2IRAsvDAJ9C9dZAY7cK4aqvd2WykRST+bTjugCglMPh
RsPXHrT2LmgRknxgzXijbRM=
=Y9Rw
-END PGP SIGNATURE-


Accepted:
chase_0.5.2-2.diff.gz
  to pool/main/c/chase/chase_0.5.2-2.diff.gz
chase_0.5.2-2.dsc
  to pool/main/c/chase/chase_0.5.2-2.dsc
chase_0.5.2-2_i386.deb
  to pool/main/c/chase/chase_0.5.2-2_i386.deb


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



Accepted libfcgi-perl 0.67-2 (source i386)

2005-08-11 Thread Florian Ragwitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 20:22:22 +0200
Source: libfcgi-perl
Binary: libfcgi-perl
Architecture: source i386
Version: 0.67-2
Distribution: unstable
Urgency: low
Maintainer: Florian Ragwitz [EMAIL PROTECTED]
Changed-By: Florian Ragwitz [EMAIL PROTECTED]
Description: 
 libfcgi-perl - FastCGI Perl module
Closes: 322098
Changes: 
 libfcgi-perl (0.67-2) unstable; urgency=low
 .
   * New maintainer (Closes: #322098).
   * Using debhelper 4.
   * Rewrote debian/rules.
   * Updated standards version.
   * Changed Section from interpreters to perl because that's more accurate.
Files: 
 f47b9468a8ef872ac43ac95aa5ec63ac 721 perl optional libfcgi-perl_0.67-2.dsc
 2e937525c2f08e42ab24a80f1f593b4c 2848 perl optional libfcgi-perl_0.67-2.diff.gz
 4a435def7648af4a5776165e71992a87 37728 perl optional 
libfcgi-perl_0.67-2_i386.deb

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

iQCVAwUBQvulA78Zfhn2SkeXAQKPUAP/evX2HDp8CV2OC00sCs+oNgmYXH0CA68+
UFqUhfKdirxALio5WkHx5gmsyMkiMrBb2Tx34giAaOPoMIJJ3lT55UAWDY2sGmED
lWCHOwXN2AnCcdTWMbJxJjFHn17150bKfd8iqJO55CH8z1gHDyYGVthNTsqVUbEi
wr1pSjD6apE=
=r8CJ
-END PGP SIGNATURE-


Accepted:
libfcgi-perl_0.67-2.diff.gz
  to pool/main/libf/libfcgi-perl/libfcgi-perl_0.67-2.diff.gz
libfcgi-perl_0.67-2.dsc
  to pool/main/libf/libfcgi-perl/libfcgi-perl_0.67-2.dsc
libfcgi-perl_0.67-2_i386.deb
  to pool/main/libf/libfcgi-perl/libfcgi-perl_0.67-2_i386.deb


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



Accepted libversion-perl 0.45-1 (source i386)

2005-08-11 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 21:03:45 +0200
Source: libversion-perl
Binary: libversion-perl
Architecture: source i386
Version: 0.45-1
Distribution: unstable
Urgency: low
Maintainer: Krzysztof Krzyzaniak (eloy) [EMAIL PROTECTED]
Changed-By: Krzysztof Krzyzaniak (eloy) [EMAIL PROTECTED]
Description: 
 libversion-perl - Perl extension for Version Objects
Closes: 271435
Changes: 
 libversion-perl (0.45-1) unstable; urgency=low
 .
   * New upstream release
   * Adopting package (closes: #271435)
   * debian/rules - changes needed by Module::Build
Files: 
 d20b14a902666c86d278e8a4c77449cf 638 perl optional libversion-perl_0.45-1.dsc
 81f9add0e58b2639c163456df180bf60 29843 perl optional 
libversion-perl_0.45.orig.tar.gz
 e3087db584611f5b4404eeba43e3bdb7 2007 perl optional 
libversion-perl_0.45-1.diff.gz
 39da2d57d2d7bab7aec67902647f230e 35418 perl optional 
libversion-perl_0.45-1_i386.deb

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

iD8DBQFC+6FJ+NMfSd6w7DERAjgBAKCtb7BtCridIG7/MM3v8oBvIUA67QCfTTux
dZQr8BurRZ+c+u4GSjY8COg=
=AT/H
-END PGP SIGNATURE-


Accepted:
libversion-perl_0.45-1.diff.gz
  to pool/main/libv/libversion-perl/libversion-perl_0.45-1.diff.gz
libversion-perl_0.45-1.dsc
  to pool/main/libv/libversion-perl/libversion-perl_0.45-1.dsc
libversion-perl_0.45-1_i386.deb
  to pool/main/libv/libversion-perl/libversion-perl_0.45-1_i386.deb
libversion-perl_0.45.orig.tar.gz
  to pool/main/libv/libversion-perl/libversion-perl_0.45.orig.tar.gz


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



Accepted radvd 1:0.8-1 (source i386)

2005-08-11 Thread Andreas Rottmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 20:59:53 +0200
Source: radvd
Binary: radvd
Architecture: source i386
Version: 1:0.8-1
Distribution: unstable
Urgency: low
Maintainer: Andreas Rottmann [EMAIL PROTECTED]
Changed-By: Andreas Rottmann [EMAIL PROTECTED]
Description: 
 radvd  - Router Advertisement Daemon
Closes: 301543
Changes: 
 radvd (1:0.8-1) unstable; urgency=low
 .
   * New upstream release.
 - Fixes adress garbling issue (closes: #301543).
   * Bumped standards-version to 3.6.2.
   * Added missing adduser dependency (thanks, lintian!).
   * Make download URL version independendent in copyright.
Files: 
 22c5d6be77864cd7d25ee855f6afe3fe 586 net optional radvd_0.8-1.dsc
 374c18e6aa456b02951b42b661cf855a 103682 net optional radvd_0.8.orig.tar.gz
 080a0fd1d845ae447d7281d4bb3593f5 44625 net optional radvd_0.8-1.diff.gz
 8f86dd0fb6f5ce1170e382bff4033941 54322 net optional radvd_0.8-1_i386.deb

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

iD8DBQFC+6A8+S/PxQH9W2IRAigYAJ0SWOORjy5Nf0oktYplJQz4UG9jmACfTur5
7rA2BDrMulDGNcNKvWZi+pY=
=X/pl
-END PGP SIGNATURE-


Accepted:
radvd_0.8-1.diff.gz
  to pool/main/r/radvd/radvd_0.8-1.diff.gz
radvd_0.8-1.dsc
  to pool/main/r/radvd/radvd_0.8-1.dsc
radvd_0.8-1_i386.deb
  to pool/main/r/radvd/radvd_0.8-1_i386.deb
radvd_0.8.orig.tar.gz
  to pool/main/r/radvd/radvd_0.8.orig.tar.gz


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



Accepted xcdroast 0.98+0alpha15-2 (source i386)

2005-08-11 Thread Hector Garcia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 17:24:53 +0200
Source: xcdroast
Binary: xcdroast
Architecture: source i386
Version: 0.98+0alpha15-2
Distribution: unstable
Urgency: low
Maintainer: Hector Garcia [EMAIL PROTECTED]
Changed-By: Hector Garcia [EMAIL PROTECTED]
Description: 
 xcdroast   - X based CD-writer software
Closes: 227948 236922 251555 254086 256296 269361 285671 300381 307499 309110
Changes: 
 xcdroast (0.98+0alpha15-2) unstable; urgency=low
 .
   * Compiled with GTK2 support. (Closes: #227948, #254086, #256296)
   * Disabled CFLAGS on debian/rules untils all issues raised for gcc4
 are fixed.
   * Added Italian debconf template translation (Valentina)
 (Closes: #309110)
   * Added Brazilian Portuguese debconf template translation (Tiago Bortoletto)
(Closes: #269361)
   * Added Catalan and fixed debconf template translation (Miquel Oliete)
(Closes: #236922)
   * Added reference to pdf manual on debian/doc-base.manual
   * Removed reference to html manual (now gone in favor of pdf) on
 debian/doc-base.manual. (Closes: #307499, #285671)
   * Changed 'to short' into 'too short' on man/xcdroast.1. (Closes: #251555)
   * Added Russian debconf template translation (Basilius)
(Closes: #300381)
Files: 
 7e98a0be5f3059dc0472384a5c6836d8 633 otherosfs extra 
xcdroast_0.98+0alpha15-2.dsc
 37f9490048db9bcbc9f7523d24ce679d 102629 otherosfs extra 
xcdroast_0.98+0alpha15-2.diff.gz
 06ad255926c75e7216d7baa940e19f53 1856392 otherosfs extra 
xcdroast_0.98+0alpha15-2_i386.deb

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

iD8DBQFC+5yEMwsDi2xjdG0RAtSRAKC3LGPKDAcQlSa+FrtATzTOVL7+3QCgzWgm
WBcyeT25XcbfX08GgzZxsho=
=+9K8
-END PGP SIGNATURE-


Accepted:
xcdroast_0.98+0alpha15-2.diff.gz
  to pool/main/x/xcdroast/xcdroast_0.98+0alpha15-2.diff.gz
xcdroast_0.98+0alpha15-2.dsc
  to pool/main/x/xcdroast/xcdroast_0.98+0alpha15-2.dsc
xcdroast_0.98+0alpha15-2_i386.deb
  to pool/main/x/xcdroast/xcdroast_0.98+0alpha15-2_i386.deb


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



Accepted vdr 1.3.28-1 (source i386 all)

2005-08-11 Thread Debian VDR Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  9 Aug 2005 20:45:37 +0200
Source: vdr
Binary: vdr-plugin-sky vdr vdr-plugin-examples vdr-dev
Architecture: source i386 all
Version: 1.3.28-1
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Debian VDR Team [EMAIL PROTECTED]
Description: 
 vdr- Video Disk Recorder for DVB cards
 vdr-dev- Video Disk Recorder for DVB cards
 vdr-plugin-examples - Plugins for vdr to show some possible features
 vdr-plugin-sky - Plugin for using a Sky Digibox with vdr
Changes: 
 vdr (1.3.28-1) unstable; urgency=low
 .
   * Thomas Schmidt [EMAIL PROTECTED]
 - New upstream release
   + Removed 13_remote.dpatch
   + Removed 16_dvbspu.dpatch
   + Updated 10_dd-record-option.dpatch
   + Updated 15_dvbplayer.dpatch
   + Updated 16_dvbspu.dpatch
 - vdr-dev: depend on ${misc:Depends}, debhelper,
   dvb-dev (= 1.0.0) | linux-kernel-headers (=2.5.999-test7-bk-6)
 - vdr-dev: suggests dh-make
   * Tobias Grimm [EMAIL PROTECTED]
 - Extract patch infos and install to /usr/share/doc/vdr/patchinfo
 - Renamed 01_vdr_1.2.6-3.1.diff.gz to 01_Makefile-fPIC-fix
Files: 
 564cd5bc369d345a8d40859c6e580d0d 782 misc extra vdr_1.3.28-1.dsc
 47209492354cf82bea70767cb204c855 695472 misc extra vdr_1.3.28.orig.tar.gz
 64a22ef33ecb2a8f78160f3a9aa8bb64 57106 misc extra vdr_1.3.28-1.diff.gz
 849126c443498603da8e608dff6e6374 135694 misc extra vdr-dev_1.3.28-1_all.deb
 9e3d232f1d91b8ae29c68aaf0c34ad3c 644094 misc extra vdr_1.3.28-1_i386.deb
 a065bfdfb28090aab73e0ac5f67ab644 23080 misc extra 
vdr-plugin-sky_1.3.28-1_i386.deb
 c83a90bb6624d61af59db1162ddad877 11696 misc extra 
vdr-plugin-examples_1.3.28-1_i386.deb

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

iD8DBQFC+6Zjc9+NqwoydlIRApV2AJ9/2tEnMQhG8FdNd4q7FmCZ/ERX+ACfQo7R
oIxu8/wJhESigOW9kv4MBkk=
=UmvF
-END PGP SIGNATURE-


Accepted:
vdr-dev_1.3.28-1_all.deb
  to pool/main/v/vdr/vdr-dev_1.3.28-1_all.deb
vdr-plugin-examples_1.3.28-1_i386.deb
  to pool/main/v/vdr/vdr-plugin-examples_1.3.28-1_i386.deb
vdr-plugin-sky_1.3.28-1_i386.deb
  to pool/main/v/vdr/vdr-plugin-sky_1.3.28-1_i386.deb
vdr_1.3.28-1.diff.gz
  to pool/main/v/vdr/vdr_1.3.28-1.diff.gz
vdr_1.3.28-1.dsc
  to pool/main/v/vdr/vdr_1.3.28-1.dsc
vdr_1.3.28-1_i386.deb
  to pool/main/v/vdr/vdr_1.3.28-1_i386.deb
vdr_1.3.28.orig.tar.gz
  to pool/main/v/vdr/vdr_1.3.28.orig.tar.gz


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



Accepted zsh 4.2.5-13 (source all)

2005-08-11 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 15:48:43 -0400
Source: zsh
Binary: zsh zsh-static zsh-doc
Architecture: source all
Version: 4.2.5-13
Distribution: unstable
Urgency: low
Maintainer: Clint Adams [EMAIL PROTECTED]
Changed-By: Clint Adams [EMAIL PROTECTED]
Description: 
 zsh- A shell with lots of features
 zsh-doc- zsh documentation - info/HTML format
 zsh-static - A shell with lots of features (static link)
Closes: 322573
Changes: 
 zsh (4.2.5-13) unstable; urgency=low
 .
   * Update svn completion again, since it was broken.  closes: #322573.
Files: 
 c16c6a413e0de6b5c6d761c27d39824b 692 shells optional zsh_4.2.5-13.dsc
 d64250782f385d183d6c556c975aff1a 333893 shells optional zsh_4.2.5-13.diff.gz
 a12e0d2d34028ccbc2a42c2a333525d0 672368 shells optional 
zsh-doc_4.2.5-13_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Debian!

iD8DBQFC+7fX5m0u66uWM3ARAndxAJ0XbdVvNRc6KcRKa+PcmlHK4oQhKACfTxWv
CqDDWKFYhLLEiHD/DHh86/A=
=Km9H
-END PGP SIGNATURE-


Accepted:
zsh-doc_4.2.5-13_all.deb
  to pool/main/z/zsh/zsh-doc_4.2.5-13_all.deb
zsh_4.2.5-13.diff.gz
  to pool/main/z/zsh/zsh_4.2.5-13.diff.gz
zsh_4.2.5-13.dsc
  to pool/main/z/zsh/zsh_4.2.5-13.dsc


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



Accepted jmon 0.3.1-7 (source i386)

2005-08-11 Thread LENART Janos
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 Aug 2005 20:06:37 +0200
Source: jmon
Binary: jmon
Architecture: source i386
Version: 0.3.1-7
Distribution: unstable
Urgency: medium
Maintainer: LENART Janos [EMAIL PROTECTED]
Changed-By: LENART Janos [EMAIL PROTECTED]
Description: 
 jmon   - distributed resource monitor
Closes: 203793 226050 238749 253366
Changes: 
 jmon (0.3.1-7) unstable; urgency=medium
 .
   * Upgraded Standards-Version.
   * Patch applied from David Roundy [EMAIL PROTECTED], to make
 jMon compatible with 2.6' /proc/meminfo format. (closes: Bug#253366)
   * Patch applied from Josh Lauricha [EMAIL PROTECTED], by this
 jMon will make use of SO_REUSEADDR. (closes: Bug#238749)
   * Support for more than 8G memory.(closes: Bug#203793)
   * Listen port can be set from /etc/default/jmon.  (closes: Bug#226050)
   * sys_errlist[] warning eliminated.
Files: 
 b024d503358bce2bd1ed8cbaefe80f25 553 admin extra jmon_0.3.1-7.dsc
 acf045e297b3858e5ca71f22ca125c7f 6752 admin extra jmon_0.3.1-7.diff.gz
 3caf356f03b6769b6c75738d1eb1ab87 16224 admin extra jmon_0.3.1-7_i386.deb

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

iD8DBQFC+7LvefzP0rBFj00RAlB4AJ9eZbMzZk/aLXTVjNhVFI4DxckXhQCg7nMQ
5lJn6F2kLwYZVFvn3M/TJE8=
=dmrR
-END PGP SIGNATURE-


Accepted:
jmon_0.3.1-7.diff.gz
  to pool/main/j/jmon/jmon_0.3.1-7.diff.gz
jmon_0.3.1-7.dsc
  to pool/main/j/jmon/jmon_0.3.1-7.dsc
jmon_0.3.1-7_i386.deb
  to pool/main/j/jmon/jmon_0.3.1-7_i386.deb


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



Accepted xine-lib 1.0.1-1.1 (source i386)

2005-08-11 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  3 Aug 2005 04:21:06 -0700
Source: xine-lib
Binary: libxine-dev libxine1
Architecture: source i386
Version: 1.0.1-1.1
Distribution: unstable
Urgency: medium
Maintainer: Siggi Langauf [EMAIL PROTECTED]
Changed-By: Steve Langasek [EMAIL PROTECTED]
Desription: 
 libxine-dev - the xine video player library, development packages
 libxine1   - the xine video/media player library, binary files
Closes: 288189 315986 318838 320317
Changes: 
 xine-lib (1.0.1-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Medium-urgency upload for RC bugfixes.
   * Multiple fixes for compatibility with gcc 4.0 strictness
 (closes: #288189, #318838)
   * This rebuild also gets rid of the dependency on libslang1
 (closes: #315986); it only trades it for libslang2 unfortunately,
 since libcaca is a static lib.
   * Build-Depend on libaa1-dev instead of the removed aalib1-dev
 (closes: #320317).
   * Build-Depend on libxinerama-dev instead of on xlibs-static-dev,
 which no longer provides this lib; it should be rolled back into
 xlibs-dev as a dependency eventually, but build-depending on it
 directly is sensible anyway.
   * Disentangle xine from libraries it doesn't actually use directly, so
 that the dependency tree is less brittle and requires fewer rebuilds
 in the future (e.g., it currently has a dependency on libstdc++5
 that it shouldn't need at all); this is doubly important since some
 plugins aren't mentioned at all in the dependencies, and so can be
 left unusable by library changes:
 - relibtoolize the package to use the Debian version of libtool,
   with support for pruning indirect dependencies from the linker
   commandline
 - as part of the above, add AM_MAINTAINER_MODE to configure.ac to
   avoid any need for autotools build-dependencies
 - hard-code -lmodplug, -lartsc, and -lgnomevfs-2, because pkg-config,
   artsc-config, etc. spit out lib dependencies that are spurious on
   GNU/* systems.
Files: 
 37142a1198defb991c82df4c8d8491d4 1051 libs optional xine-lib_1.0.1-1.1.dsc
 676fa56168a0dbed823538d7c6cd9978 90967 libs optional xine-lib_1.0.1-1.1.diff.gz
 1b433cc84531c4e64f1166ce77619bef 108012 libdevel optional 
libxine-dev_1.0.1-1.1_i386.deb
 29c252d1e4196ed0f08aef51a3ce62c1 4418308 libs optional 
libxine1_1.0.1-1.1_i386.deb
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC88HHKN6ufymYLloRAmcrAKCSbA1mLdhKCQP+dXsazD05lUlY7QCgwTId
WrAZzDQ/XhgJgK1UzudEbTU=
=EdJh
-END PGP SIGNATURE-


Accepted:
libxine-dev_1.0.1-1.1_i386.deb
  to pool/main/x/xine-lib/libxine-dev_1.0.1-1.1_i386.deb
libxine1_1.0.1-1.1_i386.deb
  to pool/main/x/xine-lib/libxine1_1.0.1-1.1_i386.deb
xine-lib_1.0.1-1.1.diff.gz
  to pool/main/x/xine-lib/xine-lib_1.0.1-1.1.diff.gz
xine-lib_1.0.1-1.1.dsc
  to pool/main/x/xine-lib/xine-lib_1.0.1-1.1.dsc


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



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

2005-08-11 Thread Debian VDR Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  9 Aug 2005 21:23:35 +0200
Source: vdr-plugin-console
Binary: vdr-plugin-console
Architecture: source i386
Version: 0.6.0-6
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Debian VDR Team [EMAIL PROTECTED]
Description: 
 vdr-plugin-console - Plugin for vdr that implements a virtual terminal
Changes: 
 vdr-plugin-console (0.6.0-6) unstable; urgency=low
 .
   * Thomas Schmidt [EMAIL PROTECTED]
 - Depend/Build-Depend on vdr (=1.3.28-1)
 - Conflict with vdr (=1.3.29)
Files: 
 8ce154b8fa2764c3dcca7ea40497cbef 720 misc extra vdr-plugin-console_0.6.0-6.dsc
 4572b00c1235e56f7d90520382acdc04 5545 misc extra 
vdr-plugin-console_0.6.0-6.diff.gz
 ede70dcd433b3f40a2ec347aa39550ea 51066 misc extra 
vdr-plugin-console_0.6.0-6_i386.deb

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

iD8DBQFC+7P9c9+NqwoydlIRAvoUAJ9AwUyH7Bi3HoXF1Oyigi/ALS/JkgCgvGSM
YxAnun/Y+HFqcsTQkwT1FdE=
=cy9Z
-END PGP SIGNATURE-


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


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



Accepted vdr-plugin-bitstreamout 0.84-3 (source i386)

2005-08-11 Thread Debian VDR Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  9 Aug 2005 21:17:25 +0200
Source: vdr-plugin-bitstreamout
Binary: vdr-plugin-bitstreamout
Architecture: source i386
Version: 0.84-3
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Debian VDR Team [EMAIL PROTECTED]
Description: 
 vdr-plugin-bitstreamout - Plugin to vdr for playing AC3-Sound via your 
Soundcard
Changes: 
 vdr-plugin-bitstreamout (0.84-3) unstable; urgency=low
 .
   * Thomas Schmidt [EMAIL PROTECTED]
 - Depend/Build-Depend on vdr (=1.3.28-1)
 - Conflict with vdr (=1.3.29)
 - Depend on ${misc:Depends} to allow usage of cdebconf
Files: 
 219350c127b5786cff8eae6c355510e8 767 misc extra 
vdr-plugin-bitstreamout_0.84-3.dsc
 97aa46c458a55cc0e0ccc122901fa6d7 8153 misc extra 
vdr-plugin-bitstreamout_0.84-3.diff.gz
 c047953d707be09609fed226116376e8 70836 misc extra 
vdr-plugin-bitstreamout_0.84-3_i386.deb

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

iD8DBQFC+7NYc9+NqwoydlIRAmGDAJ0erP8bbwUY+8xMf1JK+2O8ju8UJwCeNmYp
LIElMNfhtmlEsgvLygOrOdc=
=t1iK
-END PGP SIGNATURE-


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


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



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

2005-08-11 Thread Debian VDR Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  9 Aug 2005 22:13:07 +0200
Source: vdr-plugin-freecell
Binary: vdr-plugin-freecell
Architecture: source i386
Version: 0.0.2-9
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Debian VDR Team [EMAIL PROTECTED]
Description: 
 vdr-plugin-freecell - Plugin to vdr that implements the card game Freecell
Changes: 
 vdr-plugin-freecell (0.0.2-9) unstable; urgency=low
 .
   * Thomas Schmidt [EMAIL PROTECTED]
 - Depend/Build-Depend on vdr (=1.3.28-1)
 - Conflict with vdr (=1.3.29)
Files: 
 1c527be1a67d944bd5361571cc73ee8d 755 misc extra vdr-plugin-freecell_0.0.2-9.dsc
 164e3712b42460eb532da586af684679 4036 misc extra 
vdr-plugin-freecell_0.0.2-9.diff.gz
 ac841ae4662ea025714b25c4f510d1df 42926 misc extra 
vdr-plugin-freecell_0.0.2-9_i386.deb

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

iD8DBQFC+7ZZc9+NqwoydlIRAsx/AJ9d9T957XtFxY0Wm6MvrmjvqajcNACfVxuD
yivtnf6eRSh0cwDz5PeSveA=
=8qSt
-END PGP SIGNATURE-


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


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



  1   2   >