Bug#373150: ITP: ccd2iso -- Converter from CloneCD disc image format to standard ISO

2006-06-13 Thread Asheesh Laroia
Package: wnpp
Severity: wishlist
Owner: Asheesh Laroia [EMAIL PROTECTED]


* Package name: ccd2iso
  Version : 0.2
  Upstream Author : Danny Kurniawan [EMAIL PROTECTED] 
* URL : http://sourceforge.net/projects/ccd2iso/
* License : GPL
  Description : Converter from CloneCD disc image format to standard ISO

This converts CD backup files created using the non-free CloneCD program to a
format understood by most Free Software CD writing programs.

Homepage: http://sourceforge.net/projects/ccd2iso/

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.16-1-xen-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


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



Re: Move to python 2.4 / Changing the packaging style for python packages

2006-06-13 Thread Mike Hommey
On Tue, Jun 13, 2006 at 01:49:26AM +0200, Matthias Klose [EMAIL PROTECTED] 
wrote:
  - The current pythonX.Y-foo packages having modules in the python
library path are collapsed into one package python-foo. Binary
independent modules are made available for the python versions
currently supported in the distribution.  Binary dependent
extensions are put for all supported python versions into the
same python-foo package.  The overhead for a maybe unused
extension module was accepted in favour of a reduction of
packages, the removed need to rebuild a package for a change
of the default python version and less NEW processing when
adding support for a new pythonX.Y version.

Will /usr/lib/python2.x/site-packages be ignored by dh_shlibdeps as part
of this master plan ?

Mike


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



Re: Move to python 2.4 / Changing the packaging style for python packages

2006-06-13 Thread Mike Hommey
On Tue, Jun 13, 2006 at 08:17:17AM +0200, Mike Hommey [EMAIL PROTECTED] wrote:
 On Tue, Jun 13, 2006 at 01:49:26AM +0200, Matthias Klose [EMAIL PROTECTED] 
 wrote:
   - The current pythonX.Y-foo packages having modules in the python
 library path are collapsed into one package python-foo. Binary
 independent modules are made available for the python versions
 currently supported in the distribution.  Binary dependent
 extensions are put for all supported python versions into the
 same python-foo package.  The overhead for a maybe unused
 extension module was accepted in favour of a reduction of
 packages, the removed need to rebuild a package for a change
 of the default python version and less NEW processing when
 adding support for a new pythonX.Y version.
 
 Will /usr/lib/python2.x/site-packages be ignored by dh_shlibdeps as part
 of this master plan ?

Which would be stupid, Mike, thank you. Don't sent mail when you're
still not awake.

Anyways, there would be a problem with python native extensions linked
against libpython. They would get the shlib dependencies on python2.x
packages.

Mike


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



Re: Move to python 2.4 / Changing the packaging style for python packages

2006-06-13 Thread martin f krafft
also sprach Matthias Klose [EMAIL PROTECTED] [2006.06.13.0149 +0200]:
  - The current pythonX.Y-foo packages having modules in the python
library path are collapsed into one package python-foo. Binary
independent modules are made available for the python versions
currently supported in the distribution.  Binary dependent
extensions are put for all supported python versions into the
same python-foo package.  The overhead for a maybe unused

Python will create optimised, binary dependent modules on first
access to .py files, right? In our case, though, this fails because
/usr is mostly read-only to those running Python.

Couldn't Python be extended to store .pyc files in /var?

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
micro$oft windoze - the best solitaire game you can buy.


signature.asc
Description: Digital signature (GPG/PGP)


Re: Move to python 2.4 / Changing the packaging style for python packages

2006-06-13 Thread Raphael Hertzog
On Tue, 13 Jun 2006, martin f krafft wrote:
 also sprach Matthias Klose [EMAIL PROTECTED] [2006.06.13.0149 +0200]:
   - The current pythonX.Y-foo packages having modules in the python
 library path are collapsed into one package python-foo. Binary
 independent modules are made available for the python versions
 currently supported in the distribution.  Binary dependent
 extensions are put for all supported python versions into the
 same python-foo package.  The overhead for a maybe unused
 
 Python will create optimised, binary dependent modules on first
 access to .py files, right? In our case, though, this fails because
 /usr is mostly read-only to those running Python.

The byte-compilation is done in the postinst (with root rights), so it
works.

 Couldn't Python be extended to store .pyc files in /var?

Python doesn't need to be changed. If you use python-support that's
precisely what will happen for public modules (but they are still created
in the postint with root rights).

Cheers,
-- 
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/


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



Re: Move to python 2.4 / Changing the packaging style for python packages

2006-06-13 Thread martin f krafft
also sprach Raphael Hertzog [EMAIL PROTECTED] [2006.06.13.0932 +0200]:
  Couldn't Python be extended to store .pyc files in /var?
 
 Python doesn't need to be changed. If you use python-support that's
 precisely what will happen for public modules (but they are still created
 in the postint with root rights).

So wouldn't this be a way to get rid of the problem? Why bother
pre-compiling them?

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Escape Meta Alt Control Shift


signature.asc
Description: Digital signature (GPG/PGP)


Re: Move to python 2.4 / Changing the packaging style for python packages

2006-06-13 Thread martin f krafft
also sprach martin f krafft [EMAIL PROTECTED] [2006.06.13.0945 +0200]:
 So wouldn't this be a way to get rid of the problem? Why bother
 pre-compiling them?

... doh! because the first is hopefully not by root, and a /var
cache would be subject to cache poisoning if writeable by other
users.

mh. Sorry for the noise.

 
 -- 
 Please do not send copies of list mail to me; I read the list!
  
  .''`. martin f. krafft [EMAIL PROTECTED]
 : :'  :proud Debian developer and author: http://debiansystem.info
 `. `'`
   `-  Debian - when you have better things to do than fixing a system
  
 Escape Meta Alt Control Shift



-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
education is an admirable thing, but it is well to remember from time
 to time that nothing that is worth knowing can be taught.
-- oscar wilde


signature.asc
Description: Digital signature (GPG/PGP)


Re: /usr/share and -common pkgs

2006-06-13 Thread Tim Dijkstra
On Mon, 12 Jun 2006 18:18:35 +0200
Goswin von Brederlow [EMAIL PROTECTED] wrote:

 Justin Pryzby [EMAIL PROTECTED] writes:
 
 
  The LFS intent of separating /usr/share and /usr/lib is to allow a
  filesever to export /usr/share to machines of *any* architecture
  running the same OS (/usr is supposed to be sharable to machines of
 
 I think that has been nearly completly abandoned in practice. Harddisk
 space is just too cheap and debian never actualy supported this on a
 package manager level (e.g. let dpkg know the server has /usr/share so
 skip it on extract).

Hmm, that would be a nice use case for a dpkg2.0 filter...

grts Tim


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



Re: Non-DD's in debian-legal

2006-06-13 Thread MJ Ray
Theodore Tso [EMAIL PROTECTED]
 The d-l list has a problem which is shared by many Debian mailing
 lists (including debian-vote and debian-devel, and I'm sure it's not
 limited to them) which is that far too many people subscribe to the
 last post wins school of debate.  People don't listen, they just
 assert their point of view --- back and forth [...]

Yes, I think that's a problem.  There's a skill to concluding a
discussion which is hard to master even once you realise you need it.

Sadly, basic research skills seem to go out of the window when someone has
a pet licence, a pet peeve, or pet code under a bizarre licence. There
are actually good, clear summaries of most d-l topics somewhere in
the archive.  They're not always easy to find and indexing them would
be a masterpiece of guesswork, but it is usually possible to find them
by looking for similar clauses in other licences, other packages under
the same licence and so on.  Write-only participants are actually even
more damaging to debian-legal, where a few complex topics keep arising
over and over again, than to most debian lists.

 As a result, I have deliberately avoided d-l, because I have better
 things to do with my time. [...]

It is possible to manage d-l on a personal level.  Recently, I ignore many
threads which aren't obviously to do with practical package problems or
obvious requests for comment (how did I get in this one?).  I'm happy
for the random discussions of those who have time to continue mostly
unwatched: interacting with them when they matter seems to keep most of
them on track.

 Unfortunately, the only thing I can think of that might be useful
 would be active moderation of the list, combined with summary of the
 opinions (with both majority and minority opinions) that is summarized
 by the moderator, and which when it is due, can be archived on some
 web site or wiki. [...]

I think that some moderation could help, to guillotine threads that show
no sign of producing anything useful, but I think total moderation would
harm more than help.

Summaries of opinions are a good idea and there have been at least two
concerted efforts to do that in the past, both failing in different ways.
I don't think a wiki is a good idea - unaccountable edits while locking
some people out (if wiki.d.o is used).

Any summaries should be prepared personally (put them in your people.d.o
space) and then signed by whoever supports them.  If anyone does that,
I'll link it at the next (overdue) update of www.debian.org/legal/licences/

-devel readers may not be aware of my Debian-Legal Package Lists at
http://people.debian.org/~mjr/legal/ which lists which packages have been
discussed.  They are announced early each month on planet.debian.org (and
my own blog). If you only want to know the package-based work, it may help.

 However, I *do* believe that d-l is a cesspit [...]

Rather like my view of certain other debian lists.  d-l is sadly average.

-- 
MJR/slef
My Opinion Only: see http://people.debian.org/~mjr/
Please follow http://www.uk.debian.org/MailingLists/#codeofconduct


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



Re: Move to python 2.4 / Changing the packaging style for python packages

2006-06-13 Thread Matthias Klose
martin f krafft writes:
 also sprach Matthias Klose [EMAIL PROTECTED] [2006.06.13.0149 +0200]:
   - The current pythonX.Y-foo packages having modules in the python
 library path are collapsed into one package python-foo. Binary
 independent modules are made available for the python versions
 currently supported in the distribution.  Binary dependent
 extensions are put for all supported python versions into the
 same python-foo package.  The overhead for a maybe unused
 
 Python will create optimised, binary dependent modules on first
 access to .py files, right? In our case, though, this fails because
 /usr is mostly read-only to those running Python.
 
 Couldn't Python be extended to store .pyc files in /var?

how would that be different? make that directory in /var world
writable?


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



Re: Move to python 2.4 / Changing the packaging style for python packages

2006-06-13 Thread Matthias Klose
Mike Hommey writes:
 Anyways, there would be a problem with python native extensions linked
 against libpython. They would get the shlib dependencies on python2.x
 packages.

So at least we can find these and fix them.


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



Re: CDBS and dh_install

2006-06-13 Thread Eduard Bloch
#include hallo.h
* Marc Dequènes [Sun, Jun 11 2006, 03:00:12AM]:

  and replace it with a very small shell script.  For cdbs, you delete one
  line and have to replace it with your reimplementation of a very large
  makefile...
 
 That's obvious because CDBS does not target at doing little independent
 tasks (even if some may be *perhaps* be transformed to dh_*), but to
 autogenerate rules. CDBS is a layer over debhelper, this cannot be
 simply compared this way.

Yes. And you rely completely on CDBS doing some automagick and do the
right thing. But... oh wonder, somehow most of my packages do not fit
into this pattern of ./configure  make  make install  PARTY!.

  Oh, I disagree; I think I have a pretty good idea what the benefits are of
  CDBS, I just think that many CDBS proponents underemphasize the *downside*
  of CDBS.
 
 That's not true for everybody. The auto control generation is now never
 run automatically because we agreed it could cause harm.

Why could you, oh why? you do not trust the God Of Autoscripting any
more? You bastards1

 You simply don't care about this...

And when I _need_ to care about this because sth. does not work?

 If something is missing or inadéquate you juste hook on makefile rules
 and add your own commands (debhelper if necessary). you can even stop

Just Hook, aha. You can say that if you know all the variables and the
internal dependencies.

 including some classes and reimplement what is uncommon and thus has no
 reason to be in a class. I never found any package being fully uncommon,
 so i see no reason not to use CDBS if you feel well with this tool with
 any package..
 
 If the packager has no time to learn Debian tools correctly, then he

There are tools, and there are tools. Debhelper tools are usualy easy to
understand (at least what they exactly do) and to work around in case of
failure, but CDBS is a complex code hell.

 must not be sent to NM, or must not be accepted by AM or DAM, that's
 really obvious. People willing to have a @debian.org email for fun or
 unwilling to learn and work seriously can just can become MOTUs...
 What would you say if i told you i had not yet time to learn how the
 BTS work because my level of committment is not high enough and that i
 won't be able to manage my bugs until 6 more months ?
 
 Sometimes i really don't understand you...

Because most pro-CDBS opinions here are from people dealing only with
very standard packaging cases and refuse to try to see things from
another POV. And don't accuse me of not understanding the issue or
similar crap. I created module-assistant includes for similar purposes a
while ago but I always cared about creating more benefits where they are
required without enchaining maintainers.

OTOH I am pissed, CDBS folks are using a var with conflicting name (and
module-assistant have been first with using it, I am not going to rename
the var), I sent my complaint to their ML and nothing happened. Now you
get a bug report.

And about easy to extend... I just looked trough the current manual
since someone told the docs have been improved. I still don't have a
single idea how can I easily put a certain custom tool call between
other debhelper commands.

 The documentation is still work in progress and is actively improved
 over time, just be patient *or* help.

Ehm, ok. But those docs are about internals, CDBS' developers should
know best how they work and be able to describe them best.

  The flip side of this is that the behavior of cdbs-using packages is always
  changing, without the knowledge or control of the package maintainer.  E.g.,
  while I was drafting this message,
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=372273;msg=10 showed up
  in my mailbox...
 
 In the past some mistakes were done in debhelper too, even if i don't
 recall a specific case to mention. That's not often this happen to CDBS,
 but i agree this should be avoided, that's why i'd like Peter to finaly
 accept co-maintainership.

Peter? Which Peter? Whoever, that is not about mistakes happened there
to. With CDBS, a such bug IN CDBS means failure with working around it
becoming PITA.

  No, clearly makefile includes shouldn't have manpages; but some kind of
  documentation that tells cdbs users what they should or shouldn't be able to
  depend on would be a good idea.  In the absence of such documentation I
  think the current answer to what they can depend on is actually very
  little, which is a big part of why I don't encourage its use.
 
 A documentation do exist, even if you seem to be completely blind and
 features which are described are behaviors you can count on. When a

Who is blind? Reread his text please. What about things you should
avoid, where are those documented?

 feature has changed for very important reasons like the control auto
 generation one, a warning is displayed (so you know you cannot count on
 it). Undocumented parts are either documentation lack or internal stuff
 you should not care 

Re: Move to python 2.4 / Changing the packaging style for python packages

2006-06-13 Thread Mike Hommey
On Tue, Jun 13, 2006 at 10:09:15AM +0200, Matthias Klose [EMAIL PROTECTED] 
wrote:
 Mike Hommey writes:
  Anyways, there would be a problem with python native extensions linked
  against libpython. They would get the shlib dependencies on python2.x
  packages.
 
 So at least we can find these and fix them.

What is so wrong about linking to libpython ? Is that because the
interpreter isn't linked against the lib ? BTW, why isn't it ?

Mike


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



Re: Non-DD's in debian-legal

2006-06-13 Thread MJ Ray
Thomas Bushnell BSG [EMAIL PROTECTED]
 I suspect that if it were confined to Debian developers, this problem
 would be much reduced.  Not eliminated, but reduced.

On what is that suspicion based?

I disagree.  Some of the worst noiseboxes were DDs and some of the
best moderators weren't.  Restricting to DDs would stop new posters
falling from the sky and making wild statements which loonies quote as
'the view of debian-legal' but that's not a serious problem anyway.
I think it would exclude all recent posters with legal training,
which seems a worse problem.

Hope that helps,
-- 
MJR/slef
My Opinion Only: see http://people.debian.org/~mjr/
Please follow http://www.uk.debian.org/MailingLists/#codeofconduct


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



Re: Bug#363486: dpkg: [update-alternatives] New categories for: WORD, EXCEL, MEDIA-PLAYER etc.

2006-06-13 Thread Martijn van Oosterhout

On 6/12/06, Kurt Roeckx [EMAIL PROTECTED] wrote:

I'm not sure if the alternatives system is the best place to
register mime types.  I'm also not sure that a Debian specific
solution as the alternatives system is the best way to go.  But I
can see why this would be useful, and maybe it should work in
combination with the alternatives system.


Opening based on mime-types is a solved problem, see /etc/mailcap. You
can even specify different programs depending on whether you're in X
or not. See run-mailcap.

In particular: see mime-type:filename will determine the correct
viewer for the file and display it. There is also edit, compose and
print. Preferences can be consigured globally using
/etc/mailcap.order.
--
Martijn van Oosterhout [EMAIL PROTECTED] http://svana.org/kleptog/


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



Failed Email. (Scan Fail)

2006-06-13 Thread email . release
Your attention is being drawn to a message sent on Tue, 13 Jun 2006 13:16:28 
+0300 via [EMAIL PROTECTED] which is detailed below:

From:'debian-devel@lists.debian.org'
To:   [EMAIL PROTECTED]

Subject: 'Error'

As part of our anti-virus and security measures, we routinely content scan 
email prior to delivery.

This email has been quarantined due to a problem with the format which 
prevented the content scan completing successfuly.

This does not indicate that your mail has a virus.  More likely reasons for 
failure are CDA or MIME format errors, character set problems, incomplete or 
corrupt messages.

As a first step in resolving this issue, you may like to try re-raising the 
email message.

We will not normally release messages that cannot be successfully scanned.

The message will be erased without further notification after 14 days

Mail Administrator
Thales
Crawley

(02/2001)


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



Processed: reopening 142164

2006-06-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.19
 reopen 142164
Bug#142164: Packages files should be in UTF-8
Bug reopened, originator not changed.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Sgt. Robert Greene Writes From Iraq

2006-06-13 Thread Sgt. Robert Greene

Attn: 

 I happen to come across your email address while reading an article on the 
internet.My name is Sgt. Robert Greene,a U.S.Marine 1st Armored Division,which 
was deployed to Iraq in the beginning of the war in  Iraq.I would like to share 
some highly personal classified information about my personal experience and 
role which I played  in the pursuit of my career serving under the U.S 1st 
Armored which was at the fore-front of the war in Iraq.Though,I would  like to 
hold back certain information for security reasons for now until you have found 
the time to visit the BBC website stated below to enable you have insight as to 
what I'm intending to share with you,believing that it would be of your desired 
interest in one way or the other. 

http://news.bbc.co.uk/2/hi/middle_east/2988455.stm

 Also,could you get back to me having visited the above website to enable us 
discuss in a more clarifying manner to the best of your understanding.I must 
say that I?m very uncomfortable sending this message to you without knowing 
truly if you would misconstrue the importance and decide to go public.In this 
regards,I will not hold back to say that the essence of this message is 
strictly for mutual benefit of you and I and nothing more. I will be vivid and 
coherent in my next message in this regards.Meanwhile,could you send me a mail 
confirming you have visited ! the website andhave understood my intentions?
Alternatively,you can send your e-mail response,using e-mail address: [EMAIL 
PROTECTED] your kind response.

Best Regards

Sgt. Robert Greene


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



Re: Move to python 2.4 / Changing the packaging style for python packages

2006-06-13 Thread Matthias Klose
Mike Hommey writes:
 On Tue, Jun 13, 2006 at 10:09:15AM +0200, Matthias Klose [EMAIL PROTECTED] 
 wrote:
  Mike Hommey writes:
   Anyways, there would be a problem with python native extensions linked
   against libpython. They would get the shlib dependencies on python2.x
   packages.
  
  So at least we can find these and fix them.
 
 What is so wrong about linking to libpython ? Is that because the
 interpreter isn't linked against the lib ? BTW, why isn't it ?

the pystone benchmarks indicates that the interpreter runs about 12%
faster on i386 when statically linked against libpython.  This is not
anymore the case with gcc-4.1, so we may consider linking it against
the shared library.

  Matthias


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



Bug#373211: ITP: horae -- interactive graphical processing and analysis of EXAFS data

2006-06-13 Thread Carlo Segre
Package: wnpp
Severity: wishlist
Owner: Carlo Segre [EMAIL PROTECTED]


* Package name: horae
  Version : 062
  Upstream Author : Bruce Ravel [EMAIL PROTECTED]
* URL : http://cars9.uchicago.edu/~ravel/software/packages/
* License : BSD-type
  Programming Lang: Perl
  Description : interactive graphical processing and analysis of EXAFS data

 ATHENA is an interactive graphical utility for processing EXAFS data. It
 handles most of the common data handling chores of interest, including
 deglitching, aligning, merging, background removal, and Fourier transforms.
 .
 ARTEMIS is an interactive graphical utility for fitting EXAFS data using
 theoretical standards from FEFF and sophisticated data modelling along with
 flexible data visualization and statistical analysis.
 .
 HEPHAESTUS is a souped up periodic table for the x-ray absorption
 spectroscopist. It provides a number of utilities involving tables of
 absorption coefficients and other chemical data.

 Maintainer's Note 

This package will be in contrib because it depends on pgplot5.  It also has
a suggests dependency on the non-free libstar-parser-perl module.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-k7-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


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



Bug#373207: ITP: ifeffit -- An interactive program for XAFS analysis

2006-06-13 Thread Carlo Segre
Package: wnpp
Severity: wishlist
Owner: Carlo Segre [EMAIL PROTECTED]


* Package name: ifeffit
  Version : 1.2.9
  Upstream Author : Matt Newville [EMAIL PROTECTED]
* URL : http://cars9.uchicago.edu/ifeffit/
* License : BSD-type
  Programming Lang: Fortran, C, Python  others
  Description : An interactive program for XAFS analysis


 IFEFFIT is an interactive program for XAFS analysis. It combines the
 high-quality analysis algorithms of AUTOBK and FEFFIT with graphical
 display of XAFS data and general data manipulation.
 .
 IFEFFIT comes as a command-line program, but the underlying functionality
 is available as a programming library. The IFEFFIT library can be used from 
 C, Fortran, Tcl, Perl, and Python. This allows a variety of user interfaces
 (both graphical and non-graphical) to be written around IFEFFIT. Currently,
 two graphical user interfaces: one called G.I.FEFFIT, and one called ATHENA
 are built on the underlying IFEFFIT library. IFEFFIT and both GUIs are
 under active development, but are fairly well tested and ready for use.

 Maintainer's Note 

This software will, unfortunately, have to go into contrib because of its
dependence on pgplot5.  The licences of the components of ifeffit are open
source.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-k7-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


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



Re: CDBS and dh_install

2006-06-13 Thread George Danchev
On Saturday 10 June 2006 15:57, Marc Dequènes wrote:
--cut--
 Until this is solved, i'm still maintaining my original version, since
 more people use it than the one in the package, but this is not an ideal
 situation.

Ok, time to ask a real question about cdbs ;-) I assume you are pretty much 
familiar with it and its strengths and weaknesses, hence my little problem 
follows:

my debian/rules 
(in which I have my self-written target, no it is not supported by cdbs yet)

#!/usr/bin/make -f

DEB_DH_INSTALL_SOURCEDIR=debian/tmp

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/autotools.mk

DEB_CONFIGURE_PREFIX=/usr
DEB_CONFIGURE_SYSCONFDIR=/etc
#DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/usr

debian/stamp-autotools-files:
./configure --prefix=/usr
touch debian/stamp-autotools-files

myowntarget: 
here... 


Then if I execute my target a possbily harmless warning follows:

$fakeroot debian/rules myowntarget
debian/rules:13: warning: overriding commands for target 
`debian/stamp-autotools-files'
/usr/share/cdbs/1/class/autotools-files.mk:54: warning: ignoring old commands 
for target `debian/stamp-autotools-files'
Upstream source tarball have been already downloaded
Upstream filename md5sum is trusted!


My questions are: 
* what couses that, and how to escape that annoying warn ?
* where is that described in cdbs official or unofficial docs ?

Thanks. Excuse moa if I failed to see the obvious ;-)

-- 
pub 4096R/0E4BD0AB 2003-03-18 people.fccf.net/danchev/key pgp.mit.edu
fingerprint 1AE7 7C66 0A26 5BFF DF22 5D55 1C57 0C89 0E4B D0AB 


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



Bug#373208: ITP: libstar-parser-perl -- STAR compliant data file parser for Perl

2006-06-13 Thread Carlo Segre
Package: wnpp
Severity: wishlist
Owner: Carlo Segre [EMAIL PROTECTED]


* Package name: libstar-parser-perl
  Version : 0.59
  Upstream Author : Wolfgang Bluhm [EMAIL PROTECTED]
* URL : http://pdb.sdsc.edu/STAR/
* License : non-free
  Programming Lang: Perl
  Description : STAR compliant data file parser for Perl

 This distribution contains a set of Perl modules for parsing STAR compliant
 data files and dictionaries, for example CIF or mmCIF data files and
 dictionaries. While these tools are not limited to CIF or mmCIF files, they
 do not allow the presence of nested loops.
 .
 The following modules are included in this distribution:
 .
STAR::Parser
STAR::DataBlock
STAR::Dictionary
STAR::Writer
STAR::Checker
STAR::Filter

 Maintainer's note 

This module is clearly non-free, however it is an optional component for a
GPL program which will have to go into contrib because it also depends on
pgplot5.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-k7-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


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



Re: A clean way to introduce delay between scripts in /etc/init.d?

2006-06-13 Thread LEE, Yui-wah (Clement)
Hi,

Thanks for all your responses.

Indeed ifplugd has a switch -w, which I accidentally
turned off some time ago.  Once I reinstated the switch,
the two scripts (ifplugd and bind9) seemed to be properly
synchronized.

Thanks!

Clement

On Mon, 12 Jun 2006, Joey Hess wrote:

 LEE, Yui-wah (Clement) wrote:
  What is a clean way to introduce a delay between the
  scripts in /etc/init.d ?
 
  I saw a problem that /etc/rc2.d/S27bind9 started before
  /etc/rc2.d/S25ifplugd actually completed all the tasks
  ...
 
  Specifically, ifplugd, with the help of resolvconf,
  would generate the file /var/run/bind/named.options,
  which would be used by bind9.  Unfortunately by the
  time bind9 ran, the file was not yet generated.
 
  I could force a delay between the two scripts by
  introducing another script (run at S26) that does
  nothing but sleep for a fixed time (30 seconds).  That
  seemed to work around the problem.  But I wonder if
  there is a cleaner solution.
 
  Ideally, the delay should not be fixed but dynamic.
  That is, a later script can have some means to know for
  sure that an earlier script has completed all the tasks
  already.

 The best way to accomplish this is to fix the earlier program so that it
 does not return until all tasks are complete.

 pcmcia-cs used to have similar problems, which were fixed by making
 cardmgr run with the -f switch. ifplugd has a -w switch that is supposed
 to do the same thing according to at least some of the documentation, and
 is enabled by default. Maybe it's not working though, or doesn't
 actually wait until the interface is up, but just until the initial link
 beat detection is done?




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



Re: severities of blocking bugs

2006-06-13 Thread Jari Aalto+usenet
* Fri 2006-06-09 Ian Jackson ian AT davenant.greenend.org.uk
 If some program lacks a feature or bugfix you want for your package,
 then _implement it_ instead of whining !

 Most maintainers are much more cooperative when you tag the bug as
 +patch and say something like:

Nope. If you happend to send a patch to fix the problem, there are as
many responses as there are developers. I've got messages saying
I/We're not interested.

 As opposed to writing to demand that the maintainer spend their free
 time to help you fix your problem !

Wrong. The person responsibnle for the package is responsible for
the bugs and features (coordinating them to upstream); overall things
for the whole package.

This responsibility cannot be put on the shoulders of others.
Everybody is on their free time, the bug submitter included. The
packager has *taken* the burden, so he should also carry it. Or
otherwise he is not the right person for the maintenance - it's not a
parking garage.

 Remember also that the purpose of bug reports is to help us improve
 the package.  The purpose of bug reports in Free software is _not_ to
 solve the submitter's problem !  (Although that's sometimes a helpful
 side-effect.)

Features and improvements raise on the field. Anything that can be
improved and make quality better can be considered bug (severity may
differ).

Jari



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



Re: Bug#363486: dpkg: [update-alternatives] New categories for: WORD, EXCEL, MEDIA-PLAYER etc.

2006-06-13 Thread Josselin Mouette
Le lundi 12 juin 2006 à 20:44 +0200, Kurt Roeckx a écrit :
 I think you're not very clear in what you're asking, so I'm going
 to try and explain what I think you said.
 
 If you open a file in a file browser, or you open it thru a web
 browser or something, it might have a mime type assosiated with
 it.  So what I think you suggest is that based on the mime-type
 we start an application that should be able to handle that
 mime-type.

This is what the Freedesktop.org MIME database achieves. No need to
reinvent what is already a widespread standard.
-- 
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
  `-  Debian GNU/Linux -- The power of freedom


signature.asc
Description: Ceci est une partie de message	numériquement signée


Re: Debian Light Desktop - meta package

2006-06-13 Thread Jari Aalto+mail.linux
* Wed 2006-06-07 Axel Beckert abe AT deuxchevaux.org
* Message-Id: 20060607001535.GT3066 AT fsinfo.cs.uni-sb.de
 Hi!

 I'm creating a meta package for install a lite desktop for old
 machines with poor hardware.

 Hey, that's a really cool idea! Debian is one of the last modern (and
 not specialised) Linux distribution feasible for old and slow
 hardware, especially old PCs. But Sarge already made a big step away
 from old PCs (e.g. by dropping XFree86 3.3 and requiring 32 Megs of
 RAM for installation -- Woody needed only 12 Megs) so I'm really happy
 to see that others try to take the cudgels for Debian on old hardware
 too.

FYI,

I've already have a running a project to provide a very light, very
low profile Desktop for Debian. The project is ready to install[*] and it
has been tested for old harware running 64M/166 (even lower) needs.

The project page is at:

  http://debian.cante.net/stem

The extra packages currently used are optional and some that are
missing are being ported to Debian.

At the end of opening page you will find listing of programs
used for the desktop. 

http://debian.cante.net/stem/package.lst

The WM choices currently are:

- Jwm window manager (very light)
- Fvwm95 (the standard look), moderate memory consumption.

You will also find study on programs that were evaluated to build up
the desktop from pictures of memory consumption graphs.

   http://debian.cante.net/stem/manual
   http://debian.cante.net/stem/faq

Suggestions how to eventually be included it in Debian, please comment
how this could be done. I'm not a DD yet.

Jari

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

[*] The bugs are being ironed out, but in general it's
ready for the prime time.

Repository

deb http://debian.cante.net/debian unstable main
deb-src http://debian.cante.net/debian unstable main

There is automatic install script (asks few questions)
  
wget -qN http://debian.cante.net/stem/netinstall.sh
sh netinstall.sh [--help]

or install can be done manually (for expert only)

apt-cache search ^stem-
apt-cache show packagename


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



Bug#81118: much love

2006-06-13 Thread Alexandria Sparks
incredible offer available

Dear Family,

Just wanted to write you, and let you know, how the degree program I tried out 
went.
Well, six weeks later, I graduated, finished  received my Mas_ters Deg_ree
with no study required and 100 percent verifiable.

Yeah mom, I know you and Dad doubted it at first, but this turned out to be
totally legit. This opportunity was given to me because of the professional
experience and previous course work I had accumulated.

I'm so excited mom and dad, this was a life altering opportunity  for once
in my life I took advantage of it.

I already have jobs, that wouldn't have given me a chance before, now they
are calling off the hook! This really is a godsend.

Tell Susan and Cousin Joey that they better hurry up and call that # I gave
them the other day. It's 1_2_0_6-350-2883 in case you forgot.

Again these are the %DEGs they offer,Bach_elors, Maste_rs, MBA and/or 
Do_ctorate (PhD) , and
the number to call is 1_2_0_6-350-2883 , tell them to leave a brief message with
their name, the degree they are interested in and their day and evening phone
numbers. They will contact you soon after.

Anyway, much love, and tell the rest of the family I said hello!

Love,
Draper family

Best Wishes



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



Bug#373246: ITP: keyjnote -- A fancy PDF presentation tool

2006-06-13 Thread Florian Ragwitz
Package: wnpp
Severity: wishlist
Owner: Florian Ragwitz [EMAIL PROTECTED]

* Package name: keyjnote
  Version : 0.8.1
  Upstream Author : Martin J. Fiedler [EMAIL PROTECTED]
* URL : http://keyjnote.sourceforge.net/
* License : GPL
  Programming Lang: Python
  Description : A fancy PDF presentation tool


 KeyJnote is a program that displays presentation slides. But unlike
 OpenOffice.org Impress or other similar applications, it does so with
 style. Smooth alpha-blended slide transitions are provided for the sake
 of eye candy, but in addition to this, KeyJnote offers some unique
 tools that are really useful for presentations. Some of them are:
  * Page transitions
  * Overview screen 
  * Highlight boxes
  * Spotlight effect

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


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



Re: Non-DD's in debian-legal

2006-06-13 Thread Adam McKenna
On Thu, Jun 08, 2006 at 03:02:03PM +1000, Anthony Towns wrote:
 Personally, I think non-DDs participating is great; the only problem
 comes when that starts becoming a way for people who aren't members
 of the project to block development; which can happen either by people
 spending time arguing with non-DDs unnecessarily or by people thinking
 that people speak for the project when disagreeing, though they don't.

If people who aren't members are raising valid concerns that need to be
addressed before development can proceed, we shouldn't reject that input on
the basis of membership and call it blocking development.

Likewise, there are plenty of DD's whose S/N ratio is pretty high, and are
guilty of what you are accusing non-DD's of doing.

Both DD's and non-DD's troll, create flamewars, and otherwise cause issues
that block development.  Putting it in terms of DD's versus non-DD's is just
prejudice and elitism at its worst.

--Adam

-- 
Adam McKenna  [EMAIL PROTECTED]  [EMAIL PROTECTED]


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



Re: Bug#363486: dpkg: [update-alternatives] New categories for: WORD, EXCEL, MEDIA-PLAYER etc.

2006-06-13 Thread Jari Aalto+mail.linux
* Tue 2006-06-13 Josselin Mouette joss AT debian.org
* Message-Id: 1150231486.17236.21.camel AT utena.localnet
 Le lundi 12 juin 2006 à 20:44 +0200, Kurt Roeckx a écrit :

 I think you're not very clear in what you're asking, so I'm going
 to try and explain what I think you said.
 
 If you open a file in a file browser, or you open it thru a web
 browser or something, it might have a mime type assosiated with
 it.  So what I think you suggest is that based on the mime-type
 we start an application that should be able to handle that
 mime-type.

 This is what the Freedesktop.org MIME database achieves. No need to
 reinvent what is already a widespread standard.

The proposal here talks about differnt thing, but indirectly concerns
the mime types, which are used to associate actions to certain file
extensions.

Command line usage (or from Window manager menu):

call: x-spreadsheet

instead of

call: name-of-the-program-that-user-may-not-have

The mime types benefits from the alternatives framework too, whcih
currently use hard coded names (programs that user may not have
installed:

application/msexcel; oocalc '%s ...

Whereas the entried would better read:

application/msexcel; x-spreadsheet '%s ...

And the user selected program were configured with (and programs available
would register themselves into):

update-alternatived --config x-spreadsheet

Jari






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



Re: Bug#363486: dpkg: [update-alternatives] New categories for: WORD, EXCEL, MEDIA-PLAYER etc.

2006-06-13 Thread Hendrik Sattler
Am Mittwoch, 14. Juni 2006 00:53 schrieb Jari Aalto+mail.linux:
 * Tue 2006-06-13 Josselin Mouette joss AT debian.org
 * Message-Id: 1150231486.17236.21.camel AT utena.localnet

  Le lundi 12 juin 2006 à 20:44 +0200, Kurt Roeckx a écrit :
  I think you're not very clear in what you're asking, so I'm going
  to try and explain what I think you said.
 
  If you open a file in a file browser, or you open it thru a web
  browser or something, it might have a mime type assosiated with
  it.  So what I think you suggest is that based on the mime-type
  we start an application that should be able to handle that
  mime-type.
 
  This is what the Freedesktop.org MIME database achieves. No need to
  reinvent what is already a widespread standard.

 The proposal here talks about differnt thing, but indirectly concerns
 the mime types, which are used to associate actions to certain file
 extensions.

Why not have something that starts the proper program according to the given 
mimetype? E.g.:
x-mime-handler application/whatever

This program can make use of the .desktop files. If the .desktop files cannot 
do this, yet, the standard for them should be extended to make it possible 
instead of inventing yet another.

Note that the alternative-System has one major drawback: it reflects the 
choice of the administrator only, not the one of the user. And those two 
_often_ do not match.
It is thus not a good choice for forced desktop behaviour.

Another problem is the missing option compatibility between all of those 
programs and thus only offers very limited usage of the used programs. And it 
hides the problem that you have to get used to a program to efficiently use 
it, e.g. KWord has many differences when compared to OpenOffice Writer.

And the last point: you have icons on a desktop (or in a menu or whatever) and 
don't have to remember strange names, anyway. Users that start everything 
from a shell usually do not use such (mainly mouse-operated) programs.

HS


pgpnklO3xfVej.pgp
Description: PGP signature


Re: Bug#363486: dpkg: [update-alternatives] New categories for: WORD, EXCEL, MEDIA-PLAYER etc.

2006-06-13 Thread Jari Aalto+mail.linux
* Wed 2006-06-14 Hendrik Sattler debian AT hendrik-sattler.de

 The proposal here talks about differnt thing, but indirectly concerns
 the mime types, which are used to associate actions to certain file
 extensions.

 Why not have something that starts the proper program according to the given 
 mimetype? E.g.:
 x-mime-handler application/whatever

 This program can make use of the .desktop files. If the .desktop files cannot 
 do this, yet, the standard for them should be extended to make it possible 
 instead of inventing yet another.

Hm. How does that work from command line? Or from X programs that have
fields like:

 Run program: _

As I understand, these require the name of executable and the
alternatives system does that. Like providing

sensible-editor

I'm not familiar with the .desktop files but I assume they belong only
to environments like Gnome and KDE. How would they be used with small
window managers, that simply contain plug menu item name here, call
program approach?

 Note that the alternative-System has one major drawback: it reflects the 
 choice of the administrator only, not the one of the user. And those two 
 _often_ do not match.

90% of the Linux installations or more are personal PCs. For corporate
wide installations, the choice of fixed programs is preferred.

I don't see real obstacle here. Granted that the alternatives system
should be extended to look for

$HOME/debian/alternatives

Before checking

/etc/laternatives

Perhaps I should file a wishlist for it.

 Another problem is the missing option compatibility between all of those 
 programs and thus only offers very limited usage of the used programs. And it 
 hides the problem that you have to get used to a program to efficiently use 
 it, e.g. KWord has many differences when compared to OpenOffice Writer.

I believe the need to pass options to programs is beyond the scope of
this.

 And the last point: you have icons on a desktop (or in a menu or whatever) 
 and 
 don't have to remember strange names, anyway. Users that start everything 
 from a shell usually do not use such (mainly mouse-operated) programs.

There are 20+ window managers out there that do not have icons. Not
everybody is capable of running KDE/Gnome that drain all memory from
average systems ( 400Mhz .. 1500Mhz).

We can forget KDE an Gnome (and XFCE?) altogether from this picture,
because they are completely self contained and any invention in there
cannot be used outside of them.

The proposal talks about providing framework for Window managers that
do not have sophisticated program control mechanism. This also means
that it is impossible to ship reasonable default menus, when there is
no infrastructure in place to use.

Jari


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



Re: CDBS and dh_install

2006-06-13 Thread Manoj Srivastava
On 13 Jun 2006, George Danchev said:

 On Saturday 10 June 2006 15:57, Marc Dequènes wrote:
 --cut--
 Until this is solved, i'm still maintaining my original version,
 since more people use it than the one in the package, but this is
 not an ideal situation.

 Ok, time to ask a real question about cdbs ;-) I assume you are
 pretty much familiar with it and its strengths and weaknesses, hence
 my little problem follows:

 my debian/rules (in which I have my self-written target, no it is
 not supported by cdbs yet)

I do not think your make file does what you think it does. It
 replaces, instead of enhancing, the single colon rule that CDBS
 uses.  

 * what couses that, and how to escape that annoying warn ?


common-configure-arch common-configure-indep:: myowntarget

myowntarget:
./configure --prefix=/usr
touch debian/stamp-autotools-files

 * where is that described in cdbs official or unofficial docs ?

Err, if you look at the warning, you see where it comes
 from. Looking at the target, you can see  that
 debian/stamp-autotools-files is a double colon dependency of  targets
 common-configure-arch and common-configure-indep. So, it is simple as
 to how one introduces the additional commands ...

 Thanks. Excuse moa if I failed to see the obvious ;-)

There is a difference between double colon dependencies and
 single colon dependencies. You'll be well served to know the
 difference.

manoj

==
One file can be the target of several rules.  All the prerequisites
mentioned in all the rules are merged into one list of prerequisites for
the target.  If the target is older than any prerequisite from any rule,
the commands are executed.

   There can only be one set of commands to be executed for a file.  If
more than one rule gives commands for the same file, `make' uses the
last set given and prints an error message.  (As a special case, if the
file's name begins with a dot, no error message is printed.  This odd
behavior is only for compatibility with other implementations of
`make'... you should avoid using it).  Occasionally it is useful to
have the same target invoke multiple commands which are defined in
different parts of your makefile; you can use double-colon rules
(*note Double-Colon::) for this.


Double-colon rules are rules written with `::' instead of `:' after
the target names.  They are handled differently from ordinary rules
when the same target appears in more than one rule.

   When a target appears in multiple rules, all the rules must be the
same type: all ordinary, or all double-colon.  If they are
double-colon, each of them is independent of the others.  Each
double-colon rule's commands are executed if the target is older than
any prerequisites of that rule.  If there are no prerequisites for that
rule, its commands are always executed (even if the target already
exists).  This can result in executing none, any, or all of the
double-colon rules.

   Double-colon rules with the same target are in fact completely
separate from one another.  Each double-colon rule is processed
individually, just as rules with different targets are processed.

   The double-colon rules for a target are executed in the order they
appear in the makefile.  However, the cases where double-colon rules
really make sense are those where the order of executing the commands
would not matter.

==

-- 
You will get what you deserve.
Manoj Srivastava   [EMAIL PROTECTED]  http://www.debian.org/%7Esrivasta/
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


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



Re: Non-DD's in debian-legal

2006-06-13 Thread Adam McKenna
On Tue, Jun 13, 2006 at 03:11:42PM -0700, Adam McKenna wrote:
 Likewise, there are plenty of DD's whose S/N ratio is pretty high, and are

(pretty low, that is..)

--Adam


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



Accepted glitz 0.5.6-1 (source i386)

2006-06-13 Thread Dave Beckett
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 22:07:00 -0700
Source: glitz
Binary: libglitz-glx1 libglitz-glx1-dev libglitz1 libglitz1-dev
Architecture: source i386
Version: 0.5.6-1
Distribution: unstable
Urgency: low
Maintainer: Dave Beckett [EMAIL PROTECTED]
Changed-By: Dave Beckett [EMAIL PROTECTED]
Description: 
 libglitz-glx1 - Glitz OpenGL library GLX backend
 libglitz-glx1-dev - Glitz OpenGL library GLX backend development libraries and 
header
 libglitz1  - Glitz OpenGL image compositing library
 libglitz1-dev - OpenGL image compositing library development libraries and 
header
Changes: 
 glitz (0.5.6-1) unstable; urgency=low
 .
   * New upstream release
   * Debhelper 5
   * Standards-Version 3.7.2
Files: 
 3ccaf19d123f54a7328ff4347ea98b0c 694 libs optional glitz_0.5.6-1.dsc
 c507f140e06aedc958edda4c 459224 libs optional glitz_0.5.6.orig.tar.gz
 40dccf7df0c6ad75bafba4440b2979d3 2544 libs optional glitz_0.5.6-1.diff.gz
 9cef4ee91a2b2502d0fa0edc0de98724 89800 libdevel optional 
libglitz1-dev_0.5.6-1_i386.deb
 51bbdca41835225e535375d069e7ff72 80382 libs optional libglitz1_0.5.6-1_i386.deb
 476d24400cf3714f8798815cd1026363 31312 libdevel optional 
libglitz-glx1-dev_0.5.6-1_i386.deb
 178565638e07ccbfb0a5f8d9a7b89580 30190 libs optional 
libglitz-glx1_0.5.6-1_i386.deb

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

iD8DBQFEjkt+Q+ySUE9xlVoRAvqhAJ9WOXTktpGdEj275D/zS1NCALRqqQCfZA/p
00I5ATr5SMIXN1zy2IiDKSM=
=8sY8
-END PGP SIGNATURE-


Accepted:
glitz_0.5.6-1.diff.gz
  to pool/main/g/glitz/glitz_0.5.6-1.diff.gz
glitz_0.5.6-1.dsc
  to pool/main/g/glitz/glitz_0.5.6-1.dsc
glitz_0.5.6.orig.tar.gz
  to pool/main/g/glitz/glitz_0.5.6.orig.tar.gz
libglitz-glx1-dev_0.5.6-1_i386.deb
  to pool/main/g/glitz/libglitz-glx1-dev_0.5.6-1_i386.deb
libglitz-glx1_0.5.6-1_i386.deb
  to pool/main/g/glitz/libglitz-glx1_0.5.6-1_i386.deb
libglitz1-dev_0.5.6-1_i386.deb
  to pool/main/g/glitz/libglitz1-dev_0.5.6-1_i386.deb
libglitz1_0.5.6-1_i386.deb
  to pool/main/g/glitz/libglitz1_0.5.6-1_i386.deb


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



Accepted dput 0.9.2.23 (source all)

2006-06-13 Thread Thomas Viehmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 08:21:05 +0200
Source: dput
Binary: dput
Architecture: source all
Version: 0.9.2.23
Distribution: unstable
Urgency: low
Maintainer: Thomas Viehmann [EMAIL PROTECTED]
Changed-By: Thomas Viehmann [EMAIL PROTECTED]
Description: 
 dput   - Debian package upload tool
Closes: 369885
Changes: 
 dput (0.9.2.23) unstable; urgency=low
 .
   * Don't include paths in .upload. Closes: #369885.
Files: 
 bd3cb1f4cd9794d89baa39913e102ab1 641 devel optional dput_0.9.2.23.dsc
 10867f2fd2558fe0c3b85c871a558ddd 46399 devel optional dput_0.9.2.23.tar.gz
 4b6e070507352708c0b03e105c0f607a 39494 devel optional dput_0.9.2.23_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)
Comment: GnuPG key at http://thomas.viehmann.net/

iD8DBQFEjls7riZpaaIa1PkRAoa7AKCcRKCHf5HKCMkHyhKHu/EdgY/H5ACdG1i7
d9lE38THu4SzzQmEzbEp8PQ=
=b9Xk
-END PGP SIGNATURE-


Accepted:
dput_0.9.2.23.dsc
  to pool/main/d/dput/dput_0.9.2.23.dsc
dput_0.9.2.23.tar.gz
  to pool/main/d/dput/dput_0.9.2.23.tar.gz
dput_0.9.2.23_all.deb
  to pool/main/d/dput/dput_0.9.2.23_all.deb


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



Accepted nant 0.84+0.85-rc4-1 (source all)

2006-06-13 Thread Dave Beckett
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 23:30:36 -0700
Source: nant
Binary: nant
Architecture: source all
Version: 0.84+0.85-rc4-1
Distribution: unstable
Urgency: low
Maintainer: Dave Beckett [EMAIL PROTECTED]
Changed-By: Dave Beckett [EMAIL PROTECTED]
Description: 
 nant   - .NET build tool similar to Ant
Closes: 372588
Changes: 
 nant (0.84+0.85-rc4-1) unstable; urgency=low
 .
   * New upstream release
   * Acknowledge NMU (Closes: #372588)
   * Standards-Version 3.7.2
   * Update to latest CLI policy package split.  Build-Depends-Indep: on
 cli-common-dev, libmono-winforms1.0-cil, libmono-winforms2.0-cil and
 mono-gmcs to get 1.0 and 2.0 packages
   * Removed patches no longer needed:
 - 01-AssemblyInfoTask.cs.patch
 - 02-ScriptTask.cs.patch
 - 03-XmlResultFormatter.cs.patch
 - 04-SourceControl.patch
 - 05-ExceptionTest.cs
Files: 
 ba0ca1049ee35c524037443a18f79d59 801 devel optional nant_0.84+0.85-rc4-1.dsc
 41980ca70e8e14bc26afd6f796eac4b3 2125989 devel optional 
nant_0.84+0.85-rc4.orig.tar.gz
 f246e301a7153f6427585054c09edf91 4495 devel optional 
nant_0.84+0.85-rc4-1.diff.gz
 dfc11f2b30d2dc241ba9ddf5a4cbd09d 2156008 devel optional 
nant_0.84+0.85-rc4-1_all.deb

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

iD8DBQFEjlvKQ+ySUE9xlVoRAuiVAJ4vaV1whP16CVdtRNAGJ/wfZz9dSQCdEIzg
Om2mAyfn7QOnff51p28gEsM=
=Ckta
-END PGP SIGNATURE-


Accepted:
nant_0.84+0.85-rc4-1.diff.gz
  to pool/main/n/nant/nant_0.84+0.85-rc4-1.diff.gz
nant_0.84+0.85-rc4-1.dsc
  to pool/main/n/nant/nant_0.84+0.85-rc4-1.dsc
nant_0.84+0.85-rc4-1_all.deb
  to pool/main/n/nant/nant_0.84+0.85-rc4-1_all.deb
nant_0.84+0.85-rc4.orig.tar.gz
  to pool/main/n/nant/nant_0.84+0.85-rc4.orig.tar.gz


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



Accepted zabbix 1:1.1-4 (source all amd64)

2006-06-13 Thread Michael Ablassmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu,  8 Jun 2006 09:33:06 +0200
Source: zabbix
Binary: zabbix-server-mysql zabbix-agent zabbix-frontend-php
Architecture: source amd64 all
Version: 1:1.1-4
Distribution: unstable
Urgency: low
Maintainer: Zabbix Maintainers [EMAIL PROTECTED]
Changed-By: Michael Ablassmeier [EMAIL PROTECTED]
Description: 
 zabbix-agent - software for monitoring of your networks -- agent
 zabbix-frontend-php - software for monitoring of your servers -- php frontend
 zabbix-server-mysql - software for monitoring of your networks -- server
Changes: 
 zabbix (1:1.1-4) unstable; urgency=low
 .
   * zabbix-frontend-php:
  + install /etc/zabbix/db.inc.php with more restrictive
file permissions.
Files: 
 73aadff3387a744dc9ad704c9b653336 764 net optional zabbix_1.1-4.dsc
 7f7d1ec103c550d646c4eddb5f74014f 24265 net optional zabbix_1.1-4.diff.gz
 6c69fc58004e1eb1a559c41fded68bce 114304 net optional 
zabbix-agent_1.1-4_amd64.deb
 b1161aa1f2b0468538f4f728cd9bcec1 205712 net optional 
zabbix-server-mysql_1.1-4_amd64.deb
 ac2a17ad06461a7a4d972efb0f12beca 301004 net optional 
zabbix-frontend-php_1.1-4_all.deb

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

iD8DBQFEjmuKEFV7g4B8rCURAlNEAJsGgezUGH86VstuQr5YfsZAyr65lQCgoa0L
7hbOUp85mw7MVPwKBlOKhUk=
=ngdu
-END PGP SIGNATURE-


Accepted:
zabbix-agent_1.1-4_amd64.deb
  to pool/main/z/zabbix/zabbix-agent_1.1-4_amd64.deb
zabbix-frontend-php_1.1-4_all.deb
  to pool/main/z/zabbix/zabbix-frontend-php_1.1-4_all.deb
zabbix-server-mysql_1.1-4_amd64.deb
  to pool/main/z/zabbix/zabbix-server-mysql_1.1-4_amd64.deb
zabbix_1.1-4.diff.gz
  to pool/main/z/zabbix/zabbix_1.1-4.diff.gz
zabbix_1.1-4.dsc
  to pool/main/z/zabbix/zabbix_1.1-4.dsc


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



Accepted lvm2 2.02.06-1 (source amd64)

2006-06-13 Thread Bastian Blank
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 07:35:37 +
Source: lvm2
Binary: clvm lvm2-udeb lvm2
Architecture: source amd64
Version: 2.02.06-1
Distribution: unstable
Urgency: low
Maintainer: Debian LVM Team [EMAIL PROTECTED]
Changed-By: Bastian Blank [EMAIL PROTECTED]
Description: 
 clvm   - Cluster LVM Daemon for lvm2
 lvm2   - The Linux Logical Volume Manager
 lvm2-udeb  - The Linux Logical Volume Manager (udeb)
Changes: 
 lvm2 (2.02.06-1) unstable; urgency=low
 .
   * New upstream version.
Files: 
 00b9098333d05fb994365dab9316a2dc 797 admin optional lvm2_2.02.06-1.dsc
 12ddd096e163cce8eaa56d68357cfc5f 497026 admin optional lvm2_2.02.06.orig.tar.gz
 d07838a9d3eaba66eba581a82e2ab4b8 19776 admin optional lvm2_2.02.06-1.diff.gz
 9c11df8dd3908b90327711ac0a9d9cdb 311076 admin optional lvm2_2.02.06-1_amd64.deb
 0b9345567aaf73f407fe7b60c4a4e278 200998 debian-installer optional 
lvm2-udeb_2.02.06-1_amd64.udeb
 89e5620e675e9388ad249707732f3d36 194108 admin extra clvm_2.02.06-1_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAkSOa6cACgkQLkAIIn9ODhGD8gCeIfoYSABkfXW6ETUdaR/4dQT0
o5cAn09eRzdnF0XON4fIg3JyuMJbLcJW
=6vI1
-END PGP SIGNATURE-


Accepted:
clvm_2.02.06-1_amd64.deb
  to pool/main/l/lvm2/clvm_2.02.06-1_amd64.deb
lvm2-udeb_2.02.06-1_amd64.udeb
  to pool/main/l/lvm2/lvm2-udeb_2.02.06-1_amd64.udeb
lvm2_2.02.06-1.diff.gz
  to pool/main/l/lvm2/lvm2_2.02.06-1.diff.gz
lvm2_2.02.06-1.dsc
  to pool/main/l/lvm2/lvm2_2.02.06-1.dsc
lvm2_2.02.06-1_amd64.deb
  to pool/main/l/lvm2/lvm2_2.02.06-1_amd64.deb
lvm2_2.02.06.orig.tar.gz
  to pool/main/l/lvm2/lvm2_2.02.06.orig.tar.gz


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



Accepted asterisk 1:1.2.7.1.dfsg-3 (source all i386)

2006-06-13 Thread Mark Purcell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 05:11:44 +0100
Source: asterisk
Binary: asterisk-h323 asterisk-web-vmail asterisk asterisk-classic asterisk-dev 
asterisk-doc asterisk-sounds-main asterisk-bristuff asterisk-config
Architecture: source all i386
Version: 1:1.2.7.1.dfsg-3
Distribution: unstable
Urgency: high
Maintainer: Debian VoIP Team [EMAIL PROTECTED]
Changed-By: Mark Purcell [EMAIL PROTECTED]
Description: 
 asterisk   - Open Source Private Branch Exchange (PBX) - dummy package
 asterisk-bristuff - Open Source Private Branch Exchange (PBX) - 
BRIstuff-enabled vers
 asterisk-classic - Open Source Private Branch Exchange (PBX) - original Digium 
versi
 asterisk-config - config files for asterisk
 asterisk-dev - development files for asterisk
 asterisk-doc - documentation for asterisk
 asterisk-h323 - asterisk H.323 VoIP channel
 asterisk-sounds-main - sound files for asterisk
 asterisk-web-vmail - Web-based (CGI) voice mail interface for Asterisk
Changes: 
 asterisk (1:1.2.7.1.dfsg-3) unstable; urgency=high
 .
   * Urgency high as this is a security fix [CVE-2006-2898]
   * Added 99_CVE-2006-2898.dpatch from Joey Schulze
 - Fixes: Bug in the IAX2 channel allows remote attackers to craft
  a denial of service.
Files: 
 5c4969cbcb8f24f0d190a51df8600b46 1399 comm optional asterisk_1.2.7.1.dfsg-3.dsc
 b3fe94c4b096313c4b023da4b09d261d 142293 comm optional 
asterisk_1.2.7.1.dfsg-3.diff.gz
 a54d53c0bbd6fa89b39a9e430c558952 218410 comm optional 
asterisk_1.2.7.1.dfsg-3_all.deb
 e51b36a3927991100ea5365b0b3c1082 18814318 doc optional 
asterisk-doc_1.2.7.1.dfsg-3_all.deb
 26ea2ae65eef0d3ce5d49e94f3a33beb 144058 devel optional 
asterisk-dev_1.2.7.1.dfsg-3_all.deb
 9f30872b3a7f434e116653f5652fbb32 1475384 comm optional 
asterisk-sounds-main_1.2.7.1.dfsg-3_all.deb
 d08b5e0b68f0d1bd7f00d411e5dfb683 48444 comm optional 
asterisk-web-vmail_1.2.7.1.dfsg-3_all.deb
 070a145a9d0ec5977abbe2d37cff5be1 104632 comm optional 
asterisk-config_1.2.7.1.dfsg-3_all.deb
 b5c779a39a9965a91b494107e6be8058 1674878 comm optional 
asterisk-classic_1.2.7.1.dfsg-3_i386.deb
 0c9d4ff91129f3eff633a32576e4c724 1703258 comm optional 
asterisk-bristuff_1.2.7.1.dfsg-3_i386.deb
 3763ff3420690887c206beb03d0f7760 105248 comm optional 
asterisk-h323_1.2.7.1.dfsg-3_i386.deb

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

iD8DBQFEjnZNoCzanz0IthIRAilMAJ9jJLmJB4bJMd6zQxN3Sbsgmj4WygCdFsHn
0GVZSrKBpNtYnekoBvNhR8Y=
=wLyz
-END PGP SIGNATURE-


Accepted:
asterisk-bristuff_1.2.7.1.dfsg-3_i386.deb
  to pool/main/a/asterisk/asterisk-bristuff_1.2.7.1.dfsg-3_i386.deb
asterisk-classic_1.2.7.1.dfsg-3_i386.deb
  to pool/main/a/asterisk/asterisk-classic_1.2.7.1.dfsg-3_i386.deb
asterisk-config_1.2.7.1.dfsg-3_all.deb
  to pool/main/a/asterisk/asterisk-config_1.2.7.1.dfsg-3_all.deb
asterisk-dev_1.2.7.1.dfsg-3_all.deb
  to pool/main/a/asterisk/asterisk-dev_1.2.7.1.dfsg-3_all.deb
asterisk-doc_1.2.7.1.dfsg-3_all.deb
  to pool/main/a/asterisk/asterisk-doc_1.2.7.1.dfsg-3_all.deb
asterisk-h323_1.2.7.1.dfsg-3_i386.deb
  to pool/main/a/asterisk/asterisk-h323_1.2.7.1.dfsg-3_i386.deb
asterisk-sounds-main_1.2.7.1.dfsg-3_all.deb
  to pool/main/a/asterisk/asterisk-sounds-main_1.2.7.1.dfsg-3_all.deb
asterisk-web-vmail_1.2.7.1.dfsg-3_all.deb
  to pool/main/a/asterisk/asterisk-web-vmail_1.2.7.1.dfsg-3_all.deb
asterisk_1.2.7.1.dfsg-3.diff.gz
  to pool/main/a/asterisk/asterisk_1.2.7.1.dfsg-3.diff.gz
asterisk_1.2.7.1.dfsg-3.dsc
  to pool/main/a/asterisk/asterisk_1.2.7.1.dfsg-3.dsc
asterisk_1.2.7.1.dfsg-3_all.deb
  to pool/main/a/asterisk/asterisk_1.2.7.1.dfsg-3_all.deb


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



Accepted libemail-valid-perl 0.171-1 (source all)

2006-06-13 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 00:17:17 +0200
Source: libemail-valid-perl
Binary: libemail-valid-perl
Architecture: source all
Version: 0.171-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libemail-valid-perl - Check validity of Internet email addresses
Changes: 
 libemail-valid-perl (0.171-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 4171419482d5de30317161cb7491ee76 877 perl optional 
libemail-valid-perl_0.171-1.dsc
 a2e5d2b8c48f6e5098955a971ee2 9142 perl optional 
libemail-valid-perl_0.171.orig.tar.gz
 ddc6b03fdaee6a04542032948a7781ba 3744 perl optional 
libemail-valid-perl_0.171-1.diff.gz
 a7a2e82ce497e79e3b6dc4c6c0c4819c 17708 perl optional 
libemail-valid-perl_0.171-1_all.deb

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

iD8DBQFEjnzW+NMfSd6w7DERAqEAAJ9Gopv0/V9msasO79JPek+/VKgRUACfXoQb
+SlB3C7BDvoE5IMtcZVxc9I=
=ofrq
-END PGP SIGNATURE-


Accepted:
libemail-valid-perl_0.171-1.diff.gz
  to pool/main/libe/libemail-valid-perl/libemail-valid-perl_0.171-1.diff.gz
libemail-valid-perl_0.171-1.dsc
  to pool/main/libe/libemail-valid-perl/libemail-valid-perl_0.171-1.dsc
libemail-valid-perl_0.171-1_all.deb
  to pool/main/libe/libemail-valid-perl/libemail-valid-perl_0.171-1_all.deb
libemail-valid-perl_0.171.orig.tar.gz
  to pool/main/libe/libemail-valid-perl/libemail-valid-perl_0.171.orig.tar.gz


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



Accepted python-defaults 2.3.5-8 (source all)

2006-06-13 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 09:44:22 +0200
Source: python-defaults
Binary: python-dev python-doc python-dbg python-minimal python-examples 
python-all-dev idle python python-all
Architecture: source all
Version: 2.3.5-8
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 idle   - An IDE for Python using Tkinter (default version)
 python - An interactive high-level object-oriented language (default versi
 python-all - Package depending on all supported Python runtime versions
 python-all-dev - Package depending on all supported Python development packages
 python-dbg - Debug Build of the Python Interpreter (version 2.3)
 python-dev - Header files and a static library for Python (default)
 python-examples - Examples for the Python language (default version)
 python-minimal - A minimal subset of the Python language (default version)
Changes: 
 python-defaults (2.3.5-8) unstable; urgency=low
 .
   * Include version 0.4.1.0 of the python policy.
   * Fix 'pyversions -i'.
Files: 
 349608968957e8546524a09004b1325c 666 python optional 
python-defaults_2.3.5-8.dsc
 9c9b1dbfa6cba346b006e44491603303 210456 python optional 
python-defaults_2.3.5-8.tar.gz
 fcd4fb259e57f5a93008b3524b50f150 139942 python standard python_2.3.5-8_all.deb
 c40c16a37c34b9bbd2cc9edd9029e321 7418 python standard 
python-minimal_2.3.5-8_all.deb
 ed1c725f5e2d8742ebceca41fe1bfdb2 7384 python optional 
python-examples_2.3.5-8_all.deb
 911e07f234a60bb92bd256f63eec6d4a 7444 python optional 
python-dev_2.3.5-8_all.deb
 e7652f9c7c2545b40305011c5e44ec0b 7490 python optional idle_2.3.5-8_all.deb
 156e29169cab81b32722f383729fd045 7424 python extra python-dbg_2.3.5-8_all.deb
 48a334c82e00812ef853ba0e72ea3e53 7394 python optional 
python-all_2.3.5-8_all.deb
 fa12b79fde28c72c97de2832e153f080 7404 python optional 
python-all-dev_2.3.5-8_all.deb

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

iD8DBQFEjnSQStlRaw+TLJwRAltbAJ0cpsqleZ/FcXbxNAa14jJdYcNF7ACcD3PS
2qfbUzZ2pegws2uuu6MtX2g=
=X2p/
-END PGP SIGNATURE-


Accepted:
idle_2.3.5-8_all.deb
  to pool/main/p/python-defaults/idle_2.3.5-8_all.deb
python-all-dev_2.3.5-8_all.deb
  to pool/main/p/python-defaults/python-all-dev_2.3.5-8_all.deb
python-all_2.3.5-8_all.deb
  to pool/main/p/python-defaults/python-all_2.3.5-8_all.deb
python-dbg_2.3.5-8_all.deb
  to pool/main/p/python-defaults/python-dbg_2.3.5-8_all.deb
python-defaults_2.3.5-8.dsc
  to pool/main/p/python-defaults/python-defaults_2.3.5-8.dsc
python-defaults_2.3.5-8.tar.gz
  to pool/main/p/python-defaults/python-defaults_2.3.5-8.tar.gz
python-dev_2.3.5-8_all.deb
  to pool/main/p/python-defaults/python-dev_2.3.5-8_all.deb
python-examples_2.3.5-8_all.deb
  to pool/main/p/python-defaults/python-examples_2.3.5-8_all.deb
python-minimal_2.3.5-8_all.deb
  to pool/main/p/python-defaults/python-minimal_2.3.5-8_all.deb
python_2.3.5-8_all.deb
  to pool/main/p/python-defaults/python_2.3.5-8_all.deb


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



Accepted python-central 0.4.11 (source all)

2006-06-13 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 21:32:26 +0200
Source: python-central
Binary: python-central
Architecture: source all
Version: 0.4.11
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 python-central - register and build utility for Python packages
Changes: 
 python-central (0.4.11) unstable; urgency=low
 .
* Add man page pycentral(1), update dh_pycentral(1) man page.
* Depend on python (= 2.3.5-7), using pyversions.
* Only consider the installed _and_ supported runtimes.
Files: 
 3d32a2d54c34149a407f34c0e375436f 582 python standard python-central_0.4.11.dsc
 38a043d574389b8de53df24ed59c8c70 16978 python standard 
python-central_0.4.11.tar.gz
 837481bcb8f535d046030f8df1662dcb 19022 python standard 
python-central_0.4.11_all.deb

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

iD8DBQFEjnUdStlRaw+TLJwRAnz9AKCK6xEnql0h/HrKI8dqTD0AOmQSZACgv+xZ
443woHfbf4HUtClwg1bYqCI=
=Jazu
-END PGP SIGNATURE-


Accepted:
python-central_0.4.11.dsc
  to pool/main/p/python-central/python-central_0.4.11.dsc
python-central_0.4.11.tar.gz
  to pool/main/p/python-central/python-central_0.4.11.tar.gz
python-central_0.4.11_all.deb
  to pool/main/p/python-central/python-central_0.4.11_all.deb


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



Accepted python-defaults 2.4.3-4 (source all)

2006-06-13 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 09:44:22 +0200
Source: python-defaults
Binary: python-dev python-doc python-dbg python-minimal python-examples 
python-all-dev idle python python-all
Architecture: source all
Version: 2.4.3-4
Distribution: experimental
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 idle   - An IDE for Python using Tkinter (default version)
 python - An interactive high-level object-oriented language (default versi
 python-all - Package depending on all supported Python runtime versions
 python-all-dev - Package depending on all supported Python development packages
 python-dbg - Debug Build of the Python Interpreter (version 2.4)
 python-dev - Header files and a static library for Python (default)
 python-examples - Examples for the Python language (default version)
 python-minimal - A minimal subset of the Python language (default version)
Changes: 
 python-defaults (2.4.3-4) experimental; urgency=low
 .
   * Include version 0.4.1.0 of the python policy.
   * Fix 'pyversions -i'.
Files: 
 4de387b1f4d86319b63afd3ce0fa1266 685 python optional 
python-defaults_2.4.3-4.dsc
 839b62a2c7c1bf3d7e6c854efcf0baa4 209106 python optional 
python-defaults_2.4.3-4.tar.gz
 fb52b79513b4dbcf309817826fbb6242 136598 python standard python_2.4.3-4_all.deb
 8eace4e9f4b689c85592456a5740e9d0 10984 python standard 
python-minimal_2.4.3-4_all.deb
 0c9b0b79d508f57be067c527ad7aee73 836 python optional 
python-examples_2.4.3-4_all.deb
 193b2919113cdbf7f61229216fffc93b 890 python optional python-dev_2.4.3-4_all.deb
 cfa8a505482d3850e9f070ac62183f6f 912 python optional idle_2.4.3-4_all.deb
 4c7b8cf6a7761bb1db32116a7beb0aee 872 python extra python-dbg_2.4.3-4_all.deb
 0fe08ae1d8566d14bb300214eadd9d42 840 python optional python-all_2.4.3-4_all.deb
 e512964308880ec2a4bd48bf1088eeea 856 python optional 
python-all-dev_2.4.3-4_all.deb

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

iD8DBQFEjoW/StlRaw+TLJwRAhvwAJ4yCjKO3nlIzUz1jIyPQbIke7sJPQCeK65G
4Bt7ux7c3bCq3umi9PwFVpY=
=mMgP
-END PGP SIGNATURE-


Accepted:
idle_2.4.3-4_all.deb
  to pool/main/p/python-defaults/idle_2.4.3-4_all.deb
python-all-dev_2.4.3-4_all.deb
  to pool/main/p/python-defaults/python-all-dev_2.4.3-4_all.deb
python-all_2.4.3-4_all.deb
  to pool/main/p/python-defaults/python-all_2.4.3-4_all.deb
python-dbg_2.4.3-4_all.deb
  to pool/main/p/python-defaults/python-dbg_2.4.3-4_all.deb
python-defaults_2.4.3-4.dsc
  to pool/main/p/python-defaults/python-defaults_2.4.3-4.dsc
python-defaults_2.4.3-4.tar.gz
  to pool/main/p/python-defaults/python-defaults_2.4.3-4.tar.gz
python-dev_2.4.3-4_all.deb
  to pool/main/p/python-defaults/python-dev_2.4.3-4_all.deb
python-examples_2.4.3-4_all.deb
  to pool/main/p/python-defaults/python-examples_2.4.3-4_all.deb
python-minimal_2.4.3-4_all.deb
  to pool/main/p/python-defaults/python-minimal_2.4.3-4_all.deb
python_2.4.3-4_all.deb
  to pool/main/p/python-defaults/python_2.4.3-4_all.deb


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



Accepted pdl 1:2.4.2-6 (source i386)

2006-06-13 Thread Henning Glawe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 10:14:39 +0200
Source: pdl
Binary: pdl
Architecture: source i386
Version: 1:2.4.2-6
Distribution: unstable
Urgency: low
Maintainer: Henning Glawe [EMAIL PROTECTED]
Changed-By: Henning Glawe [EMAIL PROTECTED]
Description: 
 pdl- perl data language: Perl extensions for numerics
Changes: 
 pdl (1:2.4.2-6) unstable; urgency=low
 .
   * Graphics::TriD did not compile anymore. Backport this module from HEAD.
   * update standarts-version to 3.7.2
   * build-depend on libxext-dev, as the TriD GL needs it
   * incorporate OpenGL build fix from upstream BTS 1505132
Files: 
 bf8c3e66a78d38824f150cae639fd2e5 757 math optional pdl_2.4.2-6.dsc
 153eb136a3b839a6a52d283aaa63f9fe 19713 math optional pdl_2.4.2-6.diff.gz
 f0013956e348cb54c6a790b105535078 4907092 math optional pdl_2.4.2-6_i386.deb

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

iD8DBQFEjnl0gjOm0i0vde8RAlJFAKCH1Igur+OkcP1SDVjOvo8EwRhxRwCgy7Zz
FE0FaWdwSxAmYG8wMpKvlUk=
=/eTS
-END PGP SIGNATURE-


Accepted:
pdl_2.4.2-6.diff.gz
  to pool/main/p/pdl/pdl_2.4.2-6.diff.gz
pdl_2.4.2-6.dsc
  to pool/main/p/pdl/pdl_2.4.2-6.dsc
pdl_2.4.2-6_i386.deb
  to pool/main/p/pdl/pdl_2.4.2-6_i386.deb


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



Accepted debdelta 0.14 (source i386)

2006-06-13 Thread A Mennucc1
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 12:17:31 +0200
Source: debdelta
Binary: debdelta
Architecture: source i386
Version: 0.14
Distribution: unstable
Urgency: low
Maintainer: A Mennucc1 [EMAIL PROTECTED]
Changed-By: A Mennucc1 [EMAIL PROTECTED]
Description: 
 debdelta   - diff and patch utilities which work with Debian packages
Changes: 
 debdelta (0.14) unstable; urgency=low
 .
   * debdeltas: can --clean unusable debdeltas
   * debdelta: corrected bug (cannot gunzip a symlink)
Files: 
 e171b153d24b00d419a7c90ac0490119 480 devel optional debdelta_0.14.dsc
 442308e1fc35fb4d29d4cf30e6589843 71192 devel optional debdelta_0.14.tar.gz
 36172287e3d71afd4054b77cfc806127 28012 devel optional debdelta_0.14_i386.deb

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

iD8DBQFEjpET9B/tjjP8QKQRAnbNAJwK9c2L/IBtCFWjAvS8OAocj6ZvmgCgn17P
kDxMdaLlDKcsmELq+3sVq5g=
=4TYT
-END PGP SIGNATURE-


Accepted:
debdelta_0.14.dsc
  to pool/main/d/debdelta/debdelta_0.14.dsc
debdelta_0.14.tar.gz
  to pool/main/d/debdelta/debdelta_0.14.tar.gz
debdelta_0.14_i386.deb
  to pool/main/d/debdelta/debdelta_0.14_i386.deb


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



Accepted zope2.9 2.9.3-2 (source i386 all)

2006-06-13 Thread Fabio Tranchitella
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 09:57:20 +0200
Source: zope2.9
Binary: zope2.9-sandbox zope2.9
Architecture: source i386 all
Version: 2.9.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian/Ubuntu Zope Team [EMAIL PROTECTED]
Changed-By: Fabio Tranchitella [EMAIL PROTECTED]
Description: 
 zope2.9- Open Source Web Application Server
 zope2.9-sandbox - sandbox instance for the zope2.9 web application server
Closes: 368614
Changes: 
 zope2.9 (2.9.3-2) unstable; urgency=low
 .
   * debian/rules: zope2.9-sandbox should be created by binary-indep.
 (Closes: #368614)
   * debian/patches/deb-zopeconf.dpatch: patch mkzeoinstance to fix the
 python library path.
Files: 
 fddeda1ce41070a5110c0629994c98dd 763 web optional zope2.9_2.9.3-2.dsc
 4d8e9a4ba85a630b286b4a5a6cbee352 11035 web optional zope2.9_2.9.3-2.diff.gz
 d2317b02d0d38a43c432a14b831873be 6776582 web optional zope2.9_2.9.3-2_i386.deb
 f00c9ee1c17a0f0e7f998caa579066e3 9638 web optional 
zope2.9-sandbox_2.9.3-2_all.deb

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

iD8DBQFEjoUIK/juK3+WFWQRAiEtAJ9v7obnfUIlLNEEKVen80YGcZOPQACfQuOW
dZFKr17fjD8ny0KXADBNCyw=
=j3mn
-END PGP SIGNATURE-


Accepted:
zope2.9-sandbox_2.9.3-2_all.deb
  to pool/main/z/zope2.9/zope2.9-sandbox_2.9.3-2_all.deb
zope2.9_2.9.3-2.diff.gz
  to pool/main/z/zope2.9/zope2.9_2.9.3-2.diff.gz
zope2.9_2.9.3-2.dsc
  to pool/main/z/zope2.9/zope2.9_2.9.3-2.dsc
zope2.9_2.9.3-2_i386.deb
  to pool/main/z/zope2.9/zope2.9_2.9.3-2_i386.deb


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



Accepted norwegian 2.0.8-2 (source all amd64)

2006-06-13 Thread Tollef Fog Heen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 12:35:46 +0200
Source: norwegian
Binary: aspell-no myspell-nb inorwegian myspell-nn wnorwegian
Architecture: source all amd64
Version: 2.0.8-2
Distribution: unstable
Urgency: low
Maintainer: Tollef Fog Heen [EMAIL PROTECTED]
Changed-By: Tollef Fog Heen [EMAIL PROTECTED]
Description: 
 aspell-no  - Norwegian dictionary for aspell
 inorwegian - Norwegian dictionary for ispell
 myspell-nb - Norwegian bokmål dictionary for myspell
 myspell-nn - Norwegian nynorsk dictionary for myspell
 wnorwegian - Norwegian wordlist
Changes: 
 norwegian (2.0.8-2) unstable; urgency=low
 .
   * Fix symlinks so we have an UTF8 symlink pointing to nb.hash too.
Files: 
 ea156a089559fe214ac8d58d0e30e63f 762 text optional norwegian_2.0.8-2.dsc
 5b39693783563cbd00522ca6877a1431 11018 text optional norwegian_2.0.8-2.diff.gz
 2fcf228a407817ebb42316150a2bf974 2551204 text optional 
inorwegian_2.0.8-2_amd64.deb
 5a61d4eed11e2b36e356ddcb5f12b8fd 6477916 text optional 
aspell-no_2.0.8-2_amd64.deb
 9654ea143290cadb2e847709f3d6ef1e 2387844 text optional 
wnorwegian_2.0.8-2_all.deb
 8d9a8fbef8053e958e06cc53e43ffb9a 728310 text optional 
myspell-nb_2.0.8-2_all.deb
 65a21107a348ee19d6aced6efa50a9cb 551378 text optional 
myspell-nn_2.0.8-2_all.deb

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

iD8DBQFEjph8QSseMYF6mWoRAlM8AJ4gSM7x9/w3ejvB9jN4sL+XkMtsjgCgg28N
JtLJ4RaWdaf/QRKImlBPnwA=
=4f5e
-END PGP SIGNATURE-


Accepted:
aspell-no_2.0.8-2_amd64.deb
  to pool/main/n/norwegian/aspell-no_2.0.8-2_amd64.deb
inorwegian_2.0.8-2_amd64.deb
  to pool/main/n/norwegian/inorwegian_2.0.8-2_amd64.deb
myspell-nb_2.0.8-2_all.deb
  to pool/main/n/norwegian/myspell-nb_2.0.8-2_all.deb
myspell-nn_2.0.8-2_all.deb
  to pool/main/n/norwegian/myspell-nn_2.0.8-2_all.deb
norwegian_2.0.8-2.diff.gz
  to pool/main/n/norwegian/norwegian_2.0.8-2.diff.gz
norwegian_2.0.8-2.dsc
  to pool/main/n/norwegian/norwegian_2.0.8-2.dsc
wnorwegian_2.0.8-2_all.deb
  to pool/main/n/norwegian/wnorwegian_2.0.8-2_all.deb


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



Accepted dhis-dns-engine 5.1-1 (source amd64)

2006-06-13 Thread Guus Sliepen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 12:56:16 +0200
Source: dhis-dns-engine
Binary: dhis-dns-engine
Architecture: source amd64
Version: 5.1-1
Distribution: unstable
Urgency: low
Maintainer: Guus Sliepen [EMAIL PROTECTED]
Changed-By: Guus Sliepen [EMAIL PROTECTED]
Description: 
 dhis-dns-engine - Dynamic Host Information System - DNS engine
Closes: 372556
Changes: 
 dhis-dns-engine (5.1-1) unstable; urgency=low
 .
   * New upstream release. Closes: #372556
   * Use libbind-dev instead of bind-dev.
   * Remove warnings caused by silly use of unsigned char.
Files: 
 0704208dd4c0ee2e79346887c3395e06 595 net extra dhis-dns-engine_5.1-1.dsc
 33e66f05c0d63b69f64bee492459285c 6249 net extra dhis-dns-engine_5.1.orig.tar.gz
 7fb294af963949fc61f420b43debaaa7 3694 net extra dhis-dns-engine_5.1-1.diff.gz
 ef162e03498a3f808d90a1d575a2f6b3 7666 net extra dhis-dns-engine_5.1-1_amd64.deb

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

iD8DBQFEjpwCAxLow12M2nsRArggAJ9WJy97Z05cOlY9OAExnTGTShDXbQCgguLI
O+m961ycj49T+Y31xugKNkk=
=UHJE
-END PGP SIGNATURE-


Accepted:
dhis-dns-engine_5.1-1.diff.gz
  to pool/main/d/dhis-dns-engine/dhis-dns-engine_5.1-1.diff.gz
dhis-dns-engine_5.1-1.dsc
  to pool/main/d/dhis-dns-engine/dhis-dns-engine_5.1-1.dsc
dhis-dns-engine_5.1-1_amd64.deb
  to pool/main/d/dhis-dns-engine/dhis-dns-engine_5.1-1_amd64.deb
dhis-dns-engine_5.1.orig.tar.gz
  to pool/main/d/dhis-dns-engine/dhis-dns-engine_5.1.orig.tar.gz


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



Accepted dhis-server 5.2-1 (source amd64)

2006-06-13 Thread Guus Sliepen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 13:03:38 +0200
Source: dhis-server
Binary: dhis-server
Architecture: source amd64
Version: 5.2-1
Distribution: unstable
Urgency: low
Maintainer: Guus Sliepen [EMAIL PROTECTED]
Changed-By: Guus Sliepen [EMAIL PROTECTED]
Description: 
 dhis-server - Dynamic Host Information System - server
Closes: 372555
Changes: 
 dhis-server (5.2-1) unstable; urgency=low
 .
   * New upstream release. Closes: #372555
   * Remove warnings caused by silly use of unsigned char.
Files: 
 c5d3d0ca89e409b70af473bfdf382810 580 net optional dhis-server_5.2-1.dsc
 ac7f39da723f9483b81358cb00599ecd 27864 net optional dhis-server_5.2.orig.tar.gz
 96aa21cd718359e0616602fa622244e8 8040 net optional dhis-server_5.2-1.diff.gz
 d5e87d8525bbc4dd82cb6d7a0d5362a5 31106 net optional dhis-server_5.2-1_amd64.deb

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

iD8DBQFEjpvhAxLow12M2nsRAlmjAJ9cbucFCtbP7kiBs+7G4QBQtEF6fACffw4i
6OWYJ7FszpUn5XfHP8KBavU=
=tDXQ
-END PGP SIGNATURE-


Accepted:
dhis-server_5.2-1.diff.gz
  to pool/main/d/dhis-server/dhis-server_5.2-1.diff.gz
dhis-server_5.2-1.dsc
  to pool/main/d/dhis-server/dhis-server_5.2-1.dsc
dhis-server_5.2-1_amd64.deb
  to pool/main/d/dhis-server/dhis-server_5.2-1_amd64.deb
dhis-server_5.2.orig.tar.gz
  to pool/main/d/dhis-server/dhis-server_5.2.orig.tar.gz


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



Accepted python-setuptools 0.6b3-1 (source all)

2006-06-13 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri,  9 Jun 2006 22:14:10 +0200
Source: python-setuptools
Binary: python-setuptools
Architecture: source all
Version: 0.6b3-1
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 python-setuptools - Python Distutils Enhancements
Closes: 352176 354621
Changes: 
 python-setuptools (0.6b3-1) unstable; urgency=low
 .
   * New upstream version (closes: #354621).
 - OverflowError for amd64 build fixed (closes: #352176).
Files: 
 e3acc3960d8e5c94f5197d6f509f743b 678 python optional 
python-setuptools_0.6b3-1.dsc
 8d98be6d758644b4b530dca3f181a6a1 228268 python optional 
python-setuptools_0.6b3.orig.tar.gz
 62b57397423aea3db95ea2508b7e2deb 10043 python optional 
python-setuptools_0.6b3-1.diff.gz
 9c64653cb85ed1a0a66de00166d99548 196972 python optional 
python-setuptools_0.6b3-1_all.deb

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

iD8DBQFEjpofStlRaw+TLJwRAkTtAKCoN5NblcJxO2wRRdNreHrZ0xZNwgCfQQ/z
dVvxoMaDoEGM6L5aRH79glw=
=5efh
-END PGP SIGNATURE-


Accepted:
python-setuptools_0.6b3-1.diff.gz
  to pool/main/p/python-setuptools/python-setuptools_0.6b3-1.diff.gz
python-setuptools_0.6b3-1.dsc
  to pool/main/p/python-setuptools/python-setuptools_0.6b3-1.dsc
python-setuptools_0.6b3-1_all.deb
  to pool/main/p/python-setuptools/python-setuptools_0.6b3-1_all.deb
python-setuptools_0.6b3.orig.tar.gz
  to pool/main/p/python-setuptools/python-setuptools_0.6b3.orig.tar.gz


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



Accepted tecnoballz 0.91cvs20060612-2 (source i386 all)

2006-06-13 Thread Alexis Sukrieh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 13:34:00 +0200
Source: tecnoballz
Binary: tecnoballz-data tecnoballz
Architecture: source i386 all
Version: 0.91cvs20060612-2
Distribution: unstable
Urgency: low
Maintainer: Alexis Sukrieh [EMAIL PROTECTED]
Changed-By: Alexis Sukrieh [EMAIL PROTECTED]
Description: 
 tecnoballz - breaking block game ported from the Amiga platform
 tecnoballz-data - graphic, sound and music files for the game tecnoballz
Closes: 373166 373168
Changes: 
 tecnoballz (0.91cvs20060612-2) unstable; urgency=low
 .
   * debian/tecnoballz.preinst:
 + Remove useless switches on args, handle only upgrade for saving the
   scorefile.
 (closes: #373168, #373166)
Files: 
 8194b248c230a0701f7dc4249d23c383 769 games optional 
tecnoballz_0.91cvs20060612-2.dsc
 95c8cb8fe680c81e3b0550a320d6b539 54836 games optional 
tecnoballz_0.91cvs20060612-2.diff.gz
 0d68dda6e1b3cd1ee1e1e7aca2146753 1526850 games optional 
tecnoballz-data_0.91cvs20060612-2_all.deb
 29b48a095002406210a3196e12bef8a6 136654 games optional 
tecnoballz_0.91cvs20060612-2_i386.deb

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

iD8DBQFEjqXbfPP1rylJn2ERAmv2AKCUVe6xWUpfA/KOFDgFStL2HeBgRACfXscA
Q6Yohb4Tq89uOhLX1CLyrX4=
=yaD2
-END PGP SIGNATURE-


Accepted:
tecnoballz-data_0.91cvs20060612-2_all.deb
  to pool/main/t/tecnoballz/tecnoballz-data_0.91cvs20060612-2_all.deb
tecnoballz_0.91cvs20060612-2.diff.gz
  to pool/main/t/tecnoballz/tecnoballz_0.91cvs20060612-2.diff.gz
tecnoballz_0.91cvs20060612-2.dsc
  to pool/main/t/tecnoballz/tecnoballz_0.91cvs20060612-2.dsc
tecnoballz_0.91cvs20060612-2_i386.deb
  to pool/main/t/tecnoballz/tecnoballz_0.91cvs20060612-2_i386.deb


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



Accepted ivtv 0.6.2-2 (source i386 all)

2006-06-13 Thread Ian Campbell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 07:12:56 +0100
Source: ivtv
Binary: ivtv-utils ivtv-source
Architecture: source i386 all
Version: 0.6.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian MythTV Team [EMAIL PROTECTED]
Changed-By: Ian Campbell [EMAIL PROTECTED]
Description: 
 ivtv-source - source for ivtv drivers (0.6 branch)
 ivtv-utils - utilities for use with the ivtv kernel driver
Changes: 
 ivtv (0.6.2-2) unstable; urgency=low
 .
   [ Ian Campbell ]
   * Convert build system to use dpatch.
   * Nothing uses $DEBIAN_MAKE_KPKG anymore so drop it.
   * Backport r3315 from svn which ensures that the tuner is set to TV and not
 radio mode when initializing the driver.
   * Depend on debhelper = 5.0.37 so as to get a dh_installmodules which
 calls depmod correctly for us. Add call to dh_installmodules when
 building module packages.
Files: 
 e3007fb18ef88a49dbbc71b08d79f69d 695 contrib/x11 extra ivtv_0.6.2-2.dsc
 d026a92e96327f6a9768c372f96a832a 10556 contrib/x11 extra ivtv_0.6.2-2.diff.gz
 97fc7420c185d2f8e50fb96bc681fa9f 160226 contrib/x11 extra 
ivtv-utils_0.6.2-2_i386.deb
 91c7a057b36b1a5114e56c102bf00035 138630 contrib/x11 extra 
ivtv-source_0.6.2-2_all.deb

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

iD8DBQFEjqT1oCzanz0IthIRAvVeAKCd41c4Gbo4NY5mwI7FBA29bkYGaACfaU5Y
1WFxHjVrR5n0C911jnbo+G4=
=MCKh
-END PGP SIGNATURE-


Accepted:
ivtv-source_0.6.2-2_all.deb
  to pool/contrib/i/ivtv/ivtv-source_0.6.2-2_all.deb
ivtv-utils_0.6.2-2_i386.deb
  to pool/contrib/i/ivtv/ivtv-utils_0.6.2-2_i386.deb
ivtv_0.6.2-2.diff.gz
  to pool/contrib/i/ivtv/ivtv_0.6.2-2.diff.gz
ivtv_0.6.2-2.dsc
  to pool/contrib/i/ivtv/ivtv_0.6.2-2.dsc


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



Accepted librpc-xml-perl 0.58-1 (source all)

2006-06-13 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 12:46:34 +0300
Source: librpc-xml-perl
Binary: librpc-xml-perl
Architecture: source all
Version: 0.58-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Damyan Ivanov [EMAIL PROTECTED]
Description: 
 librpc-xml-perl - Perl module implementation of XML-RPC
Closes: 296664 358170
Changes: 
 librpc-xml-perl (0.58-1) unstable; urgency=low
 .
   * New upstream release
 Closes: #296664 - RPC::XML::string-as_string returns incorrect snippet
 for the 0 string
 Closes: #358170 - New upstream release
   * [debian/control]
 + Debian Perl Group takes over the package (with permission of current
   maintainer, Ivan Kohler, see #296664). Thanks to Ivan for his work so
   far.
   - D-P-G is Maintainer:
   - Ivan moved to Uploaders
   - Added myself as Uploader too
 + Bumped Standards-Version to 3.7.2
   - Move all except debhelper from Build-Depends to Build-Depends-Indep
 + Add ${perl:Depends} to Depends to pull perl dependency
 + Add Suggests: libapache-mod-perl due to Apache::RPC classes
   * [debian/rules]
 + Added manual remove of Makefile[.old] to clean target to address
   cleaning of partial build
 + Put comments as of why binary-arch target is really there
 + Remove commented out dh_* calls that are clearly never going to be
   needed
 + Enable test suite
Files: 
 39752c4a8d8f758f49782d0a78561067 769 perl optional librpc-xml-perl_0.58-1.dsc
 ee16374ad2763a69c5652ac0feea3f84 127599 perl optional 
librpc-xml-perl_0.58.orig.tar.gz
 59daff454e52656f52847a979ec65265 2480 perl optional 
librpc-xml-perl_0.58-1.diff.gz
 5ae0aaf3f3748c06e967133cc424e639 182432 perl optional 
librpc-xml-perl_0.58-1_all.deb

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

iD8DBQFEjqgW+NMfSd6w7DERAmGGAJ4yUFTKsL5vHTHbfoaPmdDwhFKhFwCgqUfn
PnhFl2dpouNuZPPaa1HX1tM=
=qBLB
-END PGP SIGNATURE-


Accepted:
librpc-xml-perl_0.58-1.diff.gz
  to pool/main/libr/librpc-xml-perl/librpc-xml-perl_0.58-1.diff.gz
librpc-xml-perl_0.58-1.dsc
  to pool/main/libr/librpc-xml-perl/librpc-xml-perl_0.58-1.dsc
librpc-xml-perl_0.58-1_all.deb
  to pool/main/libr/librpc-xml-perl/librpc-xml-perl_0.58-1_all.deb
librpc-xml-perl_0.58.orig.tar.gz
  to pool/main/libr/librpc-xml-perl/librpc-xml-perl_0.58.orig.tar.gz


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



Accepted knemo 0.4.1-1 (source i386)

2006-06-13 Thread Debian KDE Extras Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 13:07:37 +0100
Source: knemo
Binary: knemo
Architecture: source i386
Version: 0.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team [EMAIL PROTECTED]
Changed-By: Debian KDE Extras Team [EMAIL PROTECTED]
Description: 
 knemo  - network interfaces monitor for KDE's systray
Closes: 340845 343290 350393
Changes: 
 knemo (0.4.1-1) unstable; urgency=low
 .
   [ Mark Purcell ]
   * New upstream release
 - Fixes: encoding error in desktop file (Closes: #343290)
 - Fixes: link quality of a wireless interface is not shown (Closes: 
#350393)
   * knemo - lists mailing list as uploader in changelog (Closes: #340845)
  - No consensus reached on debian-devel
  - Report 200 days old
  - Other packages have closed their uploader 'bugs'
Files: 
 f3fed177a7a3c126f01c93c6b0f03cce 715 kde optional knemo_0.4.1-1.dsc
 3e3cbcb825246ebc1a85a945b2d5d4d4 954077 kde optional knemo_0.4.1.orig.tar.gz
 a8f2fdaaf6e7a47752d906073a61f808 3757 kde optional knemo_0.4.1-1.diff.gz
 b9347b73ec4e7a504df650e2058c6428 260684 kde optional knemo_0.4.1-1_i386.deb

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

iD8DBQFEjqxxoCzanz0IthIRAuvuAJ4sE5NnuOXKQowGKa7UxpdlSHLnJwCfZLIC
hV9BK+CMN81/srgyjNhpSeI=
=LsGx
-END PGP SIGNATURE-


Accepted:
knemo_0.4.1-1.diff.gz
  to pool/main/k/knemo/knemo_0.4.1-1.diff.gz
knemo_0.4.1-1.dsc
  to pool/main/k/knemo/knemo_0.4.1-1.dsc
knemo_0.4.1-1_i386.deb
  to pool/main/k/knemo/knemo_0.4.1-1_i386.deb
knemo_0.4.1.orig.tar.gz
  to pool/main/k/knemo/knemo_0.4.1.orig.tar.gz


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



Accepted libapache-mod-chroot 0.5-3 (source all amd64)

2006-06-13 Thread Michael Ablassmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 14:19:04 +0200
Source: libapache-mod-chroot
Binary: libapache2-mod-chroot mod-chroot-common libapache-mod-chroot
Architecture: source amd64 all
Version: 0.5-3
Distribution: unstable
Urgency: low
Maintainer: Michael Ablassmeier [EMAIL PROTECTED]
Changed-By: Michael Ablassmeier [EMAIL PROTECTED]
Description: 
 libapache-mod-chroot - run Apache in a secure chroot environment
 libapache2-mod-chroot - run Apache in a secure chroot environment
 mod-chroot-common - run Apache in a secure chroot environment
Changes: 
 libapache-mod-chroot (0.5-3) unstable; urgency=low
 .
   * debian/rules: pass -fno-strict-aliasing to apxs2.
 (work around for type-punned pointer warning)
   * Conforms to new Standards Version 3.7.2
Files: 
 99a161db001896b0f375da6a40c6f9f5 712 web optional 
libapache-mod-chroot_0.5-3.dsc
 0a5d5e131ddb96e2e453f301c98cf144 5013 web optional 
libapache-mod-chroot_0.5-3.diff.gz
 4f5b615799b34b66d2d2f949b9794070 9676 web optional 
mod-chroot-common_0.5-3_all.deb
 d52c455b19635b13f41150bbbfd3795e 4452 web optional 
libapache-mod-chroot_0.5-3_amd64.deb
 94073b3f303664b8de40541e31dffe0b 3640 web optional 
libapache2-mod-chroot_0.5-3_amd64.deb

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

iD8DBQFEjq3IEFV7g4B8rCURAmgIAJ9B89SD81G+Ney23HIArn/n8HvETACcDU/I
l3Rxg2h1liA+ixgCR0/5yk0=
=yqw3
-END PGP SIGNATURE-


Accepted:
libapache-mod-chroot_0.5-3.diff.gz
  to pool/main/liba/libapache-mod-chroot/libapache-mod-chroot_0.5-3.diff.gz
libapache-mod-chroot_0.5-3.dsc
  to pool/main/liba/libapache-mod-chroot/libapache-mod-chroot_0.5-3.dsc
libapache-mod-chroot_0.5-3_amd64.deb
  to pool/main/liba/libapache-mod-chroot/libapache-mod-chroot_0.5-3_amd64.deb
libapache2-mod-chroot_0.5-3_amd64.deb
  to pool/main/liba/libapache-mod-chroot/libapache2-mod-chroot_0.5-3_amd64.deb
mod-chroot-common_0.5-3_all.deb
  to pool/main/liba/libapache-mod-chroot/mod-chroot-common_0.5-3_all.deb


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



Accepted streamripper 1.61.19-4 (source amd64)

2006-06-13 Thread Michael Ablassmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 14:36:25 +0200
Source: streamripper
Binary: streamripper
Architecture: source amd64
Version: 1.61.19-4
Distribution: unstable
Urgency: low
Maintainer: Michael Ablassmeier [EMAIL PROTECTED]
Changed-By: Michael Ablassmeier [EMAIL PROTECTED]
Description: 
 streamripper - download online streams into audio files
Changes: 
 streamripper (1.61.19-4) unstable; urgency=low
 .
   * debian/rules: add -fno-strict-aliasing to CFLAGS
 (work around for type-punned pointer warning)
   * Conforms to new Standards Version 3.7.2
   * Adjust short Description.
Files: 
 a5f4447bd70a36f28c7fca80c376cec9 652 sound optional streamripper_1.61.19-4.dsc
 4ad145fddf63a2120e8d9d0eed6fdde3 3283 sound optional 
streamripper_1.61.19-4.diff.gz
 b9d513c89dcc0e3094cacd6488ff7692 75356 sound optional 
streamripper_1.61.19-4_amd64.deb

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

iD8DBQFEjrKXEFV7g4B8rCURAiP7AKDWaPHMNUYjnn98uHvrX9VMnP+YqACglG6c
vF6zpc4+fI2Ng6q/50lhzrg=
=k9HN
-END PGP SIGNATURE-


Accepted:
streamripper_1.61.19-4.diff.gz
  to pool/main/s/streamripper/streamripper_1.61.19-4.diff.gz
streamripper_1.61.19-4.dsc
  to pool/main/s/streamripper/streamripper_1.61.19-4.dsc
streamripper_1.61.19-4_amd64.deb
  to pool/main/s/streamripper/streamripper_1.61.19-4_amd64.deb


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



Accepted ysmv7 2.9.8-1.1 (source amd64)

2006-06-13 Thread Julien Louis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 10 Jun 2006 17:45:46 +0200
Source: ysmv7
Binary: ysm
Architecture: source amd64
Version: 2.9.8-1.1
Distribution: unstable
Urgency: low
Maintainer: Ilya M. Slepnev [EMAIL PROTECTED]
Changed-By: Julien Louis [EMAIL PROTECTED]
Description: 
 ysm- A powerful ICQ console client
Closes: 369621
Changes: 
 ysmv7 (2.9.8-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * use ${shlibs:Depends} to have correct dependencies (Closes: #369621).
   * Bump Standards-Version, no changes needed.
Files: 
 1019a09b3d7561e76e50aba884c2a8fd 590 net optional ysmv7_2.9.8-1.1.dsc
 691c81ebde234d1bf704e16afcf6e902 4520 net optional ysmv7_2.9.8-1.1.diff.gz
 a24c6ebf328f767df8e9883725444189 135424 net optional ysm_2.9.8-1.1_amd64.deb

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

iD8DBQFEjrHzvGr7W6HudhwRArdgAJ9WnN+Vp0Q5wednUEPJXGfe2so4EgCgiTQy
WWnq5uLTeBIzGrxNMFehPbg=
=Nwjc
-END PGP SIGNATURE-


Accepted:
ysm_2.9.8-1.1_amd64.deb
  to pool/main/y/ysmv7/ysm_2.9.8-1.1_amd64.deb
ysmv7_2.9.8-1.1.diff.gz
  to pool/main/y/ysmv7/ysmv7_2.9.8-1.1.diff.gz
ysmv7_2.9.8-1.1.dsc
  to pool/main/y/ysmv7/ysmv7_2.9.8-1.1.dsc


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



Accepted chrpath 0.13-2 (source i386)

2006-06-13 Thread Tollef Fog Heen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 13:36:38 +0200
Source: chrpath
Binary: chrpath
Architecture: source i386
Version: 0.13-2
Distribution: unstable
Urgency: low
Maintainer: Tollef Fog Heen [EMAIL PROTECTED]
Changed-By: Tollef Fog Heen [EMAIL PROTECTED]
Description: 
 chrpath- Tool to edit the rpath in ELF binaries
Closes: 342383
Changes: 
 chrpath (0.13-2) unstable; urgency=low
 .
   * Update config.{guess,sub}.  (closes: #342383)
Files: 
 8f1dc5ba2ae940354a5309f2080c4f3b 563 utils optional chrpath_0.13-2.dsc
 64272bc8d4356af96e147018ef32bc25 67586 utils optional chrpath_0.13-2.diff.gz
 08b468377e17cdc090369d8703af76bb 13556 utils optional chrpath_0.13-2_i386.deb

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

iD8DBQFEjr0VQSseMYF6mWoRAoqlAKCzO6pFjh7JFDfVaqo/0xKR35eRbACgxA4M
6UMzABCLgEjY25/OCcgmyGo=
=dsQw
-END PGP SIGNATURE-


Accepted:
chrpath_0.13-2.diff.gz
  to pool/main/c/chrpath/chrpath_0.13-2.diff.gz
chrpath_0.13-2.dsc
  to pool/main/c/chrpath/chrpath_0.13-2.dsc
chrpath_0.13-2_i386.deb
  to pool/main/c/chrpath/chrpath_0.13-2_i386.deb


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



Accepted nslint 2.1a6-2 (source i386)

2006-06-13 Thread Sven Mueller
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 14:12:03 +0200
Source: nslint
Binary: nslint
Architecture: source i386
Version: 2.1a6-2
Distribution: unstable
Urgency: low
Maintainer: Sven Mueller [EMAIL PROTECTED]
Changed-By: Sven Mueller [EMAIL PROTECTED]
Description: 
 nslint - Lint for DNS files, checks integrity
Closes: 372584
Changes: 
 nslint (2.1a6-2) unstable; urgency=low
 .
   * Use /etc/bind/named.conf by default if it exists (Closes: #372584)
   * Switch maintainer address to [EMAIL PROTECTED]
Files: 
 6b677f17f8fea56288dbbff0df71d0f1 541 net optional nslint_2.1a6-2.dsc
 6e6f9fdf379316014800d13bde8aa28a 9827 net optional nslint_2.1a6-2.diff.gz
 78d685e94752c8b78067f3685298dc03 23516 net optional nslint_2.1a6-2_i386.deb

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

iD8DBQFEjsMlDcs5RBTUBgsRAk6PAKC51inZvtZWwgUa7+ONHCkLn6ZAhwCcC4qo
GiGcwvIuX8DYPFyM/WnO8GM=
=P7qE
-END PGP SIGNATURE-


Accepted:
nslint_2.1a6-2.diff.gz
  to pool/main/n/nslint/nslint_2.1a6-2.diff.gz
nslint_2.1a6-2.dsc
  to pool/main/n/nslint/nslint_2.1a6-2.dsc
nslint_2.1a6-2_i386.deb
  to pool/main/n/nslint/nslint_2.1a6-2_i386.deb


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



Accepted nvi 1.79-24 (source i386)

2006-06-13 Thread Steve Greenland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 07:32:59 -0500
Source: nvi
Binary: nvi
Architecture: source i386
Version: 1.79-24
Distribution: unstable
Urgency: low
Maintainer: Steve Greenland [EMAIL PROTECTED]
Changed-By: Steve Greenland [EMAIL PROTECTED]
Description: 
 nvi- 4.4BSD re-implementation of vi
Closes: 372073
Changes: 
 nvi (1.79-24) unstable; urgency=low
 .
   * Fix bashisms (closes: #372073)
   * Update Standards-Version to 3.7.2 (no package changes)
   * debhelper Build-Depends needed to be versioned 5.
Files: 
 27bdceac779bc8c8da9b7447e93b1e9f 581 editors optional nvi_1.79-24.dsc
 1c47843539d225bc4ee72cbf55e2d2eb 13563 editors optional nvi_1.79-24.diff.gz
 fc63dd51094ec92dfeec153223251e93 293630 editors optional nvi_1.79-24_i386.deb

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

iD8DBQFEjsSmdiZsUPux21MRAsuaAJ92B9ELaNJO0MIKEo5JQuaap1H+0ACgkRE6
K8S3hrfwGryMW09vcNEdcio=
=BGQj
-END PGP SIGNATURE-


Accepted:
nvi_1.79-24.diff.gz
  to pool/main/n/nvi/nvi_1.79-24.diff.gz
nvi_1.79-24.dsc
  to pool/main/n/nvi/nvi_1.79-24.dsc
nvi_1.79-24_i386.deb
  to pool/main/n/nvi/nvi_1.79-24_i386.deb


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



Accepted phpldapadmin 0.9.8.3-2 (source all)

2006-06-13 Thread Fabio Tranchitella
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 16:02:31 +0200
Source: phpldapadmin
Binary: phpldapadmin
Architecture: source all
Version: 0.9.8.3-2
Distribution: unstable
Urgency: low
Maintainer: Fabio Tranchitella [EMAIL PROTECTED]
Changed-By: Fabio Tranchitella [EMAIL PROTECTED]
Description: 
 phpldapadmin - web based interface for administering LDAP servers
Closes: 368236 370039
Changes: 
 phpldapadmin (0.9.8.3-2) unstable; urgency=low
 .
   * lib/server_functions.php: patched to fix an upstream bug.
 (Closes: #368236)
   * debian/po/cs.po: updated. (Closes: #370039)
   * debian/control: modified dependencies to install php5 as default if no
 version of php is already installed.
Files: 
 c0c646f6f0f52811e7e19ea6c65a8401 633 admin extra phpldapadmin_0.9.8.3-2.dsc
 110f67b5212f1d9acf9e15d67324da2b 14975 admin extra 
phpldapadmin_0.9.8.3-2.diff.gz
 c7ee0211382975443ee123892755efbe 760038 admin extra 
phpldapadmin_0.9.8.3-2_all.deb

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

iD8DBQFEjsYjK/juK3+WFWQRAgadAKCVWkE8lGTdhgHmld9TAOE2aITl5QCgmwBd
kwxtXZqpYApQHJLCrgqtOD0=
=zrOp
-END PGP SIGNATURE-


Accepted:
phpldapadmin_0.9.8.3-2.diff.gz
  to pool/main/p/phpldapadmin/phpldapadmin_0.9.8.3-2.diff.gz
phpldapadmin_0.9.8.3-2.dsc
  to pool/main/p/phpldapadmin/phpldapadmin_0.9.8.3-2.dsc
phpldapadmin_0.9.8.3-2_all.deb
  to pool/main/p/phpldapadmin/phpldapadmin_0.9.8.3-2_all.deb


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



Accepted rmatrix 0.995.11-1 (source i386)

2006-06-13 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 08:52:48 -0500
Source: rmatrix
Binary: r-cran-matrix
Architecture: source i386
Version: 0.995.11-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
Changed-By: Dirk Eddelbuettel [EMAIL PROTECTED]
Description: 
 r-cran-matrix - GNU R package of classes for dense and sparse matrices
Changes: 
 rmatrix (0.995.11-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Standards-Version: increased to 3.7.2, no changes needed
Files: 
 4ab938924e44cb29c1c974609d21d858 709 math optional rmatrix_0.995.11-1.dsc
 bb98e8acfd9d70cecc7c6a371b57a3bd 2500440 math optional 
rmatrix_0.995.11.orig.tar.gz
 662b1955165454b4962e9f74000d8a97 2573 math optional rmatrix_0.995.11-1.diff.gz
 15427be715679b2f8d2881cc54511d1d 2389868 math optional 
r-cran-matrix_0.995.11-1_i386.deb

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

iD8DBQFEjsVpCZSR95Gw07cRAlvmAJ9qH6LZsdc4kAnMJKrLOD/G+pysNQCfRg0l
8LDV4k2bj4gTpu7QPkv9ifY=
=NdrQ
-END PGP SIGNATURE-


Accepted:
r-cran-matrix_0.995.11-1_i386.deb
  to pool/main/r/rmatrix/r-cran-matrix_0.995.11-1_i386.deb
rmatrix_0.995.11-1.diff.gz
  to pool/main/r/rmatrix/rmatrix_0.995.11-1.diff.gz
rmatrix_0.995.11-1.dsc
  to pool/main/r/rmatrix/rmatrix_0.995.11-1.dsc
rmatrix_0.995.11.orig.tar.gz
  to pool/main/r/rmatrix/rmatrix_0.995.11.orig.tar.gz


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



Accepted lynx-cur 2.8.6dev18-2.1 (source i386 all)

2006-06-13 Thread Atsuhito KOHDA
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 23:48:34 +0900
Source: lynx-cur
Binary: lynx-cur-wrapper lynx-cur
Architecture: source i386 all
Version: 2.8.6dev18-2.1
Distribution: unstable
Urgency: low
Maintainer: Atsuhito KOHDA [EMAIL PROTECTED]
Changed-By: Atsuhito KOHDA [EMAIL PROTECTED]
Description: 
 lynx-cur   - Text-mode WWW Browser with NLS support (development version)
 lynx-cur-wrapper - Wrapper for lynx-cur
Closes: 372075
Changes: 
 lynx-cur (2.8.6dev18-2.1) unstable; urgency=low
 .
   * Fixed rules more systematically.  I guess this could fix FTBFS bug.
 (Closes: #372075)
Files: 
 439d47420d292edd2af03d14287c2b2a 679 web extra lynx-cur_2.8.6dev18-2.1.dsc
 53ad8a7f28d077df8eadf479ebf7d856 25259 web extra 
lynx-cur_2.8.6dev18-2.1.diff.gz
 b30194726435d1964ea75575dfda312a 13622 web extra 
lynx-cur-wrapper_2.8.6dev18-2.1_all.deb
 d718e1674f0909fae842fcec48a6e837 1941396 web extra 
lynx-cur_2.8.6dev18-2.1_i386.deb

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

iD8DBQFEjtGL1IXdL1v6kOwRAm5hAJ0YmeIn8Qi30TS3p49ZlPUihV53+wCff58K
l3bf4B4p9IB6YrvOqbjUSug=
=34kD
-END PGP SIGNATURE-


Accepted:
lynx-cur-wrapper_2.8.6dev18-2.1_all.deb
  to pool/main/l/lynx-cur/lynx-cur-wrapper_2.8.6dev18-2.1_all.deb
lynx-cur_2.8.6dev18-2.1.diff.gz
  to pool/main/l/lynx-cur/lynx-cur_2.8.6dev18-2.1.diff.gz
lynx-cur_2.8.6dev18-2.1.dsc
  to pool/main/l/lynx-cur/lynx-cur_2.8.6dev18-2.1.dsc
lynx-cur_2.8.6dev18-2.1_i386.deb
  to pool/main/l/lynx-cur/lynx-cur_2.8.6dev18-2.1_i386.deb


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



Accepted dbconfig-common 1.8.17 (source all)

2006-06-13 Thread sean finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 19:34:53 +0200
Source: dbconfig-common
Binary: dbconfig-common
Architecture: source all
Version: 1.8.17
Distribution: unstable
Urgency: low
Maintainer: sean finney [EMAIL PROTECTED]
Changed-By: sean finney [EMAIL PROTECTED]
Description: 
 dbconfig-common - common framework for packaging database applications
Closes: 372650 372948
Changes: 
 dbconfig-common (1.8.17) unstable; urgency=low
 .
   [ sean finney ]
   * now provide a global configuration option which affects the priority of
 questions related to remote database configuration.
   * updated spanish debconf translations, thanks to
 Javier Fernández-Sanguino Peña (closes: #372650).
   * provide a fix for over-zealous sanity-checking breakage with packages that
 support multiple database types.  this should remove the need for any
 ugly workarounds.  thanks to David Gil (closes: #372948).
   * dbconfig-common was not respecting manual changes to its global config
 file.  whoops, fixed.
 .
   [ Bart Cornelis (cobaco) ]
   * Updated Dutch translation
Files: 
 9a8f112ce41b17b9fc3401ff04b6e3b1 549 admin optional dbconfig-common_1.8.17.dsc
 a2e9b8a042c48229daa763f30514d68a 203092 admin optional 
dbconfig-common_1.8.17.tar.gz
 4097f9a904893740bd76f7624bc56b89 388492 admin optional 
dbconfig-common_1.8.17_all.deb

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

iD8DBQFEjtxUynjLPm522B0RAktpAJ9H6xuyZwgI5F/iXFVcuUnnkgKbMACcDWRE
p0IzzSPCXVLquU2Esisatrs=
=hvF+
-END PGP SIGNATURE-


Accepted:
dbconfig-common_1.8.17.dsc
  to pool/main/d/dbconfig-common/dbconfig-common_1.8.17.dsc
dbconfig-common_1.8.17.tar.gz
  to pool/main/d/dbconfig-common/dbconfig-common_1.8.17.tar.gz
dbconfig-common_1.8.17_all.deb
  to pool/main/d/dbconfig-common/dbconfig-common_1.8.17_all.deb


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



Accepted sdl-ttf2.0 2.0.8-2 (source i386)

2006-06-13 Thread Samuel Mimram
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 12:39:37 +
Source: sdl-ttf2.0
Binary: libsdl-ttf2.0-dev libsdl-ttf2.0-0
Architecture: source i386
Version: 2.0.8-2
Distribution: unstable
Urgency: low
Maintainer: Samuel Mimram [EMAIL PROTECTED]
Changed-By: Samuel Mimram [EMAIL PROTECTED]
Description: 
 libsdl-ttf2.0-0 - ttf library for Simple DirectMedia Layer with FreeType 2 
support
 libsdl-ttf2.0-dev - development files for SDL ttf library (version 2.0)
Closes: 373147
Changes: 
 sdl-ttf2.0 (2.0.8-2) unstable; urgency=low
 .
   * Update config.sub and config.guess in order to be able to build on
 GNU/kFreeBSD, closes: #373147.
Files: 
 0e1e08aba3bf58ee966633873f704422 721 libs optional sdl-ttf2.0_2.0.8-2.dsc
 a6d8f28a71bbe9d9c852343890ac96b0 18519 libs optional sdl-ttf2.0_2.0.8-2.diff.gz
 a0ff87eaeb103736383af14d78c3bd52 14578 libs optional 
libsdl-ttf2.0-0_2.0.8-2_i386.deb
 0d772ee7f8fe19734a0a7b8a8ca243af 24364 libdevel optional 
libsdl-ttf2.0-dev_2.0.8-2_i386.deb

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

iD8DBQFEjuOZIae1O4AJae8RAo4SAJ0aSjnwbQIdqKRCZknCM+cNsFZfLwCdGUwp
hTPyNXSY65QgSkGWx8bMR0o=
=xdpn
-END PGP SIGNATURE-


Accepted:
libsdl-ttf2.0-0_2.0.8-2_i386.deb
  to pool/main/s/sdl-ttf2.0/libsdl-ttf2.0-0_2.0.8-2_i386.deb
libsdl-ttf2.0-dev_2.0.8-2_i386.deb
  to pool/main/s/sdl-ttf2.0/libsdl-ttf2.0-dev_2.0.8-2_i386.deb
sdl-ttf2.0_2.0.8-2.diff.gz
  to pool/main/s/sdl-ttf2.0/sdl-ttf2.0_2.0.8-2.diff.gz
sdl-ttf2.0_2.0.8-2.dsc
  to pool/main/s/sdl-ttf2.0/sdl-ttf2.0_2.0.8-2.dsc


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



Accepted python-unit 1.4.1-13 (source all)

2006-06-13 Thread Alexandre Fayolle
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 18:35:05 +0200
Source: python-unit
Binary: python-unit
Architecture: source all
Version: 1.4.1-13
Distribution: unstable
Urgency: low
Maintainer: Alexandre Fayolle [EMAIL PROTECTED]
Changed-By: Alexandre Fayolle [EMAIL PROTECTED]
Description: 
 python-unit - unit test framework for Python
Changes: 
 python-unit (1.4.1-13) unstable; urgency=low
 .
   * Updated to new python policy
   * Updated standards version to 3.7.2
Files: 
 c584db7e37610905059c7b8a87d58e0a 950 python optional python-unit_1.4.1-13.dsc
 de3b04315dee96ec2c216668c025eec0 12929 python optional 
python-unit_1.4.1-13.diff.gz
 8bf1e5ffb56bbc61cb73e73bd1879753 32850 python optional 
python-unit_1.4.1-13_all.deb

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

iQEVAwUBRI7p3V6T+PKoJ87eAQIE4gf/cuURDfbtLtxs5c1Wy3UoVJSQthz+nAuJ
6IzGy8cDsSMcL36hYdGGTdXNxASRVh9i41wT1zvaklzIWukciYHCCdEgytLMJ6G4
xBHEREO5JRTG4tRjeC+Y3GdfppXYvno/Uw7QobxlQzg7EU8l3QYU3/0++vzvXSvh
Cpx0FZ9ib5DLplRV8ntABmEY7RxojQxWHdZKAZSSIkAdsjvXoGILsfodRUN0ejPt
Ed4YBlr6kgo5eBd3aqPAeJzq4wHA6EuIU/fdpJ2NPh/QW9U/FoWrrvJ6neDGVXAD
fVjZDo3+hbTjL+hkkX5AE9EgMciynwkoHHpoTlTYWHOZOpGshtNYew==
=5EjU
-END PGP SIGNATURE-


Accepted:
python-unit_1.4.1-13.diff.gz
  to pool/main/p/python-unit/python-unit_1.4.1-13.diff.gz
python-unit_1.4.1-13.dsc
  to pool/main/p/python-unit/python-unit_1.4.1-13.dsc
python-unit_1.4.1-13_all.deb
  to pool/main/p/python-unit/python-unit_1.4.1-13_all.deb


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



Accepted python-central 0.4.13 (source all)

2006-06-13 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 17:34:32 +0200
Source: python-central
Binary: python-central
Architecture: source all
Version: 0.4.13
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 python-central - register and build utility for Python packages
Changes: 
 python-central (0.4.13) unstable; urgency=low
 .
   * Do not touch files in /usr/*/python-support.
Files: 
 d809eb197615824f676110333c04fd2f 582 python standard python-central_0.4.13.dsc
 e0926170746d4c442e8fd9de864c6356 16852 python standard 
python-central_0.4.13.tar.gz
 10fc5c511cd6a057fa4c8c10c9dace85 19134 python standard 
python-central_0.4.13_all.deb

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

iD4DBQFEjuRjStlRaw+TLJwRAkjMAKCnhe3QCAZGcJ7dgjTFm+IXeng/oQCXUEQ9
oT99J7G/4I8VnggK1jAA1A==
=JxbF
-END PGP SIGNATURE-


Accepted:
python-central_0.4.13.dsc
  to pool/main/p/python-central/python-central_0.4.13.dsc
python-central_0.4.13.tar.gz
  to pool/main/p/python-central/python-central_0.4.13.tar.gz
python-central_0.4.13_all.deb
  to pool/main/p/python-central/python-central_0.4.13_all.deb


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



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

2006-06-13 Thread Noèl Köthe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 21:17:14 +0200
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.3-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 wpasupplicant 0.5.3+20060522-3 (source i386)

2006-06-13 Thread Kel Modderman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 14 Jun 2006 01:13:08 +1000
Source: wpasupplicant
Binary: wpagui wpasupplicant
Architecture: source i386
Version: 0.5.3+20060522-3
Distribution: unstable
Urgency: low
Maintainer: Debian/Ubuntu wpasupplicant Maintainers [EMAIL PROTECTED]
Changed-By: Kel Modderman [EMAIL PROTECTED]
Description: 
 wpagui - GUI for wpa_supplicant
 wpasupplicant - Client support for WPA and WPA2 (IEEE 802.11i)
Closes: 373179
Changes: 
 wpasupplicant (0.5.3+20060522-3) unstable; urgency=low
 .
   [Reinhard Tartler]
   * review and make the warnings in debian/NEWS even more obvious.
   * advertise the manpage wpa_action(8) and the implemented roaming solution
 better.
 .
   [Kel Modderman]
   * Bugfix: /etc/network/ifstate is not guarenteed to exist, we should grep
 /etc/network/run/ifstate in wpa_action. (Closes: #373179)
   * Include madwifi old development headers and provide a series of steps to
 enable support for users of the madwifi-old driver in debian/NEWS.
   * Restore init script example and information about its usage.
   * Use INTERFACES_FILE and IFSTATE_FILE in wpa_action.sh. Thanks for idea
 from Modestas Vainius.
Files: 
 40af8d819669d93ee1bf7355f2df7f74 841 net optional 
wpasupplicant_0.5.3+20060522-3.dsc
 83890b9282f5ab245493e049d8289b2a 65381 net optional 
wpasupplicant_0.5.3+20060522-3.diff.gz
 fd637608b3111d2a8a62422074341955 228820 net optional 
wpasupplicant_0.5.3+20060522-3_i386.deb
 a7f9f76baeffa666a8679c57987ebb24 95922 net optional 
wpagui_0.5.3+20060522-3_i386.deb

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

iD8DBQFEju0WfreS3xkfzYoRAgOnAKCLodTdpwNFYxN5MNxI6uwP42qIsgCfRta/
uznSjf2yzLjkGcQySgXSNsg=
=MJOT
-END PGP SIGNATURE-


Accepted:
wpagui_0.5.3+20060522-3_i386.deb
  to pool/main/w/wpasupplicant/wpagui_0.5.3+20060522-3_i386.deb
wpasupplicant_0.5.3+20060522-3.diff.gz
  to pool/main/w/wpasupplicant/wpasupplicant_0.5.3+20060522-3.diff.gz
wpasupplicant_0.5.3+20060522-3.dsc
  to pool/main/w/wpasupplicant/wpasupplicant_0.5.3+20060522-3.dsc
wpasupplicant_0.5.3+20060522-3_i386.deb
  to pool/main/w/wpasupplicant/wpasupplicant_0.5.3+20060522-3_i386.deb


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



Accepted linux-kernel-di-powerpc-2.6 1.16 (source powerpc)

2006-06-13 Thread Martin Michlmayr
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 17:04:52 +0200
Source: linux-kernel-di-powerpc-2.6
Binary: loop-modules-2.6.16-2-powerpc-miboot-di 
irda-modules-2.6.16-2-powerpc64-di ufs-modules-2.6.16-2-powerpc-miboot-di 
ipv6-modules-2.6.16-2-powerpc-miboot-di ppp-modules-2.6.16-2-powerpc-di 
nic-shared-modules-2.6.16-2-powerpc-miboot-di ide-modules-2.6.16-2-powerpc64-di 
sata-modules-2.6.16-2-powerpc-miboot-di irda-modules-2.6.16-2-powerpc-miboot-di 
crypto-modules-2.6.16-2-powerpc-di 
scsi-common-modules-2.6.16-2-powerpc-miboot-di 
nic-shared-modules-2.6.16-2-powerpc-di nic-pcmcia-modules-2.6.16-2-powerpc-di 
nic-modules-2.6.16-2-powerpc-miboot-di nic-modules-2.6.16-2-powerpc64-di 
hypervisor-modules-2.6.16-2-powerpc64-di scsi-core-modules-2.6.16-2-powerpc-di 
usb-serial-modules-2.6.16-2-powerpc-miboot-di 
fs-common-modules-2.6.16-2-powerpc-di 
scsi-extra-modules-2.6.16-2-powerpc-miboot-di 
serial-modules-2.6.16-2-powerpc64-di mouse-modules-2.6.16-2-powerpc-miboot-di 
reiserfs-modules-2.6.16-2-powerpc-di xfs-modules-2.6.16-2-powerpc64-di 
usb-serial-modules-2.6.16-2-powerpc-di ipv6-modules-2.6.16-2-powerpc64-di 
fs-common-modules-2.6.16-2-powerpc64-di 
serial-modules-2.6.16-2-powerpc-miboot-di affs-modules-2.6.16-2-powerpc-di 
crypto-modules-2.6.16-2-powerpc64-di kernel-image-2.6.16-2-powerpc-miboot-di 
ide-modules-2.6.16-2-powerpc-di floppy-modules-2.6.16-2-powerpc-di 
nic-pcmcia-modules-2.6.16-2-powerpc64-di usb-modules-2.6.16-2-powerpc64-di 
ext2-modules-2.6.16-2-powerpc-di reiserfs-modules-2.6.16-2-powerpc-miboot-di 
hfs-modules-2.6.16-2-powerpc-miboot-di 
cdrom-core-modules-2.6.16-2-powerpc-miboot-di 
firmware-modules-2.6.16-2-powerpc-miboot-di 
nic-pcmcia-modules-2.6.16-2-powerpc-miboot-di 
pcmcia-modules-2.6.16-2-powerpc-di kernel-image-2.6.16-2-powerpc-di 
ipv6-modules-2.6.16-2-powerpc-di mouse-modules-2.6.16-2-powerpc-di 
reiserfs-modules-2.6.16-2-powerpc64-di 
firewire-core-modules-2.6.16-2-powerpc-di hfs-modules-2.6.16-2-powerpc-di 
firmware-modules-2.6.16-2-powerpc64-di scsi-modules-2.6.16-2-powerpc64-di 
mouse-modules-2.6.16-2-powerpc64-di usb-modules-2.6.16-2-powerpc-di 
firmware-modules-2.6.16-2-powerpc-di ide-modules-2.6.16-2-powerpc-miboot-di 
scsi-extra-modules-2.6.16-2-powerpc-di nic-shared-modules-2.6.16-2-powerpc64-di 
nic-extra-modules-2.6.16-2-powerpc64-di fat-modules-2.6.16-2-powerpc-di 
input-modules-2.6.16-2-powerpc-di usb-serial-modules-2.6.16-2-powerpc64-di 
scsi-common-modules-2.6.16-2-powerpc64-di fat-modules-2.6.16-2-powerpc64-di 
ext3-modules-2.6.16-2-powerpc-di input-modules-2.6.16-2-powerpc64-di 
sata-modules-2.6.16-2-powerpc-di nic-extra-modules-2.6.16-2-powerpc-di 
scsi-modules-2.6.16-2-powerpc-miboot-di scsi-modules-2.6.16-2-powerpc-di 
jfs-modules-2.6.16-2-powerpc64-di hfs-modules-2.6.16-2-powerpc64-di 
usb-modules-2.6.16-2-powerpc-miboot-di cdrom-core-modules-2.6.16-2-powerpc64-di 
pcmcia-storage-modules-2.6.16-2-powerpc-miboot-di 
ext3-modules-2.6.16-2-powerpc64-di ext2-modules-2.6.16-2-powerpc-miboot-di 
kernel-image-2.6.16-2-powerpc64-di crypto-modules-2.6.16-2-powerpc-miboot-di 
ppp-modules-2.6.16-2-powerpc-miboot-di 
fs-common-modules-2.6.16-2-powerpc-miboot-di 
jfs-modules-2.6.16-2-powerpc-miboot-di 
firewire-core-modules-2.6.16-2-powerpc-miboot-di 
firewire-core-modules-2.6.16-2-powerpc64-di 
usb-storage-modules-2.6.16-2-powerpc-miboot-di 
pcmcia-storage-modules-2.6.16-2-powerpc-di 
md-modules-2.6.16-2-powerpc-miboot-di usb-storage-modules-2.6.16-2-powerpc-di 
cdrom-core-modules-2.6.16-2-powerpc-di 
scsi-core-modules-2.6.16-2-powerpc-miboot-di 
affs-modules-2.6.16-2-powerpc-miboot-di xfs-modules-2.6.16-2-powerpc-di 
scsi-core-modules-2.6.16-2-powerpc64-di pcmcia-modules-2.6.16-2-powerpc64-di 
ext2-modules-2.6.16-2-powerpc64-di sata-modules-2.6.16-2-powerpc64-di 
nic-extra-modules-2.6.16-2-powerpc-miboot-di affs-modules-2.6.16-2-powerpc64-di 
floppy-modules-2.6.16-2-powerpc-miboot-di ufs-modules-2.6.16-2-powerpc-di 
jfs-modules-2.6.16-2-powerpc-di ufs-modules-2.6.16-2-powerpc64-di 
nic-modules-2.6.16-2-powerpc-di md-modules-2.6.16-2-powerpc64-di 
xfs-modules-2.6.16-2-powerpc-miboot-di serial-modules-2.6.16-2-powerpc-di 
fat-modules-2.6.16-2-powerpc-miboot-di scsi-common-modules-2.6.16-2-powerpc-di 
ppp-modules-2.6.16-2-powerpc64-di pcmcia-modules-2.6.16-2-powerpc-miboot-di 
scsi-extra-modules-2.6.16-2-powerpc64-di floppy-modules-2.6.16-2-powerpc64-di 
md-modules-2.6.16-2-powerpc-di loop-modules-2.6.16-2-powerpc64-di 
pcmcia-storage-modules-2.6.16-2-powerpc64-di irda-modules-2.6.16-2-powerpc-di 
ext3-modules-2.6.16-2-powerpc-miboot-di 
input-modules-2.6.16-2-powerpc-miboot-di 
usb-storage-modules-2.6.16-2-powerpc64-di loop-modules-2.6.16-2-powerpc-di
Architecture: source powerpc
Version: 1.16
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Martin Michlmayr [EMAIL PROTECTED]
Description: 
 affs-modules-2.6.16-2-powerpc-di - Amiga filesystem support (udeb)
 

Accepted linux-kernel-di-mips-2.6 0.2 (source mips)

2006-06-13 Thread Martin Michlmayr
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 17:32:23 +0200
Source: linux-kernel-di-mips-2.6
Binary: crypto-modules-2.6.16-2-sb1a-bcm91480b-di 
scsi-common-modules-2.6.16-2-sb1a-bcm91480b-di 
scsi-modules-2.6.16-2-sb1-bcm91250a-di sata-modules-2.6.16-2-sb1-bcm91250a-di 
md-modules-2.6.16-2-sb1a-bcm91480b-di ipv6-modules-2.6.16-2-sb1-bcm91250a-di 
ppp-modules-2.6.16-2-r4k-ip22-di xfs-modules-2.6.16-2-sb1a-bcm91480b-di 
ppp-modules-2.6.16-2-sb1a-bcm91480b-di 
usb-storage-modules-2.6.16-2-sb1a-bcm91480b-di 
jfs-modules-2.6.16-2-sb1-bcm91250a-di loop-modules-2.6.16-2-r5k-ip32-di 
crypto-modules-2.6.16-2-r5k-ip32-di reiserfs-modules-2.6.16-2-r4k-ip22-di 
usb-modules-2.6.16-2-sb1-bcm91250a-di kernel-image-2.6.16-2-sb1a-bcm91480b-di 
jfs-modules-2.6.16-2-sb1a-bcm91480b-di ide-modules-2.6.16-2-sb1-bcm91250a-di 
scsi-common-modules-2.6.16-2-sb1-bcm91250a-di 
loop-modules-2.6.16-2-sb1-bcm91250a-di 
reiserfs-modules-2.6.16-2-sb1-bcm91250a-di ipv6-modules-2.6.16-2-r5k-ip32-di 
md-modules-2.6.16-2-r4k-ip22-di crypto-modules-2.6.16-2-r4k-ip22-di 
ppp-modules-2.6.16-2-r5k-ip32-di sata-modules-2.6.16-2-sb1a-bcm91480b-di 
cdrom-core-modules-2.6.16-2-sb1a-bcm91480b-di jfs-modules-2.6.16-2-r4k-ip22-di 
kernel-image-2.6.16-2-r4k-ip22-di xfs-modules-2.6.16-2-r5k-ip32-di 
scsi-modules-2.6.16-2-sb1a-bcm91480b-di loop-modules-2.6.16-2-r4k-ip22-di 
cdrom-core-modules-2.6.16-2-sb1-bcm91250a-di 
xfs-modules-2.6.16-2-sb1-bcm91250a-di reiserfs-modules-2.6.16-2-r5k-ip32-di 
kernel-image-2.6.16-2-sb1-bcm91250a-di 
reiserfs-modules-2.6.16-2-sb1a-bcm91480b-di 
usb-storage-modules-2.6.16-2-sb1-bcm91250a-di 
ppp-modules-2.6.16-2-sb1-bcm91250a-di usb-modules-2.6.16-2-sb1a-bcm91480b-di 
fb-modules-2.6.16-2-sb1-bcm91250a-di 
scsi-core-modules-2.6.16-2-sb1a-bcm91480b-di 
ide-modules-2.6.16-2-sb1a-bcm91480b-di crypto-modules-2.6.16-2-sb1-bcm91250a-di 
md-modules-2.6.16-2-sb1-bcm91250a-di fb-modules-2.6.16-2-sb1a-bcm91480b-di 
md-modules-2.6.16-2-r5k-ip32-di xfs-modules-2.6.16-2-r4k-ip22-di 
input-modules-2.6.16-2-sb1-bcm91250a-di ipv6-modules-2.6.16-2-r4k-ip22-di 
ipv6-modules-2.6.16-2-sb1a-bcm91480b-di 
scsi-core-modules-2.6.16-2-sb1-bcm91250a-di 
input-modules-2.6.16-2-sb1a-bcm91480b-di kernel-image-2.6.16-2-r5k-ip32-di 
loop-modules-2.6.16-2-sb1a-bcm91480b-di jfs-modules-2.6.16-2-r5k-ip32-di 
fat-modules-2.6.16-2-sb1-bcm91250a-di fat-modules-2.6.16-2-sb1a-bcm91480b-di
Architecture: source mips
Version: 0.2
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Martin Michlmayr [EMAIL PROTECTED]
Description: 
 cdrom-core-modules-2.6.16-2-sb1-bcm91250a-di - CDROM support (udeb)
 cdrom-core-modules-2.6.16-2-sb1a-bcm91480b-di - CDROM support (udeb)
 crypto-modules-2.6.16-2-r4k-ip22-di - crypto modules (udeb)
 crypto-modules-2.6.16-2-r5k-ip32-di - crypto modules (udeb)
 crypto-modules-2.6.16-2-sb1-bcm91250a-di - crypto modules (udeb)
 crypto-modules-2.6.16-2-sb1a-bcm91480b-di - crypto modules (udeb)
 fat-modules-2.6.16-2-sb1-bcm91250a-di - FAT filesystem support (udeb)
 fat-modules-2.6.16-2-sb1a-bcm91480b-di - FAT filesystem support (udeb)
 fb-modules-2.6.16-2-sb1-bcm91250a-di - Frame buffer support (udeb)
 fb-modules-2.6.16-2-sb1a-bcm91480b-di - Frame buffer support (udeb)
 ide-modules-2.6.16-2-sb1-bcm91250a-di - IDE drivers (udeb)
 ide-modules-2.6.16-2-sb1a-bcm91480b-di - IDE drivers (udeb)
 input-modules-2.6.16-2-sb1-bcm91250a-di - Input devices support (udeb)
 input-modules-2.6.16-2-sb1a-bcm91480b-di - Input devices support (udeb)
 ipv6-modules-2.6.16-2-r4k-ip22-di - IPv6 driver (udeb)
 ipv6-modules-2.6.16-2-r5k-ip32-di - IPv6 driver (udeb)
 ipv6-modules-2.6.16-2-sb1-bcm91250a-di - IPv6 driver (udeb)
 ipv6-modules-2.6.16-2-sb1a-bcm91480b-di - IPv6 driver (udeb)
 jfs-modules-2.6.16-2-r4k-ip22-di - JFS filesystem support (udeb)
 jfs-modules-2.6.16-2-r5k-ip32-di - JFS filesystem support (udeb)
 jfs-modules-2.6.16-2-sb1-bcm91250a-di - JFS filesystem support (udeb)
 jfs-modules-2.6.16-2-sb1a-bcm91480b-di - JFS filesystem support (udeb)
 kernel-image-2.6.16-2-r4k-ip22-di - Linux kernel binary image for the Debian 
installer (udeb)
 kernel-image-2.6.16-2-r5k-ip32-di - Linux kernel binary image for the Debian 
installer (udeb)
 kernel-image-2.6.16-2-sb1-bcm91250a-di - Linux kernel binary image for the 
Debian installer (udeb)
 kernel-image-2.6.16-2-sb1a-bcm91480b-di - Linux kernel binary image for the 
Debian installer (udeb)
 loop-modules-2.6.16-2-r4k-ip22-di - Loopback filesystem support (udeb)
 loop-modules-2.6.16-2-r5k-ip32-di - Loopback filesystem support (udeb)
 loop-modules-2.6.16-2-sb1-bcm91250a-di - Loopback filesystem support (udeb)
 loop-modules-2.6.16-2-sb1a-bcm91480b-di - Loopback filesystem support (udeb)
 md-modules-2.6.16-2-r4k-ip22-di - RAID and LVM support (udeb)
 md-modules-2.6.16-2-r5k-ip32-di - RAID and LVM support (udeb)
 md-modules-2.6.16-2-sb1-bcm91250a-di - RAID and LVM support (udeb)
 md-modules-2.6.16-2-sb1a-bcm91480b-di - RAID 

Accepted linux-kernel-di-arm-2.6 0.8 (source arm)

2006-06-13 Thread Martin Michlmayr
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 17:15:21 +0200
Source: linux-kernel-di-arm-2.6
Binary: md-modules-2.6.16-2-nslu2-di usb-modules-2.6.16-2-nslu2-di 
crypto-modules-2.6.16-2-s3c2410-di nic-usb-modules-2.6.16-2-nslu2-di 
scsi-core-modules-2.6.16-2-nslu2-di md-modules-2.6.16-2-footbridge-di 
ide-modules-2.6.16-2-footbridge-di cdrom-core-modules-2.6.16-2-s3c2410-di 
ext3-modules-2.6.16-2-nslu2-di fat-modules-2.6.16-2-footbridge-di 
input-modules-2.6.16-2-nslu2-di loop-modules-2.6.16-2-footbridge-di 
kernel-image-2.6.16-2-footbridge-di reiserfs-modules-2.6.16-2-nslu2-di 
usb-storage-modules-2.6.16-2-nslu2-di crypto-modules-2.6.16-2-nslu2-di 
cdrom-core-modules-2.6.16-2-footbridge-di 
scsi-core-modules-2.6.16-2-footbridge-di usb-modules-2.6.16-2-footbridge-di 
fat-modules-2.6.16-2-nslu2-di crypto-modules-2.6.16-2-footbridge-di 
reiserfs-modules-2.6.16-2-footbridge-di nic-modules-2.6.16-2-footbridge-di 
nic-shared-modules-2.6.16-2-footbridge-di crc-modules-2.6.16-2-footbridge-di 
kernel-image-2.6.16-2-nslu2-di usb-storage-modules-2.6.16-2-footbridge-di 
kernel-image-2.6.16-2-s3c2410-di
Architecture: source arm
Version: 0.8
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Martin Michlmayr [EMAIL PROTECTED]
Description: 
 cdrom-core-modules-2.6.16-2-footbridge-di - CDROM support (udeb)
 cdrom-core-modules-2.6.16-2-s3c2410-di - CDROM support (udeb)
 crc-modules-2.6.16-2-footbridge-di - CRC modules (udeb)
 crypto-modules-2.6.16-2-footbridge-di - crypto modules (udeb)
 crypto-modules-2.6.16-2-nslu2-di - crypto modules (udeb)
 crypto-modules-2.6.16-2-s3c2410-di - crypto modules (udeb)
 ext3-modules-2.6.16-2-nslu2-di - EXT3 filesystem support (udeb)
 fat-modules-2.6.16-2-footbridge-di - FAT filesystem support (udeb)
 fat-modules-2.6.16-2-nslu2-di - FAT filesystem support (udeb)
 ide-modules-2.6.16-2-footbridge-di - IDE drivers (udeb)
 input-modules-2.6.16-2-nslu2-di - Input devices support (udeb)
 kernel-image-2.6.16-2-footbridge-di - Linux kernel binary image for the Debian 
installer (udeb)
 kernel-image-2.6.16-2-nslu2-di - Linux kernel binary image for the Debian 
installer (udeb)
 kernel-image-2.6.16-2-s3c2410-di - Linux kernel binary image for the Debian 
installer (udeb)
 loop-modules-2.6.16-2-footbridge-di - Loopback filesystem support (udeb)
 md-modules-2.6.16-2-footbridge-di - RAID and LVM support (udeb)
 md-modules-2.6.16-2-nslu2-di - RAID and LVM support (udeb)
 nic-modules-2.6.16-2-footbridge-di - Common NIC drivers (udeb)
 nic-shared-modules-2.6.16-2-footbridge-di - Shared NIC drivers (udeb)
 nic-usb-modules-2.6.16-2-nslu2-di - USB NIC drivers (udeb)
 reiserfs-modules-2.6.16-2-footbridge-di - Reiser filesystem support (udeb)
 reiserfs-modules-2.6.16-2-nslu2-di - Reiser filesystem support (udeb)
 scsi-core-modules-2.6.16-2-footbridge-di - Core SCSI subsystem (udeb)
 scsi-core-modules-2.6.16-2-nslu2-di - Core SCSI subsystem (udeb)
 usb-modules-2.6.16-2-footbridge-di - USB support (udeb)
 usb-modules-2.6.16-2-nslu2-di - USB support (udeb)
 usb-storage-modules-2.6.16-2-footbridge-di - USB storage support (udeb)
 usb-storage-modules-2.6.16-2-nslu2-di - USB storage support (udeb)
Changes: 
 linux-kernel-di-arm-2.6 (0.8) unstable; urgency=low
 .
   [ Martin Michlmayr ]
   * Rebuilt with 2.6.16-14.
Files: 
 0e9a5b2f81592e9189470e85ac63e14a 1761 debian-installer optional 
linux-kernel-di-arm-2.6_0.8.dsc
 97c6100e98781f5a7f8c275adafe2006 3137 debian-installer optional 
linux-kernel-di-arm-2.6_0.8.tar.gz
 1c4e2860c80a68f015ed77e5e4d39111 1603396 debian-installer extra 
kernel-image-2.6.16-2-footbridge-di_0.8_arm.udeb
 f8c9a0738e0202994512b328e4d02350 30508 debian-installer standard 
nic-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 c85dcca1ea253032df9e6c11e5de448c 6304 debian-installer standard 
nic-shared-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 0af68d62a3ab4e8c64d1082c5e14b92e 79652 debian-installer standard 
ide-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 d7b65ef86daa06ddff3cf1c8c06e3da5 45848 debian-installer standard 
cdrom-core-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 a8ca7fa2f1f4f27da68b2fad1e4e09d8 71824 debian-installer standard 
scsi-core-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 aa18d0309959b4c4b4fbebd962642ab2 9086 debian-installer standard 
loop-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 64d6481bd4d3b0e6ae9b834280602bad 122904 debian-installer standard 
reiserfs-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 7cd2f712a5dc7499a640e61eeb46ed01 35376 debian-installer extra 
fat-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 404cb006744e85a874350bbccba34d37 116626 debian-installer extra 
md-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 c3db6ba1283759240dbceb3f87a851ad 118594 debian-installer extra 
usb-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 6f15fdbd8b5f2910601b5bb7d29024b5 41532 debian-installer standard 
usb-storage-modules-2.6.16-2-footbridge-di_0.8_arm.udeb
 

Accepted linux-kernel-di-alpha-2.6 0.07 (source alpha)

2006-06-13 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 00:48:04 -0700
Source: linux-kernel-di-alpha-2.6
Binary: nic-extra-modules-2.6.16-2-alpha-generic-di 
srm-modules-2.6.16-2-alpha-generic-di parport-modules-2.6.16-2-alpha-generic-di 
xfs-modules-2.6.16-2-alpha-generic-di 
scsi-common-modules-2.6.16-2-alpha-generic-di 
crypto-modules-2.6.16-2-alpha-generic-di fat-modules-2.6.16-2-alpha-generic-di 
kernel-image-2.6.16-2-alpha-generic-di 
reiserfs-modules-2.6.16-2-alpha-generic-di md-modules-2.6.16-2-alpha-generic-di 
cdrom-core-modules-2.6.16-2-alpha-generic-di 
firmware-modules-2.6.16-2-alpha-generic-di 
ide-modules-2.6.16-2-alpha-generic-di 
ide-core-modules-2.6.16-2-alpha-generic-di fb-modules-2.6.16-2-alpha-generic-di 
jfs-modules-2.6.16-2-alpha-generic-di plip-modules-2.6.16-2-alpha-generic-di 
nic-modules-2.6.16-2-alpha-generic-di scsi-modules-2.6.16-2-alpha-generic-di 
crc-modules-2.6.16-2-alpha-generic-di 
usb-storage-modules-2.6.16-2-alpha-generic-di 
nic-shared-modules-2.6.16-2-alpha-generic-di 
usb-serial-modules-2.6.16-2-alpha-generic-di 
ipv6-modules-2.6.16-2-alpha-generic-di 
scsi-extra-modules-2.6.16-2-alpha-generic-di 
ppp-modules-2.6.16-2-alpha-generic-di ext3-modules-2.6.16-2-alpha-generic-di 
scsi-core-modules-2.6.16-2-alpha-generic-di 
usb-modules-2.6.16-2-alpha-generic-di cdrom-modules-2.6.16-2-alpha-generic-di
Architecture: source alpha
Version: 0.07
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Steve Langasek [EMAIL PROTECTED]
Description: 
 cdrom-core-modules-2.6.16-2-alpha-generic-di - CDROM support (udeb)
 cdrom-modules-2.6.16-2-alpha-generic-di - Esoteric CDROM drivers (udeb)
 crc-modules-2.6.16-2-alpha-generic-di - CRC modules (udeb)
 crypto-modules-2.6.16-2-alpha-generic-di - crypto modules (udeb)
 ext3-modules-2.6.16-2-alpha-generic-di - EXT3 filesystem support (udeb)
 fat-modules-2.6.16-2-alpha-generic-di - FAT filesystem support (udeb)
 fb-modules-2.6.16-2-alpha-generic-di - Frame buffer support (udeb)
 firmware-modules-2.6.16-2-alpha-generic-di - Firmware request modules (udeb)
 ide-core-modules-2.6.16-2-alpha-generic-di - IDE support (udeb)
 ide-modules-2.6.16-2-alpha-generic-di - IDE drivers (udeb)
 ipv6-modules-2.6.16-2-alpha-generic-di - IPv6 driver (udeb)
 jfs-modules-2.6.16-2-alpha-generic-di - JFS filesystem support (udeb)
 kernel-image-2.6.16-2-alpha-generic-di - Linux kernel binary image for the 
Debian installer (udeb)
 md-modules-2.6.16-2-alpha-generic-di - RAID and LVM support (udeb)
 nic-extra-modules-2.6.16-2-alpha-generic-di - Rare NIC drivers (udeb)
 nic-modules-2.6.16-2-alpha-generic-di - Common NIC drivers (udeb)
 nic-shared-modules-2.6.16-2-alpha-generic-di - Shared NIC drivers (udeb)
 parport-modules-2.6.16-2-alpha-generic-di - Parallel port support (udeb)
 plip-modules-2.6.16-2-alpha-generic-di - PLIP drivers (udeb)
 ppp-modules-2.6.16-2-alpha-generic-di - PPP drivers (udeb)
 reiserfs-modules-2.6.16-2-alpha-generic-di - Reiser filesystem support (udeb)
 scsi-common-modules-2.6.16-2-alpha-generic-di - Very common SCSI drivers (udeb)
 scsi-core-modules-2.6.16-2-alpha-generic-di - Core SCSI subsystem (udeb)
 scsi-extra-modules-2.6.16-2-alpha-generic-di - Uncommon SCSI drivers (udeb)
 scsi-modules-2.6.16-2-alpha-generic-di - SCSI drivers (udeb)
 srm-modules-2.6.16-2-alpha-generic-di - SRM environment driver (udeb)
 usb-modules-2.6.16-2-alpha-generic-di - USB support (udeb)
 usb-serial-modules-2.6.16-2-alpha-generic-di - USB serial drivers (udeb)
 usb-storage-modules-2.6.16-2-alpha-generic-di - USB storage support (udeb)
 xfs-modules-2.6.16-2-alpha-generic-di - XFS filesystem support (udeb)
Changes: 
 linux-kernel-di-alpha-2.6 (0.07) unstable; urgency=low
 .
   * Update to 2.6.16-2.
Files: 
 d27f5928d1ba96968f7fb085bb7b2a3a 1930 debian-installer optional 
linux-kernel-di-alpha-2.6_0.07.dsc
 9dd551bddab931720ad030ce714faeaa 16898 debian-installer optional 
linux-kernel-di-alpha-2.6_0.07.tar.gz
 d05a9462a3580b0be16db42e9837eca1 1556810 debian-installer extra 
kernel-image-2.6.16-2-alpha-generic-di_0.07_alpha.udeb
 1c661a038f463df4ec0ace8430e09bd5 79270 debian-installer standard 
nic-modules-2.6.16-2-alpha-generic-di_0.07_alpha.udeb
 7a4d8898d8857020f6c92926eb663376 1147294 debian-installer standard 
nic-extra-modules-2.6.16-2-alpha-generic-di_0.07_alpha.udeb
 19d64b180e296cb741ca05184608bb2a 12816 debian-installer standard 
nic-shared-modules-2.6.16-2-alpha-generic-di_0.07_alpha.udeb
 b655da79c8ec7e650206d1807d7e276d 118024 debian-installer optional 
usb-serial-modules-2.6.16-2-alpha-generic-di_0.07_alpha.udeb
 b4d6b79d5b671089a05b7b2270c7dad3 67514 debian-installer optional 
ppp-modules-2.6.16-2-alpha-generic-di_0.07_alpha.udeb
 15feba7d2b586dcc9a685a10e2fd81a1 137574 debian-installer standard 
ide-modules-2.6.16-2-alpha-generic-di_0.07_alpha.udeb
 06c0e9a09b4d38ada514bd71ea22a420 70756 debian-installer standard 

Accepted phpgacl 3.3.6-3 (source all)

2006-06-13 Thread David Gil
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 17:57:12 +0200
Source: phpgacl
Binary: phpgacl
Architecture: source all
Version: 3.3.6-3
Distribution: unstable
Urgency: low
Maintainer: David Gil [EMAIL PROTECTED]
Changed-By: David Gil [EMAIL PROTECTED]
Description: 
 phpgacl- PHP Generic Access Control Lists
Closes: 351494 353373
Changes: 
 phpgacl (3.3.6-3) unstable; urgency=low
 .
   * Fix a lot dbconfig errors:
 - Wrong dbconfig-common script was sourced in postrm maintainer script.
 - Add dbc_dbtypes variable in mantainer scripts, not only in config file.
   This is related to bug #372948.
 - Use dbc_* variables from /etc/dbconfig-common/phpgacl.conf instead
   of reading them from debconf.
 - Set dbc_dbserver to 'localhost' if a server is not specified.
   * Added inital Frech debconf translation, thanks to Sylvain Archenault
 (Closes: #351494)
   * Added inital Czech debconf translation, thanks to Miroslav Kure
 (Closes: #353373)
   * Bump Standards-Version to 3.7.2 (no policy-related changes needed).
Files: 
 5403ee3231b9bc5654fbd1eaa606eb4f 635 web optional phpgacl_3.3.6-3.dsc
 98397d0697ab040a99835ce2d1135fa9 11084 web optional phpgacl_3.3.6-3.diff.gz
 02ce739aa5e0a34efb6a9d1f803f2ec2 2198420 web optional phpgacl_3.3.6-3_all.deb

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

iD8DBQFEjvh9sandgtyBSwkRAntDAJ9ZMOGr3upGHCvAtQkiznO4PSeo9ACeMqH5
nvDnBeo/yqEimTa1QNATk+A=
=ar/s
-END PGP SIGNATURE-


Accepted:
phpgacl_3.3.6-3.diff.gz
  to pool/main/p/phpgacl/phpgacl_3.3.6-3.diff.gz
phpgacl_3.3.6-3.dsc
  to pool/main/p/phpgacl/phpgacl_3.3.6-3.dsc
phpgacl_3.3.6-3_all.deb
  to pool/main/p/phpgacl/phpgacl_3.3.6-3_all.deb


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



Accepted acidbase 1.2.5-1 (source all)

2006-06-13 Thread David Gil
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 21:20:37 +0200
Source: acidbase
Binary: acidbase
Architecture: source all
Version: 1.2.5-1
Distribution: unstable
Urgency: high
Maintainer: David Gil [EMAIL PROTECTED]
Changed-By: David Gil [EMAIL PROTECTED]
Description: 
 acidbase   - Basic Analysis and Security Engine
Closes: 363548 370576
Changes: 
 acidbase (1.2.5-1) unstable; urgency=high
 .
   * New upstream release, wich includes the following security improvements:
  + Added XSSPrintSafe() (array safe htmlspecilchars() function) and made
filterSql() use ADOdb qmagic()
  + Filtered all unfiltred (mainly auth system stuff) $_POST and $_GET
variables using filterSql()
  + Santized all $_SERVER variables to be protected against XSS attacks
 These improvements fix the following security bugs:
  + Cross-site scripting (XSS) vulnerability (CVE-2006-1590)
(Closes: #363548).
  + Remote File Inclusion Vulnerabilities (CVE-2006-2685)
(Closes: #370576).
 .
   * debian/patches/02_update_external_links.dpatch : updated.
 .
   * Applied part of the patch from Paul Wise [EMAIL PROTECTED]:
 + Remove short description from long description
 + Update copyright file with more information
 .
   * Bump Standards-Version to 3.7.2 (no policy-related changes needed).
 .
   * Fix an annoying dbconfig-common error: Add dbc_dbtypes variable in
 mantainer scripts, not only in config file.
 This is related to bug #372948 (dbconfig-common: can not determine the
 database type).
 .
   * Remove ucf file under /etc/acidbase on package purge.
Files: 
 1627500fb735f4ce19a137031d59c0c3 683 web optional acidbase_1.2.5-1.dsc
 cd6a83df67106ebf9a148d5ac1ec9b8c 335819 web optional acidbase_1.2.5.orig.tar.gz
 3cc7ab0405eaf4e2539f64a175af64f6 14891 web optional acidbase_1.2.5-1.diff.gz
 15ce906b026e9bb7d89a4c9dd600e28d 346322 web optional acidbase_1.2.5-1_all.deb

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

iD8DBQFEjvmKsandgtyBSwkRAhSVAJ46v7d4R2rcEEMNf+YoI26PdkVpDACfdtKL
d9OHPfMIsMKT1oNU4OeTlf4=
=YUKe
-END PGP SIGNATURE-


Accepted:
acidbase_1.2.5-1.diff.gz
  to pool/main/a/acidbase/acidbase_1.2.5-1.diff.gz
acidbase_1.2.5-1.dsc
  to pool/main/a/acidbase/acidbase_1.2.5-1.dsc
acidbase_1.2.5-1_all.deb
  to pool/main/a/acidbase/acidbase_1.2.5-1_all.deb
acidbase_1.2.5.orig.tar.gz
  to pool/main/a/acidbase/acidbase_1.2.5.orig.tar.gz


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



Accepted python-adodb 2.01-1 (source all)

2006-06-13 Thread David Gil
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 May 2006 23:41:44 +0200
Source: python-adodb
Binary: python2.3-adodb python2.4-adodb python-adodb
Architecture: source all
Version: 2.01-1
Distribution: unstable
Urgency: low
Maintainer: David Gil [EMAIL PROTECTED]
Changed-By: David Gil [EMAIL PROTECTED]
Description: 
 python-adodb - A database abstraction library for python [dummy package]
 python2.3-adodb - A database abstraction library for python [python2.3 version]
 python2.4-adodb - A database abstraction library for python [python2.4 version]
Closes: 363907
Changes: 
 python-adodb (2.01-1) unstable; urgency=low
 .
   * New upstream release.
   * Replaced python-sqlite with python-pysqlite2 in dependencies
 (Closes: #363907)
   * Bump Standards-Version to 3.7.2 (no policy-related changes needed).
Files: 
 ed6de716fbc8e0a623f25c477a79c3d6 709 python optional python-adodb_2.01-1.dsc
 41b9a88ec3a7896177e8c4376064b5e2 21797 python optional 
python-adodb_2.01.orig.tar.gz
 54d898847211ae4076a13a20122872d0 3223 python optional 
python-adodb_2.01-1.diff.gz
 c682103d364e5bf388e4974dd0bf271d 11768 python optional 
python-adodb_2.01-1_all.deb
 86db709eba010b82b5445dcaa55e24e2 22084 python optional 
python2.3-adodb_2.01-1_all.deb
 58fbc569b4d306a9a3057b245002913c 22082 python optional 
python2.4-adodb_2.01-1_all.deb

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

iD8DBQFEjvojsandgtyBSwkRAoZxAJ45grS6rwO19BvWsFgLkmeAuyUbCACdESNC
dTd0pAUuFJby4Dvg6j9aC8c=
=7y18
-END PGP SIGNATURE-


Accepted:
python-adodb_2.01-1.diff.gz
  to pool/main/p/python-adodb/python-adodb_2.01-1.diff.gz
python-adodb_2.01-1.dsc
  to pool/main/p/python-adodb/python-adodb_2.01-1.dsc
python-adodb_2.01-1_all.deb
  to pool/main/p/python-adodb/python-adodb_2.01-1_all.deb
python-adodb_2.01.orig.tar.gz
  to pool/main/p/python-adodb/python-adodb_2.01.orig.tar.gz
python2.3-adodb_2.01-1_all.deb
  to pool/main/p/python-adodb/python2.3-adodb_2.01-1_all.deb
python2.4-adodb_2.01-1_all.deb
  to pool/main/p/python-adodb/python2.4-adodb_2.01-1_all.deb


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



Accepted gcc-4.1 4.1.1-4 (source all i386 powerpc)

2006-06-13 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 20:29:57 +0200
Source: gcc-4.1
Binary: gcc-4.1-soft-float libstdc++6-4.1-pic libstdc++6 gnat-4.1-doc lib32ffi4 
libobjc1 lib32gfortran1 gfortran-4.1 libgcc1 libstdc++6-4.1-doc lib64gfortran1 
libgfortran1-dev libgcc2 lib64stdc++6-4.1-dbg g++-4.1 protoize libssp0-dev 
gcc-4.1-base cpp-4.1 libgnatvsn-dev lib64stdc++6 gobjc++-4.1 libffi4 lib64ssp0 
libgnatvsn4.1 libstdc++6-4.1-dbg lib64ffi4 libgfortran1 cpp-4.1-doc 
libgnatprj-dev libgnat-4.1 gfortran-4.1-doc lib32gcc1 libssp0 gcc-4.1-source 
libgcc4 lib64objc1 gobjc-4.1 gcc-4.1 lib32objc1 lib32stdc++6-4.1-dbg 
libstdc++6-4.1-dev libffi4-dev gcc-4.1-doc gcc-4.1-locales lib32mudflap0 
libgnatprj4.1 treelang-4.1 lib64gcc1 fastjar gnat-4.1 fixincludes 
libmudflap0-dev lib32stdc++6 libmudflap0 lib32ssp0 lib64mudflap0 gcc-4.1-hppa64
Architecture: all i386 powerpc source 
Version: 4.1.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-gcc@lists.debian.org
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 cpp-4.1- The GNU C preprocessor
 fastjar- Jar creation utility
 fixincludes - Fix non-ANSI header files
 g++-4.1- The GNU C++ compiler
 gcc-4.1- The GNU C compiler
 gcc-4.1-base - The GNU Compiler Collection (base package)
 gfortran-4.1 - The GNU Fortran 95 compiler
 gnat-4.1   - The GNU Ada compiler
 gobjc++-4.1 - The GNU Objective-C++ compiler
 gobjc-4.1  - The GNU Objective-C compiler
 lib64ffi4  - Foreign Function Interface library runtime (64bit)
 lib64gcc1  - GCC support library (64bit)
 lib64gfortran1 - Runtime library for GNU Fortran applications (64bit)
 lib64mudflap0 - GCC mudflap shared support libraries (64bit)
 lib64objc1 - Runtime library for GNU Objective-C applications (64bit)
 lib64ssp0  - GCC stack smashing protection library (64bit)
 lib64stdc++6 - The GNU Standard C++ Library v3 (64bit)
 lib64stdc++6-4.1-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgfortran1 - Runtime library for GNU Fortran applications
 libgfortran1-dev - GNU Fortran library development
 libgnat-4.1 - Runtime library for GNU Ada applications
 libgnatprj-dev - GNU Ada Project Manager development files
 libgnatprj4.1 - GNU Ada Project Manager
 libgnatvsn-dev - GNU Ada compiler version library - development files
 libgnatvsn4.1 - GNU Ada compiler version library
 libmudflap0 - GCC mudflap shared support libraries
 libmudflap0-dev - GCC mudflap support libraries (development files)
 libobjc1   - Runtime library for GNU Objective-C applications
 libssp0- GCC stack smashing protection library
 libssp0-dev - GCC stack smashing protection library (development files)
 libstdc++6 - The GNU Standard C++ Library v3
 libstdc++6-4.1-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.1-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.1-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.1 - The GNU Treelang compiler
Closes: 372152 372559
Changes: 
 gcc-4.1 (4.1.1-4) unstable; urgency=low
 .
   * Really do not backout the fix for PR c++/26068.
 Closes: #372152, #372559.
   * Update fastjar version string to 4.1.
   * Disable pascal again.
Files: 
 0246ef465499b6e2f662d76409bf4ea2 4526 libs optional lib64ssp0_4.1.1-4_i386.deb
 084f9a9bdbd2e22c85d2cb5c2c5cd056 559093 devel standard gcc-4.1_4.1.1-4.diff.gz
 09d0402193af9cc11dee939f03a66f15 295708 libs required 
libstdc++6_4.1.1-4_powerpc.deb
 0f8e2c0e5666ff0982d849458741dda1 633312 devel standard 
gcc-4.1_4.1.1-4_powerpc.deb
 10eb6fdd15ae607067d11da8bb3c01fc 10798 libdevel optional 
libssp0-dev_4.1.1-4_i386.deb
 128e2dd4383cd66d2fbae22b929808bf 289484 libs optional 
libgnatvsn4.1_4.1.1-4_powerpc.deb
 17c02a33d019b87932c41d1d8e4cb134 46780 devel optional 
protoize_4.1.1-4_powerpc.deb
 1ab3aed4c54d8084aa6280835f6a57f3 189670 libs required 
gcc-4.1-base_4.1.1-4_i386.deb
 1c2bbe98111caa4b7bc22891b57fcbce 15186 libdevel optional 
libffi4-dev_4.1.1-4_i386.deb
 1c52bb2c9e304d87f0c2efd8357e984a 1422528 libdevel optional 
libgnatvsn-dev_4.1.1-4_i386.deb
 213a1f9aaeb30b5c42f19c64bd690527 2354110 devel optional 
gobjc-4.1_4.1.1-4_i386.deb
 27512dda8ef0e938a46668f0a71e 3702640 libdevel extra 
libstdc++6-4.1-dbg_4.1.1-4_i386.deb
 27933cd7c4033445a2f50e8a74781849 184450 doc optional 
cpp-4.1-doc_4.1.1-4_all.deb
 29a8ca9189b09dae9c8a6400119be32b 7470 libs optional lib64ffi4_4.1.1-4_i386.deb
 2b51a431a4825746ccaf95138262d75e 18830 libdevel optional 
libffi4-dev_4.1.1-4_powerpc.deb
 2cd07d5308f7472bb748447a019dddb3 2439564 devel optional 
treelang-4.1_4.1.1-4_powerpc.deb
 30aae6c589245535e244685c9ea7a155 79316 devel optional 
fixincludes_4.1.1-4_powerpc.deb
 35e43853a637eab203e14feee0d500e8 8111874 devel optional 

Accepted psyco 1.5-3 (source i386)

2006-06-13 Thread Alexandre Fayolle
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 20:03:05 +0200
Source: psyco
Binary: python-psyco-doc python-psyco
Architecture: source i386
Version: 1.5-3
Distribution: unstable
Urgency: low
Maintainer: Alexandre Fayolle [EMAIL PROTECTED]
Changed-By: Alexandre Fayolle [EMAIL PROTECTED]
Description: 
 python-psyco - python specializing compiler
 python-psyco-doc - python specializing compiler documentation
Changes: 
 psyco (1.5-3) unstable; urgency=low
 .
   * Updated to new python policy
   * use debhelper 5
   * updated standards to 3.7.2
Files: 
 b0fc9380266a773939e458953dae9c16 995 python optional psyco_1.5-3.dsc
 b47fc3389913f6f8ab2527aae9424af1 90137 python optional psyco_1.5-3.diff.gz
 ace0f33ab29389d2132a91ca31c36905 270722 python optional 
python-psyco_1.5-3_i386.deb
 bf93ee47e13ed8e55860b10a95e1c773 107770 python optional 
python-psyco-doc_1.5-3_i386.deb

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

iQEVAwUBRI8D816T+PKoJ87eAQL7zAgAjLGyPdHm/9a3DnsfzHNTQUPJbQP37kSR
jEp2+4ZvKp2Fqz0f5ZMRume723nUFfstMF0aVQ8m91BD6qJviEa+88WtB1B27TfF
EiltjGHhqqsbyy4XhmOFxzcF3UEdw0r6ZK8tmx6Oq+RYO931rJj2vHEWcjBKQuoN
S1JSfYRk6U8kibdthK6fj+8ZkM2pfXKu4nwIX7H3lpPhCt4pagHA8pb+JzN2jMEy
vAIYslgbo7G+GsT7r6APfhJcMG1cwChfWYKtdDARHKf+A5iCEx/g9eHl7B7+sk1l
Uw6VoscjA5Bd3kPwgDCHDWIZ9+w9FBjBdVbJTKqJJ56JSc5GKRQvRw==
=j4+9
-END PGP SIGNATURE-


Accepted:
psyco_1.5-3.diff.gz
  to pool/main/p/psyco/psyco_1.5-3.diff.gz
psyco_1.5-3.dsc
  to pool/main/p/psyco/psyco_1.5-3.dsc
python-psyco-doc_1.5-3_i386.deb
  to pool/main/p/psyco/python-psyco-doc_1.5-3_i386.deb
python-psyco_1.5-3_i386.deb
  to pool/main/p/psyco/python-psyco_1.5-3_i386.deb


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



Accepted gstreamer0.10 0.10.8-2 (source i386 all)

2006-06-13 Thread Loic Minier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 18:42:06 +0200
Source: gstreamer0.10
Binary: gstreamer-tools gstreamer0.10-tools gstreamer0.10-doc 
libgstreamer0.10-dev libgstreamer0.10-0
Architecture: source i386 all
Version: 0.10.8-2
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages [EMAIL PROTECTED]
Changed-By: Loic Minier [EMAIL PROTECTED]
Description: 
 gstreamer-tools - Tools for use with GStreamer
 gstreamer0.10-doc - GStreamer core documentation and manuals
 gstreamer0.10-tools - Tools for use with GStreamer
 libgstreamer0.10-0 - Core GStreamer libraries and elements
 libgstreamer0.10-dev - GStreamer core development files
Changes: 
 gstreamer0.10 (0.10.8-2) unstable; urgency=low
 .
   * Update 70_relibtoolize to not ship config.guess and config.sub already
 updated by CDBS.
   * New patch, 10_no-registry-file-fallback.patch from upstream CVS to re-read
 the registry when the forked child fails to write it for example because
 the home dir isn't writable; see discussion in GNOME #344748.
Files: 
 a4dbe090bfd319e38fdf2fa9791948c1 1291 libs optional gstreamer0.10_0.10.8-2.dsc
 29c40916c250f70e9c59c2e48787fea1 36011 libs optional 
gstreamer0.10_0.10.8-2.diff.gz
 e960c348e16b4a8f296c0f5f44abd925 2050810 doc optional 
gstreamer0.10-doc_0.10.8-2_all.deb
 90dc7ec264b8dd377b1b656b1d14914d 620766 libs optional 
libgstreamer0.10-0_0.10.8-2_i386.deb
 31a1dd3a90a1f51544c7f3d7aa7325c4 736880 libdevel optional 
libgstreamer0.10-dev_0.10.8-2_i386.deb
 aa22b2f4c202e8eae6faf80d0a66fb6e 201052 utils optional 
gstreamer0.10-tools_0.10.8-2_i386.deb
 936eff9e10b2e3853e72df621ef9f3f8 166364 utils optional 
gstreamer-tools_0.10.8-2_i386.deb

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

iD8DBQFEjwHq4VUX8isJIMARAlGMAKCXpjr9kbItZtt8RxUBMOzhwwBM+gCgk4yp
Kdq/7RPWCboeMoZd6v7GMdA=
=Vp46
-END PGP SIGNATURE-


Accepted:
gstreamer-tools_0.10.8-2_i386.deb
  to pool/main/g/gstreamer0.10/gstreamer-tools_0.10.8-2_i386.deb
gstreamer0.10-doc_0.10.8-2_all.deb
  to pool/main/g/gstreamer0.10/gstreamer0.10-doc_0.10.8-2_all.deb
gstreamer0.10-tools_0.10.8-2_i386.deb
  to pool/main/g/gstreamer0.10/gstreamer0.10-tools_0.10.8-2_i386.deb
gstreamer0.10_0.10.8-2.diff.gz
  to pool/main/g/gstreamer0.10/gstreamer0.10_0.10.8-2.diff.gz
gstreamer0.10_0.10.8-2.dsc
  to pool/main/g/gstreamer0.10/gstreamer0.10_0.10.8-2.dsc
libgstreamer0.10-0_0.10.8-2_i386.deb
  to pool/main/g/gstreamer0.10/libgstreamer0.10-0_0.10.8-2_i386.deb
libgstreamer0.10-dev_0.10.8-2_i386.deb
  to pool/main/g/gstreamer0.10/libgstreamer0.10-dev_0.10.8-2_i386.deb


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



Accepted kstart 3.5-1 (source i386)

2006-06-13 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 13:58:50 -0700
Source: kstart
Binary: kstart
Architecture: source i386
Version: 3.5-1
Distribution: unstable
Urgency: low
Maintainer: Russ Allbery [EMAIL PROTECTED]
Changed-By: Russ Allbery [EMAIL PROTECTED]
Description: 
 kstart - Kerberos kinit variant supporting ticket refreshing
Changes: 
 kstart (3.5-1) unstable; urgency=low
 .
   * New upstream release.
 - Propagate HUP, TERM, and QUIT signals to child processes.
Files: 
 bdfa8e4d56ab3449bda791d3abd7b06f 623 net optional kstart_3.5-1.dsc
 ec650d4208ebab84b28f4733f4145f4b 97688 net optional kstart_3.5.orig.tar.gz
 2708df4b8eed7ee721f99b14b5c7af1e 4791 net optional kstart_3.5-1.diff.gz
 5431e76dd099b072e9cdcad4c12ff936 46416 net optional kstart_3.5-1_i386.deb

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

iD8DBQFEjynb+YXjQAr8dHYRAk97AKDaBgGQFhZ++Qn1hun9srYAypUxhwCguhwm
Cue6pZYC5R85K3nAaqWCs/E=
=ps1d
-END PGP SIGNATURE-


Accepted:
kstart_3.5-1.diff.gz
  to pool/main/k/kstart/kstart_3.5-1.diff.gz
kstart_3.5-1.dsc
  to pool/main/k/kstart/kstart_3.5-1.dsc
kstart_3.5-1_i386.deb
  to pool/main/k/kstart/kstart_3.5-1_i386.deb
kstart_3.5.orig.tar.gz
  to pool/main/k/kstart/kstart_3.5.orig.tar.gz


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



Accepted oldsys-preseed 0.3 (source i386)

2006-06-13 Thread Martin Michlmayr
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 23:05:08 +0200
Source: oldsys-preseed
Binary: oldsys-preseed
Architecture: source i386
Version: 0.3
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Martin Michlmayr [EMAIL PROTECTED]
Description: 
 oldsys-preseed - Preseed debian-installer from an existing device (udeb)
Closes: 373243
Changes: 
 oldsys-preseed (0.3) unstable; urgency=low
 .
   [ Martin Michlmayr ]
   * Explicitly run bash rather than /bin/sh in the test suite since
 it relies on features in bash.  Closes: #373243.
Files: 
 be9f84454e4f818f66e1e067a75338d4 585 debian-installer optional 
oldsys-preseed_0.3.dsc
 e882df3656d58cb5b1867e7192aaaf5d 42087 debian-installer optional 
oldsys-preseed_0.3.tar.gz
 f73c93362791c189feeaef5335e29344 4270 debian-installer optional 
oldsys-preseed_0.3_i386.udeb
Package-Type: udeb

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

iD8DBQFEjykPKb5dImj9VJ8RAgaTAJ4h8Lhu2a9KzS/reiMLo5aQ3DCeoQCeKb3B
AjwK77s8rTav2yKYmaaPLHc=
=nDCq
-END PGP SIGNATURE-


Accepted:
oldsys-preseed_0.3.dsc
  to pool/main/o/oldsys-preseed/oldsys-preseed_0.3.dsc
oldsys-preseed_0.3.tar.gz
  to pool/main/o/oldsys-preseed/oldsys-preseed_0.3.tar.gz
oldsys-preseed_0.3_i386.udeb
  to pool/main/o/oldsys-preseed/oldsys-preseed_0.3_i386.udeb


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



Accepted gobby 0.3.99+0.4.0rc2-1 (source i386)

2006-06-13 Thread Philipp Kern
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 20:42:23 +0200
Source: gobby
Binary: gobby
Architecture: source i386
Version: 0.3.99+0.4.0rc2-1
Distribution: experimental
Urgency: low
Maintainer: Philipp Kern [EMAIL PROTECTED]
Changed-By: Philipp Kern [EMAIL PROTECTED]
Description: 
 gobby  - collaborative text editor
Closes: 363616 366621 367862
Changes: 
 gobby (0.3.99+0.4.0rc2-1) experimental; urgency=low
 .
   * New upstream release, which is incompatible to previous versions
 and still a release candidate; pushing to experimental to receive
 more testing (Closes: #366621)
   * Encryption is now handled by GNUTLS, so no GMP is needed anymore
 (Closes: #367862)
   * Fix minor spelling mistake in package description (Closes: #363616)
Files: 
 0532f5d9ebc6eae6c0207dfe44b16d35 799 net optional gobby_0.3.99+0.4.0rc2-1.dsc
 6b40cfe48ef9f4d24e4e81486ef6992e 351604 net optional 
gobby_0.3.99+0.4.0rc2.orig.tar.gz
 f0588d15d881b16cfc52d902d5ab9b6c 8641 net optional 
gobby_0.3.99+0.4.0rc2-1.diff.gz
 e7d9feab0eebace1295822963eaf279b 640618 net optional 
gobby_0.3.99+0.4.0rc2-1_i386.deb

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

iD8DBQFEjxgx7Ro5M7LPzdgRAsaeAJwMXLAXVQbTPHd0MCzwR2FTpqsBGQCfYxbS
XkWpONihUZuhcbB3gE3azWs=
=IIuc
-END PGP SIGNATURE-


Accepted:
gobby_0.3.99+0.4.0rc2-1.diff.gz
  to pool/main/g/gobby/gobby_0.3.99+0.4.0rc2-1.diff.gz
gobby_0.3.99+0.4.0rc2-1.dsc
  to pool/main/g/gobby/gobby_0.3.99+0.4.0rc2-1.dsc
gobby_0.3.99+0.4.0rc2-1_i386.deb
  to pool/main/g/gobby/gobby_0.3.99+0.4.0rc2-1_i386.deb
gobby_0.3.99+0.4.0rc2.orig.tar.gz
  to pool/main/g/gobby/gobby_0.3.99+0.4.0rc2.orig.tar.gz


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



Accepted dovecot 1.0.beta8-4 (source i386)

2006-06-13 Thread Jaldhar H. Vyas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 11 Jun 2006 16:27:43 -0400
Source: dovecot
Binary: dovecot-common dovecot-pop3d dovecot-imapd
Architecture: source i386
Version: 1.0.beta8-4
Distribution: unstable
Urgency: high
Maintainer: Jaldhar H. Vyas [EMAIL PROTECTED]
Changed-By: Jaldhar H. Vyas [EMAIL PROTECTED]
Description: 
 dovecot-common - secure mail server that supports mbox and maildir mailboxes
 dovecot-imapd - secure IMAP server that supports mbox and maildir mailboxes
 dovecot-pop3d - secure POP3 server that supports mbox and maildir mailboxes
Closes: 369359 373227
Changes: 
 dovecot (1.0.beta8-4) unstable; urgency=high
 .
   * Unfortunately, the patch in the last version broke the mysql module.
 Fixed thanks to Martin Pitt.  (Closes: #369359, #373227)
Files: 
 26722f52bc9418544e3e6daa037a6abd 1182 mail optional dovecot_1.0.beta8-4.dsc
 f5125d8d82ead00162bca0b9f0a37ce7 120809 mail optional 
dovecot_1.0.beta8-4.diff.gz
 adb5da2e0fbd20dcc9e17fc95ad0399a 949622 mail optional 
dovecot-common_1.0.beta8-4_i386.deb
 b951a114a438bfdc28842b09d922d624 528802 mail optional 
dovecot-imapd_1.0.beta8-4_i386.deb
 ec8da8d2ab51b0246a100a63b419f7db 497480 mail optional 
dovecot-pop3d_1.0.beta8-4_i386.deb

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

iQEVAwUBRI8MOnfkL4T3NBWpAQIIAgf6Alu7Jd55my4Il8iJEoQGp4dHOKlPy3yP
ZO/+QM7QU4RhSGlIw3WfDK3F6j1pIuLbu7WPLP8WKLVlezaRFKCTGG5ayKLfdlWI
FAnDUGHin7TwMq5lTXlb9adGjMFnLG4M6UpmJRsR0WWfmtpLeqDkUrVI86GGC6J8
TCPMlbKcW4xEtXwpUWkuxiVWqS8nH0+XOikXlfHqPrxza7q3GlXk5qfOIZV01g6U
EkJTZgOE3HJpkNfqYh21jXx+418vsUW7WwRTPpeC3tXz5SPOMiFan5I4i7HZDlnY
BExcibgmH9fRtXSN7JDHO7PBkRnMu+yBjPc6ZUFelkYoc3tFC7mYnQ==
=BsET
-END PGP SIGNATURE-


Accepted:
dovecot-common_1.0.beta8-4_i386.deb
  to pool/main/d/dovecot/dovecot-common_1.0.beta8-4_i386.deb
dovecot-imapd_1.0.beta8-4_i386.deb
  to pool/main/d/dovecot/dovecot-imapd_1.0.beta8-4_i386.deb
dovecot-pop3d_1.0.beta8-4_i386.deb
  to pool/main/d/dovecot/dovecot-pop3d_1.0.beta8-4_i386.deb
dovecot_1.0.beta8-4.diff.gz
  to pool/main/d/dovecot/dovecot_1.0.beta8-4.diff.gz
dovecot_1.0.beta8-4.dsc
  to pool/main/d/dovecot/dovecot_1.0.beta8-4.dsc


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



Accepted gst0.10-python 0.10.4-3 (source i386)

2006-06-13 Thread Joe Wreschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 23:09:35 -0500
Source: gst0.10-python
Binary: python-gst0.10
Architecture: source i386
Version: 0.10.4-3
Distribution: unstable
Urgency: low
Maintainer: Joe Wreschnig [EMAIL PROTECTED]
Changed-By: Joe Wreschnig [EMAIL PROTECTED]
Description: 
 python-gst0.10 - generic media-playing framework (Python bindings)
Changes: 
 gst0.10-python (0.10.4-3) unstable; urgency=low
 .
   * debian/control: XS-Python-Version: = 2.3.
   * debian/rules: Use pyversions to get available versions.
   * Use python-central/dh_pycentral.
Files: 
 7f2c8a3b31b754092bedf6bcd44af19b 861 python optional 
gst0.10-python_0.10.4-3.dsc
 b060373e8467ea6222b12360269f247c 16927 python optional 
gst0.10-python_0.10.4-3.diff.gz
 c3f926fb1a749d18eac0dff970ebd04a 310890 python optional 
python-gst0.10_0.10.4-3_i386.deb

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

iD8DBQFEjw0PTFkUq7Drx3cRAkdLAJ4+6FNvaLXEUrhLm/qv9kl4ILgOaACgkYFM
kcF9xk+OBmMCtnDLR01eQDw=
=0WCE
-END PGP SIGNATURE-


Accepted:
gst0.10-python_0.10.4-3.diff.gz
  to pool/main/g/gst0.10-python/gst0.10-python_0.10.4-3.diff.gz
gst0.10-python_0.10.4-3.dsc
  to pool/main/g/gst0.10-python/gst0.10-python_0.10.4-3.dsc
python-gst0.10_0.10.4-3_i386.deb
  to pool/main/g/gst0.10-python/python-gst0.10_0.10.4-3_i386.deb


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



Accepted ion3-scripts 20060613-1 (source all)

2006-06-13 Thread René van Bevern
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 22:05:07 +0200
Source: ion3-scripts
Binary: ion3-scripts
Architecture: source all
Version: 20060613-1
Distribution: unstable
Urgency: low
Maintainer: René van Bevern [EMAIL PROTECTED]
Changed-By: René van Bevern [EMAIL PROTECTED]
Description: 
 ion3-scripts - user-contributed add-ons to the Ion 3 window manager
Closes: 370246 370773
Changes: 
 ion3-scripts (20060613-1) unstable; urgency=low
 .
   * New snapshot
 .
 + more lua 5.1 and general fixes for statusd_sysmon.lua
   (closes: #370246)
 .
 + statusd_laptopstatus.lua: merge statusd configuration, try multiple
   ac adapter state files (closes: #370773)
 .
   * New status mointors:
 + statusd_volume2.lua: monitor music volume with amixer
 + statusd_info.lua: system monitor on base of top and free
 .
   * debian/copyright: add license information for the two new monitors
Files: 
 b2ed70d94ef52d19a8bf045d8a30aefb 646 x11 extra ion3-scripts_20060613-1.dsc
 2c30fe134313adc89bf9c5fab94ecf09 96614 x11 extra 
ion3-scripts_20060613.orig.tar.gz
 fd05ff590981df636939704325c81c3e 18683 x11 extra 
ion3-scripts_20060613-1.diff.gz
 adaa8a1b3bef8397fd954662ac514fbb 111766 x11 extra 
ion3-scripts_20060613-1_all.deb

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

iD8DBQFEjxtBwm0wNHxxTHgRAl3rAJ9ketggzwFNSJ8on7be31GoIP1QaACfTwOL
Bxi2ldcGj+wadF5AnMvbTGY=
=EFcw
-END PGP SIGNATURE-


Accepted:
ion3-scripts_20060613-1.diff.gz
  to pool/main/i/ion3-scripts/ion3-scripts_20060613-1.diff.gz
ion3-scripts_20060613-1.dsc
  to pool/main/i/ion3-scripts/ion3-scripts_20060613-1.dsc
ion3-scripts_20060613-1_all.deb
  to pool/main/i/ion3-scripts/ion3-scripts_20060613-1_all.deb
ion3-scripts_20060613.orig.tar.gz
  to pool/main/i/ion3-scripts/ion3-scripts_20060613.orig.tar.gz


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



Accepted libsdl-sge 030809-3 (source i386)

2006-06-13 Thread Debian packages
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 22:51:55 +0200
Source: libsdl-sge
Binary: libsdl-sge-dev libsdl-sge
Architecture: source i386
Version: 030809-3
Distribution: unstable
Urgency: low
Maintainer: Debian SDL packages maintainers [EMAIL PROTECTED]
Changed-By: Sam Hocevar (Debian packages) [EMAIL PROTECTED]
Description: 
 libsdl-sge - extension of graphic functions for the SDL multimedia library
 libsdl-sge-dev - development files for libsdl-sge
Closes: 370685
Changes: 
 libsdl-sge (030809-3) unstable; urgency=low
 .
   * 006_freetype2_fixes.diff:
 + Fix from freetype2 upstream that removes usage of internal structures
   (Closes: #370685).
Files: 
 cd2481d3fdbaaf9f3f39cab93967c685 976 devel optional libsdl-sge_030809-3.dsc
 9830fc16a11d30c0de72065f8de2838e 6027 devel optional 
libsdl-sge_030809-3.diff.gz
 f978b1fd220737542ee3857a71a884f2 89522 libs optional 
libsdl-sge_030809-3_i386.deb
 17bb9eaa9eda0c5e5cffc90d02848a62 270628 libdevel optional 
libsdl-sge-dev_030809-3_i386.deb

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

iD8DBQFEjyY8fPP1rylJn2ERAmqAAKCmJbRXJuPt8G+49oVeT1egDlm8PQCghX/p
Jw/2uD6X7DZl6x7uX2kyrTs=
=AA1m
-END PGP SIGNATURE-


Accepted:
libsdl-sge-dev_030809-3_i386.deb
  to pool/main/libs/libsdl-sge/libsdl-sge-dev_030809-3_i386.deb
libsdl-sge_030809-3.diff.gz
  to pool/main/libs/libsdl-sge/libsdl-sge_030809-3.diff.gz
libsdl-sge_030809-3.dsc
  to pool/main/libs/libsdl-sge/libsdl-sge_030809-3.dsc
libsdl-sge_030809-3_i386.deb
  to pool/main/libs/libsdl-sge/libsdl-sge_030809-3_i386.deb


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



Accepted adplug-xmms 1.1-3 (source i386)

2006-06-13 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 06:54:00 +0200
Source: adplug-xmms
Binary: xmms-adplug
Architecture: source i386
Version: 1.1-3
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 xmms-adplug - free AdLib sound library (xmms-plugin)
Closes: 361020
Changes: 
 adplug-xmms (1.1-3) unstable; urgency=low
 .
   * Acknowledge NMU (Closes: #361020).
   * Replaced old dpatch with Stephens diff (except config.sub/config.guess).
Files: 
 4ec9664fb2ff00ffa3a3d4fe7099cc95 652 sound optional adplug-xmms_1.1-3.dsc
 b7d0465fd1243435cc5dade20bf1e05a 387596 sound optional 
adplug-xmms_1.1-3.diff.gz
 19e14f16d414a693e95c42ccabffbd8e 26008 sound optional 
xmms-adplug_1.1-3_i386.deb

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

iD8DBQFEjwnk5UTeB5t8Mo0RAkCKAJ4x74cPNhrljB8+6C8Lru6NBambbQCeI9Qa
l4sN6uzsOrwBfZED3mBDoJE=
=IqW0
-END PGP SIGNATURE-


Accepted:
adplug-xmms_1.1-3.diff.gz
  to pool/main/a/adplug-xmms/adplug-xmms_1.1-3.diff.gz
adplug-xmms_1.1-3.dsc
  to pool/main/a/adplug-xmms/adplug-xmms_1.1-3.dsc
xmms-adplug_1.1-3_i386.deb
  to pool/main/a/adplug-xmms/xmms-adplug_1.1-3_i386.deb


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



Accepted noweb 2.11b-1.3 (source i386)

2006-06-13 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 14:57:58 -0400
Source: noweb
Binary: nowebm
Architecture: source i386
Version: 2.11b-1.3
Distribution: unstable
Urgency: low
Maintainer: Federico Di Gregorio [EMAIL PROTECTED]
Changed-By: Joey Hess [EMAIL PROTECTED]
Description: 
 nowebm - A WEB-like literate-programming tool
Closes: 218050 223376 284691
Changes: 
 noweb (2.11b-1.3) unstable; urgency=low
 .
   [ Norman Ramsey ]
   * Non-maintainer upload.
   * Fixed some problems with Makefiles
   * Added scopehack to distribution. Closes: #284691
   * New upstream release
- Closes: #218050 (and a related problem with noweave -x)
- Closes: #223376
- notes limits of htmltoc in man page (won't fix #157853)
 .
   [ Joey Hess ]
   * Cleaned up the changelog bug closings, etc.
Files: 
 01f2a2f5de9987cea0d0ded28eb531cd 606 devel extra noweb_2.11b-1.3.dsc
 c51b748a7e6c7983af4be0e274cdd687 14460 devel extra noweb_2.11b-1.3.diff.gz
 4f6d17997ee37633bf1b903921a53054 525816 devel extra nowebm_2.11b-1.3_i386.deb

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

iD8DBQFEjwwy2tp5zXiKP0wRAi9LAJ9HNHpJ8adZiaJw/emlVEKs5Ob+sQCffcO5
aT2jxzbDBC6YeUPwBuW+F7Y=
=Wlqn
-END PGP SIGNATURE-


Accepted:
noweb_2.11b-1.3.diff.gz
  to pool/main/n/noweb/noweb_2.11b-1.3.diff.gz
noweb_2.11b-1.3.dsc
  to pool/main/n/noweb/noweb_2.11b-1.3.dsc
noweb_2.11b.orig.tar.gz
  to pool/main/n/noweb/noweb_2.11b.orig.tar.gz
nowebm_2.11b-1.3_i386.deb
  to pool/main/n/noweb/nowebm_2.11b-1.3_i386.deb


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



Accepted adduser 3.88 (source all)

2006-06-13 Thread Marc Haber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 19:46:00 +
Source: adduser
Binary: adduser
Architecture: source all
Version: 3.88
Distribution: experimental
Urgency: low
Maintainer: Debian Adduser Developers [EMAIL PROTECTED]
Changed-By: Marc Haber [EMAIL PROTECTED]
Description: 
 adduser- Add and remove users and groups
Closes: 147518 166718 212452 233894 239006 240707 240855 351968 357978 366885 
367213 367380 370030 372599
Changes: 
 adduser (3.88) experimental; urgency=low
 .
   [ Marc Haber ]
   * experimental version
   * Update French (fr) program translation.
 Thanks to Thomas Huriaux. Closes: #366885
   * Update French (fr) manpage translation.
 Thanks to Nicolas François. Closes: #367380
   * Apply two small patches to deluser man page.
 Thanks to Florentin Duneau. Closes: #367213
   * Update Italian (it) program and manpage translations.
 Thanks to Luca Monducci. Closes: #370030
   * Standards-Version: 3.7.2, no changed necessary.
 .
   [ Stephen Gran ]
   * allow additional groups to be used for a new user.
 Closes: #147518, #166718, #212452, #233894, #239006, #240707, #240855
   * test 8 now adds a group, and adds the new user to that group - this should
 ensure that the new additional groups feature does not get invoked for
 'adduser to group' code paths
   * Fix adduser: adduser: output of error messages.
   * Fix error messages like foo , gtx( ..., whch does not produce
 output at all. Closes: #351968
   * Honor system PATH, do not hard-code paths to sub-programs.
 Closes: #357978
   * deluser should match its documentation, and exit 0 when asked to remove a
 system user that doesn't exist. Closes: #372599
Files: 
 adfa210fc46ccf33b0856621b78d5e6c 645 admin important adduser_3.88.dsc
 8c4f47771f8d0f58eed20ff478b4e29d 216248 admin important adduser_3.88.tar.gz
 25d09fe66575c2a54da86985cfef293d 161532 admin important adduser_3.88_all.deb

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

iD8DBQFEjxgOgZalRGu6PIQRAoSMAKCNMYWyZ7iOgdweTjoztKjHExUKoACfTyvY
EyNkHZGiLe43oDt80wd0J4w=
=sjhq
-END PGP SIGNATURE-


Accepted:
adduser_3.88.dsc
  to pool/main/a/adduser/adduser_3.88.dsc
adduser_3.88.tar.gz
  to pool/main/a/adduser/adduser_3.88.tar.gz
adduser_3.88_all.deb
  to pool/main/a/adduser/adduser_3.88_all.deb


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



Accepted gbib 0.1.2-9 (source amd64)

2006-06-13 Thread Philipp Frauenfelder
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 21:43:39 +0200
Source: gbib
Binary: gbib
Architecture: source amd64
Version: 0.1.2-9
Distribution: unstable
Urgency: low
Maintainer: Philipp Frauenfelder [EMAIL PROTECTED]
Changed-By: Philipp Frauenfelder [EMAIL PROTECTED]
Description: 
 gbib   - user-friendly editor and browser for BibTeX databases
Closes: 334221 334407 351506
Changes: 
 gbib (0.1.2-9) unstable; urgency=low
 .
   * Approving NMU by Bill Allombert. Thank you:
 - Works on 64bit systems. Closes: #334221
 - Patch po/Makefile.in.in to remove .gmo files.
   * Problems was related to configuration or library problem around
 esd and alsa. Closes: #334407
   * Added Swedish PO translation. Closes: #351506
Files: 
 f583c2a3f1f70cd8f17908a2e732dd73 590 gnome optional gbib_0.1.2-9.dsc
 9f349d220505b30718b6efd88c811346 39188 gnome optional gbib_0.1.2-9.diff.gz
 7c8aebd8ba1a64da7581e4aef9d2aeef 92044 gnome optional gbib_0.1.2-9_amd64.deb

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

iD8DBQFEjxdHWLF0MZ2lytgRApSuAKCc2/bZP7l/zek0jozL7lP8QopDHACfWmDv
XGqKz3ShW4neN/6Tq6jQHPk=
=SmKH
-END PGP SIGNATURE-


Accepted:
gbib_0.1.2-9.diff.gz
  to pool/main/g/gbib/gbib_0.1.2-9.diff.gz
gbib_0.1.2-9.dsc
  to pool/main/g/gbib/gbib_0.1.2-9.dsc
gbib_0.1.2-9_amd64.deb
  to pool/main/g/gbib/gbib_0.1.2-9_amd64.deb


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



Accepted php4 4:4.4.2-1.1 (source i386 all)

2006-06-13 Thread Steinar H. Gunderson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 21:09:20 +0200
Source: php4
Binary: php4-sybase php4-recode php4-cgi libapache-mod-php4 php4-cli php4-dev 
php4-snmp libapache2-mod-php4 php4-odbc php4-xslt php4-mysql php4-domxml 
php4-gd php4-ldap php4-common php4 php4-curl php4-pear php4-mcal php4-mhash 
php4-pgsql
Architecture: source i386 all
Version: 4:4.4.2-1.1
Distribution: unstable
Urgency: high
Maintainer: Debian PHP Maintainers [EMAIL PROTECTED]
Changed-By: Steinar H. Gunderson [EMAIL PROTECTED]
Description: 
 libapache-mod-php4 - server-side, HTML-embedded scripting language (apache 1.3 
module)
 libapache2-mod-php4 - server-side, HTML-embedded scripting language (apache 
2.0 module)
 php4   - server-side, HTML-embedded scripting language (meta-package)
 php4-cgi   - server-side, HTML-embedded scripting language (CGI binary)
 php4-cli   - command-line interpreter for the php4 scripting language
 php4-common - Common files for packages built from the php4 source
 php4-curl  - CURL module for php4
 php4-dev   - Files for PHP4 module development
 php4-domxml - XMLv2 module for php4
 php4-gd- GD module for php4
 php4-ldap  - LDAP module for php4
 php4-mcal  - MCAL calendar module for php4
 php4-mhash - MHASH module for php4
 php4-mysql - MySQL module for php4
 php4-odbc  - ODBC module for php4
 php4-pear  - PHP Extension and Application Repository (transitional package)
 php4-pgsql - PostgreSQL module for php4
 php4-recode - Character recoding module for php4
 php4-snmp  - SNMP module for php4
 php4-sybase - Sybase / MS SQL Server module for php4
 php4-xslt  - XSLT module for php4
Closes: 359904 365311
Changes: 
 php4 (4:4.4.2-1.1) unstable; urgency=high
 .
   * Non-maintainer upload.
   * Backport patches from upstream CVS to fix security issues:
 * 058-html_entity_decode_fix.patch: Fix information leak in
   html_entity_decode() (CVE-2006-1490). (Closes: #359904)
 * 059-wordwrap_fix.patch: Fix possible heap overflow in wordwrap()
   (CVE-2006-1990). (Closes: #365311)
   * Make sure patches are applied in correct order; patch from Sven Mueller.
Files: 
 76c4f4b9e41c406d62f48702c6053036 1795 web optional php4_4.4.2-1.1.dsc
 16df926d8c166457279f5d0f1c026816 98861 web optional php4_4.4.2-1.1.diff.gz
 9fe77a8ef48275aa970804e8dd8f0c10 173964 web optional 
php4-common_4.4.2-1.1_i386.deb
 ec1931036704ae8833a38c4f1e4500c4 1596348 web optional 
libapache-mod-php4_4.4.2-1.1_i386.deb
 ebd24938bc3af71c1b67691e72f1b94d 1593038 web optional 
libapache2-mod-php4_4.4.2-1.1_i386.deb
 d1f8eb6e4a5e051c5534f34427e93982 3173488 web optional 
php4-cgi_4.4.2-1.1_i386.deb
 aaddf221b22d3ffd2de705982655ffe6 1592912 web optional 
php4-cli_4.4.2-1.1_i386.deb
 5e5aff0f7db9384a4ffeae0d97dc5420 200812 devel optional 
php4-dev_4.4.2-1.1_i386.deb
 75f92f870d35fab6571e17531145ea6e 19068 web optional 
php4-curl_4.4.2-1.1_i386.deb
 c28852fee7b42549208e5dc96e0a0cb2 38716 web optional 
php4-domxml_4.4.2-1.1_i386.deb
 c8cba314ec3844c3afc82cf2baf85041 33278 web optional php4-gd_4.4.2-1.1_i386.deb
 9705f7f4d2bc3e561d8054e1677b80f2 20728 web optional 
php4-ldap_4.4.2-1.1_i386.deb
 738aa598ce5cf2586d794cd01ab70c8d 17668 web optional 
php4-mcal_4.4.2-1.1_i386.deb
 76495bfcf28e2233d1ac572a0105e1e9 8742 web optional 
php4-mhash_4.4.2-1.1_i386.deb
 c540eb689dc3e81f0947e8bc27d11248 22176 web optional 
php4-mysql_4.4.2-1.1_i386.deb
 8a5454f4d5034477f066d1d09d5a0d2a 28222 web optional 
php4-odbc_4.4.2-1.1_i386.deb
 f0198a97165bad226e3eeed52bc77dd4 37550 web optional 
php4-pgsql_4.4.2-1.1_i386.deb
 fafafea509c3b060a550dc9555b11ec6 8444 web optional 
php4-recode_4.4.2-1.1_i386.deb
 e058db9e8db8b92bf1c31fa965b17ba3 13950 web optional 
php4-snmp_4.4.2-1.1_i386.deb
 bd2c19bf1b41c26799338c68cd8c5dfe 21744 web optional 
php4-sybase_4.4.2-1.1_i386.deb
 4fd16bc6f85a86eda49c3a2eb81df28f 16876 web optional 
php4-xslt_4.4.2-1.1_i386.deb
 1d81d3e83c7ba1e2532520e6319fda98 1160 web optional php4_4.4.2-1.1_all.deb
 f12061f6e543a37a44282a7af35f41fa 1176 web optional php4-pear_4.4.2-1.1_all.deb

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

iD8DBQFEjxpTXKRQ3lK3SH4RAmIaAKC4T8VHwxitcb89Ki6VWK1Z+0w3lgCgtnLp
TTYfwJpVR+4TS53MXmTJTsg=
=MPqW
-END PGP SIGNATURE-


Accepted:
libapache-mod-php4_4.4.2-1.1_i386.deb
  to pool/main/p/php4/libapache-mod-php4_4.4.2-1.1_i386.deb
libapache2-mod-php4_4.4.2-1.1_i386.deb
  to pool/main/p/php4/libapache2-mod-php4_4.4.2-1.1_i386.deb
php4-cgi_4.4.2-1.1_i386.deb
  to pool/main/p/php4/php4-cgi_4.4.2-1.1_i386.deb
php4-cli_4.4.2-1.1_i386.deb
  to pool/main/p/php4/php4-cli_4.4.2-1.1_i386.deb
php4-common_4.4.2-1.1_i386.deb
  to pool/main/p/php4/php4-common_4.4.2-1.1_i386.deb
php4-curl_4.4.2-1.1_i386.deb
  to pool/main/p/php4/php4-curl_4.4.2-1.1_i386.deb
php4-dev_4.4.2-1.1_i386.deb
  to pool/main/p/php4/php4-dev_4.4.2-1.1_i386.deb
php4-domxml_4.4.2-1.1_i386.deb
  to pool/main/p/php4/php4-domxml_4.4.2-1.1_i386.deb
php4-gd_4.4.2-1.1_i386.deb
  to 

Accepted pygame 1.7.1release-3 (source i386)

2006-06-13 Thread Joe Wreschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Jun 2006 23:45:00 -0500
Source: pygame
Binary: python-pygame
Architecture: source i386
Version: 1.7.1release-3
Distribution: unstable
Urgency: low
Maintainer: Ed Boraas [EMAIL PROTECTED]
Changed-By: Joe Wreschnig [EMAIL PROTECTED]
Description: 
 python-pygame - SDL bindings for games development in Python
Changes: 
 pygame (1.7.1release-3) unstable; urgency=low
 .
   * control, rules: Update to new Python policy, using pycentral.
   * Switch to debhelper level 5.
Files: 
 4a1b1094a87a1e82f4da4a3c820409c6 955 python optional pygame_1.7.1release-3.dsc
 a0037af4a899680682918e2555672a27 4516 python optional 
pygame_1.7.1release-3.diff.gz
 be395180e36f6f85fe98d047db32bfbd 818366 python optional 
python-pygame_1.7.1release-3_i386.deb

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

iD8DBQFEjwz8TFkUq7Drx3cRAiWeAKCEj4EjiomqloEKxyQIBAHQz0bnzwCgjMPx
nR9f0f+CPY5i53SKzSDaIjQ=
=3a+N
-END PGP SIGNATURE-


Accepted:
pygame_1.7.1release-3.diff.gz
  to pool/main/p/pygame/pygame_1.7.1release-3.diff.gz
pygame_1.7.1release-3.dsc
  to pool/main/p/pygame/pygame_1.7.1release-3.dsc
python-pygame_1.7.1release-3_i386.deb
  to pool/main/p/pygame/python-pygame_1.7.1release-3_i386.deb


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



Accepted connect-proxy 1.96-1 (source i386)

2006-06-13 Thread Philippe Coval
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat,  6 May 2006 00:59:39 +0200
Source: connect-proxy
Binary: connect-proxy
Architecture: source i386
Version: 1.96-1
Distribution: unstable
Urgency: low
Maintainer: [EMAIL PROTECTED]
Changed-By: Philippe Coval [EMAIL PROTECTED]
Description: 
 connect-proxy - Establish TCP connection using SOCKS4/5 and HTTP tunnel
Changes: 
 connect-proxy (1.96-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 3ab95d0783eda1f763b6fb983feccf21 643 net optional connect-proxy_1.96-1.dsc
 a0e8f6ea3fdecffe7e570b689faff47c 23299 net optional 
connect-proxy_1.96.orig.tar.gz
 f82fe4b14cfc84d960472f979b2c57b7 4515 net optional connect-proxy_1.96-1.diff.gz
 f76b95a870e8441fb386d3156207b89e 18596 net optional 
connect-proxy_1.96-1_i386.deb

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

iD8DBQFEjyiUTx4JB6685x8RAoS1AKCHOQiurByPUu6cspGZbC5aH99YYQCeMbh+
CATCxNgFXV+zB8vSEOEw+fs=
=u+98
-END PGP SIGNATURE-


Accepted:
connect-proxy_1.96-1.diff.gz
  to pool/main/c/connect-proxy/connect-proxy_1.96-1.diff.gz
connect-proxy_1.96-1.dsc
  to pool/main/c/connect-proxy/connect-proxy_1.96-1.dsc
connect-proxy_1.96-1_i386.deb
  to pool/main/c/connect-proxy/connect-proxy_1.96-1_i386.deb
connect-proxy_1.96.orig.tar.gz
  to pool/main/c/connect-proxy/connect-proxy_1.96.orig.tar.gz


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



Accepted mutagen 1.4-2 (source all)

2006-06-13 Thread Joe Wreschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 14:10:31 -0500
Source: mutagen
Binary: python-mutagen
Architecture: source all
Version: 1.4-2
Distribution: unstable
Urgency: low
Maintainer: Joe Wreschnig [EMAIL PROTECTED]
Changed-By: Joe Wreschnig [EMAIL PROTECTED]
Description: 
 python-mutagen - audio metadata editing library
Changes: 
 mutagen (1.4-2) unstable; urgency=low
 .
   * Update to new Python policy (XS-Python-Version = 2.3).
Files: 
 d6a80ea02ce912b026f1d7050e64f9c2 643 python optional mutagen_1.4-2.dsc
 c6cb7cde820b950968bc81d6bfef759a 1761 python optional mutagen_1.4-2.diff.gz
 da408190c308faccd942cb92cd5032f6 52732 python optional 
python-mutagen_1.4-2_all.deb

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

iD8DBQFEjxRXTFkUq7Drx3cRAhVnAJ9b3ub+AQgrz1t5mtP4B9uW5vItXwCgkqQh
9RTxzpEpEiJwY/NOhsKN7q4=
=BMmD
-END PGP SIGNATURE-


Accepted:
mutagen_1.4-2.diff.gz
  to pool/main/m/mutagen/mutagen_1.4-2.diff.gz
mutagen_1.4-2.dsc
  to pool/main/m/mutagen/mutagen_1.4-2.dsc
python-mutagen_1.4-2_all.deb
  to pool/main/m/mutagen/python-mutagen_1.4-2_all.deb


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



Accepted feedparser 4.1-4 (source all)

2006-06-13 Thread Joe Wreschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 14:15:49 -0500
Source: feedparser
Binary: python-feedparser
Architecture: source all
Version: 4.1-4
Distribution: unstable
Urgency: low
Maintainer: Joe Wreschnig [EMAIL PROTECTED]
Changed-By: Joe Wreschnig [EMAIL PROTECTED]
Description: 
 python-feedparser - Universal Feed Parser for Python
Changes: 
 feedparser (4.1-4) unstable; urgency=low
 .
   * Update for new Python policy. (XS-Python-Version = 2.1)
Files: 
 a975ef6916c4e33bae1eee87104740a0 655 python optional feedparser_4.1-4.dsc
 85c7bcb66f22733fad72f4a179b880fa 2167 python optional feedparser_4.1-4.diff.gz
 d2b03476802b293b08093c1297ff72f1 112174 python optional 
python-feedparser_4.1-4_all.deb

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

iD8DBQFEjxUvTFkUq7Drx3cRAtX7AKChf1p34LuEOkoutUksnZ7i3cczEwCfb4n4
2pbY44Oc/pa641i/9CZeOF0=
=Dz76
-END PGP SIGNATURE-


Accepted:
feedparser_4.1-4.diff.gz
  to pool/main/f/feedparser/feedparser_4.1-4.diff.gz
feedparser_4.1-4.dsc
  to pool/main/f/feedparser/feedparser_4.1-4.dsc
python-feedparser_4.1-4_all.deb
  to pool/main/f/feedparser/python-feedparser_4.1-4_all.deb


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



Accepted gst-python 0.8.4-2 (source i386)

2006-06-13 Thread Joe Wreschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 14:52:40 -0500
Source: gst-python
Binary: python-gst
Architecture: source i386
Version: 0.8.4-2
Distribution: unstable
Urgency: low
Maintainer: Joe Wreschnig [EMAIL PROTECTED]
Changed-By: Joe Wreschnig [EMAIL PROTECTED]
Description: 
 python-gst - generic media-playing framework (Python bindings)
Changes: 
 gst-python (0.8.4-2) unstable; urgency=low
 .
   * Update for new Python policy (XS-Python-Version: = 2.3).
Files: 
 5e72b60328c33dab7614173b9d1e1035 783 python optional gst-python_0.8.4-2.dsc
 c5959d4ca19f9ae81d77e008fda8a5db 17364 python optional 
gst-python_0.8.4-2.diff.gz
 4f6d211b28fc7d3b9a9612380fe04434 197526 python optional 
python-gst_0.8.4-2_i386.deb

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

iD8DBQFEjxweTFkUq7Drx3cRAsyEAJwOFn56aO4yBWzgkAR4LmHtm9l7wwCeIiJn
qrqx2eJmkqvT8ONAvdHQhNU=
=hFT1
-END PGP SIGNATURE-


Accepted:
gst-python_0.8.4-2.diff.gz
  to pool/main/g/gst-python/gst-python_0.8.4-2.diff.gz
gst-python_0.8.4-2.dsc
  to pool/main/g/gst-python/gst-python_0.8.4-2.dsc
python-gst_0.8.4-2_i386.deb
  to pool/main/g/gst-python/python-gst_0.8.4-2_i386.deb


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



Accepted vim 1:7.0-017+6 (source all i386)

2006-06-13 Thread James Vega
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 11:06:59 -0400
Source: vim
Binary: vim-full vim-lesstif vim-common vim-gnome vim-doc vim-runtime vim 
vim-gtk vim-perl vim-ruby vim-gui-common vim-tiny vim-python vim-tcl
Architecture: source all i386
Version: 1:7.0-017+6
Distribution: unstable
Urgency: low
Maintainer: Debian VIM Maintainers [EMAIL PROTECTED]
Changed-By: James Vega [EMAIL PROTECTED]
Description: 
 vim- Vi IMproved - enhanced vi editor
 vim-common - Vi IMproved - Common files
 vim-doc- Vi IMproved - HTML documentation
 vim-full   - Vi IMproved - enhanced vi editor - full fledged version
 vim-gnome  - Vi IMproved - enhanced vi editor - with GNOME2 GUI
 vim-gtk- Vi IMproved - enhanced vi editor - with GTK2 GUI
 vim-gui-common - Vi IMproved - Common GUI files
 vim-lesstif - Vi IMproved - enhanced vi editor - with LessTif GUI
 vim-perl   - Vi IMproved - enhanced vi editor - with Perl support
 vim-python - Vi IMproved - enhanced vi editor - with Python support
 vim-ruby   - Vi IMproved - enhanced vi editor - with Ruby support
 vim-runtime - Vi IMproved - Runtime files
 vim-tcl- Vi IMproved - enhanced vi editor - with TCL support
 vim-tiny   - Vi IMproved - enhanced vi editor - compact version
Closes: 367566 369740 370012 372926 373117
Changes: 
 vim (1:7.0-017+6) unstable; urgency=low
 .
   [ Pierre Habouzit ]
   * Add a Replace: vim-runtime to vim-common because of the vimcurrent mess,
 that may prevent vim upgrade. (Closes: #370012, #373117).
 .
   [ James Vega ]
   * Add vim-variant.preinst to remove any cruft left behind in
 /usr/share/doc/vim{,-$variant}, which is now a symlink to
 /usr/share/vim/vim-common.  (closes: #369740)
   * Update the build process so only vim-tiny starts in 'compatible' mode when
 invoked as vi.
 + Move patches/virc.c.diff to debian/tiny/vimrc.tiny.diff and apply only
   when building vim-tiny.
 + Rename /etc/vim/virc to /etc/vim/vimrc.tiny and add
   vim-common.{post,pre}inst code to handle the conffile renaming.
   * Update README.Debian to specify which package contains the vim policy and
 the correct directory that holds vim policy.
   * Add debchangelog.vim.diff which fixes an inifinite loop bug in the
 debchangelog filetype plugin.  (closes: #367566)
   * Add scripts.vim.diff which adds recognition of ltrace output and sets the
 filetype to 'strace'.  (closes: #372926)
Files: 
 9fa241b8e5a7ad90d16321101cecbad4 1351 editors optional vim_7.0-017+6.dsc
 e0e83d4f8d041e8a14b25ac78be8f12b 164710 editors optional vim_7.0-017+6.diff.gz
 959cf268c85536d64f78a682fb9d0e5d 88346 editors optional 
vim-gui-common_7.0-017+6_all.deb
 836812f889257104f6fd17b1a7474754 6333578 editors optional 
vim-runtime_7.0-017+6_all.deb
 cdeb0261418bdf7cf482f215743e1ee1 2029886 doc optional vim-doc_7.0-017+6_all.deb
 3f5ee01b3c3935cc23580d5519bf853b 493250 editors important 
vim-tiny_7.0-017+6_i386.deb
 a6cc1b11374e3346ec6556c6bdda1255 834112 editors extra 
vim-ruby_7.0-017+6_i386.deb
 a42db79af6dcb4a20afe02a865ae5337 870900 editors extra 
vim-tcl_7.0-017+6_i386.deb
 a27d294ae312788c8143520c017fda89 863650 editors extra 
vim-gtk_7.0-017+6_i386.deb
 8fca1fdae447c4a685e0491d9ada329d 857352 editors extra 
vim-lesstif_7.0-017+6_i386.deb
 e913dc363a697f4855234c86bb425ceb 921932 editors extra 
vim-perl_7.0-017+6_i386.deb
 3b6ca69a67a3bad3fec0ab1e1f3530b3 915672 editors extra 
vim-python_7.0-017+6_i386.deb
 7723ec5c19672e54e83802e8ef337efe 865946 editors extra 
vim-gnome_7.0-017+6_i386.deb
 97405b2a87f852f74861053a86438b0c 834140 editors extra 
vim-full_7.0-017+6_i386.deb
 fe21e3711532df35f55c71daa29c 188566 editors optional 
vim-common_7.0-017+6_i386.deb
 82c7f9ae6a9dad248f0492a067c9fd5e 742924 editors optional vim_7.0-017+6_i386.deb

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

iEYEARECAAYFAkSPEZ8ACgkQDb3UpmEybUCUygCcCM0cAiDEZRtWg69S3jnPzWpO
8JoAnRj4D9vRkSe42Zx8Nk8AffVBSIgz
=2NUN
-END PGP SIGNATURE-


Accepted:
vim-common_7.0-017+6_i386.deb
  to pool/main/v/vim/vim-common_7.0-017+6_i386.deb
vim-doc_7.0-017+6_all.deb
  to pool/main/v/vim/vim-doc_7.0-017+6_all.deb
vim-full_7.0-017+6_i386.deb
  to pool/main/v/vim/vim-full_7.0-017+6_i386.deb
vim-gnome_7.0-017+6_i386.deb
  to pool/main/v/vim/vim-gnome_7.0-017+6_i386.deb
vim-gtk_7.0-017+6_i386.deb
  to pool/main/v/vim/vim-gtk_7.0-017+6_i386.deb
vim-gui-common_7.0-017+6_all.deb
  to pool/main/v/vim/vim-gui-common_7.0-017+6_all.deb
vim-lesstif_7.0-017+6_i386.deb
  to pool/main/v/vim/vim-lesstif_7.0-017+6_i386.deb
vim-perl_7.0-017+6_i386.deb
  to pool/main/v/vim/vim-perl_7.0-017+6_i386.deb
vim-python_7.0-017+6_i386.deb
  to pool/main/v/vim/vim-python_7.0-017+6_i386.deb
vim-ruby_7.0-017+6_i386.deb
  to pool/main/v/vim/vim-ruby_7.0-017+6_i386.deb
vim-runtime_7.0-017+6_all.deb
  to pool/main/v/vim/vim-runtime_7.0-017+6_all.deb
vim-tcl_7.0-017+6_i386.deb
  to pool/main/v/vim/vim-tcl_7.0-017+6_i386.deb
vim-tiny_7.0-017+6_i386.deb
  

Accepted lyx 1.4.1-2 (source i386 all)

2006-06-13 Thread Per Olofsson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 13 Jun 2006 23:01:39 +0200
Source: lyx
Binary: lyx-qt lyx-common lyx-xforms lyx
Architecture: source i386 all
Version: 1.4.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian LyX Maintainers [EMAIL PROTECTED]
Changed-By: Per Olofsson [EMAIL PROTECTED]
Description: 
 lyx- High Level Word Processor
 lyx-common - High Level Word Processor - common files
 lyx-qt - High Level Word Processor - Qt frontend
 lyx-xforms - High Level Word Processor - XForms frontend
Closes: 135149 252077 284624 286555 330124 349664 349665
Changes: 
 lyx (1.4.1-2) unstable; urgency=low
 .
   [ Per Olofsson ]
   * Allow TeX Live as a substitute for teTeX. Closes: #349664, #349665.
   * Don't require python version to be lower than 2.4. Closes: #286555.
   * Update build-deps.
   * Provide lyx binary using alternatives. Closes: #330124
   * Added desktop file for lyx-qt so it shows up in menus etc. Closes:
 #284624
   * Made lyx-common recommend psutils. Closes: #252077
   * Applied Georg Baum's patch to get faster builds and optional GTK
 frontend.
   * Use libaspell. Closes: #135149
   * Be binNMU-safe by using source:Version instead of Source-Version.
   * Don't conflict with older versions because it only makes life
 difficult for package managers.
Files: 
 b36aa2d806528d32c5d0e3cd4196651e 999 editors optional lyx_1.4.1-2.dsc
 e415a837eea845644b6197f33061e7de 24855 editors optional lyx_1.4.1-2.diff.gz
 0201f6e5e10d513415db9c09c84fc8bc 2414756 editors optional 
lyx-qt_1.4.1-2_i386.deb
 5d262458984fd997f74c8775a29c4e77 2456654 editors optional 
lyx-xforms_1.4.1-2_i386.deb
 efe33f77332768fc1d6fb2800381e455 21254 editors optional lyx_1.4.1-2_all.deb
 417e51c0759a22bfc343508e7a275cba 4518668 editors optional 
lyx-common_1.4.1-2_all.deb

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

iD8DBQFEjzDheDAsS42/7C8RArYmAKDmfBuiAAi25LgifnrD2OIswYmawgCfZrgu
I+mzKmGdCFO7/DBBOWW1ghk=
=pKRC
-END PGP SIGNATURE-


Accepted:
lyx-common_1.4.1-2_all.deb
  to pool/main/l/lyx/lyx-common_1.4.1-2_all.deb
lyx-qt_1.4.1-2_i386.deb
  to pool/main/l/lyx/lyx-qt_1.4.1-2_i386.deb
lyx-xforms_1.4.1-2_i386.deb
  to pool/main/l/lyx/lyx-xforms_1.4.1-2_i386.deb
lyx_1.4.1-2.diff.gz
  to pool/main/l/lyx/lyx_1.4.1-2.diff.gz
lyx_1.4.1-2.dsc
  to pool/main/l/lyx/lyx_1.4.1-2.dsc
lyx_1.4.1-2_all.deb
  to pool/main/l/lyx/lyx_1.4.1-2_all.deb


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



  1   2   >