Re: I *love* goodbye-microsoft.com

2007-02-25 Thread Tim Cutts


On 24 Feb 2007, at 12:44 pm, [EMAIL PROTECTED] wrote:


Strangely, I feel a tiny pang of guilt. I now have an apple box
for the first time in decades.  One of the main deciding factors  
was to

buy unixy goodness :-)


That was my main reason for buying an Apple four or so years ago.


but also to get some exposure to OSX. I tried for
a while to live in OSX, but in the end I installed Debian on it. It's
not that I couldn't build everything I wanted, it's just that not  
having
everything just work is like going back in time ten years. It's not  
that

there isn't ports or fink, but there isn't debian, short of a full
install, and the alternatives don't measure up.  It's not that I
couldn't take debian to osx (in my fevered imagination), it's that I'm
too lazy to even try.


Well, that's sort of what fink is.

I have to sheepishly admit that I use OS X every day on my Apple  
machines.  I don't have Debian installed on any of them - I do my DD  
work on server machines.  The main reason for that is that I still  
think that for GUI things Apple have the edge over any of the Linux  
alternatives.  The UI is simple, functional, and well integrated.   
Debian is fabulous in so many ways, but I still don't think any Linux  
distribution really cuts it on the desktop (although I do administer  
a network of 300 Debian desktop machines at work, so I don't think  
it's *that* bad).


I've also been very pleased to not the fairly vibrant OSS community  
that has grown up around OS X.  There is a *lot* of really quite good  
free software work going on for OS X (Fink, Camino, Adium,  
SSHKeychain being the principal ones I use every single day).  Yes,  
there's a lot of Windows-style shareware too, but I think the free  
stuff is reaching critical mass, when it becomes difficult for the  
shareware authors to justify their position, when that developer over  
there --- is offering something open and free.


Having said that, when I can justify it to my good lady wife, I'm  
looking forward to buying an Intel Mac and being able to run OS X and  
Linux simultaneously - I tried doing DD work under Virtual PC for a  
while, but it was a non-starter.  Just way too slow.  Just the  
configure script on one of my packages (am-utils, which admittedly  
has the configure script from hell) took more than an hour to run  
under Virtual PC on my 1 GHz PowerBook.


Tim


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



Re: Roundcube

2007-02-25 Thread José Luis Tallón
gregor herrmann wrote:
 On Sat, 24 Feb 2007 23:27:26 -0200, Fernando M.M. wrote:

   
 Althought i have already seen some old discussion about packing the
 webmail Roundcube (1) i have not found the package using the
 package search (2).
 
 [..]
   
 Is someone working on it?
 

 Seems so:
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333756
 http://lists.debian.org/debian-webapps/2007/02/msg0.html
 http://lists.debian.org/debian-mentors/2007/02/msg00098.html
   
I, for one, have kept and maintain my own Roundcube packages since Feb 2005.
However, being beta software, and considering that it needs a quite
robust dbconfig-common infrastructure to auto-configure it if packaging
properly, I prefered to wait a bit.

The fact that Neil posted an ITP also kept me away from posting my packages.



Let's see what happens in the next few days. I can also 'dive in' and
provide some patches :-)


Regards,

J.L.


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



On maintainers not responding to bugs

2007-02-25 Thread Nikita V. Youshchenko
Hello.

What do people look on the following idea: not allow packages to migrate 
from sid to testing if they have unanswered bug reports with severity = 
normal?

I guess it may be difficult to analyse automatically what is 'unanswered'  
(because there could be follow-ups by submitter and other people, or 
reassigns, or whatever), but perhaps some working heuristic can be worked 
out...


pgpx16Iycirev.pgp
Description: PGP signature


Re: On maintainers not responding to bugs

2007-02-25 Thread Steinar H. Gunderson
On Sun, Feb 25, 2007 at 11:26:45PM +0300, Nikita V. Youshchenko wrote:
 What do people look on the following idea: not allow packages to migrate 
 from sid to testing if they have unanswered bug reports with severity = 
 normal?

Honestly, this would kill almost any larger package.

The problem is that way too often, maintainers don't really care about
packages migrating to testing. If they did, we wouldn't have 398 RC bugs on
packages that are not in testing...

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


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



Re: Looking for a temporary account on Alpha

2007-02-25 Thread Frank B. Brokken
Dear Steve Langasek, you wrote:

  The intention here is to use size_t in situations where the value is known
  to be non-negative.
 
 I don't see any reason why you should use size_t for that instead of
 unsigned int.  size_t is intended for use in describing the size of objects
 in memory, not just for anything you know should be non-negative.

Hm, well, your observation is interesting, but I'm not convinced:

https://www.securecoding.cert.org/confluence/display/seccode/INT01-A.+Use+size_t+for+all+integer+values+representing+the+size+of+an+object

From this:

Any variable that is used to represent the size of an object including,
but not limited to, integer values used as sizes, indices, loop counters,
and lengths should be declared as size_t

One could start a word game here and point out that it doesn't explicitly
state that size_t should be used for non-negative values, but the above
sentence does explicitly mention `not limited to'. Since the examples given
are definitely not limited to `sizes of objects in memory', but rather have
non-negativeness in common, I still consider my position to be correct.

Another interesting one:

Rationale for International Standard?Programming Languages?C
Revision 5.10. April 2003.:

From that (quotes by me):

6.5.3.4 ... The type of sizeof, whatever it is, is published (in the
library header stddef.h) as size_t, since
`it is useful for the programmer to be able to refer to this type.'
This requirement implicitly 
`restricts size_t to be a synonym for an existing unsigned integer 
 type.'
... Thus size_t is also a 
`convenient type for array sizes',
and is so used in several library functions.

So, it's considered a `convenient type' for array sizes; which doesn't state
that it is restricted to that. It does, however, explicitly state that it's a
synonym of an unsigned integer type. 

Finally, I have this one, providing the `philosophical rationale' for using
size_t (at least to me it does):

http://www.cprogramming.com/tutorial/typedef.html

Typedefs and Abstraction

Typedefs provide a level of abstraction away from the actual types being
used, allowing you, the programmer, to focus more on the concept of just
what a variable should mean. This makes it easier to write clean code, 
but
it also makes it far easier to modify your code. For instance, if if you
decided you really needed to support sizes that were too big to store in
an unsigned int, you could make a change in one place in your code--the
typedef itself--to make size_t equivalent to, for instance, an unsigned
long. Almost none of your code would need to change!

But in the end I'm confronted with an error in my program, which I now feel I
can solve thanks to the observation that a size_t * can't always be considered
an unsigned int *. 

The subtlety is, I think, that although the above revision 5.10 states that
size_t is synonym to an unsigned integer type, it doesn't state that it's a
synonym of an `unsigned int'. Could very wel be an `unsigned long int'. Thus I
stumbled over a big endian :-)

Thanks for the discussion!

-- 
Frank B. Brokken
Computing Center, University of Groningen
(+31) 50 363 9281
Public PGP key: http://pgp.surfnet.nl:11371/
Key Fingerprint: 8E36 9FC4 1DAA FCDF 1A0D  B19F DAC4 BE50 38C6 6170


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Ana Guerrero
On Sun, Feb 25, 2007 at 11:26:45PM +0300, Nikita V. Youshchenko wrote:
 Hello.
 
 What do people look on the following idea: not allow packages to migrate 
 from sid to testing if they have unanswered bug reports with severity = 
 normal?


I do not think this is a good idea.  Some packages receive more bugs than the 
maintainer or group of maintainers is able to handle.  And some of these
packages (with a lot of bugs) are very important packages.

Ana


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Roberto C. Sanchez
On Sun, Feb 25, 2007 at 11:26:45PM +0300, Nikita V. Youshchenko wrote:
 Hello.
 
 What do people look on the following idea: not allow packages to migrate 
 from sid to testing if they have unanswered bug reports with severity = 
 normal?
 
 I guess it may be difficult to analyse automatically what is 'unanswered'  
 (because there could be follow-ups by submitter and other people, or 
 reassigns, or whatever), but perhaps some working heuristic can be worked 
 out...

Bad idea.  This penalizes inremental work.  I.e., package foo gets seven
important bugs filed against it.  The maintainer fixes three and
uploads.  That is certainly an improvement.  Your proposal penalizes
that maintainer for not fixing all of them at one go.  Besides, for
things that are not RC, the sevrities are a bit subjective.  A bug that
is important to the maintainer (because it affects him) might be
wishlist to most users and vice versa.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: Looking for a temporary account on Alpha

2007-02-25 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 02/25/07 14:33, Frank B. Brokken wrote:
 Dear Steve Langasek, you wrote:
 
 The intention here is to use size_t in situations where the value is known
 to be non-negative.
 I don't see any reason why you should use size_t for that instead of
 unsigned int.  size_t is intended for use in describing the size of objects
 in memory, not just for anything you know should be non-negative.
 
 Hm, well, your observation is interesting, but I'm not convinced:
 
 https://www.securecoding.cert.org/confluence/display/seccode/INT01-A.+Use+size_t+for+all+integer+values+representing+the+size+of+an+object
 
From this:
 
 Any variable that is used to represent the size of an object including,
 but not limited to, integer values used as sizes, indices, loop counters,
 and lengths should be declared as size_t

size_t nargs;
if (parser_number_parlist(parser, (int *)nargs, true) == SUCCESS)

It's been a while since I coded in C, so take this for worth, but
what if you do this
  s/(int *)/(size_t *)

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

iD8DBQFF4f+jS9HxQb37XmcRArZLAKDM9VxJG4ILqyIINvNP+3GVF6fCAwCeIDvf
uzKiE/8NtzfxIY8zdosangY=
=Cw1p
-END PGP SIGNATURE-


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Ben Finney
Roberto C. Sanchez [EMAIL PROTECTED] writes:

 On Sun, Feb 25, 2007 at 11:26:45PM +0300, Nikita V. Youshchenko wrote:
  What do people look on the following idea: not allow packages to
  migrate from sid to testing if they have unanswered bug reports
  with severity = normal?

 Bad idea.  This penalizes inremental work.  I.e., package foo gets
 seven important bugs filed against it.  The maintainer fixes three
 and uploads.  That is certainly an improvement.  Your proposal
 penalizes that maintainer for not fixing all of them at one go.

Nikita wrote unanswered, you seem to have misread that as unfixed.

I believe Nikita is proposing a way to focus on the lack of *any
response* by the package maintainer to particular bug reports, not the
lack of fixes.

-- 
 \Intellectual property is to the 21st century what the slave |
  `\   trade was to the 16th.  -- David Mertz |
_o__)  |
Ben Finney


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Roberto C. Sanchez
On Mon, Feb 26, 2007 at 08:30:40AM +1100, Ben Finney wrote:
 
 Nikita wrote unanswered, you seem to have misread that as unfixed.
 
 I believe Nikita is proposing a way to focus on the lack of *any
 response* by the package maintainer to particular bug reports, not the
 lack of fixes.
 
Good point.  I did misread.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Bug#412399: ITP: islsm -- Driver for Prism54 softmac 802.11 wireless LAN adapters

2007-02-25 Thread Sam Morris
Package: wnpp
Severity: wishlist
Owner: Sam Morris [EMAIL PROTECTED]

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

  Package name: islsm
  Version : git-20061017
  Upstream Author : Jean-Baptiste Note, [EMAIL PROTECTED], Feyd,
Denis Vlasenko, Martin Langer [EMAIL PROTECTED],
Christian Lamparter, Holden Karau, 
Xandros, Intersil
Americas Inc., NetChip Technology, 
Inc., Luis R.
Rodriguez [EMAIL PROTECTED], Intel Corporation,
Aurelien Alleaume slts.free.fr, 
Conexant Americas Inc.,
David Brownell, Herbert Valerio Riedel 
[EMAIL PROTECTED], Nokia
Corporation, Junio C Hamano, Red Hat, 
Inc., 
  URL : http://islsm.org/~jb/islsm/
  License : GPL
  Programming Lang: C
  Description : Driver for Prism54 softmac 802.11 wireless LAN adapters

- -- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

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

iD8DBQFF4fq+shl/216gEHgRAtPmAKC7KzG5gcKxTcjxi5oowoji5B3AZgCg0XXR
9z//7ImokyUa+b+T6oJvrqI=
=afkU
-END PGP SIGNATURE-


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Sune Vuorela
On 2007-02-25, Nikita V. Youshchenko [EMAIL PROTECTED] wrote:
 What do people look on the following idea: not allow packages to migrate=20
 from sid to testing if they have unanswered bug reports with severity =3D=
=20
 normal?

Why not put resources on helping people with the bugs instead of
punishing people ?

You and others are most welcome to take a stab at the 1000 open bugs
against the official kdepackages.

Start here:
http://pkg-kde.alioth.debian.org/bugs.html


Thanks in advance.

/Sune Vuorela
Member of the debian  qt maintainers


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



Bug#412427: ITP: resiprocate -- Session Initiation Protocol (SIP) stack

2007-02-25 Thread Neil McGovern
Package: wnpp
Severity: wishlist
Owner: Neil McGovern [EMAIL PROTECTED]

  Package name: resiprocate
  Version : 1.1rc1
  Upstream Author : ReSIProcate Developers [EMAIL PROTECTED]
  URL : http://www.resiprocate.org
  License : Vovida Software License v. 1.0 (3-clause BSD style)
  Programming Lang: C++
  Description : Session Initiation Protocol (SIP) stack
 reSIProcate is a high performance, object-oriented, C++ sip stack that
 is compliant with RFC 3261.
 .
 It has full support for UDP, TCP, and TLS transports on both IPv4 and
 IPv6. It also implements the full set of specifications for DNS usage
 in SIP, including NAPTR and SRV lookups using an asynchronous DNS
 library.

This package will build a couple of binary packages, one library, and
one utility (for now). I intend to work with the pkg-voip team in
producing this, if they want :) (cc-ed)


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Ben Finney
Sune Vuorela [EMAIL PROTECTED] writes:

 You and others are most welcome to take a stab at the 1000 open bugs
 against the official kdepackages.

You and others cannot substitute for a response *from the package
maintainer* acknowledging (or otherwise) the bug report. That's the
criterion being discussed here: not a resolution for the reported bug,
but rather a first response from the package maintainer to the bug
report, to acknowledge that it has not been ignored.

-- 
 \ We demand rigidly defined areas of doubt and uncertainty!  -- |
  `\ Vroomfondel, _The Hitch-Hiker's Guide To The Galaxy_, Douglas |
_o__)Adams |
Ben Finney


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



Re: On maintainers not responding to bugs

2007-02-25 Thread David Nusinow
On Mon, Feb 26, 2007 at 11:12:43AM +1100, Ben Finney wrote:
 Sune Vuorela [EMAIL PROTECTED] writes:
 
  You and others are most welcome to take a stab at the 1000 open bugs
  against the official kdepackages.
 
 You and others cannot substitute for a response *from the package
 maintainer* acknowledging (or otherwise) the bug report. That's the
 criterion being discussed here: not a resolution for the reported bug,
 but rather a first response from the package maintainer to the bug
 report, to acknowledge that it has not been ignored.

And what he's telling you, and what I'm telling you, is that it's a
completely crap criterion for those of us who deal with massive packagesets
like KDE. Simply replying to a bug won't get it fixed any sooner or
decrease the impact it has on the user. In addition, it distracts us from
doing what is potentially far more productive work.

 - David Nusinow


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Pierre Habouzit
On Sun, Feb 25, 2007 at 07:27:29PM -0500, David Nusinow wrote:
 On Mon, Feb 26, 2007 at 11:12:43AM +1100, Ben Finney wrote:
  Sune Vuorela [EMAIL PROTECTED] writes:
  
   You and others are most welcome to take a stab at the 1000 open bugs
   against the official kdepackages.
  
  You and others cannot substitute for a response *from the package
  maintainer* acknowledging (or otherwise) the bug report. That's the
  criterion being discussed here: not a resolution for the reported bug,
  but rather a first response from the package maintainer to the bug
  report, to acknowledge that it has not been ignored.
 
 And what he's telling you, and what I'm telling you, is that it's a
 completely crap criterion for those of us who deal with massive packagesets
 like KDE. Simply replying to a bug won't get it fixed any sooner or
 decrease the impact it has on the user. In addition, it distracts us from
 doing what is potentially far more productive work.

  bleh, you're totally wrong ! That *is* an excellent criterium, if you
need proof, look at the libc: too many unanswered bugs, it should not be
in testing. End of story.

  The releasable set of packages is now void, we can release any minute
now !

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpD8HXkVebpJ.pgp
Description: PGP signature


Re: On maintainers not responding to bugs

2007-02-25 Thread Marco d'Itri
On Feb 26, Ben Finney [EMAIL PROTECTED] wrote:

 You and others cannot substitute for a response *from the package
 maintainer* acknowledging (or otherwise) the bug report. That's the
 criterion being discussed here: not a resolution for the reported bug,
 but rather a first response from the package maintainer to the bug
 report, to acknowledge that it has not been ignored.
If a maintainer keeps doing uploads we can be almost sure that he is not
ignoring bugs too.
Providing an useful answer to a bug requires proper bug triage, which
requires time.
If this is trivial for you then feel free to help with the udev bugs
(it's even easier than the usual package: they are usually bogus and
you can just close them).

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: On maintainers not responding to bugs

2007-02-25 Thread Roberto C. Sanchez
On Sun, Feb 25, 2007 at 07:27:29PM -0500, David Nusinow wrote:
 
 And what he's telling you, and what I'm telling you, is that it's a
 completely crap criterion for those of us who deal with massive packagesets
 like KDE. Simply replying to a bug won't get it fixed any sooner or
 decrease the impact it has on the user. In addition, it distracts us from
 doing what is potentially far more productive work.
 
I have to completely disagree here.  When I started in earnest with the
effort to clean up the sasl package, I literally spent three twelve hour
days in a row doing nothing but bug triage.  I really am not surprised
that people had not offered to help previously.  There were bugs which
had been unanswered for months or years.  And that was for a package
with only ~100 bugs.  When we finally uploaded the new version, it
closed something like 38 bugs.

IOW, having the packages bugs properly organized and triaged is critical
to knowing what you are fixing with each upload.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: On maintainers not responding to bugs

2007-02-25 Thread Ben Finney
David Nusinow [EMAIL PROTECTED] writes:

 On Mon, Feb 26, 2007 at 11:12:43AM +1100, Ben Finney wrote:
  the criterion being discussed here: not a resolution for the
  reported bug, but rather a first response from the package
  maintainer to the bug report, to acknowledge that it has not been
  ignored.

 And what he's telling you, and what I'm telling you,

Actually, this is the first time in this thread that I've seen a
message actually addressing this point. Thank you; at least it's
discussing what the OP was actually talking about.

 is that it's a completely crap criterion for those of us who deal
 with massive packagesets like KDE. Simply replying to a bug won't
 get it fixed any sooner or decrease the impact it has on the
 user.

Getting the bug fixed is surely an important priority; probably the
highest priority. That doesn't mean it's the *only* important thing to
do, though: communication is one of the main reasons the BTS
exists. When a bug is reported via official channels and there is a
long period with no sign that the package maintainer has even read the
report, it is a strong disincentive to sending future bug reports.

 In addition, it distracts us from doing what is potentially far more
 productive work.

The point has been made in many threads that public communication
*about* productive work, or even about progress toward it, is
important to a properly functioning project, in addition to the
productive work itself.

If we can't agree that communication with our users about the issues
they care about is important, I don't think this discussion can go
very far. I am convinced that it is very important for a DD to
communicate with the users of their packages.

Whether the OP's proposal is a good way forward is not something I've
decided. However, I do think that the proposal should be discussed on
the axiom that communication with users in response to the very bug
reports we exhort them to provide is an important task of every DD,
not a distract[ion] from ... far more productive work.

-- 
 \My doctor told me to stop having intimate dinners for four. |
  `\Unless there are three other people.  -- Orson Welles |
_o__)  |
Ben Finney


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Roberto C. Sanchez
On Mon, Feb 26, 2007 at 02:36:13AM +0100, Marco d'Itri wrote:
 
 If a maintainer keeps doing uploads we can be almost sure that he is not
 ignoring bugs too.
 Providing an useful answer to a bug requires proper bug triage, which
 requires time.

Right.  Which means that it should not be ignored.

 If this is trivial for you then feel free to help with the udev bugs
 (it's even easier than the usual package: they are usually bogus and
 you can just close them).
 

Of course, when starting a software development project, you can also
say Well, requirements take time.  If you want to help, that is fine,
but in the meantime we have real work to do.  The point is that bug
triage is key to knowing what you are doing in terms of improving the
package you maintain.  Especially if the package is important or
popular.  Even moreso if the package gets lots of bugs filed against it.

Another nice thing about bug triage is that it lets the users (who
report the bugs) know that somebody cares.  I have reported bugs that
have gone unanswered for a year or even two years.  There are probably a
half-dozen like that right now, just which I have submitted.

Regards,

-Roberto

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: On maintainers not responding to bugs

2007-02-25 Thread Sune Vuorela
On 2007-02-26, Roberto C. Sanchez [EMAIL PROTECTED] wrote:
 I have to completely disagree here.  When I started in earnest with the
 effort to clean up the sasl package, I literally spent three twelve hour
 days in a row doing nothing but bug triage.  I really am not surprised
 that people had not offered to help previously.  There were bugs which
 had been unanswered for months or years.  And that was for a package
 with only ~100 bugs.  When we finally uploaded the new version, it
 closed something like 38 bugs.

pff... 100 bugs - that's what we recieve in 6 weeks.

/Sune


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Roberto C. Sanchez
On Mon, Feb 26, 2007 at 01:45:28AM +, Sune Vuorela wrote:
 On 2007-02-26, Roberto C. Sanchez [EMAIL PROTECTED] wrote:
  I have to completely disagree here.  When I started in earnest with the
  effort to clean up the sasl package, I literally spent three twelve hour
  days in a row doing nothing but bug triage.  I really am not surprised
  that people had not offered to help previously.  There were bugs which
  had been unanswered for months or years.  And that was for a package
  with only ~100 bugs.  When we finally uploaded the new version, it
  closed something like 38 bugs.
 
 pff... 100 bugs - that's what we recieve in 6 weeks.
 
Ooooh.  I stand in awe of your greatness.

Seriously, do you think that the number of bug reports you receive is
justification to not answer them?  In fact, I would argue that the more
reports you receive, the more you should endeavour to make sure that
they are properly triaged and that the submitters know you are working
on them.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: On maintainers not responding to bugs

2007-02-25 Thread Pierre Habouzit
On Sun, Feb 25, 2007 at 08:36:21PM -0500, Roberto C. Sanchez wrote:
 On Sun, Feb 25, 2007 at 07:27:29PM -0500, David Nusinow wrote:
  
  And what he's telling you, and what I'm telling you, is that it's a
  completely crap criterion for those of us who deal with massive packagesets
  like KDE. Simply replying to a bug won't get it fixed any sooner or
  decrease the impact it has on the user. In addition, it distracts us from
  doing what is potentially far more productive work.
  
 I have to completely disagree here.  When I started in earnest with the
 effort to clean up the sasl package, I literally spent three twelve hour
 days in a row doing nothing but bug triage.  I really am not surprised
 that people had not offered to help previously.  There were bugs which
 had been unanswered for months or years.  And that was for a package
 with only ~100 bugs.  When we finally uploaded the new version, it
 closed something like 38 bugs.
 
 IOW, having the packages bugs properly organized and triaged is critical
 to knowing what you are fixing with each upload.

  IOW, know your distribution. KDE weights 12 or 1300 bugs I think,
maybe a bit less, it was 1700 not so long time ago. I'd bet X.org,
Gnome, OOO.org, fire^H^H^H^Hiceweasel, ... live the same nightmare.

  For the record, the libc had 330 bugs opened quite recently, we're
down to 280 or so I guess, maybe a bit less if we exclude those who have
been tagged wontfix. I'd bet most of them are unanswered, or at least,
completely forgotten.

  I was previously beeing ironic, now I'm not anymore. Such a criterion
sucks, and sucks hard. Most of the huge pieces of software around
generate a load that is barely bearable for the teams that work on them
if you just consider RC bugs, some importants ones, and packaging new
upstreams. Sorry, but sasl, if widely used, remains a _small_ package,
that covers a quite small amount of features. You can't take it as a
general example.

  And btw, help for bug triaging for any of those kind of packages is
vastly appreciated... But here is a newsflash: 100 bugs is fairly easy
to reduce. the 5 or 600 bugs the KDE team has closed was a year of work.
Yes a damn year, during which there has been many upstream releases
(getting a release ready is a week of work, plus the RC that always come
with them, so you can add another week on top of this one). So please
explain me how a team that has had sometimes less of 2 to 3 _actually active_
members at a given time do manage to keep up with bugs as well ? I'll
tell you: they just don't.

  Sorry to seem pissed, but well, I am. Your mail (and others with the
same thoughts) are completely disconnected from reality. Totally.

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpQ4i5KAhS20.pgp
Description: PGP signature


Re: On maintainers not responding to bugs

2007-02-25 Thread Pierre Habouzit
On Sun, Feb 25, 2007 at 08:51:17PM -0500, Roberto C. Sanchez wrote:
 On Mon, Feb 26, 2007 at 01:45:28AM +, Sune Vuorela wrote:
  On 2007-02-26, Roberto C. Sanchez [EMAIL PROTECTED] wrote:
   I have to completely disagree here.  When I started in earnest with the
   effort to clean up the sasl package, I literally spent three twelve hour
   days in a row doing nothing but bug triage.  I really am not surprised
   that people had not offered to help previously.  There were bugs which
   had been unanswered for months or years.  And that was for a package
   with only ~100 bugs.  When we finally uploaded the new version, it
   closed something like 38 bugs.
  
  pff... 100 bugs - that's what we recieve in 6 weeks.
  
 Ooooh.  I stand in awe of your greatness.
 
 Seriously, do you think that the number of bug reports you receive is
 justification to not answer them?

  errrm, let me think. YES !

  There is a thing to know about bugs, answering hey, I got your mail
is useless, vacation can do that. So if we suppose answering means
digging a bit, or forwarding upstream or... it then takes at least 15
minutes (for easy bugs). Up to the hour for some (to try to figure out
what the hell the user meant). And NO those number are not irrelevant,
when I closed sth like 250 or 300 KDE bugs last year, It took me 1 hour
for 3 to 4 bugs when I was quick.

  So now let's do a simple calculation. 100 bugs, 20 minutes, that's
2000 minutes, over 6 weeks, that's 333 minutes a week, meaning at least
6 hours a half of work. Just to keep up with bugs. Of completely tedious
work.

  Add to that: working on the backlog, working on the bugs that in fact
need 1hour of work, packaging new upstreams, doing some maintenance on
the repository and so on, and KABOOOM, either you have a time machine,
or there is not enough time.

  so well, hmm let me think again ... YES THIS IS A DAMN PERFECT
ARGUMENT.

 In fact, I would argue that the more reports you receive, the more you
 should endeavour to make sure that they are properly triaged and that
 the submitters know you are working on them.

  well, that would be a lie: ([EMAIL PROTECTED]) we don't work on them. So all's
for the best, it's just fairly visible that we don't even pretend to,
isn't that great ?

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpHeT3m2ZG0Q.pgp
Description: PGP signature


Re: On maintainers not responding to bugs

2007-02-25 Thread root
On Sun, Feb 25, 2007 at 07:27:29PM -0500, David Nusinow wrote:
 On Mon, Feb 26, 2007 at 11:12:43AM +1100, Ben Finney wrote:
  Sune Vuorela [EMAIL PROTECTED] writes:
  
   You and others are most welcome to take a stab at the 1000 open bugs
   against the official kdepackages.
  
  You and others cannot substitute for a response *from the package
  maintainer* acknowledging (or otherwise) the bug report. That's the
  criterion being discussed here: not a resolution for the reported bug,
  but rather a first response from the package maintainer to the bug
  report, to acknowledge that it has not been ignored.
 
 And what he's telling you, and what I'm telling you, is that it's a
 completely crap criterion for those of us who deal with massive packagesets
 like KDE. Simply replying to a bug won't get it fixed any sooner or
 decrease the impact it has on the user. In addition, it distracts us from
 doing what is potentially far more productive work.
 
  - David Nusinow
Users and developers. Two different animals. Some developers want to fix
bugs and not communicate anything other than I fixed a bug  and
consider saying Yes I got your bug report as a waste of time. Yes, it
is a waste of time in terms of the developers goal of fixing the bug but
it is not a waste of time in regards to extablishing a positive
relationship with those folks who use the software aka our users --
like the Debian foundation documents mention--and saying that you
ackowledging their part of the process of software development and not
treating them with distrain. If you treat them well, by acknowleding
their bug reports and -- $DEITY forgive -- saying you are working on it,
even if it takes a $LONG_TIME to fix, they will be patient and will try
to be helpful by testing your work further and proving you with more bug
report or even patches. Communication is not a waste of time. Ever been
in an airport or subway, waiting for an hours and no updates wishing
for someone to tell you what the status is? It makes folks feel better,
even if it doesn't change the situation.
-- 
|  .''`.  == Debian GNU/Linux == |   my web site:   |
| : :' :  The  Universal |mysite.verizon.net/kevin.mark/|
| `. `'  Operating System| go to counter.li.org and |
|   `-http://www.debian.org/ |be counted! #238656   |
|   my keysever: subkeys.pgp.net | my NPO: cfsg.org |


signature.asc
Description: Digital signature


Re: On maintainers not responding to bugs

2007-02-25 Thread Robert Collins
On Sun, 2007-02-25 at 21:11 -0500, root wrote:
 ... ackowledging their part of the process of software development and
 not
 treating them with distrain. If you treat them well, by acknowleding
 their bug reports and -- $DEITY forgive -- saying you are working on
 it, ...

In fact, acknowledging and saying 'I dont have time to fix this' is
important too: it means that other developers, or users wanting to be
developers, know that they wont collide with the developer should they
try to fix it. 

-Rob
-- 
GPG key available at: http://www.robertcollins.net/keys.txt.


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


Re: Where did Bacula 1.38.11-7+b1 come from?

2007-02-25 Thread Guillem Jover
On Fri, 2007-02-23 at 19:13:09 +0100, Florian Weimer wrote:
 * Guillem Jover:
  The resulting .changes will get a field like this:
 
Source: bacula (1.38.11-7)
 
  which can be used to track back from which source this binary
  originated.
 
 Yeah, but this only helps if you've got a source version to compare
 to.  You could derive that from a binary version if you've got the
 corresponding Package entry, but this information might not be
 available anymore when you need it.

Sorry if I was unclear, but this field with that information is present
in the binary packages and then exposed through the Packages file. It's
even on dpkg's status file.

 Furthermore, it's not particularly useful to address the
 inconsistencies added by binNMUs when there are other problems.  Some
 binary packages have different version numbering schemes on different
 architectures, or they are built from different source packages.

The only current problem I see from the binNMU implementation in dpkg
is that packages that have a different source version than the one for
the binary packages will not receive a proper binNMU version as those
package generate the version manually, neither the binary:Version will
be correct, as we'd have to introduce a binary:binpkg:Version or
similar to be able to deal with those. Given the small amount of
packages doing this I decided to implement something that'd work for
almost all packages except for the few odd cases, that would be
problematic anyway now. This could be fixed in the future if there's
a pressing need.

regards,
guillem


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Roberto C. Sanchez
On Mon, Feb 26, 2007 at 02:55:39AM +0100, Pierre Habouzit wrote:
 
   And btw, help for bug triaging for any of those kind of packages is
 vastly appreciated... But here is a newsflash: 100 bugs is fairly easy
 to reduce. the 5 or 600 bugs the KDE team has closed was a year of work.
 Yes a damn year, during which there has been many upstream releases
 (getting a release ready is a week of work, plus the RC that always come
 with them, so you can add another week on top of this one). So please
 explain me how a team that has had sometimes less of 2 to 3 _actually active_
 members at a given time do manage to keep up with bugs as well ? I'll
 tell you: they just don't.
 
   Sorry to seem pissed, but well, I am. Your mail (and others with the
 same thoughts) are completely disconnected from reality. Totally.
 
Sorry.  I was arguing for the value of bug triage and communicating with
submitters.  I still on't think that holding up migration over
unanswered bugs is a good idea.  Hope that clears things up for you.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: On maintainers not responding to bugs

2007-02-25 Thread Roberto C. Sanchez
On Mon, Feb 26, 2007 at 03:03:17AM +0100, Pierre Habouzit wrote:
  
  Seriously, do you think that the number of bug reports you receive is
  justification to not answer them?
 
   errrm, let me think. YES !
 
   There is a thing to know about bugs, answering hey, I got your mail
 is useless, vacation can do that. So if we suppose answering means
 digging a bit, or forwarding upstream or... it then takes at least 15
 minutes (for easy bugs). Up to the hour for some (to try to figure out
 what the hell the user meant). And NO those number are not irrelevant,
 when I closed sth like 250 or 300 KDE bugs last year, It took me 1 hour
 for 3 to 4 bugs when I was quick.
 
   So now let's do a simple calculation. 100 bugs, 20 minutes, that's
 2000 minutes, over 6 weeks, that's 333 minutes a week, meaning at least
 6 hours a half of work. Just to keep up with bugs. Of completely tedious
 work.
 
   Add to that: working on the backlog, working on the bugs that in fact
 need 1hour of work, packaging new upstreams, doing some maintenance on
 the repository and so on, and KABOOOM, either you have a time machine,
 or there is not enough time.
 
   so well, hmm let me think again ... YES THIS IS A DAMN PERFECT
 ARGUMENT.
 
OK.  But is there not a fairly sizeable team working on KDE packaging
for Debian?  If you were doing it all by yourself, your argument would
make perfect sense.  However, there are others who can help.

  In fact, I would argue that the more reports you receive, the more you
  should endeavour to make sure that they are properly triaged and that
  the submitters know you are working on them.
 
   well, that would be a lie: ([EMAIL PROTECTED]) we don't work on them. So 
 all's
 for the best, it's just fairly visible that we don't even pretend to,
 isn't that great ?
 
OK.

Regards,

-Roberto

-- 
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: On maintainers not responding to bugs

2007-02-25 Thread Ana Guerrero
On Sun, Feb 25, 2007 at 10:35:48PM -0500, Roberto C. Sanchez wrote:
 OK.  But is there not a fairly sizeable team working on KDE packaging
 for Debian?  

No. FYI, the KDE team is currently about 6 *active* members, 3 working 
a lot and 3-4 working when they have some free time. Last kde 3.5.6 has been
packaged for only 3 members of the team (one of them is not even in NM).


 If you were doing it all by yourself, your argument would
 make perfect sense.  However, there are others who can help.

MadCoder has done a lot of work of packaging/bug triaging/maintaing of
KDE in the past. I understand very well the frustration he had when he
wrote some of the mails in this thread.

Ana


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



Re: On maintainers not responding to bugs

2007-02-25 Thread Don Armstrong
On Mon, 26 Feb 2007, Ben Finney wrote:
 Sune Vuorela [EMAIL PROTECTED] writes:
 
  You and others are most welcome to take a stab at the 1000 open bugs
  against the official kdepackages.
 
 You and others cannot substitute for a response *from the package
 maintainer* acknowledging (or otherwise) the bug report. That's the
 criterion being discussed here: not a resolution for the reported
 bug, but rather a first response from the package maintainer to the
 bug report, to acknowledge that it has not been ignored.

There's nothing magical at all about the package maintainer. Anyone
can respond to any of these bugs with more information that clarifies
what the actual bug is, patches, and other information.

Package maintainers are ultimately responsible for the bugs in their
packages, but they can't possibly respond to them all.

[Frankly, if you're concerned about whether someone has seen your
mail, surely the ack from the BTS is sufficent. Anything else requires
someone to actually do the work.]


Don Armstrong

-- 
Of course, there are cases where only a rare individual will have the
vision to perceive a system which governs many people's lives; a
system which had never before even been recognized as a system; then
such people often devote their lives to convincing other people that
the system really is there and that it aught to be exited from. 
 -- Douglas R. Hofstadter _Gödel Escher Bach. Eternal Golden Braid_

http://www.donarmstrong.com  http://rzlab.ucr.edu



Accepted dynagen 0.9.0-1 (source i386)

2007-02-25 Thread Erik Wenzel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 24 Feb 2007 18:36:18 +
Source: dynagen
Binary: dynagen
Architecture: source i386
Version: 0.9.0-1
Distribution: unstable
Urgency: low
Maintainer: Erik Wenzel [EMAIL PROTECTED]
Changed-By: Erik Wenzel [EMAIL PROTECTED]
Description: 
 dynagen- Cisco 7200 Router Emulator Command Line Interface
Closes: 386416
Changes: 
 dynagen (0.9.0-1) unstable; urgency=low
 .
   * New upstream release
   * Depends on dynamips but it is not installable (Closes: #386416)
 dynamips is released
Files: 
 250bab75d667157cb2485d9eb741c7b1 668 contrib/net optional dynagen_0.9.0-1.dsc
 fc7b2708f37ba1f4714f2042eed72352 235944 contrib/net optional 
dynagen_0.9.0.orig.tar.gz
 b0325dd97240bfb26a50badcdef75edb 6696 contrib/net optional 
dynagen_0.9.0-1.diff.gz
 f1ac6b080bc97506da8264c6f7b2b37e 201216 contrib/net optional 
dynagen_0.9.0-1_i386.deb

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

iD8DBQFF4U3fmMmei9uJhBARAubyAJ9/zs6I7oXU9swOSbabaEUoyZ4qzACfXDpl
uOJu9dSiuBAguslhlPQ6e20=
=6Nu5
-END PGP SIGNATURE-


Accepted:
dynagen_0.9.0-1.diff.gz
  to pool/contrib/d/dynagen/dynagen_0.9.0-1.diff.gz
dynagen_0.9.0-1.dsc
  to pool/contrib/d/dynagen/dynagen_0.9.0-1.dsc
dynagen_0.9.0-1_i386.deb
  to pool/contrib/d/dynagen/dynagen_0.9.0-1_i386.deb
dynagen_0.9.0.orig.tar.gz
  to pool/contrib/d/dynagen/dynagen_0.9.0.orig.tar.gz


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



Accepted openslp 1.2.1-6.2 (source i386 all)

2007-02-25 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 09:27:26 +0100
Source: openslp
Binary: libslp-dev slptool libslp1 openslp-doc slpd
Architecture: source i386 all
Version: 1.2.1-6.2
Distribution: unstable
Urgency: low
Maintainer: Ganesan Rajagopal [EMAIL PROTECTED]
Changed-By: Christian Perrier [EMAIL PROTECTED]
Description: 
 libslp-dev - OpenSLP development libraries
 libslp1- OpenSLP libraries
 openslp-doc - OpenSLP documentation
 slpd   - OpenSLP Server (slpd)
 slptool- SLP command line tool
Closes: 402352
Changes: 
 openslp (1.2.1-6.2) unstable; urgency=low
 .
   * Non-maintainer upload to fix a forgotten l10n issue in last NMU.
   * Debconf translations:
 - Spanish. Closes: #402352
 - Convert all translations to UTF-8
Files: 
 3ad34b18af3fe760695f026b81ab9293 679 net extra openslp_1.2.1-6.2.dsc
 c017d0a016c9dd708d5f60ad63db73e5 23585 net extra openslp_1.2.1-6.2.diff.gz
 3068138a5e83072f8063c4feee02298c 90354 doc extra openslp-doc_1.2.1-6.2_all.deb
 d7115129c363993b1746068322d1cf38 63754 net extra slpd_1.2.1-6.2_i386.deb
 445ca48c7a53157fd1cbe85a3cacf879 49032 libs optional libslp1_1.2.1-6.2_i386.deb
 c1f1d1b22cf04d5811fea1aabbf9c604 20618 utils extra slptool_1.2.1-6.2_i386.deb
 3047e1f9684d87f64ab8a2fea39f6e38 64266 libdevel extra 
libslp-dev_1.2.1-6.2_i386.deb

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

iD8DBQFF4UrM1OXtrMAUPS0RAulDAJoCxYoKAL22hut2WKiqkMrrLBOFJwCcD4bT
sZgTZuM7eGy3bfA/LIf6QLA=
=awWi
-END PGP SIGNATURE-


Accepted:
libslp-dev_1.2.1-6.2_i386.deb
  to pool/main/o/openslp/libslp-dev_1.2.1-6.2_i386.deb
libslp1_1.2.1-6.2_i386.deb
  to pool/main/o/openslp/libslp1_1.2.1-6.2_i386.deb
openslp-doc_1.2.1-6.2_all.deb
  to pool/main/o/openslp/openslp-doc_1.2.1-6.2_all.deb
openslp_1.2.1-6.2.diff.gz
  to pool/main/o/openslp/openslp_1.2.1-6.2.diff.gz
openslp_1.2.1-6.2.dsc
  to pool/main/o/openslp/openslp_1.2.1-6.2.dsc
slpd_1.2.1-6.2_i386.deb
  to pool/main/o/openslp/slpd_1.2.1-6.2_i386.deb
slptool_1.2.1-6.2_i386.deb
  to pool/main/o/openslp/slptool_1.2.1-6.2_i386.deb


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



Accepted dynamips 0.2.6-0.2.7RC1-1 (source i386)

2007-02-25 Thread Erik Wenzel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 21 Feb 2007 19:11:37 +0100
Source: dynamips
Binary: dynamips
Architecture: source i386
Version: 0.2.6-0.2.7RC1-1
Distribution: unstable
Urgency: low
Maintainer: Erik Wenzel [EMAIL PROTECTED]
Changed-By: Erik Wenzel [EMAIL PROTECTED]
Description: 
 dynamips   - Cisco 7200/3600/3725/3745/2691 Router Emulator
Changes: 
 dynamips (0.2.6-0.2.7RC1-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 13b3e3ca54678f031b7f7dc99d2bb7af 707 non-free/net optional 
dynamips_0.2.6-0.2.7RC1-1.dsc
 1e736add1285fef3bf7671f6217aee4c 480761 non-free/net optional 
dynamips_0.2.6-0.2.7RC1.orig.tar.gz
 67d3a509de7f6134473606d3d2fdb326 4942 non-free/net optional 
dynamips_0.2.6-0.2.7RC1-1.diff.gz
 b2fe1d98359f583c11fc3ac5487bb5aa 299760 non-free/net optional 
dynamips_0.2.6-0.2.7RC1-1_i386.deb

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

iD8DBQFF3I3omMmei9uJhBARAsV9AKC0r2y2xNTw6HvfvpTTxKMkrLC6mgCfTPGm
uyae7JRkED85MLT11IfaeJ0=
=z9g1
-END PGP SIGNATURE-


Accepted:
dynamips_0.2.6-0.2.7RC1-1.diff.gz
  to pool/non-free/d/dynamips/dynamips_0.2.6-0.2.7RC1-1.diff.gz
dynamips_0.2.6-0.2.7RC1-1.dsc
  to pool/non-free/d/dynamips/dynamips_0.2.6-0.2.7RC1-1.dsc
dynamips_0.2.6-0.2.7RC1-1_i386.deb
  to pool/non-free/d/dynamips/dynamips_0.2.6-0.2.7RC1-1_i386.deb
dynamips_0.2.6-0.2.7RC1.orig.tar.gz
  to pool/non-free/d/dynamips/dynamips_0.2.6-0.2.7RC1.orig.tar.gz


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



Accepted bootcd 3.01 (source all)

2007-02-25 Thread Bernd Schumacher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 19 Feb 2007 09:06:46 +0100
Source: bootcd
Binary: bootcd-mkinitramfs bootcd-i386 bootcd-ia64 bootcd-hppa bootcd
Architecture: source all
Version: 3.01
Distribution: unstable
Urgency: low
Maintainer: Bernd Schumacher [EMAIL PROTECTED]
Changed-By: Bernd Schumacher [EMAIL PROTECTED]
Description: 
 bootcd - run your system from cd without need for disks
 bootcd-hppa - bootcd extension to create images that can boot on parisc/hppa
 bootcd-i386 - bootcd extension to create images that can boot on i386
 bootcd-ia64 - bootcd extension to create images that can boot on ia64
 bootcd-mkinitramfs - With the installation of this bootcd extension your
Closes: 407990 411193
Changes: 
 bootcd (3.01) unstable; urgency=low
 .
   * Clarified copyright message as suggested by Francesco Poli
 [EMAIL PROTECTED] Closes: #411193
   * Fixed bug Bootcdinitramfshook does not copy modules reported
 by [EMAIL PROTECTED] Closes: #407990
Files: 
 4268f01952eaf10ea1fd84ea9513124e 587 utils extra bootcd_3.01.dsc
 f6a3abbe32404a1d43b50e5835353cc7 56689 utils extra bootcd_3.01.tar.gz
 1b6f9064f760e2fe488f2ec26e886c76 57624 utils extra bootcd_3.01_all.deb
 3ce15610b193e371c9cd0f587387fdf4 10598 utils extra bootcd-i386_3.01_all.deb
 deb6b0df1b6ea253150850fb29ab1ea4 10466 utils extra bootcd-hppa_3.01_all.deb
 a05f336f16d16384392978ef17f9b767 9702 utils extra bootcd-ia64_3.01_all.deb
 fda2229351f7f00fcb56c8c23d403ca6 14398 utils extra 
bootcd-mkinitramfs_3.01_all.deb

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

iD8DBQFF4CStINZoglnvXbwRAifAAJ49Z8XyRlHp/6OFtjr8MzgUANYLIwCeNFEd
u9fl3EjT6w7IHFlI3aTO80Q=
=9CMl
-END PGP SIGNATURE-


Accepted:
bootcd-hppa_3.01_all.deb
  to pool/main/b/bootcd/bootcd-hppa_3.01_all.deb
bootcd-i386_3.01_all.deb
  to pool/main/b/bootcd/bootcd-i386_3.01_all.deb
bootcd-ia64_3.01_all.deb
  to pool/main/b/bootcd/bootcd-ia64_3.01_all.deb
bootcd-mkinitramfs_3.01_all.deb
  to pool/main/b/bootcd/bootcd-mkinitramfs_3.01_all.deb
bootcd_3.01.dsc
  to pool/main/b/bootcd/bootcd_3.01.dsc
bootcd_3.01.tar.gz
  to pool/main/b/bootcd/bootcd_3.01.tar.gz
bootcd_3.01_all.deb
  to pool/main/b/bootcd/bootcd_3.01_all.deb


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



Accepted ulogd 1.23-7 (source i386)

2007-02-25 Thread Achilleas Kotsis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 10:13:17 +0200
Source: ulogd
Binary: ulogd-pgsql ulogd-mysql ulogd ulogd-sqlite3 ulogd-pcap
Architecture: source i386
Version: 1.23-7
Distribution: unstable
Urgency: low
Maintainer: Achilleas Kotsis [EMAIL PROTECTED]
Changed-By: Achilleas Kotsis [EMAIL PROTECTED]
Description: 
 ulogd  - The Netfilter Userspace Logging Daemon
 ulogd-mysql - MySQL extension to ulogd
 ulogd-pcap - pcap extension to ulogd
 ulogd-pgsql - PostgreSQL extension to ulogd
 ulogd-sqlite3 - SQLite 3 extension to ulogd
Closes: 402363 408035 412240
Changes: 
 ulogd (1.23-7) unstable; urgency=low
 .
   * debian/po/de.po: German debconf templates translation. (Closes: #402363).
   * debian/po/es.po: Spanish debconf templates translation. (Closes: #408035).
   * debian/po/gl.po: Galician debconf templates translation. (Closes: #412240).
Files: 
 bed5b03d137c33bf4c3ebedacc16032c 697 net optional ulogd_1.23-7.dsc
 4ec04695e87441569a265d13e87ea5cb 20594 net optional ulogd_1.23-7.diff.gz
 a1c8ae81090d8b77e00f84559dfd48d4 98432 net optional ulogd_1.23-7_i386.deb
 bc7568cec56123c6937c378def061d5f 15600 net optional ulogd-mysql_1.23-7_i386.deb
 bf7db7b2668ac5a691d8b6d5b7fe3aec 16408 net optional ulogd-pgsql_1.23-7_i386.deb
 f029a54e6b87b7047391e488242dae79 13780 net optional ulogd-pcap_1.23-7_i386.deb
 f4f665b68ed055f9d787dab819126406 15254 net optional 
ulogd-sqlite3_1.23-7_i386.deb

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

iD8DBQFF4Ve1Vty5d8XpUzMRAjHEAJwJMRq4JT/IDv/MZiUzZBYThROMawCffKiJ
E1C6fDlTmyW27mSCBu868p4=
=128F
-END PGP SIGNATURE-


Accepted:
ulogd-mysql_1.23-7_i386.deb
  to pool/main/u/ulogd/ulogd-mysql_1.23-7_i386.deb
ulogd-pcap_1.23-7_i386.deb
  to pool/main/u/ulogd/ulogd-pcap_1.23-7_i386.deb
ulogd-pgsql_1.23-7_i386.deb
  to pool/main/u/ulogd/ulogd-pgsql_1.23-7_i386.deb
ulogd-sqlite3_1.23-7_i386.deb
  to pool/main/u/ulogd/ulogd-sqlite3_1.23-7_i386.deb
ulogd_1.23-7.diff.gz
  to pool/main/u/ulogd/ulogd_1.23-7.diff.gz
ulogd_1.23-7.dsc
  to pool/main/u/ulogd/ulogd_1.23-7.dsc
ulogd_1.23-7_i386.deb
  to pool/main/u/ulogd/ulogd_1.23-7_i386.deb


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



Accepted findutils 4.2.28-2 (source i386)

2007-02-25 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 10:44:55 +0100
Source: findutils
Binary: findutils
Architecture: source i386
Version: 4.2.28-2
Distribution: unstable
Urgency: low
Maintainer: Andreas Metzler [EMAIL PROTECTED]
Changed-By: Andreas Metzler [EMAIL PROTECTED]
Description: 
 findutils  - utilities for finding files--find, xargs, and locate
Closes: 385896
Changes: 
 findutils (4.2.28-2) unstable; urgency=low
 .
   * Pulled from 4.2.29
 - Fix breakage with slightly more complicated commands and -exedir.
   (Closes: #385896)
Files: 
 a5ea8e714c48dc156359be4150de9220 663 utils required findutils_4.2.28-2.dsc
 14c0e5560ef089fe7aa3eff1dfd0c0cf 15368 utils required 
findutils_4.2.28-2.diff.gz
 e6cbbafe890f4b088ce46945f1155d29 350668 utils required 
findutils_4.2.28-2_i386.deb

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

iD8DBQFF4Vy9HTOcZYuNdmMRAkahAJ0eWXTLv6r1aYwGM28IG7UsMNSsKQCdFXyU
43j40aikjzLEvKO+/9l7yGI=
=LuK5
-END PGP SIGNATURE-


Accepted:
findutils_4.2.28-2.diff.gz
  to pool/main/f/findutils/findutils_4.2.28-2.diff.gz
findutils_4.2.28-2.dsc
  to pool/main/f/findutils/findutils_4.2.28-2.dsc
findutils_4.2.28-2_i386.deb
  to pool/main/f/findutils/findutils_4.2.28-2_i386.deb


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



Accepted otrs2 2.1.5-2 (source all)

2007-02-25 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 10:47:38 +0100
Source: otrs2
Binary: otrs2
Architecture: source all
Version: 2.1.5-2
Distribution: unstable
Urgency: low
Maintainer: Torsten Werner [EMAIL PROTECTED]
Changed-By: Torsten Werner [EMAIL PROTECTED]
Description: 
 otrs2  - Open Ticket Request System
Closes: 411781
Changes: 
 otrs2 (2.1.5-2) unstable; urgency=low
 .
   * Don't reload apache2 in postrm if it is not installed. (Closes: #411781)
Files: 
 a7a010aed6bafb8b639755aa9255c6da 602 web optional otrs2_2.1.5-2.dsc
 779956a5a89a80c2d9bb162fa5254eda 17715 web optional otrs2_2.1.5-2.diff.gz
 a7d55a448539074a96cf4d898d1477e5 1451522 web optional otrs2_2.1.5-2_all.deb

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

iD8DBQFF4VugfY3dicTPjsMRAgtHAJ0dWcVN06ODHHK7jBaqhER+t2MPqgCeNXT2
AFCT1A3wgD4cr4/2U0uG9hc=
=uQyU
-END PGP SIGNATURE-


Accepted:
otrs2_2.1.5-2.diff.gz
  to pool/main/o/otrs2/otrs2_2.1.5-2.diff.gz
otrs2_2.1.5-2.dsc
  to pool/main/o/otrs2/otrs2_2.1.5-2.dsc
otrs2_2.1.5-2_all.deb
  to pool/main/o/otrs2/otrs2_2.1.5-2_all.deb


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



Accepted jwchat 1.0beta2-14 (source all)

2007-02-25 Thread Martin Lohmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 10 Feb 2007 10:13:17 +0100
Source: jwchat
Binary: jwchat
Architecture: source all
Version: 1.0beta2-14
Distribution: unstable
Urgency: low
Maintainer: jwchat packagers [EMAIL PROTECTED]
Changed-By: Martin Lohmeier [EMAIL PROTECTED]
Description: 
 jwchat - a full featured, web-based Jabber chat client
Changes: 
 jwchat (1.0beta2-14) unstable; urgency=low
 .
   * depend on apache 2.2
Files: 
 18cda3b702946902ccf4a62b32eb4d67 754 web optional jwchat_1.0beta2-14.dsc
 75d9b89a96f1b1497ec8b90c5ed0298e 7720 web optional jwchat_1.0beta2-14.diff.gz
 b79a01734f02e4f3f5948a56fed2e844 437522 web optional jwchat_1.0beta2-14_all.deb

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

iD8DBQFF4V11fY3dicTPjsMRAuJmAJ0Sf16NnNzmFHZl97LnhqofO/o8kgCghR7e
JgfzMpblL6qm200ZB4TFyfY=
=4vJM
-END PGP SIGNATURE-


Accepted:
jwchat_1.0beta2-14.diff.gz
  to pool/main/j/jwchat/jwchat_1.0beta2-14.diff.gz
jwchat_1.0beta2-14.dsc
  to pool/main/j/jwchat/jwchat_1.0beta2-14.dsc
jwchat_1.0beta2-14_all.deb
  to pool/main/j/jwchat/jwchat_1.0beta2-14_all.deb


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



Accepted netperf 2.4.3-1 (source i386)

2007-02-25 Thread Erik Wenzel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 10:04:57 +
Source: netperf
Binary: netperf
Architecture: source i386
Version: 2.4.3-1
Distribution: unstable
Urgency: low
Maintainer: Erik Wenzel [EMAIL PROTECTED]
Changed-By: Erik Wenzel [EMAIL PROTECTED]
Description: 
 netperf- Network performance benchmark
Changes: 
 netperf (2.4.3-1) unstable; urgency=low
 .
   * New upstream release
   * [watch] updated to new domain
Files: 
 c9ab69340219b562c1cffa651f9f9eec 595 non-free/net optional netperf_2.4.3-1.dsc
 5a4d947c9dfbc6344ccc0bad49e5426e 1110737 non-free/net optional 
netperf_2.4.3.orig.tar.gz
 c510760ed60adec7e0790a658e3396f5 2477 non-free/net optional 
netperf_2.4.3-1.diff.gz
 3e6a68c72c5ec44144934c7811e232d9 397874 non-free/net optional 
netperf_2.4.3-1_i386.deb

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

iD8DBQFF4WBlmMmei9uJhBARAqWqAKCJA8LI3Tg7zsvdAvXHyQSGhK43zwCg4XOu
qorRTVAhsQCmaOgl/i570R4=
=FbHI
-END PGP SIGNATURE-


Accepted:
netperf_2.4.3-1.diff.gz
  to pool/non-free/n/netperf/netperf_2.4.3-1.diff.gz
netperf_2.4.3-1.dsc
  to pool/non-free/n/netperf/netperf_2.4.3-1.dsc
netperf_2.4.3-1_i386.deb
  to pool/non-free/n/netperf/netperf_2.4.3-1_i386.deb
netperf_2.4.3.orig.tar.gz
  to pool/non-free/n/netperf/netperf_2.4.3.orig.tar.gz


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



Accepted stlport5.1 5.1.1-1 (source i386)

2007-02-25 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 11:13:24 +0100
Source: stlport5.1
Binary: libstlport5.1-dev libstlport5.1-dbg libstlport5.1
Architecture: source i386
Version: 5.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Torsten Werner [EMAIL PROTECTED]
Changed-By: Torsten Werner [EMAIL PROTECTED]
Description: 
 libstlport5.1 - STLport C++ class library
 libstlport5.1-dbg - STLport C++ class library debug symbols
 libstlport5.1-dev - STLport C++ class library
Changes: 
 stlport5.1 (5.1.1-1) unstable; urgency=low
 .
   * New upstream version.
   * Update debian/control to the new svn location.
Files: 
 a6646363d26ff1d7a7c03cf6252a6568 776 devel optional stlport5.1_5.1.1-1.dsc
 c1d4970e5bd048addbe77999e19b22a1 882487 devel optional 
stlport5.1_5.1.1.orig.tar.gz
 7034f7c6f436de0d80e59d4edd348671 9625 devel optional stlport5.1_5.1.1-1.diff.gz
 951cd7ecd76b65ab14f824dc855e9896 451610 libdevel optional 
libstlport5.1-dev_5.1.1-1_i386.deb
 3acd490ae6b98b1efe95b72290ba3715 217208 libs optional 
libstlport5.1_5.1.1-1_i386.deb
 7c611515f0601016840e889352e84dba 920668 libs extra 
libstlport5.1-dbg_5.1.1-1_i386.deb

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

iD8DBQFF4WcwfY3dicTPjsMRAhY9AJ9NGVxk2yc5+1PG0EWJNFY2+2OSQACfd6s9
0TAtiA2NBXJBWSFAz9sLFZk=
=C2y8
-END PGP SIGNATURE-


Accepted:
libstlport5.1-dbg_5.1.1-1_i386.deb
  to pool/main/s/stlport5.1/libstlport5.1-dbg_5.1.1-1_i386.deb
libstlport5.1-dev_5.1.1-1_i386.deb
  to pool/main/s/stlport5.1/libstlport5.1-dev_5.1.1-1_i386.deb
libstlport5.1_5.1.1-1_i386.deb
  to pool/main/s/stlport5.1/libstlport5.1_5.1.1-1_i386.deb
stlport5.1_5.1.1-1.diff.gz
  to pool/main/s/stlport5.1/stlport5.1_5.1.1-1.diff.gz
stlport5.1_5.1.1-1.dsc
  to pool/main/s/stlport5.1/stlport5.1_5.1.1-1.dsc
stlport5.1_5.1.1.orig.tar.gz
  to pool/main/s/stlport5.1/stlport5.1_5.1.1.orig.tar.gz


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



Accepted kde-i18n 4:3.5.6-1 (source all)

2007-02-25 Thread Noèl Köthe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 24 Feb 2007 12:38:52 +0100
Source: kde-i18n
Binary: kde-i18n-nb kde-i18n-ar kde-i18n-he kde-i18n-pa kde-i18n-nn kde-i18n-ja 
kde-i18n-ga kde-i18n-zhtw kde-i18n-pl kde-i18n-mk kde-i18n-lv kde-i18n-ko 
kde-i18n-ro kde-i18n-it kde-i18n-nds kde-i18n-km kde-i18n-uz kde-i18n-pt 
kde-i18n-srlatin kde-i18n-engb kde-i18n-fa kde-i18n-uk kde-i18n-cs kde-i18n-sk 
kde-i18n-ms kde-i18n-af kde-i18n-ca kde-i18n-tr kde-i18n-ru kde-i18n-sv 
kde-i18n-nl kde-i18n-bs kde-i18n-is kde-i18n-se kde-i18n-br kde-i18n-tg 
kde-i18n-fy kde-i18n-es kde-i18n-ss kde-i18n-ptbr kde-i18n-de kde-i18n-hi 
kde-i18n-et kde-i18n-gl kde-i18n-hu kde-i18n-bn kde-i18n-hr kde-i18n-bg 
kde-i18n-az kde-i18n-mn kde-i18n-ta kde-i18n-sr kde-i18n-zhcn kde-i18n-el 
kde-i18n-rw kde-i18n-lt kde-i18n-cy kde-i18n-eu kde-i18n-fr kde-i18n-da 
kde-i18n-eo kde-i18n-fi kde-i18n-sl
Architecture: source all
Version: 4:3.5.6-1
Distribution: unstable
Urgency: low
Maintainer: Noèl Köthe [EMAIL PROTECTED]
Changed-By: Noèl Köthe [EMAIL PROTECTED]
Description: 
 kde-i18n-af - Afrikaans (af) internationalized (i18n) files for KDE
 kde-i18n-ar - Arabic (ar) internationalized (i18n) files for KDE
 kde-i18n-az - Azerbaijani (az) internationalized (i18n) files for KDE
 kde-i18n-bg - Bulgarian (bg) internationalized (i18n) files for KDE
 kde-i18n-bn - Bengali (bn) internationalized (i18n) files for KDE
 kde-i18n-br - Breton (br) internationalized (i18n) files for KDE
 kde-i18n-bs - Bosnian (bs) internationalized (i18n) files for KDE
 kde-i18n-ca - Catalan (ca) internationalized (i18n) files for KDE
 kde-i18n-cs - Czech (cs) internationalized (i18n) files for KDE
 kde-i18n-cy - Welsh (cy) internationalized (i18n) files for KDE
 kde-i18n-da - Danish (da) internationalized (i18n) files for KDE
 kde-i18n-de - German (de) internationalized (i18n) files for KDE
 kde-i18n-el - Greek (el) internationalized (i18n) files for KDE
 kde-i18n-engb - British English (en_GB) internationalized (i18n) files for KDE
 kde-i18n-eo - Esperanto (eo) internationalized (i18n) files for KDE
 kde-i18n-es - Spanish (es) internationalized (i18n) files for KDE
 kde-i18n-et - Estonian (et) internationalized (i18n) files for KDE
 kde-i18n-eu - Basque (eu) internationalized (i18n) files for KDE
 kde-i18n-fa - Farsi (Persian) (fa) internationalized (i18n) files for KDE
 kde-i18n-fi - Finnish (fi) internationalized (i18n) files for KDE
 kde-i18n-fr - French (fr) internationalized (i18n) files for KDE
 kde-i18n-fy - Frisian (fy) internationalized (i18n) files for KDE
 kde-i18n-ga - Irish Gaelic (ga) internationalized (i18n) files for KDE
 kde-i18n-gl - Galician (gl) internationalized (i18n) files for KDE
 kde-i18n-he - Hebrew (he) internationalized (i18n) files for KDE
 kde-i18n-hi - Hindi (hi) internationalized (i18n) files for KDE
 kde-i18n-hr - Croatian (hr) internationalized (i18n) files for KDE
 kde-i18n-hu - Hungarian (hu) internationalized (i18n) files for KDE
 kde-i18n-is - Icelandic (is) internationalized (i18n) files for KDE
 kde-i18n-it - Italian (it) internationalized (i18n) files for KDE
 kde-i18n-ja - Japanese (ja) internationalized (i18n) files for KDE
 kde-i18n-km - Khmer (km) internationalized (i18n) files for KDE
 kde-i18n-ko - Korean (ko) internationalized (i18n) files for KDE
 kde-i18n-lt - Lithuanian (lt) internationalized (i18n) files for KDE
 kde-i18n-lv - Latvian (lv) internationalized (i18n) files for KDE
 kde-i18n-mk - Macedonian (mk) internationalized (i18n) files for KDE
 kde-i18n-mn - Mongolian (mn) internationalized (i18n) files for KDE
 kde-i18n-ms - Malay (ms) internationalized (i18n) files for KDE
 kde-i18n-nb - Norwegian Bookmal (nb) internationalized (i18n) files for KDE
 kde-i18n-nds - Low Saxon (nds) internationalized (i18n) files for KDE
 kde-i18n-nl - Dutch (nl) internationalized (i18n) files for KDE
 kde-i18n-nn - Norwegian Nynorsk (nn) internationalized (i18n) files for KDE
 kde-i18n-pa - Punjabi (pa) internationalized (i18n) files for KDE
 kde-i18n-pl - Polish (pl) internationalized (i18n) files for KDE
 kde-i18n-pt - Portuguese (pt) internationalized (i18n) files for KDE
 kde-i18n-ptbr - Brazilian Portuguese (pt_BR) internationalized (i18n) files 
for K
 kde-i18n-ro - Romanian (ro) internationalized (i18n) files for KDE
 kde-i18n-ru - Russian (ru) internationalized (i18n) files for KDE
 kde-i18n-rw - Kinyarwanda (rw) internationalized (i18n) files for KDE
 kde-i18n-se - Northern Sami (se) internationalized (i18n) files for KDE
 kde-i18n-sk - Slovak (sk) internationalized (i18n) files for KDE
 kde-i18n-sl - Slovenian (sl) internationalized (i18n) files for KDE
 kde-i18n-sr - Serbian (sr) internationalized (i18n) files for KDE
 kde-i18n-srlatin - Latin Serbian ([EMAIL PROTECTED]) internationalized (i18n) 
files for KDE
 kde-i18n-ss - Swati (ss) internationalized (i18n) files for KDE
 kde-i18n-sv - Swedish (sv) internationalized (i18n) files for KDE
 kde-i18n-ta - Tamil (ta) internationalized (i18n) 

Accepted tkcon 1:2.4-20060905-1 (source all)

2007-02-25 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Feb 2007 10:39:25 +0300
Source: tkcon
Binary: tkcon
Architecture: source all
Version: 1:2.4-20060905-1
Distribution: unstable
Urgency: low
Maintainer: Sergei Golovan [EMAIL PROTECTED]
Changed-By: Sergei Golovan [EMAIL PROTECTED]
Description: 
 tkcon  - Enhanced interactive console for developing in Tcl
Changes: 
 tkcon (1:2.4-20060905-1) unstable; urgency=low
 .
   * New CVS snapshot (the upstream author confirmed that CVS is stable).
   * Now it's possible to use TkCon as a Tcl package using
 [package require tkcon].
   * Updated upstream author's email address.
   * Added homepage to debian/control.
   * Added get-orig-source target to debian/rules.
   * Fixed Copyright string in debian/copyright.
   * Fixed bug in debian/rules (install target didn't depend on build target).
   * Added exit clause to debian/rules to catch build problems if any.
   * Added debian/watch file.
Files: 
 843f3c3fb4179945374c2eb4e4135afa 611 interpreters optional 
tkcon_2.4-20060905-1.dsc
 bf34fe72843d570bed942d9577982d3d 110521 interpreters optional 
tkcon_2.4-20060905.orig.tar.gz
 8df3506f01b8472230a3ef55f83cddb3 15343 interpreters optional 
tkcon_2.4-20060905-1.diff.gz
 a729e70f5e1f94cf6cfb5ecb0eda83c9 129406 interpreters optional 
tkcon_2.4-20060905-1_all.deb

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

iD8DBQFF4W0Lv3x5OskTLdsRAo1tAJ9YDTxq31aYBixiO1RADwuNTefdTgCeNyjP
5MJVWgj8WXM++s0U+R6qDts=
=zFOV
-END PGP SIGNATURE-


Accepted:
tkcon_2.4-20060905-1.diff.gz
  to pool/main/t/tkcon/tkcon_2.4-20060905-1.diff.gz
tkcon_2.4-20060905-1.dsc
  to pool/main/t/tkcon/tkcon_2.4-20060905-1.dsc
tkcon_2.4-20060905-1_all.deb
  to pool/main/t/tkcon/tkcon_2.4-20060905-1_all.deb
tkcon_2.4-20060905.orig.tar.gz
  to pool/main/t/tkcon/tkcon_2.4-20060905.orig.tar.gz


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



Accepted apmd 3.2.2-8.1 (source i386)

2007-02-25 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 11:09:17 +0100
Source: apmd
Binary: libapm-dev libapm1 xapm apmd
Architecture: source i386
Version: 3.2.2-8.1
Distribution: unstable
Urgency: low
Maintainer: Anibal Monsalve Salazar [EMAIL PROTECTED]
Changed-By: Christian Perrier [EMAIL PROTECTED]
Description: 
 apmd   - Utilities for Advanced Power Management (APM)
 libapm-dev - Library for interacting with APM driver in kernel
 libapm1- Library for interacting with APM driver in kernel
 xapm   - X program to monitor APM battery status
Closes: 388819 405519 405861
Changes: 
 apmd (3.2.2-8.1) unstable; urgency=low
 .
   * Non-maintainer upload to fix pending l10n and debconf issues.
   * Remove the now compeltely useless debconf note which deals with upgrade
 from pre-sarge versions. Closes: #388819
   * This also makes translations pointless. Closes: #405519, #405861
Files: 
 acdc096e5a08b4bbdf932b1744088fe4 620 admin optional apmd_3.2.2-8.1.dsc
 003e93ca35399cc5a108ee174f571415 17704 admin optional apmd_3.2.2-8.1.diff.gz
 3fdbf3195cac05f02c9e56a2af9d7be8 50716 admin optional apmd_3.2.2-8.1_i386.deb
 10800633e802985698d8cf32821bd69f 27322 x11 optional xapm_3.2.2-8.1_i386.deb
 f99d33a162fbc80cd3098a232b1e0ea0 25456 libs optional libapm1_3.2.2-8.1_i386.deb
 5e101774d574d67c095681e6fc59c867 25654 libdevel optional 
libapm-dev_3.2.2-8.1_i386.deb

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

iD8DBQFF4WsS1OXtrMAUPS0RAqIwAJ4xA0t5Fj6PqHifIq5CTj3M4IMTAACgkNj0
VGRzUBLsVmTL2K3MNYdFWYs=
=sa/d
-END PGP SIGNATURE-


Accepted:
apmd_3.2.2-8.1.diff.gz
  to pool/main/a/apmd/apmd_3.2.2-8.1.diff.gz
apmd_3.2.2-8.1.dsc
  to pool/main/a/apmd/apmd_3.2.2-8.1.dsc
apmd_3.2.2-8.1_i386.deb
  to pool/main/a/apmd/apmd_3.2.2-8.1_i386.deb
libapm-dev_3.2.2-8.1_i386.deb
  to pool/main/a/apmd/libapm-dev_3.2.2-8.1_i386.deb
libapm1_3.2.2-8.1_i386.deb
  to pool/main/a/apmd/libapm1_3.2.2-8.1_i386.deb
xapm_3.2.2-8.1_i386.deb
  to pool/main/a/apmd/xapm_3.2.2-8.1_i386.deb


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



Accepted libwww-cnic-perl 0.21-1 (source all)

2007-02-25 Thread Jonathan McDowell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 11:04:00 +
Source: libwww-cnic-perl
Binary: libwww-cnic-perl
Architecture: source all
Version: 0.21-1
Distribution: unstable
Urgency: low
Maintainer: Jonathan McDowell [EMAIL PROTECTED]
Changed-By: Jonathan McDowell [EMAIL PROTECTED]
Description: 
 libwww-cnic-perl - CentralNic Perl toolkit
Changes: 
 libwww-cnic-perl (0.21-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 6b76f5e1d2638949df4b9756791b8257 652 perl optional libwww-cnic-perl_0.21-1.dsc
 78836b34bf8d423bcb411aaf0e4d560f 25544 perl optional 
libwww-cnic-perl_0.21.orig.tar.gz
 85f69719e29f04be60cdd082c6ff5b4e 1748 perl optional 
libwww-cnic-perl_0.21-1.diff.gz
 8f944df676245cdf00bd2172c3ec179d 82150 perl optional 
libwww-cnic-perl_0.21-1_all.deb

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

iD8DBQFF4W1E8b1L5FtDA2cRAh1eAJwNjv2f5gBfW2lM+2/9oASBeCvCKwCffDdO
l9KVD75p5VcX45rApeht4Pc=
=qu94
-END PGP SIGNATURE-


Accepted:
libwww-cnic-perl_0.21-1.diff.gz
  to pool/main/libw/libwww-cnic-perl/libwww-cnic-perl_0.21-1.diff.gz
libwww-cnic-perl_0.21-1.dsc
  to pool/main/libw/libwww-cnic-perl/libwww-cnic-perl_0.21-1.dsc
libwww-cnic-perl_0.21-1_all.deb
  to pool/main/libw/libwww-cnic-perl/libwww-cnic-perl_0.21-1_all.deb
libwww-cnic-perl_0.21.orig.tar.gz
  to pool/main/libw/libwww-cnic-perl/libwww-cnic-perl_0.21.orig.tar.gz


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



Accepted gpscorrelate 1.5-1 (source i386)

2007-02-25 Thread Stefano Zacchiroli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 11:01:37 +
Source: gpscorrelate
Binary: gpscorrelate gpscorrelate-gui
Architecture: source i386
Version: 1.5-1
Distribution: unstable
Urgency: low
Maintainer: Stefano Zacchiroli [EMAIL PROTECTED]
Changed-By: Stefano Zacchiroli [EMAIL PROTECTED]
Description: 
 gpscorrelate - correlates digital photos with GPS data filling EXIF fields
 gpscorrelate-gui - correlates digital photos with GPS data filling EXIF fields
Closes: 404648
Changes: 
 gpscorrelate (1.5-1) unstable; urgency=low
 .
   * new upstream release
 - better input handling from .gpx files (Closes: #404648)
   * debian/control
 - added XS-Vcs-Browser field
   * debian/svn-deblayout
 - added, with default URL for the tags dir
Files: 
 8bd7d2d8d98a3f5244f5976bb124b112 824 graphics optional gpscorrelate_1.5-1.dsc
 a6bc401f366df334f7843cf37e13bbae 79821 graphics optional 
gpscorrelate_1.5.orig.tar.gz
 83acf243cda425515380f611da161067 6350 graphics optional 
gpscorrelate_1.5-1.diff.gz
 8547f9e938f2e463671d83a46563b8f3 66884 graphics optional 
gpscorrelate_1.5-1_i386.deb
 86fae92ac0c9e854aa9954ce2ab90f34 23580 graphics optional 
gpscorrelate-gui_1.5-1_i386.deb

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

iD8DBQFF4Wzv1cqbBPLEI7wRApaiAJ905rHGkTkXOV9zAAHcGVlNNQA/KQCgvROA
IN7M31scfl1kxj8uryYmVKo=
=M+lG
-END PGP SIGNATURE-


Accepted:
gpscorrelate-gui_1.5-1_i386.deb
  to pool/main/g/gpscorrelate/gpscorrelate-gui_1.5-1_i386.deb
gpscorrelate_1.5-1.diff.gz
  to pool/main/g/gpscorrelate/gpscorrelate_1.5-1.diff.gz
gpscorrelate_1.5-1.dsc
  to pool/main/g/gpscorrelate/gpscorrelate_1.5-1.dsc
gpscorrelate_1.5-1_i386.deb
  to pool/main/g/gpscorrelate/gpscorrelate_1.5-1_i386.deb
gpscorrelate_1.5.orig.tar.gz
  to pool/main/g/gpscorrelate/gpscorrelate_1.5.orig.tar.gz


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



Accepted stgit 0.12.1-1 (source all)

2007-02-25 Thread Yann Dirson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 12:01:58 +0100
Source: stgit
Binary: stgit
Architecture: source all
Version: 0.12.1-1
Distribution: experimental
Urgency: low
Maintainer: Anand Kumria [EMAIL PROTECTED]
Changed-By: Yann Dirson [EMAIL PROTECTED]
Description: 
 stgit  - provide quilt functionality on top of git
Closes: 407238
Changes: 
 stgit (0.12.1-1) experimental; urgency=low
 .
   * New upstream release, has better online help (Closes: #407238).
   * Upload to experimental since this is not targetted to etch.
   * Recommend git-core 1.5 or later, since stgit will work much better
 then.
   * Changed the fallback editor from vi to editor as per policy.
   * Updated tutorial from the wiki.
   * Also include StGITtheory doc from the wiki.
Files: 
 3cc82bd8e2b8b9c06b7faec69ba4bf69 699 devel optional stgit_0.12.1-1.dsc
 36dd6bbfe80cebaa7cc2c073ece07f3c 115793 devel optional stgit_0.12.1.orig.tar.gz
 42e4a56e44c3c937fa6a1f6f37fbed60 10115 devel optional stgit_0.12.1-1.diff.gz
 cb866835676cafcd14d86b7eec1da150 120184 devel optional stgit_0.12.1-1_all.deb

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

iD8DBQFF4W7XV1uVslwzwbgRAnP2AJ96dAKK2OXoBw3jND2moasqgvQ/lwCdG7LJ
4xtaJGeRRfRtbsCT7kCjjsk=
=wbUq
-END PGP SIGNATURE-


Accepted:
stgit_0.12.1-1.diff.gz
  to pool/main/s/stgit/stgit_0.12.1-1.diff.gz
stgit_0.12.1-1.dsc
  to pool/main/s/stgit/stgit_0.12.1-1.dsc
stgit_0.12.1-1_all.deb
  to pool/main/s/stgit/stgit_0.12.1-1_all.deb
stgit_0.12.1.orig.tar.gz
  to pool/main/s/stgit/stgit_0.12.1.orig.tar.gz


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



Accepted loop-aes 3.1f-1 (source i386 all)

2007-02-25 Thread Max Vozeler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 24 Feb 2007 22:17:56 +0100
Source: loop-aes
Binary: loop-aes-modules-2.6.18-4-sb1-bcm91250a 
loop-aes-modules-2.6.18-4-iop32x loop-aes-modules-2.6.18-4-s3c2410 
loop-aes-modules-2.6-parisc64-smp loop-aes-modules-2.6.18-4-parisc 
loop-aes-modules-2.6.18-4-powerpc64 loop-aes-modules-2.6.18-4-r4k-ip22 
loop-aes-modules-2.6-vserver-alpha loop-aes-modules-2.6-xen-vserver-686 
loop-aes-modules-2.6-vserver-686 loop-aes-modules-2.6.18-4-r5k-cobalt 
loop-aes-modules-2.6.18-4-prep loop-aes-modules-2.6-parisc-smp 
loop-aes-modules-2.6.18-4-rpc loop-aes-modules-2.6-r5k-cobalt 
loop-aes-modules-2.6.18-4-r5k-ip32 loop-aes-modules-2.6.18-4-xen-amd64 
loop-aes-modules-2.6.18-4-alpha-legacy loop-aes-modules-2.6.18-4-sparc64-smp 
loop-aes-modules-2.6-alpha-generic loop-aes-modules-2.6.18-4-r4k-kn04 
loop-aes-modules-2.6.18-4-mckinley loop-aes-source 
loop-aes-modules-2.6.18-4-ixp4xx loop-aes-modules-2.6-s390x 
loop-aes-modules-2.6.18-4-powerpc-smp loop-aes-modules-2.6-mac 
loop-aes-modules-2.6.18-4-xen-vserver-686 loop-aes-modules-2.6.18-4-amiga 
loop-aes-modules-2.6-atari loop-aes-modules-2.6.18-4-k7 
loop-aes-modules-2.6-xen-vserver-amd64 loop-aes-modules-2.6.18-4-amd64 
loop-aes-modules-2.6-sparc64 loop-aes-modules-2.6-vserver-s390x 
loop-aes-modules-2.6.18-4-vserver-s390x loop-aes-modules-2.6-ixp4xx 
loop-aes-modules-2.6-rpc loop-aes-modules-2.6-amiga 
loop-aes-modules-2.6.18-4-sparc32 loop-aes-modules-2.6-vserver-k7 
loop-aes-modules-2.6.18-4-alpha-generic loop-aes-modules-2.6.18-4-686 
loop-aes-modules-2.6.18-4-alpha-smp loop-aes-modules-2.6-alpha-smp 
loop-aes-modules-2.6-r4k-kn04 loop-aes-modules-2.6-mckinley 
loop-aes-modules-2.6.18-4-parisc64 loop-aes-modules-2.6.18-4-qemu 
loop-aes-modules-2.6.18-4-itanium loop-aes-modules-2.6-xen-686 
loop-aes-modules-2.6-r3k-kn02 loop-aes-modules-2.6.18-4-vserver-alpha 
loop-aes-modules-2.6-486 loop-aes-modules-2.6-parisc 
loop-aes-modules-2.6-vserver-sparc64 loop-aes-modules-2.6-s390 
loop-aes-modules-2.6-k7 loop-aes-modules-2.6-itanium 
loop-aes-modules-2.6.18-4-xen-vserver-amd64 loop-aes-modules-2.6-s3c2410 
loop-aes-modules-2.6.18-4-atari loop-aes-modules-2.6.18-4-footbridge 
loop-aes-modules-2.6-parisc64 loop-aes-modules-2.6-sparc32 
loop-aes-modules-2.6-prep loop-aes-modules-2.6-sb1-bcm91250a 
loop-aes-modules-2.6-powerpc loop-aes-modules-2.6.18-4-sb1a-bcm91480b 
loop-aes-modules-2.6-r5k-ip32 loop-aes-modules-2.6-xen-amd64 
loop-aes-modules-2.6.18-4-sparc64 loop-aes-modules-2.6.18-4-powerpc 
loop-aes-modules-2.6-alpha-legacy loop-aes-modules-2.6.18-4-mac 
loop-aes-modules-2.6-sb1a-bcm91480b loop-aes-modules-2.6-amd64 
loop-aes-modules-2.6.18-4-r3k-kn02 loop-aes-modules-2.6.18-4-vserver-powerpc64 
loop-aes-modules-2.6-iop32x loop-aes-modules-2.6.18-4-vserver-sparc64 
loop-aes-modules-2.6-sparc64-smp loop-aes-modules-2.6.18-4-s390 
loop-aes-modules-2.6-vserver-powerpc loop-aes-modules-2.6.18-4-xen-686 
loop-aes-modules-2.6.18-4-powerpc-miboot loop-aes-modules-2.6-vserver-amd64 
loop-aes-modules-2.6.18-4-parisc-smp loop-aes-testsuite 
loop-aes-modules-2.6-powerpc-smp loop-aes-modules-2.6.18-4-686-bigmem 
loop-aes-modules-2.6-qemu loop-aes-modules-2.6-footbridge 
loop-aes-modules-2.6-686 loop-aes-modules-2.6.18-4-vserver-686 
loop-aes-modules-2.6-powerpc-miboot loop-aes-modules-2.6-r4k-ip22 
loop-aes-modules-2.6.18-4-vserver-powerpc loop-aes-modules-2.6.18-4-s390x 
loop-aes-modules-2.6-powerpc64 loop-aes-modules-2.6.18-4-vserver-amd64 
loop-aes-modules-2.6.18-4-486 loop-aes-modules-2.6-686-bigmem 
loop-aes-modules-2.6.18-4-vserver-k7 loop-aes-modules-2.6-vserver-powerpc64 
loop-aes-modules-2.6.18-4-parisc64-smp
Architecture: source i386 all
Version: 3.1f-1
Distribution: experimental
Urgency: low
Maintainer: Debian Loop-AES Team [EMAIL PROTECTED]
Changed-By: Max Vozeler [EMAIL PROTECTED]
Description: 
 loop-aes-modules-2.6-486 - loop-AES encryption modules for Linux 2.6 on x86
 loop-aes-modules-2.6-686 - loop-AES encryption modules for Linux 2.6 on 
PPro/Celeron/PII/PII
 loop-aes-modules-2.6-686-bigmem - loop-AES encryption modules for Linux 2.6 on 
PPro/Celeron/PII/PII
 loop-aes-modules-2.6-amd64 - loop-AES encryption modules for Linux 2.6 on AMD64
 loop-aes-modules-2.6-k7 - loop-AES encryption modules for Linux 2.6 on AMD K7
 loop-aes-modules-2.6-vserver-686 - loop-AES encryption modules for Linux 2.6 
on PPro/Celeron/PII/PII
 loop-aes-modules-2.6-vserver-k7 - loop-AES encryption modules for Linux 2.6 on 
AMD K7
 loop-aes-modules-2.6-xen-686 - loop-AES encryption modules for Linux 2.6 on 
i686
 loop-aes-modules-2.6-xen-vserver-686 - loop-AES encryption modules for Linux 
2.6 on i686
 loop-aes-modules-2.6.18-4-486 - loop-AES encryption modules for Linux 2.6.18 
on x86
 loop-aes-modules-2.6.18-4-686 - loop-AES encryption modules for Linux 2.6.18 
on PPro/Celeron/PII/
 loop-aes-modules-2.6.18-4-686-bigmem - loop-AES encryption modules for Linux 
2.6.18 on PPro/Celeron/PII/
 loop-aes-modules-2.6.18-4-amd64 - 

Accepted git-core 1:1.5.0.1-1 (source all powerpc)

2007-02-25 Thread Gerrit Pape
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 11:38:34 +
Source: git-core
Binary: git-email git-core git-daemon-run git-doc git-cvs git-svn gitk gitweb 
git-arch git-gui
Architecture: source all powerpc
Version: 1:1.5.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Gerrit Pape [EMAIL PROTECTED]
Changed-By: Gerrit Pape [EMAIL PROTECTED]
Description: 
 git-arch   - fast, scalable, distributed revision control system (arch interop
 git-core   - fast, scalable, distributed revision control system
 git-cvs- fast, scalable, distributed revision control system (cvs interope
 git-daemon-run - fast, scalable, distributed revision control system 
(git-daemon s
 git-doc- fast, scalable, distributed revision control system (documentatio
 git-email  - fast, scalable, distributed revision control system (email add-on
 git-gui- fast, scalable, distributed revision control system (GUI)
 git-svn- fast, scalable, distributed revision control system (svn interope
 gitk   - fast, scalable, distributed revision control system (revision tre
 gitweb - fast, scalable, distributed revision control system (web interfac
Changes: 
 git-core (1:1.5.0.1-1) unstable; urgency=low
 .
   * new upstream point release.
   * debian/diff/git-cvsserver-update-hook.diff: new from upstream pu branch:
 Have git-cvsserver call hooks/update before really altering the ref.
   * debian/control: git-cvs: Depends: libdbd-sqlite3-perl (git-cvsserver).
Files: 
 8997edb4ec6cdeba4b609209fd451339 781 devel optional git-core_1.5.0.1-1.dsc
 f88de21f29b862aac81ad70dfdb4f6db 1239930 devel optional 
git-core_1.5.0.1.orig.tar.gz
 e11b6b18e29ebb3d06fa0180252fd85a 86761 devel optional 
git-core_1.5.0.1-1.diff.gz
 f94b2a7dd6a76d92d5793d033723fbd5 3261488 devel optional 
git-core_1.5.0.1-1_powerpc.deb
 4b9bd9598667bf46a2aeeb74031dcc48 651416 doc optional git-doc_1.5.0.1-1_all.deb
 152cf44a13f9f57a3ae383799bf073a5 95384 devel optional 
git-arch_1.5.0.1-1_all.deb
 a1f321fb80d10b8f9be206ebfeefbab8 121432 devel optional 
git-cvs_1.5.0.1-1_all.deb
 a2d17d370175d81299f378fe2e1238ef 124104 devel optional 
git-svn_1.5.0.1-1_all.deb
 5442898b8b96c3dc27608f433b7cffa1 82018 devel optional 
git-daemon-run_1.5.0.1-1_all.deb
 094edf0999756ca0c62566b7ffcb14b2 89752 devel optional 
git-email_1.5.0.1-1_all.deb
 6e6f0b0b51c3a2ac189b8f159fe02de6 146464 devel optional 
git-gui_1.5.0.1-1_all.deb
 fcc1b74e454e5ce671c7c742613b8fa8 126482 devel optional gitk_1.5.0.1-1_all.deb
 f57c42328d864f18043d62bb15a5a4ef 119218 devel optional gitweb_1.5.0.1-1_all.deb

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

iD8DBQFF4X8KGJoyQbxwpv8RAhl5AJ9fdI5wRK5/TmfBsZFKKEVWMb+bmgCgkgzF
2ahLjNPWUAuD7NFwj4Oi0AM=
=MtkS
-END PGP SIGNATURE-


Accepted:
git-arch_1.5.0.1-1_all.deb
  to pool/main/g/git-core/git-arch_1.5.0.1-1_all.deb
git-core_1.5.0.1-1.diff.gz
  to pool/main/g/git-core/git-core_1.5.0.1-1.diff.gz
git-core_1.5.0.1-1.dsc
  to pool/main/g/git-core/git-core_1.5.0.1-1.dsc
git-core_1.5.0.1-1_powerpc.deb
  to pool/main/g/git-core/git-core_1.5.0.1-1_powerpc.deb
git-core_1.5.0.1.orig.tar.gz
  to pool/main/g/git-core/git-core_1.5.0.1.orig.tar.gz
git-cvs_1.5.0.1-1_all.deb
  to pool/main/g/git-core/git-cvs_1.5.0.1-1_all.deb
git-daemon-run_1.5.0.1-1_all.deb
  to pool/main/g/git-core/git-daemon-run_1.5.0.1-1_all.deb
git-doc_1.5.0.1-1_all.deb
  to pool/main/g/git-core/git-doc_1.5.0.1-1_all.deb
git-email_1.5.0.1-1_all.deb
  to pool/main/g/git-core/git-email_1.5.0.1-1_all.deb
git-gui_1.5.0.1-1_all.deb
  to pool/main/g/git-core/git-gui_1.5.0.1-1_all.deb
git-svn_1.5.0.1-1_all.deb
  to pool/main/g/git-core/git-svn_1.5.0.1-1_all.deb
gitk_1.5.0.1-1_all.deb
  to pool/main/g/git-core/gitk_1.5.0.1-1_all.deb
gitweb_1.5.0.1-1_all.deb
  to pool/main/g/git-core/gitweb_1.5.0.1-1_all.deb


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



Accepted iceweasel 2.0.0.2+dfsg-1 (source all i386)

2007-02-25 Thread Eric Dorland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 06:08:04 -0500
Source: iceweasel
Binary: firefox-dom-inspector mozilla-firefox iceweasel-gnome-support iceweasel 
mozilla-firefox-dom-inspector iceweasel-dbg firefox-gnome-support 
iceweasel-dom-inspector mozilla-firefox-gnome-support firefox
Architecture: source all i386
Version: 2.0.0.2+dfsg-1
Distribution: unstable
Urgency: high
Maintainer: Eric Dorland [EMAIL PROTECTED]
Changed-By: Eric Dorland [EMAIL PROTECTED]
Description: 
 firefox- Transition package for iceweasel rename
 firefox-dom-inspector - Transition package for iceweasel rename
 firefox-gnome-support - Transition package for iceweasel rename
 iceweasel  - lightweight web browser based on Mozilla
 iceweasel-dbg - debugging symbols for iceweasel
 iceweasel-dom-inspector - tool for inspecting the DOM of pages in Iceweasel
 iceweasel-gnome-support - Support for Gnome in Iceweasel
 mozilla-firefox - Transition package for iceweasel rename
 mozilla-firefox-dom-inspector - Transition package for iceweasel rename
 mozilla-firefox-gnome-support - Transition package for iceweasel rename
Closes: 411226
Changes: 
 iceweasel (2.0.0.2+dfsg-1) unstable; urgency=high
 .
   * New upstream release. Fixes security vulnerabilities: CVE-2007-0775,
 CVE-2007-0776, CVE-2007-0777, CVE-2007-0995, CVE-2006-6077,
 CVE-2007-0778, CVE-2007-0779, CVE-2007-0780, CVE-2007-0800,
 CVE-2007-0008, CVE-2007-0009, CVE-2007-0981.
   * browser/app/firefox-branding.js: Set app.releaseNotesURL to the
 correct url for release notes. (Closes: #411226)
   * debian/iceweasel-runner: Use set -- everywhere. Thanks Loic Grenie.
Files: 
 291072d61a5481383faf326e733548bf 1188 web optional iceweasel_2.0.0.2+dfsg-1.dsc
 ff8f7a501070f2bb6466c1ab76063302 44925067 web optional 
iceweasel_2.0.0.2+dfsg.orig.tar.gz
 e5bd90606b4b380013b457102a8d85af 265042 web optional 
iceweasel_2.0.0.2+dfsg-1.diff.gz
 1fb5be9ae4c13a8f6f7f2d48f24c93b4 232688 web optional 
iceweasel-dom-inspector_2.0.0.2+dfsg-1_all.deb
 8eedf16250a6e22e3c44571761e08bcf 51998 web optional 
mozilla-firefox_2.0.0.2+dfsg-1_all.deb
 2b85e6d0294966fcc047140dec9a4a1f 51202 web optional 
mozilla-firefox-dom-inspector_2.0.0.2+dfsg-1_all.deb
 52053eec66f4867ae6071b6c7e38981c 51198 gnome optional 
mozilla-firefox-gnome-support_2.0.0.2+dfsg-1_all.deb
 08e81d5f1cfc9a70c2b71f2140571136 51474 web optional 
firefox_2.0.0.2+dfsg-1_all.deb
 98aeb740399c4ace9281fc83890c8b3b 51356 web optional 
firefox-dom-inspector_2.0.0.2+dfsg-1_all.deb
 2235ec8dfbf5577a650764baa60a908d 51324 gnome optional 
firefox-gnome-support_2.0.0.2+dfsg-1_all.deb
 87294543fad5a72c2086013885e6d765 8989584 web optional 
iceweasel_2.0.0.2+dfsg-1_i386.deb
 bf777f734d4f643fe82e868b1dea4642 78918 gnome optional 
iceweasel-gnome-support_2.0.0.2+dfsg-1_i386.deb
 009d94bd4243e3c8a42af5ced53efa37 49301186 devel extra 
iceweasel-dbg_2.0.0.2+dfsg-1_i386.deb

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

iD8DBQFF4YRxYemOzxbZcMYRAnzsAJ9K9mmHm6+k6uWiaVBKWx9Qf/WZuwCgzD7I
KYx51298QXztdqVvnAUacnc=
=bX9o
-END PGP SIGNATURE-


Accepted:
firefox-dom-inspector_2.0.0.2+dfsg-1_all.deb
  to pool/main/i/iceweasel/firefox-dom-inspector_2.0.0.2+dfsg-1_all.deb
firefox-gnome-support_2.0.0.2+dfsg-1_all.deb
  to pool/main/i/iceweasel/firefox-gnome-support_2.0.0.2+dfsg-1_all.deb
firefox_2.0.0.2+dfsg-1_all.deb
  to pool/main/i/iceweasel/firefox_2.0.0.2+dfsg-1_all.deb
iceweasel-dbg_2.0.0.2+dfsg-1_i386.deb
  to pool/main/i/iceweasel/iceweasel-dbg_2.0.0.2+dfsg-1_i386.deb
iceweasel-dom-inspector_2.0.0.2+dfsg-1_all.deb
  to pool/main/i/iceweasel/iceweasel-dom-inspector_2.0.0.2+dfsg-1_all.deb
iceweasel-gnome-support_2.0.0.2+dfsg-1_i386.deb
  to pool/main/i/iceweasel/iceweasel-gnome-support_2.0.0.2+dfsg-1_i386.deb
iceweasel_2.0.0.2+dfsg-1.diff.gz
  to pool/main/i/iceweasel/iceweasel_2.0.0.2+dfsg-1.diff.gz
iceweasel_2.0.0.2+dfsg-1.dsc
  to pool/main/i/iceweasel/iceweasel_2.0.0.2+dfsg-1.dsc
iceweasel_2.0.0.2+dfsg-1_i386.deb
  to pool/main/i/iceweasel/iceweasel_2.0.0.2+dfsg-1_i386.deb
iceweasel_2.0.0.2+dfsg.orig.tar.gz
  to pool/main/i/iceweasel/iceweasel_2.0.0.2+dfsg.orig.tar.gz
mozilla-firefox-dom-inspector_2.0.0.2+dfsg-1_all.deb
  to pool/main/i/iceweasel/mozilla-firefox-dom-inspector_2.0.0.2+dfsg-1_all.deb
mozilla-firefox-gnome-support_2.0.0.2+dfsg-1_all.deb
  to pool/main/i/iceweasel/mozilla-firefox-gnome-support_2.0.0.2+dfsg-1_all.deb
mozilla-firefox_2.0.0.2+dfsg-1_all.deb
  to pool/main/i/iceweasel/mozilla-firefox_2.0.0.2+dfsg-1_all.deb


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



Accepted nautilus 2.14.3-10 (source i386 all)

2007-02-25 Thread Loic Minier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 11:58:27 +0100
Source: nautilus
Binary: libnautilus-extension-dev libnautilus-extension1 nautilus-data 
nautilus-dbg nautilus
Architecture: source i386 all
Version: 2.14.3-10
Distribution: unstable
Urgency: medium
Maintainer: Josselin Mouette [EMAIL PROTECTED]
Changed-By: Loic Minier [EMAIL PROTECTED]
Description: 
 libnautilus-extension-dev - libraries for nautilus components - development 
version
 libnautilus-extension1 - libraries for nautilus components - runtime version
 nautilus   - file manager and graphical shell for GNOME
 nautilus-data - data files for nautilus
 nautilus-dbg - file manager and graphical shell for GNOME - debugging version
Changes: 
 nautilus (2.14.3-10) unstable; urgency=medium
 .
   * New patch, 30_row-deleted-before-deleting, sends the row-deleted signal
 before deleting rows, as recommended; backported from GNOME #356672 /
 nautilus/2.16.2.
   * New patch, 31_double-free-in-audio-preview, fixes double free; backported
 from GNOME #321175 / nautilus/2.16.2.
   * New patch, 32_remove-directory-assert-in-view, removes assert which might
 cause crashes; backported from GNOME #352592 / nautilus/2.16.2.
Files: 
 03536731f086cec4fd3f6acaf2697989 1805 gnome optional nautilus_2.14.3-10.dsc
 60cbb803ee76ce15c0fd26d8899ad801 29254 gnome optional 
nautilus_2.14.3-10.diff.gz
 000975551a030d5f737a8e3c1dc426ca 3504600 gnome optional 
nautilus-data_2.14.3-10_all.deb
 3802cc06b5df1aa1ea4dede666ea9e46 600466 gnome optional 
nautilus_2.14.3-10_i386.deb
 00bff70d48e539362c8496863412f647 1667072 gnome extra 
nautilus-dbg_2.14.3-10_i386.deb
 cbe02278540ff3b102fbca4d62c195c3 83252 libs optional 
libnautilus-extension1_2.14.3-10_i386.deb
 ca74f5f4c4630017041d42d706e206b5 79054 libdevel optional 
libnautilus-extension-dev_2.14.3-10_i386.deb

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

iD8DBQFF4YwW4VUX8isJIMARAkghAJ0aluvzHZc8m8nwUoBH7xj5el7OegCcCvQo
JPAe47klmEgoxE9jthyzicA=
=DI6b
-END PGP SIGNATURE-


Accepted:
libnautilus-extension-dev_2.14.3-10_i386.deb
  to pool/main/n/nautilus/libnautilus-extension-dev_2.14.3-10_i386.deb
libnautilus-extension1_2.14.3-10_i386.deb
  to pool/main/n/nautilus/libnautilus-extension1_2.14.3-10_i386.deb
nautilus-data_2.14.3-10_all.deb
  to pool/main/n/nautilus/nautilus-data_2.14.3-10_all.deb
nautilus-dbg_2.14.3-10_i386.deb
  to pool/main/n/nautilus/nautilus-dbg_2.14.3-10_i386.deb
nautilus_2.14.3-10.diff.gz
  to pool/main/n/nautilus/nautilus_2.14.3-10.diff.gz
nautilus_2.14.3-10.dsc
  to pool/main/n/nautilus/nautilus_2.14.3-10.dsc
nautilus_2.14.3-10_i386.deb
  to pool/main/n/nautilus/nautilus_2.14.3-10_i386.deb


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



Accepted jd 1:1.8.8~beta070218-cvs20070224-1 (source i386)

2007-02-25 Thread Debian-JP
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 02:22:41 +0900
Source: jd
Binary: jd
Architecture: source i386
Version: 1:1.8.8~beta070218-cvs20070224-1
Distribution: unstable
Urgency: low
Maintainer: Hideki Yamane (Debian-JP) [EMAIL PROTECTED]
Changed-By: Hideki Yamane (Debian-JP) [EMAIL PROTECTED]
Description: 
 jd - gtk+ based 2ch browser for Linux
Closes: 411494 411694
Changes: 
 jd (1:1.8.8~beta070218-cvs20070224-1) unstable; urgency=low
 .
   * Update from cvs source.
   * debian/patches/00list
  remove configure.in patch. merged with upstream.
   * debian/watch
  fix to work.
   * debian/copyright
  correct copyright year 2006-2007 (Closes: #411694).
  Thanks to Tatsuya Kinoshita [EMAIL PROTECTED]
   * debian/docs
  add help/* files (Closes: #411494).
  Thanks to Tatsuya Kinoshita [EMAIL PROTECTED]
   * Add debian/jd.lintian-overrides, modifity debian/dirs and use it
 in debian/rules. It avoid lintian warning for help/license.xml.
Files: 
 2a72ba8e3e6e33578aee62c7e7d0b39c 705 net optional 
jd_1.8.8~beta070218-cvs20070224-1.dsc
 1bce093a9e319d0a28879989b508a280 382829 net optional 
jd_1.8.8~beta070218-cvs20070224.orig.tar.gz
 b625f43f67af4e16665a11e0d7d5e8f3 7989 net optional 
jd_1.8.8~beta070218-cvs20070224-1.diff.gz
 695df1a118a0f0da3c1fdcd96ad7d96b 1075754 net optional 
jd_1.8.8~beta070218-cvs20070224-1_i386.deb

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

iD8DBQFF4Y0MgV4LPvpMUpgRAvtvAKCGWceBKcI/6nOUrBFQGojvKC61rQCgkIdS
zDbKw3I8dD0l4RRSV0ihAgE=
=D/sS
-END PGP SIGNATURE-


Accepted:
jd_1.8.8~beta070218-cvs20070224-1.diff.gz
  to pool/main/j/jd/jd_1.8.8~beta070218-cvs20070224-1.diff.gz
jd_1.8.8~beta070218-cvs20070224-1.dsc
  to pool/main/j/jd/jd_1.8.8~beta070218-cvs20070224-1.dsc
jd_1.8.8~beta070218-cvs20070224-1_i386.deb
  to pool/main/j/jd/jd_1.8.8~beta070218-cvs20070224-1_i386.deb
jd_1.8.8~beta070218-cvs20070224.orig.tar.gz
  to pool/main/j/jd/jd_1.8.8~beta070218-cvs20070224.orig.tar.gz


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



Accepted seahorse 0.9.92-1 (source powerpc)

2007-02-25 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 11:10:22 +0100
Source: seahorse
Binary: seahorse
Architecture: source powerpc
Version: 0.9.92-1
Distribution: experimental
Urgency: low
Maintainer: Jose Carlos Garcia Sogo [EMAIL PROTECTED]
Changed-By: Sebastian Dröge [EMAIL PROTECTED]
Description: 
 seahorse   - A Gnome front end for GnuPG
Changes: 
 seahorse (0.9.92-1) experimental; urgency=low
 .
   * New upstream release
   * debian/patches/30_crash-fixes.dpatch,
 debian/patches/40_crash-fix.dpatch:
 + Dropped, merged upstream
   * debian/patches/10_relibtoolize.dpatch:
 + Updated for new upstream version
Files: 
 a3aabb1c153041cbcb3b2eca69895432 1048 gnome optional seahorse_0.9.92-1.dsc
 fc8cdf33e4da3eff6c628d6dd4880209 2473536 gnome optional 
seahorse_0.9.92.orig.tar.gz
 57d4c9d0f318d8e44ad70d1b627e47a6 64227 gnome optional seahorse_0.9.92-1.diff.gz
 e2b0c4b577d2349f80bd5b49de0840d4 3196980 gnome optional 
seahorse_0.9.92-1_powerpc.deb

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

iD8DBQFF4ZdhBsBdh1vkHyERAjSwAJ9+Z0IFjbeZNy6gMei0b1Z9T/EQLQCfRUvH
Ac3CvezTdgle9E5Me30TqL4=
=OOn3
-END PGP SIGNATURE-


Accepted:
seahorse_0.9.92-1.diff.gz
  to pool/main/s/seahorse/seahorse_0.9.92-1.diff.gz
seahorse_0.9.92-1.dsc
  to pool/main/s/seahorse/seahorse_0.9.92-1.dsc
seahorse_0.9.92-1_powerpc.deb
  to pool/main/s/seahorse/seahorse_0.9.92-1_powerpc.deb
seahorse_0.9.92.orig.tar.gz
  to pool/main/s/seahorse/seahorse_0.9.92.orig.tar.gz


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



Accepted stopmotion 0.6.0-1 (source i386)

2007-02-25 Thread Bjoern Erik Nilsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 15:25:48 +0100
Source: stopmotion
Binary: stopmotion
Architecture: source i386
Version: 0.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Bjoern Erik Nilsen [EMAIL PROTECTED]
Changed-By: Bjoern Erik Nilsen [EMAIL PROTECTED]
Description: 
 stopmotion - program for creating stop motion animations
Changes: 
 stopmotion (0.6.0-1) unstable; urgency=low
 .
   * New upstream release
 - Added button to launch Gimp with the current active frame.
   * Added Gimp to 'Suggests' in debian/control.
   * Upload sponsored by Petter Reinholdtsen.
Files: 
 cdb2bf85112c5a940ea17f232998979c 700 x11 optional stopmotion_0.6.0-1.dsc
 d041d5b6ddc77be34e65ce32ebb07ef4 2413805 x11 optional 
stopmotion_0.6.0.orig.tar.gz
 2a22d51d7bae827fce0edbc89f258fab 5631 x11 optional stopmotion_0.6.0-1.diff.gz
 9ddbd54da381af60f8e39abca3eaa0a9 2304856 x11 optional 
stopmotion_0.6.0-1_i386.deb

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

iD8DBQFF4aeV20zMSyow1ykRAqlBAJwJzpNDK6VT6+yWlY8CSqo/A0v1DQCgn4vJ
518zrOLj3/JhzxT8s5vhT7Y=
=MlZF
-END PGP SIGNATURE-


Accepted:
stopmotion_0.6.0-1.diff.gz
  to pool/main/s/stopmotion/stopmotion_0.6.0-1.diff.gz
stopmotion_0.6.0-1.dsc
  to pool/main/s/stopmotion/stopmotion_0.6.0-1.dsc
stopmotion_0.6.0-1_i386.deb
  to pool/main/s/stopmotion/stopmotion_0.6.0-1_i386.deb
stopmotion_0.6.0.orig.tar.gz
  to pool/main/s/stopmotion/stopmotion_0.6.0.orig.tar.gz


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



Accepted fakeroot 1.6.1 (source i386)

2007-02-25 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 11:35:30 -0500
Source: fakeroot
Binary: fakeroot
Architecture: source i386
Version: 1.6.1
Distribution: unstable
Urgency: low
Maintainer: Clint Adams [EMAIL PROTECTED]
Changed-By: Clint Adams [EMAIL PROTECTED]
Description: 
 fakeroot   - Gives a fake root environment
Changes: 
 fakeroot (1.6.1) unstable; urgency=low
 .
   * Apply patch from Heikki Lindholm to fix MacOS X support.
Files: 
 d2ee3301efd053c234ebb0a209622557 704 utils optional fakeroot_1.6.1.dsc
 d09ef0e8f9556f2818de373d669f2b84 821155 utils optional fakeroot_1.6.1.tar.gz
 f92872c9f04411e3b1e29d33861a9c76 96536 utils optional fakeroot_1.6.1_i386.deb

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

iD8DBQFF4bz05m0u66uWM3ARAuZcAKCUtUVpTPsYwV8Dob2u4c/grPWTVQCghbd5
cWbZkctXL74kqV+fVI9kNs0=
=++NQ
-END PGP SIGNATURE-


Accepted:
fakeroot_1.6.1.dsc
  to pool/main/f/fakeroot/fakeroot_1.6.1.dsc
fakeroot_1.6.1.tar.gz
  to pool/main/f/fakeroot/fakeroot_1.6.1.tar.gz
fakeroot_1.6.1_i386.deb
  to pool/main/f/fakeroot/fakeroot_1.6.1_i386.deb


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



Accepted openssl 0.9.8e-1 (source amd64)

2007-02-25 Thread Kurt Roeckx
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 18:06:28 +
Source: openssl
Binary: libssl-dev openssl libssl0.9.8-dbg libcrypto0.9.8-udeb libssl0.9.8
Architecture: source amd64
Version: 0.9.8e-1
Distribution: unstable
Urgency: low
Maintainer: Debian OpenSSL Team [EMAIL PROTECTED]
Changed-By: Kurt Roeckx [EMAIL PROTECTED]
Description: 
 libcrypto0.9.8-udeb - crypto shared library - udeb (udeb)
 libssl-dev - SSL development libraries, header files and documentation
 libssl0.9.8 - SSL shared libraries
 libssl0.9.8-dbg - Symbol tables for libssl and libcrypt
 openssl- Secure Socket Layer (SSL) binary and related cryptographic tools
Closes: 221689 391191 407196 408157 408902 412326
Changes: 
 openssl (0.9.8e-1) unstable; urgency=low
 .
   * New upstream release
 - Inludes security fixes for CVE-2006-2937, CVE-2006-2940,
   CVE-2006-3738, CVE-2006-4343 (Closes: #408902)
 - s_client now properly works with SMTP.  Also added support
   for IMAP.  (closes: #221689)
   * Add clamav-freshclam and clamav-daemon to the list of service that
 need to be restarted.  (Closes: #391191)
   * Add armel support.  Thanks to Guillem Jover [EMAIL PROTECTED]
 for the patch.  (Closes: #407196)
   * Add Portuguese translations.  Thanks to Carlos Lisboa.  (Closes: 408157)
   * Add Norwegian translations.  Thanks to Bjørn Steensrud
 [EMAIL PROTECTED] (Closes: #412326)
Files: 
 df7a4e74409a8ece1ce78f0bd3839a17 797 utils optional openssl_0.9.8e-1.dsc
 3a7ff24f6ea5cd711984722ad654b927 3341665 utils optional 
openssl_0.9.8e.orig.tar.gz
 bd466dd1d8e3350c37b984ff73d7742e 41485 utils optional openssl_0.9.8e-1.diff.gz
 2a38196c6a3e494f77ac5fa442e8b5db 1008276 utils optional 
openssl_0.9.8e-1_amd64.deb
 9f6eff6c56748a073aa142bc3cd68bf8 895970 libs important 
libssl0.9.8_0.9.8e-1_amd64.deb
 413b44d7bfb44d2ebf3728a94a7d64e7 582072 debian-installer optional 
libcrypto0.9.8-udeb_0.9.8e-1_amd64.udeb
 2a58f10e3b30f08ebebd69286180767c 2187276 libdevel optional 
libssl-dev_0.9.8e-1_amd64.deb
 eeb0f0876b340c87faafc1d2375a3078 1658498 libdevel extra 
libssl0.9.8-dbg_0.9.8e-1_amd64.deb
Package-Type: udeb

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

iD8DBQFF4dJMQdwckHJElwsRAkk4AKDIpLu2q7fnG2Aa8hUW2y/o6xm1OgCgqd1j
8GtEq8BnMq1Uiqg3IdlVhiI=
=kCeB
-END PGP SIGNATURE-


Accepted:
libcrypto0.9.8-udeb_0.9.8e-1_amd64.udeb
  to pool/main/o/openssl/libcrypto0.9.8-udeb_0.9.8e-1_amd64.udeb
libssl-dev_0.9.8e-1_amd64.deb
  to pool/main/o/openssl/libssl-dev_0.9.8e-1_amd64.deb
libssl0.9.8-dbg_0.9.8e-1_amd64.deb
  to pool/main/o/openssl/libssl0.9.8-dbg_0.9.8e-1_amd64.deb
libssl0.9.8_0.9.8e-1_amd64.deb
  to pool/main/o/openssl/libssl0.9.8_0.9.8e-1_amd64.deb
openssl_0.9.8e-1.diff.gz
  to pool/main/o/openssl/openssl_0.9.8e-1.diff.gz
openssl_0.9.8e-1.dsc
  to pool/main/o/openssl/openssl_0.9.8e-1.dsc
openssl_0.9.8e-1_amd64.deb
  to pool/main/o/openssl/openssl_0.9.8e-1_amd64.deb
openssl_0.9.8e.orig.tar.gz
  to pool/main/o/openssl/openssl_0.9.8e.orig.tar.gz


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



Accepted qemu-launcher 1.8.0~pre0-1 (source all)

2007-02-25 Thread Linas Žvirblis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 24 Feb 2007 12:43:25 +0200
Source: qemu-launcher
Binary: qemu-launcher
Architecture: source all
Version: 1.8.0~pre0-1
Distribution: experimental
Urgency: low
Maintainer: Linas Žvirblis [EMAIL PROTECTED]
Changed-By: Linas Žvirblis [EMAIL PROTECTED]
Description: 
 qemu-launcher - GTK+ front-end to QEMU computer emulator
Changes: 
 qemu-launcher (1.8.0~pre0-1) experimental; urgency=low
 .
   * New upstream prerelease.
   * debian/README.Debian:
 - removed obsolete information;
 - added information on how one can use custom icons;
   * debian/control:
 - dropped suggests for 'qemuctl', it is not supported anymore;
 - suggest 'kvm' (kernel-based virtual machine) package;
Files: 
 424b3d3e239e4c5c623645ebe9e91725 622 otherosfs optional 
qemu-launcher_1.8.0~pre0-1.dsc
 cdcf2d3ac4d6f954d00451adee4da3d8 60413 otherosfs optional 
qemu-launcher_1.8.0~pre0.orig.tar.gz
 aec7241be348655cc2a69a9d660e6047 2779 otherosfs optional 
qemu-launcher_1.8.0~pre0-1.diff.gz
 7f4da976946986a937eb731c37f89e20 55138 otherosfs optional 
qemu-launcher_1.8.0~pre0-1_all.deb

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

iD8DBQFF4du+Bxd04ADYzRYRAoAdAJ9qbfgy0vvBoAS+XghWvQFR8PRq6ACdH7Qg
ccnVr2blRUZS4GtLml9eGsk=
=MFBX
-END PGP SIGNATURE-


Accepted:
qemu-launcher_1.8.0~pre0-1.diff.gz
  to pool/main/q/qemu-launcher/qemu-launcher_1.8.0~pre0-1.diff.gz
qemu-launcher_1.8.0~pre0-1.dsc
  to pool/main/q/qemu-launcher/qemu-launcher_1.8.0~pre0-1.dsc
qemu-launcher_1.8.0~pre0-1_all.deb
  to pool/main/q/qemu-launcher/qemu-launcher_1.8.0~pre0-1_all.deb
qemu-launcher_1.8.0~pre0.orig.tar.gz
  to pool/main/q/qemu-launcher/qemu-launcher_1.8.0~pre0.orig.tar.gz


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



Accepted whereami 0.3.31 (source all)

2007-02-25 Thread Andrew McMillan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 26 Feb 2007 07:52:34 +1300
Source: whereami
Binary: whereami
Architecture: source all
Version: 0.3.31
Distribution: unstable
Urgency: low
Maintainer: Andrew McMillan [EMAIL PROTECTED]
Changed-By: Andrew McMillan [EMAIL PROTECTED]
Description: 
 whereami   - Automatically reconfigure your (laptop) system for a new location
Closes: 402186 403443 405306 405307
Changes: 
 whereami (0.3.31) unstable; urgency=low
 .
   * Remove /usr/share/doc/whereami/examples which was empty (closes: #405306)
   * Spanish translation (closes: #403443)
   * Catalan translation (closes: #405307)
   * Fix typo in PATH setting (closes: #402186)
   * Correct use of /bin/sh to /bin/bash in a couple of test scripts
Files: 
 88db4811cb8f0ea5db81fed4258c3ca3 527 net extra whereami_0.3.31.dsc
 d2267f81d7f483e71deeb1b958463842 76729 net extra whereami_0.3.31.tar.gz
 2ca234f7f9389fba52a7518c727e1162 63350 net extra whereami_0.3.31_all.deb

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

iD8DBQFF4dwGjJA0f48GgBIRApQJAKChXxc2+IpJDmHQPGEbL+Ulr+q8WgCggvHM
rUtceG4w0nAJguwvEXadb0M=
=zWQ6
-END PGP SIGNATURE-


Accepted:
whereami_0.3.31.dsc
  to pool/main/w/whereami/whereami_0.3.31.dsc
whereami_0.3.31.tar.gz
  to pool/main/w/whereami/whereami_0.3.31.tar.gz
whereami_0.3.31_all.deb
  to pool/main/w/whereami/whereami_0.3.31_all.deb


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



Accepted bind9 1:9.4.0-1 (source all i386)

2007-02-25 Thread LaMont Jones
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 11:44:11 -0700
Source: bind9
Binary: lwresd bind9-doc dnsutils libisccc30 bind9 libisccfg30 libbind-dev 
bind9-host libbind9-30 libdns32 liblwres30 libisc32
Architecture: all i386 source 
Version: 1:9.4.0-1
Distribution: experimental
Urgency: low
Maintainer: LaMont Jones [EMAIL PROTECTED]
Changed-By: LaMont Jones [EMAIL PROTECTED]
Description: 
 bind9  - Internet Domain Name Server
 bind9-doc  - Documentation for BIND
 bind9-host - Version of 'host' bundled with BIND 9.X
 dnsutils   - Clients provided with BIND
 libbind-dev - Static Libraries and Headers used by BIND
 libbind9-30 - BIND9 Shared Library used by BIND
 libdns32   - DNS Shared Library used by BIND
 libisc32   - ISC Shared Library used by BIND
 libisccc30 - Command Channel Library used by BIND
 libisccfg30 - Config File Handling Library used by BIND
 liblwres30 - Lightweight Resolver Library used by BIND
 lwresd - Lightweight Resolver Daemon
Closes: 406409
Changes: 
 bind9 (1:9.4.0-1) experimental; urgency=low
 .
   * New upstream version
   * more mipsel patch.  Closes: #406409
Files: 
 24664b78f35445a664ce0ddc4e466598 232794 doc optional bind9-doc_9.4.0-1_all.deb
 27277cfb61394e2dd331a13e0c49b6fa 285139 net optional bind9_9.4.0-1.diff.gz
 2eaa49db6cec48b6213faf040d19db8e 114304 libs optional 
libisccfg30_9.4.0-1_i386.deb
 40ad20fd731276fcb09f22c959f1af78 115334 libs standard 
liblwres30_9.4.0-1_i386.deb
 417ca5689e84f688f4a3d422ff5d966e 4871032 net optional bind9_9.4.0.orig.tar.gz
 56889d37f8cc4bd4320e08eb56d653c3 119806 net standard 
bind9-host_9.4.0-1_i386.deb
 5e000f3e15591d521806916abdbe1965 1090698 libdevel optional 
libbind-dev_9.4.0-1_i386.deb
 6ce3232ed4666d46fd4c8ef1aab21aea 191180 net standard dnsutils_9.4.0-1_i386.deb
 88a51ef3aab9f91233d44855bf75668a 185700 libs standard libisc32_9.4.0-1_i386.deb
 967287479059a9e5bd36e2428a79f10d 99628 libs optional 
libisccc30_9.4.0-1_i386.deb
 a71daec0d866e77cd70202da63f197fa 325194 net optional bind9_9.4.0-1_i386.deb
 b4fb8130cc48db3e5944a8764457877d 102914 libs standard 
libbind9-30_9.4.0-1_i386.deb
 cae0271d4d8b1cf0bd0643f7c55384f9 521396 libs standard libdns32_9.4.0-1_i386.deb
 2f869d8849bf44d0e422e5e78d918731 747 net optional bind9_9.4.0-1.dsc
 e5a292a3f47c57dc0b53b858ab122de3 222652 net optional lwresd_9.4.0-1_i386.deb

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

iD8DBQFF4d7azN/kmwoKyScRAlXKAKCOyoy/UVUr1Cw87WrklcI0rgvWzwCdEHCp
wKLBGrZu54M9hOqS07LkPQI=
=jWqB
-END PGP SIGNATURE-


Accepted:
bind9-doc_9.4.0-1_all.deb
  to pool/main/b/bind9/bind9-doc_9.4.0-1_all.deb
bind9-host_9.4.0-1_i386.deb
  to pool/main/b/bind9/bind9-host_9.4.0-1_i386.deb
bind9_9.4.0-1.diff.gz
  to pool/main/b/bind9/bind9_9.4.0-1.diff.gz
bind9_9.4.0-1.dsc
  to pool/main/b/bind9/bind9_9.4.0-1.dsc
bind9_9.4.0-1_i386.deb
  to pool/main/b/bind9/bind9_9.4.0-1_i386.deb
bind9_9.4.0.orig.tar.gz
  to pool/main/b/bind9/bind9_9.4.0.orig.tar.gz
dnsutils_9.4.0-1_i386.deb
  to pool/main/b/bind9/dnsutils_9.4.0-1_i386.deb
libbind-dev_9.4.0-1_i386.deb
  to pool/main/b/bind9/libbind-dev_9.4.0-1_i386.deb
libbind9-30_9.4.0-1_i386.deb
  to pool/main/b/bind9/libbind9-30_9.4.0-1_i386.deb
libdns32_9.4.0-1_i386.deb
  to pool/main/b/bind9/libdns32_9.4.0-1_i386.deb
libisc32_9.4.0-1_i386.deb
  to pool/main/b/bind9/libisc32_9.4.0-1_i386.deb
libisccc30_9.4.0-1_i386.deb
  to pool/main/b/bind9/libisccc30_9.4.0-1_i386.deb
libisccfg30_9.4.0-1_i386.deb
  to pool/main/b/bind9/libisccfg30_9.4.0-1_i386.deb
liblwres30_9.4.0-1_i386.deb
  to pool/main/b/bind9/liblwres30_9.4.0-1_i386.deb
lwresd_9.4.0-1_i386.deb
  to pool/main/b/bind9/lwresd_9.4.0-1_i386.deb


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



Accepted mailscanner 4.58.9-2 (source all)

2007-02-25 Thread Simon Walter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 20:18:12 +0100
Source: mailscanner
Binary: mailscanner
Architecture: source all
Version: 4.58.9-2
Distribution: unstable
Urgency: low
Maintainer: Simon Walter [EMAIL PROTECTED]
Changed-By: Simon Walter [EMAIL PROTECTED]
Description: 
 mailscanner - email virus scanner and spam tagger
Changes: 
 mailscanner (4.58.9-2) unstable; urgency=low
 .
   * Exim.pm: Fix serious problem with patch for #346212, MailScanner couldn't 
read any address
Files: 
 462370d270ed625e33bce63e8cbbafec 653 mail optional mailscanner_4.58.9-2.dsc
 4575edfea2ece98c7e78ea0120652755 44793 mail optional 
mailscanner_4.58.9-2.diff.gz
 a26e8d4c30780d9837cf001dbc5b61ba 560444 mail optional 
mailscanner_4.58.9-2_all.deb

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

iD8DBQFF4ejz+C5cwEsrK54RAtNxAKC27yzZHxKAriS/ja48UzsmwlHW9gCePOMa
4l5e+W8Lry0TdJ8UXX/BmfM=
=hN45
-END PGP SIGNATURE-


Accepted:
mailscanner_4.58.9-2.diff.gz
  to pool/main/m/mailscanner/mailscanner_4.58.9-2.diff.gz
mailscanner_4.58.9-2.dsc
  to pool/main/m/mailscanner/mailscanner_4.58.9-2.dsc
mailscanner_4.58.9-2_all.deb
  to pool/main/m/mailscanner/mailscanner_4.58.9-2_all.deb


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



Accepted nfs-utils 1:1.0.11-1 (source i386)

2007-02-25 Thread Steinar H. Gunderson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 16:36:50 +0100
Source: nfs-utils
Binary: nfs-kernel-server nfs-common
Architecture: source i386
Version: 1:1.0.11-1
Distribution: unstable
Urgency: low
Maintainer: Anibal Monsalve Salazar [EMAIL PROTECTED]
Changed-By: Steinar H. Gunderson [EMAIL PROTECTED]
Description: 
 nfs-common - NFS support files common to client and server
 nfs-kernel-server - support for NFS kernel server
Changes: 
 nfs-utils (1:1.0.11-1) unstable; urgency=low
 .
   * New upstream release; minimal changes from the last git snapshot.
   * Update the long and short description for nfs-kernel-server to be a little
 more descriptive.
   * Add rpcbind as an alternative to portmap.
Files: 
 cd7d901416433d740ee014bc8757c9da 867 net standard nfs-utils_1.0.11-1.dsc
 2f6cbd29a6280ae5e4b6340bc21f1872 777978 net standard 
nfs-utils_1.0.11.orig.tar.gz
 4fa4ecd89b808fb58d6f600c363ebf87 27217 net standard nfs-utils_1.0.11-1.diff.gz
 f00b5f0a0c13470dd9185457fafa6d83 143100 net optional 
nfs-kernel-server_1.0.11-1_i386.deb
 ed4952db125b584a9baec37b3ef42697 131310 net standard 
nfs-common_1.0.11-1_i386.deb

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

iD8DBQFF4fAXXKRQ3lK3SH4RArcOAKCAHhPDlTdBVecEkTHKtey31PInXgCfSpzD
t7/kYFOH6bSlKniodyTHYRc=
=Q3vz
-END PGP SIGNATURE-


Accepted:
nfs-common_1.0.11-1_i386.deb
  to pool/main/n/nfs-utils/nfs-common_1.0.11-1_i386.deb
nfs-kernel-server_1.0.11-1_i386.deb
  to pool/main/n/nfs-utils/nfs-kernel-server_1.0.11-1_i386.deb
nfs-utils_1.0.11-1.diff.gz
  to pool/main/n/nfs-utils/nfs-utils_1.0.11-1.diff.gz
nfs-utils_1.0.11-1.dsc
  to pool/main/n/nfs-utils/nfs-utils_1.0.11-1.dsc
nfs-utils_1.0.11.orig.tar.gz
  to pool/main/n/nfs-utils/nfs-utils_1.0.11.orig.tar.gz


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



Accepted filezilla 3.0.0~beta2-4 (source i386 all)

2007-02-25 Thread Le_Vert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 18:56:08 +0100
Source: filezilla
Binary: filezilla-locales filezilla-common filezilla
Architecture: source i386 all
Version: 3.0.0~beta2-4
Distribution: unstable
Urgency: low
Maintainer: Adam Cécile (Le_Vert) [EMAIL PROTECTED]
Changed-By: Adam Cécile (Le_Vert) [EMAIL PROTECTED]
Description: 
 filezilla  - Port of the famous Win32 graphical FTP client
 filezilla-common - Architecture independent files for filezilla
 filezilla-locales - Translations of filezilla
Changes: 
 filezilla (3.0.0~beta2-4) unstable; urgency=low
 .
   * Patch to avoid filezilla crash when ~/.filezilla doesn't exist, thanks to
 Adrien Cunin.
Files: 
 3bb60cb0d6d382b640b6d0b4bdd2377f 744 net optional filezilla_3.0.0~beta2-4.dsc
 2ffc4096ec47cbeb3d91ebcd5d47f647 33754 net optional 
filezilla_3.0.0~beta2-4.diff.gz
 61cc8fc1c081bb2fc6c0dcd7ad1f729d 693348 net optional 
filezilla_3.0.0~beta2-4_i386.deb
 ff12770d18a333c14685eb3352075d01 36950 net optional 
filezilla-common_3.0.0~beta2-4_all.deb
 b512490ccdbb7c9458b3fbf7dc94e396 628930 net optional 
filezilla-locales_3.0.0~beta2-4_all.deb

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

iD8DBQFF4eud+C5cwEsrK54RArB4AJsHirldHmkjlZChFClFSh+rVNshpACff21j
aNYVr+Y9ZVa8Ff/E1PdQ5NU=
=eXY7
-END PGP SIGNATURE-


Accepted:
filezilla-common_3.0.0~beta2-4_all.deb
  to pool/main/f/filezilla/filezilla-common_3.0.0~beta2-4_all.deb
filezilla-locales_3.0.0~beta2-4_all.deb
  to pool/main/f/filezilla/filezilla-locales_3.0.0~beta2-4_all.deb
filezilla_3.0.0~beta2-4.diff.gz
  to pool/main/f/filezilla/filezilla_3.0.0~beta2-4.diff.gz
filezilla_3.0.0~beta2-4.dsc
  to pool/main/f/filezilla/filezilla_3.0.0~beta2-4.dsc
filezilla_3.0.0~beta2-4_i386.deb
  to pool/main/f/filezilla/filezilla_3.0.0~beta2-4_i386.deb


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



Accepted openssl 0.9.8e-2 (source amd64)

2007-02-25 Thread Kurt Roeckx
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 19:19:19 +
Source: openssl
Binary: libssl-dev openssl libssl0.9.8-dbg libcrypto0.9.8-udeb libssl0.9.8
Architecture: source amd64
Version: 0.9.8e-2
Distribution: unstable
Urgency: low
Maintainer: Debian OpenSSL Team [EMAIL PROTECTED]
Changed-By: Kurt Roeckx [EMAIL PROTECTED]
Description: 
 libcrypto0.9.8-udeb - crypto shared library - udeb (udeb)
 libssl-dev - SSL development libraries, header files and documentation
 libssl0.9.8 - SSL shared libraries
 libssl0.9.8-dbg - Symbol tables for libssl and libcrypt
 openssl- Secure Socket Layer (SSL) binary and related cryptographic tools
Changes: 
 openssl (0.9.8e-2) unstable; urgency=low
 .
   * Undo include changes that change defines into real functions,
 but keep the new functions in the library.
Files: 
 337d2ad76c9b59ff4c54f937331d7df4 797 utils optional openssl_0.9.8e-2.dsc
 01ad0d4180089dfd2c82d029681d1796 44290 utils optional openssl_0.9.8e-2.diff.gz
 534e8a525192d0a313bc286e11910db0 1008322 utils optional 
openssl_0.9.8e-2_amd64.deb
 4f6dda5e158f20625855c2748b406bde 896036 libs important 
libssl0.9.8_0.9.8e-2_amd64.deb
 f1f99902de3eeb1bee486bb70ba9d2d1 582072 debian-installer optional 
libcrypto0.9.8-udeb_0.9.8e-2_amd64.udeb
 a28fa39d94ed5f9031a6589dc59cfe8a 2187236 libdevel optional 
libssl-dev_0.9.8e-2_amd64.deb
 c61b71864006dc467da6fbe5fe9e26f1 1658538 libdevel extra 
libssl0.9.8-dbg_0.9.8e-2_amd64.deb
Package-Type: udeb

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

iD8DBQFF4esqQdwckHJElwsRArQnAKDNAZzpRJDLR75o8EOiYoRSkIVeTACgyHEb
J32Ers42tRLa5bPb6b5Sls8=
=hgrD
-END PGP SIGNATURE-


Accepted:
libcrypto0.9.8-udeb_0.9.8e-2_amd64.udeb
  to pool/main/o/openssl/libcrypto0.9.8-udeb_0.9.8e-2_amd64.udeb
libssl-dev_0.9.8e-2_amd64.deb
  to pool/main/o/openssl/libssl-dev_0.9.8e-2_amd64.deb
libssl0.9.8-dbg_0.9.8e-2_amd64.deb
  to pool/main/o/openssl/libssl0.9.8-dbg_0.9.8e-2_amd64.deb
libssl0.9.8_0.9.8e-2_amd64.deb
  to pool/main/o/openssl/libssl0.9.8_0.9.8e-2_amd64.deb
openssl_0.9.8e-2.diff.gz
  to pool/main/o/openssl/openssl_0.9.8e-2.diff.gz
openssl_0.9.8e-2.dsc
  to pool/main/o/openssl/openssl_0.9.8e-2.dsc
openssl_0.9.8e-2_amd64.deb
  to pool/main/o/openssl/openssl_0.9.8e-2_amd64.deb


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



Accepted tcp-wrappers 7.6.dbs-13 (source i386)

2007-02-25 Thread Marco d'Itri
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 21:05:12 +0100
Source: tcp-wrappers
Binary: libwrap0 tcpd libwrap0-dev
Architecture: source i386
Version: 7.6.dbs-13
Distribution: unstable
Urgency: medium
Maintainer: Marco d'Itri [EMAIL PROTECTED]
Changed-By: Marco d'Itri [EMAIL PROTECTED]
Description: 
 libwrap0   - Wietse Venema's TCP wrappers library
 libwrap0-dev - Wietse Venema's TCP wrappers library, development files
 tcpd   - Wietse Venema's TCP wrapper utilities
Closes: 412329
Changes: 
 tcp-wrappers (7.6.dbs-13) unstable; urgency=medium
 .
   * New debconf translation: nb. (Closes: #412329)
Files: 
 9271c6dda2fa773aafdf8a6f7d7a9bb4 608 net important tcp-wrappers_7.6.dbs-13.dsc
 975284984822a81de71bb07652ee3864 54999 net important 
tcp-wrappers_7.6.dbs-13.diff.gz
 082db83a7057b61bdbb6afd3eae13fb4 78528 net important tcpd_7.6.dbs-13_i386.deb
 4ea426176c3bca2b830b62f2a7c6e636 28756 libs important 
libwrap0_7.6.dbs-13_i386.deb
 edf118b2363c95e0db8ae85ba6cdbefb 34422 libdevel optional 
libwrap0-dev_7.6.dbs-13_i386.deb

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

iD8DBQFF4ewyFGfw2OHuP7ERAnutAKCfYLSfhfJDuj9/dDd7P6A9iSW6/gCgikaT
fuOf/SA9U07QCaFRMbt0RAI=
=vUin
-END PGP SIGNATURE-


Accepted:
libwrap0-dev_7.6.dbs-13_i386.deb
  to pool/main/t/tcp-wrappers/libwrap0-dev_7.6.dbs-13_i386.deb
libwrap0_7.6.dbs-13_i386.deb
  to pool/main/t/tcp-wrappers/libwrap0_7.6.dbs-13_i386.deb
tcp-wrappers_7.6.dbs-13.diff.gz
  to pool/main/t/tcp-wrappers/tcp-wrappers_7.6.dbs-13.diff.gz
tcp-wrappers_7.6.dbs-13.dsc
  to pool/main/t/tcp-wrappers/tcp-wrappers_7.6.dbs-13.dsc
tcpd_7.6.dbs-13_i386.deb
  to pool/main/t/tcp-wrappers/tcpd_7.6.dbs-13_i386.deb


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



Accepted ucf 2.0020 (source all)

2007-02-25 Thread Manoj Srivastava
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 13:27:36 -0600
Source: ucf
Binary: ucf
Architecture: source all
Version: 2.0020
Distribution: unstable
Urgency: low
Maintainer: Manoj Srivastava [EMAIL PROTECTED]
Changed-By: Manoj Srivastava [EMAIL PROTECTED]
Description: 
 ucf- Update Configuration File: preserves user changes to config files
Closes: 407963
Changes: 
 ucf (2.0020) unstable; urgency=low
 .
   * Bug fix: Syntax error in /usr/bin/ucfr, thanks to Emmanuel Bouthenot
 Aaargh. Reincorporate change from the NMU. I thought I had done this,
 but I apparently did not.(Closes: #407963).
Files: 
 b659360701d0f4351861cadf9bb319ea 492 utils optional ucf_2.0020.dsc
 7d92198af26c2cdc136d4d1369f10eda 74223 utils optional ucf_2.0020.tar.gz
 73b9555de9dbf4ff7e1fff2ef148cbb8 57720 utils optional ucf_2.0020_all.deb

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

iD8DBQFF4eapIbrau78kQkwRAuDwAJ0XM8wGTTqUHh2aEelauVfpCUPaHgCg4jcL
VeFnUk5nuhpJshF6r/hMEjY=
=WbJc
-END PGP SIGNATURE-


Accepted:
ucf_2.0020.dsc
  to pool/main/u/ucf/ucf_2.0020.dsc
ucf_2.0020.tar.gz
  to pool/main/u/ucf/ucf_2.0020.tar.gz
ucf_2.0020_all.deb
  to pool/main/u/ucf/ucf_2.0020_all.deb


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



Accepted openbsd-inetd 0.20050402-5 (source i386)

2007-02-25 Thread Marco d'Itri
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 21:28:18 +0100
Source: openbsd-inetd
Binary: openbsd-inetd
Architecture: source i386
Version: 0.20050402-5
Distribution: unstable
Urgency: medium
Maintainer: Marco d'Itri [EMAIL PROTECTED]
Changed-By: Marco d'Itri [EMAIL PROTECTED]
Description: 
 openbsd-inetd - The OpenBSD Internet Superserver
Changes: 
 openbsd-inetd (0.20050402-5) unstable; urgency=medium
 .
   * Try again to fix #386469, this time by removing from the init script
 stop target the --exec argument to start-stop-daemon, which is known
 to be broken and generally a bad idea.
Files: 
 1350a497a305a5b4bd4b88eb901bd25f 607 net standard 
openbsd-inetd_0.20050402-5.dsc
 f60c8eadfb41875cf7308d127f689ec2 13619 net standard 
openbsd-inetd_0.20050402-5.diff.gz
 5d958d7beb991497080fa7152e9365ae 34646 net standard 
openbsd-inetd_0.20050402-5_i386.deb

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

iD8DBQFF4fIAFGfw2OHuP7ERApl3AJoD42j89i20uQq+UeAuAhoPVqb8KACbB0ku
WWznuMgpjbv4xWJpQ3oZfwE=
=qIy+
-END PGP SIGNATURE-


Accepted:
openbsd-inetd_0.20050402-5.diff.gz
  to pool/main/o/openbsd-inetd/openbsd-inetd_0.20050402-5.diff.gz
openbsd-inetd_0.20050402-5.dsc
  to pool/main/o/openbsd-inetd/openbsd-inetd_0.20050402-5.dsc
openbsd-inetd_0.20050402-5_i386.deb
  to pool/main/o/openbsd-inetd/openbsd-inetd_0.20050402-5_i386.deb


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



Accepted stalin 0.11-3 (source i386)

2007-02-25 Thread Rob Browning
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 13:46:35 -0800
Source: stalin
Binary: stalin
Architecture: source i386
Version: 0.11-3
Distribution: unstable
Urgency: low
Maintainer: Rob Browning [EMAIL PROTECTED]
Changed-By: Rob Browning [EMAIL PROTECTED]
Description: 
 stalin - An extremely aggressive Scheme compiler
Closes: 404734 410810
Changes: 
 stalin (0.11-3) unstable; urgency=low
 .
   * Turn off optimization on amd64 in order to be able to build within 2GB
 (hopefully).  (closes: #404734)
 .
   * Fix support for GNU/kFreeBSD.  Thanks to Petr Salinger.
 (closes: #410810)
Files: 
 187c7c5c4f0255747fe6bf95f14db19e 684 devel optional stalin_0.11-3.dsc
 b52581084aab51c0e5711ae260ce04ad 11610626 devel optional stalin_0.11-3.diff.gz
 7cdfb915efdd11fa04daa2f8aebadb1e 2285394 devel optional stalin_0.11-3_i386.deb

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

iD8DBQFF4gjHJcjTd4x+c6QRAu30AKD3Qu1vZAinYV+s+vrKyzYbWMzY3QCdFNR9
alFtBx6ZbL9vw4fz8vzUdkw=
=t3q7
-END PGP SIGNATURE-


Accepted:
stalin_0.11-3.diff.gz
  to pool/main/s/stalin/stalin_0.11-3.diff.gz
stalin_0.11-3.dsc
  to pool/main/s/stalin/stalin_0.11-3.dsc
stalin_0.11-3_i386.deb
  to pool/main/s/stalin/stalin_0.11-3_i386.deb


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



Accepted zsh-beta 4.3.2-dev-1+20070225-1 (source all)

2007-02-25 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 16:45:10 -0500
Source: zsh-beta
Binary: zsh-beta-static zsh-beta-doc zsh-beta
Architecture: source all
Version: 4.3.2-dev-1+20070225-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.2-dev-1+20070225-1) unstable; urgency=low
 .
   * Update to HEAD.
Files: 
 2cbf1740654d34204b858c6d70aec13c 788 shells optional 
zsh-beta_4.3.2-dev-1+20070225-1.dsc
 1e02375a6cb810a67f292b1dd765ca06 2701038 shells optional 
zsh-beta_4.3.2-dev-1+20070225.orig.tar.gz
 f3f3023777e49da8d9700dd21b8f3fa0 380276 shells optional 
zsh-beta_4.3.2-dev-1+20070225-1.diff.gz
 d15b75c519dfb77a89fed49d71ee387b 756368 doc optional 
zsh-beta-doc_4.3.2-dev-1+20070225-1_all.deb

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

iD8DBQFF4gui5m0u66uWM3ARAuIAAJ9HIaLn8z6wKA6JZogrHkUVCsDmPwCgiiXB
fwGrG+/quFQ6xCeL5bSyfes=
=yFvi
-END PGP SIGNATURE-


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


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



Accepted nvidia-graphics-modules-i386 1.0.8776+6 (source i386)

2007-02-25 Thread Randall Donald
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 24 Feb 2007 15:51:54 -0800
Source: nvidia-graphics-modules-i386
Binary: nvidia-kernel-2.6-486 nvidia-kernel-2.6.18-4-k7 nvidia-kernel-2.6-k7 
nvidia-kernel-2.6-686 nvidia-kernel-2.6.18-4-686 nvidia-kernel-2.6.18-4-486
Architecture: source i386
Version: 1.0.8776+6
Distribution: unstable
Urgency: low
Maintainer: Randall Donald [EMAIL PROTECTED]
Changed-By: Randall Donald [EMAIL PROTECTED]
Description: 
 nvidia-kernel-2.6-486 - NVIDIA binary kernel module for 2.6 series compiled 
for 486
 nvidia-kernel-2.6-686 - NVIDIA binary kernel module for 2.6 series compiled 
for 686
 nvidia-kernel-2.6-k7 - NVIDIA binary kernel module for 2.6 series compiled for 
k7
 nvidia-kernel-2.6.18-4-486 - NVIDIA binary kernel module
 nvidia-kernel-2.6.18-4-686 - NVIDIA binary kernel module
 nvidia-kernel-2.6.18-4-k7 - NVIDIA binary kernel module
Changes: 
 nvidia-graphics-modules-i386 (1.0.8776+6) unstable; urgency=low
 .
   * build 2.6.18-4
Files: 
 f4d01005ad8adf8ff4153f637810 841 non-free/x11 optional 
nvidia-graphics-modules-i386_1.0.8776+6.dsc
 527280d05dae21cc7a1d4c203baf8c6a 8477 non-free/x11 optional 
nvidia-graphics-modules-i386_1.0.8776+6.tar.gz
 ddd76eff1e49f5719184e7983569759f 5502 non-free/x11 optional 
nvidia-kernel-2.6-486_1.0.8776+6_i386.deb
 d5b1f0e2dc7e1f43c0a07ddbed31ec38 5502 non-free/x11 optional 
nvidia-kernel-2.6-686_1.0.8776+6_i386.deb
 631bc4531ec287bdaeb5a33c5b967226 5502 non-free/x11 optional 
nvidia-kernel-2.6-k7_1.0.8776+6_i386.deb
 d188b33cff8031e6b0df3ab8345844d8 1614252 non-free/x11 optional 
nvidia-kernel-2.6.18-4-486_1.0.8776+6_i386.deb
 aa80b52253012881e20f49ed57502fee 1616062 non-free/x11 optional 
nvidia-kernel-2.6.18-4-686_1.0.8776+6_i386.deb
 8d16f5cd96bbb503c26d7564daea6dfc 1616356 non-free/x11 optional 
nvidia-kernel-2.6.18-4-k7_1.0.8776+6_i386.deb
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFF4NP8U+6HYGwn3qsRAs9jAKCX9WxyI5SNGo2yDMu62pRGRIa+ZQCfT7Mg
C3oDT2VZoC4uJaIWys085jY=
=Kmt/
-END PGP SIGNATURE-


Accepted:
nvidia-graphics-modules-i386_1.0.8776+6.dsc
  to 
pool/non-free/n/nvidia-graphics-modules-i386/nvidia-graphics-modules-i386_1.0.8776+6.dsc
nvidia-graphics-modules-i386_1.0.8776+6.tar.gz
  to 
pool/non-free/n/nvidia-graphics-modules-i386/nvidia-graphics-modules-i386_1.0.8776+6.tar.gz
nvidia-kernel-2.6-486_1.0.8776+6_i386.deb
  to 
pool/non-free/n/nvidia-graphics-modules-i386/nvidia-kernel-2.6-486_1.0.8776+6_i386.deb
nvidia-kernel-2.6-686_1.0.8776+6_i386.deb
  to 
pool/non-free/n/nvidia-graphics-modules-i386/nvidia-kernel-2.6-686_1.0.8776+6_i386.deb
nvidia-kernel-2.6-k7_1.0.8776+6_i386.deb
  to 
pool/non-free/n/nvidia-graphics-modules-i386/nvidia-kernel-2.6-k7_1.0.8776+6_i386.deb
nvidia-kernel-2.6.18-4-486_1.0.8776+6_i386.deb
  to 
pool/non-free/n/nvidia-graphics-modules-i386/nvidia-kernel-2.6.18-4-486_1.0.8776+6_i386.deb
nvidia-kernel-2.6.18-4-686_1.0.8776+6_i386.deb
  to 
pool/non-free/n/nvidia-graphics-modules-i386/nvidia-kernel-2.6.18-4-686_1.0.8776+6_i386.deb
nvidia-kernel-2.6.18-4-k7_1.0.8776+6_i386.deb
  to 
pool/non-free/n/nvidia-graphics-modules-i386/nvidia-kernel-2.6.18-4-k7_1.0.8776+6_i386.deb


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



Accepted nvidia-graphics-modules-amd64 1.0.8776+6 (source amd64)

2007-02-25 Thread Randall Donald
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 24 Feb 2007 16:20:42 -0800
Source: nvidia-graphics-modules-amd64
Binary: nvidia-kernel-2.6.18-4-amd64 nvidia-kernel-2.6-amd64
Architecture: source amd64
Version: 1.0.8776+6
Distribution: unstable
Urgency: low
Maintainer: Randall Donald [EMAIL PROTECTED]
Changed-By: Randall Donald [EMAIL PROTECTED]
Description: 
 nvidia-kernel-2.6-amd64 - NVIDIA binary kernel module for 2.6 series compiled 
for amd64
 nvidia-kernel-2.6.18-4-amd64 - NVIDIA binary kernel module
Changes: 
 nvidia-graphics-modules-amd64 (1.0.8776+6) unstable; urgency=low
 .
   * build 2.6.18-4
Files: 
 463426980e4a058e3792a0037f00f1bf 695 non-free/x11 optional 
nvidia-graphics-modules-amd64_1.0.8776+6.dsc
 3959f8be2a119c384ac7062507526253 8331 non-free/x11 optional 
nvidia-graphics-modules-amd64_1.0.8776+6.tar.gz
 745398760e0813e5d652939b3dce3c86 4712 non-free/x11 optional 
nvidia-kernel-2.6-amd64_1.0.8776+6_amd64.deb
 d7eb28f916fb1e9c302b687bbac741c1 1712938 non-free/x11 optional 
nvidia-kernel-2.6.18-4-amd64_1.0.8776+6_amd64.deb
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFF4NcNU+6HYGwn3qsRAg5wAJ0ZvHsW/9XS6g/hzHiw3d36uN7XTwCbBTfd
PAJiikb1Jkm7y55n1u57EWQ=
=s1hK
-END PGP SIGNATURE-


Accepted:
nvidia-graphics-modules-amd64_1.0.8776+6.dsc
  to 
pool/non-free/n/nvidia-graphics-modules-amd64/nvidia-graphics-modules-amd64_1.0.8776+6.dsc
nvidia-graphics-modules-amd64_1.0.8776+6.tar.gz
  to 
pool/non-free/n/nvidia-graphics-modules-amd64/nvidia-graphics-modules-amd64_1.0.8776+6.tar.gz
nvidia-kernel-2.6-amd64_1.0.8776+6_amd64.deb
  to 
pool/non-free/n/nvidia-graphics-modules-amd64/nvidia-kernel-2.6-amd64_1.0.8776+6_amd64.deb
nvidia-kernel-2.6.18-4-amd64_1.0.8776+6_amd64.deb
  to 
pool/non-free/n/nvidia-graphics-modules-amd64/nvidia-kernel-2.6.18-4-amd64_1.0.8776+6_amd64.deb


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



Accepted mail-expire 0.7 (source all)

2007-02-25 Thread Eduard Bloch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 23:56:23 +0100
Source: mail-expire
Binary: mail-expire
Architecture: source all
Version: 0.7
Distribution: unstable
Urgency: high
Maintainer: Eduard Bloch [EMAIL PROTECTED]
Changed-By: Eduard Bloch [EMAIL PROTECTED]
Description: 
 mail-expire - Utility to extract outdated messages from mbox files
Changes: 
 mail-expire (0.7) unstable; urgency=high
 .
   * Consider the alternative object identification to make sure
 Mail::Mbox::MessageParser::Perl is created correctly which changed with
 libmail-mbox-messageparser-perl (1.4005-2) or so
Files: 
 fc0c91bbf1c006ae1c2ca5ff2bfc138a 495 utils optional mail-expire_0.7.dsc
 2731545d30e3387c68be9ed3345357db 7224 utils optional mail-expire_0.7.tar.gz
 910c9342322d8f723d2bc4c1860cf2aa 6678 utils optional mail-expire_0.7_all.deb

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

iD8DBQFF4hVd4QZIHu3wCMURAgLuAJ0RgoO8EOR/QX2zQ8LfUxVkJOrJcgCfdlvK
hdWQFvu3dIYIlgl55Ky0ZqI=
=pHZr
-END PGP SIGNATURE-


Accepted:
mail-expire_0.7.dsc
  to pool/main/m/mail-expire/mail-expire_0.7.dsc
mail-expire_0.7.tar.gz
  to pool/main/m/mail-expire/mail-expire_0.7.tar.gz
mail-expire_0.7_all.deb
  to pool/main/m/mail-expire/mail-expire_0.7_all.deb


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



Accepted gxine 0.5.8-3 (source i386)

2007-02-25 Thread Darren Salt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 22:21:59 +
Source: gxine
Binary: gxineplugin gxine
Architecture: source i386
Version: 0.5.8-3
Distribution: unstable
Urgency: medium
Maintainer: Reinhard Tartler [EMAIL PROTECTED]
Changed-By: Darren Salt [EMAIL PROTECTED]
Description: 
 gxine  - the xine video player, GTK+/Gnome user interface
 gxineplugin - the xine video player, GTK+/Gnome; launcher plugin for Mozilla
Changes: 
 gxine (0.5.8-3) unstable; urgency=medium
 .
   * Various fixes, targetted for inclusion in etch.
 .
   * Patches backported from hg head:
 + Important:
   - Say something useful if the stream couldn't be opened or demux failed.
 Without this, you'll see Unknown error for demux failures and missing
 or inaccessible files.
   - Fix a hang should gxine try to report an error while starting up.
   - gdk_threads_leave() was called once too many if xine_open() failed.
   - Reinstate the GDK thread locking around the error display code (due to
 the error hang fix causing a different error hang).
   - Fix a bug in the HTTP handler (sscanf discarded string).
 Without this, gcc reports the following:
   http.c: In function ‘http_open’:
   http.c:502: warning: too many arguments for format
 and the string won't be written to the buffer.
 + Normal:
   - Fixes for when closing the about box. (SF bug 1576681)
 Needed to cope well with changes in GtkAboutDialog (GNOME bug 60).
   - Stop repeated errors in case of failure to open the logo image.
 This is not expected to be triggered with etch's libxine1.
 + Minor:
   - Delay signal attachment to avoid possible GTK warnings during startup.
   - Stop xscreensaver from blanking the screen while running in
 full-screen mode. (Ubuntu bug 64135)
   - Translation fixups for the xscreensaver patch.
 .
   * Define XSSCMD (xscreensaver-command) at build time, else build will fail
 due to the xscreensaver patch and the lack of a build-dep on xscreensaver.
Files: 
 56ee985427e2097aef98968437d1c612 807 graphics optional gxine_0.5.8-3.dsc
 86244bdef095ef1a4533a91434bc423b 15978 graphics optional gxine_0.5.8-3.diff.gz
 240b014882cc179aa51ddecd320abbad 461746 graphics optional 
gxine_0.5.8-3_i386.deb
 6609975f3603d32c8518d0e40d0d6d62 7076 graphics optional 
gxineplugin_0.5.8-3_i386.deb

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

iD8DBQFF4htemAg1RJRTSKQRApK2AJ0U7BA27fmoaYPEYXJupEskZGXU6wCeMy5z
v/LXCrQUBIaXd2gH/TxJ1hs=
=WBfc
-END PGP SIGNATURE-


Accepted:
gxine_0.5.8-3.diff.gz
  to pool/main/g/gxine/gxine_0.5.8-3.diff.gz
gxine_0.5.8-3.dsc
  to pool/main/g/gxine/gxine_0.5.8-3.dsc
gxine_0.5.8-3_i386.deb
  to pool/main/g/gxine/gxine_0.5.8-3_i386.deb
gxineplugin_0.5.8-3_i386.deb
  to pool/main/g/gxine/gxineplugin_0.5.8-3_i386.deb


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



Accepted gshare 0.94-1 (source all)

2007-02-25 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 23:46:50 +0100
Source: gshare
Binary: gshare
Architecture: source all
Version: 0.94-1
Distribution: experimental
Urgency: low
Maintainer: Sebastian Dröge [EMAIL PROTECTED]
Changed-By: Sebastian Dröge [EMAIL PROTECTED]
Description: 
 gshare - Easy user-level file sharing for GNOME
Closes: 407176
Changes: 
 gshare (0.94-1) experimental; urgency=low
 .
   * New upstream release:
 + Fixes crash on exit (Closes: #407176)
   * debian/control:
 + Update build dependencies
   * debian/patches/01_missing-file.patch:
 + Add missing AssemblyInfo.cs.in file
Files: 
 d9063992d4af96e4c58711687b6c978f 848 gnome optional gshare_0.94-1.dsc
 bfb05ba7502218e9d9cacc7916098a03 364814 gnome optional gshare_0.94.orig.tar.gz
 0f4ab13c214bf59e8c4a7fce36820dc8 2114 gnome optional gshare_0.94-1.diff.gz
 556203f922d75ef95321ee23a14c35b2 200172 gnome optional gshare_0.94-1_all.deb

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

iD8DBQFF4iCqBsBdh1vkHyERAjCqAJ9wpkAgwZTbEgnDHjNQNPqe32wb4ACfeaJp
phmrH6fwJYFwcvnzGSMJraQ=
=QQlv
-END PGP SIGNATURE-


Accepted:
gshare_0.94-1.diff.gz
  to pool/main/g/gshare/gshare_0.94-1.diff.gz
gshare_0.94-1.dsc
  to pool/main/g/gshare/gshare_0.94-1.dsc
gshare_0.94-1_all.deb
  to pool/main/g/gshare/gshare_0.94-1_all.deb
gshare_0.94.orig.tar.gz
  to pool/main/g/gshare/gshare_0.94.orig.tar.gz


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



Accepted gnome-themes-extras 0.9.0.deb0.1 (source all)

2007-02-25 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 26 Feb 2007 00:37:07 +0100
Source: gnome-themes-extras
Binary: gnome-themes-extras
Architecture: source all
Version: 0.9.0.deb0.1
Distribution: experimental
Urgency: low
Maintainer: Josselin Mouette [EMAIL PROTECTED]
Changed-By: Josselin Mouette [EMAIL PROTECTED]
Description: 
 gnome-themes-extras - various themes for the GNOME 2 desktop
Changes: 
 gnome-themes-extras (0.9.0.deb0.1) experimental; urgency=low
 .
   [ Loic Minier ]
   * Add a get-orig-source target to retrieve the upstream tarball.
 .
   [ Josselin Mouette ]
   * Fork the package from upstream.
   * Make it Debian-native.
   * Convert themes to use the freedesktop icon naming specification.
   * Integrate the SphereCrystal theme and kill the
 gtk2-engines-spherecrystal package.
Files: 
 31ce6a3357b2c202f41bb0a150fd3140 1382 gnome optional 
gnome-themes-extras_0.9.0.deb0.1.dsc
 898480f1742ff36f760f89555a3440db 5719153 gnome optional 
gnome-themes-extras_0.9.0.deb0.1.tar.gz
 abf4c354068ac0665c05bec3b3c8bb9c 5770294 gnome optional 
gnome-themes-extras_0.9.0.deb0.1_all.deb

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

iD8DBQFF4iCprSla4ddfhTMRAgKQAKDOlnq773BalZ9GeBmTHxwWqNdYDACZAems
zBImW96rl2crbdwOSoosMvI=
=1IT2
-END PGP SIGNATURE-


Accepted:
gnome-themes-extras_0.9.0.deb0.1.dsc
  to pool/main/g/gnome-themes-extras/gnome-themes-extras_0.9.0.deb0.1.dsc
gnome-themes-extras_0.9.0.deb0.1.tar.gz
  to pool/main/g/gnome-themes-extras/gnome-themes-extras_0.9.0.deb0.1.tar.gz
gnome-themes-extras_0.9.0.deb0.1_all.deb
  to pool/main/g/gnome-themes-extras/gnome-themes-extras_0.9.0.deb0.1_all.deb


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



Accepted ccd2iso 0.3-1 (source i386)

2007-02-25 Thread Asheesh Laroia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 15:35:13 -0500
Source: ccd2iso
Binary: ccd2iso
Architecture: source i386
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Asheesh Laroia [EMAIL PROTECTED]
Changed-By: Asheesh Laroia [EMAIL PROTECTED]
Description: 
 ccd2iso- Converter from CloneCD disc image format to standard ISO
Changes: 
 ccd2iso (0.3-1) unstable; urgency=low
 .
   * New upstream release
   * Updated man page to refer to ccd2iso version 0.3
Files: 
 fd3f8a6d6889b6cf835f569080876478 602 otherosfs optional ccd2iso_0.3-1.dsc
 a7df1c46cb710f2fc8ebd88c2e64ce65 158221 otherosfs optional 
ccd2iso_0.3.orig.tar.gz
 b183fd377d61f081e323eeefe6aae787 25468 otherosfs optional ccd2iso_0.3-1.diff.gz
 e5ca32ce1cd73a57842dcb4966294928 6860 otherosfs optional ccd2iso_0.3-1_i386.deb

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

iD8DBQFF4jOv+C5cwEsrK54RAmNBAKDJAkBofPn9kIKIaK+UL3MRQuzrZgCfcLLo
a5VI+hoSIZ43HwEM9/AP3bI=
=WvxJ
-END PGP SIGNATURE-


Accepted:
ccd2iso_0.3-1.diff.gz
  to pool/main/c/ccd2iso/ccd2iso_0.3-1.diff.gz
ccd2iso_0.3-1.dsc
  to pool/main/c/ccd2iso/ccd2iso_0.3-1.dsc
ccd2iso_0.3-1_i386.deb
  to pool/main/c/ccd2iso/ccd2iso_0.3-1_i386.deb
ccd2iso_0.3.orig.tar.gz
  to pool/main/c/ccd2iso/ccd2iso_0.3.orig.tar.gz


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



Accepted libinstrudeo 0.1.4-2 (source i386)

2007-02-25 Thread Luca Bedogni
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 24 Feb 2007 15:40:06 +0100
Source: libinstrudeo
Binary: libinstrudeo0 libinstrudeo-dev isdexport
Architecture: source i386
Version: 0.1.4-2
Distribution: unstable
Urgency: low
Maintainer: Luca Bedogni [EMAIL PROTECTED]
Changed-By: Luca Bedogni [EMAIL PROTECTED]
Description: 
 isdexport  - Export isd files to other formats
 libinstrudeo-dev - library that manage the recording of screen-sessions
 libinstrudeo0 - library that manage the recording of screen-sessions
Closes: 410540
Changes: 
 libinstrudeo (0.1.4-2) unstable; urgency=low
 .
   * Removed unnecessary build-dependency
   * Added a patch for building also on alpha (Closes: #410540)
Files: 
 5b8746d0ddabb88463bea9ce98313fe2 816 libs optional libinstrudeo_0.1.4-2.dsc
 017b71b1c10a35de0f9f3c48ffef8ab2 79340 libs optional 
libinstrudeo_0.1.4-2.diff.gz
 9385d8224553964cf98db54770942f60 288254 libs optional 
libinstrudeo0_0.1.4-2_i386.deb
 8dbdbcdc5cd57afd31b456099076a94b 381178 libdevel optional 
libinstrudeo-dev_0.1.4-2_i386.deb
 dca13cad9a5f4820e0323d416bdcdb50 8294 utils optional isdexport_0.1.4-2_i386.deb

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

iD8DBQFF4jUZ+C5cwEsrK54RArOmAKCuMS4IfyZ4xwIK1iFrDQkkcpSp+ACeJwVa
VaVQA6ikS/IdGuOvYjNCglw=
=bXVO
-END PGP SIGNATURE-


Accepted:
isdexport_0.1.4-2_i386.deb
  to pool/main/libi/libinstrudeo/isdexport_0.1.4-2_i386.deb
libinstrudeo-dev_0.1.4-2_i386.deb
  to pool/main/libi/libinstrudeo/libinstrudeo-dev_0.1.4-2_i386.deb
libinstrudeo0_0.1.4-2_i386.deb
  to pool/main/libi/libinstrudeo/libinstrudeo0_0.1.4-2_i386.deb
libinstrudeo_0.1.4-2.diff.gz
  to pool/main/libi/libinstrudeo/libinstrudeo_0.1.4-2.diff.gz
libinstrudeo_0.1.4-2.dsc
  to pool/main/libi/libinstrudeo/libinstrudeo_0.1.4-2.dsc


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



Accepted ipkungfu 0.6.1-3 (source i386)

2007-02-25 Thread Luis Uribe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 19:25:41 -0500
Source: ipkungfu
Binary: ipkungfu
Architecture: source i386
Version: 0.6.1-3
Distribution: unstable
Urgency: low
Maintainer: Luis Uribe [EMAIL PROTECTED]
Changed-By: Luis Uribe [EMAIL PROTECTED]
Description: 
 ipkungfu   - iptables-based Linux firewall
Changes: 
 ipkungfu (0.6.1-3) unstable; urgency=low
 .
   * debian/rules
 - The location of the config files was wrong
Files: 
 07a22b866e751ef86be962259944880d 612 net optional ipkungfu_0.6.1-3.dsc
 c916249ddb6f96bb1e86ec1a6d8b370c 5514 net optional ipkungfu_0.6.1-3.diff.gz
 9cf94218d5b62496c4e724af1b939acc 52704 net optional ipkungfu_0.6.1-3_i386.deb

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

iD8DBQFF4jzgQUuEI2/szeARApTDAJ9GD9jn3/Xacc46Fk4S0tD7GWYPlQCfXUsW
IDlweLNe87itijJWwaFr7vY=
=1l93
-END PGP SIGNATURE-


Accepted:
ipkungfu_0.6.1-3.diff.gz
  to pool/main/i/ipkungfu/ipkungfu_0.6.1-3.diff.gz
ipkungfu_0.6.1-3.dsc
  to pool/main/i/ipkungfu/ipkungfu_0.6.1-3.dsc
ipkungfu_0.6.1-3_i386.deb
  to pool/main/i/ipkungfu/ipkungfu_0.6.1-3_i386.deb


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



Accepted udev 0.105-2 (source i386)

2007-02-25 Thread Marco d'Itri
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 26 Feb 2007 01:35:50 +0100
Source: udev
Binary: libvolume-id-dev udev libvolume-id0 udev-udeb
Architecture: source i386
Version: 0.105-2
Distribution: unstable
Urgency: high
Maintainer: Marco d'Itri [EMAIL PROTECTED]
Changed-By: Marco d'Itri [EMAIL PROTECTED]
Description: 
 libvolume-id-dev - libvolume_id development headers
 libvolume-id0 - libvolume_id shared library
 udev   - /dev/ and hotplug management daemon
 udev-udeb  - /dev/ and hotplug management daemon (udeb)
Closes: 395962 405845 406843 406869 406948 407738 408750 409503 411394
Changes: 
 udev (0.105-2) unstable; urgency=high
 .
   * postinst: try again fixing #404476. (Closes: #409503)
   * hotplug.rules: do not check for the existence of $RULES_FILE in
 find_all_rules(). (Closes: #408750, #405845, #406948)
   * write_cd_rules: fixed unintended shell expansion in find_next_available().
 (Closes: #407738)
   * permissions.rules: use group tape for SCSI media changers.
 (Closes: #406843)
   * hotplug.rules: load ch for SCSI media changers. (Closes: #406869)
   * permissions.rules: ignore the removable flag for aacraid devices.
 (See #404927.)
   * Added to README.Debian a note about generation of persistent names
 rules. (Closes: #411394)
   * cd-aliases-generator.rules: by default create by-id rules for USB
 and Firewire devices which usually do not have a stable path.
 (Closes: #395962)
   * Backported the upstream changeset 7db33ac19c430c9a4c4af415e2febbd6b17aff2a
 which fixes access to attribute files containing a colon.
Files: 
 6bb89216ecef9db6ebf8da1d2bc361dd 635 admin important udev_0.105-2.dsc
 9d58389d5ef915c49681cae4fba3cd60 188150 admin important udev_0.105.orig.tar.gz
 7d9ae90f3fb8ce5f3d53c1b502f2 63594 admin important udev_0.105-2.diff.gz
 0126f0cc9a13cab79d6775ceb64e7730 262526 admin important udev_0.105-2_i386.deb
 6977ada26c604ca54947e7e6b03db23c 62280 libs important 
libvolume-id0_0.105-2_i386.deb
 7fea945ba25023ef078f94d80b575234 15592 libdevel optional 
libvolume-id-dev_0.105-2_i386.deb
 f59ce1ed1f92489f1441be6a992f147e 104792 debian-installer important 
udev-udeb_0.105-2_i386.udeb
Package-Type: udeb

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

iD8DBQFF4j1LFGfw2OHuP7ERAnUvAKCNZyNx+IKleglg1hAzd1/AUPbyXACfQ6Bb
1q6Ld3zEuSh2zARABaErKwE=
=E5iC
-END PGP SIGNATURE-


Accepted:
libvolume-id-dev_0.105-2_i386.deb
  to pool/main/u/udev/libvolume-id-dev_0.105-2_i386.deb
libvolume-id0_0.105-2_i386.deb
  to pool/main/u/udev/libvolume-id0_0.105-2_i386.deb
udev-udeb_0.105-2_i386.udeb
  to pool/main/u/udev/udev-udeb_0.105-2_i386.udeb
udev_0.105-2.diff.gz
  to pool/main/u/udev/udev_0.105-2.diff.gz
udev_0.105-2.dsc
  to pool/main/u/udev/udev_0.105-2.dsc
udev_0.105-2_i386.deb
  to pool/main/u/udev/udev_0.105-2_i386.deb
udev_0.105.orig.tar.gz
  to pool/main/u/udev/udev_0.105.orig.tar.gz


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



Accepted python-numpy 1:1.0.1-5 (source i386)

2007-02-25 Thread Zufus
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 26 Feb 2007 00:41:08 +
Source: python-numpy
Binary: python-numpy-dev python-numpy-doc python-numpy-ext python-numpy
Architecture: source i386
Version: 1:1.0.1-5
Distribution: unstable
Urgency: low
Maintainer: [EMAIL PROTECTED]
Changed-By: Marco Presi (Zufus) [EMAIL PROTECTED]
Description: 
 python-numpy - Numerical Python adds a fast array facility to the Python 
languag
 python-numpy-dev - Numerical Python adds a fast array facility to the Python 
languag
 python-numpy-doc - Numpy documentation
 python-numpy-ext - Numerical Python adds a fast array facility to the Python 
languag
Changes: 
 python-numpy (1:1.0.1-5) unstable; urgency=low
 .
   * Upload in unstable.
Files: 
 a46af6c682918b98223edfbba154a7f7 1112 python optional python-numpy_1.0.1-5.dsc
 df2c610b7e58238e7943e855d532ec49 5941 python optional 
python-numpy_1.0.1-5.diff.gz
 d844867497cb677938a21ae1f405bf24 836662 python optional 
python-numpy_1.0.1-5_i386.deb
 3f853426c51d816e6ba86c519b945f74 3328 python optional 
python-numpy-ext_1.0.1-5_i386.deb
 b6428c22852b86f3b60f06d983162ef3 11714 python optional 
python-numpy-dev_1.0.1-5_i386.deb
 73263dad9abdd0cf7706a486f929e66f 91416 python optional 
python-numpy-doc_1.0.1-5_i386.deb

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

iD8DBQFF4kBFh0XdeHWCwhoRAqlmAKCnLmsnb3bdfWb1gjOpMZKdlqfQUwCeNrnr
vlKPqa1UhsxGvDP7t8s5gwg=
=55mf
-END PGP SIGNATURE-


Accepted:
python-numpy-dev_1.0.1-5_i386.deb
  to pool/main/p/python-numpy/python-numpy-dev_1.0.1-5_i386.deb
python-numpy-doc_1.0.1-5_i386.deb
  to pool/main/p/python-numpy/python-numpy-doc_1.0.1-5_i386.deb
python-numpy-ext_1.0.1-5_i386.deb
  to pool/main/p/python-numpy/python-numpy-ext_1.0.1-5_i386.deb
python-numpy_1.0.1-5.diff.gz
  to pool/main/p/python-numpy/python-numpy_1.0.1-5.diff.gz
python-numpy_1.0.1-5.dsc
  to pool/main/p/python-numpy/python-numpy_1.0.1-5.dsc
python-numpy_1.0.1-5_i386.deb
  to pool/main/p/python-numpy/python-numpy_1.0.1-5_i386.deb


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



Accepted postfix 2.4-20070224-1 (source all i386)

2007-02-25 Thread LaMont Jones
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 19:46:43 -0700
Source: postfix
Binary: postfix-pcre postfix postfix-pgsql postfix-doc postfix-ldap postfix-cdb 
postfix-dev postfix-mysql
Architecture: all i386 source 
Version: 2.4-20070224-1
Distribution: experimental
Urgency: low
Maintainer: LaMont Jones [EMAIL PROTECTED]
Changed-By: LaMont Jones [EMAIL PROTECTED]
Description: 
 postfix- A high-performance mail transport agent
 postfix-cdb - CDB map support for Postfix
 postfix-dev - Postfix loadable modules development environment
 postfix-doc - Postfix documentation
 postfix-ldap - LDAP map support for Postfix
 postfix-mysql - MYSQL map support for Postfix
 postfix-pcre - PCRE map support for Postfix
 postfix-pgsql - PGSQL map support for Postfix
Changes: 
 postfix (2.4-20070224-1) experimental; urgency=low
 .
   * New upstream
Files: 
 2491c893e1dfb29fed31a37e629fc7d0 38252 mail extra 
postfix-mysql_2.4-20070224-1_i386.deb
 410f67815d7958aeb02ab77f5de444ad 38348 mail extra 
postfix-pgsql_2.4-20070224-1_i386.deb
 5192371c67c35509b141a8264367ddd1 42852 mail extra 
postfix-ldap_2.4-20070224-1_i386.deb
 55acbb62084c1581123c9efd2603daca 36298 mail extra 
postfix-cdb_2.4-20070224-1_i386.deb
 91de9bc70b160bfe782e011bb7545041 129488 devel extra 
postfix-dev_2.4-20070224-1_all.deb
 77b1cd00e8502440e06f0a491365b6ad 918 mail extra postfix_2.4-20070224-1.dsc
 aefeb48820fea909ed2c23af41e696c7 793150 doc extra 
postfix-doc_2.4-20070224-1_all.deb
 bb1de11884d08c9f5741bd5650d9d59b 2912687 mail extra 
postfix_2.4-20070224.orig.tar.gz
 c7b3e4f19f3905b29c43dc213c4c6ddc 38016 mail extra 
postfix-pcre_2.4-20070224-1_i386.deb
 c7ebea9e7e91e81db3838803f71cc251 1109738 mail extra 
postfix_2.4-20070224-1_i386.deb
 de18bfc6870e1b262cfbe69d73668819 160398 mail extra 
postfix_2.4-20070224-1.diff.gz

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

iD8DBQFF4k/XzN/kmwoKyScRAtNIAKCMCY/kgwzcgpRx7jLpWr145PNY0gCdHDMl
1SR+OpbLVctx7ZWLFSFHFyU=
=+7aR
-END PGP SIGNATURE-


Accepted:
postfix-cdb_2.4-20070224-1_i386.deb
  to pool/main/p/postfix/postfix-cdb_2.4-20070224-1_i386.deb
postfix-dev_2.4-20070224-1_all.deb
  to pool/main/p/postfix/postfix-dev_2.4-20070224-1_all.deb
postfix-doc_2.4-20070224-1_all.deb
  to pool/main/p/postfix/postfix-doc_2.4-20070224-1_all.deb
postfix-ldap_2.4-20070224-1_i386.deb
  to pool/main/p/postfix/postfix-ldap_2.4-20070224-1_i386.deb
postfix-mysql_2.4-20070224-1_i386.deb
  to pool/main/p/postfix/postfix-mysql_2.4-20070224-1_i386.deb
postfix-pcre_2.4-20070224-1_i386.deb
  to pool/main/p/postfix/postfix-pcre_2.4-20070224-1_i386.deb
postfix-pgsql_2.4-20070224-1_i386.deb
  to pool/main/p/postfix/postfix-pgsql_2.4-20070224-1_i386.deb
postfix_2.4-20070224-1.diff.gz
  to pool/main/p/postfix/postfix_2.4-20070224-1.diff.gz
postfix_2.4-20070224-1.dsc
  to pool/main/p/postfix/postfix_2.4-20070224-1.dsc
postfix_2.4-20070224-1_i386.deb
  to pool/main/p/postfix/postfix_2.4-20070224-1_i386.deb
postfix_2.4-20070224.orig.tar.gz
  to pool/main/p/postfix/postfix_2.4-20070224.orig.tar.gz


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



Accepted rquantlib 0.2.6-1 (source i386)

2007-02-25 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 21:02:58 -0600
Source: rquantlib
Binary: r-cran-rquantlib
Architecture: source i386
Version: 0.2.6-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
Changed-By: Dirk Eddelbuettel [EMAIL PROTECTED]
Description: 
 r-cran-rquantlib - GNU R package interfacing the QuantLib finance library
Changes: 
 rquantlib (0.2.6-1) unstable; urgency=low
 .
   * New upstream release 0.2.6
 .
   * This release has been updated for Quantlib 0.4.0 and depends on it
   * debian/control: Build-Depends: updated to libquantlib0-dev (= 0.4.0)
   * debian/control: Build-Depends: also updated to r-base-core (= 2.4.1)
 and debhelper (= 5.0.0)
   * debian/rules: Build with -g0 to reduce link time
Files: 
 991e5d70ddc07fa791f0078689751902 758 math optional rquantlib_0.2.6-1.dsc
 5169b029c77aa1e4565de8e906cb1619 67641 math optional 
rquantlib_0.2.6.orig.tar.gz
 5cb3a70e4ccad07f3369e4a8bcc657b0 4731 math optional rquantlib_0.2.6-1.diff.gz
 88a12cfa136edee6375130459361b609 463502 math optional 
r-cran-rquantlib_0.2.6-1_i386.deb

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

iD8DBQFF4lKOCZSR95Gw07cRAquOAJ9cQxlpVSqf95OQCZqvLg+sDNXVvQCfRM26
06I793kIIhyk31uwTKhKpBQ=
=25Zg
-END PGP SIGNATURE-


Accepted:
r-cran-rquantlib_0.2.6-1_i386.deb
  to pool/main/r/rquantlib/r-cran-rquantlib_0.2.6-1_i386.deb
rquantlib_0.2.6-1.diff.gz
  to pool/main/r/rquantlib/rquantlib_0.2.6-1.diff.gz
rquantlib_0.2.6-1.dsc
  to pool/main/r/rquantlib/rquantlib_0.2.6-1.dsc
rquantlib_0.2.6.orig.tar.gz
  to pool/main/r/rquantlib/rquantlib_0.2.6.orig.tar.gz


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



Accepted libspreadsheet-parseexcel-perl 0.2800-1 (source all)

2007-02-25 Thread Niko Tyni
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 25 Feb 2007 23:27:01 +0200
Source: libspreadsheet-parseexcel-perl
Binary: libspreadsheet-parseexcel-perl
Architecture: source all
Version: 0.2800-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Niko Tyni [EMAIL PROTECTED]
Description: 
 libspreadsheet-parseexcel-perl - access information from Excel Spreadsheets
Closes: 411952
Changes: 
 libspreadsheet-parseexcel-perl (0.2800-1) unstable; urgency=low
 .
   * New upstream release. (Closes: #411952)
   * Add dependencies on libspreadsheet-writeexcel-perl, libjcode-pm-perl
 and libunicode-map-perl.
   * Add build-dependency on libtest-pod-perl for better test coverage.
   * Mangle the version numbers in debian/watch to accommodate to the
 non-standard numbering upstream.
Files: 
 276f88e68b1a2b82d55fd2655fd0a57e 1022 perl optional 
libspreadsheet-parseexcel-perl_0.2800-1.dsc
 77b6c55d3f3804957b0b47ed2c80ae4a 97328 perl optional 
libspreadsheet-parseexcel-perl_0.2800.orig.tar.gz
 6f3c3c5f5fc284aec3a47e2c5df2d6ca 4773 perl optional 
libspreadsheet-parseexcel-perl_0.2800-1.diff.gz
 92b7865dc6b1fc8a446c3a6091fb61c9 120962 perl optional 
libspreadsheet-parseexcel-perl_0.2800-1_all.deb

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

iD8DBQFF4lRsebASZpNwHu8RAiaKAJ9pUJEtph5LFrcYoMmVKR8Kuk5EPgCdFAbY
XTcJe8wQRsKN6jNQSjxVI+0=
=qh1k
-END PGP SIGNATURE-


Accepted:
libspreadsheet-parseexcel-perl_0.2800-1.diff.gz
  to 
pool/main/libs/libspreadsheet-parseexcel-perl/libspreadsheet-parseexcel-perl_0.2800-1.diff.gz
libspreadsheet-parseexcel-perl_0.2800-1.dsc
  to 
pool/main/libs/libspreadsheet-parseexcel-perl/libspreadsheet-parseexcel-perl_0.2800-1.dsc
libspreadsheet-parseexcel-perl_0.2800-1_all.deb
  to 
pool/main/libs/libspreadsheet-parseexcel-perl/libspreadsheet-parseexcel-perl_0.2800-1_all.deb
libspreadsheet-parseexcel-perl_0.2800.orig.tar.gz
  to 
pool/main/libs/libspreadsheet-parseexcel-perl/libspreadsheet-parseexcel-perl_0.2800.orig.tar.gz


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



Accepted bfm 0.6.4-3 (source i386)

2007-02-25 Thread Mika Matsuzaki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 26 Feb 2007 01:12:17 -0500
Source: bfm
Binary: gkrellm-bfm bubblefishymon
Architecture: source i386
Version: 0.6.4-3
Distribution: unstable
Urgency: low
Maintainer: Mika Matsuzaki [EMAIL PROTECTED]
Changed-By: Mika Matsuzaki [EMAIL PROTECTED]
Description: 
 bubblefishymon - system load dockapp with a duck
 gkrellm-bfm - system load plugin for gkrellm with a duck
Changes: 
 bfm (0.6.4-3) unstable; urgency=low
 .
   * New maintainer.
Files: 
 93d78580cb46c64d45e1e91ac39aabe2 632 x11 optional bfm_0.6.4-3.dsc
 8c383402f348083494dfb19056d83877 2515 x11 optional bfm_0.6.4-3.diff.gz
 1bc7e4fab3fb716dbd4634f8e6eb4136 29590 x11 optional 
bubblefishymon_0.6.4-3_i386.deb
 9c5ade2160aace029572690ae0db209e 32784 x11 optional 
gkrellm-bfm_0.6.4-3_i386.deb

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

iD8DBQFF4oH4ic1LIWB1WeYRAh6VAJ911CGq2NUNXom6S3uq/OTGrTkwfQCfXRYm
jq9JoIME06iQkvgPOTD6BEs=
=nh0v
-END PGP SIGNATURE-


Accepted:
bfm_0.6.4-3.diff.gz
  to pool/main/b/bfm/bfm_0.6.4-3.diff.gz
bfm_0.6.4-3.dsc
  to pool/main/b/bfm/bfm_0.6.4-3.dsc
bubblefishymon_0.6.4-3_i386.deb
  to pool/main/b/bfm/bubblefishymon_0.6.4-3_i386.deb
gkrellm-bfm_0.6.4-3_i386.deb
  to pool/main/b/bfm/gkrellm-bfm_0.6.4-3_i386.deb


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



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

2007-02-25 Thread Oleksandr Moskalenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 24 Feb 2007 17:57:27 -0700
Source: scribus-ng
Binary: scribus-ng
Architecture: source i386
Version: 1.3.3.8.dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Oleksandr Moskalenko [EMAIL PROTECTED]
Changed-By: Oleksandr Moskalenko [EMAIL PROTECTED]
Description: 
 scribus-ng - Open Source Desktop Page Layout - developmental branch
Changes: 
 scribus-ng (1.3.3.8.dfsg-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/patches/02_profiles.dpatch: Made a new patch to correspond to the
 upstream update.
Files: 
 be0095aaa2a3941ca283555b5a1e07f7 842 graphics optional 
scribus-ng_1.3.3.8.dfsg-1.dsc
 ac379f91a98d7d6f10489444d300ca0f 11901847 graphics optional 
scribus-ng_1.3.3.8.dfsg.orig.tar.gz
 9cd59a9908937788f50deeebdffead3f 26680 graphics optional 
scribus-ng_1.3.3.8.dfsg-1.diff.gz
 c72d3090a54e0dfcb818098309cfea3b 9168438 graphics optional 
scribus-ng_1.3.3.8.dfsg-1_i386.deb

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

iD8DBQFF4oHA2ihvMmxfGWsRApKiAJ0Z41Zfjmh56SZiQwSztpKB8LWjGgCgp08c
e/EsZyNn9l7zC5EhHSGvXeY=
=FMl2
-END PGP SIGNATURE-


Accepted:
scribus-ng_1.3.3.8.dfsg-1.diff.gz
  to pool/main/s/scribus-ng/scribus-ng_1.3.3.8.dfsg-1.diff.gz
scribus-ng_1.3.3.8.dfsg-1.dsc
  to pool/main/s/scribus-ng/scribus-ng_1.3.3.8.dfsg-1.dsc
scribus-ng_1.3.3.8.dfsg-1_i386.deb
  to pool/main/s/scribus-ng/scribus-ng_1.3.3.8.dfsg-1_i386.deb
scribus-ng_1.3.3.8.dfsg.orig.tar.gz
  to pool/main/s/scribus-ng/scribus-ng_1.3.3.8.dfsg.orig.tar.gz


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



Accepted fdutils 5.5-20060227-1.1 (source i386)

2007-02-25 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 26 Feb 2007 07:33:25 +0100
Source: fdutils
Binary: fdutils
Architecture: source i386
Version: 5.5-20060227-1.1
Distribution: unstable
Urgency: low
Maintainer: Anibal Monsalve Salazar [EMAIL PROTECTED]
Changed-By: Christian Perrier [EMAIL PROTECTED]
Description: 
 fdutils- Linux floppy utilities
Closes: 402236 408214 412305
Changes: 
 fdutils (5.5-20060227-1.1) unstable; urgency=low
 .
   * Non-maintainer upload to fix pending l10n issues.
   * Debian translations:
 - Spanish. Closes: #402236
 - Galician. Closes: #408214
 - Catalan. Closes: #412305
Files: 
 ee8cc317f3942c853f5eb7a941101228 642 utils optional 
fdutils_5.5-20060227-1.1.dsc
 e08abe610d80af90fb9409369af68458 22131 utils optional 
fdutils_5.5-20060227-1.1.diff.gz
 18b9fc5738838a0893c23512d0e508e3 358624 utils optional 
fdutils_5.5-20060227-1.1_i386.deb

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

iD8DBQFF4oqr1OXtrMAUPS0RAlwWAJ4h9ag4pnG0o1IF032b7omZ9dniuwCfWSOQ
uwIr8dIt8wTeVCvKcIeRWz8=
=TAat
-END PGP SIGNATURE-


Accepted:
fdutils_5.5-20060227-1.1.diff.gz
  to pool/main/f/fdutils/fdutils_5.5-20060227-1.1.diff.gz
fdutils_5.5-20060227-1.1.dsc
  to pool/main/f/fdutils/fdutils_5.5-20060227-1.1.dsc
fdutils_5.5-20060227-1.1_i386.deb
  to pool/main/f/fdutils/fdutils_5.5-20060227-1.1_i386.deb


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