Re: Bug#379343: ITP: jrpg -- kanji learning game

2006-07-23 Thread Eric Dorland
* Matthew R. Dempsky ([EMAIL PROTECTED]) wrote:
 On Sat, Jul 22, 2006 at 06:01:57PM -0400, Eric Dorland wrote:
  * URL : http://www.example.org/
 
 Does this package not have an actual web site?

Sorry, http://www.zabor.org/jrpg/

-- 
Eric Dorland [EMAIL PROTECTED]
ICQ: #61138586, Jabber: [EMAIL PROTECTED]
1024D/16D970C6 097C 4861 9934 27A0 8E1C  2B0A 61E9 8ECF 16D9 70C6



signature.asc
Description: Digital signature


Re: Bug#379089: Configuration file shadowed?

2006-07-23 Thread Norbert Preining
Hi all!

Short comment from TeX live side, out of St. Moritz before leaving to
mountains:

On Fre, 21 Jul 2006, Frank Küster wrote:
  - files that can be used to modify the behavior of programs, and/or
files that make sense to customize site-wide behavior on a multiuser
system (I just cannot find an example of a file that would only
fulfill the second half of the sentence)

The texlive packages install their conffiles into /etc/texmf/texlive/...
and link from the /u/s/texmf-texlive tree. The files there are
dvipdfm.cfg
dvips/config.*
dvips/*.cfg
dvips/alt-rule.pro
mktex.cnf
xdvi.cfg
texdoctk/texdocrc.defaults
So IMHO texlive has most conffiles got right. I would oppose moving all
the map files back to /etc.

Finally one question for us TeX maintainers: Do we now really move the
mktex.cnf to tex-common, ie should I remove the
/etc/texmf/texlive/mktex.cnf and install the file into the
/u/s/texmf-texlive hierachy as an example?

So I am off again for 1 week.

Frank, see you soon, and all the best

Norbert


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



Re: [Mactel-linux-devel] MacBook iSight works?

2006-07-23 Thread Davide Viti
On Sun, 23 Jul 2006 06:10:07 +0200, Junichi Uekawa wrote:

 Actually, I managed to get it working on MacBook with Ekiga.
 I'm looking for success/failure reports now.

I installed the following:
linux-uvc-source_0.1.0-1_i386.deb  
linux-uvc-tools_0.1.0-1_i386.deb

then run

# m-a prepare
# m-a a-i linux-uvc

Updated infos about 1 packages
Getting source for kernel version: 2.6.17-1-686
Kernel headers available in /lib/modules/2.6.17-1-686/build
apt-get install build-essential
Reading package lists... Done
Building dependency tree... Done
build-essential is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 20 not upgraded.

Done!
W: Unable to locate package linux-uvc-source:
sh: line 1: linux-uvc-source:: command not found
sh: line 2: -source: command not found
sh: line 3: -src: command not found
sh: line 4: -driver-source: command not found
sh: line 5: -driver-src: command not found
sh: line 6: -kernel-source: command not found
sh: line 7: -kernel-src: command not found
sh: line 8: -module-source: command not found
sh: line 9: -module-src: command not found
sh: line 10: s-source: command not found
sh: line 11: s-src: command not found
sh: line 12: -drivers-source: command not found
sh: line 13: -drivers-src: command not found
sh: line 14: -kernels-source: command not found
sh: line 15: -kernels-src: command not found
sh: line 16: -modules-source: command not found
linux-uvc-source:
, what is linux-uvc-source:
?


Have I done anything wrong?

Thanx,
Davide


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



Re: Getting rid of circular dependencies, stage 5

2006-07-23 Thread Josselin Mouette
Le dimanche 23 juillet 2006 à 01:07 -0400, Joey Hess a écrit :
 Ian Jackson wrote:
  Didn't we already have the conversation where we explained that there
  is nothing necessarily wrong with a circular dependency ?
 
 Yes, and Bill continues to ignore it, as well as ignoring my
 posts to his bug reports (such as #368481) asking for specifics of how
 individual instances of dependency loops cause problems.

Hasn't there been enough random bugs caused by circular dependencies?
How many of them do you need before starting to fix your packages?

Furthermore, there is no real justification for the circular dependency
in debconf. Why don't you just fix it?
-- 
 .''`.   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


svn package maintenance

2006-07-23 Thread Marcus Better
Hello,

I've recently started to use svn for package maintenance, both in order to
enable team maintenance and because it's a great way to keep track of the
code.

Previously I used dpatch or quilt for the Debian changes. However with svn
(or any other version control system) it really doesn't make sense to use
that. The VCS is great at keeping track of changesets. Keeping patches in
svn effectively circumvents the whole point of VCS. (This is probably
obvious to anyone who has tried it, so I won't elaborate on it here.)

I'm now trying to replicate the advantages of quilt with svn. Some of these
advantages are:

*Keep track of separate changesets (sets of changes which logically belong
together).
*Individual changesets can be extracted for review or for sending upstream.
*Helps with updating the changesets for new upstream versions.

The best way to handle this in svn seems to be to use feature/integration
branches as mentioned in this talk (p. 23 ff.):
http://martin-krafft.net/phd/talks/fosdem2006-workflow.pdf

This leads to the first question: What is the recommended repository layout?
I'm currently using something like this:

branches/upstream/1.2  (upstream source v1.2) 
branches/feature/fix-a-bug (branch from upstream source for a feature)
branches/feature/change-path-names
branches/feature/debian(debian/ directory is also a feature)
trunk  (integration branch, for merging features)
tags/1.2-1 (Debian release)
tags/1.2-2

Of course any similar layout works equally well. The point of having a
common standard is that it would be possible to write support tools that
make this layout less cumbersome to work with. I am thinking of something
like quilt/stgit, but implemented for svn, that would understand this
repository layout, keep better track of the various branches and make it
easier to switch between them, update to new upstream versions, etc.

Does anyone else have thoughts in this direction?

Marcus



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



Re: svn package maintenance

2006-07-23 Thread martin f krafft
also sprach Marcus Better [EMAIL PROTECTED] [2006.07.23.1206 +0100]:
 Previously I used dpatch or quilt for the Debian changes. However
 with svn (or any other version control system) it really doesn't
 make sense to use that. The VCS is great at keeping track of
 changesets.

Is it? Try keeping track of merges in subversion...

 This leads to the first question: What is the recommended
 repository layout? I'm currently using something like this:
 
 branches/upstream/1.2  (upstream source v1.2) 
 branches/feature/fix-a-bug (branch from upstream source for a feature)
 branches/feature/change-path-names
 branches/feature/debian(debian/ directory is also a feature)
 trunk  (integration branch, for merging features)
 tags/1.2-1 (Debian release)
 tags/1.2-2

This looks okay, I don't think there is a recommendation.
svn-buildpackage does not support any of this anyway.

 Of course any similar layout works equally well. The point of
 having a common standard is that it would be possible to write
 support tools that make this layout less cumbersome to work with.
 I am thinking of something like quilt/stgit, but implemented for
 svn, that would understand this repository layout, keep better
 track of the various branches and make it easier to switch between
 them, update to new upstream versions, etc.

Well, ideally the support tool should not impose on the structure
and it should be usable even with existing repositorites that don't
adhere to any standard you may come up with.

SVN does not track merges across branches, unless you do it in the
changelog. This kind of makes SVN unsuitable for managing parallel
branches with merges going both ways. All the distributed version
control systems are *much* better at this task.

Cheers,

-- 
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
 
in the country of the blind,
 the one-eyed man is not king.
 he is taken to be a hallucinating lunatic.
 -marshall mcluhan


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


Re: [Mactel-linux-devel] MacBook iSight works?

2006-07-23 Thread Eduard Bloch
#include hallo.h
* Davide Viti [Sun, Jul 23 2006, 10:03:18AM]:
 On Sun, 23 Jul 2006 06:10:07 +0200, Junichi Uekawa wrote:
 
  Actually, I managed to get it working on MacBook with Ekiga.
  I'm looking for success/failure reports now.
 
 I installed the following:
 linux-uvc-source_0.1.0-1_i386.deb  
 linux-uvc-tools_0.1.0-1_i386.deb

How? Let me guess: you used dpkg --force-... because the architecture
did not match? Then it would be PEBCAK, AFAICS.

 then run
 
 # m-a prepare
 # m-a a-i linux-uvc
 
 Updated infos about 1 packages
 Getting source for kernel version: 2.6.17-1-686
 Kernel headers available in /lib/modules/2.6.17-1-686/build
 apt-get install build-essential
 Reading package lists... Done
 Building dependency tree... Done
 build-essential is already the newest version.
 0 upgraded, 0 newly installed, 0 to remove and 20 not upgraded.
 
 Done!
 W: Unable to locate package linux-uvc-source:
 sh: line 1: linux-uvc-source:: command not found
 sh: line 2: -source: command not found

Which version of module-assistant are you using?

Eduard.


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



Re: svn package maintenance

2006-07-23 Thread Marcus Better
martin f krafft wrote:
 Well, ideally the support tool should not impose on the structure

Yes, svn-buildpackage is quite nice since it's easy to tell it about your
layout. Something like that could work here as well.

 SVN does not track merges across branches, unless you do it in the
 changelog.

I know, it's a pain in the neck. But still it's a good step forward over
CVS, and seems to be quite popular in Debian. I hope svn will improve in
this area.



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



Re: kernel modules postinst script

2006-07-23 Thread Kel Modderman

Hi,

Bernd wrote:
 #!/bin/sh
 set -e

 SYSTEMMAP=/boot/System.map-_KVERS_

 if [ -f $SYSTEMMAP ] ; then
 depmod -ae -F $SYSTEMMAP _KVERS_
 elif [ `uname -r` = _KVERS_ ] ; then
 depmod -a 
 fi

As of debhelper 5.0.37, dh_installmodules uses the System.map for the 
target kernel as per template, iirc. No maintainer provided script 
templates are required for this purpose if dh_installmodules is used.


Thanks, Kel.


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



Bug#379410: ITP: necpp -- NEC2 Evolution Antenna Modelling System

2006-07-23 Thread Aurelien Jarno
Package: wnpp
Severity: wishlist
Owner: Emmanuel Quemener [EMAIL PROTECTED]

* Package name: necpp
  Version : 1.2.4
  Upstream Authors: Tim Molteno [EMAIL PROTECTED], Remi Sassolas[EMAIL 
PROTECTED]
* URL : http://alioth.debian.org/projects/necpp/
* License : GPL v2
  Programming Lang: C++, Python
  Description : NEC2 Evolution Antenna Modelling System

The NEC2 (Numerical Electromagnetics Code) is software for modelling antennas
using the Method of Moments.  It was developed at Lawrence Livermore
Laboratories, and remains widely used, despite the old fashioned punched card
style input required.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-amd64-k8-smp
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF-8)


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



Bug#379409: ITP: libsexymm -- collection of additional gtkmm widgets

2006-07-23 Thread Torsten Werner
Package: wnpp
Severity: wishlist
Owner: Torsten Werner [EMAIL PROTECTED]

  Package name: libsexymm
  Version : 0.1.7
  Upstream Author : Christian Hammond [EMAIL PROTECTED],
David Trowbridge [EMAIL PROTECTED]
  URL : http://www.chipx86.com/wiki/Libsexy
  License : GPL
  Description : collection of additional gtkmm widgets

 libsexy is a collection of GTK+ widgets that extend the functionality of
 such standard widgets as GtkEntry and GtkLabel by subclassing them and
 working around the limitations of the widgets.
 .
 These are the C++ bindings.
 .
 Homepage: http://www.chipx86.com/wiki/Libsexy


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



Re: [Mactel-linux-devel] MacBook iSight works?

2006-07-23 Thread zino
On Sun, Jul 23, 2006 at 01:10:59PM +0200, Eduard Bloch wrote:
  I installed the following:
  linux-uvc-source_0.1.0-1_i386.deb  
  linux-uvc-tools_0.1.0-1_i386.deb
 
 How? Let me guess: you used dpkg --force-... because the architecture
 did not match? Then it would be PEBCAK, AFAICS.

dpkg -i

 
  then run
  
  # m-a prepare
  # m-a a-i linux-uvc
 ...
 
 Which version of module-assistant are you using?

Version: 0.10.5

regards,
Davide


signature.asc
Description: Digital signature


Mozilla Mothballed now, is a Seamonkey package a possibility?

2006-07-23 Thread Rod Lovett




As mentioned below by Joey from Debian weekly news, I personally would
much appreciate Debian Developers/ package maintainers to consider
discussing replacing Mozilla , now superseded and mothballed by Mozilla
and replaced by the Seamonkey Council, and now Seamonkey 1.02 stable
release.
This email was written in a Seamonkey cmg, installed on Kanotix, but a
Deb package would be better perhaps in the repos.
I greatly hope this will be considered soon in at Debian.
Thanks too Joey
All the Best in there
Rod

  
  Rod Lovett wrote:
  
  
 Dear Martin,thanks again for Debian weekly, but may I ask, who is the 
 best to ask if Debian is going to replace Mozilla browser with 
 SeaMonkey, as this is already at release 1.02, and Mozilla has been 
 superseded, ie mothballed.

  
  
The reflective maintainers would probably be best.  Hmm, looks like
there is no SeaMonkey yet (only XULrunner as library).  Hence,
somebody needs to package it first http://www.debian.org/devel/wnpp/.

Otherwise Debian Mozilla Maintainers
[EMAIL PROTECTED] may be a good
starting point.

It may also be worth considering to start a discussion on the
debian-devel@lists.debian.org list as this affects the current
development and also the release of etch at the end of the year.

Regards,

	Joey

-- 
Long noun chains don't automatically imply security.  -- Bruce Schneier


  






Re: Mozilla Mothballed now, is a Seamonkey package a possibility?

2006-07-23 Thread Alexander Sack
On Sun, Jul 23, 2006 at 11:56:50PM +1000, Rod Lovett wrote:
 As mentioned below by Joey from Debian weekly news, I personally would 
 much appreciate Debian Developers/ package maintainers to consider 
 discussing replacing Mozilla , now superseded and mothballed by Mozilla 
 and replaced by the Seamonkey Council, and now Seamonkey 1.02 stable 
 release.

I wondered about this too and contacted the ITP owner about it. He
works together with a debian developer to get this package started.

An initial version can be checked out from debian svn [1].


[1] - svn://svn.debian.org/svn/collab-maint/deb-maint/seamonkey

 - Alexander
-- 
 GPG messages preferred.|  .''`.  ** Debian GNU/Linux **
 Alexander Sack | : :' :  The  universal
 [EMAIL PROTECTED]| `. `'  Operating System
 http://www.asoftsite.org/  |   `-http://www.debian.org/


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



Re: Getting rid of circular dependencies, stage 5

2006-07-23 Thread Loïc Minier
On Sun, Jul 23, 2006, Josselin Mouette wrote:
 Le dimanche 23 juillet 2006 à 01:07 -0400, Joey Hess a écrit :
  Yes, and Bill continues to ignore it, as well as ignoring my
  posts to his bug reports (such as #368481) asking for specifics of how
  individual instances of dependency loops cause problems.
 Hasn't there been enough random bugs caused by circular dependencies?
 How many of them do you need before starting to fix your packages?
 
 Furthermore, there is no real justification for the circular dependency
 in debconf. Why don't you just fix it?

 I fail to see how the circular depends between tasksel and tasksel-data
 would cause any bug though.  I agree it's best to fix circular deps in
 general, but it's not necessarily required each time.

-- 
Loïc Minier [EMAIL PROTECTED]


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



Re: Getting rid of circular dependencies, stage 5

2006-07-23 Thread Joey Hess
Josselin Mouette wrote:
 Hasn't there been enough random bugs caused by circular dependencies?
 How many of them do you need before starting to fix your packages?

There have been more and more serious bugs caused by programs being
written in C, and I prefer to spend my time rewriting all my packages to
use some other language or something.

 Furthermore, there is no real justification for the circular dependency
 in debconf. Why don't you just fix it?

[EMAIL PROTECTED]
[EMAIL PROTECTED]

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#379430: ITP: libview -- VMware's Incredibly Exciting Widgets

2006-07-23 Thread Torsten Werner
Package: wnpp
Severity: wishlist
Owner: Torsten Werner [EMAIL PROTECTED]

  Package name: libview
  Version : 0.5.6
  Upstream Author : Alex Graveley, Christian Hammond,
Philip Langdale, Régis Duchesne
  URL : http://view.sourceforge.net/
  License : MIT
  Description : VMware's Incredibly Exciting Widgets

 libview is VMware's Incredibly Exciting Widgets, a useful collection of
 GTK+ widgets used within VMware products, free for everybody's use.
 .
 This library consists of several widgets that are used by VMware in
 Workstation and other products and has been given back to the OSS
 community. These widgets are under the MIT license and are largely
 written in C++ for GTKMM.


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



Re: Bug#379430: ITP: libview -- VMware's Incredibly Exciting Widgets

2006-07-23 Thread Stefano Zacchiroli
On Sun, Jul 23, 2006 at 04:14:02PM +0200, Torsten Werner wrote:
  libview is VMware's Incredibly Exciting Widgets, a useful collection of
  GTK+ widgets used within VMware products, free for everybody's use.
  .
  This library consists of several widgets that are used by VMware in
  Workstation and other products and has been given back to the OSS

What about adding a short list of the (most interesting) widgets?
Incredibly Exciting is not really evocative as a widget description
...

Thanks for packaging this!
Cheers.

-- 
Stefano Zacchiroli -*- Computer Science PhD student @ Uny Bologna, Italy
[EMAIL PROTECTED],debian.org,bononia.it} -%- http://www.bononia.it/zack/
If there's any real truth it's that the entire multidimensional infinity
of the Universe is almost certainly being run by a bunch of maniacs. -!-


signature.asc
Description: Digital signature


Re: [Mactel-linux-devel] MacBook iSight works?

2006-07-23 Thread zino
Hi Junichi,

  On Sun, 23 Jul 2006 06:10:07 +0200, Junichi Uekawa wrote:
  
   Actually, I managed to get it working on MacBook with Ekiga.
   I'm looking for success/failure reports now.

success!!
after using a version of module assistant fixed by Eduard, all the steps you
described in the wiki [1] work just fine.

thanx,
Davide

[1] http://wiki.debian.org/MacBook


signature.asc
Description: Digital signature


Re: svn package maintenance

2006-07-23 Thread Junichi Uekawa
Hi,

  SVN does not track merges across branches, unless you do it in the
  changelog.
 
 I know, it's a pain in the neck. But still it's a good step forward over
 CVS, and seems to be quite popular in Debian. I hope svn will improve in
 this area.

svn/cvs et cetera are quite linear; dpatch and quilt and other tools
are quite good in maintaining patches.  It's especially helpful when
Forward-porting patches against new upstream.


regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Re: [Mactel-linux-devel] MacBook iSight works?

2006-07-23 Thread Junichi Uekawa
At Sun, 23 Jul 2006 15:40:55 +0200,
zino wrote:
 
 [1  text/plain; us-ascii (quoted-printable)]
 On Sun, Jul 23, 2006 at 01:10:59PM +0200, Eduard Bloch wrote:
   I installed the following:
   linux-uvc-source_0.1.0-1_i386.deb  
   linux-uvc-tools_0.1.0-1_i386.deb
  
  How? Let me guess: you used dpkg --force-... because the architecture
  did not match? Then it would be PEBCAK, AFAICS.
 
 dpkg -i
 
  
   then run
   
   # m-a prepare
   # m-a a-i linux-uvc
  ...
  
  Which version of module-assistant are you using?
 
 Version: 0.10.5

I've just tried running m-a in a fresh chroot (0.10.5), and got the
same kind of error message.

I've been testing my package (linux-uvc) against 0.10.4 with patch in
377198, but I haven't yet played with 0.10.5.

I haven't actually gotten around to testing 0.10.4 in a clean
environment yet, so I might be missing something else.

regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Re: svn package maintenance

2006-07-23 Thread John Goerzen
On Sun, Jul 23, 2006 at 01:42:26PM +0200, Marcus Better wrote:
 martin f krafft wrote:
  Well, ideally the support tool should not impose on the structure
 
 Yes, svn-buildpackage is quite nice since it's easy to tell it about your
 layout. Something like that could work here as well.
 
  SVN does not track merges across branches, unless you do it in the
  changelog.
 
 I know, it's a pain in the neck. But still it's a good step forward over
 CVS, and seems to be quite popular in Debian. I hope svn will improve in
 this area.

Or you could look at something such as darcs, that already has ;-)

Really, I have been using darcs for package management for some time
now, and have found it very nice for that.  See
http://darcs.complete.org/debian for a list.

The distributed development model really shines here -- there is no need
to mess with committer lists, etc.


-- John


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



Re: svn package maintenance

2006-07-23 Thread George Danchev
On Sunday 23 July 2006 20:28, John Goerzen wrote:
 On Sun, Jul 23, 2006 at 01:42:26PM +0200, Marcus Better wrote:
  martin f krafft wrote:
   Well, ideally the support tool should not impose on the structure
 
  Yes, svn-buildpackage is quite nice since it's easy to tell it about your
  layout. Something like that could work here as well.
 
   SVN does not track merges across branches, unless you do it in the
   changelog.
 
  I know, it's a pain in the neck. But still it's a good step forward over
  CVS, and seems to be quite popular in Debian. I hope svn will improve in
  this area.

 Or you could look at something such as darcs, that already has ;-)

 Really, I have been using darcs for package management for some time
 now, and have found it very nice for that.  See
 http://darcs.complete.org/debian for a list.

 The distributed development model really shines here -- there is no need
 to mess with committer lists, etc.

There are some hindrances preventing mass usage of darcs-buildpackage, but all 
of them are doable: a) there is no official darcs.debian.org service b) it is 
written in Haskell like darcs itself [1], and there are less people able 
and/or willing to hack on it c) a little bit more comprehensive documentation 
will be nice to have, as said in #327840.

[1] I expect next scm-buildpackage (who's next, git ?) to be written in Ada 
(of course, no sarsasm is implied here), especially as gnat is getting better 
and better recently.

-- 
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]



Re: Using the SSL snakeoil certificate

2006-07-23 Thread Martin Schulze
Milan P. Stanic wrote:
  For example:
  
Dovecot uses /etc/ssl/certs/dovecot.pem.
  
This is a symbolic link to /etc/ssl/certs/ssl-cert-snakeoil.pem if
the above file or link does not exist during configuration of
dovecot.
  
  That way, the admin can easily replace the symlink with a real
  certificate if they want per-service certificates.
  
  If, however, they want to have one real certificate for everything,
  they can replace the snakeoil certificate like Martin Pitt proposed.
  
 Sorry if I misunderstand something, but is it okay to call it snakeoil
 if it is real certificate? I like to say that the symbolic links for
 per-service certificate shouldn't point to something called snake-oil.

Nah, if you replace the snakeoil certificate by a real one, it's not
snake-oil anymore, of course.

If you don't want to use a snakeoil certificate, you'll have to provide
a real one anyway, best would be if it was certified by a commonly
accepted CA.

Regards,

Joey

-- 
Long noun chains don't automatically imply security.  -- Bruce Schneier

Please always Cc to me when replying to me on the lists.


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



Re: [Ping] Packages-arch-specific: please add architectures to Ada packages

2006-07-23 Thread Ludovic Brenta
Aurélien GÉRÔME writes:
 Hi Ludovic,

 On Sat, Jul 22, 2006 at 06:56:06PM +0200, Ludovic Brenta wrote:
 So, my idea of a buildd pseudo-package in the BTS was a god one after
 all.  Or, is the 'dak' package an appropriate place for such requests?

 An excellent one, indeed!

OK, filed #379451 (serious, because it blocks the Ada transition).  I
note however that dak has 58 outstanding bugs, the newest of which is
63 days old and the oldest is 4 years and 106 days old today.

 Does anyone on this list feel like joining the packages-arch-specific
 maintainers, in order to improve response time?

 Count me in.

Cool.

-- 
Ludovic Brenta.



Re: [Ping] Packages-arch-specific: please add architectures to Ada packages

2006-07-23 Thread LaMont Jones
On Fri, Jul 21, 2006 at 10:03:56PM +0200, Ludovic Brenta wrote:
 It has been a week since I sent the request below, and I received no
 answer.  I am resending to the three maintainers of
 Packages-arch-specific, and CCing debian-devel.

Been out for a bit - updated.

lamont


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



Virtual PPPoE

2006-07-23 Thread Yura

Help please to connect the internet. I in a local network. Connection to to
the internet goes through a modem, or service which works on a sluice. Type of
connection of pppoe. In Windows such connection is done through Connect of
using and broadband connection
that requires and user name and password.

I started pppoeconf but the system at once searches a modem and does not find.
Is it needed how to connect a network modem (service), using pppd?
My provider does not know as possible in Linux to be connected.

Beforehand thankful Yura.


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



Processed: Re: More bugs for the /usr/doc/transition

2006-07-23 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 block 322762 by 378647
Bug#322762: /usr/doc still exists (transition tracking bug)
Was blocked by: 189856 190020 203278 254800 254913 254924 255590 302504 319726 
320084 320103 321926 322749 322769 322772 322776 322778 322779 322781 322782 
322783 322784 322785 322786 322787 322788 322789 322790 322791 322792 322793 
322794 322795 322797 322798 322799 322800 322801 322803 322804 322805 322806 
322807 322808 322809 322810 322811 322812 322813 322814 322815 322816 322817 
322818 322819 322820 322828 322829 322830 322831 322832 322833 322834 322835 
322837 322838 322839 328297 338060 338227 338238 351740 352893 352894 353569 
355341 359358 359359 359361 359362 359363 359364 359365 359366 359367 359368 
359369 359370 359371 359372 359374 359375 359376 359377 359378 359379 359380 
359381 359382 359383 359384 359385 359386 359387 359388 359389 359390 359391 
359392 359393 359394 359395 359396 359399 359400 359401 359403 359405 359406 
359407 359408 359409 359410 359411 359412 359413 359414 359417 359418 359419 
359420 359421 359422 359423 359424 359425 359426 359427 359428 359429 359430 
359431 359432 359433 359434 359435 359436 359437 359439 359440 359441 359442 
359443 359444 359445 359446 359447 359448 359449 359450 359451 359452 359453 
359454 359455 359456 359457 359458 359459 359460 359461 359462 359463 359464 
359465 359466 359467 359468 359469 359470 359471 359472 359473 359474 359475 
359476 359477 359478 359479 359480 359481 359482 359483 359484 359485 359486 
359487 359488 359489 359490 359491 359492 359493 359494 359495 359496 359497 
359498 359499 359500 359501 359502 359503 359504 359505 359506 359507 359508 
359509 359510 359511 359512 359513 359514 359515 359516 359517 359518 359519 
359520 359521 359522 359523 359524 359526 359527 359528 359529 359530 359531 
359532 359533 359534 359535 359536 359537 359538 359539 359540 359541 359542 
359543 359544 359545 359546 359547 359548 359549 359550 359551 359552 359553 
359554 359555 359556 359557 359558 359559 359560 359561 359562 359563 359564 
359566 359567 359568 359569 359570 359571 359572 359573 359574 359575 359576 
359577 359578 359579 359580 359581 359582 359583 359584 359585 359586 359587 
359588 359589 359590 359591 359592 359593 359594 359595 359596 359597 359598 
359599 359600 359601 359602 359603 359604 359605 359606 359607 359608 359609 
359610 359611 359612 378646 378648 378649 378650
Blocking bugs of 322762 added: 378647

 thanks
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]



status of application for reinstatement of my developer account

2006-07-23 Thread Britton Kerin

I have applied and completed the questions I was supposed to complete
months ago now.  I've sent a couple of follow up emaile to
[EMAIL PROTECTED]
asking just to know the status of my application.  I've gotten no
response
whatsoever.  Is there any reasonable hope of getting my account
reinstated?

It gets a bit irritating to be totally ignored after taking the time to 
answer all the questions on the reinstatement test.  If random
volunteers
aren't worth bothering with thats fine, but don't ask them to spend
their
time and then ignore them.

Sincerely,
Britton Kerin



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



Re: Virtual PPPoE

2006-07-23 Thread Christoph Berg
Hi,

please try asking on the debian-user-german list; this list is not
meant for user questions.

Re: Yura 2006-07-23 [EMAIL PROTECTED]
 I started pppoeconf but the system at once searches a modem and does not 
 find.
 Is it needed how to connect a network modem (service), using pppd?
 My provider does not know as possible in Linux to be connected.

pppoeconf should usually work out of the box for German providers. But
without further information, the problem is hard to find.

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/


signature.asc
Description: Digital signature


Re: status of application for reinstatement of my developer account

2006-07-23 Thread Christoph Berg
Re: Britton Kerin 2006-07-23 [EMAIL PROTECTED]
 Is there any reasonable hope of getting my account reinstated?

debian-keyring.gpg:
pub   1024D/E3A0213C 2000-07-26
uid  Britton Leo Kerin [EMAIL PROTECTED]
uid  Britton Leo Kerin [EMAIL PROTECTED]
sub   1024g/D0E2B05E 2000-07-26

Did you try following http://db.debian.org/doc-mail.html ?

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/


signature.asc
Description: Digital signature


Re: [Ping] Packages-arch-specific: please add architectures to Ada packages

2006-07-23 Thread Aurélien GÉRÔME
On Sun, Jul 23, 2006 at 01:56:09PM -0600, LaMont Jones wrote:
 Been out for a bit - updated.

You did not do mine. Pretty please, I am begging for it. Please remove
the line concerning iroffer.

Cheers,
-- 
 .''`.   Aurélien GÉRÔME
: :'  :  
`. `'`   Free Software Developer
  `- Unix Sys  Net Admin


signature.asc
Description: Digital signature


Re: [Ping] Packages-arch-specific: please add architectures to Ada packages

2006-07-23 Thread Aurélien GÉRÔME
On Sun, Jul 23, 2006 at 07:47:16PM +0200, Ludovic Brenta wrote:
 OK, filed #379451 (serious, because it blocks the Ada transition).  I
 note however that dak has 58 outstanding bugs, the newest of which is
 63 days old and the oldest is 4 years and 106 days old today.

Your bug has already been closed. I do not think the package dak
present in the archive is the right place to file it. IMHO, it is an
infrastructure bug for which no pseudo-package exists.

Cheers,
-- 
 .''`.   Aurélien GÉRÔME
: :'  :  
`. `'`   Free Software Developer
  `- Unix Sys  Net Admin


signature.asc
Description: Digital signature


Bug#379475: [Etch] Should sysfsutils be added to the base system?

2006-07-23 Thread Frans Pop
Package: base
Severity: wishlist

As 2.6 will be the default kernel for Etch and /sys is playing an
increasingly important role in system configuration, I was wondering if
it does not make sense to add sysfsutils to base and thus install it by
default on new systems.

It can be used for example to set the default CPU scaling governor on
boot.

sysfsutils is comparable to sysctl, which does the same for /proc/sys.
(sysctl is part of procps and has priority required.)

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-1-em64t-p4-smp
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]



Mozilla Mothballed now, is a Seamonkey package a possibility?

2006-07-23 Thread Rod Lovett





As mentioned below by Joey from Debian weekly news, I personally would
much appreciate Debian Developers/ package maintainers to consider
discussing replacing the Mozilla browser , now superseded and
mothballed by the Mozilla
foundation and replaced by the Seamonkey Council, and now I think
Seamonkey 1.02 is the stable
release.
This email was written in a Seamonkey 1.0 cmg, installed on a Kanotix
box, but a
Deb package would be better perhaps, in the Debian repositories.
I greatly hope this will be considered soon in at Debian.
Thanks too Joey
All the Best in there
Rod

  
  Rod Lovett wrote:
  
  
 Dear Martin,thanks again for Debian weekly, but may I ask, who is the 
 best to ask if Debian is going to replace Mozilla browser with 
 SeaMonkey, as this is already at release 1.02, and Mozilla has been 
 superseded, ie mothballed.

  
  
The reflective maintainers would probably be best.  Hmm, looks like
there is no SeaMonkey yet (only XULrunner as library).  Hence,
somebody needs to package it first http://www.debian.org/devel/wnpp/.

Otherwise Debian Mozilla Maintainers
[EMAIL PROTECTED] may be a good
starting point.

It may also be worth considering to start a discussion on the
debian-devel@lists.debian.org list as this affects the current
development and also the release of etch at the end of the year.

Regards,

	Joey

-- 
Long noun chains don't automatically imply security.  -- Bruce Schneier


  






Bug#379506: ITP: sladinstaller -- Graphical Installer for the Security Local Auditing Daemon

2006-07-23 Thread Meike Reichle
Package: wnpp
Severity: wishlist
Owner: Meike Reichle [EMAIL PROTECTED]


* Package name: sladinstaller
  Version : 1.1
  Upstream Author : DN-Systems Enterprise Internet Solutions GmbH [EMAIL 
PROTECTED]
* URL : http://www.dn-systems.org/slad.shtml
* License : GPL
  Programming Lang: C++
  Description : Graphical Installer for the Security Local Auditing Daemon

This graphical (GTK) installer installs the Security Local Auditing
Daemon V2 (SLAD2) on any local or remote machine. 

SLAD is a tool for performing local security checks against GNU/Linux
systems. SLAD has been primarily developed for the BOSS project to work
together with Nessus to enhance its local scanning capabilities.


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



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



Re: Mozilla Mothballed now, is a Seamonkey package a possibility?

2006-07-23 Thread Jaldhar H. Vyas

On Mon, 24 Jul 2006, Rod Lovett wrote:

As mentioned below by Joey from Debian weekly news, I personally would much 
appreciate Debian Developers/ package maintainers to consider discussing 
replacing the Mozilla browser , now superseded and mothballed by the Mozilla 
foundation and replaced by the Seamonkey Council, and now I think Seamonkey 
1.02 is the stable release.
This email was written in a Seamonkey 1.0 cmg, installed on a  Kanotix box, 
but a Deb package would be better perhaps, in the Debian repositories.

I greatly hope this will be considered soon in at Debian.
Thanks too Joey
All the Best in there
Rod


I am preparing a seamonkey package as my employers, Linspire, want to see 
it in their Debian-derived distro (as well as Debian proper.)  You can see 
the current state of things at:

http://svn.debian.org/wsvn/collab-maint/deb-maint/seamonkey/

The package works but I have mot uploaded it yet as lintian still shows a 
number of policy violations.


I welcome help from anyone who would like to work on getting these 
problems fixed.  Going forward, team-maintainence would be a good idea.



--
Jaldhar H. Vyas [EMAIL PROTECTED]
La Salle Debain - http://www.braincells.com/debian/


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



Re: Configuration file shadowed?

2006-07-23 Thread Manoj Srivastava
On Sat, 22 Jul 2006 18:12:46 +0200, Frank Küster [EMAIL PROTECTED] said: 

 I've come across at least one example where it is:

 \ProvidesFile{listings.cfg}[2004/09/05 1.3 listings configuration]
 \def\lstlanguagefiles
 {lstlang0.sty,lstlang1.sty,lstlang2.sty,lstlang3.sty}

 If you have created a local lstlang4.sty, you have to enter it here.
 Such a file should be treated as a conf(iguration) file, I think.

This is fairly esoteric (but I do agree with you).

 However, there are many others that are rather intended for a
 per-document customization, or a per-project customization. Note
 that web2c in most cases reads also files in the current directory,
 so if you have all your scientific reports in ~/univ/reports/, it
 might make sense to put a graphics.cfg in the same directory if you
 want to keep your graphics inclusion consistent for all these
 reports.

 ,
 Files that are used to modify the behavior of executables must be
 treated as any other configuration file in a Debian package.
 However, files that are used to control the typeset output - the
 appearance of documents - need not be treated as configuration
 files.  It is up to the maintainer of the package to decide which
 files make sense to be used for site-wide (as opposed to
 per-project or per-document) customization.

 A typical case for a site-wide configuration file is a file that
 must be changed if a style file should use additional modules
 (installed, for example, into TEXMFLOCAL).  Options that only
 control document output are rather used for a particular document
 or documentation project and should usually not be installed as a
 configuration file.
 `

I agree that something that modifies the behaviour of the
 executable, and applies to all the documents being processed, is a
 conf(iguration) file.

The later is not so clear to me -- the distinction is blurred
 a bit, but I tend to agree than not.  How does one feel about a LaTeX
 package that sets up a default output style, and the user prefers a
 different one? If there is a way to tailor the typeset output by
 editing the input document itself (for instance, including or not
 including TeX packages, or by supplying options to the packages, or
 setting variables, or the like), then one need not have the package
 in question in /etc.

Arguably, if the only way to change a default output style is
 to hack the source package, one can say that the package is very
 rigid; and the solution may be to fix the package by making it more
 flexible, rather than moving it into /etc.  Does that make sense?

So yes, I think I agree in principle, and I would defer to you
 in the particulars (my TeX has gotten rather rusty in the last 15
 years or so)

manoj
-- 
Anything cut to length will be too short.
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]



Bug#379509: RM: tkpgp

2006-07-23 Thread Christian Surchi
Package: ftp.debian.org
Severity: normal

Hi,
in past I have maintained tkpgp (contrib), but its development died a 
few years ago and there are not traces of author and sources web pages. 
So, I think we should remove it. I think there are valid alternatives. :-)

thanks
Christian


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



Re: lilypond and python

2006-07-23 Thread Miles Bader
Loïc Minier [EMAIL PROTECTED] writes:
  - make install is called with prefix=debian/tmp/..., this is usually
wrong

Well, some packages screw things up of course, but in a package
following the GNU coding standards (whence prefix comes) the Makefile
is supposed to separate install-time actions from compile-time actions:

   `prefix'
 
Running `make install' with a different value of `prefix' from the
one used to build the program should _not_ recompile the program.

So `configure --prefix=foo; make; make install prefix=bar' is still the
recommended way to install to an alternate root.

Even very recent versions of  the GNU coding standards do not
mandate DESTDIR support, though they mention it.

Of course who knows what coding standards lilypond ascribes to...

-Miles
-- 
`...the Soviet Union was sliding in to an economic collapse so comprehensive
 that in the end its factories produced not goods but bads: finished products
 less valuable than the raw materials they were made from.'  [The Economist]



Accepted libassuan 0.6.10-2 (source i386)

2006-07-23 Thread Eric Dorland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 01:49:49 -0400
Source: libassuan
Binary: libassuan-dev
Architecture: source i386
Version: 0.6.10-2
Distribution: unstable
Urgency: low
Maintainer: Eric Dorland [EMAIL PROTECTED]
Changed-By: Eric Dorland [EMAIL PROTECTED]
Description: 
 libassuan-dev - IPC library for the GnuPG components
Changes: 
 libassuan (0.6.10-2) unstable; urgency=low
 .
   * debian/watch: Add watch file.
   * debian/control:
 - Upgrade Standards-Version to 3.7.2.1.
Files: 
 66ff64c5ca8771f3bf61ce241f4f0224 579 libdevel optional libassuan_0.6.10-2.dsc
 79b9a3439e064584dc95a3fb9c567c46 2023 libdevel optional 
libassuan_0.6.10-2.diff.gz
 8d3a15b5d18d540997a7eed07647f959 49984 libdevel optional 
libassuan-dev_0.6.10-2_i386.deb

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

iD8DBQFEww8PYemOzxbZcMYRAnHXAJ9W9QPLAv3qfhA8M7GkZ5/RaHnJoQCcC6S0
fIo9NUAlCYvMrSHH3W/hSNs=
=YkTT
-END PGP SIGNATURE-


Accepted:
libassuan-dev_0.6.10-2_i386.deb
  to pool/main/liba/libassuan/libassuan-dev_0.6.10-2_i386.deb
libassuan_0.6.10-2.diff.gz
  to pool/main/liba/libassuan/libassuan_0.6.10-2.diff.gz
libassuan_0.6.10-2.dsc
  to pool/main/liba/libassuan/libassuan_0.6.10-2.dsc


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



Accepted engine-pkcs11 0.1.3-2 (source i386)

2006-07-23 Thread Eric Dorland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 01:30:12 -0400
Source: engine-pkcs11
Binary: libengine-pkcs11-openssl
Architecture: source i386
Version: 0.1.3-2
Distribution: unstable
Urgency: low
Maintainer: Eric Dorland [EMAIL PROTECTED]
Changed-By: Eric Dorland [EMAIL PROTECTED]
Description: 
 libengine-pkcs11-openssl - OpenSSL engine for PKCS#11 modules
Changes: 
 engine-pkcs11 (0.1.3-2) unstable; urgency=low
 .
   * debian/control: Standards-Version to 3.7.2.1.
   * debian/watch: Update to new location and switch to version 3.
Files: 
 e5d0d275ba5856ce04976c28e0cf62a8 648 libs optional engine-pkcs11_0.1.3-2.dsc
 584fb27db3b1f80905c13517e8bc2524 1914 libs optional 
engine-pkcs11_0.1.3-2.diff.gz
 78b296fa74c13fc2a82c77a351ebfccc 45390 libs optional 
libengine-pkcs11-openssl_0.1.3-2_i386.deb

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

iD8DBQFEww5hYemOzxbZcMYRAlfjAJ4/hlUX69Y74yrk+L+pJbuLpvnEmACfbFuW
ELfUPW1GSRJ3zEMQuK3WaG8=
=L4AC
-END PGP SIGNATURE-


Accepted:
engine-pkcs11_0.1.3-2.diff.gz
  to pool/main/e/engine-pkcs11/engine-pkcs11_0.1.3-2.diff.gz
engine-pkcs11_0.1.3-2.dsc
  to pool/main/e/engine-pkcs11/engine-pkcs11_0.1.3-2.dsc
libengine-pkcs11-openssl_0.1.3-2_i386.deb
  to pool/main/e/engine-pkcs11/libengine-pkcs11-openssl_0.1.3-2_i386.deb


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



Accepted linux-kernel-headers 2.6.17.6-1 (source sparc)

2006-07-23 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 01:30:26 -0400
Source: linux-kernel-headers
Binary: linux-kernel-headers
Architecture: source sparc
Version: 2.6.17.6-1
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Clint Adams [EMAIL PROTECTED]
Description: 
 linux-kernel-headers - Linux Kernel Headers for development
Closes: 378295
Changes: 
 linux-kernel-headers (2.6.17.6-1) unstable; urgency=low
 .
   * New upstream release 2.6.17.6.
   * Fix broken linux/joystick.h.  closes: #378295.
Files: 
 7cc78d0bc5f19cf9dcc6df3354e76e42 887 devel standard 
linux-kernel-headers_2.6.17.6-1.dsc
 ca9a4a4c9a0e3054508db7cb0deb20cd 5637138 devel standard 
linux-kernel-headers_2.6.17.6.orig.tar.gz
 42e51d47436fdcc838c2b496299734f5 22170 devel standard 
linux-kernel-headers_2.6.17.6-1.diff.gz
 b188cd99224288690144c3421c7d585b 1802978 devel standard 
linux-kernel-headers_2.6.17.6-1_sparc.deb

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

iD8DBQFEwxPQ5m0u66uWM3ARAjSYAKDbo9HBJft2PltHMuF8122JfMKuxwCeKCRE
WrQj3WTodfY8i/ZoVQ/Bkog=
=G4bi
-END PGP SIGNATURE-


Accepted:
linux-kernel-headers_2.6.17.6-1.diff.gz
  to pool/main/l/linux-kernel-headers/linux-kernel-headers_2.6.17.6-1.diff.gz
linux-kernel-headers_2.6.17.6-1.dsc
  to pool/main/l/linux-kernel-headers/linux-kernel-headers_2.6.17.6-1.dsc
linux-kernel-headers_2.6.17.6-1_sparc.deb
  to pool/main/l/linux-kernel-headers/linux-kernel-headers_2.6.17.6-1_sparc.deb
linux-kernel-headers_2.6.17.6.orig.tar.gz
  to pool/main/l/linux-kernel-headers/linux-kernel-headers_2.6.17.6.orig.tar.gz


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



Accepted xfce4-mixer 4.3.90.2-2 (source i386)

2006-07-23 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 22:33:24 +0200
Source: xfce4-mixer
Binary: xfce4-mixer xfce4-mixer-oss xfce4-mixer-alsa
Architecture: source i386
Version: 4.3.90.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers pkg-xfce-devel@lists.alioth.debian.org
Changed-By: Yves-Alexis Perez [EMAIL PROTECTED]
Description: 
 xfce4-mixer - Xfce4 Mixer frontend
 xfce4-mixer-alsa - Xfce4 Mixer ALSA backend
 xfce4-mixer-oss - Xfce4 Mixer OSS backend
Closes: 379326
Changes: 
 xfce4-mixer (4.3.90.2-2) unstable; urgency=low
 .
   * debian/control: updated versioned build dependency.Closes: #379326
Files: 
 f33f636fe14bfdb2d000177c955ec77e 923 x11 optional xfce4-mixer_4.3.90.2-2.dsc
 b6dfdedf5efccc7aee8bf7d0537174e5 21761 x11 optional 
xfce4-mixer_4.3.90.2-2.diff.gz
 04a55aeed7ed15baee1a14d8497551b5 186168 x11 optional 
xfce4-mixer_4.3.90.2-2_i386.deb
 0b0b1053efdfcfea6d6980d0dad67a5e 58070 x11 optional 
xfce4-mixer-alsa_4.3.90.2-2_i386.deb
 56601bc2a53a64fb053f765f03987ac8 55400 x11 optional 
xfce4-mixer-oss_4.3.90.2-2_i386.deb

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

iD8DBQFEwxYxC6DuA+rxm2ARAiGlAJ9GaAruBKEC9Q3BViW/SdTuz3WLrgCfQI9+
IuGnClcJzI9XuzAZ7Jtw5BM=
=exG2
-END PGP SIGNATURE-


Accepted:
xfce4-mixer-alsa_4.3.90.2-2_i386.deb
  to pool/main/x/xfce4-mixer/xfce4-mixer-alsa_4.3.90.2-2_i386.deb
xfce4-mixer-oss_4.3.90.2-2_i386.deb
  to pool/main/x/xfce4-mixer/xfce4-mixer-oss_4.3.90.2-2_i386.deb
xfce4-mixer_4.3.90.2-2.diff.gz
  to pool/main/x/xfce4-mixer/xfce4-mixer_4.3.90.2-2.diff.gz
xfce4-mixer_4.3.90.2-2.dsc
  to pool/main/x/xfce4-mixer/xfce4-mixer_4.3.90.2-2.dsc
xfce4-mixer_4.3.90.2-2_i386.deb
  to pool/main/x/xfce4-mixer/xfce4-mixer_4.3.90.2-2_i386.deb


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



Accepted ace 5.4.7-10 (source all i386)

2006-07-23 Thread Thomas Girard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 20 Jul 2006 20:55:53 +0200
Source: ace
Binary: libkokyu-dev libtao-orbsvcs-dev libace5.4.7c2a libacexml-dev 
libkokyu5.4.7c2a libace-tkreactor-dev libciao-dev libtao-tkresource-dev 
libace-rmcast5.4.7c2a libtao-qtresource1.4.7c2a libacexml5.4.7c2a 
libace-qtreactor5.4.7c2a libtao-dev libace-tmcast-dev libtao-qtresource-dev 
libtao-xtresource1.4.7c2a libace-tkreactor5.4.7c2a libace-flreactor5.4.7c2a 
libtao-orbsvcs1.4.7c2a libace-xtreactor-dev libciao0.4.7c2a 
libtao-flresource-dev libace-rmcast-dev libtao-xtresource-dev libace-doc 
libciao-doc libace-xtreactor5.4.7c2a libace-qtreactor-dev libtao1.4.7c2a 
libtao-doc mpc-ace libace-dev gperf-ace libtao-flresource1.4.7c2a 
libtao-tkresource1.4.7c2a libace-tmcast5.4.7c2a libace-flreactor-dev
Architecture: source all i386
Version: 5.4.7-10
Distribution: unstable
Urgency: low
Maintainer: Debian ACE+TAO maintainers [EMAIL PROTECTED]
Changed-By: Thomas Girard [EMAIL PROTECTED]
Description: 
 gperf-ace  - ACE perfect hash function generator
 libace-dev - C++ network programming framework development files
 libace-doc - C++ network programming framework documentation
 libace-flreactor-dev - ACE-GUI reactor integration for Fl development files
 libace-flreactor5.4.7c2a - ACE-GUI reactor integration for Fl
 libace-qtreactor-dev - ACE-GUI reactor integration for Qt development files
 libace-qtreactor5.4.7c2a - ACE-GUI reactor integration for Qt
 libace-rmcast-dev - ACE reliable multicast library development files
 libace-rmcast5.4.7c2a - ACE reliable multicast library
 libace-tkreactor-dev - ACE-GUI reactor integration for Tk development files
 libace-tkreactor5.4.7c2a - ACE-GUI reactor integration for Tk
 libace-tmcast-dev - ACE transactional multicast library development files
 libace-tmcast5.4.7c2a - ACE transactional multicast library
 libace-xtreactor-dev - ACE-GUI reactor integration for Xt development files
 libace-xtreactor5.4.7c2a - ACE-GUI reactor integration for Xt
 libace5.4.7c2a - C++ network programming framework
 libacexml-dev - ACE SAX based XML parsing library development files
 libacexml5.4.7c2a - ACE SAX based XML parsing library
 libciao-dev - TAO based CORBA Component Model implementation development files
 libciao-doc - TAO based CORBA Component Model documentation
 libciao0.4.7c2a - TAO based CORBA Component Model implementation
 libkokyu-dev - ACE scheduling and dispatching library development files
 libkokyu5.4.7c2a - ACE scheduling and dispatching library
 libtao-dev - ACE based CORBA ORB core libraries development files
 libtao-doc - ACE based CORBA ORB core libraries documentation
 libtao-flresource-dev - TAO-GUI reactor integration for Fl development files
 libtao-flresource1.4.7c2a - TAO-GUI reactor integration for Fl
 libtao-orbsvcs-dev - TAO CORBA services development files
 libtao-orbsvcs1.4.7c2a - TAO CORBA services
 libtao-qtresource-dev - TAO-GUI reactor integration for Qt development files
 libtao-qtresource1.4.7c2a - TAO-GUI reactor integration for Qt
 libtao-tkresource-dev - TAO-GUI reactor integration for Tk development files
 libtao-tkresource1.4.7c2a - TAO-GUI reactor integration for Tk development 
files
 libtao-xtresource-dev - TAO-GUI reactor integration for Xt development files
 libtao-xtresource1.4.7c2a - TAO-GUI reactor integration for Xt
 libtao1.4.7c2a - ACE based CORBA ORB core libraries
 mpc-ace- makefile, project and workspace creator
Closes: 367478 378605
Changes: 
 ace (5.4.7-10) unstable; urgency=low
 .
   * debian/rules: fix and honor DEB_BUILD_OPTIONS.
   * debian/libace-dev.install: drop QoS header files as QoS in not compiled
 in.
   * debian/*.install: fix empty wildcard expansion that produce errors when
 DH_COMPAT is 5.
   * debian/libtao-dev.install: do not distribute include files from TAO_IDL.
 They are not needed and don't get installed when using the autotools
 method.
   * debian/rules: rename mwc.pl and mpc.pl to mwc-ace and mpc-ace.
   * debian/ace-config*,debian/tao-config*: dropped. These files were no
 longer installed.
   * debian/libace-dev.install: don't install ace-config and tao-config
 manpages either (Closes: #367478).
   * debian/control: relax mpc-ace dependencies. This package now installs
 without pulling any ACE library. Thanks to Alex Bodnaru for noticing.
   * debian/control: simplify packages synopsis and descriptions.
   * debian/control: drop xerces dependency (Closes: #378605). Xerces is
 only needed by DAnCE, which is not packaged yet.
   * debian/libace-dev.install: remove generate_export_file.pl for now.
   * patches/31-gcc-4.1-fix.dpatch: add other type-punned fixes taken from
 upstream.
   * debian/mpc.sgml: new man page.
   * debian/patches/32-bug1770-fix.dpatch,33-bug1805-fix.dpatch: backport
 two patches for SSL wrappers.
Files: 
 a64dcfb818b1de1f81c3452ec342 1622 devel optional ace_5.4.7-10.dsc
 d6b450e5451b49def131fc206f9ffc8e 52167 devel optional 

Accepted steptalk 0.8.2-5.1 (source i386)

2006-07-23 Thread Adriaan Peeters
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 21 Jul 2006 11:47:00 +0200
Source: steptalk
Binary: steptalk
Architecture: source i386
Version: 0.8.2-5.1
Distribution: unstable
Urgency: low
Maintainer: Philipp Kern [EMAIL PROTECTED]
Changed-By: Adriaan Peeters [EMAIL PROTECTED]
Description: 
 steptalk   - The GNUstep Scripting Framework
Closes: 326295 373110 379331 379334
Changes: 
 steptalk (0.8.2-5.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/control Build-Depends:
 - Changed from libgnustep-base1.10-dev to libgnustep-base1.11-dev
   (Closes: #373110)
 - Changed from libreadline4-dev to libreadline5-dev | libreadline-dev
   (Closes: #326295)
 - Changed from libgnustep-gui0.9-dev to libgnustep-gui0.10-dev
   (Closes: #379331)
   * Bumped Standards-Version to 3.7.2, no changes needed.
   * Patch ApplicationScripting/Source/STApplicationScriptingController.m:
 NSUnknownKeyException - NSUndefinedKeyException, Thanks to
 Stefan Potyra [EMAIL PROTECTED] (Closes: #379334).
Files: 
 bd14d0073476ad5ef68ba3c13f248083 678 - optional steptalk_0.8.2-5.1.dsc
 dcaafdc810af17f5ba04f638abdb15d2 4882 - optional steptalk_0.8.2-5.1.diff.gz
 a5e3fc09b36c5a19d6ca7ef7710c192f 245706 libs optional 
steptalk_0.8.2-5.1_i386.deb

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

iD8DBQFEwx907Ro5M7LPzdgRAkxpAKDsE7KV5NOfXZCwVbWFHe1z8lS4uACeKvok
XHBZNaFsvi8FIT6FOQDmzyM=
=OoQ4
-END PGP SIGNATURE-


Accepted:
steptalk_0.8.2-5.1.diff.gz
  to pool/main/s/steptalk/steptalk_0.8.2-5.1.diff.gz
steptalk_0.8.2-5.1.dsc
  to pool/main/s/steptalk/steptalk_0.8.2-5.1.dsc
steptalk_0.8.2-5.1_i386.deb
  to pool/main/s/steptalk/steptalk_0.8.2-5.1_i386.deb


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



Accepted xearth 1.1-10.3 (source i386)

2006-07-23 Thread Adriaan Peeters
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 21 Jul 2006 11:00:46 +0200
Source: xearth
Binary: xearth
Architecture: source i386
Version: 1.1-10.3
Distribution: unstable
Urgency: low
Maintainer: Philipp Kern [EMAIL PROTECTED]
Changed-By: Adriaan Peeters [EMAIL PROTECTED]
Description: 
 xearth - Show a rotating earth on your X root window
Closes: 362916 379324 379325
Changes: 
 xearth (1.1-10.3) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Rebuild with the new imake which installs in /usr/bin instead of
 /usr/X11R6/bin (Closes: #362916).
   * Adapt debian/menu to include the new path.
   * Bumped Standards-Version to 3.7.2, no changed needed.
   * Set correct section for man page: 1x instead of 1 (Closes: #379325).
   * debian/rules:
 - Bumped debhelper version from 1 to 5 (Closes: #379324).
 - Adapted rules to use debian/xearth instead of debian/tmp
   * Removed debian/conffiles: debhelper handles this.
Files: 
 0dab6b19ea83b68cada053abb8478fb8 607 non-free/games optional 
xearth_1.1-10.3.dsc
 55080a47a3cbd7da3230908785a4c026 35182 non-free/games optional 
xearth_1.1-10.3.diff.gz
 f0dbd33fa7db85e28c3793c085a6303f 159420 non-free/games optional 
xearth_1.1-10.3_i386.deb

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

iD8DBQFEwx4e7Ro5M7LPzdgRAr8wAKDoCR+feQpjuttWSuuZWqq5juFlaQCgviYs
+iCwO+dO42JT5KfKTr5OerA=
=2wT3
-END PGP SIGNATURE-


Accepted:
xearth_1.1-10.3.diff.gz
  to pool/non-free/x/xearth/xearth_1.1-10.3.diff.gz
xearth_1.1-10.3.dsc
  to pool/non-free/x/xearth/xearth_1.1-10.3.dsc
xearth_1.1-10.3_i386.deb
  to pool/non-free/x/xearth/xearth_1.1-10.3_i386.deb


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



Accepted debfoster 2.6-1 (source i386)

2006-07-23 Thread Florian Weimer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 18:40:16 +0200
Source: debfoster
Binary: debfoster
Architecture: source i386
Version: 2.6-1
Distribution: unstable
Urgency: low
Maintainer: debfoster Maintainer Team [EMAIL PROTECTED]
Changed-By: Florian Weimer [EMAIL PROTECTED]
Description: 
 debfoster  - Install only wanted Debian packages
Changes: 
 debfoster (2.6-1) unstable; urgency=low
 .
   * New upstream version, new maintainer team.
   * Revert deprecation.
Files: 
 2d1b6017b88c3054c61254779c5c536c 1017 admin optional debfoster_2.6-1.dsc
 64d6ffb26359f47f813a2c502cbb8315 194795 admin optional 
debfoster_2.6.orig.tar.gz
 49b86834461ad415db0ad2439c8e50b7 4654 admin optional debfoster_2.6-1.diff.gz
 3a53af840354ca0377d1dc6a91422930 36928 admin optional debfoster_2.6-1_i386.deb

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

iQEVAwUBRMJYC797/wQC1SS+AQKUjggAp6/VnJxXnPzMiDbfxUznWi/RtVdiMJ+R
okDPAzmbrYKCUYQ29Fv5NQZmwBs9NciLq6pSFoGlilD6HVLRUQYmiai2cZ8e0tPP
59cf/3u7IsC9YLmgkZwX4G62oxrP8vscfkGjzyhvgucTJLE//Q7blcGvIUWfjC1g
2vkJ8u/2FCIo5hz591hBZcEQylsbxsVAYIXNz06o6zdaKpj1q4ak1d6hbBaqyYjP
6mr4MQ+gy46Lk7BZI1VpM1P72yVc64+GIWm29I2USyGTln2xZpVLzqyUUBz0lWFS
DUlUCSyDyd3vvXb1uIdMgCDbaY0nYbxojyebSzt/SvERDsulbBe+WA==
=BoB4
-END PGP SIGNATURE-


Accepted:
debfoster_2.6-1.diff.gz
  to pool/main/d/debfoster/debfoster_2.6-1.diff.gz
debfoster_2.6-1.dsc
  to pool/main/d/debfoster/debfoster_2.6-1.dsc
debfoster_2.6-1_i386.deb
  to pool/main/d/debfoster/debfoster_2.6-1_i386.deb
debfoster_2.6.orig.tar.gz
  to pool/main/d/debfoster/debfoster_2.6.orig.tar.gz


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



Accepted xft 2.1.10-1 (source i386)

2006-07-23 Thread Andres Salomon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 03:17:32 -0400
Source: xft
Binary: libxft-dev libxft2 libxft2-dbg
Architecture: source i386
Version: 2.1.10-1
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Andres Salomon [EMAIL PROTECTED]
Description: 
 libxft-dev - FreeType-based font drawing library for X (development files)
 libxft2- FreeType-based font drawing library for X
 libxft2-dbg - FreeType-based font drawing library for X (unstripped)
Changes: 
 xft (2.1.10-1) experimental; urgency=low
 .
   * New upstream release.
   * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build;
 idempotency fix.
   * Fix changelog to not make lintian upset.
   * Drop patches/002_no_xproto_dep.diff, now that x11proto-core-dev has
 a .pc file.  Make the dep on libx11-dev versioned so that we're sure
 to have an xproto.pc file (from xorg 7.0 or higher).
Files: 
 5ab4b9c67c6aa2ff5de1e5b938aa7694 818 devel optional xft_2.1.10-1.dsc
 629e15fe7287a388f663d9ee2ccfc0f7 364663 devel optional xft_2.1.10.orig.tar.gz
 d9f1ff22a46e0665a436922c3662cd69 91033 devel optional xft_2.1.10-1.diff.gz
 69f505fb2e9256db9658794af7d0b2d9 43762 libs optional libxft2_2.1.10-1_i386.deb
 e8c93016f01ae48263a5b0f2d32d96f6 174552 libdevel extra 
libxft2-dbg_2.1.10-1_i386.deb
 18e57a8d84cc8896ca7fae6850a229de 57312 libdevel optional 
libxft-dev_2.1.10-1_i386.deb

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

iD8DBQFEwzBfOmXwGc/ULyYRArJcAJ9awzheLcdHhYgN7hmZ5PmTlFPs3QCff8XW
hHGB4ytvBkW3weTu5ktWz/w=
=d/m5
-END PGP SIGNATURE-


Accepted:
libxft-dev_2.1.10-1_i386.deb
  to pool/main/x/xft/libxft-dev_2.1.10-1_i386.deb
libxft2-dbg_2.1.10-1_i386.deb
  to pool/main/x/xft/libxft2-dbg_2.1.10-1_i386.deb
libxft2_2.1.10-1_i386.deb
  to pool/main/x/xft/libxft2_2.1.10-1_i386.deb
xft_2.1.10-1.diff.gz
  to pool/main/x/xft/xft_2.1.10-1.diff.gz
xft_2.1.10-1.dsc
  to pool/main/x/xft/xft_2.1.10-1.dsc
xft_2.1.10.orig.tar.gz
  to pool/main/x/xft/xft_2.1.10.orig.tar.gz


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



Accepted gtk2-engines 1:2.6.9-2 (source i386)

2006-07-23 Thread Loic Minier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 10:08:06 +0200
Source: gtk2-engines
Binary: gtk2-engines
Architecture: source i386
Version: 1:2.6.9-2
Distribution: unstable
Urgency: low
Maintainer: Ed Boraas [EMAIL PROTECTED]
Changed-By: Loic Minier [EMAIL PROTECTED]
Description: 
 gtk2-engines - theme engines for GTK+ 2.x
Changes: 
 gtk2-engines (1:2.6.9-2) unstable; urgency=low
 .
   * Provide gtk2-engines-clearlooks while other packages update their deps.
Files: 
 e5eae9b9a87343c70fca4382b2326af3 1384 gnome optional gtk2-engines_2.6.9-2.dsc
 5ec8bc618ea6e865218ee499671ffdb5 4072 gnome optional 
gtk2-engines_2.6.9-2.diff.gz
 db273f876697a3871d296c2eb5877339 291540 gnome optional 
gtk2-engines_2.6.9-2_i386.deb

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

iD8DBQFEwzPI4VUX8isJIMARAtqsAJ9gzRMdONalat0gabNwhtsugE9dowCfW/Wj
MDFLb5Ub31KwvqZgiFw4eQo=
=72Sl
-END PGP SIGNATURE-


Accepted:
gtk2-engines_2.6.9-2.diff.gz
  to pool/main/g/gtk2-engines/gtk2-engines_2.6.9-2.diff.gz
gtk2-engines_2.6.9-2.dsc
  to pool/main/g/gtk2-engines/gtk2-engines_2.6.9-2.dsc
gtk2-engines_2.6.9-2_i386.deb
  to pool/main/g/gtk2-engines/gtk2-engines_2.6.9-2_i386.deb


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



Accepted libxxf86vm 1:1.0.1-1 (source i386)

2006-07-23 Thread Andres Salomon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 04:35:51 -0400
Source: libxxf86vm
Binary: libxxf86vm-dev libxxf86vm1 libxxf86vm1-dbg
Architecture: source i386
Version: 1:1.0.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Andres Salomon [EMAIL PROTECTED]
Description: 
 libxxf86vm-dev - X11 XFree86 video mode extension library (development headers)
 libxxf86vm1 - X11 XFree86 video mode extension library
 libxxf86vm1-dbg - X11 XFree86 video mode extension library (debug package)
Changes: 
 libxxf86vm (1:1.0.1-1) experimental; urgency=low
 .
   * New upstream release.
   * Drop patches/01_manpage_location.diff; merged upstream.
   * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build;
 idempotency fix.
   * Run dh_install w/ --list-missing.
   * Drop duplicate x11-common dep in -dev package.
   * Bump standards version to 3.7.2.0.
   * Version x11-common pre-dep in -dev package to 1:7.0.0 to match
 the rest of Debian.
   * Bump debhelper compat to 5.
   * Fix dh_strip call to skip the -dbg package.
   * Don't attempt to install (non-existent) usr/include/X11/* stuff.
Files: 
 09f99e75a98cfd1eec422a80c9780a34 899 x11 optional libxxf86vm_1.0.1-1.dsc
 18410058d16579679e9fd95c4d5a7d65 316981 x11 optional 
libxxf86vm_1.0.1.orig.tar.gz
 43f8c26129e9b758a9cb0fdb8bb5519f 81743 x11 optional libxxf86vm_1.0.1-1.diff.gz
 e33183582536f780ea76f6afb7637b38 9676 x11 optional libxxf86vm1_1.0.1-1_i386.deb
 176c189ee9f3ada0c5db77625b453d9e 27612 x11 optional 
libxxf86vm1-dbg_1.0.1-1_i386.deb
 2bdfb9ce407b2f37bb9a37377c887a4a 14008 x11 optional 
libxxf86vm-dev_1.0.1-1_i386.deb

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

iD8DBQFEwzWIOmXwGc/ULyYRArCCAJ4jWBzT+biD1x7tIH5i9tB0//dEWgCfdM0y
/HUMJLj0xfaC7hlPYZBPK04=
=GbDn
-END PGP SIGNATURE-


Accepted:
libxxf86vm-dev_1.0.1-1_i386.deb
  to pool/main/libx/libxxf86vm/libxxf86vm-dev_1.0.1-1_i386.deb
libxxf86vm1-dbg_1.0.1-1_i386.deb
  to pool/main/libx/libxxf86vm/libxxf86vm1-dbg_1.0.1-1_i386.deb
libxxf86vm1_1.0.1-1_i386.deb
  to pool/main/libx/libxxf86vm/libxxf86vm1_1.0.1-1_i386.deb
libxxf86vm_1.0.1-1.diff.gz
  to pool/main/libx/libxxf86vm/libxxf86vm_1.0.1-1.diff.gz
libxxf86vm_1.0.1-1.dsc
  to pool/main/libx/libxxf86vm/libxxf86vm_1.0.1-1.dsc
libxxf86vm_1.0.1.orig.tar.gz
  to pool/main/libx/libxxf86vm/libxxf86vm_1.0.1.orig.tar.gz


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



Accepted plr 1:0.6.2-4 (source i386)

2006-07-23 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 10:21:03 +0200
Source: plr
Binary: postgresql-8.1-plr postgresql-7.4-plr
Architecture: source i386
Version: 1:0.6.2-4
Distribution: unstable
Urgency: low
Maintainer: Martin Pitt [EMAIL PROTECTED]
Changed-By: Martin Pitt [EMAIL PROTECTED]
Description: 
 postgresql-7.4-plr - Procedural language interface between PostgreSQL 7.4 and R
 postgresql-8.1-plr - Procedural language interface between PostgreSQL 8.1 and R
Changes: 
 plr (1:0.6.2-4) unstable; urgency=low
 .
   * Build on mips and mipsel again, now that the PostgreSQL SIGBUS problem
 turned out to be a kernel bug (which is fixed in 2.6.16).
Files: 
 cf304567bc56c043253446432b8edce0 715 libs optional plr_0.6.2-4.dsc
 dea1852327432871e8f95d84ab7ecfc5 3367 libs optional plr_0.6.2-4.diff.gz
 158e702321d2633f6a4b7095009aa0c3 45702 libs optional 
postgresql-7.4-plr_0.6.2-4_i386.deb
 8dbb5b880b7631bb4d7e28dc70334c51 46448 libs optional 
postgresql-8.1-plr_0.6.2-4_i386.deb

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

iD8DBQFEwzMuDecnbV4Fd/IRAkuhAJ4q89pEfEuniaOF+CsNx6zE1pPKtQCg2IyH
zXauw1XDBtVXVQYb1A0/FPM=
=BNU4
-END PGP SIGNATURE-


Accepted:
plr_0.6.2-4.diff.gz
  to pool/main/p/plr/plr_0.6.2-4.diff.gz
plr_0.6.2-4.dsc
  to pool/main/p/plr/plr_0.6.2-4.dsc
postgresql-7.4-plr_0.6.2-4_i386.deb
  to pool/main/p/plr/postgresql-7.4-plr_0.6.2-4_i386.deb
postgresql-8.1-plr_0.6.2-4_i386.deb
  to pool/main/p/plr/postgresql-8.1-plr_0.6.2-4_i386.deb


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



Accepted sensors-applet 1.7.3+dfsg-1 (source powerpc)

2006-07-23 Thread Sam Morris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 21 Jul 2006 10:15:10 +0100
Source: sensors-applet
Binary: sensors-applet
Architecture: source powerpc
Version: 1.7.3+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Sam Morris [EMAIL PROTECTED]
Changed-By: Sam Morris [EMAIL PROTECTED]
Description: 
 sensors-applet - Display readings from hardware sensors in your Gnome panel
Closes: 378530
Changes: 
 sensors-applet (1.7.3+dfsg-1) unstable; urgency=low
 .
   * New upstream release
 - Draw graphs correctly when the applet is on a vertical panel
   (closes: #378530)
   * debian/watch: only download new uptream releases; do not automatically run
 uupdate because we must manually remove the non-free artwork from the
 pixmaps directory)
Files: 
 90599e9c76d29b8bf3681b6d0111b231 960 gnome optional 
sensors-applet_1.7.3+dfsg-1.dsc
 2fc57496254dcdd914a1c98fa2561b6a 241191 gnome optional 
sensors-applet_1.7.3+dfsg.orig.tar.gz
 91838cc53f85d854be07f72da570d325 3202 gnome optional 
sensors-applet_1.7.3+dfsg-1.diff.gz
 348310def16adfee28bc9dc300135d72 90226 gnome optional 
sensors-applet_1.7.3+dfsg-1_powerpc.deb

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

iD8DBQFEwzRzABzeamt51AERAulHAJ9zFl+vlFHHziEpUMsASRPB43QvegCfXtZ0
4D+P3ZUhmlozk9J3n7IzQzw=
=PX/z
-END PGP SIGNATURE-


Accepted:
sensors-applet_1.7.3+dfsg-1.diff.gz
  to pool/main/s/sensors-applet/sensors-applet_1.7.3+dfsg-1.diff.gz
sensors-applet_1.7.3+dfsg-1.dsc
  to pool/main/s/sensors-applet/sensors-applet_1.7.3+dfsg-1.dsc
sensors-applet_1.7.3+dfsg-1_powerpc.deb
  to pool/main/s/sensors-applet/sensors-applet_1.7.3+dfsg-1_powerpc.deb
sensors-applet_1.7.3+dfsg.orig.tar.gz
  to pool/main/s/sensors-applet/sensors-applet_1.7.3+dfsg.orig.tar.gz


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



Accepted mailgraph 1.12-1.1 (source all)

2006-07-23 Thread Lars Wirzenius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 15 Jul 2006 11:11:53 +0300
Source: mailgraph
Binary: mailgraph
Architecture: source all
Version: 1.12-1.1
Distribution: unstable
Urgency: low
Maintainer: Norbert Tretkowski [EMAIL PROTECTED]
Changed-By: Lars Wirzenius [EMAIL PROTECTED]
Description: 
 mailgraph  - Mail statistics RRDtool frontend for Postfix
Changes: 
 mailgraph (1.12-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/postinst: Use invoke-rc.d, if available, to run init.d script.
Files: 
 19e13ca4148e8fe04f20768bdf1427b0 582 admin extra mailgraph_1.12-1.1.dsc
 3ee99ff87889655fc812899b1c58b094 5645 admin extra mailgraph_1.12-1.1.diff.gz
 e5933ac189866c10a9d70e10d8d17027 19172 admin extra mailgraph_1.12-1.1_all.deb

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

iD8DBQFEuKyBH7uVvy2azI4RAhZXAJ47JiwCXEXqPhEt2vwovI3MPAgSOwCgok+z
x+cUNaEBMQ9WarEUbrn6xfE=
=LNg0
-END PGP SIGNATURE-


Accepted:
mailgraph_1.12-1.1.diff.gz
  to pool/main/m/mailgraph/mailgraph_1.12-1.1.diff.gz
mailgraph_1.12-1.1.dsc
  to pool/main/m/mailgraph/mailgraph_1.12-1.1.dsc
mailgraph_1.12-1.1_all.deb
  to pool/main/m/mailgraph/mailgraph_1.12-1.1_all.deb


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



Accepted gstreamer0.10-ffmpeg 0.10.1-2 (source i386)

2006-07-23 Thread Loic Minier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 11:03:49 +0200
Source: gstreamer0.10-ffmpeg
Binary: gstreamer0.10-ffmpeg
Architecture: source i386
Version: 0.10.1-2
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages [EMAIL PROTECTED]
Changed-By: Loic Minier [EMAIL PROTECTED]
Description: 
 gstreamer0.10-ffmpeg - FFmpeg plugin for GStreamer
Changes: 
 gstreamer0.10-ffmpeg (0.10.1-2) unstable; urgency=low
 .
   [ Loic Minier ]
   * Re-add the change of 0.8.7-3 (-DRUNTIME_CPUDETECT) now that gcc doesn't
 ICE on this anymore.
 .
   [ Sebastian Dröge ]
   * debian/patches/02_state-change-return.patch:
 + Actually return something on state changes
   * debian/patches/01_disable-broken-demuxers.patch:
 + Disable the broken demuxers for now as they only cause problems
Files: 
 b2a0762309600ac48620b9ee78bcd39c 918 libs optional 
gstreamer0.10-ffmpeg_0.10.1-2.dsc
 7ea9c830cd0f3fa927bbc7efc32755cb 7468 libs optional 
gstreamer0.10-ffmpeg_0.10.1-2.diff.gz
 1bf7f33a688f60a0d7bbd71551abb966 1230922 libs optional 
gstreamer0.10-ffmpeg_0.10.1-2_i386.deb

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

iD8DBQFEwz0s4VUX8isJIMARAn60AKCB2p7k5rfyoGZEIxWNUFqgng5mUwCgonrA
c68NDHk1u4ImjD4Wa/CMRAI=
=2QDq
-END PGP SIGNATURE-


Accepted:
gstreamer0.10-ffmpeg_0.10.1-2.diff.gz
  to pool/main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.1-2.diff.gz
gstreamer0.10-ffmpeg_0.10.1-2.dsc
  to pool/main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.1-2.dsc
gstreamer0.10-ffmpeg_0.10.1-2_i386.deb
  to pool/main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.1-2_i386.deb


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



Accepted erlang-manpages 1:11.b.0-2 (source all)

2006-07-23 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 19 Jul 2006 01:44:44 +0400
Source: erlang-manpages
Binary: erlang-manpages
Architecture: source all
Version: 1:11.b.0-2
Distribution: unstable
Urgency: low
Maintainer: Erlang Packagers [EMAIL PROTECTED]
Changed-By: Torsten Werner [EMAIL PROTECTED]
Description: 
 erlang-manpages - Erlang man pages
Changes: 
 erlang-manpages (1:11.b.0-2) unstable; urgency=low
 .
   [ Sergei Golovan ]
   * Upload to unstable.
Files: 
 ead25642934c9eb7162ec358b3e665a3 664 doc optional erlang-manpages_11.b.0-2.dsc
 b0a5d0c1bf830f90049b6edd4effb711 3918 doc optional 
erlang-manpages_11.b.0-2.diff.gz
 8a4c0a6801740d45981bd53aa2bf7593 791326 doc optional 
erlang-manpages_11.b.0-2_all.deb

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

iD8DBQFEw0bhfY3dicTPjsMRAnU5AKCFIPzZ+cE9BedlWNkMlIIMsPw1MwCdGg5m
UQd35sFF61dwuHhrZghn+EY=
=sUxz
-END PGP SIGNATURE-


Accepted:
erlang-manpages_11.b.0-2.diff.gz
  to pool/main/e/erlang-manpages/erlang-manpages_11.b.0-2.diff.gz
erlang-manpages_11.b.0-2.dsc
  to pool/main/e/erlang-manpages/erlang-manpages_11.b.0-2.dsc
erlang-manpages_11.b.0-2_all.deb
  to pool/main/e/erlang-manpages/erlang-manpages_11.b.0-2_all.deb


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



Accepted libdata-structure-util-perl 0.12-1 (source i386)

2006-07-23 Thread Jonathan McDowell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 10:55:15 +0100
Source: libdata-structure-util-perl
Binary: libdata-structure-util-perl
Architecture: source i386
Version: 0.12-1
Distribution: unstable
Urgency: low
Maintainer: Jonathan McDowell [EMAIL PROTECTED]
Changed-By: Jonathan McDowell [EMAIL PROTECTED]
Description: 
 libdata-structure-util-perl - Change nature of data within a structure
Changes: 
 libdata-structure-util-perl (0.12-1) unstable; urgency=low
 .
   * New upstream release.
   * Add watch file.
   * Bump Standards-Version to 3.7.2.0 (no changes).
Files: 
 3ff0fff893a6e84bc9431ddd1b5e7942 740 perl optional 
libdata-structure-util-perl_0.12-1.dsc
 1af2a4149ba81f42d11dbfaecbaf5973 15022 perl optional 
libdata-structure-util-perl_0.12.orig.tar.gz
 c828965b50a9b1770e57623ee4710800 2169 perl optional 
libdata-structure-util-perl_0.12-1.diff.gz
 86d0b7a06abe462dfe570e1650774c62 23654 perl optional 
libdata-structure-util-perl_0.12-1_i386.deb

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

iD8DBQFEw0gV8b1L5FtDA2cRAhuUAJ9zCuDPl0ROGnUesRT7JjsLC8u0XgCfUWfl
1rR9+sJaTXpsAl8yLpNBUEE=
=F8LW
-END PGP SIGNATURE-


Accepted:
libdata-structure-util-perl_0.12-1.diff.gz
  to 
pool/main/libd/libdata-structure-util-perl/libdata-structure-util-perl_0.12-1.diff.gz
libdata-structure-util-perl_0.12-1.dsc
  to 
pool/main/libd/libdata-structure-util-perl/libdata-structure-util-perl_0.12-1.dsc
libdata-structure-util-perl_0.12-1_i386.deb
  to 
pool/main/libd/libdata-structure-util-perl/libdata-structure-util-perl_0.12-1_i386.deb
libdata-structure-util-perl_0.12.orig.tar.gz
  to 
pool/main/libd/libdata-structure-util-perl/libdata-structure-util-perl_0.12.orig.tar.gz


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



Accepted erlang-doc-html 1:11.b.0-2 (source all)

2006-07-23 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 19 Jul 2006 01:48:56 +0400
Source: erlang-doc-html
Binary: erlang-doc-html
Architecture: source all
Version: 1:11.b.0-2
Distribution: unstable
Urgency: low
Maintainer: Erlang Packagers [EMAIL PROTECTED]
Changed-By: Torsten Werner [EMAIL PROTECTED]
Description: 
 erlang-doc-html - Erlang HTML pages
Changes: 
 erlang-doc-html (1:11.b.0-2) unstable; urgency=low
 .
   [ Sergei Golovan ]
   * Upload to unstable.
Files: 
 76d928a8dc81d3d0925bda0fb285ddcf 665 doc optional erlang-doc-html_11.b.0-2.dsc
 f46153b9959f8ba3d0e0eae62c34fd7f 5121 doc optional 
erlang-doc-html_11.b.0-2.diff.gz
 c3bcfe2e7515e8c0acd342d4e05ad59f 4376856 doc optional 
erlang-doc-html_11.b.0-2_all.deb

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

iD8DBQFEw0fDfY3dicTPjsMRAsiEAJ9L4MAk1Btj8RiPILORCqafFnGQzgCfXTEM
Q76OLAh3pyKgx6OCuzvkNWQ=
=Uap5
-END PGP SIGNATURE-


Accepted:
erlang-doc-html_11.b.0-2.diff.gz
  to pool/main/e/erlang-doc-html/erlang-doc-html_11.b.0-2.diff.gz
erlang-doc-html_11.b.0-2.dsc
  to pool/main/e/erlang-doc-html/erlang-doc-html_11.b.0-2.dsc
erlang-doc-html_11.b.0-2_all.deb
  to pool/main/e/erlang-doc-html/erlang-doc-html_11.b.0-2_all.deb


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



Accepted otrs2 2.0.4p01-9 (source all)

2006-07-23 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 19 Jul 2006 21:41:37 +0200
Source: otrs2
Binary: otrs2
Architecture: source all
Version: 2.0.4p01-9
Distribution: unstable
Urgency: low
Maintainer: Torsten Werner [EMAIL PROTECTED]
Changed-By: Torsten Werner [EMAIL PROTECTED]
Description: 
 otrs2  - Open Ticket Request System
Closes: 378672
Changes: 
 otrs2 (2.0.4p01-9) unstable; urgency=low
 .
   * create otrs user in debian/preinst now instead of debian/postinst
   * fixes in debian/postinst and debian/postrm
   * force-reload apache in debian/postinst because we might enable mod_perl
   * make sure apache's perl module is enabled
   * rescue old apache configuration before installing a new one
   * documentation fixes
   * added more Recommends and Suggests, closes: #378672
Files: 
 e7d31f8ee2ef32f15bed80803720238c 579 web optional otrs2_2.0.4p01-9.dsc
 c77afd42cc67fa49937c18e80dabecbf 11537 web optional otrs2_2.0.4p01-9.diff.gz
 75ff705c2906802f28ca70e1d37b3d2e 1129364 web optional otrs2_2.0.4p01-9_all.deb

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

iD8DBQFEw01WfY3dicTPjsMRAol8AJ0WRNUgYw7gZLJG7+AzNdt6uCHTwACeLf3d
izIpxLYhNN7m2o5ie5CNOf8=
=5bGA
-END PGP SIGNATURE-


Accepted:
otrs2_2.0.4p01-9.diff.gz
  to pool/main/o/otrs2/otrs2_2.0.4p01-9.diff.gz
otrs2_2.0.4p01-9.dsc
  to pool/main/o/otrs2/otrs2_2.0.4p01-9.dsc
otrs2_2.0.4p01-9_all.deb
  to pool/main/o/otrs2/otrs2_2.0.4p01-9_all.deb


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



Accepted pype 2.5-2 (source all)

2006-07-23 Thread Franz Pletz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 21 Jul 2006 14:30:13 +0200
Source: pype
Binary: pype
Architecture: source all
Version: 2.5-2
Distribution: unstable
Urgency: low
Maintainer: Franz Pletz [EMAIL PROTECTED]
Changed-By: Franz Pletz [EMAIL PROTECTED]
Description: 
 pype   - python programmers editor
Changes: 
 pype (2.5-2) unstable; urgency=low
 .
   * New maintainer. (Approved by Matthias)
   * debian/menu:
 - Replaced reference to spe with pype.
 - Make reference to new XPM icon.
   * debian/control:
 - Build-Depend on python et al.
 - Removed Build-Depend von python-wxgtk2.6.
 - Install debian/pype.xpm.
   * Added debian/pycompat.
   * debian/copyright: Updated FSF address.
   * debian/compat: Bumped to 5 as debian/control depends on it.
   * Wrote manpage.
Files: 
 2a7f2e8928a7dc4ce48016901e7a 659 python optional pype_2.5-2.dsc
 38649d364e15193be65dc98d46fec88e 5736 python optional pype_2.5-2.diff.gz
 9651b9f8acd5748afacf9234c5dd8143 188276 python optional pype_2.5-2_all.deb

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

iD8DBQFEw0TSCV53xXnMZYYRAjRVAJ9CpcHkFcPN9glfJDtHUFkAGt0ZhwCg1kvF
N03JTvkTlrwT2c7yRB2JmbI=
=ZhPS
-END PGP SIGNATURE-


Accepted:
pype_2.5-2.diff.gz
  to pool/main/p/pype/pype_2.5-2.diff.gz
pype_2.5-2.dsc
  to pool/main/p/pype/pype_2.5-2.dsc
pype_2.5-2_all.deb
  to pool/main/p/pype/pype_2.5-2_all.deb


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



Accepted openmotif 2.2.3-1.5 (source i386)

2006-07-23 Thread Amaya Rodrigo Sastre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 19 Jul 2006 23:44:44 +0200
Source: openmotif
Binary: libmotif-dev libmotif3 motif-clients
Architecture: source i386
Version: 2.2.3-1.5
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Amaya Rodrigo Sastre [EMAIL PROTECTED]
Description: 
 libmotif-dev - Open Motif - development files
 libmotif3  - Open Motif - shared libraries
 motif-clients - Open Motif - X11 clients (mwm, xmbind)
Closes: 314623
Changes: 
 openmotif (2.2.3-1.5) unstable; urgency=low
 .
   * QA upload.
   * Include patch from Glockenstein [EMAIL PROTECTED], so that
 system.mwmrc-menu gets installed (closes: #314623).
Files: 
 0c5bc5beb85b2c30c4d97f4580ed78e5 722 non-free/devel extra 
openmotif_2.2.3-1.5.dsc
 2c2f685b38d2fa92d56eb0b1026acd2b 5137300 non-free/devel extra 
openmotif_2.2.3.orig.tar.gz
 93ac8b7324451455abf81fb8d4ed8e26 18895 non-free/devel extra 
openmotif_2.2.3-1.5.diff.gz
 0fa69543997ad0a8383021ff3ec05787 1285236 non-free/libs extra 
libmotif3_2.2.3-1.5_i386.deb
 43dbfc6f345ef33a7bd6d80de49250ca 2825678 non-free/devel extra 
libmotif-dev_2.2.3-1.5_i386.deb
 bd700306e6478d1124aed75c4b776a0d 171314 non-free/x11 extra 
motif-clients_2.2.3-1.5_i386.deb

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

iD8DBQFEwnzVNFDtUT/MKpARAuyyAKDftIp/GDrrjbijrPojFFyYDkWc+wCcDriE
3y7lnZKN5eWw9r+j4oejrFI=
=1Bf9
-END PGP SIGNATURE-


Accepted:
libmotif-dev_2.2.3-1.5_i386.deb
  to pool/non-free/o/openmotif/libmotif-dev_2.2.3-1.5_i386.deb
libmotif3_2.2.3-1.5_i386.deb
  to pool/non-free/o/openmotif/libmotif3_2.2.3-1.5_i386.deb
motif-clients_2.2.3-1.5_i386.deb
  to pool/non-free/o/openmotif/motif-clients_2.2.3-1.5_i386.deb
openmotif_2.2.3-1.5.diff.gz
  to pool/non-free/o/openmotif/openmotif_2.2.3-1.5.diff.gz
openmotif_2.2.3-1.5.dsc
  to pool/non-free/o/openmotif/openmotif_2.2.3-1.5.dsc


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



Accepted crossfire 1.9.1-4 (source all i386)

2006-07-23 Thread Kari Pahula
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 14:40:56 +0300
Source: crossfire
Binary: crossfire-server crossfire-common crossfire-doc crossfire-edit
Architecture: source all i386
Version: 1.9.1-4
Distribution: unstable
Urgency: low
Maintainer: Kari Pahula [EMAIL PROTECTED]
Changed-By: Kari Pahula [EMAIL PROTECTED]
Description: 
 crossfire-common - Common files for Crossfire
 crossfire-doc - Documentation for Crossfire
 crossfire-edit - Map editor for the Crossfire Gameset
 crossfire-server - Server for Crossfire Games
Closes: 338069 379369
Changes: 
 crossfire (1.9.1-4) unstable; urgency=low
 .
   * Fixed FTBFS by removing config.log in debian/rules clean (Closes: #379369)
   * Moved the /etc files from crossfire-common back to
 crossfire-server. (Closes: #338069)
   * Install crossfire-config to crossfire-server.
Files: 
 6888675c43454dab33e3c1deb8164acf 672 games optional crossfire_1.9.1-4.dsc
 8c5e0196bcfc8306a88488e15fbb36cf 6878 games optional crossfire_1.9.1-4.diff.gz
 59b978b9d61375264addd9c4a6c2e13a 3078128 games optional 
crossfire-common_1.9.1-4_all.deb
 62dc5eb51cc98a16e8808d2eabb80659 939784 doc optional 
crossfire-doc_1.9.1-4_all.deb
 1b308656e499e916ae0f6488a04f1852 1071916 games optional 
crossfire-server_1.9.1-4_i386.deb
 889044f45d80e3dd37add5e93a3e8c56 376056 games optional 
crossfire-edit_1.9.1-4_i386.deb

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

iD8DBQFEw2HFeYl9593Atw0RAjahAJ9ttjN4OGUWXfnR18fQ/sGvesPi/QCgsfOV
ltc4kjrZwcEmtGB7pDV25Xw=
=zgdE
-END PGP SIGNATURE-


Accepted:
crossfire-common_1.9.1-4_all.deb
  to pool/main/c/crossfire/crossfire-common_1.9.1-4_all.deb
crossfire-doc_1.9.1-4_all.deb
  to pool/main/c/crossfire/crossfire-doc_1.9.1-4_all.deb
crossfire-edit_1.9.1-4_i386.deb
  to pool/main/c/crossfire/crossfire-edit_1.9.1-4_i386.deb
crossfire-server_1.9.1-4_i386.deb
  to pool/main/c/crossfire/crossfire-server_1.9.1-4_i386.deb
crossfire_1.9.1-4.diff.gz
  to pool/main/c/crossfire/crossfire_1.9.1-4.diff.gz
crossfire_1.9.1-4.dsc
  to pool/main/c/crossfire/crossfire_1.9.1-4.dsc


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



Accepted sdcc 2.5.99+2.6.0rc1-2 (source all sparc)

2006-07-23 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 12:19:15 +0200
Source: sdcc
Binary: sdcc-ucsim sdcc-doc sdcc-libraries sdcc
Architecture: source all sparc
Version: 2.5.99+2.6.0rc1-2
Distribution: experimental
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 sdcc   - Small Device C Compiler
 sdcc-doc   - Small Device C Compiler (documentation)
 sdcc-libraries - Small Device C Compiler (libraries)
 sdcc-ucsim - Micro-controller simulator for SDCC
Changes: 
 sdcc (2.5.99+2.6.0rc1-2) experimental; urgency=low
 .
   * Make the arch-any packages buildable alone.
Files: 
 be83154dc934ab06a2ce365f762476fc 742 electronics optional 
sdcc_2.5.99+2.6.0rc1-2.dsc
 82adc31356b9dddc878075f0bec3117c 17555 electronics optional 
sdcc_2.5.99+2.6.0rc1-2.diff.gz
 e37ae39ab94073710907bdb5222f859b 1215858 electronics optional 
sdcc_2.5.99+2.6.0rc1-2_sparc.deb
 16b9dff6d0f391cb7e99f9091b2ef363 807032 electronics optional 
sdcc-ucsim_2.5.99+2.6.0rc1-2_sparc.deb
 c4b6cd7ba6da1cb038840f3e147837f7 1979742 electronics optional 
sdcc-libraries_2.5.99+2.6.0rc1-2_all.deb
 7aa5da1efefbcfbbbd916f0bfea074c1 1030820 doc optional 
sdcc-doc_2.5.99+2.6.0rc1-2_all.deb

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

iD8DBQFEw2YHw3ao2vG823MRAgyEAJ91NzxIsCbRKFzadGkCHyUCn6x+MwCgh7zu
K51SXUk81kjVtb0h9+KpSHM=
=LiFH
-END PGP SIGNATURE-


Accepted:
sdcc-doc_2.5.99+2.6.0rc1-2_all.deb
  to pool/main/s/sdcc/sdcc-doc_2.5.99+2.6.0rc1-2_all.deb
sdcc-libraries_2.5.99+2.6.0rc1-2_all.deb
  to pool/main/s/sdcc/sdcc-libraries_2.5.99+2.6.0rc1-2_all.deb
sdcc-ucsim_2.5.99+2.6.0rc1-2_sparc.deb
  to pool/main/s/sdcc/sdcc-ucsim_2.5.99+2.6.0rc1-2_sparc.deb
sdcc_2.5.99+2.6.0rc1-2.diff.gz
  to pool/main/s/sdcc/sdcc_2.5.99+2.6.0rc1-2.diff.gz
sdcc_2.5.99+2.6.0rc1-2.dsc
  to pool/main/s/sdcc/sdcc_2.5.99+2.6.0rc1-2.dsc
sdcc_2.5.99+2.6.0rc1-2_sparc.deb
  to pool/main/s/sdcc/sdcc_2.5.99+2.6.0rc1-2_sparc.deb


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



Accepted libdbix-class-perl 0.07000-1 (source all)

2006-07-23 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 13:48:56 +0200
Source: libdbix-class-perl
Binary: libdbix-class-perl
Architecture: source all
Version: 0.07000-1
Distribution: unstable
Urgency: low
Maintainer: Debian Catalyst Maintainers [EMAIL PROTECTED]
Changed-By: Krzysztof Krzyzaniak (eloy) [EMAIL PROTECTED]
Description: 
 libdbix-class-perl - Extensible and flexible object - relational mapper
Changes: 
 libdbix-class-perl (0.07000-1) unstable; urgency=low
 .
   * New upstream release
   * debian/compat: increased to 5
   * debian/control:
+ Standards-Version: increased to 3.7.2.1 without any changes
Files: 
 d7874e7cf2a0a03faebd5a0cf0228431 1243 perl optional 
libdbix-class-perl_0.07000-1.dsc
 305406e59106bee4ba5dc0f70863697a 170612 perl optional 
libdbix-class-perl_0.07000.orig.tar.gz
 dff8997857f7fe0b600d82f5050df9ff 2966 perl optional 
libdbix-class-perl_0.07000-1.diff.gz
 15ac61c201a5400064ebb66f8d807482 289122 perl optional 
libdbix-class-perl_0.07000-1_all.deb

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

iD8DBQFEw2fv+NMfSd6w7DERAnOOAKDBPQ5Hf364OcjBbIX33U4YI1iFSgCeKEgP
NGQWlLchz4eD+xeujnIbKOQ=
=qSDC
-END PGP SIGNATURE-


Accepted:
libdbix-class-perl_0.07000-1.diff.gz
  to pool/main/libd/libdbix-class-perl/libdbix-class-perl_0.07000-1.diff.gz
libdbix-class-perl_0.07000-1.dsc
  to pool/main/libd/libdbix-class-perl/libdbix-class-perl_0.07000-1.dsc
libdbix-class-perl_0.07000-1_all.deb
  to pool/main/libd/libdbix-class-perl/libdbix-class-perl_0.07000-1_all.deb
libdbix-class-perl_0.07000.orig.tar.gz
  to pool/main/libd/libdbix-class-perl/libdbix-class-perl_0.07000.orig.tar.gz


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



Accepted restartd 0.2 (source amd64)

2006-07-23 Thread Aurélien GÉRÔME
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 00:11:39 +0200
Source: restartd
Binary: restartd
Architecture: source amd64
Version: 0.2
Distribution: unstable
Urgency: low
Maintainer: Aurélien GÉRÔME [EMAIL PROTECTED]
Changed-By: Aurélien GÉRÔME [EMAIL PROTECTED]
Description: 
 restartd   - Process checker and/or restarter
Closes: 191302 358514
Changes: 
 restartd (0.2) unstable; urgency=low
 .
   * Adopt the package (Closes: #358514).
   * Update to the latest Standards-Version.
   * Throw away Debian revision number, because it is a native package.
   * Add README.Debian with a note concerning system upgrades
 (Closes: #191302).
Files: 
 02b7cf2ba59905977f064258aad5b558 488 utils extra restartd_0.2.dsc
 4ce062a32433aeb741d17aca45f303d5 12686 utils extra restartd_0.2.tar.gz
 6f943b267d40c15f32e2f5c827f39bce 9954 utils extra restartd_0.2_amd64.deb

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

iD8DBQFEw2qRzWFP1/XWUWkRArIZAJ9qnZyEw/h1yQKvqE1kbJnuHEJ9mgCfcY53
qnCPw6QhxcLs2YPS13uMPSA=
=20yP
-END PGP SIGNATURE-


Accepted:
restartd_0.2.dsc
  to pool/main/r/restartd/restartd_0.2.dsc
restartd_0.2.tar.gz
  to pool/main/r/restartd/restartd_0.2.tar.gz
restartd_0.2_amd64.deb
  to pool/main/r/restartd/restartd_0.2_amd64.deb


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



Accepted dancer-services 1.8.0.6.3-4 (source amd64)

2006-07-23 Thread Aurélien GÉRÔME
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 01:36:57 +0200
Source: dancer-services
Binary: dancer-services
Architecture: source amd64
Version: 1.8.0.6.3-4
Distribution: unstable
Urgency: low
Maintainer: Aurélien GÉRÔME [EMAIL PROTECTED]
Changed-By: Aurélien GÉRÔME [EMAIL PROTECTED]
Description: 
 dancer-services - IRC services implementation for dancer-ircd
Closes: 348748
Changes: 
 dancer-services (1.8.0.6.3-4) unstable; urgency=low
 .
   * Adopt the package (Closes: #348748).
   * Update to the latest Standards-Version.
   * Add lintian overrides.
Files: 
 b6e7d8fb43be52e45841fd8de99089fe 605 net optional 
dancer-services_1.8.0.6.3-4.dsc
 c1c27ffb51e06619fa636dedd84a2489 24150 net optional 
dancer-services_1.8.0.6.3-4.diff.gz
 cdfb885bfc106e1dd892c993f54d47f9 251290 net optional 
dancer-services_1.8.0.6.3-4_amd64.deb

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

iD8DBQFEw21SzWFP1/XWUWkRAoLNAJ4mJAa/wtqAooYaHYxa+uwjAcodFACgmHXg
HV3GrwYwLuER5KO2P+6x5xE=
=3NVV
-END PGP SIGNATURE-


Accepted:
dancer-services_1.8.0.6.3-4.diff.gz
  to pool/main/d/dancer-services/dancer-services_1.8.0.6.3-4.diff.gz
dancer-services_1.8.0.6.3-4.dsc
  to pool/main/d/dancer-services/dancer-services_1.8.0.6.3-4.dsc
dancer-services_1.8.0.6.3-4_amd64.deb
  to pool/main/d/dancer-services/dancer-services_1.8.0.6.3-4_amd64.deb


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



Accepted dancer-ircd 1.0.36-7 (source all amd64)

2006-07-23 Thread Aurélien GÉRÔME
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 00:58:35 +0200
Source: dancer-ircd
Binary: dancer-ircd dancer-ircd-doc
Architecture: source amd64 all
Version: 1.0.36-7
Distribution: unstable
Urgency: low
Maintainer: Aurélien GÉRÔME [EMAIL PROTECTED]
Changed-By: Aurélien GÉRÔME [EMAIL PROTECTED]
Description: 
 dancer-ircd - an IRC server designed for centrally maintained network
 dancer-ircd-doc - Dancer documentation
Closes: 348746
Changes: 
 dancer-ircd (1.0.36-7) unstable; urgency=low
 .
   * Adopt the package (Closes: #348746).
   * Update to the latest Standards-Version.
   * Update the package description.
   * Remove .arch-ids/, {arch}/, .arch-inventory directories and files
 from the previous maintainer.
Files: 
 54f48688910eccb7b73736c82405cc3c 624 net extra dancer-ircd_1.0.36-7.dsc
 5e81a7760ccd642857542a35e11ff991 34469 net extra dancer-ircd_1.0.36-7.diff.gz
 1617c296dcbdae1b6bef799fc15c5441 150294 doc extra 
dancer-ircd-doc_1.0.36-7_all.deb
 eb32f495c813e56b1fe18c6cfa4421de 195888 net extra 
dancer-ircd_1.0.36-7_amd64.deb

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

iD8DBQFEw3GfzWFP1/XWUWkRAoOtAJ9rZ3FErK5xbC4SltnEOko2Eg5f2wCg34sW
4pF8zPgkZfAA1NSC28PKI9o=
=3KGk
-END PGP SIGNATURE-


Accepted:
dancer-ircd-doc_1.0.36-7_all.deb
  to pool/main/d/dancer-ircd/dancer-ircd-doc_1.0.36-7_all.deb
dancer-ircd_1.0.36-7.diff.gz
  to pool/main/d/dancer-ircd/dancer-ircd_1.0.36-7.diff.gz
dancer-ircd_1.0.36-7.dsc
  to pool/main/d/dancer-ircd/dancer-ircd_1.0.36-7.dsc
dancer-ircd_1.0.36-7_amd64.deb
  to pool/main/d/dancer-ircd/dancer-ircd_1.0.36-7_amd64.deb


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



Accepted pyfits 1.0.1-7 (source all)

2006-07-23 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 13:20:55 +0200
Source: pyfits
Binary: python-pyfits python-pyfits-doc
Architecture: source all
Version: 1.0.1-7
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 python-pyfits - Python module for reading, writing, and manipulating FITS files
 python-pyfits-doc - Documentation for PyFITS
Changes: 
 pyfits (1.0.1-7) unstable; urgency=low
 .
   * Correctly use dh_pysupport.
Files: 
 c84eb7a718f5f4874cc8c86a9d86b4a3 754 python optional pyfits_1.0.1-7.dsc
 c0077a45c67d4178fbc35b02295453ed 8023 python optional pyfits_1.0.1-7.diff.gz
 04d4b26dc260c82c0a177b237db472b5 50274 python optional 
python-pyfits_1.0.1-7_all.deb
 26514f57d0eb4095b9465355ffa7d6d1 405520 doc optional 
python-pyfits-doc_1.0.1-7_all.deb

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

iD8DBQFEw3NLw3ao2vG823MRAsJAAJ0WfSRubK/lMEod5vYdT/zUt3QlXwCfSisC
YjlQMEzo12UH89rWP42PDzE=
=KHtB
-END PGP SIGNATURE-


Accepted:
pyfits_1.0.1-7.diff.gz
  to pool/main/p/pyfits/pyfits_1.0.1-7.diff.gz
pyfits_1.0.1-7.dsc
  to pool/main/p/pyfits/pyfits_1.0.1-7.dsc
python-pyfits-doc_1.0.1-7_all.deb
  to pool/main/p/pyfits/python-pyfits-doc_1.0.1-7_all.deb
python-pyfits_1.0.1-7_all.deb
  to pool/main/p/pyfits/python-pyfits_1.0.1-7_all.deb


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



Accepted gforge-plugin-scmsvn 4.5.14-3 (source all)

2006-07-23 Thread Roland Mas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 15:07:33 +0200
Source: gforge-plugin-scmsvn
Binary: gforge-plugin-scmsvn
Architecture: source all
Version: 4.5.14-3
Distribution: unstable
Urgency: low
Maintainer: Roland Mas [EMAIL PROTECTED]
Changed-By: Roland Mas [EMAIL PROTECTED]
Description: 
 gforge-plugin-scmsvn - subversion plugin for GForge
Closes: 376513
Changes: 
 gforge-plugin-scmsvn (4.5.14-3) unstable; urgency=low
 .
   * [Roland] Made repositories actually not-accessible when the anonymous
 SCM option is disabled (closes: #376513).
   * [Roland] Started using dpatch.  First patch: disable-dav, to switch
 SVN over to SSH (for developers) and svnserve (for anonymous).
Files: 
 4aa4a4a9090b4a9bdd393f0ece13df5c 587 devel optional 
gforge-plugin-scmsvn_4.5.14-3.dsc
 1e8cc364df87cee4a8f6ac2298a6bf79 74923 devel optional 
gforge-plugin-scmsvn_4.5.14-3.tar.gz
 f8f74e392401babd76433638ef92e2f7 73792 devel optional 
gforge-plugin-scmsvn_4.5.14-3_all.deb

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

iD8DBQFEw3U7DqdWtRRIQ/URAoDHAJ4tINaJ9V/SwmFjUMMKRGOPgOxxMgCggPDK
pJKExIRPhHXeHUZqPP01Fz8=
=3LsZ
-END PGP SIGNATURE-


Accepted:
gforge-plugin-scmsvn_4.5.14-3.dsc
  to pool/main/g/gforge-plugin-scmsvn/gforge-plugin-scmsvn_4.5.14-3.dsc
gforge-plugin-scmsvn_4.5.14-3.tar.gz
  to pool/main/g/gforge-plugin-scmsvn/gforge-plugin-scmsvn_4.5.14-3.tar.gz
gforge-plugin-scmsvn_4.5.14-3_all.deb
  to pool/main/g/gforge-plugin-scmsvn/gforge-plugin-scmsvn_4.5.14-3_all.deb


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



Accepted pyfits 1.1b2-2 (source all)

2006-07-23 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 14:39:39 +0200
Source: pyfits
Binary: python-pyfits
Architecture: source all
Version: 1.1b2-2
Distribution: experimental
Urgency: low
Maintainer: Debian Python Modules Team [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 python-pyfits - Python module for reading, writing, and manipulating FITS files
Changes: 
 pyfits (1.1b2-2) experimental; urgency=low
 .
   * Correctly use dh_pysupport.
Files: 
 a0449a497e2170bf731213b77a57540e 722 python optional pyfits_1.1b2-2.dsc
 efdf7a56d65af72b75b82a1e17c672c8 7967 python optional pyfits_1.1b2-2.diff.gz
 720cbf2864d18f51c0fc9aefb83328e0 92768 python optional 
python-pyfits_1.1b2-2_all.deb

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

iD4DBQFEw3MUw3ao2vG823MRAskeAJMEbktv2kAhwX0epDdC/t9thlrAAJ9fnto1
Ubvl0wQrcY0gT4hj4Q601Q==
=38JX
-END PGP SIGNATURE-


Accepted:
pyfits_1.1b2-2.diff.gz
  to pool/main/p/pyfits/pyfits_1.1b2-2.diff.gz
pyfits_1.1b2-2.dsc
  to pool/main/p/pyfits/pyfits_1.1b2-2.dsc
python-pyfits_1.1b2-2_all.deb
  to pool/main/p/pyfits/python-pyfits_1.1b2-2_all.deb


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



Accepted igal 1.4-16 (source all)

2006-07-23 Thread Alexander Zangerl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 23:07:58 +1000
Source: igal
Binary: igal
Architecture: source all
Version: 1.4-16
Distribution: unstable
Urgency: low
Maintainer: Alexander Zangerl [EMAIL PROTECTED]
Changed-By: Alexander Zangerl [EMAIL PROTECTED]
Description: 
 igal   - online image gallery generator
Closes: 378675
Changes: 
 igal (1.4-16) unstable; urgency=low
 .
   * applied Moritz Lenz' patch to make output a bit more
 xmtml-compliant (closes: #378675)
Files: 
 bcc49b18dcdbab72a0b7e6691b051775 551 web optional igal_1.4-16.dsc
 f61f10e7904bc90b9e91f088feb6de41 30053 web optional igal_1.4-16.diff.gz
 26a1e48efb8b9b7e5f6dd746842b1ea9 24992 web optional igal_1.4-16_all.deb

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

iD8DBQFEw3XOpy/2bEK9ZF0RAkdpAJ9gJq5F9sGkeFa/XbnOvY9r//avtgCeNztX
yj4+o+YXYXKqfpkGvFlr3qk=
=+S8a
-END PGP SIGNATURE-


Accepted:
igal_1.4-16.diff.gz
  to pool/main/i/igal/igal_1.4-16.diff.gz
igal_1.4-16.dsc
  to pool/main/i/igal/igal_1.4-16.dsc
igal_1.4-16_all.deb
  to pool/main/i/igal/igal_1.4-16_all.deb


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



Accepted python2.5 2.4.3+2.5b2-3 (source i386 all)

2006-07-23 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 11:45:03 +0200
Source: python2.5
Binary: python2.5-dbg idle-python2.5 python2.5 python2.5-examples 
python2.5-minimal python2.5-doc python2.5-dev
Architecture: source i386 all
Version: 2.4.3+2.5b2-3
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 idle-python2.5 - An IDE for Python (v2.5) using Tkinter
 python2.5  - An interactive high-level object-oriented language (version 2.5)
 python2.5-dbg - Debug Build of the Python Interpreter (version 2.5)
 python2.5-dev - Header files and a static library for Python (v2.5)
 python2.5-examples - Examples for the Python language (v2.5)
 python2.5-minimal - A minimal subset of the Python language (version 2.5)
Changes: 
 python2.5 (2.4.3+2.5b2-3) unstable; urgency=low
 .
   * Disable the testsuite on s390; don't care about minimally configured
 buildd's.
Files: 
 e387e09127e3eac7970fe634263bbd24 1296 python optional 
python2.5_2.4.3+2.5b2-3.dsc
 c65b0cb0dff4b1d61eb25bf6c80af9f7 217305 python optional 
python2.5_2.4.3+2.5b2-3.diff.gz
 c2be9a88785037a2ec608ac8c4534168 642670 python optional 
python2.5-examples_2.4.3+2.5b2-3_all.deb
 357fbaea584c9a1e5311011346e34e83 59658 python optional 
idle-python2.5_2.4.3+2.5b2-3_all.deb
 7c8ddb2dad0e39c904bd755099c34aab 3420554 python optional 
python2.5_2.4.3+2.5b2-3_i386.deb
 6010c72ad7a611f6c78eca157e7fdcf2 780132 python optional 
python2.5-minimal_2.4.3+2.5b2-3_i386.deb
 c13675fb2ca210883c06793353b10bc7 1668152 python optional 
python2.5-dev_2.4.3+2.5b2-3_i386.deb
 5ea3def3a287103b041ded5e9e5e09b2 5948262 python optional 
python2.5-dbg_2.4.3+2.5b2-3_i386.deb

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

iD8DBQFEw3lsStlRaw+TLJwRAslKAJ9v5HwkOg+5zCqVdIXDQZNdhzhH5ACgvFoi
WawMpBQShteX0lw41IteJ4g=
=/JCM
-END PGP SIGNATURE-


Accepted:
idle-python2.5_2.4.3+2.5b2-3_all.deb
  to pool/main/p/python2.5/idle-python2.5_2.4.3+2.5b2-3_all.deb
python2.5-dbg_2.4.3+2.5b2-3_i386.deb
  to pool/main/p/python2.5/python2.5-dbg_2.4.3+2.5b2-3_i386.deb
python2.5-dev_2.4.3+2.5b2-3_i386.deb
  to pool/main/p/python2.5/python2.5-dev_2.4.3+2.5b2-3_i386.deb
python2.5-examples_2.4.3+2.5b2-3_all.deb
  to pool/main/p/python2.5/python2.5-examples_2.4.3+2.5b2-3_all.deb
python2.5-minimal_2.4.3+2.5b2-3_i386.deb
  to pool/main/p/python2.5/python2.5-minimal_2.4.3+2.5b2-3_i386.deb
python2.5_2.4.3+2.5b2-3.diff.gz
  to pool/main/p/python2.5/python2.5_2.4.3+2.5b2-3.diff.gz
python2.5_2.4.3+2.5b2-3.dsc
  to pool/main/p/python2.5/python2.5_2.4.3+2.5b2-3.dsc
python2.5_2.4.3+2.5b2-3_i386.deb
  to pool/main/p/python2.5/python2.5_2.4.3+2.5b2-3_i386.deb


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



Accepted linuxdcpp 0.0.1.cvs20060715-1 (source i386)

2006-07-23 Thread Romain Beauxis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 15 Jul 2006 09:51:51 +0200
Source: linuxdcpp
Binary: linuxdcpp0.691
Architecture: source i386
Version: 0.0.1.cvs20060715-1
Distribution: unstable
Urgency: low
Maintainer: Romain Beauxis [EMAIL PROTECTED]
Changed-By: Romain Beauxis [EMAIL PROTECTED]
Description: 
 linuxdcpp0.691 - Linux port of the famous dc++ client
Changes: 
 linuxdcpp (0.0.1.cvs20060715-1) unstable; urgency=low
 .
   * First release as linuxdcpp0.691
   * Upstream sync to DC++ core version 0.691,
   sources based on previous release are lost.
   * Lot of cleanup (see upstream changelog)
Files: 
 1f0a02712233f07b73bf31fdda5a02b0 686 net optional 
linuxdcpp_0.0.1.cvs20060715-1.dsc
 8e79a6771c3ceaa10d3647ea6588c813 362060 net optional 
linuxdcpp_0.0.1.cvs20060715.orig.tar.gz
 5851d3c4851b59347c9ec6aafabbc589 14034 net optional 
linuxdcpp_0.0.1.cvs20060715-1.diff.gz
 758f21a5b3238b40686c34723ae3af19 1090928 net optional 
linuxdcpp0.691_0.0.1.cvs20060715-1_i386.deb

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

iD8DBQFEv73dIae1O4AJae8RAvo2AJ90ZHfbOaU8rQBUH+0hTkeQZamRBwCaA+Fn
HkyUxVMJunEk3We1HioQae0=
=7W0E
-END PGP SIGNATURE-


Accepted:
linuxdcpp0.691_0.0.1.cvs20060715-1_i386.deb
  to pool/main/l/linuxdcpp/linuxdcpp0.691_0.0.1.cvs20060715-1_i386.deb
linuxdcpp_0.0.1.cvs20060715-1.diff.gz
  to pool/main/l/linuxdcpp/linuxdcpp_0.0.1.cvs20060715-1.diff.gz
linuxdcpp_0.0.1.cvs20060715-1.dsc
  to pool/main/l/linuxdcpp/linuxdcpp_0.0.1.cvs20060715-1.dsc
linuxdcpp_0.0.1.cvs20060715.orig.tar.gz
  to pool/main/l/linuxdcpp/linuxdcpp_0.0.1.cvs20060715.orig.tar.gz


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



Accepted libunit++ 1.2.3-5 (source i386 all)

2006-07-23 Thread martin f. krafft
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 15:02:15 +0100
Source: libunit++
Binary: libunit++-dev libunit++-doc
Architecture: source i386 all
Version: 1.2.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: martin f. krafft [EMAIL PROTECTED]
Description: 
 libunit++-dev - a C++ unit testing framework
 libunit++-doc - a C++ unit testing framework
Closes: 379349
Changes: 
 libunit++ (1.2.3-5) unstable; urgency=low
 .
   * Setting maintainer field to QA group.
   * Got rid of some compile warnings for Wiggy (closes: #379349).
Files: 
 ec60d3c704141700498c210bb888b9e4 600 libs optional libunit++_1.2.3-5.dsc
 0ca71a5b095718d1cd3bc664081ed925 25388 libs optional libunit++_1.2.3-5.diff.gz
 22cf474300ac3a9e57511a82fbd98bac 21214 doc optional 
libunit++-doc_1.2.3-5_all.deb
 cf433ad80598efac8bf02c7553e93a43 37970 libdevel optional 
libunit++-dev_1.2.3-5_i386.deb

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

iD8DBQFEw4MEIgvIgzMMSnURAmnRAKCEAV6jESSktc+KZl2yIAklLu2NogCfSH+1
POm+aOeN/mfsr9MfA+mDS7o=
=pJdZ
-END PGP SIGNATURE-


Accepted:
libunit++-dev_1.2.3-5_i386.deb
  to pool/main/libu/libunit++/libunit++-dev_1.2.3-5_i386.deb
libunit++-doc_1.2.3-5_all.deb
  to pool/main/libu/libunit++/libunit++-doc_1.2.3-5_all.deb
libunit++_1.2.3-5.diff.gz
  to pool/main/libu/libunit++/libunit++_1.2.3-5.diff.gz
libunit++_1.2.3-5.dsc
  to pool/main/libu/libunit++/libunit++_1.2.3-5.dsc


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



Accepted libsyncml 0.4.0+svn20060721-1 (source i386)

2006-07-23 Thread Michael Banck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 21 Jul 2006 18:47:33 +0200
Source: libsyncml
Binary: libsyncml-dev libsyncml0 libsyncml-utils
Architecture: source i386
Version: 0.4.0+svn20060721-1
Distribution: unstable
Urgency: low
Maintainer: Michael Banck [EMAIL PROTECTED]
Changed-By: Michael Banck [EMAIL PROTECTED]
Description: 
 libsyncml-dev - SyncML protocol development library
 libsyncml-utils - SyncML protocol library utilities
 libsyncml0 - SyncML protocol library
Changes: 
 libsyncml (0.4.0+svn20060721-1) unstable; urgency=low
 .
   * Initial Release.
Files: 
 a72484c0781a32f1193fbea0c33cf25d 898 libs optional 
libsyncml_0.4.0+svn20060721-1.dsc
 a956041292d1ba0b46c37b6ed41d0aac 171986 libs optional 
libsyncml_0.4.0+svn20060721.orig.tar.gz
 b695b8b9ab957316a25fbd41d8ecaed8 2417 libs optional 
libsyncml_0.4.0+svn20060721-1.diff.gz
 1426c3c465bb198a69b26c60118ac768 96006 libs optional 
libsyncml0_0.4.0+svn20060721-1_i386.deb
 5795570bb7fe254fbb23dc43597dd407 17404 utils optional 
libsyncml-utils_0.4.0+svn20060721-1_i386.deb
 ffd8c83eafa5cfc38d786fffab92e1ae 140698 libdevel optional 
libsyncml-dev_0.4.0+svn20060721-1_i386.deb

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

iD8DBQFEwRwJmHaJYZ7RAb8RAi3PAKCkaC4ZI8JrzvYWiEJt1YJtJ2SWVwCfSsEP
V0C7tgg0SVg3KYYw/fVFESc=
=QtSv
-END PGP SIGNATURE-


Accepted:
libsyncml-dev_0.4.0+svn20060721-1_i386.deb
  to pool/main/libs/libsyncml/libsyncml-dev_0.4.0+svn20060721-1_i386.deb
libsyncml-utils_0.4.0+svn20060721-1_i386.deb
  to pool/main/libs/libsyncml/libsyncml-utils_0.4.0+svn20060721-1_i386.deb
libsyncml0_0.4.0+svn20060721-1_i386.deb
  to pool/main/libs/libsyncml/libsyncml0_0.4.0+svn20060721-1_i386.deb
libsyncml_0.4.0+svn20060721-1.diff.gz
  to pool/main/libs/libsyncml/libsyncml_0.4.0+svn20060721-1.diff.gz
libsyncml_0.4.0+svn20060721-1.dsc
  to pool/main/libs/libsyncml/libsyncml_0.4.0+svn20060721-1.dsc
libsyncml_0.4.0+svn20060721.orig.tar.gz
  to pool/main/libs/libsyncml/libsyncml_0.4.0+svn20060721.orig.tar.gz


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



Accepted rt2x00 0cvs20060721-1 (source all)

2006-07-23 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 21 Jul 2006 17:27:45 +0200
Source: rt2x00
Binary: rt2x00-source
Architecture: source all
Version: 0cvs20060721-1
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 rt2x00-source - RT2x00 wireless network drivers source
Closes: 362040
Changes: 
 rt2x00 (0cvs20060721-1) unstable; urgency=low
 .
   * Initial Release (closes: bug#362040).
Files: 
 25d415f9a54c07ae6a5c95ac4fbca3af 637 net extra rt2x00_0cvs20060721-1.dsc
 423a866286ccbe9e668b7a72964a4ae7 284729 net extra 
rt2x00_0cvs20060721.orig.tar.gz
 417b9146b08c450279706260d11e489c 4075 net extra rt2x00_0cvs20060721-1.diff.gz
 b8b67f2e765bd7df02c9516466293c8c 294684 net extra 
rt2x00-source_0cvs20060721-1_all.deb

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

iD8DBQFEwQcsw3ao2vG823MRAt8rAJ9wU8ov69GeG5GFIDl7CmZSuAA5YQCffVjU
WE1vvHQKjMdXFMTQydvVJ8Y=
=x91E
-END PGP SIGNATURE-


Accepted:
rt2x00-source_0cvs20060721-1_all.deb
  to pool/main/r/rt2x00/rt2x00-source_0cvs20060721-1_all.deb
rt2x00_0cvs20060721-1.diff.gz
  to pool/main/r/rt2x00/rt2x00_0cvs20060721-1.diff.gz
rt2x00_0cvs20060721-1.dsc
  to pool/main/r/rt2x00/rt2x00_0cvs20060721-1.dsc
rt2x00_0cvs20060721.orig.tar.gz
  to pool/main/r/rt2x00/rt2x00_0cvs20060721.orig.tar.gz


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



Accepted dact 0.8.41-2 (source i386)

2006-07-23 Thread Tommaso Moroni
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 15:38:00 +0200
Source: dact
Binary: dact
Architecture: source i386
Version: 0.8.41-2
Distribution: unstable
Urgency: low
Maintainer: Tommaso Moroni [EMAIL PROTECTED]
Changed-By: Tommaso Moroni [EMAIL PROTECTED]
Description: 
 dact   - Multi-algorithm compression
Closes: 378754
Changes: 
 dact (0.8.41-2) unstable; urgency=low
 .
   * Disabled dact modules generation and removed module_dir line in
 dact.conf (via a dpatch). Closes: #378754
Files: 
 c2d8f22a444ac6d9af76297bdce4b0ba 614 utils optional dact_0.8.41-2.dsc
 b39adc6f8b72c63d2070db0a3f161814 3562 utils optional dact_0.8.41-2.diff.gz
 f43e39df49b54c66babd0ca79be62a79 106430 utils optional dact_0.8.41-2_i386.deb

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

iD8DBQFEw372A1c4KVYj/EURAiXYAKCiUVRXwat1WsTE8yLmb1/ykOAxkQCgoLuA
Wbt2PccGW0ewYmyrHNhIuok=
=wPTo
-END PGP SIGNATURE-


Accepted:
dact_0.8.41-2.diff.gz
  to pool/main/d/dact/dact_0.8.41-2.diff.gz
dact_0.8.41-2.dsc
  to pool/main/d/dact/dact_0.8.41-2.dsc
dact_0.8.41-2_i386.deb
  to pool/main/d/dact/dact_0.8.41-2_i386.deb


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



Accepted zeroc-ice-manual 3.1.0-1 (source all)

2006-07-23 Thread Francisco Moya
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 13 Jul 2006 19:33:58 +0200
Source: zeroc-ice-manual
Binary: zeroc-ice-manual
Architecture: source all
Version: 3.1.0-1
Distribution: unstable
Urgency: low
Maintainer: Francisco Moya [EMAIL PROTECTED]
Changed-By: Francisco Moya [EMAIL PROTECTED]
Description: 
 zeroc-ice-manual - ZeroC Ice PDF Documentation
Changes: 
 zeroc-ice-manual (3.1.0-1) unstable; urgency=low
 .
   * New upstream release.
   * Now licensed under Creative Commons Attribution-NoDerivs 2.5
Files: 
 1c327c62244c6aab98130fdb30d08fb8 630 non-free/doc optional 
zeroc-ice-manual_3.1.0-1.dsc
 addcac5220ff46dc2c0382d7ad19115f 5692644 non-free/doc optional 
zeroc-ice-manual_3.1.0.orig.tar.gz
 2d199b8b2efbdcd253a7c37066be051c 5630 non-free/doc optional 
zeroc-ice-manual_3.1.0-1.diff.gz
 a2104785a43e7da16e79402683edcd05 5629176 non-free/doc optional 
zeroc-ice-manual_3.1.0-1_all.deb
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFEwTZuOaI3yygJ5hoRAmISAJ9/h8lLNpswKkYRM3L7Z1agv2uPsQCgq2eW
NEIhkL6Wc+EnZhC0ofRLV2M=
=/+ys
-END PGP SIGNATURE-


Accepted:
zeroc-ice-manual_3.1.0-1.diff.gz
  to pool/non-free/z/zeroc-ice-manual/zeroc-ice-manual_3.1.0-1.diff.gz
zeroc-ice-manual_3.1.0-1.dsc
  to pool/non-free/z/zeroc-ice-manual/zeroc-ice-manual_3.1.0-1.dsc
zeroc-ice-manual_3.1.0-1_all.deb
  to pool/non-free/z/zeroc-ice-manual/zeroc-ice-manual_3.1.0-1_all.deb
zeroc-ice-manual_3.1.0.orig.tar.gz
  to pool/non-free/z/zeroc-ice-manual/zeroc-ice-manual_3.1.0.orig.tar.gz


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



Accepted libnet-ldap-server-perl 0.3-2 (source all)

2006-07-23 Thread Matej Vela
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 15:08:06 +0200
Source: libnet-ldap-server-perl
Binary: libnet-ldap-server-perl
Architecture: source all
Version: 0.3-2
Distribution: unstable
Urgency: low
Maintainer: Matej Vela [EMAIL PROTECTED]
Changed-By: Matej Vela [EMAIL PROTECTED]
Description: 
 libnet-ldap-server-perl - LDAP server-side protocol handling in Perl
Changes: 
 libnet-ldap-server-perl (0.3-2) unstable; urgency=low
 .
   * Build depend on libnet-ldap-perl, libconvert-asn1-perl to avoid
 failing tests.
Files: 
 9dc37d7826382f82132b16c0dc1e5c95 687 perl extra 
libnet-ldap-server-perl_0.3-2.dsc
 bc3647135b887ad934fe7cf8b5fda51d 1235 perl extra 
libnet-ldap-server-perl_0.3-2.diff.gz
 dd093854b2417c61e7d55716ad17ca0c 10176 perl extra 
libnet-ldap-server-perl_0.3-2_all.deb

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

iD8DBQFEwiNkxBYivKllgY8RAj9aAJ46UkPzfujBvjEaSQbtKeK9QjU2JACdGubP
/kgvZibYBGuugiABHUXW+QE=
=w6qe
-END PGP SIGNATURE-


Accepted:
libnet-ldap-server-perl_0.3-2.diff.gz
  to 
pool/main/libn/libnet-ldap-server-perl/libnet-ldap-server-perl_0.3-2.diff.gz
libnet-ldap-server-perl_0.3-2.dsc
  to pool/main/libn/libnet-ldap-server-perl/libnet-ldap-server-perl_0.3-2.dsc
libnet-ldap-server-perl_0.3-2_all.deb
  to 
pool/main/libn/libnet-ldap-server-perl/libnet-ldap-server-perl_0.3-2_all.deb


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



Accepted digikam-doc 0.8.2-1 (source all)

2006-07-23 Thread Debian KDE Extras Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 10:17:49 +0100
Source: digikam-doc
Binary: digikam-doc
Architecture: source all
Version: 0.8.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team [EMAIL PROTECTED]
Changed-By: Debian KDE Extras Team [EMAIL PROTECTED]
Description: 
 digikam-doc - handbook for digikam and showfoto in several languages
Changes: 
 digikam-doc (0.8.2-1) unstable; urgency=low
 .
   * New upstream release.
 .
   [ Achim Bohnet ]
   * debian/control:
 - Section: Move to main repository. Debian decided that GFDL without
   unmodifiable sections are free
 - Long description: mention new the languages: French, German, Spanish
   and Polish. Thx to all the translators!
 - Update standards-version from 3.6.2 to 3.7.2. No changes necessary.
   * debian/copyright updated: add (c) notice of digiKam developers team
 .
   [ Mark Purcell ]
   * Lintian fixes: build-depends-indep-should-be-build-depends
   * Lintian fixes: description-contains-tabs
Files: 
 88eee93657bd4b0e9a856dfca1fb414d 730 graphics optional digikam-doc_0.8.2-1.dsc
 869cb760570ec8bb1d0b575cfa02201a 40791312 graphics optional 
digikam-doc_0.8.2.orig.tar.gz
 140ac5e6bad6201ffa262a965fb9e689 8456 graphics optional 
digikam-doc_0.8.2-1.diff.gz
 35b86e3480ad255a104c5c9927aef9a2 40835918 graphics optional 
digikam-doc_0.8.2-1_all.deb

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

iD8DBQFEwe+XoCzanz0IthIRAugJAJ0WAAv10BDbqiwz/RX0BAKMLRQuWgCeLkzx
30Glj6tcTj4GYkE9LaqpMwM=
=whv6
-END PGP SIGNATURE-


Accepted:
digikam-doc_0.8.2-1.diff.gz
  to pool/main/d/digikam-doc/digikam-doc_0.8.2-1.diff.gz
digikam-doc_0.8.2-1.dsc
  to pool/main/d/digikam-doc/digikam-doc_0.8.2-1.dsc
digikam-doc_0.8.2-1_all.deb
  to pool/main/d/digikam-doc/digikam-doc_0.8.2-1_all.deb
digikam-doc_0.8.2.orig.tar.gz
  to pool/main/d/digikam-doc/digikam-doc_0.8.2.orig.tar.gz


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



Accepted ekg2 20060723+1442-1 (source i386)

2006-07-23 Thread Marcin Owsiany
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 14:42:38 +0100
Source: ekg2
Binary: ekg2
Architecture: source i386
Version: 20060723+1442-1
Distribution: experimental
Urgency: low
Maintainer: Marcin Owsiany [EMAIL PROTECTED]
Changed-By: Marcin Owsiany [EMAIL PROTECTED]
Description: 
 ekg2   - instant messenger and IRC client for UNIX systems
Closes: 379421
Changes: 
 ekg2 (20060723+1442-1) experimental; urgency=low
 .
   * New snapshot from upstream
   * Changed build-dependancy on libgnutls11-dev to libgnutls-dev (since the
 former is about to be removed) which Closes: #379421
Files: 
 a9559dc20d70b6e7a6920d01c19708ad 939 net optional ekg2_20060723+1442-1.dsc
 362c644bbbe0c2253a616fe3dce23103 685812 net optional 
ekg2_20060723+1442.orig.tar.gz
 a4dda2d2713ee032be5df177aeb7f3a7 29446 net optional 
ekg2_20060723+1442-1.diff.gz
 0cfa2622128299f3831f9f8d6edc91ff 1131518 net optional 
ekg2_20060723+1442-1_i386.deb

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

iD8DBQFEw4MGOg2KoGD0EhYRAvaYAJsF6PW4CMA65NGLvhhfPYK7tma61wCfSfGz
kKVBXjdgvPfZ55+eml2+u0g=
=q1sC
-END PGP SIGNATURE-


Accepted:
ekg2_20060723+1442-1.diff.gz
  to pool/main/e/ekg2/ekg2_20060723+1442-1.diff.gz
ekg2_20060723+1442-1.dsc
  to pool/main/e/ekg2/ekg2_20060723+1442-1.dsc
ekg2_20060723+1442-1_i386.deb
  to pool/main/e/ekg2/ekg2_20060723+1442-1_i386.deb
ekg2_20060723+1442.orig.tar.gz
  to pool/main/e/ekg2/ekg2_20060723+1442.orig.tar.gz


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



Accepted libnet-ldap-server-perl 0.3-1 (source all)

2006-07-23 Thread Matej Vela
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 14:51:12 +0200
Source: libnet-ldap-server-perl
Binary: libnet-ldap-server-perl
Architecture: source all
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Matej Vela [EMAIL PROTECTED]
Changed-By: Matej Vela [EMAIL PROTECTED]
Description: 
 libnet-ldap-server-perl - LDAP server-side protocol handling in Perl
Closes: 379213
Changes: 
 libnet-ldap-server-perl (0.3-1) unstable; urgency=low
 .
   * Initial release.  Closes: #379213.
Files: 
 e0c6a3442ef75c8412a45c3e70ab44eb 647 perl extra 
libnet-ldap-server-perl_0.3-1.dsc
 d94c7fea934008a3b42d4da81a9df51e 5661 perl extra 
libnet-ldap-server-perl_0.3.orig.tar.gz
 2202628d20de207bf93c269b6947f5e9 1189 perl extra 
libnet-ldap-server-perl_0.3-1.diff.gz
 3a48f5543c0d977cb1371480ddad8de4 10102 perl extra 
libnet-ldap-server-perl_0.3-1_all.deb

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

iD8DBQFEwh/bxBYivKllgY8RAuFYAJ4rMmx4Ce/l8D3SvK9O7lwINoJNLwCgtr2G
ZVR11VxsRsvZFoCiUepgzus=
=b8KI
-END PGP SIGNATURE-


Accepted:
libnet-ldap-server-perl_0.3-1.diff.gz
  to 
pool/main/libn/libnet-ldap-server-perl/libnet-ldap-server-perl_0.3-1.diff.gz
libnet-ldap-server-perl_0.3-1.dsc
  to pool/main/libn/libnet-ldap-server-perl/libnet-ldap-server-perl_0.3-1.dsc
libnet-ldap-server-perl_0.3-1_all.deb
  to 
pool/main/libn/libnet-ldap-server-perl/libnet-ldap-server-perl_0.3-1_all.deb
libnet-ldap-server-perl_0.3.orig.tar.gz
  to 
pool/main/libn/libnet-ldap-server-perl/libnet-ldap-server-perl_0.3.orig.tar.gz


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



Accepted transfig 1:3.2.5-alpha7-2 (source amd64)

2006-07-23 Thread Roland Rosenfeld
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 15:49:52 +0200
Source: transfig
Binary: transfig
Architecture: source amd64
Version: 1:3.2.5-alpha7-2
Distribution: unstable
Urgency: low
Maintainer: Roland Rosenfeld [EMAIL PROTECTED]
Changed-By: Roland Rosenfeld [EMAIL PROTECTED]
Description: 
 transfig   - Utilities for converting XFig figure files
Closes: 343139 348034
Changes: 
 transfig (1:3.2.5-alpha7-2) unstable; urgency=low
 .
   * Upgrade to Standards-Version 3.7.2 (no changes).
   * Upgrade to debhelper = 5.
   * Migrate to dpatch build process.
   * Build-Depends on xpm-dev = 1:3.5.4.2 now and change include path
 accordingly (/usr/include/X11 instead of /usr/X11R6/include).
   * 08_genps_oldpatterns.dpatch: use genps.oldpatterns.[hc] instead of the
 new one again, because the new one creates invisible patterns in
 PS/EPS output (Closes: #348034).
   * 09_maxfontsize.dpatch: For fonts =42pt use the given font size in TeX
 instead of restricting this to 42pt. This allows to create posters
 using \usepackage{type1cm} (Closes: #343139).
   * Add debian/watch.
Files: 
 ea28d29063a954d097960d03a270ff96 695 graphics optional 
transfig_3.2.5-alpha7-2.dsc
 887b3506a273c57d6a68fe1ac678ae63 19026 graphics optional 
transfig_3.2.5-alpha7-2.diff.gz
 4d0a6106689b0a2d5466306237ed1fe8 368610 graphics optional 
transfig_3.2.5-alpha7-2_amd64.deb

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

iD8DBQFEw4DzO7/Pd72LBQ0RAuHPAJ0a2t6U41JG+/MFT1i2Emrg6HompQCfXQOM
ref7pt66Q/d62ZJUc2FoUOw=
=rjpO
-END PGP SIGNATURE-


Accepted:
transfig_3.2.5-alpha7-2.diff.gz
  to pool/main/t/transfig/transfig_3.2.5-alpha7-2.diff.gz
transfig_3.2.5-alpha7-2.dsc
  to pool/main/t/transfig/transfig_3.2.5-alpha7-2.dsc
transfig_3.2.5-alpha7-2_amd64.deb
  to pool/main/t/transfig/transfig_3.2.5-alpha7-2_amd64.deb


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



Accepted console-setup 1.7 (source all)

2006-07-23 Thread Anton Zinoviev
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 23:00:00 +0300
Source: console-setup
Binary: console-setup-amiga-ekmap console-setup-udeb console-setup 
console-setup-macintoshold-ekmap console-setup-fonts-udeb bdf2psf 
console-setup-mini console-setup-sun5-ekmap console-setup-pc-ekmap 
console-setup-sun4-ekmap console-setup-ataritt-ekmap
Architecture: source all
Version: 1.7
Distribution: unstable
Urgency: low
Maintainer: Console utilities maintainers [EMAIL PROTECTED]
Changed-By: Anton Zinoviev [EMAIL PROTECTED]
Description: 
 bdf2psf- Font converter to generate console fonts from BDF source fonts
 console-setup - Setup the font and the keyboard on the console
 console-setup-amiga-ekmap - Encoded keyboard layouts for amiga keyboards (udeb)
 console-setup-ataritt-ekmap - Encoded keyboard layouts for ataritt keyboards 
(udeb)
 console-setup-fonts-udeb - Console fonts for Debian Installer (udeb)
 console-setup-macintoshold-ekmap - Encoded keyboard layouts for macintoshold 
keyboards (udeb)
 console-setup-mini - An experimental micro version of console-setup package
 console-setup-pc-ekmap - Encoded keyboard layouts for pc keyboards (udeb)
 console-setup-sun4-ekmap - Encoded keyboard layouts for sun4 keyboards (udeb)
 console-setup-sun5-ekmap - Encoded keyboard layouts for sun5 keyboards (udeb)
 console-setup-udeb - Configure the keyboard (udeb)
Closes: 359677 359775 360333 374765
Changes: 
 console-setup (1.7) unstable; urgency=low
 .
   [ Christian Perrier ]
   * Updated French translation
   * Added Czech translation. Closes: #360333
 .
   [ Anton Zinoviev ]
   * Keyboard/ckbcomp: include /usr/share/X11/xkb to the list of
 directories for keyboard data.  The data from /etc/console-setup/ckb
 are still the default.
   * Sync the Keyboard/ckb data with the data in xkb-data package, version
 0.8-5.  Update ckbcomp with two new keysyms (Cyrillic_(CHE|KA)_vertbar).
   * Do not package the keyboard data.  Depend on xkb-data.  Thanks to
 Denis Barbier, closes: #359775.
   * Fix a shell syntax error in debian/config.proto that causes
 installation of console-setup to hang on powerpc.  Thanks to Colin
 Watson, closes: #374765.
   * ckbcomp: new option -compact to generate compact keymaps.
   * New experimental package console-setup-mini and udebs for d-i.
   * Correct a typo in the Bulgarian translation.  Thanks to Yavor Doganov,
 closes: #359677.
   * Updated Standards-Version: 3.7.2
Files: 
 db2b43a33fb402f2c3135f13db3bfb77 939 utils optional console-setup_1.7.dsc
 e9b3ba1dbdaa13050e7f8c7bc0633794 2214519 utils optional 
console-setup_1.7.tar.gz
 2018975e901de3950d8255375f35c787 408806 utils optional 
console-setup_1.7_all.deb
 e833627da6aac705a1626a1a7365e033 452386 utils extra 
console-setup-mini_1.7_all.deb
 41e3d82e6a4cda6abc0bb1f380469951 29644 debian-installer extra 
console-setup-udeb_1.7_all.udeb
 77c51957c8c9a370aeffab75a9d4c966 62734 debian-installer extra 
console-setup-amiga-ekmap_1.7_all.udeb
 70a6cab5d9f06358a85601fed60cf5f1 61722 debian-installer extra 
console-setup-ataritt-ekmap_1.7_all.udeb
 da06604cbb8c56ec6e4de40f1994bfc9 54326 debian-installer extra 
console-setup-macintoshold-ekmap_1.7_all.udeb
 9a6c69224caaf5f71fcf195412594e15 63086 debian-installer extra 
console-setup-pc-ekmap_1.7_all.udeb
 a23c3c89775e9bcc3614ce101c2b7a04 62378 debian-installer extra 
console-setup-sun4-ekmap_1.7_all.udeb
 73e426c42915e10d03991092439827c8 62356 debian-installer extra 
console-setup-sun5-ekmap_1.7_all.udeb
 3d61238fda6bfc85027ab1923d772587 50476 debian-installer extra 
console-setup-fonts-udeb_1.7_all.udeb
 fea1cafd7227c37447d96fc07c5263a5 29884 utils optional bdf2psf_1.7_all.deb
Package-Type: udeb

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

iD8DBQFEwonmJP1eZJv0KwcRAl2iAJ0Q7AaWnmlwMDxHMuD/whiTc++oVQCbBWt4
mBRA7LI/4j+LtXPV7+r4k9Q=
=tQ16
-END PGP SIGNATURE-


Accepted:
bdf2psf_1.7_all.deb
  to pool/main/c/console-setup/bdf2psf_1.7_all.deb
console-setup-amiga-ekmap_1.7_all.udeb
  to pool/main/c/console-setup/console-setup-amiga-ekmap_1.7_all.udeb
console-setup-ataritt-ekmap_1.7_all.udeb
  to pool/main/c/console-setup/console-setup-ataritt-ekmap_1.7_all.udeb
console-setup-fonts-udeb_1.7_all.udeb
  to pool/main/c/console-setup/console-setup-fonts-udeb_1.7_all.udeb
console-setup-macintoshold-ekmap_1.7_all.udeb
  to pool/main/c/console-setup/console-setup-macintoshold-ekmap_1.7_all.udeb
console-setup-mini_1.7_all.deb
  to pool/main/c/console-setup/console-setup-mini_1.7_all.deb
console-setup-pc-ekmap_1.7_all.udeb
  to pool/main/c/console-setup/console-setup-pc-ekmap_1.7_all.udeb
console-setup-sun4-ekmap_1.7_all.udeb
  to pool/main/c/console-setup/console-setup-sun4-ekmap_1.7_all.udeb
console-setup-sun5-ekmap_1.7_all.udeb
  to pool/main/c/console-setup/console-setup-sun5-ekmap_1.7_all.udeb
console-setup-udeb_1.7_all.udeb
  to pool/main/c/console-setup/console-setup-udeb_1.7_all.udeb
console-setup_1.7.dsc
  to 

Accepted chameleon-cursor-theme 0.5-1 (source all)

2006-07-23 Thread Adam Borowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 18 Jul 2006 19:59:36 +0200
Source: chameleon-cursor-theme
Binary: chameleon-cursor-theme
Architecture: source all
Version: 0.5-1
Distribution: unstable
Urgency: low
Maintainer: Adam Borowski [EMAIL PROTECTED]
Changed-By: Adam Borowski [EMAIL PROTECTED]
Description: 
 chameleon-cursor-theme - a modern but not gaudy X11 mouse theme
Closes: 378746
Changes: 
 chameleon-cursor-theme (0.5-1) unstable; urgency=low
 .
   * Initial release. (Closes: #378746)
Files: 
 cf3e14fb3ab6965dde57a1f8ea9f6778 653 x11 optional 
chameleon-cursor-theme_0.5-1.dsc
 097566c74c1017a1b74b7d0ee4880078 5113656 x11 optional 
chameleon-cursor-theme_0.5.orig.tar.gz
 742dd6766884164cc3dc21f4902d96e6 5102 x11 optional 
chameleon-cursor-theme_0.5-1.diff.gz
 f08804d98e606ac255dd560023ea9e2c 1389714 x11 optional 
chameleon-cursor-theme_0.5-1_all.deb

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

iD8DBQFEwm+hCV53xXnMZYYRAot7AKDrbeJFCY1BStAnXpde41cbN578YwCeJDoP
2a/ggaJtyZAUlHK884KbY60=
=yZLn
-END PGP SIGNATURE-


Accepted:
chameleon-cursor-theme_0.5-1.diff.gz
  to pool/main/c/chameleon-cursor-theme/chameleon-cursor-theme_0.5-1.diff.gz
chameleon-cursor-theme_0.5-1.dsc
  to pool/main/c/chameleon-cursor-theme/chameleon-cursor-theme_0.5-1.dsc
chameleon-cursor-theme_0.5-1_all.deb
  to pool/main/c/chameleon-cursor-theme/chameleon-cursor-theme_0.5-1_all.deb
chameleon-cursor-theme_0.5.orig.tar.gz
  to pool/main/c/chameleon-cursor-theme/chameleon-cursor-theme_0.5.orig.tar.gz


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



Accepted synopsis 0.8.0-2 (source i386 all)

2006-07-23 Thread Andreas Fester
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 19:53:51 +0200
Source: synopsis
Binary: synopsis synopsis-doc
Architecture: source i386 all
Version: 0.8.0-2
Distribution: unstable
Urgency: low
Maintainer: Andreas Fester [EMAIL PROTECTED]
Changed-By: Andreas Fester [EMAIL PROTECTED]
Description: 
 synopsis   - A Source-code Introspection Tool
 synopsis-doc - Documentation for synopsis
Closes: 248470 280722
Changes: 
 synopsis (0.8.0-2) unstable; urgency=low
 .
   * Re-packaged .orig.tar.gz file to make it DFSG compliant:
 Removed doc/Manual which has non-free licence, added
 get-orig-source target in debian/rules to create the
 DFSG compliant orig.tar.gz
   * Adjusted package to new python policy
   * Added patch descriptions in debian/patches/*
 .
 synopsis (0.8.0-1) unstable; urgency=low
 .
   * New maintainer (Closes: #280722)
   * New upstream version (Closes: #248470)
   * Removed separate package for synopsis-formatter-dot since
 graphviz is meanwhile in main section
   * Added synopsis-doc package for documentation
   * Added dpatch framework
   * Changed Standards-Version to 3.7.2
Files: 
 9884efc33a3dd626ae8d70377593a7cc 699 devel optional synopsis_0.8.0-2.dsc
 87d79ff0cd921c3822975984be45cb76 2161833 devel optional 
synopsis_0.8.0.orig.tar.gz
 c7f3765b5c8f3324dd968def83fab31c 7364 devel optional synopsis_0.8.0-2.diff.gz
 bb9cd19caa45fb4e37bc4eb9a346e570 391614 doc optional 
synopsis-doc_0.8.0-2_all.deb
 d184287f9bc2d14c7ee3889f3b153287 859092 devel optional 
synopsis_0.8.0-2_i386.deb

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

iD8DBQFEwyRMIgvIgzMMSnURAl9dAKCuPeyPrpf/bMQ+6yMI1+sjLZ8dugCffhQ4
MQXR6pHitKeisptTfL826cs=
=g3wi
-END PGP SIGNATURE-


Accepted:
synopsis-doc_0.8.0-2_all.deb
  to pool/main/s/synopsis/synopsis-doc_0.8.0-2_all.deb
synopsis_0.8.0-2.diff.gz
  to pool/main/s/synopsis/synopsis_0.8.0-2.diff.gz
synopsis_0.8.0-2.dsc
  to pool/main/s/synopsis/synopsis_0.8.0-2.dsc
synopsis_0.8.0-2_i386.deb
  to pool/main/s/synopsis/synopsis_0.8.0-2_i386.deb
synopsis_0.8.0.orig.tar.gz
  to pool/main/s/synopsis/synopsis_0.8.0.orig.tar.gz


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



Accepted linux-ntfs 1.13.1-1 (source i386)

2006-07-23 Thread David Martínez Moreno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 04:33:36 +0200
Source: linux-ntfs
Binary: libntfs9 ntfsprogs-udeb ntfsprogs libntfs-dev libntfs-gnomevfs
Architecture: source i386
Version: 1.13.1-1
Distribution: unstable
Urgency: low
Maintainer: David Martínez Moreno [EMAIL PROTECTED]
Changed-By: David Martínez Moreno [EMAIL PROTECTED]
Description: 
 libntfs-dev - library that provides common NTFS access functions (development f
 libntfs-gnomevfs - NTFS GNOME virtual filesystem module
 libntfs9   - library that provides common NTFS access functions
 ntfsprogs  - tools for doing neat things in NTFS partitions from Linux
 ntfsprogs-udeb - Tools for doing neat things in NTFS partitions from Linux - 
udeb (udeb)
Closes: 356217 357906 367508 369106
Changes: 
 linux-ntfs (1.13.1-1) unstable; urgency=low
 .
   * New upstream release (closes: #367508):
 - Fixed lots of endianness bugs.
 - ntfscmp is now built as a regular tool (and thus included in this
   package).
 - ntfsresize checks and reports bad sectors before cluster allocation
   check.
 - mkntfs optionally creates NTFS version 3.0 (W2K) or 3.1 (XP, W2K3,
   Vista).
 - ntfsmount now support an 'streams_interface=' option to select named data
   streams access interface.  Currently supported interfaces are 'none',
   'windows' and 'xattr'.
 - ntfscat can display named attributes, streams too.
 - Working with regular files no longer needs the --force option, except
   for mkntfs.
 - ntfsclone checks available free space on the destination before
   starting to clone, image or restore.
 - Fix the -u option in ntfsundelete.  Instead of a confusing optional
   parameter, there's a new option -i with a required parameter.
 - mkntfs had a fix for a segfault when volume had more than 2^31 clusters.
 - ntfsmount has FreeBSD support.
 - Implement simple syslog logging handler in ntfsmount.
 - Fix a lot of bugs in attribute resizing code.
 - ntfsclone: the --metadata option will wipe the timestamps in the
   index allocation attributes as well.  This further decreases the
   compressed metadata image size by 10-25% and more importantly it
   eliminates non-interesting ntfscmp differences.
 - ntfsinfo: dump either a minimal (default) or the entire attribute
   header (--verbose) for all attribute types.
 - ntfscmp supports bad cluster list, compares full attribute headers
   for non-resident attributes, and is built by default.
 - Fix bug with renaming directories with names in DOS and WIN32
   namespaces.
 - Lots of various bug fixes.
   * debian/control:
 - Changed URL to the new site (closes: #356217).
 - Added libgnutls-dev ( 1.4.0) to Build-depends in order to enable
   again ntfsdecrypt.
 - Removed completely fake ntfstools package, as it was a dummy one in
   sarge.  Thanks to Stefan Huehner for noticing (closes: #369106).
 - While at it, renamed ntfstools-udeb to ntfsprogs-udeb for consistency.
   Added Provides: ntfstools-udeb, trying to ease transitions.
 - Rename libntfs8 to libntfs9.
 - Upgrade Standards-Version to 3.7.2.0.
 - Rewrote description for ntfsfix, as it has evolved to a general-purpose
   checking tool for NTFS filesystems, that also forces a check on the next
   Windows boot.  Thanks to Szaka for the hint.
 - Added ntfscmp and ntfsdecrypt descriptions.
   * debian/rules:
 - Added --enable-crypto to ./configure parameter line, thus enabling
   building of ntfsdecrypt.  Please read changelog from 1.11.2-1 release
   for learning more about it.
 - Link against libntfs9.
   * Added libntfs.conf to libntfs-gnomevfs package.
   * Moved usr/share/man/man8/libntfs-gnomevfs.8 to libntfs-gnomevfs package.
   * Removed test/runlist-data/CVS/ dir from source.
   * Correct wrong symlink in /sbin/mount.ntfs-fuse.  Thanks, Onur Can CAKMAK.
 Closes: #357906.
Files: 
 9a19922c02fd1dd98bdd735ff083368c 698 otherosfs optional linux-ntfs_1.13.1-1.dsc
 078281394e68f9b248c82484589b7908 870304 otherosfs optional 
linux-ntfs_1.13.1.orig.tar.gz
 84a61f7640734001b6289c1bdb7704ec 11136 otherosfs optional 
linux-ntfs_1.13.1-1.diff.gz
 5b265170ebe99fbe85e88a3bd3510f54 283444 otherosfs optional 
ntfsprogs_1.13.1-1_i386.deb
 a8ecb39942c8339e6f8a1f1c5590d964 114012 debian-installer optional 
ntfsprogs-udeb_1.13.1-1_i386.udeb
 5029c4789cf53f490045fad54c16d42c 51248 libs optional 
libntfs-gnomevfs_1.13.1-1_i386.deb
 c35f9075f48f906796dcc59ef7070457 136120 libs optional 
libntfs9_1.13.1-1_i386.deb
 98525d798a721b0f2b663d7997ea1229 218574 libdevel optional 
libntfs-dev_1.13.1-1_i386.deb
Package-Type: udeb

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

iD8DBQFEwuFOWs/EhA1iABsRAvwwAJ92n7FpfOPnH7O6vgwaaS20t/N4SwCgxVBw
9/ClpFf0R83k7M9nbVZrwgQ=
=PVAS
-END PGP SIGNATURE-


Accepted:
libntfs-dev_1.13.1-1_i386.deb
  to 

Accepted isdnbutton 2.6-970413-15 (source amd64)

2006-07-23 Thread Roland Rosenfeld
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 16:29:28 +0200
Source: isdnbutton
Binary: isdnbutton
Architecture: source amd64
Version: 2.6-970413-15
Distribution: unstable
Urgency: low
Maintainer: Roland Rosenfeld [EMAIL PROTECTED]
Changed-By: Roland Rosenfeld [EMAIL PROTECTED]
Description: 
 isdnbutton - Start and Stop ISDN connections and display status
Changes: 
 isdnbutton (2.6-970413-15) unstable; urgency=low
 .
   * Reduce X build dependencies to a minimum.
   * Do no longer search for X libraries in /usr/X11R6/lib.
   * Use Xaw3d include files now (not the Xaw ones).
   * Upgrade to Standards-Version 3.7.2 (no changes).
   * Upgrade to debhelper = 5.
Files: 
 4c41edcfd7e1b760d94a623d4939d6d3 636 net extra isdnbutton_2.6-970413-15.dsc
 645bc48cbbe572bd4731c56654f1dacf 8870 net extra 
isdnbutton_2.6-970413-15.diff.gz
 06278de7d863ce3db1c484232eb4096c 32230 net extra 
isdnbutton_2.6-970413-15_amd64.deb

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

iD8DBQFEw4kzO7/Pd72LBQ0RAiB+AJ9Hz7zRT+YZKjnfldqpM5SNmMVSlQCfTeoR
eBJFTGGVgX7+RtXbWtYEP+g=
=KCcX
-END PGP SIGNATURE-


Accepted:
isdnbutton_2.6-970413-15.diff.gz
  to pool/main/i/isdnbutton/isdnbutton_2.6-970413-15.diff.gz
isdnbutton_2.6-970413-15.dsc
  to pool/main/i/isdnbutton/isdnbutton_2.6-970413-15.dsc
isdnbutton_2.6-970413-15_amd64.deb
  to pool/main/i/isdnbutton/isdnbutton_2.6-970413-15_amd64.deb


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



Accepted liferea 1.0.18-1 (source all i386)

2006-07-23 Thread Franz Pletz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 03:56:11 +0200
Source: liferea
Binary: liferea-xulrunner liferea-mozilla liferea-gtkhtml liferea
Architecture: source all i386
Version: 1.0.18-1
Distribution: unstable
Urgency: low
Maintainer: Franz Pletz [EMAIL PROTECTED]
Changed-By: Franz Pletz [EMAIL PROTECTED]
Description: 
 liferea- feed aggregator for GNOME
 liferea-gtkhtml - gtkhtml-based rendering library for Liferea
 liferea-mozilla - transitional dummy package
 liferea-xulrunner - xulrunner-based rendering library for Liferea
Closes: 370216 378645
Changes: 
 liferea (1.0.18-1) unstable; urgency=low
 .
   * New upstream release. (Closes: #378645)
   * Ensure clean upgrade path for users of liferea-mozilla by reintroducing
 liferea-mozilla as a transitional package which depends on
 liferea-xulrunner. (Closes: #370216)
   * Added debian/docs.
Files: 
 4fa32943796f8f934d13da17159dc27d 698 gnome optional liferea_1.0.18-1.dsc
 1bedab466eee66e6063e55492d98c37e 1577667 gnome optional 
liferea_1.0.18.orig.tar.gz
 91b1b4cc45c8f14948586531a72e13c9 8195 gnome optional liferea_1.0.18-1.diff.gz
 5e7aecdbb94df61b4e26d584ad65921b 762770 gnome optional 
liferea_1.0.18-1_i386.deb
 184062fddfd7f9181c9419584231b1dd 25360 gnome optional 
liferea-gtkhtml_1.0.18-1_i386.deb
 4a3970b7f3471c14cc24083e2f814cd3 26192 gnome optional 
liferea-xulrunner_1.0.18-1_i386.deb
 2fda7bfd1605800bfee7ac7308474a59 16860 gnome optional 
liferea-mozilla_1.0.18-1_all.deb

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

iD8DBQFEw3zxCV53xXnMZYYRAqC+AKDLGsMZacRkJeVtlMZoKLO83ltiMgCeLrlj
h1guHTgVyX7e8Aes4LbrMbk=
=hK+T
-END PGP SIGNATURE-


Accepted:
liferea-gtkhtml_1.0.18-1_i386.deb
  to pool/main/l/liferea/liferea-gtkhtml_1.0.18-1_i386.deb
liferea-mozilla_1.0.18-1_all.deb
  to pool/main/l/liferea/liferea-mozilla_1.0.18-1_all.deb
liferea-xulrunner_1.0.18-1_i386.deb
  to pool/main/l/liferea/liferea-xulrunner_1.0.18-1_i386.deb
liferea_1.0.18-1.diff.gz
  to pool/main/l/liferea/liferea_1.0.18-1.diff.gz
liferea_1.0.18-1.dsc
  to pool/main/l/liferea/liferea_1.0.18-1.dsc
liferea_1.0.18-1_i386.deb
  to pool/main/l/liferea/liferea_1.0.18-1_i386.deb
liferea_1.0.18.orig.tar.gz
  to pool/main/l/liferea/liferea_1.0.18.orig.tar.gz


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



Accepted sylpheed-claws-gtk2-extra-plugins 2.3.0-1 (source i386 all)

2006-07-23 Thread Ricardo Mones
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 15 Jun 2006 07:40:16 +0200
Source: sylpheed-claws-gtk2-extra-plugins
Binary: sylpheed-claws-gtk2-attach-remover sylpheed-claws-gtk2-smime-plugin 
sylpheed-claws-gtk2-mailmbox-plugin sylpheed-claws-gtk2-maildir-plugin 
sylpheed-claws-gtk2-acpi-notifier sylpheed-claws-gtk2-newmail-plugin 
sylpheed-claws-gtk2-vcalendar-plugin sylpheed-claws-gtk2-extra-plugins 
sylpheed-claws-gtk2-etpan-privacy sylpheed-claws-gtk2-fetchinfo-plugin 
sylpheed-claws-gtk2-cache-saver sylpheed-claws-gtk2-html2-viewer 
sylpheed-claws-gtk2-perl-filter sylpheed-claws-gtk2-feeds-reader 
sylpheed-claws-gtk2-multi-notifier
Architecture: source i386 all
Version: 2.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Ricardo Mones [EMAIL PROTECTED]
Changed-By: Ricardo Mones [EMAIL PROTECTED]
Description: 
 sylpheed-claws-gtk2-acpi-notifier - Laptop's Mail LED control for 
Sylpheed-Claws GTK2
 sylpheed-claws-gtk2-attach-remover - Mail attachment remover for 
Sylpheed-Claws GTK2
 sylpheed-claws-gtk2-cache-saver - Internal cache saver for Sylpheed-Claws GTK2 
mailer
 sylpheed-claws-gtk2-etpan-privacy - Privacy handling plugin for Sylpheed-Claws 
GTK2 mailer
 sylpheed-claws-gtk2-extra-plugins - Extra plugins collection for 
Sylpheed-Claws GTK2 mailer
 sylpheed-claws-gtk2-feeds-reader - Feeds (RSS/Atom) reader plugin for 
Sylpheed-Claws GTK2
 sylpheed-claws-gtk2-fetchinfo-plugin - X-FETCH headers adder for 
Sylpheed-Claws GTK2 mailer
 sylpheed-claws-gtk2-html2-viewer - HTML mail/attachment viewer for 
Sylpheed-Claws GTK2 mailer
 sylpheed-claws-gtk2-maildir-plugin - Maildir++ support plugin for the 
Sylpheed-Claws GTK2 mailer
 sylpheed-claws-gtk2-mailmbox-plugin - mbox format mailboxes handler for 
Sylpheed-Claws GTK2 mailer
 sylpheed-claws-gtk2-multi-notifier - A variety of new mail notifiers for 
Sylpheed-Claws GTK2
 sylpheed-claws-gtk2-newmail-plugin - New mail logger plugin for Sylpheed-Claws 
GTK2 mailer
 sylpheed-claws-gtk2-perl-filter - Message filtering plugin using perl for 
Sylpheed-Claws GTK2
 sylpheed-claws-gtk2-smime-plugin - S/MIME signature/encryption handling for 
Sylpheed-Claws GTK2
 sylpheed-claws-gtk2-vcalendar-plugin - vCalendar message handling plugin for 
Sylpheed-Claws GTK2
Closes: 344012
Changes: 
 sylpheed-claws-gtk2-extra-plugins (2.3.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #344012)
Files: 
 3cff2c0ebb31a0668c9c5698702be790 1476 mail optional 
sylpheed-claws-gtk2-extra-plugins_2.3.0-1.dsc
 b8c66b8d7965e1b72df409b2bf116072 5561917 mail optional 
sylpheed-claws-gtk2-extra-plugins_2.3.0.orig.tar.gz
 1f1bad62a87112f3c814b3bf62db147f 22105 mail optional 
sylpheed-claws-gtk2-extra-plugins_2.3.0-1.diff.gz
 cbd6e7bdb00c6265041ea14a86b52868 5936 mail optional 
sylpheed-claws-gtk2-extra-plugins_2.3.0-1_all.deb
 a8a687c4f25e846c8ac15e06db4d1ae8 169740 mail optional 
sylpheed-claws-gtk2-vcalendar-plugin_2.3.0-1_i386.deb
 08317df767ced853b2363d9e8bd8f6d9 13046 mail optional 
sylpheed-claws-gtk2-etpan-privacy_2.3.0-1_i386.deb
 1724b0139715437ad44eb5cc37db28e4 44098 mail optional 
sylpheed-claws-gtk2-perl-filter_2.3.0-1_i386.deb
 b4c60018141bcc0d3fdc4b5ed6a5be80 59046 mail optional 
sylpheed-claws-gtk2-feeds-reader_2.3.0-1_i386.deb
 ce39d287a748f9be0b64663b3038004d 49910 mail optional 
sylpheed-claws-gtk2-mailmbox-plugin_2.3.0-1_i386.deb
 13edbe0a0e2208dd361dc8b17094dfcb 22572 mail optional 
sylpheed-claws-gtk2-maildir-plugin_2.3.0-1_i386.deb
 1bf16fa2fcfe8a38c8f0788a3278666b 13052 mail optional 
sylpheed-claws-gtk2-smime-plugin_2.3.0-1_i386.deb
 3e24b187b5441958949fb97b033f7f01 13060 mail optional 
sylpheed-claws-gtk2-html2-viewer_2.3.0-1_i386.deb
 48b8ab80935069cfbc48bd7b5ff77cc2 20282 mail optional 
sylpheed-claws-gtk2-acpi-notifier_2.3.0-1_i386.deb
 ef2a741333275cbb2308391293d59861 7440 mail optional 
sylpheed-claws-gtk2-attach-remover_2.3.0-1_i386.deb
 36087959f4fbe94d11b96cf515dead26 5432 mail optional 
sylpheed-claws-gtk2-cache-saver_2.3.0-1_i386.deb
 2312549074f3af926ed9622319077fb0 11404 mail optional 
sylpheed-claws-gtk2-fetchinfo-plugin_2.3.0-1_i386.deb
 b326d871da2cebf7a5e9cfdba816 6738 mail optional 
sylpheed-claws-gtk2-newmail-plugin_2.3.0-1_i386.deb
 612361e21b1c73dfbb8e7039a0c7f6ee 18736 mail optional 
sylpheed-claws-gtk2-multi-notifier_2.3.0-1_i386.deb

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

iD8DBQFEn7a2LARVQsm1XawRAhRlAJ0dZomzeSNR+06e0TUhdCZ2cMyIKgCfYgCy
b3QgrATYZ/Ui5hPBMorIvag=
=6FD7
-END PGP SIGNATURE-


Accepted:
sylpheed-claws-gtk2-acpi-notifier_2.3.0-1_i386.deb
  to 
pool/main/s/sylpheed-claws-gtk2-extra-plugins/sylpheed-claws-gtk2-acpi-notifier_2.3.0-1_i386.deb
sylpheed-claws-gtk2-attach-remover_2.3.0-1_i386.deb
  to 
pool/main/s/sylpheed-claws-gtk2-extra-plugins/sylpheed-claws-gtk2-attach-remover_2.3.0-1_i386.deb
sylpheed-claws-gtk2-cache-saver_2.3.0-1_i386.deb
  to 
pool/main/s/sylpheed-claws-gtk2-extra-plugins/sylpheed-claws-gtk2-cache-saver_2.3.0-1_i386.deb

Accepted linux-uvc 0.1.0-1 (source i386)

2006-07-23 Thread Junichi Uekawa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 00:28:23 +0900
Source: linux-uvc
Binary: linux-uvc-tools linux-uvc-source
Architecture: source i386
Version: 0.1.0-1
Distribution: unstable
Urgency: low
Maintainer: Junichi Uekawa [EMAIL PROTECTED]
Changed-By: Junichi Uekawa [EMAIL PROTECTED]
Description: 
 linux-uvc-source - Linux Kernel USB Video Class module
 linux-uvc-tools - Linux Kernel USB Video Class module
Closes: 379239
Changes: 
 linux-uvc (0.1.0-1) unstable; urgency=low
 .
   * Initial packaging (closes: #379239)
   * patched applied to work with intel Mac iSight
 .
 references:
 http://people.freedesktop.org/~rbultje/isight.patch
 http://blogs.gnome.org/view/rbultje/2006/07/21/0
 http://johannes.sipsolutions.net/MacBook/iSight
Files: 
 654cdef608b3692569401a99c7e1b8bb 639 graphics optional linux-uvc_0.1.0-1.dsc
 7e094c6dcaaf42fa73001f25bb2dc880 28455 graphics optional 
linux-uvc_0.1.0.orig.tar.gz
 0c11579a5e92596667440fbdb134c194 7937 graphics optional 
linux-uvc_0.1.0-1.diff.gz
 2a62972db81beb74679ce45b7e7e7562 32506 graphics optional 
linux-uvc-source_0.1.0-1_i386.deb
 7cb3fdc97ce624176a418828b808e14a 6846 contrib/graphics optional 
linux-uvc-tools_0.1.0-1_i386.deb

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

iD8DBQFEwuiR2Dd9TugeVcERAmVmAJ9/1xJTVKpTeg2GyqLCcYzXpYB4iQCghPIX
rJzttYrqaKUMCuiLduz2OzE=
=Xl1K
-END PGP SIGNATURE-


Accepted:
linux-uvc-source_0.1.0-1_i386.deb
  to pool/main/l/linux-uvc/linux-uvc-source_0.1.0-1_i386.deb
linux-uvc-tools_0.1.0-1_i386.deb
  to pool/contrib/l/linux-uvc/linux-uvc-tools_0.1.0-1_i386.deb
linux-uvc_0.1.0-1.diff.gz
  to pool/main/l/linux-uvc/linux-uvc_0.1.0-1.diff.gz
linux-uvc_0.1.0-1.dsc
  to pool/main/l/linux-uvc/linux-uvc_0.1.0-1.dsc
linux-uvc_0.1.0.orig.tar.gz
  to pool/main/l/linux-uvc/linux-uvc_0.1.0.orig.tar.gz


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



Accepted libtasn1-3 0.3.5-2 (source i386)

2006-07-23 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 16:31:38 +0200
Source: libtasn1-3
Binary: libtasn1-3-dbg libtasn1-3 libtasn1-3-bin libtasn1-3-dev
Architecture: source i386
Version: 0.3.5-2
Distribution: unstable
Urgency: low
Maintainer: Debian GnuTLS Maintainers [EMAIL PROTECTED]
Changed-By: Andreas Metzler [EMAIL PROTECTED]
Description: 
 libtasn1-3 - Manage ASN.1 structures (runtime)
 libtasn1-3-bin - Manage ASN.1 structures (binaries)
 libtasn1-3-dbg - Manage ASN.1 structures (development)
 libtasn1-3-dev - Manage ASN.1 structures (development)
Closes: 379424
Changes: 
 libtasn1-3 (0.3.5-2) unstable; urgency=low
 .
   [ Andreas Metzler ]
   * Add libtasn1-2 ( 0.2.17-1) to libtasn-3-bin's Conflicts/Replaces.
 (closes: #379424)
Files: 
 f9e8d35fd332de07f45bf3404e9e3a6c 830 libs important libtasn1-3_0.3.5-2.dsc
 a3fe323530c62c39b9223b7c85574e25 6765 libs important libtasn1-3_0.3.5-2.diff.gz
 083701b24d950563d89ceff3310e3efb 295012 libdevel optional 
libtasn1-3-dev_0.3.5-2_i386.deb
 e3398a9542889de8f5f3bac93d6fd4b3 21562 devel extra 
libtasn1-3-dbg_0.3.5-2_i386.deb
 15acfe46de5ef3c8b8afbb9a46dee130 44310 libs important 
libtasn1-3_0.3.5-2_i386.deb
 81101f17547e8a1b4a997fc261bfa06c 25624 libs important 
libtasn1-3-bin_0.3.5-2_i386.deb

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

iD8DBQFEw4wfHTOcZYuNdmMRArRRAJ9diXmywV+uEG6K8RNVTik4Pz3gKwCgjb6h
hM3sXSmQG7M6/JFv/B0Q8FI=
=mW02
-END PGP SIGNATURE-


Accepted:
libtasn1-3-bin_0.3.5-2_i386.deb
  to pool/main/libt/libtasn1-3/libtasn1-3-bin_0.3.5-2_i386.deb
libtasn1-3-dbg_0.3.5-2_i386.deb
  to pool/main/libt/libtasn1-3/libtasn1-3-dbg_0.3.5-2_i386.deb
libtasn1-3-dev_0.3.5-2_i386.deb
  to pool/main/libt/libtasn1-3/libtasn1-3-dev_0.3.5-2_i386.deb
libtasn1-3_0.3.5-2.diff.gz
  to pool/main/libt/libtasn1-3/libtasn1-3_0.3.5-2.diff.gz
libtasn1-3_0.3.5-2.dsc
  to pool/main/libt/libtasn1-3/libtasn1-3_0.3.5-2.dsc
libtasn1-3_0.3.5-2_i386.deb
  to pool/main/libt/libtasn1-3/libtasn1-3_0.3.5-2_i386.deb


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



Accepted xmlsec1 1.2.9-4 (source i386)

2006-07-23 Thread John V. Belmonte
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 10:46:53 -0400
Source: xmlsec1
Binary: libxmlsec1-openssl libxmlsec1 libxmlsec1-nss xmlsec1 libxmlsec1-dev 
libxmlsec1-gnutls
Architecture: source i386
Version: 1.2.9-4
Distribution: unstable
Urgency: low
Maintainer: John V. Belmonte [EMAIL PROTECTED]
Changed-By: John V. Belmonte [EMAIL PROTECTED]
Description: 
 libxmlsec1 - XML security library
 libxmlsec1-dev - Development files for the XML security library
 libxmlsec1-gnutls - Gnutls engine for the XML security library
 libxmlsec1-nss - Nss engine for the XML security library
 libxmlsec1-openssl - Openssl engine for the XML security library
 xmlsec1- XML security command line processor
Closes: 379390
Changes: 
 xmlsec1 (1.2.9-4) unstable; urgency=low
 .
   * Fix gnutls dependency in shlibs.local (Closes: #379390)
Files: 
 214c0c66ff49c7f3400713741ad2413b 756 text optional xmlsec1_1.2.9-4.dsc
 0ddcfa5ad47f7bbada3829bd91cca4ec 5064 text optional xmlsec1_1.2.9-4.diff.gz
 e396fe41a6aecaa064fafcfb4120dbfe 864820 libdevel optional 
libxmlsec1-dev_1.2.9-4_i386.deb
 e2f151553da2ecea8be14eab368f10ae 134602 libs optional 
libxmlsec1_1.2.9-4_i386.deb
 84588e8ceca6b734735c0644634a0533 86378 libs optional 
libxmlsec1-openssl_1.2.9-4_i386.deb
 97345d9a350b57809d0764c07f727189 36416 libs optional 
libxmlsec1-gnutls_1.2.9-4_i386.deb
 01ec1689f0436e2df44b7cd76f23777c 80840 libs optional 
libxmlsec1-nss_1.2.9-4_i386.deb
 41d558dd6f9cb8db7443609e88243684 41466 text optional xmlsec1_1.2.9-4_i386.deb

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

iD8DBQFEw5SJ5Nfg6kxAQQoRArGnAKD7+ylKNap5VW700bCt0eR/IsA5JQCfb4to
95DUDE8lFoib80kc5YjJ9H4=
=vN/A
-END PGP SIGNATURE-


Accepted:
libxmlsec1-dev_1.2.9-4_i386.deb
  to pool/main/x/xmlsec1/libxmlsec1-dev_1.2.9-4_i386.deb
libxmlsec1-gnutls_1.2.9-4_i386.deb
  to pool/main/x/xmlsec1/libxmlsec1-gnutls_1.2.9-4_i386.deb
libxmlsec1-nss_1.2.9-4_i386.deb
  to pool/main/x/xmlsec1/libxmlsec1-nss_1.2.9-4_i386.deb
libxmlsec1-openssl_1.2.9-4_i386.deb
  to pool/main/x/xmlsec1/libxmlsec1-openssl_1.2.9-4_i386.deb
libxmlsec1_1.2.9-4_i386.deb
  to pool/main/x/xmlsec1/libxmlsec1_1.2.9-4_i386.deb
xmlsec1_1.2.9-4.diff.gz
  to pool/main/x/xmlsec1/xmlsec1_1.2.9-4.diff.gz
xmlsec1_1.2.9-4.dsc
  to pool/main/x/xmlsec1/xmlsec1_1.2.9-4.dsc
xmlsec1_1.2.9-4_i386.deb
  to pool/main/x/xmlsec1/xmlsec1_1.2.9-4_i386.deb


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



Accepted module-assistant 0.10.6 (source all)

2006-07-23 Thread Eduard Bloch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 17:39:25 +0200
Source: module-assistant
Binary: module-assistant
Architecture: source all
Version: 0.10.6
Distribution: unstable
Urgency: low
Maintainer: Eduard Bloch [EMAIL PROTECTED]
Changed-By: Eduard Bloch [EMAIL PROTECTED]
Description: 
 module-assistant - tool to make module package creation easier
Changes: 
 module-assistant (0.10.6) unstable; urgency=low
 .
   * no external command reads untill the package is known, avoids
 unnecessary command calls while guessing the package name
   * urgent workaround for a strange bug where the package name was
 modified during auto-install
Files: 
 ac1e8bf67f89dbcc4c2a2b2d1f7a2ec4 533 misc optional module-assistant_0.10.6.dsc
 d29d6893c59e7f4ea300b4a08b8cc334 80523 misc optional 
module-assistant_0.10.6.tar.gz
 b6b5551075761e9c467b9533ca238269 80988 misc optional 
module-assistant_0.10.6_all.deb

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

iD8DBQFEw5pa4QZIHu3wCMURArAWAJ9Cz/Zeq0qdj1KIX4uXb1GLbpG31gCfS70N
1IDDGPkKAejvyn8CkTHccg0=
=7eyk
-END PGP SIGNATURE-


Accepted:
module-assistant_0.10.6.dsc
  to pool/main/m/module-assistant/module-assistant_0.10.6.dsc
module-assistant_0.10.6.tar.gz
  to pool/main/m/module-assistant/module-assistant_0.10.6.tar.gz
module-assistant_0.10.6_all.deb
  to pool/main/m/module-assistant/module-assistant_0.10.6_all.deb


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



Accepted tasksel 2.51 (source all)

2006-07-23 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 11:49:08 -0400
Source: tasksel
Binary: tasksel tasksel-data
Architecture: source all
Version: 2.51
Distribution: unstable
Urgency: high
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Joey Hess [EMAIL PROTECTED]
Description: 
 tasksel- Tool for selecting tasks for installation on Debian systems
 tasksel-data - Official tasks used for installation of Debian systems
Closes: 377510 379021
Changes: 
 tasksel (2.51) unstable; urgency=high
 .
   [ Rene Engelhard ]
   * remove openoffice.org-hyphenation-fi from finnish-desktop again, only
 provided by openoffice.org-soikko which is non-free
   * galician: (re-)add myspell-gl-es.
   * unify aspell/myspell usage in tasks, move them all to the base tasks 
instead
 -desktop. They don't depend on anything big anyway (myspell) or are
 already in the normal taks for other languages.
 .
   [ Translations of tasks ]
 - Updated Danish (Claus Hindsgaul)
 - Updated Romanian (Eddy Petrişor)
 - Updated Simplified Chinese (Carlos Z.F. Liu)
 - Updated Lithuanian (Kęstutis Biliūnas)
 .
   [ Christian Perrier ]
   * Add a khmer task, including khmerconverter, on recommendation of Khmer
 translators
   * Consequently change the khmer-desktop task
 .
   [ Joey Hess ]
   * Remove openoffice.org-l10n-en-gb, openoffice.org-help-en-gb,
 myspell-en-gb, firefox-locale-en-gb from desktop task. Closes: #377510
   * Remove openoffice.org-l10n-en-us from dekstop task; it's a dependency
 of openoffice.org-common now.
   * Remove firefox-locale-en-us from desktop task. AFAICS firefox works
 fine in English w/o this installed.
   * Remove empty albanian-desktop task.
   * Fix several language-desktop tasks that incorrectly used the old Depends
 field, not Enhances. Closes: #379021
Files: 
 4f979f1de0e6b897e907ff182032c8e2 640 admin important tasksel_2.51.dsc
 76ce5dea0e69380b9218401e19eb3f43 409041 admin important tasksel_2.51.tar.gz
 ee6abbba3148ee38a83ce9d9d5824730 63598 admin important tasksel_2.51_all.deb
 e938013dc644884415ca625941b565e8 212894 admin important 
tasksel-data_2.51_all.deb

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

iD8DBQFEw5r62tp5zXiKP0wRAu0YAKDPENaXoGnaS1mXLv0ZI7Bz6ASjBgCgoHpt
2mHQNCUFpxFtNCdVaO1yqAc=
=UB9F
-END PGP SIGNATURE-


Accepted:
tasksel-data_2.51_all.deb
  to pool/main/t/tasksel/tasksel-data_2.51_all.deb
tasksel_2.51.dsc
  to pool/main/t/tasksel/tasksel_2.51.dsc
tasksel_2.51.tar.gz
  to pool/main/t/tasksel/tasksel_2.51.tar.gz
tasksel_2.51_all.deb
  to pool/main/t/tasksel/tasksel_2.51_all.deb


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



Accepted writerperfect 0.7.1-3 (source powerpc)

2006-07-23 Thread Rene Engelhard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 17:50:13 +0200
Source: writerperfect
Binary: wpd2sxw
Architecture: source powerpc
Version: 0.7.1-3
Distribution: unstable
Urgency: low
Maintainer: Rene Engelhard [EMAIL PROTECTED]
Changed-By: Rene Engelhard [EMAIL PROTECTED]
Description: 
 wpd2sxw- WordPerfect to OpenOffice.org converter
Closes: 379362
Changes: 
 writerperfect (0.7.1-3) unstable; urgency=low
 .
   * build-dep on zlib1g-dev (closes: #379362)
Files: 
 a1ae9f93bb2e7a900cafccd350dc2ac9 686 utils optional writerperfect_0.7.1-3.dsc
 bd784865dfc537c491a4edeea78e0a4b 17274 utils optional 
writerperfect_0.7.1-3.diff.gz
 eb0a78a42252ea00d89c6363433d5b17 43144 utils optional 
wpd2sxw_0.7.1-3_powerpc.deb

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

iD8DBQFEw5zs+FmQsCSK63MRAsGuAJ4o149v0cXgKw+KBYZ08WD2DzJHhwCggCoF
dzyiirxMLcaXrQp7rq2dB4M=
=jbru
-END PGP SIGNATURE-


Accepted:
wpd2sxw_0.7.1-3_powerpc.deb
  to pool/main/w/writerperfect/wpd2sxw_0.7.1-3_powerpc.deb
writerperfect_0.7.1-3.diff.gz
  to pool/main/w/writerperfect/writerperfect_0.7.1-3.diff.gz
writerperfect_0.7.1-3.dsc
  to pool/main/w/writerperfect/writerperfect_0.7.1-3.dsc


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



Accepted routes 1.4-1 (source all)

2006-07-23 Thread Piotr Ozarowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 22 Jul 2006 15:30:09 +0200
Source: routes
Binary: python-routes
Architecture: source all
Version: 1.4-1
Distribution: unstable
Urgency: low
Maintainer: Piotr Ozarowski [EMAIL PROTECTED]
Changed-By: Piotr Ozarowski [EMAIL PROTECTED]
Description: 
 python-routes - Routing Recognition and Generation Tools
Changes: 
 routes (1.4-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 56c6a005f38dbb13188e7f872d388457 782 python optional routes_1.4-1.dsc
 e0a700399c424da4ec666d095abd43c6 44515 python optional routes_1.4.orig.tar.gz
 1db0c628ee25b29a7b8ea7588ffd8b1f 2094 python optional routes_1.4-1.diff.gz
 ee5b136f6c9f7154243b003bd36c5153 42646 python optional 
python-routes_1.4-1_all.deb

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

iD8DBQFEw5+OvPbGD26BadIRApx7AKC5Ey2REHswOCAJOZcRN9Gbr1dkEQCdFh4j
Reuqr44Pys48GijHLk4bZB4=
=UXme
-END PGP SIGNATURE-


Accepted:
python-routes_1.4-1_all.deb
  to pool/main/r/routes/python-routes_1.4-1_all.deb
routes_1.4-1.diff.gz
  to pool/main/r/routes/routes_1.4-1.diff.gz
routes_1.4-1.dsc
  to pool/main/r/routes/routes_1.4-1.dsc
routes_1.4.orig.tar.gz
  to pool/main/r/routes/routes_1.4.orig.tar.gz


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



Accepted digikamimageplugins 0.8.2-2 (source i386)

2006-07-23 Thread Debian KDE Extras Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 17:30:43 +0100
Source: digikamimageplugins
Binary: digikamimageplugins
Architecture: source i386
Version: 0.8.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team [EMAIL PROTECTED]
Changed-By: Debian KDE Extras Team [EMAIL PROTECTED]
Description: 
 digikamimageplugins - image editor plugins for digikam and showfoto
Changes: 
 digikamimageplugins (0.8.2-2) unstable; urgency=low
 .
   * Build-Depends: digikam (= 0.8.0-1-1+b1), digikam ( 0.9)
   * Depends: digikam (0.8), digikam (0.9)
   * Include Translations in debian/copyright
Files: 
 a29b73d9fe8c1419638059e46b8c13b8 924 graphics optional 
digikamimageplugins_0.8.2-2.dsc
 6fbd05c12d068f53555af143dff149cc 166555 graphics optional 
digikamimageplugins_0.8.2-2.diff.gz
 0ae6f25665be31b27ed5171d5c4eceae 4547808 graphics optional 
digikamimageplugins_0.8.2-2_i386.deb

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

iD8DBQFEw6lcoCzanz0IthIRAodlAJ0ak8bg8XsqNircAGMhBOKp/h6TxQCfbwt9
W2Al2duKq+Ukw4Fk8hESue4=
=kt6e
-END PGP SIGNATURE-


Accepted:
digikamimageplugins_0.8.2-2.diff.gz
  to pool/main/d/digikamimageplugins/digikamimageplugins_0.8.2-2.diff.gz
digikamimageplugins_0.8.2-2.dsc
  to pool/main/d/digikamimageplugins/digikamimageplugins_0.8.2-2.dsc
digikamimageplugins_0.8.2-2_i386.deb
  to pool/main/d/digikamimageplugins/digikamimageplugins_0.8.2-2_i386.deb


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



Accepted belpic 2.5.9-3 (source powerpc)

2006-07-23 Thread Wouter Verhelst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 18:36:04 +0200
Source: belpic
Binary: beidgui libbeidlibopensc2-dev beid-tools libbeidlibopensc2 libbeid2 
libbeid2-dev
Architecture: source powerpc
Version: 2.5.9-3
Distribution: unstable
Urgency: low
Maintainer: Wouter Verhelst [EMAIL PROTECTED]
Changed-By: Wouter Verhelst [EMAIL PROTECTED]
Description: 
 beid-tools - SmartCard utilities from the OpenSC project, compiled against lib
 beidgui- application to read out information from the Belgian electronic I
 libbeid2   - library to read identity information from the Belgian electronic 
 libbeid2-dev - development library to read identity information from the 
Belgian
 libbeidlibopensc2 - belgian eID PKCS11 library
 libbeidlibopensc2-dev - belgian eID PKCS11 library, development files
Changes: 
 belpic (2.5.9-3) unstable; urgency=low
 .
   * Re-add openct cardreader driver, so that my cardreader actually works. The
 previous two uploads were 'tested' as in 'I forgot that I still had
 patched binaries in /usr/local, and they worked. Kinda sorta'. Whoops.
   * Modify src/newpkcs11/config.h to point to /etc/beidbase.conf rather than
 /usr/local/etc/beidbase.conf
Files: 
 e6b525434ebdc987426b01036ec49d8e 809 - extra belpic_2.5.9-3.dsc
 01a5268b7126ec95fb774b67a3eba104 17849 - extra belpic_2.5.9-3.diff.gz
 343ac03e84dda856c705ea18f9fcce99 311852 libs extra 
libbeidlibopensc2_2.5.9-3_powerpc.deb
 5712ff0545dd1d0c7bdb258bfef0be07 1013290 libdevel extra 
libbeidlibopensc2-dev_2.5.9-3_powerpc.deb
 64d8881fa06874e7b699937f121dc6a9 148050 utils extra 
beid-tools_2.5.9-3_powerpc.deb
 d02960b15fc55eafce4e56b9e513e046 145972 libs extra libbeid2_2.5.9-3_powerpc.deb
 1f9c9f2fff2c8cbe9a2f131b2e991c45 86894 libdevel extra 
libbeid2-dev_2.5.9-3_powerpc.deb
 44f325ab94623be879775b285fe0ddc5 298006 utils extra beidgui_2.5.9-3_powerpc.deb

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

iD8DBQFEw6sWPfwsYq950p4RAo5rAJ0QoLe9ou5yajrHumqKV3jPGRhGBgCdG4iP
5Wawar4XeHuVoKHhAgrakjY=
=2jXb
-END PGP SIGNATURE-


Accepted:
beid-tools_2.5.9-3_powerpc.deb
  to pool/main/b/belpic/beid-tools_2.5.9-3_powerpc.deb
beidgui_2.5.9-3_powerpc.deb
  to pool/main/b/belpic/beidgui_2.5.9-3_powerpc.deb
belpic_2.5.9-3.diff.gz
  to pool/main/b/belpic/belpic_2.5.9-3.diff.gz
belpic_2.5.9-3.dsc
  to pool/main/b/belpic/belpic_2.5.9-3.dsc
libbeid2-dev_2.5.9-3_powerpc.deb
  to pool/main/b/belpic/libbeid2-dev_2.5.9-3_powerpc.deb
libbeid2_2.5.9-3_powerpc.deb
  to pool/main/b/belpic/libbeid2_2.5.9-3_powerpc.deb
libbeidlibopensc2-dev_2.5.9-3_powerpc.deb
  to pool/main/b/belpic/libbeidlibopensc2-dev_2.5.9-3_powerpc.deb
libbeidlibopensc2_2.5.9-3_powerpc.deb
  to pool/main/b/belpic/libbeidlibopensc2_2.5.9-3_powerpc.deb


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



Accepted vflib3 3.6.13-3.5 (source i386 all)

2006-07-23 Thread Matej Vela
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 18:59:19 +0200
Source: vflib3
Binary: vflib3-dev vflib3-bin vflib3 vflib3-doc
Architecture: source i386 all
Version: 3.6.13-3.5
Distribution: unstable
Urgency: medium
Maintainer: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Changed-By: Matej Vela [EMAIL PROTECTED]
Description: 
 vflib3 - Versatile Font Library
 vflib3-bin - Sample programs using VFlib3
 vflib3-dev - Development files for VFlib3
 vflib3-doc - Documentation for VFlib3
Closes: 170529 378447
Changes: 
 vflib3 (3.6.13-3.5) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Make vflib3-dev depend on libkpathsea-dev.  Closes: #378447.
   * Fix `comparison is always false' warnings on platforms where char
 is unsigned by default.  Closes: #170529.
Files: 
 e0383375e796388c5c964c2cbfcd82ba 725 devel optional vflib3_3.6.13-3.5.dsc
 307798f7e78a93531a1c8520da21a07d 141325 devel optional 
vflib3_3.6.13-3.5.diff.gz
 fa40d8e131a7e22d77391ba5688720ac 171140 libdevel optional 
vflib3-dev_3.6.13-3.5_i386.deb
 259a05e8ef9b3e7b670b33b79012b87d 113108 devel optional 
vflib3-bin_3.6.13-3.5_i386.deb
 b1051aa13c5ba4cd048e4f0f60abff5c 950982 doc optional 
vflib3-doc_3.6.13-3.5_all.deb
 75d167fb6b267c549e3c7d94d33c21bf 1399564 libs optional 
vflib3_3.6.13-3.5_i386.deb

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

iD8DBQFEw6tDxBYivKllgY8RAsJyAJ9V0wg8yDnRU3V+S0QHk/AOh6S9BwCeMxDx
Cz2wQ9VR+aKFUj6KgiOXwng=
=mXo3
-END PGP SIGNATURE-


Accepted:
vflib3-bin_3.6.13-3.5_i386.deb
  to pool/main/v/vflib3/vflib3-bin_3.6.13-3.5_i386.deb
vflib3-dev_3.6.13-3.5_i386.deb
  to pool/main/v/vflib3/vflib3-dev_3.6.13-3.5_i386.deb
vflib3-doc_3.6.13-3.5_all.deb
  to pool/main/v/vflib3/vflib3-doc_3.6.13-3.5_all.deb
vflib3_3.6.13-3.5.diff.gz
  to pool/main/v/vflib3/vflib3_3.6.13-3.5.diff.gz
vflib3_3.6.13-3.5.dsc
  to pool/main/v/vflib3/vflib3_3.6.13-3.5.dsc
vflib3_3.6.13-3.5_i386.deb
  to pool/main/v/vflib3/vflib3_3.6.13-3.5_i386.deb


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



  1   2   >