Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Alexander E. Patrakov

Marc Haber wrote:

In some cases, exim still looks up its IP address when a listening
daemon starts up. This is why the Debian installer configures
127.0.1.1 (not 127.0.0.1) for the local hostname on installation,
yielding /etc/hosts files like 


127.0.0.1   localhost
127.0.1.1   myfoo.localdomain   myfoo


snip


This being said, I consider the entire 127.0.1.1 business a horrible
hack which is one of the most ugly things I have ever seen. Do we have
a chance to implement this in a more cleaner way, or is it still the
way to go for the distribution, where we don't know zilch about the
environment where an installed system is going to be used?


I second this request. Just a data point: this 127.0.1.1 setup breaks the vde2 
package (namely, its slirp-based part) if a local DNS server that listens on 
127.0.0.1 only (e.g., pdnsd) is used. Please find some other way to skin exim.


--
Alexander E. Patrakov


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



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Tollef Fog Heen
* Bernhard R. Link 

| I think the main problem is that Debian is by default setting up those
| ipv6 stuff into the interface even when you are in an pure ipv4
| environment. That way exim4 cannot do anything to avoid ipv6 stuff
| and evil things like this can happen.
| 
| I don't think that is only limited to additional lookups. I think I've
| also seen a message not being sent on etch, because the target host
| also had a  record. (At least I think that is the reason, after
| disabling ipv6 in exim4.conf it was sent).

I wonder if
http://patches.ubuntu.com/g/glibc/extracted/any/local-ipv6-lookup.diff
will help with that.  It disables IPv6 lookups if the
af_hins-ai_family parameter in getaddrinfo is AF_UNSPEC and you don't
have an IPv6 address with scope  link (so if you don't have global or
site IPv6 addresses configured, you won't get IPv6 lookups from most
applications, while if you do, IPv6 works just fine.)  The patch had
some unfortunate consequences when people used tunnels, see bug
441857.  (Personally, I don't think supporting the use case of «I want
to use IPv6 to connect to localhost but I don't have any IPv6
addresses with scope:site or scope:global» is more interesting than
making IPv6 work for those who actually use it for talking to other
machines on the Internet and not bother those who doesn't use IPv6.)

The original reason for writing that patch is some cheap routers
(typically home DSL routers and the like) drop  and A6 lookups on
the floor completely, leading to terrible DNS performance and leading
people to not loading the ipv6 module, something which is a bit of a
hack (and not very newbie friendly).

https://bugs.edge.launchpad.net/ubuntu/+source/netcfg/+bug/24828 has a
long discssion on some of the ramifications of blindly disabling
IPv6.

-- 
Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Steve Langasek
On Sat, Apr 12, 2008 at 12:13:36PM +0600, Alexander E. Patrakov wrote:
 Marc Haber wrote:
 In some cases, exim still looks up its IP address when a listening
 daemon starts up. This is why the Debian installer configures
 127.0.1.1 (not 127.0.0.1) for the local hostname on installation,
 yielding /etc/hosts files like 

 127.0.0.1   localhost
 127.0.1.1   myfoo.localdomain   myfoo

 snip

 This being said, I consider the entire 127.0.1.1 business a horrible
 hack which is one of the most ugly things I have ever seen. Do we have
 a chance to implement this in a more cleaner way, or is it still the
 way to go for the distribution, where we don't know zilch about the
 environment where an installed system is going to be used?

 I second this request.

Oh yes, by all means, let's flip-flop the /etc/hosts implementation back and
forth because people /second/ it, without ever bothering to understand the
reasons that made this necessary.

 Just a data point: this 127.0.1.1 setup breaks the vde2 package (namely,
 its slirp-based part) if a local DNS server that listens on 127.0.0.1 only
 (e.g., pdnsd) is used.

Then vde2 has broken assumptions and should be fixed.

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


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



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Marc Haber
On Sat, 12 Apr 2008 12:13:36 +0600, Alexander E. Patrakov
[EMAIL PROTECTED] wrote:
Marc Haber wrote:
 This being said, I consider the entire 127.0.1.1 business a horrible
 hack which is one of the most ugly things I have ever seen. Do we have
 a chance to implement this in a more cleaner way, or is it still the
 way to go for the distribution, where we don't know zilch about the
 environment where an installed system is going to be used?

I second this request.

Which request?

Greetings
Marc

-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Marc Haber
On Fri, 11 Apr 2008 16:50:17 +0200, Mike Hommey [EMAIL PROTECTED]
wrote:
On Fri, Apr 11, 2008 at 04:41:26PM +0200, Marc Haber [EMAIL PROTECTED] wrote:
 Exim has the habit of trying to find out about its host names and IP
 addresses when it starts up. This has, in the past, been an issue for
 the Debian packages, since a Debian system might be on a
 dial-on-demand modem line with expensive costs and thus should not do
 unnecessary DNS lookup when the MTA is started. 

The main question to be able to answer your question correctly is:
what does it need these information for ?

I don't know. The exim packages have a configuration option
minimaldns, which hardcodes the output of hostname --fqdn to the
primary_hostname configuration option which takes care of this issue
most of the time, but not always. The cases where it does not help
might be connected with no local domain name being set.

I guess it needs to know its IP addresses and host names to properly
insert itself into Received:-Headers and HELO commands, but I think
that setting primary_hostname should take care of that.

I remember that we added the 127.0.1.1 business to /etc/hosts to
address this issue, so there was a reason for not fixing this in exim
itself.

IP address could be taken from network interfaces configuration, too.

I guess that Philip refrained from doing so for sake of being
portable.

Greetings
Marc

-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Marc Haber
On Fri, 11 Apr 2008 18:09:27 +0200, Bernhard R. Link
[EMAIL PROTECTED] wrote:
* Marc Haber [EMAIL PROTECTED] [080411 16:41]:
 To avoid the extra DNS lookups, the Exim packages have a Debconf
 option to configure exim for minimal DNS usage, which hardcodes the
 hostname into Exim's configuration at package configuration time. This
 was necessary since - without this option - exim looks up its own host
 name in the DNS even when a completely local operation is invoked.

I think the main problem is that Debian is by default setting up those
ipv6 stuff into the interface even when you are in an pure ipv4
environment. That way exim4 cannot do anything to avoid ipv6 stuff
and evil things like this can happen.

Another process on the local system might actually use IPv6 on the
local links, so I'd vouch for tweaking the system (or exim) to not
break if IPv6 is enabled but not fully connected.

I don't think that is only limited to additional lookups. I think I've
also seen a message not being sent on etch, because the target host
also had a  record. (At least I think that is the reason, after
disabling ipv6 in exim4.conf it was sent).

I'd call that a bug, since exim should have a destination
unreachable error upon trying to open the IPv6 connection in absence
of a IPv6 default route.

 I feel that the IPv6 issue is the same that led us to invoke the
 127.0.1.1 hack for IPv4, and if the answer to the IPv6 issue is fix
 exim, then _how_ should exim be fixed, and why wasn't the answer to
 the IPv4 version of the issue fix exim?

I think it is not an issue of only exim. Many services want to have a
name and prefer some canonical or fully qualified hostname.

Yes, but why isn't exim satisfied with this being present for IPv4? If
it has a reason for wanting to do this for IPv6 as well, shouldn't we
make sure that the IPv6 lookups work locally as well as the IPv4
lookups do since we added 127.0.1.1 myhostname.localdomain myhostname
some years ago?

So I fear the solution might not easily be reachable globally. If exim
can be fixed here depends on why it does does lookups. (As far as I
remember it does not only lookup the hostname, but also things like
localhost, dunno whether this is caused by the term showing up in
some configuration file or if it is something hardcoded).

The only lookup that is still visible on the network (and only in some
cases that I haven't yet fully nailed down) is an  lookup for the
local host name on exim startup.

Greetings
Marc

-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Marc Haber
On Fri, 11 Apr 2008 17:48:19 + (UTC), Robert Edmonds
[EMAIL PROTECTED] wrote:
Yes, there is a much better way: do not perform name resolution to
determine the host's FQDN.  It is wrong.

This is what exim does to determine the local host name:
|This variable contains the value set by primary_hostname in the
|configuration file, or read by the uname() function. If uname() returns a
|single-component name, Exim calls gethostbyname() (or getipnodebyname()
|where available) in an attempt to acquire a fully qualified host name. See
|also $smtp_active_hostname.

Is this broken?

But this documentation is kind of incorrect in the first place, since
the  lookup I see is caused by a call to gethostbyname_2_, which
is not mentioned int he docs at all. Thankfully, gethostbyname2 is
used in exim's source code only twice (with one of the occurrences
being inside an if( primary_hostname == NULL ) which doesn't apply if
primary_hostname is set in configuration, which is the case if exim is
configured with the minimaldns option. So, the  lookup must be
triggered by the gethostbyname2 call in host.c line 1969, which I not
yet have fully understood. Can some more experienced C programmer
comment on this part of the code?

  The MTA needs to know the
mail name or FQDN of the system, and it may need to know specific IPv4
or IPv6 addresses to bind to if it is running an SMTP server, but it
does not need to know any particular mapping between the two.

Where can I obtain the FQDN of the system instead?

Don't I need the particular mapping between IP addresses and host
names to generate a proper HELO? But I wouldn't expect these lookups
to be made at startup, but only when an outgoing message is sent.

It looks like there are functions in src/host.c for performing DNS-based
determination of the system's FQDN.  I don't know exactly under which
circumstances these functions are invoked, but policy 11.6 implies that
they are superfluous in the presence of the /etc/mailname file.

/etc/mailname is unfortunately unclearly defined in Policy, and IIRC
the policy editors refused to clarify when asked years ago. The exim 4
maintainers have then created http://wiki.debian.org/EtcMailName and
asked all MTA maintainers to comment how they use /etc/mailname, but
only a fraction of them bothered to comment.

Exim 4 only uses /etc/mailname to qualify unqualified recipient
addresses and for some rewriting tricks. This has been the cause of
unspeakable grief in the past so I do prefer to avoid touching this
particular part of the system.

I don't see how this issue is analogous to the 127.0.1.1 hack.  From
reading the archived discussion[0], the problem is applications which
use a sequence of legacy gethostname(), gethostbyname(), etc. calls to
construct an FQDN, and avoiding accidentally using 'localhost' or
'localhost.localdomain' as the system hostname.  If you're using the
newer getipnode* functions, it's possible that you'll get an AI_V4MAPPED
address even when asking for an AF_INET6 address.

It looks to me that the getipnode* functions are not available in
current Debian based on glibc 2.7.

The analogous IPv6 hack, btw, would be something atrocious in /etc/hosts
like:

:::127.0.1.1 hostname.domainname

I'll try that.

 Any hints will be appreciated.

IME, nullmailer and postfix seem to get along fine without generating
spurious DNS traffic, so

#include flame/default/mta.h

So please make postfix the default MTA for lenny and have exim
removed. It obviously sucks as badly as its maintainer. I'm _s_
sick of that.

Greetings
Marc

-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Bernhard R. Link
* Marc Haber [EMAIL PROTECTED] [080412 10:30]:
 I think the main problem is that Debian is by default setting up those
 ipv6 stuff into the interface even when you are in an pure ipv4
 environment. That way exim4 cannot do anything to avoid ipv6 stuff
 and evil things like this can happen.

 Another process on the local system might actually use IPv6 on the
 local links, so I'd vouch for tweaking the system (or exim) to not
 break if IPv6 is enabled but not fully connected.

Yes, that might even be better. Sadly while getaddrinfo(3) has
AI_ADDRCONFIG, it says IPv6 addresses are only returned if the local
system has at least one IPv6 address configured. (Dunno if something
like has a working ipv6 setup instead would be properly detectable
by libc).

 I don't think that is only limited to additional lookups. I think I've
 also seen a message not being sent on etch, because the target host
 also had a  record. (At least I think that is the reason, after
 disabling ipv6 in exim4.conf it was sent).

 I'd call that a bug, since exim should have a destination
 unreachable error upon trying to open the IPv6 connection in absence
 of a IPv6 default route.

I'd consider that a bug, too. What it should do is use the IPv4 address
of the target host instead.

 So I fear the solution might not easily be reachable globally. If exim
 can be fixed here depends on why it does does lookups. (As far as I
 remember it does not only lookup the hostname, but also things like
 localhost, dunno whether this is caused by the term showing up in
 some configuration file or if it is something hardcoded).

 The only lookup that is still visible on the network (and only in some
 cases that I haven't yet fully nailed down) is an  lookup for the
 local host name on exim startup.

Yes, localhost requests are not visible on the network, as long as there
is a localhost ipv6 address in /etc/hosts. What I cannot recall is how good
Debian is/was in also adding those items on upgrade. Perhaps not having
that line in there was a user error.

Hochachtungsvoll,
Bernhard R. Link


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



Re: [pkg-boost-devel] Bug#473752: Boost 1.35 has been released

2008-04-12 Thread Holger Levsen
Hi Joshua,

On Saturday 12 April 2008 03:02, Joshua Judson Rosen wrote:
 How close /are/ we to a freeze?

Please send a mail to [EMAIL PROTECTED], 
thanks.

Current status of the release:
http://lists.debian.org/debian-devel-announce/2008/04/msg2.html

Timeline for the release:
http://lists.debian.org/debian-devel-announce/2008/02/msg2.html


regards,
Holger


pgpi9UGNmbpSs.pgp
Description: PGP signature


Re: triggers wishlist

2008-04-12 Thread Colin Watson
On Sun, Mar 30, 2008 at 04:25:15PM -0400, Joey Hess wrote:
 Things I want to see use triggers, in approximate priority order:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=133917 (man-db) can at
long last be fixed with a trigger. I had a tested patch for this a
little while back, which I'll dust off and upload.

-- 
Colin Watson   [EMAIL PROTECTED]


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



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Bernhard R. Link
* Marc Haber [EMAIL PROTECTED] [080412 10:42]:
 [...] Thankfully, gethostbyname2 is
 used in exim's source code only twice (with one of the occurrences
 being inside an if( primary_hostname == NULL ) which doesn't apply if
 primary_hostname is set in configuration, which is the case if exim is
 configured with the minimaldns option. So, the  lookup must be
 triggered by the gethostbyname2 call in host.c line 1969, which I not
 yet have fully understood. Can some more experienced C programmer
 comment on this part of the code?

That simply seems to be exim's host_find_byname function to encapsulate
the different ways on different systems to do host lookups. So this
lookup can origin from almost everywhere. (this early one possible
cause might be resolving the name showing up in another config option).

Hochachtungsvoll,
Bernhard R. Link


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



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Tollef Fog Heen
* Bernhard R. Link 

| * Marc Haber [EMAIL PROTECTED] [080412 10:30]:
|  I think the main problem is that Debian is by default setting up those
|  ipv6 stuff into the interface even when you are in an pure ipv4
|  environment. That way exim4 cannot do anything to avoid ipv6 stuff
|  and evil things like this can happen.
| 
|  Another process on the local system might actually use IPv6 on the
|  local links, so I'd vouch for tweaking the system (or exim) to not
|  break if IPv6 is enabled but not fully connected.
| 
| Yes, that might even be better. Sadly while getaddrinfo(3) has
| AI_ADDRCONFIG, it says IPv6 addresses are only returned if the local
| system has at least one IPv6 address configured. (Dunno if something
| like has a working ipv6 setup instead would be properly detectable
| by libc).

If «has a working ipv6 setup» means «has a address with scope better
than $value», then yes, that's easy.  See my other post to this
thread.  I think «has at least one IPv6 address configured» should
mean «has at least one IPv6 address which may be in DNS configured».
Yes, this probably breaks NAT-PT, this probably also breaks for people
who want to talk to services on localhost using IPv6 (and doesn't
otherwise have IPv6 configured) as well as people who put link-local
addresses into DNS.  Don't do that, then.  IMNSHO.

-- 
Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are



Re: python-sphinx or sphinx?

2008-04-12 Thread Emilio Pozuelo Monfort
Hi,

Mikhail Gusarov wrote:
 Gentlemen,
 
 I'm going to package tool called Sphinx (http://sphinx.pocoo.org/) -
 documentation generator for Python projects.
 
 In ITP (#474782) I chose package name to be 'python-sphinx', however
 then the package will be thought as containing just python modules.
 
 Is it ok to go ahead and use such generic package name as 'sphinx',
 given the recentness of the package and it's (still) small userbase?

If it's just a tool, that name is fine. But if it also contains modules, then I
think you should go for python-*. Perhaps you could make two binary packages,
one for the module(s) and one for the tool, although that could be 
overkilling...

I'm CCing debian-python@ so you can get better answers.

Emilio



signature.asc
Description: OpenPGP digital signature


Bug#475711: ITP: amazing -- An amazing widget manager for an awesome window manager

2008-04-12 Thread Julien Danjou
Package: wnpp
Severity: wishlist
Owner: Julien Danjou [EMAIL PROTECTED]

* Package name: amazing
  Version : git
  Upstream Author : Dag Odenhall [EMAIL PROTECTED]
* URL : http://amazing.rubyforge.org
* License : Academic Free License version 3.0
  Programming Lang: Ruby
  Description : An amazing widget manager for an awesome window manager

A widget framework and a widget manager for the awesome window manager.
.
It allows to update and feed the widget in awesome by querying the
system about various information, as CPU and memory usage, mpd playlist
information, etc. This can then used to fill textboxes, progress bars,
etc.
.
Its configuration file is written in YAML.

-- 
Julien Danjou
// ᐰ [EMAIL PROTECTED]   http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
// Anna Molly! Anna Molly! Anna Molly!


signature.asc
Description: Digital signature


Bug#475715: ITP: plexus-compiler-javac -- Interface to javac compiler for Plexus

2008-04-12 Thread Paul Cager
Package: wnpp
Severity: wishlist
Owner: Paul Cager [EMAIL PROTECTED]

* Package name: plexus-compiler-javac
  Version : 1.5.3
  Upstream Author : Codehaus developers.
* URL : http://plexus.codehaus.org/
* License : MIT / Apache 2.0
  Programming Lang: Java
  Description : Interface to javac compiler for Plexus

The Plexus project provides a full software stack for creating and
executing software projects. Based on the Plexus container, the applications can
utilise component-oriented programming to build modular, reusable
components that can easily be assembled and reused.

This package provides the javac interface for Plexus.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#475719: ITP: robotfactory -- Help Pedro to build robots in his factory (game)

2008-04-12 Thread Juanjo Conti

Package: wnpp
Version: N/A
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org, [EMAIL PROTECTED]

* Package name : robotfactory
Version : 1.0
Upstream Author : 10 Roboticists from Santa Fe 
[EMAIL PROTECTED]

* URL : http://code.google.com/p/pyweek6
* License : GPL
Description : Help Pedro to build robots in his factory (game)

 robotfactory is a game in which you have to use your mouse to pick up 
robot pieces, rotate and drop them to build a robot. The game could 
seems hard at the beginning but you'll get used to it soon.

 This game was created as an entry for the PyWeek6 challenge.
.
 Pedro is a modest man. One day, he read a book by Isaac Asimov and 
began to dream about robots (Robot Dreams). Afterwards, Pedro invested 
his money in a Robot Factory called Pedro's Robot Factory (of course) 
and you are his roboticist (Sorry). Pedro developed the Funnelhead 
model... and you must build it. Pedro is a demanding boss and level to 
level, while the enterprise progress, you must be faster.


--
mi blog: http://www.juanjoconti.com.ar



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



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread The Fungi
On Sat, Apr 12, 2008 at 10:41:54AM +0200, Marc Haber wrote:
[...]
 Where can I obtain the FQDN of the system instead?
[...]

You can't, necessarily. Especially if the MTA is running on RFC 1918
addresses behind a NAT and relying on external DNS (which I expect
is becoming quite common these days). Is there any way to simply
*insist* the FQDN be present in the config (provided by the
administrator via debconf or by manual editing after installation)
and just be done with all the guessing? Maybe even refuse to start
the daemon until this is provided, with a clear error message to
that effect?
-- 
{ IRL(Jeremy_Stanley); PGP(9E8DFF2E4F5995F8FEADDC5829ABF7441FB84657);
SMTP([EMAIL PROTECTED]); IRC([EMAIL PROTECTED]); ICQ(114362511);
AIM(dreadazathoth); YAHOO(crawlingchaoslabs); FINGER([EMAIL PROTECTED]);
MUD([EMAIL PROTECTED]:6669); WWW(http://fungi.yuggoth.org/); }


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



Bug#475726: ITP: plexus-io -- Input-output utility library for Plexus

2008-04-12 Thread Paul Cager
Package: wnpp
Severity: wishlist
Owner: Paul Cager [EMAIL PROTECTED]

* Package name: plexus-io
  Version : 1.5.3
  Upstream Author : Codehaus developers.
* URL : http://plexus.codehaus.org/
* License : Apache 2.0
  Programming Lang: Java
  Description : Input-output utility library for Plexus

The Plexus project provides a full software stack for creating and
executing software projects. Based on the Plexus container, the applications can
utilise component-oriented programming to build modular, reusable
components that can easily be assembled and reused.

This package provides an Input-output utility library for Plexus


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#475741: ITP: clipperz -- secure online password manager

2008-04-12 Thread Vincent Bernat
Package: wnpp
Severity: wishlist
Owner: Vincent Bernat [EMAIL PROTECTED]


* Package name: clipperz
  Version : 003
  Upstream Author : Clipperz Srl
* URL : http://www.clipperz.com/
* License : AGPL
  Programming Lang: PHP and Javascript
  Description : secure online password manager

This web application acts as a vault for your passwords. Local
encryption within the browser guarantees that no one except you can
read your data.

It also features direct logins that allow you to log into a site with
a simple click and offline operation that allows you to download a
read-only (and still encrypted) copy of your passwords.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.24-1-amd64 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash



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



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Marc Haber
On Sat, 12 Apr 2008 11:32:32 +0200, Bernhard R. Link
[EMAIL PROTECTED] wrote:
* Marc Haber [EMAIL PROTECTED] [080412 10:30]:
 I don't think that is only limited to additional lookups. I think I've
 also seen a message not being sent on etch, because the target host
 also had a  record. (At least I think that is the reason, after
 disabling ipv6 in exim4.conf it was sent).

 I'd call that a bug, since exim should have a destination
 unreachable error upon trying to open the IPv6 connection in absence
 of a IPv6 default route.

I'd consider that a bug, too. What it should do is use the IPv4 address
of the target host instead.

It'll do that after not reaching the IPv6 address.

 The only lookup that is still visible on the network (and only in some
 cases that I haven't yet fully nailed down) is an  lookup for the
 local host name on exim startup.

Yes, localhost requests are not visible on the network, as long as there
is a localhost ipv6 address in /etc/hosts. What I cannot recall is how good
Debian is/was in also adding those items on upgrade. Perhaps not having
that line in there was a user error.

An example /etc/hosts file created by d-i is in the message that
started this thread. We create 127.0.0.1 for localhost and
localhost.localdomain, 127.0.1.1 for the host name and FQDN given on
installation, but not analogous entry for ipv6.

Greetings
Marc

-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834



Re: exim, local resolver, host name lookups and IPv6

2008-04-12 Thread Marc Haber
On Sat, 12 Apr 2008 14:58:24 +, The Fungi [EMAIL PROTECTED]
wrote:
On Sat, Apr 12, 2008 at 10:41:54AM +0200, Marc Haber wrote:
[...]
 Where can I obtain the FQDN of the system instead?
[...]

You can't, necessarily.

So it needs to be in /etc/hosts.

Is there any way to simply
*insist* the FQDN be present in the config (provided by the
administrator via debconf or by manual editing after installation)
and just be done with all the guessing?

I'd rather avoid this and guess the name from a central point created
during installation.

 Maybe even refuse to start
the daemon until this is provided, with a clear error message to
that effect?

Nosireebob, people do not read error messages but post bug reports
instead. I am not prepared to handle these.

Greetings
Marc

-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834



Re: Debian Configuration Packaging System

2008-04-12 Thread Steve Greenland
On 11-Apr-08, 16:07 (CDT), Steve Langasek [EMAIL PROTECTED] wrote: 
 I humbly offer up samba-common in unstable as an example of a package that
 DTRT with ucf to manage a config file.

Is it just me, or does everyone get prompted twice about smb.conf on
samba/samba-common upgrades? (I've looked through the various install
and config scripts, but not closely enough to figure out why...)

Steve

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


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



Re: Debian Configuration Packaging System

2008-04-12 Thread Mike Bird
On Sat April 12 2008 10:48:01 Steve Greenland wrote:
 Is it just me, or does everyone get prompted twice about smb.conf on
 samba/samba-common upgrades? (I've looked through the various install
 and config scripts, but not closely enough to figure out why...)

It happened here too.  I haven't figured out why.

--Mike Bird


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



Re: Debian Configuration Packaging System

2008-04-12 Thread Steve Langasek
On Sat, Apr 12, 2008 at 12:48:01PM -0500, Steve Greenland wrote:
 On 11-Apr-08, 16:07 (CDT), Steve Langasek [EMAIL PROTECTED] wrote: 
  I humbly offer up samba-common in unstable as an example of a package that
  DTRT with ucf to manage a config file.

 Is it just me, or does everyone get prompted twice about smb.conf on
 samba/samba-common upgrades? (I've looked through the various install
 and config scripts, but not closely enough to figure out why...)

On your first upgrade to the ucf-based samba-common, you may get two prompts
- first to reconcile the differences with your smb.conf which doesn't match
the known old template, and then to merge in the smb.conf from the current
package.

There's room for improvement on the first pass by doing a better job of
matching up the user's config with past smb.conf templates (which mostly
means doing some scary package archaeology), but the history of this config
file spans more than a decade, so there will definitely be users for whom we
can't help but prompt twice on the first upgrade.

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


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



Bug#475760: ITP: sputnik -- A small and easy to extend wiki

2008-04-12 Thread Enrico Tassi
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

--- Please fill out the fields below. ---

   Package name: sputnik
Version: git master branch
Upstream Author: Yuri Takhteyev [EMAIL PROTECTED]
URL: http://sputnik.freewisdom.org/en/
License: MIT/X
Description: 
 Sputnik is a wiki written in Lua. Sputnik is designed to be used
 as a platform for a wide range of social software applications. A
 simple change of templates and perhaps a few lines of Lua code can
 turn it into a photo album, a blog, a calendar, a mailing list
 viewer.

-- 
Enrico Tassi



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



Bug#475761: ITP: librose-db-perl -- A DBI wrapper and abstraction layer

2008-04-12 Thread Krzysztof Krzyzaniak (eloy)
Package: wnpp
Severity: wishlist
Owner: Krzysztof Krzyzaniak (eloy) [EMAIL PROTECTED]


* Package name: librose-db-perl
  Version : 0.743
  Upstream Author : John C. Siracusa ([EMAIL PROTECTED])
* URL : http://search.cpan.org/dist/Rose-DB/
* License : Dual: Artistic/GPL
  Programming Lang: Perl
  Description : A DBI wrapper and abstraction layer

 Rose::DB is a wrapper and abstraction layer for DBI-related functionality. 
 A Rose::DB object has a DBI object; it is not a subclass of DBI.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#475773: ITP: mkgmap -- Generate Garmin maps from OpenStreetMap data

2008-04-12 Thread Andreas Putzo
Package: wnpp
Severity: wishlist
Owner: Andreas Putzo [EMAIL PROTECTED]


* Package name: mkgmap
  Version : r561
  Upstream Author : Steve Ratcliffe [EMAIL PROTECTED]
* URL : http://www.parabola.me.uk/mkgmap/index.html
* License : GPL-2
  Programming Lang: Java
  Description : Generate Garmin maps from OpenStreetMap data

This program converts OpenStreetMap data into a map that 
can be loaded onto a Garmin GPS device.





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



Re: python-sphinx or sphinx?

2008-04-12 Thread Bernd Zeimetz
Hi,

 If it's just a tool, that name is fine. But if it also contains modules, then 
 I
 think you should go for python-*. Perhaps you could make two binary packages,
 one for the module(s) and one for the tool, although that could be 
 overkilling...

looks more like a module in my eyes, so python-sphinx


Cheers,

Bernd

-- 
Bernd Zeimetz
[EMAIL PROTECTED] http://bzed.de/


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



Bug#475780: ITP: plexus-archiver -- Plexus archiving libraries

2008-04-12 Thread Paul Cager
Package: wnpp
Severity: wishlist
Owner: Paul Cager [EMAIL PROTECTED]

* Package name: plexus-archiver
  Version : 1.0-alpha-9
  Upstream Author : Codehaus developers
* URL : plexus.codehaus.org
* License : Apache 2
  Programming Lang: Java
  Description : Plexus archiving libraries

 The Plexus project provides a full software stack for creating and
 executing software projects. Based on the Plexus container, the applications
 can utilise component-oriented programming to build modular, reusable
 components that can easily be assembled and reused.
 .
 This package provides the Archiver plugin for Plexus, used to create
 JARs and other archives.


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Accepted wflogs 0.9.8-6.2 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 01:35:47 +0100
Source: wflogs
Binary: wflogs
Architecture: source i386
Version: 0.9.8-6.2
Distribution: unstable
Urgency: medium
Maintainer: Jean-Michel Kelbert [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 wflogs - The modular firewall log analyzer of the WallFire project
Closes: 474849
Changes: 
 wflogs (0.9.8-6.2) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix FTBFS with GCC 4.3 (Closes: #474849)
   * Add Build-Depends on Bison as logs/filter_y.yy is modified.
   * Bump Standards-Version to 3.7.3.
Checksums-Sha1: 
 5556d5489073df5eb3d5b8a0ce86c8e876fc7e1a 1044 wflogs_0.9.8-6.2.dsc
 a8c5e6c4436f581f600ef03ee4485a88d3fb0287 54136 wflogs_0.9.8-6.2.diff.gz
 90a02c1ea4d707e60365d03b12307d4ffdd2751f 214956 wflogs_0.9.8-6.2_i386.deb
Checksums-Sha256: 
 67b5a26ce85324c59b50bccdd761df151f7a0182c5d87b1819f0950914a7a302 1044 
wflogs_0.9.8-6.2.dsc
 f9383105fcd68be1da9bfc9438e0ff03c9706862fa0298ab31d8e954d509ad4e 54136 
wflogs_0.9.8-6.2.diff.gz
 6ca75a6afd92a7df39b14638a10232cb85638243f5169f923ba6abe666001ecd 214956 
wflogs_0.9.8-6.2_i386.deb
Files: 
 ef661fbf9072d28cd7e6506e117534e4 1044 net optional wflogs_0.9.8-6.2.dsc
 738b6a19f034048d2af4dc65935bcc75 54136 net optional wflogs_0.9.8-6.2.diff.gz
 f23c985a970ff2f3892d5947a0854503 214956 net optional wflogs_0.9.8-6.2_i386.deb

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

iD8DBQFIAEcp+C5cwEsrK54RAqeCAKCAPZPIKzEXtOdMgb0WfYvK3MnWBQCfegQP
T8Tppcz4qf28RoHngOVgjT8=
=0Q2f
-END PGP SIGNATURE-


Accepted:
wflogs_0.9.8-6.2.diff.gz
  to pool/main/w/wflogs/wflogs_0.9.8-6.2.diff.gz
wflogs_0.9.8-6.2.dsc
  to pool/main/w/wflogs/wflogs_0.9.8-6.2.dsc
wflogs_0.9.8-6.2_i386.deb
  to pool/main/w/wflogs/wflogs_0.9.8-6.2_i386.deb


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



Accepted mew-beta 6.0.50~0.20080411-1 (source all i386)

2008-04-12 Thread Tatsuya Kinoshita
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 14:20:05 +0900
Source: mew-beta
Binary: mew-beta mew-beta-bin
Architecture: source all i386
Version: 6.0.50~0.20080411-1
Distribution: unstable
Urgency: low
Maintainer: Tatsuya Kinoshita [EMAIL PROTECTED]
Changed-By: Tatsuya Kinoshita [EMAIL PROTECTED]
Description: 
 mew-beta   - mail reader supporting PGP/MIME for Emacs (development version)
 mew-beta-bin - external commands for Mew (development version)
Changes: 
 mew-beta (6.0.50~0.20080411-1) unstable; urgency=low
 .
   * New upstream release. (CVS trunk on 2008-04-11)
Checksums-Sha1: 
 0b4022c90156e292eca6866e21a61fc93fe82ee2 1099 mew-beta_6.0.50~0.20080411-1.dsc
 64c5f656c1a36b884976768ae2f00b9d76ba899f 958928 
mew-beta_6.0.50~0.20080411.orig.tar.gz
 f1126b5d91ba8c116516b678133a174223cde31e 51840 
mew-beta_6.0.50~0.20080411-1.diff.gz
 c9770805c77e73f8a07eead57697abf617326ce1 776174 
mew-beta_6.0.50~0.20080411-1_all.deb
 f36a23793c0cc1654e2a72fecf37552f26d4a8aa 59668 
mew-beta-bin_6.0.50~0.20080411-1_i386.deb
Checksums-Sha256: 
 e950742f9380ad129a02362c21da8da1bf989c6bb6c05d854bed6b2123296857 1099 
mew-beta_6.0.50~0.20080411-1.dsc
 169af95a9ead5ce111de1f8de737cbcc7a36928edbd69b85f3a1aebbba9f5eae 958928 
mew-beta_6.0.50~0.20080411.orig.tar.gz
 fa88194c37a1aac6ecd0a460880dbcf2924a400579f2ef2cb544d1d81c815ced 51840 
mew-beta_6.0.50~0.20080411-1.diff.gz
 c6ef13af3fd5e4612d6ffa971fb3c753e6daa71bd365d0d3e9b406fa6ff4eabf 776174 
mew-beta_6.0.50~0.20080411-1_all.deb
 3cc61b172bffb2c3168491055cb09356a588e397d536c0f7b679277b87e1aa08 59668 
mew-beta-bin_6.0.50~0.20080411-1_i386.deb
Files: 
 1f9f9dbd0df03125e0093a3dd7e88d2e 1099 mail extra 
mew-beta_6.0.50~0.20080411-1.dsc
 77bcd2296384491b4eaf786125af0caf 958928 mail extra 
mew-beta_6.0.50~0.20080411.orig.tar.gz
 f257ec2d825a6674fc098fe387a675e4 51840 mail extra 
mew-beta_6.0.50~0.20080411-1.diff.gz
 81e2e86dbe52b329a786b5b207b6dcc4 776174 mail extra 
mew-beta_6.0.50~0.20080411-1_all.deb
 55ca4530f044675c932785cb45a56ad5 59668 mail extra 
mew-beta-bin_6.0.50~0.20080411-1_i386.deb

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

iD8DBQFIAEbQgV4LPvpMUpgRAqteAJsGPa1/DctQFDkd8ejpPjgbuh0JmwCfbBCG
fA2oEV27mdIk+ks2999UVuk=
=Oxnb
-END PGP SIGNATURE-


Accepted:
mew-beta-bin_6.0.50~0.20080411-1_i386.deb
  to pool/main/m/mew-beta/mew-beta-bin_6.0.50~0.20080411-1_i386.deb
mew-beta_6.0.50~0.20080411-1.diff.gz
  to pool/main/m/mew-beta/mew-beta_6.0.50~0.20080411-1.diff.gz
mew-beta_6.0.50~0.20080411-1.dsc
  to pool/main/m/mew-beta/mew-beta_6.0.50~0.20080411-1.dsc
mew-beta_6.0.50~0.20080411-1_all.deb
  to pool/main/m/mew-beta/mew-beta_6.0.50~0.20080411-1_all.deb
mew-beta_6.0.50~0.20080411.orig.tar.gz
  to pool/main/m/mew-beta/mew-beta_6.0.50~0.20080411.orig.tar.gz


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



Accepted pekwm 0.1.5-1.4 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 02:01:51 +0100
Source: pekwm
Binary: pekwm
Architecture: source i386
Version: 0.1.5-1.4
Distribution: unstable
Urgency: medium
Maintainer: Nicolas Szalay [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 pekwm  - Fast  Light WindowManager
Closes: 474871
Changes: 
 pekwm (0.1.5-1.4) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix FTBFS with GCC 4.3 (Closes: #474871)
   * Bump Standards-Version to 3.7.3.
Checksums-Sha1: 
 95355b342567a85df4242070a1c8c17540cb3814 1009 pekwm_0.1.5-1.4.dsc
 5c17ffea4d62fca223bdbf4c2e6dfe31df03a6e1 67111 pekwm_0.1.5-1.4.diff.gz
 0c0e49c5c7259f9ed338484f035eb54ee79b809c 311586 pekwm_0.1.5-1.4_i386.deb
Checksums-Sha256: 
 ff97ee5498bcde740df385fa73da473be2ca84a761b4fe01d2889485378f01ea 1009 
pekwm_0.1.5-1.4.dsc
 7f98ff89eeedae0c18c852c4284bebd359d8a1bc161df1fe5e5fe45c2502274c 67111 
pekwm_0.1.5-1.4.diff.gz
 de82810c5d1c6ea234a91d0923b2dac016e544415b99188f7ce3eea34f382bf3 311586 
pekwm_0.1.5-1.4_i386.deb
Files: 
 9dd0c28232bf43833fcbe20ba86b28ef 1009 x11 optional pekwm_0.1.5-1.4.dsc
 ea4b0ffeea32f1c26204d3ee0c49acd1 67111 x11 optional pekwm_0.1.5-1.4.diff.gz
 08a24d52a6b2a8487c5438ccc6d16ac8 311586 x11 optional pekwm_0.1.5-1.4_i386.deb

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

iD8DBQFIAEpm+C5cwEsrK54RAm6HAJ9uTFTCDZOybfF487Z49wZnToB7KgCfVjLq
bjzNnc5A3V9ylHPCcIiGUBk=
=gedo
-END PGP SIGNATURE-


Accepted:
pekwm_0.1.5-1.4.diff.gz
  to pool/main/p/pekwm/pekwm_0.1.5-1.4.diff.gz
pekwm_0.1.5-1.4.dsc
  to pool/main/p/pekwm/pekwm_0.1.5-1.4.dsc
pekwm_0.1.5-1.4_i386.deb
  to pool/main/p/pekwm/pekwm_0.1.5-1.4_i386.deb


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



Accepted mlview 0.9.0-2.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 01:49:27 +0100
Source: mlview
Binary: mlview
Architecture: source i386
Version: 0.9.0-2.1
Distribution: unstable
Urgency: medium
Maintainer: Sebastien Bacher [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 mlview - An xml editor for GNOME environment
Closes: 474854
Changes: 
 mlview (0.9.0-2.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Add '91_gcc_4.3_includes.patch' patch to fix FTBFS with GCC 4.3 (Closes:
 #474854)
   * Bump Standards-Version to 3.7.3.
Checksums-Sha1: 
 37e545b3c2c79ee3c983a9d0499931d87faa9428 1309 mlview_0.9.0-2.1.dsc
 72daace1234e70e444c14f01a27c9038ae42b4f0 4222 mlview_0.9.0-2.1.diff.gz
 b94ba56db6d3d4ddaae53d5901ddac9349e0f78d 821156 mlview_0.9.0-2.1_i386.deb
Checksums-Sha256: 
 a733d5c7768d9aab60d7a9189c58e30b9eeb2fa81b2b999f1256436b4d37e80e 1309 
mlview_0.9.0-2.1.dsc
 57942848153cf8c5a3a4769d119d18c66d8a2d9ba63b587457cd83f0902620b7 4222 
mlview_0.9.0-2.1.diff.gz
 e3c65d05351ad607d1a8de3ee1d25525f13983882bc20d6db5028a7ef6a56656 821156 
mlview_0.9.0-2.1_i386.deb
Files: 
 4861781d6729a182ae4dddb0629c4886 1309 editors optional mlview_0.9.0-2.1.dsc
 8705e27613a8bd841720b3f7e77233fd 4222 editors optional mlview_0.9.0-2.1.diff.gz
 44f14a6c4cee43e6a3ff38588daead69 821156 editors optional 
mlview_0.9.0-2.1_i386.deb

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

iD8DBQFIAEnq+C5cwEsrK54RAt83AKCaaCN5aYgiinjsoGaq5wYqq+j1QwCfXHbi
EYtC6avox6ad4BASVLmJ+L4=
=k3/F
-END PGP SIGNATURE-


Accepted:
mlview_0.9.0-2.1.diff.gz
  to pool/main/m/mlview/mlview_0.9.0-2.1.diff.gz
mlview_0.9.0-2.1.dsc
  to pool/main/m/mlview/mlview_0.9.0-2.1.dsc
mlview_0.9.0-2.1_i386.deb
  to pool/main/m/mlview/mlview_0.9.0-2.1_i386.deb


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



Accepted libbuffy 1.1-1.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 01:44:26 +0100
Source: libbuffy
Binary: libbuffy-dev
Architecture: source i386
Version: 1.1-1.1
Distribution: unstable
Urgency: medium
Maintainer: Enrico Zini [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 libbuffy-dev - Base functions for building mailbox summary applications
Closes: 474850
Changes: 
 libbuffy (1.1-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix FTBFS with GCC 4.3 (Closes: #474850)
Checksums-Sha1: 
 836d9ecc9f47f8a04e844f9f352cbef696598a93 1283 libbuffy_1.1-1.1.dsc
 49f16e7f462617d7ab94d79ee275d631979f 2607 libbuffy_1.1-1.1.diff.gz
 baecee7c648594326aefb9693b0aa29d1d8f35b1 153880 libbuffy-dev_1.1-1.1_i386.deb
Checksums-Sha256: 
 280f0b5bb7b12348c96982093ff024151c0b7c11c03421068377570647ba5d5c 1283 
libbuffy_1.1-1.1.dsc
 6f0cd8f665023e461752b9c3b4fb39b3eb8737a0e33cb4d67cf6c2247cecddd9 2607 
libbuffy_1.1-1.1.diff.gz
 b89eb671a936603fdd934bdd6d8e490a3bdcfd55afd437da4802e51d4406c433 153880 
libbuffy-dev_1.1-1.1_i386.deb
Files: 
 6e4de2af5e3601f6bb977cff18266eea 1283 - optional libbuffy_1.1-1.1.dsc
 c539720562c73efa1bda0368831df7e4 2607 - optional libbuffy_1.1-1.1.diff.gz
 21f8f05b62cf6e00ab88dc528c61afc2 153880 libdevel optional 
libbuffy-dev_1.1-1.1_i386.deb

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

iD8DBQFIAEfB+C5cwEsrK54RAmFZAJ0ahtm555kXm0VNsoay3B95plw6mgCglNP3
eR+/DygAieuLGF4E6mB44w0=
=QMzA
-END PGP SIGNATURE-


Accepted:
libbuffy-dev_1.1-1.1_i386.deb
  to pool/main/libb/libbuffy/libbuffy-dev_1.1-1.1_i386.deb
libbuffy_1.1-1.1.diff.gz
  to pool/main/libb/libbuffy/libbuffy_1.1-1.1.diff.gz
libbuffy_1.1-1.1.dsc
  to pool/main/libb/libbuffy/libbuffy_1.1-1.1.dsc


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



Accepted scim-pinyin 0.5.0-4.1 (source i386 all)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 02:07:04 +0100
Source: scim-pinyin
Binary: scim-pinyin scim-chinese
Architecture: source i386 all
Version: 0.5.0-4.1
Distribution: unstable
Urgency: medium
Maintainer: Ming Hua [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 scim-chinese - smart pinyin IM engine for SCIM (transitional package)
 scim-pinyin - smart pinyin IM engine for SCIM platform
Closes: 441594
Changes: 
 scim-pinyin (0.5.0-4.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Add '20_gcc_4.3.dpatch' to fix FTBFS with GCC 4.3 (Closes: #441594)
Checksums-Sha1: 
 088154e3b7973c56548a8d63db7ba17784c2ecb6 1294 scim-pinyin_0.5.0-4.1.dsc
 2ea54318fcb13c17fa78c8056eb6053b93d6a845 6201 scim-pinyin_0.5.0-4.1.diff.gz
 1a1c432915af2b81121b5eb7e88337cdf7cb669f 2256980 scim-pinyin_0.5.0-4.1_i386.deb
 4fe2ec95b0b6337a695197ddae5bf8a3b0ee5b57 6966 scim-chinese_0.5.0-4.1_all.deb
Checksums-Sha256: 
 d34e35e5a01dc4d5bf37a3be72b9a94845fa1fafbf17a0c6b7a5f1015b970dc7 1294 
scim-pinyin_0.5.0-4.1.dsc
 1987bfb5dd7436b8409695556b0f6f102ca4190adff0f2a890fa13948af63f82 6201 
scim-pinyin_0.5.0-4.1.diff.gz
 f092af5d6b7df3e36e4dedae50d8f5caab8194f0a1535b744aeb872c6f32dee6 2256980 
scim-pinyin_0.5.0-4.1_i386.deb
 0be9368059505290fb0053b636448cf24f9f80b20656f5b2d8857cc159dd1388 6966 
scim-chinese_0.5.0-4.1_all.deb
Files: 
 7ae5a82761b95ff4fcc009597a39447e 1294 utils optional scim-pinyin_0.5.0-4.1.dsc
 d57cc0218c205ec1c6856e3a6df407e9 6201 utils optional 
scim-pinyin_0.5.0-4.1.diff.gz
 539ba2195bf9fff871724178e1bd1f0b 2256980 utils optional 
scim-pinyin_0.5.0-4.1_i386.deb
 d4be6f352058f06bbf5528120b87e9a9 6966 utils optional 
scim-chinese_0.5.0-4.1_all.deb

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

iD8DBQFIAEsm+C5cwEsrK54RAm+cAJ9Ws/aPua52P7SAALHClYCsP0OjNwCgqrCH
tVETU2qKJTGVcl1JleFNRoU=
=BCCC
-END PGP SIGNATURE-


Accepted:
scim-chinese_0.5.0-4.1_all.deb
  to pool/main/s/scim-pinyin/scim-chinese_0.5.0-4.1_all.deb
scim-pinyin_0.5.0-4.1.diff.gz
  to pool/main/s/scim-pinyin/scim-pinyin_0.5.0-4.1.diff.gz
scim-pinyin_0.5.0-4.1.dsc
  to pool/main/s/scim-pinyin/scim-pinyin_0.5.0-4.1.dsc
scim-pinyin_0.5.0-4.1_i386.deb
  to pool/main/s/scim-pinyin/scim-pinyin_0.5.0-4.1_i386.deb


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



Accepted wfnetobjs 0.2.2-2.2 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 02:52:49 +0100
Source: wfnetobjs
Binary: libwfnetobjs0-dev libwfnetobjs0c2
Architecture: source i386
Version: 0.2.2-2.2
Distribution: unstable
Urgency: medium
Maintainer: Jean-Michel Kelbert [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 libwfnetobjs0-dev - The WallFire modular firewalling application library - 
developmen
 libwfnetobjs0c2 - The WallFire modular firewalling application library - 
runtime fi
Closes: 474857
Changes: 
 wfnetobjs (0.2.2-2.2) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix FTBFS with GCC 4.3 (Closes: #474857)
   * Use ${binary:Version} instead of ${Source-Version}.
Checksums-Sha1: 
 d0070d531d56c757d8cedffb2cade0bcc9960ca6 996 wfnetobjs_0.2.2-2.2.dsc
 8c6c938d956b008e525edaec1b1e5e2899468906 19609 wfnetobjs_0.2.2-2.2.diff.gz
 70a50dbf50bffe2bd61e8ad1b9fd63aaf76a0824 219142 
libwfnetobjs0-dev_0.2.2-2.2_i386.deb
 e545ee7e02303022944ef0f2b1b3bf21c3d2f630 166088 
libwfnetobjs0c2_0.2.2-2.2_i386.deb
Checksums-Sha256: 
 d2dd36b46025ac146699bed45bb98bbb9329a788e8725053aa9e17948ba17711 996 
wfnetobjs_0.2.2-2.2.dsc
 42f0db5105dd4f6f049297c6144631363861e28d8f5d0167312edd9b88ad253e 19609 
wfnetobjs_0.2.2-2.2.diff.gz
 19df2388eda0f6f8ff5e64bb29862204c9ba9726785420fb9c97c656494500a1 219142 
libwfnetobjs0-dev_0.2.2-2.2_i386.deb
 34f93b67a73852aa0191be55340399ecac911717fbf249b3397913c87805f9e8 166088 
libwfnetobjs0c2_0.2.2-2.2_i386.deb
Files: 
 71de93462c95f494f665d6e8e90fd393 996 - optional wfnetobjs_0.2.2-2.2.dsc
 9b530d7614bf9a4730f0475efe9a86e3 19609 - optional wfnetobjs_0.2.2-2.2.diff.gz
 daf7636105a2132d5470b0d4dee945a8 219142 devel optional 
libwfnetobjs0-dev_0.2.2-2.2_i386.deb
 4ad324aeec9167e68aef4635792401a5 166088 libs optional 
libwfnetobjs0c2_0.2.2-2.2_i386.deb

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

iD8DBQFIAE1k+C5cwEsrK54RAmBpAKDS9QqrVCBnMvOSn3m9/42ELXSrGgCfVk90
v6g3i9x67JvqgjotyW+/JiM=
=QObe
-END PGP SIGNATURE-


Accepted:
libwfnetobjs0-dev_0.2.2-2.2_i386.deb
  to pool/main/w/wfnetobjs/libwfnetobjs0-dev_0.2.2-2.2_i386.deb
libwfnetobjs0c2_0.2.2-2.2_i386.deb
  to pool/main/w/wfnetobjs/libwfnetobjs0c2_0.2.2-2.2_i386.deb
wfnetobjs_0.2.2-2.2.diff.gz
  to pool/main/w/wfnetobjs/wfnetobjs_0.2.2-2.2.diff.gz
wfnetobjs_0.2.2-2.2.dsc
  to pool/main/w/wfnetobjs/wfnetobjs_0.2.2-2.2.dsc


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



Accepted txt2man 1.5.5-1.1 (source all)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 03:26:26 +0100
Source: txt2man
Binary: txt2man
Architecture: source all
Version: 1.5.5-1.1
Distribution: unstable
Urgency: medium
Maintainer: Fredrik Steen [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 txt2man- Converts flat ASCII text to man page format
Closes: 473696
Changes: 
 txt2man (1.5.5-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashisms in 'bookman' script (Closes: #473696)
Checksums-Sha1: 
 477495cf3b2ec869a7b8ffd5729c358779aea9fa 1041 txt2man_1.5.5-1.1.dsc
 0285d8137e29b41e74fb3cf3d821e554f6a01f67 2834 txt2man_1.5.5-1.1.diff.gz
 ab8521e96887caf3a580e5bcc9abe24d04529f26 15412 txt2man_1.5.5-1.1_all.deb
Checksums-Sha256: 
 fefe55c087e2367557ce8b9e42ef81fb328829a4f9ef688c2e9ada73414eb356 1041 
txt2man_1.5.5-1.1.dsc
 05cd3e9cccdb81e0c8eae5b78418bd90de191429aa3e268271b66761c9180cc4 2834 
txt2man_1.5.5-1.1.diff.gz
 381919b4d8e2b01abb20cd150e49828abd8089c0b82a256221136468e90e8ccd 15412 
txt2man_1.5.5-1.1_all.deb
Files: 
 dbc11efe936e83989e2196d0809f9002 1041 text optional txt2man_1.5.5-1.1.dsc
 f30c2e913b38fab9a1724caffa60c2aa 2834 text optional txt2man_1.5.5-1.1.diff.gz
 f833e2a611bccf3f81cda2f0a27d3ee0 15412 text optional txt2man_1.5.5-1.1_all.deb

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

iD8DBQFIAFBC+C5cwEsrK54RAlLKAKDJzJ2jD/8ExlKDiRF5jJJ2dHZglACgjXOV
F5jO5SaMI2cNoINrVBrwe7U=
=WCV+
-END PGP SIGNATURE-


Accepted:
txt2man_1.5.5-1.1.diff.gz
  to pool/main/t/txt2man/txt2man_1.5.5-1.1.diff.gz
txt2man_1.5.5-1.1.dsc
  to pool/main/t/txt2man/txt2man_1.5.5-1.1.dsc
txt2man_1.5.5-1.1_all.deb
  to pool/main/t/txt2man/txt2man_1.5.5-1.1_all.deb


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



Accepted gnomoradio 0.15.1-5.2 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 03:08:26 +0100
Source: gnomoradio
Binary: gnomoradio libroboradio-dev libroboradio0c2 librainbow-dev librainbow0c2
Architecture: source i386
Version: 0.15.1-5.2
Distribution: unstable
Urgency: medium
Maintainer: Riccardo Setti [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 gnomoradio - free peer to peer music application
 librainbow-dev - development file for librainbow0c2
 librainbow0c2 - the gnomoradio rainbow lib
 libroboradio-dev - Development file for libroboradio0c2
 libroboradio0c2 - the gnomoradio roboradio library
Closes: 474802
Changes: 
 gnomoradio (0.15.1-5.2) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix FTBFS with GCC 4.3 (Closes: #474802)
   * debian/control:
 - Bump Standards-Version to 3.7.3.
 - Change ${Source-Version} to ${binary:Version}.
Checksums-Sha1: 
 53c1a5b984aa0152c34f37a05c496573cd9973aa 1212 gnomoradio_0.15.1-5.2.dsc
 2c6239a6eb245c1b27cc17fa327bba32cc2eb369 19892 gnomoradio_0.15.1-5.2.diff.gz
 9502d6c32d4f7acb4d9b4b4f637583b0430d6e35 192210 gnomoradio_0.15.1-5.2_i386.deb
 bef22d05a85bb63ee5419e189325de8d69af1e86 10014 
libroboradio-dev_0.15.1-5.2_i386.deb
 f2e7551592d3a276135f90ff03251094b04c1da9 179882 
libroboradio0c2_0.15.1-5.2_i386.deb
 444ac20e5e6fe7c298273b477e8a9e0d900fd711 7638 
librainbow-dev_0.15.1-5.2_i386.deb
 34e3ff1b5b00aabe30fec0461d19507d2ac7404f 79728 
librainbow0c2_0.15.1-5.2_i386.deb
Checksums-Sha256: 
 772290059d2ab0fee5876af2e0e174d176437d3666333d59fdbac9754e93128e 1212 
gnomoradio_0.15.1-5.2.dsc
 c5843b52ea238a9f42a7c1d31fbc6c8b10dbc07b9adbda360ca3a7736ad55baa 19892 
gnomoradio_0.15.1-5.2.diff.gz
 01ae588529f9ba3f554753597cf9787d3bd6bedef1da1c8c0fb590efa11c0474 192210 
gnomoradio_0.15.1-5.2_i386.deb
 57df87ade9398fa3d2330e7ab15b0a568b31d34ebfeb197c6ad50edeb4852a02 10014 
libroboradio-dev_0.15.1-5.2_i386.deb
 1b6825a3c1de3a706dec70b9e4edccf49a8476f1126ba917a2ee6503e948ec3f 179882 
libroboradio0c2_0.15.1-5.2_i386.deb
 05c22bcaad96f3584967824186eae19db096a7ee9150891d087f77af4dd037d5 7638 
librainbow-dev_0.15.1-5.2_i386.deb
 342c401520b7eced77699671a9beb82d8ab6e8f7cbfb1377683d9e74969b5590 79728 
librainbow0c2_0.15.1-5.2_i386.deb
Files: 
 2eea9f8432c6cbcc2537ae8e5e9beb29 1212 sound optional gnomoradio_0.15.1-5.2.dsc
 3800b462f785cf1f6e2aece32c1fe2a1 19892 sound optional 
gnomoradio_0.15.1-5.2.diff.gz
 e3321a82b0f3e60cf5c8e2015388a5e6 192210 sound optional 
gnomoradio_0.15.1-5.2_i386.deb
 fdadfec57284a53e424318266482d38c 10014 devel optional 
libroboradio-dev_0.15.1-5.2_i386.deb
 75a06d92f7868be13ff155b18a682ffc 179882 libs optional 
libroboradio0c2_0.15.1-5.2_i386.deb
 0600489b21b5bce71fd60001a50e7bc4 7638 devel optional 
librainbow-dev_0.15.1-5.2_i386.deb
 52f9c887a937c28be4bd8dd8db2eb3b0 79728 libs optional 
librainbow0c2_0.15.1-5.2_i386.deb

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

iD8DBQFIAE+L+C5cwEsrK54RAhgyAKC6MumYPczatjEMrJP7xK+uBBXybgCgrFoy
YiJYtOtGJCuOGPoZxgGU1XA=
=vum6
-END PGP SIGNATURE-


Accepted:
gnomoradio_0.15.1-5.2.diff.gz
  to pool/main/g/gnomoradio/gnomoradio_0.15.1-5.2.diff.gz
gnomoradio_0.15.1-5.2.dsc
  to pool/main/g/gnomoradio/gnomoradio_0.15.1-5.2.dsc
gnomoradio_0.15.1-5.2_i386.deb
  to pool/main/g/gnomoradio/gnomoradio_0.15.1-5.2_i386.deb
librainbow-dev_0.15.1-5.2_i386.deb
  to pool/main/g/gnomoradio/librainbow-dev_0.15.1-5.2_i386.deb
librainbow0c2_0.15.1-5.2_i386.deb
  to pool/main/g/gnomoradio/librainbow0c2_0.15.1-5.2_i386.deb
libroboradio-dev_0.15.1-5.2_i386.deb
  to pool/main/g/gnomoradio/libroboradio-dev_0.15.1-5.2_i386.deb
libroboradio0c2_0.15.1-5.2_i386.deb
  to pool/main/g/gnomoradio/libroboradio0c2_0.15.1-5.2_i386.deb


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



Accepted xmail 1.25-2.1 (source all i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 04:06:09 +0100
Source: xmail
Binary: xmail xmail-doc
Architecture: source all i386
Version: 1.25-2.1
Distribution: unstable
Urgency: medium
Maintainer: Radu Spineanu [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 xmail  - advanced, fast and reliable ESMTP/POP3 mail server
 xmail-doc  - documentation for xmail
Closes: 401854 472892
Changes: 
 xmail (1.25-2.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashism in init.d script (Closes: #472892)
   * Fix FTBFS on GNU/kFreeBSD (Closes: #401854)
Checksums-Sha1: 
 23456ce20d95e2874bc0f5c63f948458b88d1ebb 1001 xmail_1.25-2.1.dsc
 9749e57ab87e4602be19196a603a7d1e81c5a004 33311 xmail_1.25-2.1.diff.gz
 4627634372b25e9b0abf81eff9a809c793a612ba 188960 xmail-doc_1.25-2.1_all.deb
 8c13aab2d1dc0a10584fe0b24b34baf97454285b 236936 xmail_1.25-2.1_i386.deb
Checksums-Sha256: 
 039fe2a51e7198cf7d2eed91abab4acfc51043dda8102a09f167f6c081c559b5 1001 
xmail_1.25-2.1.dsc
 65733c8c5ed0e9d6ad235bbe2a269e72c63fc1b7244c85cab77ed9d674fea18e 33311 
xmail_1.25-2.1.diff.gz
 39f45dad89409152dc1619d6721fcaf2932ee1adb79bb481f929be5d2c4b4f1e 188960 
xmail-doc_1.25-2.1_all.deb
 b6a62cc69e1a22c9b8052f53703f9d1d3401562fe3b4f215e26c465fb51ee0fc 236936 
xmail_1.25-2.1_i386.deb
Files: 
 9ca37a4cea6a44ef866e77b6fc2d9c7d 1001 mail extra xmail_1.25-2.1.dsc
 a32c35ec8e6c749bac6d1bf9944d14e9 33311 mail extra xmail_1.25-2.1.diff.gz
 e4aabfcaf62ac5e6af88d17921d40eac 188960 mail extra xmail-doc_1.25-2.1_all.deb
 7654b68dbc1d659efc1b21340d2a28d2 236936 mail extra xmail_1.25-2.1_i386.deb

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

iD8DBQFIAFLb+C5cwEsrK54RAtfGAJ9AgYlt64fbCZWlTdQDgzvsaquwpQCeMYog
PU5nZcaIcp6HoWdNm+uV8uA=
=WJ5A
-END PGP SIGNATURE-


Accepted:
xmail-doc_1.25-2.1_all.deb
  to pool/main/x/xmail/xmail-doc_1.25-2.1_all.deb
xmail_1.25-2.1.diff.gz
  to pool/main/x/xmail/xmail_1.25-2.1.diff.gz
xmail_1.25-2.1.dsc
  to pool/main/x/xmail/xmail_1.25-2.1.dsc
xmail_1.25-2.1_i386.deb
  to pool/main/x/xmail/xmail_1.25-2.1_i386.deb


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



Accepted tiger 1:3.2.2-3.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 04:35:43 +0100
Source: tiger
Binary: tiger tiger-otheros
Architecture: source i386
Version: 1:3.2.2-3.1
Distribution: unstable
Urgency: medium
Maintainer: Javier Fernandez-Sanguino Pen~a [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 tiger  - Report system security vulnerabilities
 tiger-otheros - Scripts to run Tiger in other operating systems
Closes: 468700
Changes: 
 tiger (1:3.2.2-3.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashism in 'tigercron' script (Closes: #468700)
   * Bump Standards-Version to 3.7.3.
Checksums-Sha1: 
 db90f9d91280c0facb3522dac02139ddd6261ae8 1004 tiger_3.2.2-3.1.dsc
 4ba6428207022b4a4e72474a6803bf5f0fa15725 105979 tiger_3.2.2-3.1.diff.gz
 f3191b806e4852ddb9d10c311cd21fcfb67ef0d4 569338 tiger_3.2.2-3.1_i386.deb
 c96733ea51e4b880bb4c1ff33bdcb819ad540516 486312 
tiger-otheros_3.2.2-3.1_i386.deb
Checksums-Sha256: 
 971a460bb705eca01068ac2593107e65b13ae4ea6ede302be7909cd53a90d69c 1004 
tiger_3.2.2-3.1.dsc
 6f27ddfae96a6e6be3844c1c89319a353b7d8c74536fb99dce5c0218449dbcc5 105979 
tiger_3.2.2-3.1.diff.gz
 a557d41da653a8c59c3813e95151605435c63bb49d2edaf7bc5e1994c18cfa02 569338 
tiger_3.2.2-3.1_i386.deb
 21ebddff4e18288d847d8fee3c52d1acb1bbd0784effcde61acb83702ab030a4 486312 
tiger-otheros_3.2.2-3.1_i386.deb
Files: 
 f0482bb061dac42f11cead67121cde31 1004 admin optional tiger_3.2.2-3.1.dsc
 9cc938920c84d481cfaf60b62aa31e14 105979 admin optional tiger_3.2.2-3.1.diff.gz
 64e3f0213c8227cff4e7b1ba164b36b6 569338 admin optional tiger_3.2.2-3.1_i386.deb
 808f4b03e8c1bf3c8cf4a9952fcdefc4 486312 admin optional 
tiger-otheros_3.2.2-3.1_i386.deb

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

iD8DBQFIAFUJ+C5cwEsrK54RAjUKAJ9lw6Vwg0IaomK3s6Baw6RA8sGNwgCgxzUT
kpdnmCQapWsgOszZW8b3dYA=
=/RvK
-END PGP SIGNATURE-


Accepted:
tiger-otheros_3.2.2-3.1_i386.deb
  to pool/main/t/tiger/tiger-otheros_3.2.2-3.1_i386.deb
tiger_3.2.2-3.1.diff.gz
  to pool/main/t/tiger/tiger_3.2.2-3.1.diff.gz
tiger_3.2.2-3.1.dsc
  to pool/main/t/tiger/tiger_3.2.2-3.1.dsc
tiger_3.2.2-3.1_i386.deb
  to pool/main/t/tiger/tiger_3.2.2-3.1_i386.deb


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



Accepted ibackup 2.27-4.1 (source all)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 04:46:39 +0100
Source: ibackup
Binary: ibackup
Architecture: source all
Version: 2.27-4.1
Distribution: unstable
Urgency: medium
Maintainer: Andre Luis Lopes [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 ibackup- Automated backups (even remote) of machine configurations
Closes: 468684
Changes: 
 ibackup (2.27-4.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashism in 'sysconf' script (Closes: #468684)
   * Move debhelper from Build-Depends-Indep to Build-Depends.
   * debian/control:
 - Bump Standards-Version to 3.7.3.
 - Use Homepage: field for upstream URL.
Checksums-Sha1: 
 49c6ce2efaa75cbf71373d6a8d52a728974e9d85 985 ibackup_2.27-4.1.dsc
 c91cf174f965beb4a4db98677379f27804d1315d 4240 ibackup_2.27-4.1.diff.gz
 add58fbd3d07509b411b59328c1460fcdca43fc9 16308 ibackup_2.27-4.1_all.deb
Checksums-Sha256: 
 660086c78d5d56f712de339ac08ce9bf5c2b9f03168dec8280f9fd847970307a 985 
ibackup_2.27-4.1.dsc
 cedea7301c14987a3924206d54109008fe1a244c1ad206fa42ff211ce6d7a6a9 4240 
ibackup_2.27-4.1.diff.gz
 abaed6a61cb494e7539a01f5416aa25159c96f1b42bff232c7c62df36bdd827d 16308 
ibackup_2.27-4.1_all.deb
Files: 
 d2e10412ba0e76f5922bb4676a0b8843 985 admin optional ibackup_2.27-4.1.dsc
 b11d35887e298c240bcd982dd6a2caaf 4240 admin optional ibackup_2.27-4.1.diff.gz
 ec161daf14fe5d86a3cd606e391bf4d2 16308 admin optional ibackup_2.27-4.1_all.deb

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

iD8DBQFIAFW5+C5cwEsrK54RApk9AKCYgoNbJPitW3fh+rRSbDM3J85ZbwCcDEzj
hyZgm+lK9iZbk7vUfEN1xRY=
=JOEL
-END PGP SIGNATURE-


Accepted:
ibackup_2.27-4.1.diff.gz
  to pool/main/i/ibackup/ibackup_2.27-4.1.diff.gz
ibackup_2.27-4.1.dsc
  to pool/main/i/ibackup/ibackup_2.27-4.1.dsc
ibackup_2.27-4.1_all.deb
  to pool/main/i/ibackup/ibackup_2.27-4.1_all.deb


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



Accepted php-clamavlib 0.13-1.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 04:26:31 +0100
Source: php-clamavlib
Binary: php5-clamavlib
Architecture: source i386
Version: 0.13-1.1
Distribution: unstable
Urgency: medium
Maintainer: Jonas Genannt [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 php5-clamavlib - PHP ClamAV Lib - ClamAV Interface for PHP5 Scripts
Closes: 472235
Changes: 
 php-clamavlib (0.13-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashism in postinst script (Closes: #472235)
   * Bump Standards-Version to 3.7.3.
Checksums-Sha1: 
 9e6037c06557a7795c990fdbdf69744b51805b8a 1030 php-clamavlib_0.13-1.1.dsc
 3aa070c2572cd4dd7a9e72e32ba80d8d02f80038 71801 php-clamavlib_0.13-1.1.diff.gz
 93c8a37f2f249b08da08df65f5f6908a9a123e37 11266 php5-clamavlib_0.13-1.1_i386.deb
Checksums-Sha256: 
 3b8931f26fc077e4a3ea147299c2b6946d1d8a438c028fc2d7ef35a77198c0b8 1030 
php-clamavlib_0.13-1.1.dsc
 c8ef20130ea7d61a05ff87e7199951633233bd3d054b754e750ca5d44bd190c1 71801 
php-clamavlib_0.13-1.1.diff.gz
 bdc0dee094a92f383bc81500401ab441314ea5fdc319ca51ac37d231c5ed42b8 11266 
php5-clamavlib_0.13-1.1_i386.deb
Files: 
 3afd7fa3743b484151e28b3126477101 1030 web optional php-clamavlib_0.13-1.1.dsc
 18a8a1f3deed70c751c9ca6f0f0f85fd 71801 web optional 
php-clamavlib_0.13-1.1.diff.gz
 00e64f423d6767e3a2e9a3c6dd62bc8f 11266 web optional 
php5-clamavlib_0.13-1.1_i386.deb

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

iD8DBQFIAFPz+C5cwEsrK54RAqNGAKCZa0frrT9WIL3nRc0IA1Se7y6b2ACg2/dD
Ritrgni1x9pQyXTJd/GZaDM=
=weUt
-END PGP SIGNATURE-


Accepted:
php-clamavlib_0.13-1.1.diff.gz
  to pool/main/p/php-clamavlib/php-clamavlib_0.13-1.1.diff.gz
php-clamavlib_0.13-1.1.dsc
  to pool/main/p/php-clamavlib/php-clamavlib_0.13-1.1.dsc
php5-clamavlib_0.13-1.1_i386.deb
  to pool/main/p/php-clamavlib/php5-clamavlib_0.13-1.1_i386.deb


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



Accepted epiphany-extensions 2.20.3-1.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 02:59:25 +0100
Source: epiphany-extensions
Binary: epiphany-extensions
Architecture: source i386
Version: 2.20.3-1.1
Distribution: unstable
Urgency: medium
Maintainer: Josselin Mouette [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 epiphany-extensions - Extensions for Epiphany web browser
Closes: 474812
Changes: 
 epiphany-extensions (2.20.3-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix FTBFS with GCC 4.3 (Closes: #474812)
Checksums-Sha1: 
 4f515b73e2a527945975095b919663e807c09681 1644 
epiphany-extensions_2.20.3-1.1.dsc
 1d795f8e8f21ca5ee98783c755ad7f994af9cadb 5743 
epiphany-extensions_2.20.3-1.1.diff.gz
 b04031a06743a70529e5ce899074106a9dc79eef 809438 
epiphany-extensions_2.20.3-1.1_i386.deb
Checksums-Sha256: 
 196204ee2e4bd8e77e9f598aa9437df1860dc53a3a013df2e5af4fbbd65bb358 1644 
epiphany-extensions_2.20.3-1.1.dsc
 71dcaab7db619a2f919b389205cf6551c17a360c7478fa7caf251fead2e9e217 5743 
epiphany-extensions_2.20.3-1.1.diff.gz
 6f2a045fef088b3354e94ba97f1cdd0df1c1e768cc821aff23d1cfbbc8d19e94 809438 
epiphany-extensions_2.20.3-1.1_i386.deb
Files: 
 c721b87d6892f8233b9b5ecc1604e976 1644 gnome optional 
epiphany-extensions_2.20.3-1.1.dsc
 284ca028a675c6c128ad699065526977 5743 gnome optional 
epiphany-extensions_2.20.3-1.1.diff.gz
 c6081e41b5787de5522b42ef7746d821 809438 gnome optional 
epiphany-extensions_2.20.3-1.1_i386.deb

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

iD8DBQFIAE6K+C5cwEsrK54RAl3cAKCeYOXfFp/MVYAsxaqLjXfoUdfJxACg0KIa
0RT6psYQKoAi+rQtPAttGG8=
=4BU4
-END PGP SIGNATURE-


Accepted:
epiphany-extensions_2.20.3-1.1.diff.gz
  to pool/main/e/epiphany-extensions/epiphany-extensions_2.20.3-1.1.diff.gz
epiphany-extensions_2.20.3-1.1.dsc
  to pool/main/e/epiphany-extensions/epiphany-extensions_2.20.3-1.1.dsc
epiphany-extensions_2.20.3-1.1_i386.deb
  to pool/main/e/epiphany-extensions/epiphany-extensions_2.20.3-1.1_i386.deb


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



Accepted slay 2.6.2+nmu1 (source all)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 04:15:12 +0100
Source: slay
Binary: slay
Architecture: source all
Version: 2.6.2+nmu1
Distribution: unstable
Urgency: medium
Maintainer: Paweł Więcek [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 slay   - Kills all of the user's processes
Closes: 472885
Changes: 
 slay (2.6.2+nmu1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashisms in 'slay' script (Closes: #472885)
Checksums-Sha1: 
 283f663199735ec2a17cdc361016d0914f4bc288 780 slay_2.6.2+nmu1.dsc
 7eea3d5d7a54b99616da9db001d460cac57fd4e3 13222 slay_2.6.2+nmu1.tar.gz
 501723b7566e5a85a37a3b4c44337406cd6596ae 11250 slay_2.6.2+nmu1_all.deb
Checksums-Sha256: 
 ae72858aba127c78769b595efc8afc1984ea1b2f744e78401105dbfb25857fe2 780 
slay_2.6.2+nmu1.dsc
 d48015a9e1fc4f70bc86d207607b9fd4a59de333ab2d2015ee70734cc276b434 13222 
slay_2.6.2+nmu1.tar.gz
 31a1497c5cc35b991b1ed76ce9ee764801cf78d77e9c3ef8d37028b01ebdd6c2 11250 
slay_2.6.2+nmu1_all.deb
Files: 
 57c4bf584f9f627d4b26032865a95c7f 780 admin optional slay_2.6.2+nmu1.dsc
 cae659c9593599d21c481deb8c8b30d4 13222 admin optional slay_2.6.2+nmu1.tar.gz
 5d900925cf1a8b7874a673cd1ff3cbbb 11250 admin optional slay_2.6.2+nmu1_all.deb

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

iD8DBQFIAFOm+C5cwEsrK54RAk/XAKCGwUasevF7+vjIPAaH2yz8IKUDvwCgnCFP
xh9+0GOjn1npVLOWkke6UFo=
=+az0
-END PGP SIGNATURE-


Accepted:
slay_2.6.2+nmu1.dsc
  to pool/main/s/slay/slay_2.6.2+nmu1.dsc
slay_2.6.2+nmu1.tar.gz
  to pool/main/s/slay/slay_2.6.2+nmu1.tar.gz
slay_2.6.2+nmu1_all.deb
  to pool/main/s/slay/slay_2.6.2+nmu1_all.deb


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



Accepted newsx 1.6-2.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 03:54:32 +0100
Source: newsx
Binary: newsx
Architecture: source i386
Version: 1.6-2.1
Distribution: unstable
Urgency: medium
Maintainer: Andreas Metzler [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 newsx  - An NNTP client for posting and fetching news
Closes: 473514
Changes: 
 newsx (1.6-2.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashism in postinst script (Closes: #473514)
   * debian/control:
 - Bump Standards-Version to 3.7.3.
 - Use Homepage: field for upstream URL.
Checksums-Sha1: 
 c071ff13447049975f0e88344bbe690141f6e5e2 999 newsx_1.6-2.1.dsc
 59f018f91caa4bbc593d10cab6754e0c9a704a07 105046 newsx_1.6-2.1.diff.gz
 89896fa80b3a6ffd0819de7d9bb3dd408d235996 147666 newsx_1.6-2.1_i386.deb
Checksums-Sha256: 
 88724b780993012234866f749045813351e1a21ba5ba8c692c40d5b2b3d17896 999 
newsx_1.6-2.1.dsc
 af736116c6d50a7d9b2537e18114634fc802a32cf1edcf53c9d01f2d16033374 105046 
newsx_1.6-2.1.diff.gz
 988e06d42b13d8bd8bb89e122a3c7856dd6d733499a765d62940485b5b9f9d77 147666 
newsx_1.6-2.1_i386.deb
Files: 
 159f1055fdb82721249a213f52e72dac 999 news extra newsx_1.6-2.1.dsc
 5283aa192f8b57b7981fdf6875287753 105046 news extra newsx_1.6-2.1.diff.gz
 0eb5280ae24c8c44c355b35e69eb9ea2 147666 news extra newsx_1.6-2.1_i386.deb

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

iD8DBQFIAFIg+C5cwEsrK54RAnG7AJ97aTdE+87iHljoVIxbn4MssVallgCdFssu
vxzoHtZY5zqQbDVePuut5QA=
=KRYz
-END PGP SIGNATURE-


Accepted:
newsx_1.6-2.1.diff.gz
  to pool/main/n/newsx/newsx_1.6-2.1.diff.gz
newsx_1.6-2.1.dsc
  to pool/main/n/newsx/newsx_1.6-2.1.dsc
newsx_1.6-2.1_i386.deb
  to pool/main/n/newsx/newsx_1.6-2.1_i386.deb


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



Accepted pvpgn 1.8.1-1.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 03:30:56 +0100
Source: pvpgn
Binary: pvpgn
Architecture: source i386
Version: 1.8.1-1.1
Distribution: unstable
Urgency: medium
Maintainer: Radu Spineanu [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 pvpgn  - Gaming server that emulates Battle.net(R)
Closes: 473690
Changes: 
 pvpgn (1.8.1-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashism in 'debian/pvpgn-support-installer' script
 (Closes: #473690)
   * debian/control:
 - Bump Standards-Version to 3.7.3.
 - Use Homepage: field for upstream homepage.
Checksums-Sha1: 
 282937de98e2d0b95280508ae39a8945ef01ee9d 1078 pvpgn_1.8.1-1.1.dsc
 4600e981865c505efd1230aec7b2a3a4a42edb4f 7054 pvpgn_1.8.1-1.1.diff.gz
 a9d0297891f5ff7c3b84904c8b5ebd72bf1694ae 767326 pvpgn_1.8.1-1.1_i386.deb
Checksums-Sha256: 
 4409682130d4b11c9c65b686579e5ead37050efca7acace7dfd5ed9fdf99b6c2 1078 
pvpgn_1.8.1-1.1.dsc
 e385fa38ea41bae913019e5917e35ca8621248ff09a11d872ba38e186d492204 7054 
pvpgn_1.8.1-1.1.diff.gz
 d4596a666e56379b7f63d5b5e08e055f30329964fa412065bed773fee8c3704b 767326 
pvpgn_1.8.1-1.1_i386.deb
Files: 
 5fe82d6d0e62c9eb7c33f7ddd769b036 1078 contrib/net optional pvpgn_1.8.1-1.1.dsc
 43cdb3442c0f7517ac12b38e0d3ad508 7054 contrib/net optional 
pvpgn_1.8.1-1.1.diff.gz
 250f0fa83ddab60c34d822490a101f80 767326 contrib/net optional 
pvpgn_1.8.1-1.1_i386.deb

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

iD8DBQFIAFFG+C5cwEsrK54RAqGpAJ4ib0R3ot50RVIKxqfsXY/D8B4CWgCcDJEQ
iVHM9HJSyCf//GYHVnjMd94=
=K6yZ
-END PGP SIGNATURE-


Accepted:
pvpgn_1.8.1-1.1.diff.gz
  to pool/contrib/p/pvpgn/pvpgn_1.8.1-1.1.diff.gz
pvpgn_1.8.1-1.1.dsc
  to pool/contrib/p/pvpgn/pvpgn_1.8.1-1.1.dsc
pvpgn_1.8.1-1.1_i386.deb
  to pool/contrib/p/pvpgn/pvpgn_1.8.1-1.1_i386.deb


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



Accepted gnome-orca 2.22.1-1.1 (source all)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 04:52:10 +0100
Source: gnome-orca
Binary: gnome-orca
Architecture: source all
Version: 2.22.1-1.1
Distribution: unstable
Urgency: medium
Maintainer: Mario Lang [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 gnome-orca - Scriptable screen reader
Closes: 468681
Changes: 
 gnome-orca (2.22.1-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Add '04_bashisms.patch' to fix bashisms in 'orca' script
 (Closes: #468681)
Checksums-Sha1: 
 53ab763b1ce43475de189aa8644bcbe43920ec66 1433 gnome-orca_2.22.1-1.1.dsc
 e047a00718ca030b094a38faee215c3a14fdfca8 5763 gnome-orca_2.22.1-1.1.diff.gz
 74b13ae75c4b08902083fc594fb2c73104f4f653 1682012 gnome-orca_2.22.1-1.1_all.deb
Checksums-Sha256: 
 349d92e4414fbd3b508cda073842a089314d9d99f9aad10d3bb40d68ce1cb5ce 1433 
gnome-orca_2.22.1-1.1.dsc
 a1425ff8fc4982e6f23d5736f7fcd402d7cd87a46e1323bedc9b1a7a2feb7521 5763 
gnome-orca_2.22.1-1.1.diff.gz
 8ea3f084dbdae93ea46803d346b5037f901a367f9ac48ce33484c558b2a1 1682012 
gnome-orca_2.22.1-1.1_all.deb
Files: 
 f3869d41352982055c5d451970e9b539 1433 gnome optional gnome-orca_2.22.1-1.1.dsc
 264574f99f930bc62a51486eea5d8639 5763 gnome optional 
gnome-orca_2.22.1-1.1.diff.gz
 4f9f4be6a6ac4a425462fc6812637aee 1682012 gnome optional 
gnome-orca_2.22.1-1.1_all.deb

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

iD8DBQFIAFZm+C5cwEsrK54RAtptAJ0eJN33x5+v0pmKxqOp/9Dk4LRPEACgoOoZ
oKqjQx5T9OZf9C5DmDsTJ60=
=zDVi
-END PGP SIGNATURE-


Accepted:
gnome-orca_2.22.1-1.1.diff.gz
  to pool/main/g/gnome-orca/gnome-orca_2.22.1-1.1.diff.gz
gnome-orca_2.22.1-1.1.dsc
  to pool/main/g/gnome-orca/gnome-orca_2.22.1-1.1.dsc
gnome-orca_2.22.1-1.1_all.deb
  to pool/main/g/gnome-orca/gnome-orca_2.22.1-1.1_all.deb


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



Accepted elog 2.6.3+r1764-1.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 04:28:55 +0100
Source: elog
Binary: elog
Architecture: source i386
Version: 2.6.3+r1764-1.1
Distribution: unstable
Urgency: medium
Maintainer: Recai Oktaş [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 elog   - Logbook system to manage notes through a Web interface
Closes: 472224
Changes: 
 elog (2.6.3+r1764-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashism in postinst script (Closes: #472224)
   * debian/control:
 - Bump Standards-Version to 3.7.3.
 - Use Homepage: field for upstream URL.
Checksums-Sha1: 
 a4b2926f7f67a15e494fc173afa4e8ed2aa4021a 1000 elog_2.6.3+r1764-1.1.dsc
 cca1833d24b38c3b0df0b67a97b74ba5d5e2e777 13269 elog_2.6.3+r1764-1.1.diff.gz
 f3a5811097e6e9a7478cf6144a22d894f7c49c8a 752062 elog_2.6.3+r1764-1.1_i386.deb
Checksums-Sha256: 
 181d6564f2fca2346447522936489f1f4155eb468266f48273f850ac97a5bb6e 1000 
elog_2.6.3+r1764-1.1.dsc
 ccbb9587bbea792ff2806bfe6ccfc8b1bfb9b695a3afdb3af317eb4aad1b20de 13269 
elog_2.6.3+r1764-1.1.diff.gz
 7a7c9eb1ac0b0028aa8e6f5cf4c22082d38fb508d037ab4b31b8359729039be1 752062 
elog_2.6.3+r1764-1.1_i386.deb
Files: 
 31bebdd2d740ffac38e05d6b10510e3f 1000 web optional elog_2.6.3+r1764-1.1.dsc
 4d0249ec90860dba0ab2ee5f8f354253 13269 web optional 
elog_2.6.3+r1764-1.1.diff.gz
 c2c8d22eb317ceeb1eb85b4fd28fa907 752062 web optional 
elog_2.6.3+r1764-1.1_i386.deb

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

iD8DBQFIAFQz+C5cwEsrK54RAqovAKDaROXqZOlgug3+waAnib682jjKlQCfdb4W
8+AzD8AljIEJYjDFpsMtO74=
=yNcZ
-END PGP SIGNATURE-


Accepted:
elog_2.6.3+r1764-1.1.diff.gz
  to pool/main/e/elog/elog_2.6.3+r1764-1.1.diff.gz
elog_2.6.3+r1764-1.1.dsc
  to pool/main/e/elog/elog_2.6.3+r1764-1.1.dsc
elog_2.6.3+r1764-1.1_i386.deb
  to pool/main/e/elog/elog_2.6.3+r1764-1.1_i386.deb


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



Accepted wu-ftpd 2.6.2-28.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 03:22:11 +0100
Source: wu-ftpd
Binary: wu-ftpd
Architecture: source i386
Version: 2.6.2-28.1
Distribution: unstable
Urgency: medium
Maintainer: Chris Butler [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 wu-ftpd- powerful and widely used FTP server
Closes: 473697
Changes: 
 wu-ftpd (2.6.2-28.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashism in postinst script (Closes: #473697)
   * Bump Standards-Version to 3.7.3.
Checksums-Sha1: 
 64d242359f325928bee3ede32fd6abcee0590199 994 wu-ftpd_2.6.2-28.1.dsc
 95f858f665913368d91a6d35798912610ad229cb 156891 wu-ftpd_2.6.2-28.1.diff.gz
 3bcf6230cd8b980c2c37a903d251b0a5ebe00765 280270 wu-ftpd_2.6.2-28.1_i386.deb
Checksums-Sha256: 
 54c0f6d9f99696fc0e717cee6c4ecf48a48b8a5509679009dbd01820cb2bfc99 994 
wu-ftpd_2.6.2-28.1.dsc
 90116d52f7dc1ebbed5768f74ad53e7c00de433621c188e410681ef7a8bb39f1 156891 
wu-ftpd_2.6.2-28.1.diff.gz
 dc51e1ad59736fe974af498e0cf96d7573b4005bffb7efda94c02de5eedda7d4 280270 
wu-ftpd_2.6.2-28.1_i386.deb
Files: 
 52d63becaf186c3dcbcb39f9809dd83c 994 net extra wu-ftpd_2.6.2-28.1.dsc
 4681ab5dc9c0b6ca1eec284dd1df630f 156891 net extra wu-ftpd_2.6.2-28.1.diff.gz
 e7404a94f34d6a4c4c43a11921fce069 280270 net extra wu-ftpd_2.6.2-28.1_i386.deb

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

iD8DBQFIAE/z+C5cwEsrK54RAqDvAKDIiOIKud7/51+Q4zLLV7wQaQ9pEQCdHLbN
z5JmG8+ggewPNCs+FhuvhPk=
=y720
-END PGP SIGNATURE-


Accepted:
wu-ftpd_2.6.2-28.1.diff.gz
  to pool/main/w/wu-ftpd/wu-ftpd_2.6.2-28.1.diff.gz
wu-ftpd_2.6.2-28.1.dsc
  to pool/main/w/wu-ftpd/wu-ftpd_2.6.2-28.1.dsc
wu-ftpd_2.6.2-28.1_i386.deb
  to pool/main/w/wu-ftpd/wu-ftpd_2.6.2-28.1_i386.deb


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



Accepted dhcpcd 1:3.2.3-1.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 03:50:59 +0100
Source: dhcpcd
Binary: dhcpcd
Architecture: source i386
Version: 1:3.2.3-1.1
Distribution: unstable
Urgency: medium
Maintainer: Simon Kelley [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 dhcpcd - DHCP client for automatically configuring IPv4 networking
Closes: 473515
Changes: 
 dhcpcd (1:3.2.3-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashism in preinst maintainer script (Closes: #473515)
   * Bump Standards-Version to 3.7.3.
Checksums-Sha1: 
 097d8f0cfe94a110c3d03928f6bbf61b42027526 944 dhcpcd_3.2.3-1.1.dsc
 fcae994d4ba18ed1643a67fb120b34e44129e10e 14755 dhcpcd_3.2.3-1.1.diff.gz
 2b494fb209c719f983d26d20eb9abaff8b3b96f2 47166 dhcpcd_3.2.3-1.1_i386.deb
Checksums-Sha256: 
 8e6074c1460e3a772b0c9e374b1a608d7aeb594451cfc554be98fbeb947b7932 944 
dhcpcd_3.2.3-1.1.dsc
 a8d9e89c22108e83c3188f73eefe237c72211f1ac3174b5e7101fa634a3ffc21 14755 
dhcpcd_3.2.3-1.1.diff.gz
 b8a02cd0ee5afff170caf29cdc30a0a58061ad08aeadd1fe6bdc4474dfa54f6f 47166 
dhcpcd_3.2.3-1.1_i386.deb
Files: 
 51d451247b4659b83a7c4f5ce0ec527e 944 net optional dhcpcd_3.2.3-1.1.dsc
 0212082a2d54c4048d0f7f781ef6d090 14755 net optional dhcpcd_3.2.3-1.1.diff.gz
 9f65b7dd3972db182e0b6a2844212d5a 47166 net optional dhcpcd_3.2.3-1.1_i386.deb

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

iD8DBQFIAFHI+C5cwEsrK54RAudtAKCrwBVHh3JEoBm/YpNJ60x8wVXBBACeL9yj
6+j7USYU/4KPfhqF4QeQgFk=
=yFDu
-END PGP SIGNATURE-


Accepted:
dhcpcd_3.2.3-1.1.diff.gz
  to pool/main/d/dhcpcd/dhcpcd_3.2.3-1.1.diff.gz
dhcpcd_3.2.3-1.1.dsc
  to pool/main/d/dhcpcd/dhcpcd_3.2.3-1.1.dsc
dhcpcd_3.2.3-1.1_i386.deb
  to pool/main/d/dhcpcd/dhcpcd_3.2.3-1.1_i386.deb


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



Accepted nautilus-open-terminal 0.9-2 (source amd64)

2008-04-12 Thread Julien Valroff
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 08:18:46 +0200
Source: nautilus-open-terminal
Binary: nautilus-open-terminal
Architecture: source amd64
Version: 0.9-2
Distribution: experimental
Urgency: low
Maintainer: Julien Valroff [EMAIL PROTECTED]
Changed-By: Julien Valroff [EMAIL PROTECTED]
Description: 
 nautilus-open-terminal - nautilus plugin for opening terminals in arbitrary 
local paths
Closes: 475234 475621
Changes: 
 nautilus-open-terminal (0.9-2) experimental; urgency=low
 .
   * Fixed hardcoded paths in debian/rules for porting to
 the new nautilus extension API - thanks to Andreas Henriksson
 (Closes: #475234, #475621)
Checksums-Sha1: 
 c5c2b398b9996603de734ca2f72658dfdfda3142 1346 nautilus-open-terminal_0.9-2.dsc
 37f1f94f0a9b5a914e550a714da4a9d8baa806ef 2876 
nautilus-open-terminal_0.9-2.diff.gz
 43b72a6670c51e7b5f672dc9685b5c1135dcf7c4 32734 
nautilus-open-terminal_0.9-2_amd64.deb
Checksums-Sha256: 
 65a4d09725ec8feda629cbd691ddccd7b0b91d4b7f6a2d0de62b911f403a4586 1346 
nautilus-open-terminal_0.9-2.dsc
 752f0b2ba93c400945430f80c579cd43f47258890977653f118dae4c1cbaa4c5 2876 
nautilus-open-terminal_0.9-2.diff.gz
 66ad820ae2d14863e0ed49759405378ef6e1508cec097c0ea3ebb619d2c5a6f2 32734 
nautilus-open-terminal_0.9-2_amd64.deb
Files: 
 a69bf43e7e99176408a29447d3b5d71c 1346 gnome optional 
nautilus-open-terminal_0.9-2.dsc
 9c29337b556f02dd7a55e7302b9a7df5 2876 gnome optional 
nautilus-open-terminal_0.9-2.diff.gz
 a49cae0de6d7079b8fdf52aab0fdad6b 32734 gnome optional 
nautilus-open-terminal_0.9-2_amd64.deb

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

iD8DBQFIAFWIIQvyq59x1EkRAl5iAJwPxEzjxG9sL8VPc/oAwCCb1mV2AQCfRQKO
tsIxfWLdeRB9CfxXxjFtHA4=
=yRnP
-END PGP SIGNATURE-


Accepted:
nautilus-open-terminal_0.9-2.diff.gz
  to pool/main/n/nautilus-open-terminal/nautilus-open-terminal_0.9-2.diff.gz
nautilus-open-terminal_0.9-2.dsc
  to pool/main/n/nautilus-open-terminal/nautilus-open-terminal_0.9-2.dsc
nautilus-open-terminal_0.9-2_amd64.deb
  to pool/main/n/nautilus-open-terminal/nautilus-open-terminal_0.9-2_amd64.deb


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



Accepted dphys-config 20061020-2.1 (source all)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 04:33:12 +0100
Source: dphys-config
Binary: dphys-config
Architecture: source all
Version: 20061020-2.1
Distribution: unstable
Urgency: medium
Maintainer: Gürkan Sengün [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 dphys-config - Tool to distribute config files
Closes: 469084
Changes: 
 dphys-config (20061020-2.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * bashism in 'dphys-config' script (Closes: #469084)
   * debian/control:
 - Bump Standards-Version to 3.7.3.
 - Use Homepage: field for upstream URL.
Checksums-Sha1: 
 bd5cbe814fbdaf19e4d7e5a2282f0a16d96582d7 1072 dphys-config_20061020-2.1.dsc
 cef07ec3a55df66c4842aca1ead7f09516fa341b 8645 dphys-config_20061020-2.1.diff.gz
 a4739541d081f7208d55684b03a1a8abfbd01b8f 43014 
dphys-config_20061020-2.1_all.deb
Checksums-Sha256: 
 48e3fbc78125d718c0142063c07d841efcb8f32d68c806e75f1c162b873585fa 1072 
dphys-config_20061020-2.1.dsc
 eae546baffeb78707b747906bb65a1332fc9991dcf81a351f2c3b9abfd02184a 8645 
dphys-config_20061020-2.1.diff.gz
 26432bce8fbdb3ccac53bcd1746d5871828b5a7cb94b738870f7b92c30b02c3e 43014 
dphys-config_20061020-2.1_all.deb
Files: 
 568c738c1a9bdc5fe9ce37f04aac4cd2 1072 admin optional 
dphys-config_20061020-2.1.dsc
 dd5058f4dec7cbd3961a53f56e0a62b9 8645 admin optional 
dphys-config_20061020-2.1.diff.gz
 7dc68df24293d506434e2ae32a8062dc 43014 admin optional 
dphys-config_20061020-2.1_all.deb

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

iD8DBQFIAFSr+C5cwEsrK54RAvh6AJ9FZcGi/jVD1C0/dtdC6ebSCSoPogCgkbB4
4HUHnZF1BJ9wuxe4ITL9ttk=
=NKPQ
-END PGP SIGNATURE-


Accepted:
dphys-config_20061020-2.1.diff.gz
  to pool/main/d/dphys-config/dphys-config_20061020-2.1.diff.gz
dphys-config_20061020-2.1.dsc
  to pool/main/d/dphys-config/dphys-config_20061020-2.1.dsc
dphys-config_20061020-2.1_all.deb
  to pool/main/d/dphys-config/dphys-config_20061020-2.1_all.deb


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



Accepted sword 1.5.9-8.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 00:00:29 +0100
Source: sword
Binary: libsword6 libsword-dev diatheke
Architecture: source i386
Version: 1.5.9-8.1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Glassey [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 diatheke   - CGI script for making bible website
 libsword-dev - Development files for libsword
 libsword6  - API/library for bible software
Closes: 474824
Changes: 
 sword (1.5.9-8.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Amend 08_gcc_43.diff to fix GCC 4.3 FTBFS (Closes: #474824)
   * debian/control:
 - Build-Depend on cdbs = 0.4.27 instead of 0.4.27-1.
 - Bump Standards-Version to 3.7.3.
 - Use ${binary:Version} instead of ${Source-Version}.
Checksums-Sha1: 
 d8dc9dec9399ecebe6a935002806ed789fbfb0fb 1087 sword_1.5.9-8.1.dsc
 b50d7d4d41675a1f1526f725f4711fab0f7a411f 100500 sword_1.5.9-8.1.diff.gz
 8167b1501e8e23e9b495a7b15c76aab6d646a220 533240 libsword6_1.5.9-8.1_i386.deb
 a76d7c0182445b80ed7b568ae799109621c0ed9f 678828 libsword-dev_1.5.9-8.1_i386.deb
 05dba9ede384832e380cc9621d287f849fbd2fd0 61954 diatheke_1.5.9-8.1_i386.deb
Checksums-Sha256: 
 9bc24a84a6fc51fc732079e97072ee2500c13f4822cdfa02622d5f76fb8390fa 1087 
sword_1.5.9-8.1.dsc
 bd01f88a8b877da4279cb3eb9479b86bd6a997237e01f13f263857c37e93f4ae 100500 
sword_1.5.9-8.1.diff.gz
 97378bea58f8142528a213f2411504ce2243a27b9b17e285c6706bcbfde88cb4 533240 
libsword6_1.5.9-8.1_i386.deb
 a9dbfb4a799678cd5526b0bf3f5400469fd840be25d6f7652a404c69ed4f7ca3 678828 
libsword-dev_1.5.9-8.1_i386.deb
 2edd5f4d52032b326f80d679dd49fe81499395b078e507c7751d631128c8eaa5 61954 
diatheke_1.5.9-8.1_i386.deb
Files: 
 a50a04b920ea002ff9c62bef4483945f 1087 libs optional sword_1.5.9-8.1.dsc
 c6b67615ccfa69969dc5c7c74ba6061a 100500 libs optional sword_1.5.9-8.1.diff.gz
 ec58418bd2bd58ef087581f637c56fab 533240 libs optional 
libsword6_1.5.9-8.1_i386.deb
 429f14942c76097f1fa6a84df35f4d9a 678828 libdevel optional 
libsword-dev_1.5.9-8.1_i386.deb
 67d30bf1b7156944de91e75d7c258d5a 61954 web optional diatheke_1.5.9-8.1_i386.deb

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

iD8DBQFIAFnj+C5cwEsrK54RAgccAKCw1D+x/yIuN83/IjGdwNsKfSPFeQCggq/x
XNefGva0IRCVGhDMYnE1XJo=
=zkI4
-END PGP SIGNATURE-


Accepted:
diatheke_1.5.9-8.1_i386.deb
  to pool/main/s/sword/diatheke_1.5.9-8.1_i386.deb
libsword-dev_1.5.9-8.1_i386.deb
  to pool/main/s/sword/libsword-dev_1.5.9-8.1_i386.deb
libsword6_1.5.9-8.1_i386.deb
  to pool/main/s/sword/libsword6_1.5.9-8.1_i386.deb
sword_1.5.9-8.1.diff.gz
  to pool/main/s/sword/sword_1.5.9-8.1.diff.gz
sword_1.5.9-8.1.dsc
  to pool/main/s/sword/sword_1.5.9-8.1.dsc


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



Accepted john 1.6-40.4 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 04:40:32 +0100
Source: john
Binary: john
Architecture: source i386
Version: 1.6-40.4
Distribution: unstable
Urgency: medium
Maintainer: Guilherme de S. Pastore [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 john   - active password cracking tool
Closes: 468685
Changes: 
 john (1.6-40.4) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Add 'bashisms.diff' to fix bashisms in /usr/sbin/mailer script
 (Closes: #468685)
   * debian/control:
 - Bump Standards-Version to 3.7.3.
 - Use Homepage: field for upstream URL.
Checksums-Sha1: 
 bcd02338cede5a9805339013f8451b8ee059b64d 1035 john_1.6-40.4.dsc
 d3e79859932723258df7d1a2979fefd125bbc18e 25195 john_1.6-40.4.diff.gz
 3ac8c85206e0b543dbcbb3232509f594eccdd40f 550016 john_1.6-40.4_i386.deb
Checksums-Sha256: 
 c2e4e5884f21a79371e3a0ea765ef9149c7ab4e61bba1c99a3d31f5128f0c9e5 1035 
john_1.6-40.4.dsc
 ddcaf407200917d24c36bdaab3c707282dd65c4ca94bf07114ab5226b9bf135f 25195 
john_1.6-40.4.diff.gz
 b67724394a903229429cd34f6494cbbb9d626a69db5cc8de60db905e6f0e7a61 550016 
john_1.6-40.4_i386.deb
Files: 
 84e05feb6f419ab9d4498a9786819504 1035 admin optional john_1.6-40.4.dsc
 33ec9d39bf299025b2829abc7c5b6056 25195 admin optional john_1.6-40.4.diff.gz
 33184ad818bffe137769c10d2e5dae1e 550016 admin optional john_1.6-40.4_i386.deb

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

iD8DBQFIAFVG+C5cwEsrK54RAuP7AJ999kntbwATWqQrcmiNnlEjqOwG1QCaAtV8
V9qhxbb05nKE/wqW9am+1mI=
=FuTB
-END PGP SIGNATURE-


Accepted:
john_1.6-40.4.diff.gz
  to pool/main/j/john/john_1.6-40.4.diff.gz
john_1.6-40.4.dsc
  to pool/main/j/john/john_1.6-40.4.dsc
john_1.6-40.4_i386.deb
  to pool/main/j/john/john_1.6-40.4_i386.deb


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



Accepted pmccabe 2.4+nmu1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 04:59:33 +0100
Source: pmccabe
Binary: pmccabe
Architecture: source i386
Version: 2.4+nmu1
Distribution: unstable
Urgency: medium
Maintainer: Paul Bame [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 pmccabe- McCabe-style function complexity and line counting for C and C++
Closes: 465351
Changes: 
 pmccabe (2.4+nmu1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix bashism in 'codechanges' script (Closes: #465351)
   * Bump Standards-Version to 3.7.3.
Checksums-Sha1: 
 c7c8c9f220bf51256b6219eed5eaf0f5a37a 694 pmccabe_2.4+nmu1.dsc
 04e3845db03d3c05eef354da52d9cf0c00148405 56644 pmccabe_2.4+nmu1.tar.gz
 12f0dcbaa4f0fabbba920e3ed69564333e9b6dcc 22096 pmccabe_2.4+nmu1_i386.deb
Checksums-Sha256: 
 586a760cf48a63301cb49713cb75fc391e4eb9b2901d4c8ebaa36cd839b4f29e 694 
pmccabe_2.4+nmu1.dsc
 712a4f429bec89e0cc60c589e0e7ad1f67041adfabf091913aac7da66c484968 56644 
pmccabe_2.4+nmu1.tar.gz
 00df86f6d47d8624f25d368366bc99f6e4df46eee6a73f353d868e2c16d24b8b 22096 
pmccabe_2.4+nmu1_i386.deb
Files: 
 4e7526b66b3288acad24f7232100 694 devel optional pmccabe_2.4+nmu1.dsc
 9280b20daed1c28f16e363168e8cce1f 56644 devel optional pmccabe_2.4+nmu1.tar.gz
 25eead819b4e0966b78939c7f48255e8 22096 devel optional pmccabe_2.4+nmu1_i386.deb

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

iD8DBQFIAFbv+C5cwEsrK54RAo2MAKDOILwXyCUwHRi36nR246/JoY6gXACfWv/a
1BZMI3ehcAUmf4Zj4ypb754=
=hepM
-END PGP SIGNATURE-


Accepted:
pmccabe_2.4+nmu1.dsc
  to pool/main/p/pmccabe/pmccabe_2.4+nmu1.dsc
pmccabe_2.4+nmu1.tar.gz
  to pool/main/p/pmccabe/pmccabe_2.4+nmu1.tar.gz
pmccabe_2.4+nmu1_i386.deb
  to pool/main/p/pmccabe/pmccabe_2.4+nmu1_i386.deb


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



Accepted libgtksourceviewmm 0.3.1-1.1 (source i386)

2008-04-12 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 00:45:57 +0100
Source: libgtksourceviewmm
Binary: libgtksourceviewmm-1.0-2 libgtksourceviewmm-1.0-dev 
libgtksourceviewmm-1.0-2-dbg
Architecture: source i386
Version: 0.3.1-1.1
Distribution: unstable
Urgency: medium
Maintainer: Dodji Seketeli [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 libgtksourceviewmm-1.0-2 - C++ binding of GtkSourceView
 libgtksourceviewmm-1.0-2-dbg - C++ binding of GtkSourceView - debugging symbols
 libgtksourceviewmm-1.0-dev - C++ binding of GtkSourceView - development files
Closes: 474836
Changes: 
 libgtksourceviewmm (0.3.1-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix GCC 4.3 FTBFS (Closes: #474836)
   * debian/control.in:
 - Use ${binary:Version} instead of ${Source-Version}.
 - Bump Standards-Version to 3.7.3.
Checksums-Sha1: 
 22ed2570cb1e109e2173a399a62798fe7f67e5d2 1317 libgtksourceviewmm_0.3.1-1.1.dsc
 40d48e1032e4120975b4082fa67bd2fb93fc1519 2918 
libgtksourceviewmm_0.3.1-1.1.diff.gz
 c4350c4eb59c83aa9ec7c6638155df34aa73841b 45168 
libgtksourceviewmm-1.0-2_0.3.1-1.1_i386.deb
 34f0038573420535ae5c7350cac28588cd80d522 144612 
libgtksourceviewmm-1.0-dev_0.3.1-1.1_i386.deb
 8c80ec8db0698e186c0db4f5cdb8c44644a813be 224896 
libgtksourceviewmm-1.0-2-dbg_0.3.1-1.1_i386.deb
Checksums-Sha256: 
 8803e8c96cde4586d52a01340a0bac239fc5b894f7459d7d5f52aa1772828773 1317 
libgtksourceviewmm_0.3.1-1.1.dsc
 a84955b17d702b06c791f8961277d2f87ca16d5714c52d328800e1de2b934315 2918 
libgtksourceviewmm_0.3.1-1.1.diff.gz
 92e26b9b6d3d2138913ceb76efd35123d71966fc70f1f7d0d9b4552a432ba7c9 45168 
libgtksourceviewmm-1.0-2_0.3.1-1.1_i386.deb
 44c9c21208e66bba1b57c47f1a95077a70989e6288c5e41126c20ec55d90a4b7 144612 
libgtksourceviewmm-1.0-dev_0.3.1-1.1_i386.deb
 85ed7b0f76d051eaf0043921edf211335ed3f2b6b8fab62768cdafa3fb190b5e 224896 
libgtksourceviewmm-1.0-2-dbg_0.3.1-1.1_i386.deb
Files: 
 7db4beaf1fa685d787447f5112c88c55 1317 libs optional 
libgtksourceviewmm_0.3.1-1.1.dsc
 b0e28e7f1f5284a041aa2d1cd86e3823 2918 libs optional 
libgtksourceviewmm_0.3.1-1.1.diff.gz
 d24e22b14340e1f39ad996228a082e05 45168 libs optional 
libgtksourceviewmm-1.0-2_0.3.1-1.1_i386.deb
 34eab2df17be4977e4228b7778f6b64f 144612 libdevel optional 
libgtksourceviewmm-1.0-dev_0.3.1-1.1_i386.deb
 b5dafe14f7773dac9ae9b8da8637103d 224896 libdevel extra 
libgtksourceviewmm-1.0-2-dbg_0.3.1-1.1_i386.deb

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

iD8DBQFIAFg4+C5cwEsrK54RAvvOAJ9Ns97uriKHakSwgmozGASUXtHJ3ACfZCIB
Xn02mW+PjG0Wg21k+aL37pI=
=ty9K
-END PGP SIGNATURE-


Accepted:
libgtksourceviewmm-1.0-2-dbg_0.3.1-1.1_i386.deb
  to 
pool/main/libg/libgtksourceviewmm/libgtksourceviewmm-1.0-2-dbg_0.3.1-1.1_i386.deb
libgtksourceviewmm-1.0-2_0.3.1-1.1_i386.deb
  to 
pool/main/libg/libgtksourceviewmm/libgtksourceviewmm-1.0-2_0.3.1-1.1_i386.deb
libgtksourceviewmm-1.0-dev_0.3.1-1.1_i386.deb
  to 
pool/main/libg/libgtksourceviewmm/libgtksourceviewmm-1.0-dev_0.3.1-1.1_i386.deb
libgtksourceviewmm_0.3.1-1.1.diff.gz
  to pool/main/libg/libgtksourceviewmm/libgtksourceviewmm_0.3.1-1.1.diff.gz
libgtksourceviewmm_0.3.1-1.1.dsc
  to pool/main/libg/libgtksourceviewmm/libgtksourceviewmm_0.3.1-1.1.dsc


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



Accepted trang 20030619-6 (source mips)

2008-04-12 Thread Barry deFreese
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 09 Apr 2008 16:42:26 -0400
Source: trang
Binary: trang
Architecture: source mips
Version: 20030619-6
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Barry deFreese [EMAIL PROTECTED]
Description: 
 trang  - Multi-format XML schema converter based on RELAX NG
Closes: 422574 42 449881 461017
Changes: 
 trang (20030619-6) unstable; urgency=low
 .
   * QA upload.
 + Set maintainer to Debian QA Group [EMAIL PROTECTED]
   * Acknowledge NMUs. (Closes: #422574, #42)
   * Move Homepage from package description to source header.
   * Fix watch file. (Closes: #449881).
   * Use -findirect-dispatch. (Closes: #461017).
 + Thanks to Evgeni Golov and Peter De Wachter for the help.
   * Do not include config.{sub,guess} in the diff.gz file.
   * Make clean not ignore errors.
   * Remove unused debhelper commands.
   * Bump debhelper build-dep and compat to 5.
   * Bump Standards Version to 3.7.3. (No changes needed).
Checksums-Sha1: 
 e2c978850e20dec4be8949dba64f6e48770bde77 1024 trang_20030619-6.dsc
 52d6a0eea559d89bc7cf6ab7368c47c1b19f27d9 9714 trang_20030619-6.diff.gz
 7d4903857a956da70ba3290fe992c00dbf799348 1197842 trang_20030619-6_mips.deb
Checksums-Sha256: 
 885a51ff1ef3538b6ca1d2b282c2edf053ea235127c40b31cfb0f7d8f708c8bb 1024 
trang_20030619-6.dsc
 027e512b2cb7f844f820dc954a57cca58e9ba235467ae2d4529a9eb6f3667487 9714 
trang_20030619-6.diff.gz
 9d4b989ce36883ddc8dc40347443a3a8455ee799ea6c82ef1ff4f0faf211c150 1197842 
trang_20030619-6_mips.deb
Files: 
 c6565a343f38d35fc08c45b306ab893e 1024 text optional trang_20030619-6.dsc
 f5cdcf37f5bccef7ef2343b15cc73e2f 9714 text optional trang_20030619-6.diff.gz
 852f435985369a41c2b94902992c04c7 1197842 text optional 
trang_20030619-6_mips.deb

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

iD8DBQFIAF+RgY5NIXPNpFURAi6jAKCVIMSAvvKhDsfChvQxfGv4X/9H1QCfTJDL
EE2oeRSwE7iz0xx4kQRg+xA=
=17KG
-END PGP SIGNATURE-


Accepted:
trang_20030619-6.diff.gz
  to pool/main/t/trang/trang_20030619-6.diff.gz
trang_20030619-6.dsc
  to pool/main/t/trang/trang_20030619-6.dsc
trang_20030619-6_mips.deb
  to pool/main/t/trang/trang_20030619-6_mips.deb


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



Accepted osm2pgsql 0.52.20080408-1 (source i386)

2008-04-12 Thread Andreas Putzo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 11 Apr 2008 22:43:08 +
Source: osm2pgsql
Binary: osm2pgsql
Architecture: source i386
Version: 0.52.20080408-1
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project [EMAIL PROTECTED]
Changed-By: Andreas Putzo [EMAIL PROTECTED]
Description: 
 osm2pgsql  - Openstreetmap data to PostgreSQL converter
Closes: 468767 474846
Changes: 
 osm2pgsql (0.52.20080408-1) unstable; urgency=low
 .
   * New upstream snapshot. (Closes: #474846)
   * Adopt rename of readme.txt in debian/docs.
   * Update manual page from usage output. (Closes: #468767)
   * Add license and copyright of added file sprompt.c to debian/copyright.
 .
   * Upload sponsored by Petter Reinholdtsen.
Files: 
 04481240a8bc626120f59bddd8be2ff1 715 utils optional 
osm2pgsql_0.52.20080408-1.dsc
 95d9f169e9c88b3cc36749a86eeb9ae9 49385 utils optional 
osm2pgsql_0.52.20080408.orig.tar.gz
 92da1f38a643b54708b3f135b9359cd1 3816 utils optional 
osm2pgsql_0.52.20080408-1.diff.gz
 78b06894d4f515064120b5cfe92fe558 37316 utils optional 
osm2pgsql_0.52.20080408-1_i386.deb

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

iD8DBQFIAF/C20zMSyow1ykRAoSBAJ9ozj9kn9YP9jbH24hWa36L1SAKLgCgrpeI
k+Lx/HMI3R4LszLuDBMEcZM=
=1lRE
-END PGP SIGNATURE-


Accepted:
osm2pgsql_0.52.20080408-1.diff.gz
  to pool/main/o/osm2pgsql/osm2pgsql_0.52.20080408-1.diff.gz
osm2pgsql_0.52.20080408-1.dsc
  to pool/main/o/osm2pgsql/osm2pgsql_0.52.20080408-1.dsc
osm2pgsql_0.52.20080408-1_i386.deb
  to pool/main/o/osm2pgsql/osm2pgsql_0.52.20080408-1_i386.deb
osm2pgsql_0.52.20080408.orig.tar.gz
  to pool/main/o/osm2pgsql/osm2pgsql_0.52.20080408.orig.tar.gz


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



Accepted gst-plugins-farsight 0.12.7-1 (source amd64)

2008-04-12 Thread Sjoerd Simons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 12 Apr 2008 09:38:19 +0200
Source: gst-plugins-farsight
Binary: gstreamer0.10-plugins-farsight
Architecture: source amd64
Version: 0.12.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Telepathy maintainers [EMAIL PROTECTED]
Changed-By: Sjoerd Simons [EMAIL PROTECTED]
Description: 
 gstreamer0.10-plugins-farsight - plugins for GStreamer for Audio/Video 
conferencing
Changes: 
 gst-plugins-farsight (0.12.7-1) unstable; urgency=low
 .
   [ Simon McVittie ]
   * New upstream release
   * Add Sjoerd to Uploaders
   * Correct capitalization of GStreamer
 .
   [ Sjoerd Simons ]
   * debian/control: Remove build-depends on libjasper, the jasper plugin has
 been disabled upstream for several releases.
   * debian/control: Bump gstreamer build-depends to the minimal versions
 required to build all plugins
Files: 
 f7ef5c40252588178fc42bbd827395a4 1078 sound optional 
gst-plugins-farsight_0.12.7-1.dsc
 1687c061cb0f98fb7e1556d786660b96 569293 sound optional 
gst-plugins-farsight_0.12.7.orig.tar.gz
 b41a0d6e588f2057c84af47eb0d25398 3967 sound optional 
gst-plugins-farsight_0.12.7-1.diff.gz
 92570f04defebcd22b1048d8fb7b9b25 130494 sound optional 
gstreamer0.10-plugins-farsight_0.12.7-1_amd64.deb

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

iD8DBQFIAGh9gTd+SodosdIRAjXaAKDcvaHPzu7WOTT76P5ti/QoK3dAzwCfTxlY
kPUD9xevQ0cNdvp7pr2UVXU=
=s4rd
-END PGP SIGNATURE-


Accepted:
gst-plugins-farsight_0.12.7-1.diff.gz
  to pool/main/g/gst-plugins-farsight/gst-plugins-farsight_0.12.7-1.diff.gz
gst-plugins-farsight_0.12.7-1.dsc
  to pool/main/g/gst-plugins-farsight/gst-plugins-farsight_0.12.7-1.dsc
gst-plugins-farsight_0.12.7.orig.tar.gz
  to pool/main/g/gst-plugins-farsight/gst-plugins-farsight_0.12.7.orig.tar.gz
gstreamer0.10-plugins-farsight_0.12.7-1_amd64.deb
  to 
pool/main/g/gst-plugins-farsight/gstreamer0.10-plugins-farsight_0.12.7-1_amd64.deb


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



Accepted sysvinit 2.86.ds1-56 (source i386 all)

2008-04-12 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 09:32:18 +0200
Source: sysvinit
Binary: sysvinit sysvinit-utils sysv-rc initscripts
Architecture: source i386 all
Version: 2.86.ds1-56
Distribution: unstable
Urgency: low
Maintainer: Debian sysvinit maintainers [EMAIL PROTECTED]
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 initscripts - Scripts for initializing and shutting down the system
 sysv-rc- System-V-like runlevel change mechanism
 sysvinit   - System-V-like init utilities
 sysvinit-utils - System-V-like utilities
Closes: 473694
Changes: 
 sysvinit (2.86.ds1-56) unstable; urgency=low
 .
   * Avoid bashism in init.d/rc (Closes: #473694).
Checksums-Sha1: 
 620a520ad31618549270d3387d7db93bdc7104e1 1433 sysvinit_2.86.ds1-56.dsc
 ee5d42365d9331931efaec6546eb06938c78bfee 149383 sysvinit_2.86.ds1-56.diff.gz
 f9a6cca6714445ebc1e943849ceefd7b18f2574e 110910 sysvinit_2.86.ds1-56_i386.deb
 fd4ae7dd89ff57702c110c95ddd2663bfa674d92 69680 
sysvinit-utils_2.86.ds1-56_i386.deb
 ddcdff770c56b9a1f1d306010873604726049983 66542 initscripts_2.86.ds1-56_i386.deb
 868004a6084829d435be50da6845a5f134e3d89b 62104 sysv-rc_2.86.ds1-56_all.deb
Checksums-Sha256: 
 85f8eea7528cf04d694f5c1dfbd595572761fa32339963c65fbc5aaf73df535c 1433 
sysvinit_2.86.ds1-56.dsc
 345e88ea42bf58bab45addae60a80fd4c196cf57fcca5a46fd7f8ea3141862ae 149383 
sysvinit_2.86.ds1-56.diff.gz
 c91aa6d2752a1250bc301e859d69cfe535c0f7fe77967633dddaf3ddcc7bd6c2 110910 
sysvinit_2.86.ds1-56_i386.deb
 77545e95f6bede4a4839c73ae791e0316846c2b544df7470296583eb995fd256 69680 
sysvinit-utils_2.86.ds1-56_i386.deb
 513da758e6ca43762e6c80fd2b3c0699413fbb22738e9fb4f5c1213000324414 66542 
initscripts_2.86.ds1-56_i386.deb
 d8c5c408fc3365a833f4acd6fc39d6a070ace107b27bd467fa668fd1dcce7bb7 62104 
sysv-rc_2.86.ds1-56_all.deb
Files: 
 a48f9ac5e9397d33069e7ec7acc88807 1433 admin required sysvinit_2.86.ds1-56.dsc
 0a4130af6eacbf6bbc66bd1fe904399a 149383 admin required 
sysvinit_2.86.ds1-56.diff.gz
 ae34dd6ab46c2757e17da961d9831cb6 110910 admin required 
sysvinit_2.86.ds1-56_i386.deb
 527491d3d2fa3f2a48722ba095c49493 69680 admin required 
sysvinit-utils_2.86.ds1-56_i386.deb
 30f3d5d01ce9e4dc3714ddd542e6dd16 66542 admin required 
initscripts_2.86.ds1-56_i386.deb
 605ee0ecc2e1669f21290c3bb0bf3174 62104 admin required 
sysv-rc_2.86.ds1-56_all.deb

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

iD8DBQFIAGby20zMSyow1ykRAss4AJ9oBcgUm4rdpZR8LBmxVD8M9gPxagCfdDrn
nF69Vm+VTGVFzJlPWhQXgos=
=5fxn
-END PGP SIGNATURE-


Accepted:
initscripts_2.86.ds1-56_i386.deb
  to pool/main/s/sysvinit/initscripts_2.86.ds1-56_i386.deb
sysv-rc_2.86.ds1-56_all.deb
  to pool/main/s/sysvinit/sysv-rc_2.86.ds1-56_all.deb
sysvinit-utils_2.86.ds1-56_i386.deb
  to pool/main/s/sysvinit/sysvinit-utils_2.86.ds1-56_i386.deb
sysvinit_2.86.ds1-56.diff.gz
  to pool/main/s/sysvinit/sysvinit_2.86.ds1-56.diff.gz
sysvinit_2.86.ds1-56.dsc
  to pool/main/s/sysvinit/sysvinit_2.86.ds1-56.dsc
sysvinit_2.86.ds1-56_i386.deb
  to pool/main/s/sysvinit/sysvinit_2.86.ds1-56_i386.deb


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



Accepted luvcview 20070512-5 (source amd64)

2008-04-12 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 12 Apr 2008 09:33:58 +0200
Source: luvcview
Binary: luvcview
Architecture: source amd64
Version: 20070512-5
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 luvcview   - USB Video Class grabber
Closes: 475632
Changes: 
 luvcview (20070512-5) unstable; urgency=low
 .
   * Remove the menu item (closes: bug#475632).
Files: 
 b81645c1a154b75a1721c201b4a9e74f 628 x11 optional luvcview_20070512-5.dsc
 cb864b234764656277d8282fe8ab20bb 3806 x11 optional luvcview_20070512-5.diff.gz
 ba64829abba97fe2c92341e6d49cb151 50936 x11 optional 
luvcview_20070512-5_amd64.deb

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

iD8DBQFIAGbQw3ao2vG823MRAt9BAJ4lRS0wPzfqGG7Azv+On8Srk3W5CACdFXpk
QpJbdz46xqSc81fTQRSYxIk=
=rtFH
-END PGP SIGNATURE-


Accepted:
luvcview_20070512-5.diff.gz
  to pool/main/l/luvcview/luvcview_20070512-5.diff.gz
luvcview_20070512-5.dsc
  to pool/main/l/luvcview/luvcview_20070512-5.dsc
luvcview_20070512-5_amd64.deb
  to pool/main/l/luvcview/luvcview_20070512-5_amd64.deb


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



Accepted farsight 0.1.27-1 (source all amd64)

2008-04-12 Thread Sjoerd Simons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 12 Apr 2008 09:57:34 +0200
Source: farsight
Binary: libfarsight0.1-3 libfarsight0.1-dev libfarsight0.1-doc 
libfarsight0.1-3-dbg
Architecture: source all amd64
Version: 0.1.27-1
Distribution: unstable
Urgency: low
Maintainer: Debian Telepathy maintainers [EMAIL PROTECTED]
Changed-By: Sjoerd Simons [EMAIL PROTECTED]
Description: 
 libfarsight0.1-3 - audio/video stream library
 libfarsight0.1-3-dbg - audio/video stream library: debugging support
 libfarsight0.1-dev - audio/video stream library: development files
 libfarsight0.1-doc - audio/video stream library: documentation
Changes: 
 farsight (0.1.27-1) unstable; urgency=low
 .
   * New upstream release
   * debian/control: Up gstreamer build-depends to the version required by
 configure.ac
   * debian/control: Drop the gnet build-depends. It's only needed for the
 msnwebcam plugin which is not build.
Files: 
 20b5dbf9adb042b4bd9d338bb7e61d90 1146 libs optional farsight_0.1.27-1.dsc
 ad261dfdbe1266c2a9c1369537c062cb 579978 libs optional 
farsight_0.1.27.orig.tar.gz
 37fa23b306bcf282b99ddbd06b925a60 4062 libs optional farsight_0.1.27-1.diff.gz
 6fd1d2c9422a379571a65ca62b0fd0db 63006 doc optional 
libfarsight0.1-doc_0.1.27-1_all.deb
 9d3a00ae9deae49b320150f265f54668 134326 libs optional 
libfarsight0.1-3_0.1.27-1_amd64.deb
 921aa9c6e326cad966bc71bd2e78126e 62792 libdevel optional 
libfarsight0.1-dev_0.1.27-1_amd64.deb
 7607d8a7255d75053b9abd55cae3a16c 249386 libdevel extra 
libfarsight0.1-3-dbg_0.1.27-1_amd64.deb

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

iD8DBQFIAGxVgTd+SodosdIRAol1AJsFPeVX+MoNTk7s1xU+V+QeAmSDAwCeKY8v
GHDrAw8Q+7oBU6Yrk6W9XEg=
=UPse
-END PGP SIGNATURE-


Accepted:
farsight_0.1.27-1.diff.gz
  to pool/main/f/farsight/farsight_0.1.27-1.diff.gz
farsight_0.1.27-1.dsc
  to pool/main/f/farsight/farsight_0.1.27-1.dsc
farsight_0.1.27.orig.tar.gz
  to pool/main/f/farsight/farsight_0.1.27.orig.tar.gz
libfarsight0.1-3-dbg_0.1.27-1_amd64.deb
  to pool/main/f/farsight/libfarsight0.1-3-dbg_0.1.27-1_amd64.deb
libfarsight0.1-3_0.1.27-1_amd64.deb
  to pool/main/f/farsight/libfarsight0.1-3_0.1.27-1_amd64.deb
libfarsight0.1-dev_0.1.27-1_amd64.deb
  to pool/main/f/farsight/libfarsight0.1-dev_0.1.27-1_amd64.deb
libfarsight0.1-doc_0.1.27-1_all.deb
  to pool/main/f/farsight/libfarsight0.1-doc_0.1.27-1_all.deb


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



Accepted ttf-bpg-georgian-fonts 0.4 (source all)

2008-04-12 Thread Barry deFreese
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Apr 2008 22:37:19 -0400
Source: ttf-bpg-georgian-fonts
Binary: ttf-bpg-georgian-fonts
Architecture: source all
Version: 0.4
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Barry deFreese [EMAIL PROTECTED]
Description: 
 ttf-bpg-georgian-fonts - BPG Georgian fonts
Closes: 435970
Changes: 
 ttf-bpg-georgian-fonts (0.4) unstable; urgency=low
 .
   * QA upload.
 + Set maintainer to Debian QA Group [EMAIL PROTECTED].
   * Remove udeb package. (Closes: #435970).
   * Bump debhelper build-dep and compat to 5.
   * Bump Standards Version to 3.7.3.
Checksums-Sha1: 
 d6f33cdd9e56114be38a5eb002ea39f6a0e4b849 793 ttf-bpg-georgian-fonts_0.4.dsc
 9adae5ee58db59be9761427df144051013fe6cd5 350699 
ttf-bpg-georgian-fonts_0.4.tar.gz
 309b5728454fa91ce900b91cfabba36914009906 350352 
ttf-bpg-georgian-fonts_0.4_all.deb
Checksums-Sha256: 
 5608a9fef7f84c64b7dbd2ffb0e7f9e171f63287b67bca5d39a684230d712cc1 793 
ttf-bpg-georgian-fonts_0.4.dsc
 6104ddbd0582edaf07d2eaa804787f278080593d79733d902ee084ec87280d9b 350699 
ttf-bpg-georgian-fonts_0.4.tar.gz
 7a8eb0333abf22564b6f5a688cd12e18e01d348dd6624ef85cdac686821bb9cf 350352 
ttf-bpg-georgian-fonts_0.4_all.deb
Files: 
 ff61311852353283259da33c829e504e 793 x11 optional 
ttf-bpg-georgian-fonts_0.4.dsc
 00bb241b4a756f1648cc171f25365be5 350699 x11 optional 
ttf-bpg-georgian-fonts_0.4.tar.gz
 eb2f6588bf05efc8d90b6f87e8bb3c38 350352 x11 optional 
ttf-bpg-georgian-fonts_0.4_all.deb

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

iD8DBQFIAG43gY5NIXPNpFURAi4YAJ4uPv/tBgvqZtZuorYorhjU6ioqXgCggIVb
8xABTMKAqR1iHRXbHq9z/iA=
=w7mq
-END PGP SIGNATURE-


Accepted:
ttf-bpg-georgian-fonts_0.4.dsc
  to pool/main/t/ttf-bpg-georgian-fonts/ttf-bpg-georgian-fonts_0.4.dsc
ttf-bpg-georgian-fonts_0.4.tar.gz
  to pool/main/t/ttf-bpg-georgian-fonts/ttf-bpg-georgian-fonts_0.4.tar.gz
ttf-bpg-georgian-fonts_0.4_all.deb
  to pool/main/t/ttf-bpg-georgian-fonts/ttf-bpg-georgian-fonts_0.4_all.deb


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



Accepted vile 9.6-k1 (source all amd64)

2008-04-12 Thread Paul van Tilburg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 10:04:55 +0200
Source: vile
Binary: vile-common vile vile-filters xvile
Architecture: source all amd64
Version: 9.6-k1
Distribution: unstable
Urgency: low
Maintainer: Brendan O'Dea [EMAIL PROTECTED]
Changed-By: Paul van Tilburg [EMAIL PROTECTED]
Description: 
 vile   - VI Like Emacs - vi work-alike
 vile-common - VI Like Emacs - support files for vile/xvile
 vile-filters - VI Like Emacs - highlighting filters for vile/xvile
 xvile  - VI Like Emacs - vi work-alike (X11)
Closes: 398755 435962
Changes: 
 vile (9.6-k1) unstable; urgency=low
 .
   * New upstream release.
   * Added provides field for editor for vile and xvile (closes: #398755).
 .
 vile (9.6-j1) unstable; urgency=low
 .
   * New upstream release.
   * Updates with respect to policy:
 - debian/rules:
   * removed DH_COMPAT declaration, use debian/compat.
   * install the vile lintian override; man-page for vile
 is in vile-common, not vile, so lintian should ignore it.
 - debian/compat: addded, set to 5.
 - debian/control:
   * replaced ${Source-Version} by ${source:Version} to allow for
 binNMUs (closes: #435962).
   * bumped standards version to 3.7.3.
   * fixed versioned build-depend on libxaw7-dev.
   * modified build-depend on debhelper to = 5.
 - debian/copyright: small textual fix.
 - debian/*.menu: fixed quotation and section names.
Checksums-Sha1: 
 009052b79cd7bafdb3df493c335a51bcdf1d46b3 853 vile_9.6-k1.dsc
 1a5cdad5f6ef1b1303c000b9406a3ee99d125222 1965509 vile_9.6-k1.tar.gz
 3207fc4bd07cde3c6d8abc06d26684048e1378ef 539034 vile-common_9.6-k1_all.deb
 5b1765c0cb9d373d7be57edb4c3b408c401b5e78 370420 vile_9.6-k1_amd64.deb
 3c9846dcfd85afee7aaf0b6cf759a60dca0a1219 450352 vile-filters_9.6-k1_amd64.deb
 727bd7d5c55dd0e75cfc878b5d53e145ed1e551b 395722 xvile_9.6-k1_amd64.deb
Checksums-Sha256: 
 9bae42c3ff7480183bbe2e8b22c099b60e340bb63bc6617e27f5e64df4f0e68e 853 
vile_9.6-k1.dsc
 781a2c4112e5fd891e089fc922a9b474685933f2f1fdef908cd466418beb66c4 1965509 
vile_9.6-k1.tar.gz
 67bda3a10fb81d152776ee2622df5f1ad074f8d55e8d0d0ccba7b820f88a6b58 539034 
vile-common_9.6-k1_all.deb
 445999719421d4171dac98844f87cd7d90da860729ab7acecf68c348a0683d03 370420 
vile_9.6-k1_amd64.deb
 57f6bb9ec8245e5ccb517138aa8d530fdf003c470b321f4d5b4478f7a4049d8c 450352 
vile-filters_9.6-k1_amd64.deb
 f8ec613268ed81693a8e5ef96befc0c442208519fbcbf991ab589655ba2f0415 395722 
xvile_9.6-k1_amd64.deb
Files: 
 0bad07805eec9970711d9a2e3e462fb2 853 editors optional vile_9.6-k1.dsc
 2ed1cfbf21a8a5b6b1db173d9b074b8a 1965509 editors optional vile_9.6-k1.tar.gz
 cbbb2103f7c5a87516ef994cb2803b15 539034 editors optional 
vile-common_9.6-k1_all.deb
 692791961f9a754552451a6413e29d4a 370420 editors optional vile_9.6-k1_amd64.deb
 736d91c232b5b240a830ea7a596f2114 450352 editors optional 
vile-filters_9.6-k1_amd64.deb
 0e23e4aa8bd088e549120fed1505b1a3 395722 editors optional xvile_9.6-k1_amd64.deb

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

iD8DBQFIAHBcJBBhylAGQYERAiPaAJwNoUNk/v5pFQ4yJxhdiFpBed6kkwCeLfoP
ki/pWNBZuKhgO7fUCKBDL+s=
=0eUH
-END PGP SIGNATURE-


Accepted:
vile-common_9.6-k1_all.deb
  to pool/main/v/vile/vile-common_9.6-k1_all.deb
vile-filters_9.6-k1_amd64.deb
  to pool/main/v/vile/vile-filters_9.6-k1_amd64.deb
vile_9.6-k1.dsc
  to pool/main/v/vile/vile_9.6-k1.dsc
vile_9.6-k1.tar.gz
  to pool/main/v/vile/vile_9.6-k1.tar.gz
vile_9.6-k1_amd64.deb
  to pool/main/v/vile/vile_9.6-k1_amd64.deb
xvile_9.6-k1_amd64.deb
  to pool/main/v/vile/xvile_9.6-k1_amd64.deb


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



Accepted xulrunner 1.9~b5-1 (source all amd64)

2008-04-12 Thread Mike Hommey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Apr 2008 21:07:40 +0200
Source: xulrunner
Binary: xulrunner-1.9 xulrunner-1.9-gnome-support libmozjs1d libmozjs-dev 
libmozjs1d-dbg spidermonkey-bin libxpcomglue0d xulrunner-1.9-common 
xulrunner-dev xulrunner-dev-static xulrunner-1.9-dbg libmozillainterfaces-java 
python-xpcom
Architecture: source all amd64
Version: 1.9~b5-1
Distribution: experimental
Urgency: low
Maintainer: Mike Hommey [EMAIL PROTECTED]
Changed-By: Mike Hommey [EMAIL PROTECTED]
Description: 
 libmozillainterfaces-java - XPCOM bindings for Java
 libmozjs-dev - Development files for the Mozilla SpiderMonkey JavaScript 
library
 libmozjs1d - The Mozilla SpiderMonkey JavaScript library
 libmozjs1d-dbg - Development files for the Mozilla SpiderMonkey JavaScript 
library
 libxpcomglue0d - XPCOM standalone glue
 python-xpcom - XPCOM bindings for Python
 spidermonkey-bin - standalone JavaScript/ECMAScript (ECMA-262) interpreter
 xulrunner-1.9 - XUL + XPCOM application runner
 xulrunner-1.9-common - Gecko engine library - common files
 xulrunner-1.9-dbg - Development files for the Gecko engine library
 xulrunner-1.9-gnome-support - Support for GNOME in xulrunner applications
 xulrunner-dev - Development files for the Gecko engine library
 xulrunner-dev-static - Static libraries for the Gecko engine
Closes: 474925
Changes: 
 xulrunner (1.9~b5-1) experimental; urgency=low
 .
   * New upstream beta release (taken from upstream CVS).
   * debian/mozconfig:
 + Don't enable native uconv. I'm tired of maintaining this broken piece
   of code (especially considering there are still know broken things).
 + Don't build with flat chrome. The original need for that was to allow to
   override content from other packages, but in the end this happened to be
   made possible with extensions and proper overlays.
   * debian/xulrunner-1.9-common.install:
 + Don't install ucnative.xpt, which is native uconv's xpt file.
 + Add new components files: nsBadCertHandler.js and exthelper.xpt.
   * intl/uconv/native/nsINativeUConvService.idl,
 intl/uconv/native/nsNativeUConvService.cpp,
 intl/uconv/src/charsetalias.properties,
 intl/uconv/src/nsCharsetConverterManager.cpp: Revert fixes to the native
 uconv.
   * debian/control:
 + Build-depend on zip for jar chrome. This has the side effect to make
   nsIPref.java removal from MozillaInterfaces-src.jar work.
 + Bump build dependency on libnss3-dev, since we require additions only
   available in latest version.
   * config/config.mk, config/make-jars.pl, configure.in: Revert changes to
 avoid needing zip when not required.
   * configure: Updated.
   * debian/xulrunner-1.9-gnome-support.install, debian/xulrunner-1.9.install:
 Moved libimgicon.so from xulrunner-1.9-gnome-support to xulrunner-1.9.
 This component doesn't require gnome, only standard gtk and glib.
   * memory/jemalloc/Makefile.in, toolkit/library/Makefile.in: Don't link
 libjemalloc statically into libxul, which has a potential of breaking
 embedding applications.
   * netwerk/cookie/src/Makefile.in: Don't turn warnings into errors.
 Closes: #474925. (Hoping it will not turn in a runtime failure)
Checksums-Sha1: 
 c9d6bb2293516cebcb3b30da53d1fc800a060dda 1749 xulrunner_1.9~b5-1.dsc
 6cfff57036514e75d47b4bbe4fefdc1855b7abff 39589960 xulrunner_1.9~b5.orig.tar.gz
 db73b032ee1f830b921c86575e0e3cf730f2399e 85683 xulrunner_1.9~b5-1.diff.gz
 2feb3a56bd2215e6d4815b3751f28bbde2da2390 214938 libmozjs-dev_1.9~b5-1_all.deb
 06b2c5ba3b573938d1d6684c5f4f7498cd64e157 1263762 
xulrunner-1.9-common_1.9~b5-1_all.deb
 67976fa6e18b6f88c4e5cf542558633f61968c88 4733076 xulrunner-dev_1.9~b5-1_all.deb
 980e59c91e48eff459a3d77b13cb5d245b19597a 1429774 
libmozillainterfaces-java_1.9~b5-1_all.deb
 6056371e358af01e21a531fb362972f2d1adcbb4 6421346 
xulrunner-1.9_1.9~b5-1_amd64.deb
 821af4c3cb3fde75f31693b60fc519daae70b51e 92680 
xulrunner-1.9-gnome-support_1.9~b5-1_amd64.deb
 1882bb6b7735ecef988fac8cf7e767b6f1156b5d 364012 libmozjs1d_1.9~b5-1_amd64.deb
 dbc2ff80a792695f153468e0a7d241c9c1fce2b4 911172 
libmozjs1d-dbg_1.9~b5-1_amd64.deb
 388e16ecc7294477684948bce48f92f73e8b10f3 61558 
spidermonkey-bin_1.9~b5-1_amd64.deb
 44d794399e9434a837507fdd32d6f8afc06b3e6c 80608 
libxpcomglue0d_1.9~b5-1_amd64.deb
 777504d572e64a32910cd2e2c875a7d702b48ca5 136544 
xulrunner-dev-static_1.9~b5-1_amd64.deb
 7c8f55d7317958db408f0ecea0cdb4e0e4e719e8 49718910 
xulrunner-1.9-dbg_1.9~b5-1_amd64.deb
 25413fca7858feb10c8a85b1f458c961d49c03a5 146840 python-xpcom_1.9~b5-1_amd64.deb
Checksums-Sha256: 
 ae72242ef8d524884f72c7bc079f7a0a2cddc5ffb63928ea6c938a3d6fd6f998 1749 
xulrunner_1.9~b5-1.dsc
 657c1665cc14734e25a0925161a95663ba1d2dc8f2376e9089ee84b0f1ccc665 39589960 
xulrunner_1.9~b5.orig.tar.gz
 ec69392a6c29eedf625f4539fa9ad9681fc1fa2578208303c7688a82abfeec26 85683 
xulrunner_1.9~b5-1.diff.gz
 

Accepted rsstail 1.4-3 (source i386)

2008-04-12 Thread Rene Mayorga
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Apr 2008 14:08:37 -0600
Source: rsstail
Binary: rsstail
Architecture: source i386
Version: 1.4-3
Distribution: unstable
Urgency: low
Maintainer: Rene Mayorga [EMAIL PROTECTED]
Changed-By: Rene Mayorga [EMAIL PROTECTED]
Description: 
 rsstail- console RSS reader that monitors a feed and outputs new entries
Closes: 475437
Changes: 
 rsstail (1.4-3) unstable; urgency=low
 .
   * Remove libnxml-depends and libmrss-depends (Closes: #475437)
Checksums-Sha1: 
 32c06e48256cc443d2996de943dde0940fef5a15 983 rsstail_1.4-3.dsc
 4ba2ef73c28518f5681a0aef255c18652059f069 2212 rsstail_1.4-3.diff.gz
 443d5b7db90700c58e9b5bbafc2680b61e4c73ba 8658 rsstail_1.4-3_i386.deb
Checksums-Sha256: 
 46cc8d221e2096e3ee18a9cf44b836918707c1150736d4cd2f38a769c2f5244a 983 
rsstail_1.4-3.dsc
 ee51bc4388079eb54e510ff108274ecbbefb3f8e41e1af553abc60f97690cf42 2212 
rsstail_1.4-3.diff.gz
 b0f9c981c5d9ba3168c98f7e0df84fb0b77701c6ffa34ac36409adc64f994310 8658 
rsstail_1.4-3_i386.deb
Files: 
 6a1436e4617c73582467c6546f05f5de 983 text optional rsstail_1.4-3.dsc
 76fb868724ba63e1d1606db0a173b48e 2212 text optional rsstail_1.4-3.diff.gz
 a40abcd141cc5830e3258b5318909983 8658 text optional rsstail_1.4-3_i386.deb

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

iD8DBQFIAG7QfY3dicTPjsMRAowmAJ4jc0Kz+VSJ+eapaTcbetyQ5lp3wwCfWKC8
07RxkdzgdsH2qe7SQkQXFdU=
=wcnz
-END PGP SIGNATURE-


Accepted:
rsstail_1.4-3.diff.gz
  to pool/main/r/rsstail/rsstail_1.4-3.diff.gz
rsstail_1.4-3.dsc
  to pool/main/r/rsstail/rsstail_1.4-3.dsc
rsstail_1.4-3_i386.deb
  to pool/main/r/rsstail/rsstail_1.4-3_i386.deb


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



Accepted pam-pgsql 0.6.3-1 (source mips)

2008-04-12 Thread Barry deFreese
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Apr 2008 21:34:22 -0400
Source: pam-pgsql
Binary: libpam-pgsql
Architecture: source mips
Version: 0.6.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Barry deFreese [EMAIL PROTECTED]
Description: 
 libpam-pgsql - PAM module to authenticate using a PostgreSQL database
Closes: 355180 423928 429978 441679 466873
Changes: 
 pam-pgsql (0.6.3-1) unstable; urgency=low
 .
   * QA upload.
 + Set maintainer to Debian QA Group [EMAIL PROTECTED].
   * Acknowledge NMUs. (Closes: #441679, #355180, #423928, #429978).
   * New upstream release. (Closes: #466873).
 + Revert old unneeded patches.
   * Add watch file.
   * Add Homepage entry in source header.
   * Use latest version of the config.{sub,guess} files.
   * Bump debhelper build-dep and compat to 5.
   * Bump Standards Version to 3.7.3.
Checksums-Sha1: 
 18439506745363afa6704001377a5762233f1e26 1082 pam-pgsql_0.6.3-1.dsc
 79a14e003152f480798321a7c21ad80c142c4478 68165 pam-pgsql_0.6.3.orig.tar.gz
 f756680d4959c035c625fa55583cb3093481d4b3 4543 pam-pgsql_0.6.3-1.diff.gz
 60a96e50a76f3b4389902cd2f4df6688c515d8a3 16996 libpam-pgsql_0.6.3-1_mips.deb
Checksums-Sha256: 
 531f5c021d3ec79572d31d9ca12f63f63dcc9a3538b90758338626a140d106e9 1082 
pam-pgsql_0.6.3-1.dsc
 2c0e4738b0dbe5a5bd5455b1edbba0d449f7d3c66e0af4b4518d202a8511ac57 68165 
pam-pgsql_0.6.3.orig.tar.gz
 70448f4b634a7bd88429720dc1f2b52cdd64dee6f57d41876ee1f2cfb980964c 4543 
pam-pgsql_0.6.3-1.diff.gz
 8b6562b7335b91393ea91707c44e5cecfd283ee50ec8ad1016529dcb83cd4b52 16996 
libpam-pgsql_0.6.3-1_mips.deb
Files: 
 767881c7de1a59307298c587ae30d3d7 1082 admin extra pam-pgsql_0.6.3-1.dsc
 de43dd8046b39ddb9ed091d6a78860ed 68165 admin extra pam-pgsql_0.6.3.orig.tar.gz
 df902c6cd44028ba9f469952760376fd 4543 admin extra pam-pgsql_0.6.3-1.diff.gz
 4ec4f095d10792526042361c8d55ab0b 16996 admin extra 
libpam-pgsql_0.6.3-1_mips.deb

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

iD8DBQFIAG1mgY5NIXPNpFURAjhwAJ4o4YTBjhERl1xI6ia3LfuIvmXz8QCaA58L
hYdTYiqvRII07Fqb1c7BiH4=
=zeLr
-END PGP SIGNATURE-


Accepted:
libpam-pgsql_0.6.3-1_mips.deb
  to pool/main/p/pam-pgsql/libpam-pgsql_0.6.3-1_mips.deb
pam-pgsql_0.6.3-1.diff.gz
  to pool/main/p/pam-pgsql/pam-pgsql_0.6.3-1.diff.gz
pam-pgsql_0.6.3-1.dsc
  to pool/main/p/pam-pgsql/pam-pgsql_0.6.3-1.dsc
pam-pgsql_0.6.3.orig.tar.gz
  to pool/main/p/pam-pgsql/pam-pgsql_0.6.3.orig.tar.gz


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



Accepted sympa 5.3.4-4 (source i386)

2008-04-12 Thread Racke
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Apr 2008 22:22:31 +0200
Source: sympa
Binary: sympa
Architecture: source i386
Version: 5.3.4-4
Distribution: unstable
Urgency: high
Maintainer: Stefan Hornburg (Racke) [EMAIL PROTECTED]
Changed-By: Stefan Hornburg (Racke) [EMAIL PROTECTED]
Description: 
 sympa  - Modern mailing list manager
Closes: 472524 472941 475163
Changes: 
 sympa (5.3.4-4) unstable; urgency=high
 .
   * fix denial of service via crafted email (Closes: #475163,
 CVE-2008-1648, thanks to Nico Golde [EMAIL PROTECTED] for the report)
   * ensure that supported_lang always contains en_US (Closes: #472941,
 thanks to Chris Davies [EMAIL PROTECTED] for the report)
   * move call to Debconf library to the top of postinst (Closes: #472524,
 thanks to Olivier Berger [EMAIL PROTECTED] for the
 report and the patch)
   * correct invocation of clean targets
Checksums-Sha1: 
 b7474900c1601fe78d348d54a2ee0efe7ebbf5bb 976 sympa_5.3.4-4.dsc
 05c29c9137204d950a670f137b19d1af61b2787a 109093 sympa_5.3.4-4.diff.gz
 1a90d4c47147546efd5bbc392fcc0f09c5998e8b 3086098 sympa_5.3.4-4_i386.deb
Checksums-Sha256: 
 802d865b6113554471ba11873bee2dfb0a2a2a05433d32a3e21e1009fcc1326b 976 
sympa_5.3.4-4.dsc
 0541ea71b6aab9dbcb25ce15b6e68202c6111f7b8be5e859d880ea52508c9804 109093 
sympa_5.3.4-4.diff.gz
 918c85d48b75538611b50709dc83a0ea471f18810937449f0eb06317c9fd1ea2 3086098 
sympa_5.3.4-4_i386.deb
Files: 
 12518253351045796dd381f16a2986ed 976 mail optional sympa_5.3.4-4.dsc
 8fb79e868bd2b75a2af6e73d0f20386f 109093 mail optional sympa_5.3.4-4.diff.gz
 2447b013c561944e8da94d48fb538ab9 3086098 mail optional sympa_5.3.4-4_i386.deb

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

iD8DBQFIAH8GjgVfE5tya3ERAmpZAKCae2ekvXvYkrupOWaebgSMvOSoPACg3SbT
7lzj3vPFmdqiyMks5RrTgTo=
=vMZQ
-END PGP SIGNATURE-


Accepted:
sympa_5.3.4-4.diff.gz
  to pool/main/s/sympa/sympa_5.3.4-4.diff.gz
sympa_5.3.4-4.dsc
  to pool/main/s/sympa/sympa_5.3.4-4.dsc
sympa_5.3.4-4_i386.deb
  to pool/main/s/sympa/sympa_5.3.4-4_i386.deb


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



Accepted libmrss 0.19.1-3 (source i386)

2008-04-12 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 10:01:02 +0200
Source: libmrss
Binary: libmrss0-dev libmrss0 libmrss0-dbg
Architecture: source i386
Version: 0.19.1-3
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath [EMAIL PROTECTED]
Changed-By: Torsten Werner [EMAIL PROTECTED]
Description: 
 libmrss0   - C library for parsing, writing and creating RSS files or streams
 libmrss0-dbg - C library for parsing, writing and creating RSS files or streams
 libmrss0-dev - C library for parsing, writing and creating RSS files or streams
Changes: 
 libmrss (0.19.1-3) unstable; urgency=low
 .
   * Fix symlink libmrss-depends.
Checksums-Sha1: 
 484571c1bd73961f830683f416758fcca7fb8325 1231 libmrss_0.19.1-3.dsc
 e9005f7d2b3f36a3fbf56e2c04c031fbc808225d 2566 libmrss_0.19.1-3.diff.gz
 6fbcd722441d07435525772ca8f228225f9b7dc6 40076 libmrss0-dev_0.19.1-3_i386.deb
 beb3ef6019be053d93e98a116f1eb6a33bc4de7a 25104 libmrss0_0.19.1-3_i386.deb
 a3aae2e256a4a6736bd218204d8f2b30b0ec8793 42944 libmrss0-dbg_0.19.1-3_i386.deb
Checksums-Sha256: 
 1813c2859f741c74b4da455d9f3cdd6cc201f63f00e56bc93fa69696dbc24345 1231 
libmrss_0.19.1-3.dsc
 40bb96ad6b509bfcaba94447da18d26cfac203feec3a3dea9dd09e319427b438 2566 
libmrss_0.19.1-3.diff.gz
 49dd7c08e2a976829916600a53ebd709372d17584139b3643d30dd7a32a5fb29 40076 
libmrss0-dev_0.19.1-3_i386.deb
 52274605696408153a7f30f49ae9a1f1075fea48577dddefe6b302eaddef306a 25104 
libmrss0_0.19.1-3_i386.deb
 639df7666a3232353984118c2fdce9683c3c09b8702fd2a22d8935c5a10c4d43 42944 
libmrss0-dbg_0.19.1-3_i386.deb
Files: 
 20aefd7c5841a6a5558f3342fcdd5e52 1231 libs optional libmrss_0.19.1-3.dsc
 5d3fb439d4619d1b2da8890aab14620f 2566 libs optional libmrss_0.19.1-3.diff.gz
 d1416a5606061a7e27ec59fc3a4bc46c 40076 libdevel optional 
libmrss0-dev_0.19.1-3_i386.deb
 2bd7e210b3a4394bd72a417ab6e58393 25104 libs optional libmrss0_0.19.1-3_i386.deb
 021ab3d6a21f46c18ed3e1280e5bf94a 42944 libs extra 
libmrss0-dbg_0.19.1-3_i386.deb

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

iD8DBQFIAG0qfY3dicTPjsMRApgqAJ96hrP71ucg/mwy+1FFyTCBHnAl2QCbBtff
z/VqK9NL1snKK4Vjwf2Rf7o=
=tKjV
-END PGP SIGNATURE-


Accepted:
libmrss0-dbg_0.19.1-3_i386.deb
  to pool/main/libm/libmrss/libmrss0-dbg_0.19.1-3_i386.deb
libmrss0-dev_0.19.1-3_i386.deb
  to pool/main/libm/libmrss/libmrss0-dev_0.19.1-3_i386.deb
libmrss0_0.19.1-3_i386.deb
  to pool/main/libm/libmrss/libmrss0_0.19.1-3_i386.deb
libmrss_0.19.1-3.diff.gz
  to pool/main/libm/libmrss/libmrss_0.19.1-3.diff.gz
libmrss_0.19.1-3.dsc
  to pool/main/libm/libmrss/libmrss_0.19.1-3.dsc


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



Accepted qt4-x11 4.4.0~rc1-3 (source all amd64)

2008-04-12 Thread Fathi Boudra
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 07:48:37 +0200
Source: qt4-x11
Binary: libqtcore4 libqt4-core libqt4-gui libqt4-network libqt4-opengl 
libqt4-script libqt4-sql libqt4-sql-ibase libqt4-sql-mysql libqt4-sql-odbc 
libqt4-sql-psql libqt4-sql-sqlite libqt4-sql-sqlite2 libqt4-svg libqt4-webkit 
libqt4-xml libqt4-xmlpatterns libqt4-dbus libqt4-qt3support libqt4-designer 
libqt4-help libqt4-assistant libqt4-test libqt4-dev libqt4-dbg 
libqt4-webkit-dbg libqt4-xmlpatterns-dbg qt4-designer qt4-dev-tools 
qt4-qtconfig qt4-demos qt4-doc
Architecture: source all amd64
Version: 4.4.0~rc1-3
Distribution: unstable
Urgency: low
Maintainer: Fathi Boudra [EMAIL PROTECTED]
Changed-By: Fathi Boudra [EMAIL PROTECTED]
Description: 
 libqt4-assistant - Qt 4 assistant module
 libqt4-core - transitional package for Qt 4 core non-GUI runtime libraries
 libqt4-dbg - Qt 4 library debugging symbols
 libqt4-dbus - Qt 4 D-Bus module
 libqt4-designer - Qt 4 designer module
 libqt4-dev - Qt 4 development files
 libqt4-gui - Qt 4 GUI module
 libqt4-help - Qt 4 help module
 libqt4-network - Qt 4 network module
 libqt4-opengl - Qt 4 OpenGL module
 libqt4-qt3support - Qt 3 compatibility library for Qt 4
 libqt4-script - Qt 4 script module
 libqt4-sql - Qt 4 SQL module
 libqt4-sql-ibase - Qt 4 InterBase/FireBird database driver
 libqt4-sql-mysql - Qt 4 MySQL database driver
 libqt4-sql-odbc - Qt 4 ODBC database driver
 libqt4-sql-psql - Qt 4 PostgreSQL database driver
 libqt4-sql-sqlite - Qt 4 SQLite 3 database driver
 libqt4-sql-sqlite2 - Qt 4 SQLite 2 database driver
 libqt4-svg - Qt 4 SVG module
 libqt4-test - Qt 4 test module
 libqt4-webkit - Qt 4 WebKit module
 libqt4-webkit-dbg - Qt 4 WebKit library debugging symbols
 libqt4-xml - Qt 4 XML module
 libqt4-xmlpatterns - Qt 4 XML patterns module
 libqt4-xmlpatterns-dbg - Qt 4 XML patterns library debugging symbols
 libqtcore4 - Qt 4 core module
 qt4-demos  - Qt 4 examples and demos
 qt4-designer - Qt 4 Designer
 qt4-dev-tools - Qt 4 development tools
 qt4-doc- Qt 4 API documentation
 qt4-qtconfig - Qt 4 configuration tool
Closes: 475324 475340 475402
Changes: 
 qt4-x11 (4.4.0~rc1-3) unstable; urgency=low
 .
   +++ Changes by Sune Vuorela:
 .
   * Clean up a bit in the dependencies of libqt4-dev. Removed dependencies:
 libqt4-sql-mysql, libqt4-sql-odbc, libqt4-sql-psql, libqt4-sql-sqlite,
 libqt4-sql-sqlite2, libqt4-sql-ibase, firebird2.0-dev, libaudio-dev,
 libcupsys2-dev, libdbus-1-dev, libfreetype6-dev, libglib2.0-dev,
 libice-dev, libiodbc2-dev, libjpeg62-dev, libmng-dev, libmysqlclient15-dev,
 libpam0g-dev, libpng12-dev, libpq-dev, libreadline5-dev, libsm-dev,
 libsqlite0-dev, libsqlite3-dev, libtiff4-dev, libx11-dev, libxcursor-dev,
 libxext-dev, libxft-dev, libxi-dev, libxinerama-dev, libxmu-dev,
 libxrandr-dev, libxrender-dev, libxslt1-dev, libxt-dev, x11proto-core-dev,
 zlib1g-dev
 .
   +++ Changes by Fathi Boudra:
 .
   * Add libqt4-svg dependency to libqt4-gui. It helps for the transition as
 libQtSvg.so.4 was previously in libqt4-gui package. (Closes: #475324)
   * Replace libqcncodecs.so in libqt4-gui ( 4.4.0~beta1-1). (Closes: #475340)
   * Update 20_mips_atomic_ops patch. Qt4.4 introduced two new atomic operations
 without the necessary assembler .set directives.
 Thanks to Thiemo Seufer. (Closes: #475402)
Checksums-Sha1: 
 507f49d0a2e605e99f3b663497cc1b09b750b445 2564 qt4-x11_4.4.0~rc1-3.dsc
 cc9a726016406b22e3088388c197ca3d054e5962 83695 qt4-x11_4.4.0~rc1-3.diff.gz
 2934d9c5822d35e8b6877e9639719e2bc44c91db 25776 libqt4-core_4.4.0~rc1-3_all.deb
 fa676273bb19368b51f864d68ab58977c5b4696b 74119446 qt4-doc_4.4.0~rc1-3_all.deb
 93b4ff59a98c0d7d732daa3e20bbf08a1742fe43 2036948 
libqtcore4_4.4.0~rc1-3_amd64.deb
 25395202111bfb52acb408f997f84cb18a5884ce 4227026 
libqt4-gui_4.4.0~rc1-3_amd64.deb
 26a1e77ed28ebf7ae4dbb15f62dc3722d85b 445236 
libqt4-network_4.4.0~rc1-3_amd64.deb
 8be5f1c328561dacd25d97b0dbaaae19610f2605 172844 
libqt4-opengl_4.4.0~rc1-3_amd64.deb
 30269bbab5d207ed4a1d6dc555c40461804eaafc 490458 
libqt4-script_4.4.0~rc1-3_amd64.deb
 c953aff9fd5dc84ea8bac4899476cac3f667e5a8 126546 
libqt4-sql_4.4.0~rc1-3_amd64.deb
 e9e97c69aabaf113ee34765dd4edb5f0e86cbaf0 67804 
libqt4-sql-ibase_4.4.0~rc1-3_amd64.deb
 31625dfcfbbfaedaf236cf28300047c750e0eb8b 52768 
libqt4-sql-mysql_4.4.0~rc1-3_amd64.deb
 5470e9aa973f9aba85ff86d1365782ca507e5b05 65390 
libqt4-sql-odbc_4.4.0~rc1-3_amd64.deb
 d78ac692dcdd15cbe7dc7eb2f5b404b73cfe1d9a 58020 
libqt4-sql-psql_4.4.0~rc1-3_amd64.deb
 4b4b866aa9bd6a3f38085caa0581de307b1c807b 44554 
libqt4-sql-sqlite_4.4.0~rc1-3_amd64.deb
 c3957a954af26e959a90adea9d7e8682aaabf5e9 40788 
libqt4-sql-sqlite2_4.4.0~rc1-3_amd64.deb
 6872cd3960d14fa813b119c5e5be9648e176dc04 177404 
libqt4-svg_4.4.0~rc1-3_amd64.deb
 139a9da301fa30861e7f150a529b72a5c358aa88 3522472 
libqt4-webkit_4.4.0~rc1-3_amd64.deb
 2a5c76c1f74e4e99eb6b51199f52aafeb492325d 133450 

Accepted ftgl 2.1.2-4 (source amd64)

2008-04-12 Thread Debian packages
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 12 Apr 2008 09:00:51 +
Source: ftgl
Binary: ftgl-dev
Architecture: source amd64
Version: 2.1.2-4
Distribution: unstable
Urgency: low
Maintainer: Sam Hocevar (Debian packages) [EMAIL PROTECTED]
Changed-By: Sam Hocevar (Debian packages) [EMAIL PROTECTED]
Description: 
 ftgl-dev   - library to render text in OpenGL using FreeType
Closes: 268594 274400 394492 471983
Changes: 
 ftgl (2.1.2-4) unstable; urgency=low
 .
   * New maintainer (Closes: #471983).
 .
   * debian/control:
 + Do not build-depend on g++ (Closes: #268594).
 + Changed 'libglut3-dev | glutg3-dev' build-dependency to freeglut3-dev
   (Closes: #394492).
 + Uncapitalised short description.
 + Set policy to 3.7.3.
 + Add Vcs control fields.
 .
   * debian/rules:
 + Use debian/compat instead of DH_COMPAT.
 + Use quilt for patch management.
 .
   * debian/patches/000_package_version.diff:
 + New patch. Fix the version string in .pc files (Closes: #274400).
Files: 
 d35b1725e4c5e8bc6c5be27118f3bac7 827 devel optional ftgl_2.1.2-4.dsc
 f79f16f37159e7464f757c5e2236f0a3 22467 devel optional ftgl_2.1.2-4.diff.gz
 8ab9ae8a049544f90dbaaf2a4bff2cc5 136906 devel optional 
ftgl-dev_2.1.2-4_amd64.deb

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

iD8DBQFIAIV8fPP1rylJn2ERAl3hAJ9E+cP6xuKeAAvZBJsZbGLEhqEl0gCdFeRV
v+CmqkIXarTTPVZ5mAX2+Ek=
=1xad
-END PGP SIGNATURE-


Accepted:
ftgl-dev_2.1.2-4_amd64.deb
  to pool/main/f/ftgl/ftgl-dev_2.1.2-4_amd64.deb
ftgl_2.1.2-4.diff.gz
  to pool/main/f/ftgl/ftgl_2.1.2-4.diff.gz
ftgl_2.1.2-4.dsc
  to pool/main/f/ftgl/ftgl_2.1.2-4.dsc


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



Accepted uuagc 0.9.6-1 (source amd64)

2008-04-12 Thread Arjan Oosting
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 11:59:06 +0200
Source: uuagc
Binary: uuagc
Architecture: source amd64
Version: 0.9.6-1
Distribution: unstable
Urgency: low
Maintainer: Arjan Oosting [EMAIL PROTECTED]
Changed-By: Arjan Oosting [EMAIL PROTECTED]
Description: 
 uuagc  - compiler for the Utrecht University Attribute Grammar system
Changes: 
 uuagc (0.9.6-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 139ec936c9e9db07897d70684d2791787e41c105 1150 uuagc_0.9.6-1.dsc
 41d09f6082f989020f2971f1c668ffae667ff2f8 187246 uuagc_0.9.6.orig.tar.gz
 403f9996485493440d478730811a1f6f8d950e10 4750 uuagc_0.9.6-1.diff.gz
 760fc22b8bf79f0b7f6a4a45f7072d92b77ae6af 721694 uuagc_0.9.6-1_amd64.deb
Checksums-Sha256: 
 78e531413675aa9a14bc1865340fb4b1440fd9a46c04042e9f64f65df5c73c39 1150 
uuagc_0.9.6-1.dsc
 10e148bdf052e9a80e52c54a94314df9d1772e68416e5dfac289c47fd1ba8558 187246 
uuagc_0.9.6.orig.tar.gz
 57672c3eb04ce5fa1bba0cfba8b96c4d6b41b16dd65883c627be1ab348f7bd6f 4750 
uuagc_0.9.6-1.diff.gz
 cc4f88c1391df908a34bd4c9e361723b1dcad5cbc98647e47b84cde181088939 721694 
uuagc_0.9.6-1_amd64.deb
Files: 
 692a22b196a44b95800cb750b426a5e5 1150 devel optional uuagc_0.9.6-1.dsc
 4352989e90f3ee49d3f729c4acd5c31c 187246 devel optional uuagc_0.9.6.orig.tar.gz
 b53baa307fe9893b2d695db1bdd73e0b 4750 devel optional uuagc_0.9.6-1.diff.gz
 aaac62a0bb3170c288f87436f9e33b31 721694 devel optional uuagc_0.9.6-1_amd64.deb

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

iD8DBQFIAIntUALvsZYuOJARAmv6AJ9+mVJP/ln8Vd3lKPrG5Gcn5GyAugCgxceh
/ECK81QqQDtZa2/afOW1eFY=
=Cglu
-END PGP SIGNATURE-


Accepted:
uuagc_0.9.6-1.diff.gz
  to pool/main/u/uuagc/uuagc_0.9.6-1.diff.gz
uuagc_0.9.6-1.dsc
  to pool/main/u/uuagc/uuagc_0.9.6-1.dsc
uuagc_0.9.6-1_amd64.deb
  to pool/main/u/uuagc/uuagc_0.9.6-1_amd64.deb
uuagc_0.9.6.orig.tar.gz
  to pool/main/u/uuagc/uuagc_0.9.6.orig.tar.gz


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



Accepted yaskkserv 0.3.8-4 (source i386)

2008-04-12 Thread KURASHIKI Satoru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 11:09:54 +0900
Source: yaskkserv
Binary: yaskkserv
Architecture: source i386
Version: 0.3.8-4
Distribution: unstable
Urgency: low
Maintainer: KURASHIKI Satoru [EMAIL PROTECTED]
Changed-By: KURASHIKI Satoru [EMAIL PROTECTED]
Description: 
 yaskkserv  - small and fast SKK dictionary server intended for embedded use
Closes: 472950 474880
Changes: 
 yaskkserv (0.3.8-4) unstable; urgency=low
 .
   * apply patch to fix a formatting mistake in manpage. (Closes: #472950)
   * debian/*: fixup lintian warnings:
 change doc-base section from unknown to Help/HOWTO.
 move usr/share/yaskkserv from dirs file to maintainer script.
   * configure: change g++ version check string to deal with gcc-4.3. (Closes: 
#474880)
Checksums-Sha1: 
 8453cb44c8d9e9377b9f7395e6802b26b2180fd5 1071 yaskkserv_0.3.8-4.dsc
 84fb1f4d15990326db481848f42ee99b7d77ea89 10030 yaskkserv_0.3.8-4.diff.gz
 b2e4008557c95c06f6d14938abb1d7aa4b28830f 64816 yaskkserv_0.3.8-4_i386.deb
Checksums-Sha256: 
 e32c8b7d56414a95d38e13ec639c734803fa55af109e073795eb3ee209ba389b 1071 
yaskkserv_0.3.8-4.dsc
 43cd12c07d03f0647a58663eb903630629ddabeab44f976ae3051193e493d6f6 10030 
yaskkserv_0.3.8-4.diff.gz
 0c5bd052cbaf0f2241d9dd547f78441d957e7f9e3e57b4fc0c34ab1fcab4d8a8 64816 
yaskkserv_0.3.8-4_i386.deb
Files: 
 c84280ec49498a33f7208fd39dc3787f 1071 utils extra yaskkserv_0.3.8-4.dsc
 0c766e14f4954521578469c5ff66 10030 utils extra yaskkserv_0.3.8-4.diff.gz
 4b614b31065eb2132d927361400a47ee 64816 utils extra yaskkserv_0.3.8-4_i386.deb

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

iD8DBQFIAIuVgV4LPvpMUpgRAt5fAKCU4zJhigpRezdQYL3XtsOqGZy4gQCdFAPL
8K6HiXX1JPbugePFjg/FqlM=
=ybw2
-END PGP SIGNATURE-


Accepted:
yaskkserv_0.3.8-4.diff.gz
  to pool/main/y/yaskkserv/yaskkserv_0.3.8-4.diff.gz
yaskkserv_0.3.8-4.dsc
  to pool/main/y/yaskkserv/yaskkserv_0.3.8-4.dsc
yaskkserv_0.3.8-4_i386.deb
  to pool/main/y/yaskkserv/yaskkserv_0.3.8-4_i386.deb


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



Accepted pondus 0.4.0-1 (source all)

2008-04-12 Thread Eike Nicklas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 12 Apr 2008 10:32:13 +0100
Source: pondus
Binary: pondus
Architecture: source all
Version: 0.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Eike Nicklas [EMAIL PROTECTED]
Changed-By: Eike Nicklas [EMAIL PROTECTED]
Description: 
 pondus - personal weight manager for GTK+2
Changes: 
 pondus (0.4.0-1) unstable; urgency=low
 .
   * new upstream release
   * debian/control: update Description
Files: 
 74e0f0ac7cac4f5fc0d25d74f5368950 989 x11 optional pondus_0.4.0-1.dsc
 b29c1ec6eae758f106e7a43cb30d90bf 41145 x11 optional pondus_0.4.0.orig.tar.gz
 11763d2b4eeb952e824c1f590389b494 1886 x11 optional pondus_0.4.0-1.diff.gz
 e10dc9bf594fb875ce3d783a3f696c9d 30410 x11 optional pondus_0.4.0-1_all.deb

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

iD8DBQFIAIrcB01zfu119ZkRAvx4AJwNJup2sOOcTuL6VllhPwDSzOi8HgCeJYHN
EL6dgSmma/T+MGWjULEud8U=
=DLex
-END PGP SIGNATURE-


Accepted:
pondus_0.4.0-1.diff.gz
  to pool/main/p/pondus/pondus_0.4.0-1.diff.gz
pondus_0.4.0-1.dsc
  to pool/main/p/pondus/pondus_0.4.0-1.dsc
pondus_0.4.0-1_all.deb
  to pool/main/p/pondus/pondus_0.4.0-1_all.deb
pondus_0.4.0.orig.tar.gz
  to pool/main/p/pondus/pondus_0.4.0.orig.tar.gz


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



Accepted kbuild 1:0.1.2svn1393-2 (source i386)

2008-04-12 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Apr 2008 22:42:26 +0200
Source: kbuild
Binary: kbuild
Architecture: source i386
Version: 1:0.1.2svn1393-2
Distribution: unstable
Urgency: high
Maintainer: Torsten Werner [EMAIL PROTECTED]
Changed-By: Torsten Werner [EMAIL PROTECTED]
Description: 
 kbuild - framework for writing simple makefiles for complex tasks
Changes: 
 kbuild (1:0.1.2svn1393-2) unstable; urgency=high
 .
   * Add patch to fix build on parisc.
   * Set urgency to high because we are fixing a FTBFS bug on 1 arch.
Checksums-Sha1: 
 f5ca23399d4ef066d9124a3c3cbe68593f9238de 1200 kbuild_0.1.2svn1393-2.dsc
 2e60f4ad2a7fd778419eee5cb39330fa73de4ae4 4309 kbuild_0.1.2svn1393-2.diff.gz
 39f98b1f4501eae0ef2857f68f6d006c07421178 498348 kbuild_0.1.2svn1393-2_i386.deb
Checksums-Sha256: 
 1aa3b50cdbfe5b1963202a89a167bab476283cba15fea6aefa6303ff7510731f 1200 
kbuild_0.1.2svn1393-2.dsc
 7994ae0bee9c7ffc50e161b986412feb52d01447463dbfe90300a0325eeed1a0 4309 
kbuild_0.1.2svn1393-2.diff.gz
 f5be4197c41740e14ca753f284afe8ed5594ab9d6b8a70f0307c40ea3419e229 498348 
kbuild_0.1.2svn1393-2_i386.deb
Files: 
 d346effab318cb06fa3007e34724e68e 1200 devel extra kbuild_0.1.2svn1393-2.dsc
 ee29b92e7af4eeae7baf39a20bb19b6a 4309 devel extra kbuild_0.1.2svn1393-2.diff.gz
 0f4e85cf125b231ac8f9e5261e90ad08 498348 devel extra 
kbuild_0.1.2svn1393-2_i386.deb

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

iD8DBQFIAI47fY3dicTPjsMRAtUmAJ4mJX8mH2EDhxGrEbojvJpLVWjZ5ACcCM9v
Wkd3czgSbZKjYkTptkn7GeQ=
=4PLZ
-END PGP SIGNATURE-


Accepted:
kbuild_0.1.2svn1393-2.diff.gz
  to pool/main/k/kbuild/kbuild_0.1.2svn1393-2.diff.gz
kbuild_0.1.2svn1393-2.dsc
  to pool/main/k/kbuild/kbuild_0.1.2svn1393-2.dsc
kbuild_0.1.2svn1393-2_i386.deb
  to pool/main/k/kbuild/kbuild_0.1.2svn1393-2_i386.deb


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



Accepted firebird2.0 2.0.3.12981.ds1-11 (source all i386)

2008-04-12 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 00:21:47 +0300
Source: firebird2.0
Binary: firebird2.0-super firebird2.0-classic libfbclient2 libfbembed2 
firebird2.0-common firebird2.0-dev firebird2.0-examples firebird2.0-doc
Architecture: source all i386
Version: 2.0.3.12981.ds1-11
Distribution: unstable
Urgency: low
Maintainer: Debian Firebird Group [EMAIL PROTECTED]
Changed-By: Damyan Ivanov [EMAIL PROTECTED]
Description: 
 firebird2.0-classic - Firebird Classic Server - an RDBMS based on InterBase 
6.0 code
 firebird2.0-common - common files for firebird 2.0 servers and clients
 firebird2.0-dev - Development files for Firebird - an RDBMS based on InterBase 
6.0 
 firebird2.0-doc - Documentation files for firebird database version 2.0
 firebird2.0-examples - Examples for Firebird - an RDBMS based on InterBase 6.0 
code
 firebird2.0-super - Firebird Super Server - an RDBMS based on InterBase 6.0 
code
 libfbclient2 - Firebird client library
 libfbembed2 - Firebird embedded client/server library
Closes: 475504
Changes: 
 firebird2.0 (2.0.3.12981.ds1-11) unstable; urgency=low
 .
   * Move firebird account creation in -common. Thanks to Adeodato Simó
 Closes: #475504 -- logrotate uses a user the package does not create
   * Fix mips-FTBFS bug number closure
   * *.postinst: pass $@ to debhelper_hook(), not only $1
Checksums-Sha1: 
 8e29d7344c7863595205feba0f7aab012d55758f 1618 
firebird2.0_2.0.3.12981.ds1-11.dsc
 99c93d1bbad6b81b5b703eaf2cf6a07b6bc33a6a 411412 
firebird2.0_2.0.3.12981.ds1-11.diff.gz
 5eb93b375d550660b7a14f1994f78f87b29c373a 436050 
firebird2.0-dev_2.0.3.12981.ds1-11_all.deb
 d8e77075a64046c89003268050d45164785a6c38 535484 
firebird2.0-examples_2.0.3.12981.ds1-11_all.deb
 6cc7f0886c54cb557c7947e7ca172d2c3d0d2aa9 1241870 
firebird2.0-doc_2.0.3.12981.ds1-11_all.deb
 77b5d4452fd268b57885d523115d8c4739141ce7 2823216 
firebird2.0-super_2.0.3.12981.ds1-11_i386.deb
 8aeedab8cc6964abf6d8240d8946380e5c614a3f 1682526 
firebird2.0-classic_2.0.3.12981.ds1-11_i386.deb
 327bb3148a75688f4eeea7b010ce0478f1b02e69 611438 
libfbclient2_2.0.3.12981.ds1-11_i386.deb
 3f50506671755412f008abf8e5b786a5d4373030 1472682 
libfbembed2_2.0.3.12981.ds1-11_i386.deb
 56c3c8e0c76632b2bfdf077f824a20ee24b9bf16 895666 
firebird2.0-common_2.0.3.12981.ds1-11_i386.deb
Checksums-Sha256: 
 b1904d6e9c36b13bda978458bfcef14d5b44fc0afc0c24b8f23eff5b178212d0 1618 
firebird2.0_2.0.3.12981.ds1-11.dsc
 5666bf2a83f012def7f1d63fc66a8c517f544eee8de7acff385a91112339862e 411412 
firebird2.0_2.0.3.12981.ds1-11.diff.gz
 25b02bffe9655683537e12eeb24e84a74729144ffcb2e3ced938fe876d57d505 436050 
firebird2.0-dev_2.0.3.12981.ds1-11_all.deb
 5e42a7b82d653768c3f0553b11c4c4c75c39e8786dbf9b981b96116742e09715 535484 
firebird2.0-examples_2.0.3.12981.ds1-11_all.deb
 8dff179b996f297beb3e1bf6621d7a65b2c879e3316aa2a362d80d202a6273ce 1241870 
firebird2.0-doc_2.0.3.12981.ds1-11_all.deb
 1d5100f6d2436d2181de8f0aa31d594fa1ae11af3fcb90bd066de530fc4d8557 2823216 
firebird2.0-super_2.0.3.12981.ds1-11_i386.deb
 af4bd93ef32852887f1ce1163d0c2d4f046003803d62f775c3eb64155d5dca13 1682526 
firebird2.0-classic_2.0.3.12981.ds1-11_i386.deb
 6a3a4551184a3857e3ed219323e21b687346875069980f90fd94a775cf83d574 611438 
libfbclient2_2.0.3.12981.ds1-11_i386.deb
 a53617a44c1fad6e4826568496831611bfe0bc06408543f4d9cf64e5a594c916 1472682 
libfbembed2_2.0.3.12981.ds1-11_i386.deb
 ed69297b519cb6021f247e695514ce298c96ef7cf62e3654df28fde5e31a3e8a 895666 
firebird2.0-common_2.0.3.12981.ds1-11_i386.deb
Files: 
 d174750c86b783b1b99f511dc99b1394 1618 misc optional 
firebird2.0_2.0.3.12981.ds1-11.dsc
 216693d3c2bd5b63b018598f37db095a 411412 misc optional 
firebird2.0_2.0.3.12981.ds1-11.diff.gz
 1d042c6359377c71f9754384a7923773 436050 libdevel optional 
firebird2.0-dev_2.0.3.12981.ds1-11_all.deb
 c74417ca71f705ca471b5e3d05c9b5a3 535484 doc optional 
firebird2.0-examples_2.0.3.12981.ds1-11_all.deb
 94e89fbde36fc6884a88f1f450b19c51 1241870 doc optional 
firebird2.0-doc_2.0.3.12981.ds1-11_all.deb
 2a6aa1727b1ec0d405205e7e03f824e9 2823216 misc optional 
firebird2.0-super_2.0.3.12981.ds1-11_i386.deb
 c35937c5006eecd5d1d72479d17d297e 1682526 misc optional 
firebird2.0-classic_2.0.3.12981.ds1-11_i386.deb
 8b86db2d856be8e3c37e69ddd3369baf 611438 libs optional 
libfbclient2_2.0.3.12981.ds1-11_i386.deb
 bda07a2df53dc274e74dc82050a4d3aa 1472682 libs optional 
libfbembed2_2.0.3.12981.ds1-11_i386.deb
 7f365083681d1be4775ebffa40d179f4 895666 misc optional 
firebird2.0-common_2.0.3.12981.ds1-11_i386.deb

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

iD8DBQFIAI8gHqjlqpcl9jsRAvFQAKCXWKex3Fx0OXVnKF6YzkIb1o++zACgnSHX
Mvixad7GNqXHtIEkNoKOlOc=
=ePM5
-END PGP SIGNATURE-


Accepted:
firebird2.0-classic_2.0.3.12981.ds1-11_i386.deb
  to pool/main/f/firebird2.0/firebird2.0-classic_2.0.3.12981.ds1-11_i386.deb
firebird2.0-common_2.0.3.12981.ds1-11_i386.deb
  to pool/main/f/firebird2.0/firebird2.0-common_2.0.3.12981.ds1-11_i386.deb

Accepted quagga 0.99.9-6 (source all amd64)

2008-04-12 Thread Christian Hammers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 12:53:51 +0200
Source: quagga
Binary: quagga quagga-doc
Architecture: source all amd64
Version: 0.99.9-6
Distribution: unstable
Urgency: low
Maintainer: Christian Hammers [EMAIL PROTECTED]
Changed-By: Christian Hammers [EMAIL PROTECTED]
Description: 
 quagga - BGP/OSPF/RIP routing daemon
 quagga-doc - documentation files for quagga
Closes: 469891
Changes: 
 quagga (0.99.9-6) unstable; urgency=low
 .
   * Fixed FTBFS by adding a build-dep to libpcre3-dev (thanks to  Luk Claes).
 Closes: #469891
Checksums-Sha1: 
 5a2a7c516bb1e1fb0b86a486fb938ed84213703f 1328 quagga_0.99.9-6.dsc
 83cdfc9c9dba5c311a1f265765c4924f67d44635 35607 quagga_0.99.9-6.diff.gz
 686bc15f8bf813c4055396361138ff0961755179 660452 quagga-doc_0.99.9-6_all.deb
 be6687faf9f03641ac3e16259122c576a6b92288 1721344 quagga_0.99.9-6_amd64.deb
Checksums-Sha256: 
 a2a2a0c381fb2e78f8d846a6f5dcb2b2bd4013c9cc7f609b398c89c246ae22ae 1328 
quagga_0.99.9-6.dsc
 aa57d95c81b6558c9241d49e8e9df18df3bc15b0a91ebe77ca2aaad60a1355a0 35607 
quagga_0.99.9-6.diff.gz
 a0e33df71172559f986c3ea88b0913b59f461f8b4c5c85d7d06f9e0acc3db0f8 660452 
quagga-doc_0.99.9-6_all.deb
 ab9a8118d6ff211adb279b506716d6fccc6c9d61f6bb57e6562ce7c3a86ce582 1721344 
quagga_0.99.9-6_amd64.deb
Files: 
 b1cfe1995b1bf69e4cbe7f41e38370d3 1328 net optional quagga_0.99.9-6.dsc
 e24c5f4e9e652bcc17bb81ae7b728754 35607 net optional quagga_0.99.9-6.diff.gz
 0917e2435138015f1fd8dea6b60c2b29 660452 doc optional 
quagga-doc_0.99.9-6_all.deb
 ebe6df077443006a8301497132f41e79 1721344 net optional quagga_0.99.9-6_amd64.deb

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

iEYEARECAAYFAkgAmA8ACgkQkR9K5oahGOZZZACfbhk2OejA0SRs/DpVxaQDm9dX
mS8AoMOGXw/HuL/75e7rrib1AvidDBi2
=Yo73
-END PGP SIGNATURE-


Accepted:
quagga-doc_0.99.9-6_all.deb
  to pool/main/q/quagga/quagga-doc_0.99.9-6_all.deb
quagga_0.99.9-6.diff.gz
  to pool/main/q/quagga/quagga_0.99.9-6.diff.gz
quagga_0.99.9-6.dsc
  to pool/main/q/quagga/quagga_0.99.9-6.dsc
quagga_0.99.9-6_amd64.deb
  to pool/main/q/quagga/quagga_0.99.9-6_amd64.deb


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



Accepted evolution-sharp 0.16.1-1 (source i386)

2008-04-12 Thread Mirco Bauer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Apr 2008 21:28:58 +0200
Source: evolution-sharp
Binary: libevolution3.0-cil
Architecture: source i386
Version: 0.16.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian CLI Libraries Team [EMAIL PROTECTED]
Changed-By: Mirco Bauer [EMAIL PROTECTED]
Description: 
 libevolution3.0-cil - CLI bindings for Evolution
Closes: 475212
Changes: 
 evolution-sharp (0.16.1-1) unstable; urgency=low
 .
   * New upstream release
 + Fixed evolution-sharp.pc file. (Closes: #475212)
Checksums-Sha1: 
 8733e8edfc6ce7b0e5d8c9bce8248566268e61ae 1827 evolution-sharp_0.16.1-1.dsc
 60c865ed07c3e99fb42cd5703af9fb6f436d8ecd 370372 
evolution-sharp_0.16.1.orig.tar.gz
 1a78e3eacdce723a9b50307f060faf3b4c2c3dbf 4820 evolution-sharp_0.16.1-1.diff.gz
 b1ec35a52c3ae9a075aac011fee1be69c79736bb 80218 
libevolution3.0-cil_0.16.1-1_i386.deb
Checksums-Sha256: 
 c01f99b4fdf7a5cf1440ca525417fdea0a08e010fd58806bbc9da1f16d618968 1827 
evolution-sharp_0.16.1-1.dsc
 6f6911e985490cc8170f1b02df7cf28db3af44469d4033dd1c0093d5b01f108c 370372 
evolution-sharp_0.16.1.orig.tar.gz
 96a3f35ae4a26bf4118a6304d4b4cdec6c3a4554f6bc7054455b8bc21c31a5b0 4820 
evolution-sharp_0.16.1-1.diff.gz
 1db7f3b25dcf9072356f0ead274d7149af7a1d793c269ae26a110634c9074a48 80218 
libevolution3.0-cil_0.16.1-1_i386.deb
Files: 
 a580f5bb95230dbc2344d9275fc9e1fb 1827 libs optional 
evolution-sharp_0.16.1-1.dsc
 1fbd56c3fec08e5e8d8fde8ed52353d2 370372 libs optional 
evolution-sharp_0.16.1.orig.tar.gz
 4db0117fc39158e8bf6e503f4433f878 4820 libs optional 
evolution-sharp_0.16.1-1.diff.gz
 088626f9d2ad66816685ac42365c8ee4 80218 libs optional 
libevolution3.0-cil_0.16.1-1_i386.deb

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

iQEVAwUBSACZEXEn5avu+UbIAQKIOgf/Q9shkmr8WCqMpV4Qbp2UPEGnviuB4lFd
BNfSXpfvwQVxFfTx2+KDIpK6VZ+bl+qm6nadL5iMx2XhOSWIVSlsrff/mW47nD3N
j8YIu177iizDW+X7+OFX0RlPpXH0SMEeVeLj16QQGP76bnmYrG29e82UCB2JahpN
kNg9aU90C7n3HGqBjiJMxktWVSuf0OQL0oc2NU9QYyFfIXsf7Ne94oW46qB4vPWk
QrATeCv5wW0mZg6MsdRjnnu4lhF1xd7S+nBPmggvt+BO2J1t8vKXx9+O7f847OJC
v1K2kJt+h4awXwZysDgZZXhkxvAknocINznHJpKoeggs3XulFdJ13g==
=9I6h
-END PGP SIGNATURE-


Accepted:
evolution-sharp_0.16.1-1.diff.gz
  to pool/main/e/evolution-sharp/evolution-sharp_0.16.1-1.diff.gz
evolution-sharp_0.16.1-1.dsc
  to pool/main/e/evolution-sharp/evolution-sharp_0.16.1-1.dsc
evolution-sharp_0.16.1.orig.tar.gz
  to pool/main/e/evolution-sharp/evolution-sharp_0.16.1.orig.tar.gz
libevolution3.0-cil_0.16.1-1_i386.deb
  to pool/main/e/evolution-sharp/libevolution3.0-cil_0.16.1-1_i386.deb


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



Accepted xenomai 2.4.3-3 (source all i386)

2008-04-12 Thread Roland Stigge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Apr 2008 10:01:33 +0200
Source: xenomai
Binary: xenomai-runtime linux-patch-xenomai libxenomai1 libxenomai-dev 
xenomai-doc
Architecture: source all i386
Version: 2.4.3-3
Distribution: unstable
Urgency: low
Maintainer: Roland Stigge [EMAIL PROTECTED]
Changed-By: Roland Stigge [EMAIL PROTECTED]
Description: 
 libxenomai-dev - Headers and static libs for Xenomai
 libxenomai1 - Headers and static libs for Xenomai
 linux-patch-xenomai - Linux kernel patches for Xenomai
 xenomai-doc - Xenomai documentation
 xenomai-runtime - Xenomai runtime utilities
Closes: 473098
Changes: 
 xenomai (2.4.3-3) unstable; urgency=low
 .
   * debian/rules: Separated prepare-patch.sh calls for individual
 architectures (Closes: #473098)
Checksums-Sha1: 
 e6fb8b95efb1663995e3beadae66831865e35042 1079 xenomai_2.4.3-3.dsc
 9833f777cde249c4c4ac69ee03da5488e7eded88 7077 xenomai_2.4.3-3.diff.gz
 9b610658ed213530745e2cd424b19ce01c9070f4 6532762 
linux-patch-xenomai_2.4.3-3_all.deb
 9b37c98decf57411818953ee23001a870e04924e 10449732 xenomai-doc_2.4.3-3_all.deb
 4fa6cc8c26a1a10b44c864cc1fc00846fa941063 168808 
xenomai-runtime_2.4.3-3_i386.deb
 924d636cf724ba19871a6b0d8c00546a5d2f925c 154372 libxenomai1_2.4.3-3_i386.deb
 c8e1de27185721510e75b07812cd585d1c511d95 361298 libxenomai-dev_2.4.3-3_i386.deb
Checksums-Sha256: 
 7340bc6a9c2063c1493e4711e5ac13b02dd1c5948168f766f147343e5a12335c 1079 
xenomai_2.4.3-3.dsc
 f1899165df0edfc27e5fbd64d1594d4350b39d899662d128612cc2f56e9910d5 7077 
xenomai_2.4.3-3.diff.gz
 e5feaa5a779f495aedc07a597e4de973280277f9798306d07b631b6519b7269f 6532762 
linux-patch-xenomai_2.4.3-3_all.deb
 316eaee5491d6c3c416179d8dfe5179fe20fb8ca81b539a7981c03f0f15b0f8a 10449732 
xenomai-doc_2.4.3-3_all.deb
 974898b444d79c7428e586e2e74dd8c3aa740dfbc76119004588e74aba3d9499 168808 
xenomai-runtime_2.4.3-3_i386.deb
 fc01dfcf7857c6a027d37c785033e238c48d5446aecaea9d77ab0183c61f1c5c 154372 
libxenomai1_2.4.3-3_i386.deb
 fd91ecfbcdb3ace4fdfc52c74ac6ab60c045822306cb18918a61bb6dc2352289 361298 
libxenomai-dev_2.4.3-3_i386.deb
Files: 
 2e1fe931c9595a218d13549850a346df 1079 devel extra xenomai_2.4.3-3.dsc
 24d7c4fd4955955072d96c7f8ce7cf5e 7077 devel extra xenomai_2.4.3-3.diff.gz
 66feabf6191efc08f24da30f17b3afa7 6532762 devel extra 
linux-patch-xenomai_2.4.3-3_all.deb
 b8c3b75bfe9727569b4c0f832a5a12d6 10449732 doc extra xenomai-doc_2.4.3-3_all.deb
 bd6aa6383bd33f91cd11bf2f6e5891e0 168808 devel extra 
xenomai-runtime_2.4.3-3_i386.deb
 ea83d039963a3a0946ab29312ae81c2e 154372 libs extra libxenomai1_2.4.3-3_i386.deb
 fe1a2112f769e19f9158a1c2aa03bf27 361298 libdevel extra 
libxenomai-dev_2.4.3-3_i386.deb

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

iD8DBQFIAJeHcaH/YBv43g8RArdBAJsE4wd7auSaKd21pcdje1bUhKhjfACgyI77
0BcQmceheEvdNI2yL2m24aA=
=b2DH
-END PGP SIGNATURE-


Accepted:
libxenomai-dev_2.4.3-3_i386.deb
  to pool/main/x/xenomai/libxenomai-dev_2.4.3-3_i386.deb
libxenomai1_2.4.3-3_i386.deb
  to pool/main/x/xenomai/libxenomai1_2.4.3-3_i386.deb
linux-patch-xenomai_2.4.3-3_all.deb
  to pool/main/x/xenomai/linux-patch-xenomai_2.4.3-3_all.deb
xenomai-doc_2.4.3-3_all.deb
  to pool/main/x/xenomai/xenomai-doc_2.4.3-3_all.deb
xenomai-runtime_2.4.3-3_i386.deb
  to pool/main/x/xenomai/xenomai-runtime_2.4.3-3_i386.deb
xenomai_2.4.3-3.diff.gz
  to pool/main/x/xenomai/xenomai_2.4.3-3.diff.gz
xenomai_2.4.3-3.dsc
  to pool/main/x/xenomai/xenomai_2.4.3-3.dsc


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



Accepted gtk-vnc 0.3.5-2 (source powerpc)

2008-04-12 Thread Guido Guenther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 12:44:28 +0200
Source: gtk-vnc
Binary: libgtk-vnc-1.0-0 libgtk-vnc-1.0-dev python-gtk-vnc mozilla-gtk-vnc
Architecture: source powerpc
Version: 0.3.5-2
Distribution: unstable
Urgency: low
Maintainer: Guido Guenther [EMAIL PROTECTED]
Changed-By: Guido Guenther [EMAIL PROTECTED]
Description: 
 libgtk-vnc-1.0-0 - A VNC viewer widget for GTK+ (runtime libraries)
 libgtk-vnc-1.0-dev - A VNC viewer widget for GTK+ (development files)
 mozilla-gtk-vnc - A VNC viewer widget for GTK+ (mozilla plugin)
 python-gtk-vnc - A VNC viewer widget for GTK+ (Python binding)
Closes: 475647
Changes: 
 gtk-vnc (0.3.5-2) unstable; urgency=low
 .
   * fix typo in dependencies  (Closes: #475647)
Checksums-Sha1: 
 c503dc259ba9d9e0269f5a03a3b16111876dd58d 1257 gtk-vnc_0.3.5-2.dsc
 0a6ca3dc5a86338058ef0101a13d3a5ca9153c69 3954 gtk-vnc_0.3.5-2.diff.gz
 3716cd2c5b2619ef6c54bd88bcba6544e70c2739 69940 
libgtk-vnc-1.0-0_0.3.5-2_powerpc.deb
 19817dc743bad9dd3fa171858c9c61f465c57382 72468 
libgtk-vnc-1.0-dev_0.3.5-2_powerpc.deb
 be6e94dc000aae789a7f79c88ffedd51a9ec4940 27138 
python-gtk-vnc_0.3.5-2_powerpc.deb
 5fb5b3961d4773b3c741047dd11c343e7a678865 28324 
mozilla-gtk-vnc_0.3.5-2_powerpc.deb
Checksums-Sha256: 
 a6782f30ed3c82ae4dc094eb3f11b4f5ec5051eb0c8972d9dcf4920a95050a62 1257 
gtk-vnc_0.3.5-2.dsc
 8444ac1db6c8d305c6ec697063e37bb935a6812204b802afcf45d22c7d77ba71 3954 
gtk-vnc_0.3.5-2.diff.gz
 314746736a66d79345f84d82785e331cc5963630c113e43b08d809b748752c6e 69940 
libgtk-vnc-1.0-0_0.3.5-2_powerpc.deb
 2eb5339c04b5acd9d653fdf9a862c0d333e6424975840bc07be37dad1f6f6077 72468 
libgtk-vnc-1.0-dev_0.3.5-2_powerpc.deb
 86dd82334a194ad2e68296c84c1de75b210e00132cd08d17c38bb6d3b61267b9 27138 
python-gtk-vnc_0.3.5-2_powerpc.deb
 e256befcbeeeff4bc95fd796186aa39efa30843f7615746a3289050716b15e30 28324 
mozilla-gtk-vnc_0.3.5-2_powerpc.deb
Files: 
 2a184116c5d76d9d183a5099cec9fa63 1257 gnome optional gtk-vnc_0.3.5-2.dsc
 7f2a9ff3b860a7e88976c7b066a73ae9 3954 gnome optional gtk-vnc_0.3.5-2.diff.gz
 09dd78352237e24df9a51ddf3296872b 69940 libs optional 
libgtk-vnc-1.0-0_0.3.5-2_powerpc.deb
 3bf70786b5d152d89619a773a808 72468 libdevel optional 
libgtk-vnc-1.0-dev_0.3.5-2_powerpc.deb
 717b504eb4185b95a31f05793f238a9d 27138 python optional 
python-gtk-vnc_0.3.5-2_powerpc.deb
 c62dd804d75f5abbcceaa13c2c309854 28324 web optional 
mozilla-gtk-vnc_0.3.5-2_powerpc.deb

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

iD8DBQFIAJ1Un88szT8+ZCYRAiWBAJ4hyzEBpYgEEZKFpoYZx8ybx5zGWQCfbLAV
e9ZmIoqDXM3Agwwq/s9F6W4=
=O95d
-END PGP SIGNATURE-


Accepted:
gtk-vnc_0.3.5-2.diff.gz
  to pool/main/g/gtk-vnc/gtk-vnc_0.3.5-2.diff.gz
gtk-vnc_0.3.5-2.dsc
  to pool/main/g/gtk-vnc/gtk-vnc_0.3.5-2.dsc
libgtk-vnc-1.0-0_0.3.5-2_powerpc.deb
  to pool/main/g/gtk-vnc/libgtk-vnc-1.0-0_0.3.5-2_powerpc.deb
libgtk-vnc-1.0-dev_0.3.5-2_powerpc.deb
  to pool/main/g/gtk-vnc/libgtk-vnc-1.0-dev_0.3.5-2_powerpc.deb
mozilla-gtk-vnc_0.3.5-2_powerpc.deb
  to pool/main/g/gtk-vnc/mozilla-gtk-vnc_0.3.5-2_powerpc.deb
python-gtk-vnc_0.3.5-2_powerpc.deb
  to pool/main/g/gtk-vnc/python-gtk-vnc_0.3.5-2_powerpc.deb


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



Accepted libfishsound 0.7.0-2.2 (source amd64)

2008-04-12 Thread Nico Golde
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Apr 2008 14:57:28 +0200
Source: libfishsound
Binary: libfishsound1 libfishsound1-dev libfishsound1-dbg
Architecture: source amd64
Version: 0.7.0-2.2
Distribution: unstable
Urgency: high
Maintainer: Jamie Wilkinson [EMAIL PROTECTED]
Changed-By: Nico Golde [EMAIL PROTECTED]
Description: 
 libfishsound1 - simple programming interface that wraps Xiph.Org audio codecs
 libfishsound1-dbg - simple programming interface that wraps Xiph.Org audio 
codecs (de
 libfishsound1-dev - simple programming interface that wraps Xiph.Org audio 
codecs (de
Closes: 475152
Changes: 
 libfishsound (0.7.0-2.2) unstable; urgency=high
 .
   * Non-maintainer upload by the Security Team.
   * This update fixes the following security issue:
 - CVE-2008-1686: insufficient boundary checks on a header structure
   of a speex stream due to missing check for a negative value
   might lead to arbitrary code execution (Closes: #475152).
Checksums-Sha1: 
 8874b32ebe27bbe21032d9ebd01cdfd7dd381ec5 1058 libfishsound_0.7.0-2.2.dsc
 7904b22eeb338923e31b32703e7dcb071abfcb96 204804 libfishsound_0.7.0-2.2.diff.gz
 bfef41420ed98c80787a1f80b5f657253c2c17a5 14746 
libfishsound1_0.7.0-2.2_amd64.deb
 29f3e727dd3b795531c3e079abcaabc56e98b490 31028 
libfishsound1-dev_0.7.0-2.2_amd64.deb
 1f85641f6bfeb578784df4f5e271ae3f446d54ae 23018 
libfishsound1-dbg_0.7.0-2.2_amd64.deb
Checksums-Sha256: 
 b3c56bc9f710f216215f11ad0103efee1275375f1826ef68c04f65bf673e03fb 1058 
libfishsound_0.7.0-2.2.dsc
 213433557ac85019d81a799ec7840d289a4fcd11fc5297bc0b5667d5ad45c1dd 204804 
libfishsound_0.7.0-2.2.diff.gz
 de7be7882135def617a700d8244fc4e030cb7f2327a87f0209a04d9c4ddad29d 14746 
libfishsound1_0.7.0-2.2_amd64.deb
 f84059914e2144d83ee12bc1259351444668c150cd41a79c790082c1b85c7fa8 31028 
libfishsound1-dev_0.7.0-2.2_amd64.deb
 e94227facc312d0a7d99c175590312cd44aa18c6a5fe1856b07bb19de40bc46f 23018 
libfishsound1-dbg_0.7.0-2.2_amd64.deb
Files: 
 ce9e5d27f954dbbf69be38759b7f6e12 1058 unknown optional 
libfishsound_0.7.0-2.2.dsc
 8d268f649d641599078e78e652039569 204804 unknown optional 
libfishsound_0.7.0-2.2.diff.gz
 3e113fd64115b681241093f69e625c48 14746 libs optional 
libfishsound1_0.7.0-2.2_amd64.deb
 b98597fd334c8e864204d02c63486aa3 31028 libdevel optional 
libfishsound1-dev_0.7.0-2.2_amd64.deb
 af6c52838ff9220c4202a9aa379ab437 23018 libdevel optional 
libfishsound1-dbg_0.7.0-2.2_amd64.deb

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

iD8DBQFIAJ9EHYflSXNkfP8RAnV1AKCkUvVl85ddIW/gYV/nXvNF3rVs2gCfdNbs
IK+5UD/tv66AjiYlcNelCXg=
=uQDo
-END PGP SIGNATURE-


Accepted:
libfishsound1-dbg_0.7.0-2.2_amd64.deb
  to pool/main/libf/libfishsound/libfishsound1-dbg_0.7.0-2.2_amd64.deb
libfishsound1-dev_0.7.0-2.2_amd64.deb
  to pool/main/libf/libfishsound/libfishsound1-dev_0.7.0-2.2_amd64.deb
libfishsound1_0.7.0-2.2_amd64.deb
  to pool/main/libf/libfishsound/libfishsound1_0.7.0-2.2_amd64.deb
libfishsound_0.7.0-2.2.diff.gz
  to pool/main/libf/libfishsound/libfishsound_0.7.0-2.2.diff.gz
libfishsound_0.7.0-2.2.dsc
  to pool/main/libf/libfishsound/libfishsound_0.7.0-2.2.dsc


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



Accepted testdisk 6.9-1 (source i386)

2008-04-12 Thread Jean-Michel Kelbert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 12 Apr 2008 13:47:12 +0200
Source: testdisk
Binary: testdisk
Architecture: source i386
Version: 6.9-1
Distribution: unstable
Urgency: low
Maintainer: Jean-Michel Kelbert [EMAIL PROTECTED]
Changed-By: Jean-Michel Kelbert [EMAIL PROTECTED]
Description: 
 testdisk   - Partition scanner and disk recovery tool
Changes: 
 testdisk (6.9-1) unstable; urgency=low
 .
   * New upstream release
   * Enable sudo support
   * Enable UUID support
Files: 
 58e2b0acfc69a515bb33829e81b7f36b 663 admin optional testdisk_6.9-1.dsc
 47eb83d604f0f498ef248f8f09ff8544 1547146 admin optional 
testdisk_6.9.orig.tar.gz
 d2fb6e22350974cb6abb6728c590165e 3928 admin optional testdisk_6.9-1.diff.gz
 270202aa850e5c33ef97d8c6206cf15d 1350118 admin optional testdisk_6.9-1_i386.deb

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

iD8DBQFIAKMrZA5kLi8vDN4RAnydAKC22BjeMnlqs6uRU8Dts1+D2aji4wCZAesG
F0AC8BwJJaHVnytC4u4UK84=
=G7mi
-END PGP SIGNATURE-


Accepted:
testdisk_6.9-1.diff.gz
  to pool/main/t/testdisk/testdisk_6.9-1.diff.gz
testdisk_6.9-1.dsc
  to pool/main/t/testdisk/testdisk_6.9-1.dsc
testdisk_6.9-1_i386.deb
  to pool/main/t/testdisk/testdisk_6.9-1_i386.deb
testdisk_6.9.orig.tar.gz
  to pool/main/t/testdisk/testdisk_6.9.orig.tar.gz


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



Accepted localechooser 2.01 (source all)

2008-04-12 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 13:46:57 +0200
Source: localechooser
Binary: localechooser
Architecture: source all
Version: 2.01
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 localechooser - choose language/country/locale (udeb)
Changes: 
 localechooser (2.01) unstable; urgency=low
 .
   [ Frans Pop ]
   * Use cdebconf's new column alignment feature; requires: cdebconf (0.129).
   * Drop dependency on ancient version of di-utils.
   * Testing for $TERM_FRAMEBUFFER is more reliable than testing the debconf
 parameter as there are more factors that determine whether we have a
 framebuffer or not. Requires rootskel (= 1.61).
   * When not in UTF-8 mode, make sure that for the language list the Choices
 values are displayed and not the Choices-C values.
   * Remove Petter Reinholdtsen as Uploader with many thanks for his past
 contributions.
 .
   [ Christian Perrier ]
   * Activate Marathi in languagelist.
   * Add MF (Saint-Martin) and BL (Saint-Barthélémy) to the Caribbean region.
 .
   [ Updated translations ]
   * Amharic (am.po) by tegegne tefera
   * Arabic (ar.po) by Ossama M. Khayat
   * Bulgarian (bg.po) by Damyan Ivanov
   * Czech (cs.po) by Miroslav Kure
   * German (de.po) by Jens Seidel
   * Spanish (es.po) by Javier Fernández-Sanguino Peña
   * Basque (eu.po) by Piarres Beobide
   * Finnish (fi.po) by Esko Arajärvi
   * French (fr.po) by Christian Perrier
   * Galician (gl.po) by Jacobo Tarrio
   * Gujarati (gu.po) by Kartik Mistry
   * Japanese (ja.po) by Kenshi Muto
   * Lithuanian (lt.po) by Kęstutis Biliūnas
   * Marathi (mr.po)
   * Dutch (nl.po) by Frans Pop
   * Panjabi (pa.po) by Amanpreet Singh Brar
   * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
   * Portuguese (pt.po) by Miguel Figueiredo
   * Romanian (ro.po) by Eddy Petrișor
   * Russian (ru.po) by Yuri Kozlov
   * Slovak (sk.po) by Ivan Masár
   * Swedish (sv.po) by Daniel Nylander
   * Vietnamese (vi.po) by Clytie Siddall
   * Simplified Chinese (zh_CN.po) by Ming Hua
Checksums-Sha1: 
 dfc30e888b8df5ee20a7ed9fa1affbb179f8420e 1033 localechooser_2.01.dsc
 fa33465b908c69f27da671debd71d1c08454f12b 110312 localechooser_2.01.tar.gz
 5e3c9c9528378bc9ca54e49f32fce360a388db0b 137096 localechooser_2.01_all.udeb
Checksums-Sha256: 
 a53b9a9b4933bd144537cdeafe27bfecd1ff13dc90cb6757ff0b2e89c6648e9d 1033 
localechooser_2.01.dsc
 ff367479cb9b2ff90c642901da374da4d75dcb4d56e49571b05c71e3c04d31ec 110312 
localechooser_2.01.tar.gz
 3a21a359873fa6eda7d543fcfe25b28e813df6dc6fdbecfafaa1da06a54c33f9 137096 
localechooser_2.01_all.udeb
Files: 
 79b412ecb9d11e087ef49efe21e391dc 1033 debian-installer optional 
localechooser_2.01.dsc
 c0b044ecbcebc0a5e53ef01a9c31ee7b 110312 debian-installer optional 
localechooser_2.01.tar.gz
 4c2c3d0027bc78804591adafcef34672 137096 debian-installer optional 
localechooser_2.01_all.udeb
Package-Type: udeb

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

iD8DBQFIAKHSgm/Kwh6ICoQRAj6LAJ4s73PaZLP79Zn/NCYh8zFUg+ETngCgl8Up
3/FnIZYnOCn3hrlQc5bd2b8=
=VonK
-END PGP SIGNATURE-


Accepted:
localechooser_2.01.dsc
  to pool/main/l/localechooser/localechooser_2.01.dsc
localechooser_2.01.tar.gz
  to pool/main/l/localechooser/localechooser_2.01.tar.gz
localechooser_2.01_all.udeb
  to pool/main/l/localechooser/localechooser_2.01_all.udeb


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



Accepted lemonldap-ng 0.9.1-1 (source all)

2008-04-12 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 11 Apr 2008 16:48:59 +0200
Source: lemonldap-ng
Binary: lemonldap-ng lemonldap-ng-doc liblemonldap-ng-handler-perl 
liblemonldap-ng-conf-perl liblemonldap-ng-manager-perl 
liblemonldap-ng-portal-perl
Architecture: source all
Version: 0.9.1-1
Distribution: unstable
Urgency: low
Maintainer: Xavier Guimard [EMAIL PROTECTED]
Changed-By: Xavier Guimard [EMAIL PROTECTED]
Description: 
 lemonldap-ng - Lemonldap::NG Web-SSO system
 lemonldap-ng-doc - Lemonldap::NG Web-SSO system documentation
 liblemonldap-ng-conf-perl - Lemonldap::NG apache administration interface part
 liblemonldap-ng-handler-perl - Lemonldap::NG apache module part
 liblemonldap-ng-manager-perl - Lemonldap::NG apache manager part
 liblemonldap-ng-portal-perl - Lemonldap::NG apache authentication portal part
Changes: 
 lemonldap-ng (0.9.1-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 02ed234f6b57e853f4a049a271455dab 878 perl extra lemonldap-ng_0.9.1-1.dsc
 deb84970cb9ba86ae387761f5b2946e2 280295 perl extra 
lemonldap-ng_0.9.1.orig.tar.gz
 5276be4ea741bd396a329b22d9a5edbf 470 perl extra lemonldap-ng_0.9.1-1.diff.gz
 873987383512d53bf2f8667c76eea3ca 10412 perl extra lemonldap-ng_0.9.1-1_all.deb
 d00701c31b7eb2fb73a67f1069ba4fa4 78250 doc extra 
lemonldap-ng-doc_0.9.1-1_all.deb
 7367f4ee10790a9577b71fe58bda8597 52012 perl extra 
liblemonldap-ng-handler-perl_0.9.1-1_all.deb
 d570b6b828197157a7048b0cb27d78b8 28570 perl extra 
liblemonldap-ng-conf-perl_0.9.1-1_all.deb
 c5c1669f0da9deda2e74510a007328fc 110812 perl extra 
liblemonldap-ng-manager-perl_0.9.1-1_all.deb
 6f9a318656940b8be4589b40acd9f304 120662 perl extra 
liblemonldap-ng-portal-perl_0.9.1-1_all.deb

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

iD8DBQFIAKRptwVrWo1fQMsRAuHWAJ0QUAQ05f867Y9kMPF8/wCSSUX7gwCfSPaB
Vd1vCrGiuCUBbyCuMmT0QgU=
=fTiW
-END PGP SIGNATURE-


Accepted:
lemonldap-ng-doc_0.9.1-1_all.deb
  to pool/main/l/lemonldap-ng/lemonldap-ng-doc_0.9.1-1_all.deb
lemonldap-ng_0.9.1-1.diff.gz
  to pool/main/l/lemonldap-ng/lemonldap-ng_0.9.1-1.diff.gz
lemonldap-ng_0.9.1-1.dsc
  to pool/main/l/lemonldap-ng/lemonldap-ng_0.9.1-1.dsc
lemonldap-ng_0.9.1-1_all.deb
  to pool/main/l/lemonldap-ng/lemonldap-ng_0.9.1-1_all.deb
lemonldap-ng_0.9.1.orig.tar.gz
  to pool/main/l/lemonldap-ng/lemonldap-ng_0.9.1.orig.tar.gz
liblemonldap-ng-conf-perl_0.9.1-1_all.deb
  to pool/main/l/lemonldap-ng/liblemonldap-ng-conf-perl_0.9.1-1_all.deb
liblemonldap-ng-handler-perl_0.9.1-1_all.deb
  to pool/main/l/lemonldap-ng/liblemonldap-ng-handler-perl_0.9.1-1_all.deb
liblemonldap-ng-manager-perl_0.9.1-1_all.deb
  to pool/main/l/lemonldap-ng/liblemonldap-ng-manager-perl_0.9.1-1_all.deb
liblemonldap-ng-portal-perl_0.9.1-1_all.deb
  to pool/main/l/lemonldap-ng/liblemonldap-ng-portal-perl_0.9.1-1_all.deb


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



Accepted fakeroot-ng 0.09-2 (source i386)

2008-04-12 Thread Shachar Shemesh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 12:28:35 +
Source: fakeroot-ng
Binary: fakeroot-ng
Architecture: source i386
Version: 0.09-2
Distribution: unstable
Urgency: low
Maintainer: Shachar Shemesh [EMAIL PROTECTED]
Changed-By: Shachar Shemesh [EMAIL PROTECTED]
Description: 
 fakeroot-ng - Gives a fake root environment
Closes: 474793
Changes: 
 fakeroot-ng (0.09-2) unstable; urgency=low
 .
   * FTBFS: arch/platform.h:17: error: 'pid_t' has not been declared
 (Closes: #474793)
   * Merge support for gcc 4.3 from upstream SVN
Checksums-Sha1: 
 cac23a055533ac5957bbb10e73e74ca3e3affe4c 1013 fakeroot-ng_0.09-2.dsc
 cbdf820f3cbdfdbc500b7756e3f44430388dd9e9 3822 fakeroot-ng_0.09-2.diff.gz
 a9ba1c30e28c42756262e1f79e1017ce7182b51f 38920 fakeroot-ng_0.09-2_i386.deb
Checksums-Sha256: 
 84ba33730a50060ae6216a12c171089fb86caf9c3ca74fb478cf61c2190a4f20 1013 
fakeroot-ng_0.09-2.dsc
 fc5ac8147aabe631eb73cceee6310593bcc8187e9840994dd711ffc431288117 3822 
fakeroot-ng_0.09-2.diff.gz
 d8c0957e125b1105e967ba56aa265884c4fbf19efe84bbf7d896429fd4b38340 38920 
fakeroot-ng_0.09-2_i386.deb
Files: 
 5bbec1775661f25ede2561594414cc6a 1013 utils extra fakeroot-ng_0.09-2.dsc
 23b295d1fb5111dc2547b6e34f133ccd 3822 utils extra fakeroot-ng_0.09-2.diff.gz
 cbf80cb76f62b21b6b25a68ce399d918 38920 utils extra fakeroot-ng_0.09-2_i386.deb

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

iD8DBQFIAK3sg8ByFc29vOIRAltYAKCGee7eCdX/Zn7dE0yMx5HzxgrlXwCfQcBi
o2B89sDt3Q2KEIfn4ljaOIo=
=j/NF
-END PGP SIGNATURE-


Accepted:
fakeroot-ng_0.09-2.diff.gz
  to pool/main/f/fakeroot-ng/fakeroot-ng_0.09-2.diff.gz
fakeroot-ng_0.09-2.dsc
  to pool/main/f/fakeroot-ng/fakeroot-ng_0.09-2.dsc
fakeroot-ng_0.09-2_i386.deb
  to pool/main/f/fakeroot-ng/fakeroot-ng_0.09-2_i386.deb


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



Accepted pango1.0 1.20.2-2 (source all i386)

2008-04-12 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 14:10:24 +0200
Source: pango1.0
Binary: libpango1.0-0 libpango1.0-udeb libpango1.0-common libpango1.0-dev 
libpango1.0-0-dbg libpango1.0-doc
Architecture: source all i386
Version: 1.20.2-2
Distribution: unstable
Urgency: low
Maintainer: Sebastien Bacher [EMAIL PROTECTED]
Changed-By: Sebastian Dröge [EMAIL PROTECTED]
Description: 
 libpango1.0-0 - Layout and rendering of internationalized text
 libpango1.0-0-dbg - The Pango library and debugging symbols
 libpango1.0-common - Modules and configuration files for the Pango
 libpango1.0-dev - Development files for the Pango
 libpango1.0-doc - Documentation files for the Pango
 libpango1.0-udeb - Layout and rendering of internationalized text - minimal 
runtime (udeb)
Changes: 
 pango1.0 (1.20.2-2) unstable; urgency=low
 .
   * debian/rules:
 + Don't include the udeb in the debug package to get a working debug
   package in case the udeb libraries differ from the real ones.
Checksums-Sha1: 
 88dc3cbde8b807ed84933115f0a766c0dd547017 1605 pango1.0_1.20.2-2.dsc
 a6d1bcab72ec5b6119b0b95e3895b369cddbd805 27750 pango1.0_1.20.2-2.diff.gz
 db890a02ffc17f793019817e7ee6b9f17577477c 62928 
libpango1.0-common_1.20.2-2_all.deb
 a66315dba53421d1ec4f64f8eab2552f5f5175f0 279720 
libpango1.0-doc_1.20.2-2_all.deb
 20380da077313facea807b65e9125c62083b556f 287468 libpango1.0-0_1.20.2-2_i386.deb
 7c8f432fa0d0b8399d71c75d4003f93f953dd6e9 213648 
libpango1.0-udeb_1.20.2-2_i386.udeb
 8af984a3ef8ae72b066cfc188e92aa50cbc49bbb 347742 
libpango1.0-dev_1.20.2-2_i386.deb
 1e30b9bf345adb7715e2dd47c801cbca4bd5fa7a 700474 
libpango1.0-0-dbg_1.20.2-2_i386.deb
Checksums-Sha256: 
 8ace55ab989a982023cebaf1297d9a69b043c11577dd5df16a0a84776b8a83ab 1605 
pango1.0_1.20.2-2.dsc
 27c8f4d4dceae7b3a834b03de3ea9da45ebba657d889bea10e9bb09856c4cab5 27750 
pango1.0_1.20.2-2.diff.gz
 debafdad5ccf520d132df43949e32a71e77eaa294dd484fc6f066165637fdd02 62928 
libpango1.0-common_1.20.2-2_all.deb
 ac2cb13a1f6b2596c887310b924569555fb7bd428da8ab05267ccf6ff89dbd5b 279720 
libpango1.0-doc_1.20.2-2_all.deb
 0877c5e25fbe736f87253305ed0bc497fd2cd9c4834fd714790ff7de9671f65f 287468 
libpango1.0-0_1.20.2-2_i386.deb
 32959560dbb99c316b9c44130de14c27dd1083acdc4d4412d619d8ce9868d475 213648 
libpango1.0-udeb_1.20.2-2_i386.udeb
 4241ebd6194676dfa6d9d1fb83f3584bf86211e6c412aa21cbfee74187323528 347742 
libpango1.0-dev_1.20.2-2_i386.deb
 d90f5857ffd9c535c6b080cf3eae103ceeef3e3481d1804ab44b6b57c5f87e53 700474 
libpango1.0-0-dbg_1.20.2-2_i386.deb
Files: 
 e3e450501faf92bd715b7c875b6746bf 1605 libs optional pango1.0_1.20.2-2.dsc
 4f69d6b386973473c73590e1fa66a96a 27750 libs optional pango1.0_1.20.2-2.diff.gz
 b9df8364bd88683925e7fe427d72f7ee 62928 misc optional 
libpango1.0-common_1.20.2-2_all.deb
 4c7bacd456d217600f205a5474d9a198 279720 doc optional 
libpango1.0-doc_1.20.2-2_all.deb
 f6dc7ccbcc92126debb9146ffa3a5ac7 287468 libs optional 
libpango1.0-0_1.20.2-2_i386.deb
 bb89342b1dd5419db94fc3c0d27326bc 213648 debian-installer optional 
libpango1.0-udeb_1.20.2-2_i386.udeb
 3e65a22f0a6f780b42eb86aed3a25206 347742 libdevel optional 
libpango1.0-dev_1.20.2-2_i386.deb
 f05b371f32009cfedf72b9b88ea09527 700474 libdevel extra 
libpango1.0-0-dbg_1.20.2-2_i386.deb
Package-Type: udeb

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

iD8DBQFIAKxwBsBdh1vkHyERAh8cAJ9GM0uOFCoRnMuGGE7ZN9Qnnu+TAgCeLLKa
kdpf/0zsh2H3ZS+AJgd790A=
=iDNF
-END PGP SIGNATURE-


Accepted:
libpango1.0-0-dbg_1.20.2-2_i386.deb
  to pool/main/p/pango1.0/libpango1.0-0-dbg_1.20.2-2_i386.deb
libpango1.0-0_1.20.2-2_i386.deb
  to pool/main/p/pango1.0/libpango1.0-0_1.20.2-2_i386.deb
libpango1.0-common_1.20.2-2_all.deb
  to pool/main/p/pango1.0/libpango1.0-common_1.20.2-2_all.deb
libpango1.0-dev_1.20.2-2_i386.deb
  to pool/main/p/pango1.0/libpango1.0-dev_1.20.2-2_i386.deb
libpango1.0-doc_1.20.2-2_all.deb
  to pool/main/p/pango1.0/libpango1.0-doc_1.20.2-2_all.deb
libpango1.0-udeb_1.20.2-2_i386.udeb
  to pool/main/p/pango1.0/libpango1.0-udeb_1.20.2-2_i386.udeb
pango1.0_1.20.2-2.diff.gz
  to pool/main/p/pango1.0/pango1.0_1.20.2-2.diff.gz
pango1.0_1.20.2-2.dsc
  to pool/main/p/pango1.0/pango1.0_1.20.2-2.dsc


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



Accepted pisg 0.72-1 (source all)

2008-04-12 Thread Julien Danjou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 14:28:11 +0200
Source: pisg
Binary: pisg
Architecture: source all
Version: 0.72-1
Distribution: unstable
Urgency: low
Maintainer: Julien Danjou [EMAIL PROTECTED]
Changed-By: Julien Danjou [EMAIL PROTECTED]
Description: 
 pisg   - Perl IRC Statistics Generator
Closes: 430946
Changes: 
 pisg (0.72-1) unstable; urgency=low
 .
   * New upstream release
 + Fix -ne option in manpage (Closes: #430946)
   * Switch to debhelper 5
   * Bump standard version
   * Fix binary-arch-rules-but-pkg-is-arch-indep
   * Fix copyright
Checksums-Sha1: 
 833c0edbf378236994e52141d0a90114d11307eb 939 pisg_0.72-1.dsc
 be7a535dc1102eede2e43f0046b4d48effb1d18a 237706 pisg_0.72.orig.tar.gz
 da5f04f8ac5e97e38e8459c79040862561e846f0 3947 pisg_0.72-1.diff.gz
 6ae03a83e454790ca37fbe0ea50a119c3862fcb9 221856 pisg_0.72-1_all.deb
Checksums-Sha256: 
 f82e38344c8769f130242f71d9ad0feee6547f1edf62577f7a16aaf9fffd45b5 939 
pisg_0.72-1.dsc
 34167eefcbf17feafc7a5c53b9c1396f460b18d7030e0a4da9e360df4268e7d0 237706 
pisg_0.72.orig.tar.gz
 258d6f977c740ce0164b48324f903c4300ffbd336005f4e9a0c1e50f63db5e38 3947 
pisg_0.72-1.diff.gz
 1901e56e8db47fe2d11b540314656af565b062c2c6f7b73465a6fb40a2aa3dae 221856 
pisg_0.72-1_all.deb
Files: 
 0a59e7a3263d98b85ba914f5f4e88224 939 net optional pisg_0.72-1.dsc
 2894b052ff8ba7621d7d8394b296 237706 net optional pisg_0.72.orig.tar.gz
 5829a27c18fef0a4cee223e183af9259 3947 net optional pisg_0.72-1.diff.gz
 7899f3d217519336d465aafde9304ae7 221856 net optional pisg_0.72-1_all.deb

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

iD8DBQFIAKwipGK1HsL+5c0RAlhXAKCP4dvy5AwtzhUaHSW31eMSIRNWFgCgvZRG
iidxaUk+otvShqwHqoJ9izo=
=0mJg
-END PGP SIGNATURE-


Accepted:
pisg_0.72-1.diff.gz
  to pool/main/p/pisg/pisg_0.72-1.diff.gz
pisg_0.72-1.dsc
  to pool/main/p/pisg/pisg_0.72-1.dsc
pisg_0.72-1_all.deb
  to pool/main/p/pisg/pisg_0.72-1_all.deb
pisg_0.72.orig.tar.gz
  to pool/main/p/pisg/pisg_0.72.orig.tar.gz


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



Accepted mksh 33.4-1 (source amd64)

2008-04-12 Thread Thorsten Glaser
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Apr 2008 17:38:02 +
Source: mksh
Binary: mksh
Architecture: source amd64
Version: 33.4-1
Distribution: unstable
Urgency: low
Maintainer: Thorsten Glaser [EMAIL PROTECTED]
Changed-By: Thorsten Glaser [EMAIL PROTECTED]
Description: 
 mksh   - enhanced version of the Korn shell
Closes: 469675
Changes: 
 mksh (33.4-1) unstable; urgency=low
 .
   * New upstream release; changelog:
 - Move a portability define from sh.h to the setmode.c helper, as it’s
   only needed there, and we want to use the latter from MirMake as well
 - SECURITY:  when spawning mksh on a new terminal, for example with
   “sudo mksh -lT/dev/ttyC7”, flush all of that tty’s I/O first
 - dot.mkshrc: ensure “ls” is no alias, don’t hardcode its path
   * As dash won’t be the default /bin/sh without the current alternative
 handling / debconf mechanism in lenny (as per the mail from Martin
 Zobel-Helas), there is no need to act regarding our debconf scripts
 and /bin/sh ability, so I think this Closes: #469675
Checksums-Sha1: 
 41fbcad52383547d93eec9f0faed178f0af46e8d 962 mksh_33.4-1.dsc
 781b5bb343239df06250a715b90e37c925df5546 256994 mksh_33.4.orig.tar.gz
 51ec56c103b24e0167031bb70c13952eab2d3dca 28628 mksh_33.4-1.diff.gz
 6787aef0a3682edf299d0f5dd1532e3ff2a9f5b9 199070 mksh_33.4-1_amd64.deb
Checksums-Sha256: 
 3733579b46d8d44046c3ae5aa0883027c9f8779ed379f678b22cdc4571748cec 962 
mksh_33.4-1.dsc
 bcd47df147f69469565288e94a474c8fe2ff2696d67614710f477eb9b81d030d 256994 
mksh_33.4.orig.tar.gz
 d6e6a603b9ded2c1a036293c9d7b7100985ebdb2fab5871b8e46c8fd64e97343 28628 
mksh_33.4-1.diff.gz
 ab542bf9dd7e534684697cdf3ad26d093965f7ec1deb89da931ab95379a456c0 199070 
mksh_33.4-1_amd64.deb
Files: 
 8eafa0fb162c5c36a3a03cd329a3fd26 962 shells optional mksh_33.4-1.dsc
 6a4c09851f32452e4adce0a7b03d384c 256994 shells optional mksh_33.4.orig.tar.gz
 c0d118cf7129e9326d9326c5e91a10ac 28628 shells optional mksh_33.4-1.diff.gz
 6b8a14b16cce75bdbd7436c7e2c5c7b6 199070 shells optional mksh_33.4-1_amd64.deb

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

iEYEARECAAYFAkgAr6gACgkQxWtQqFixGB62NgCfa476j3lYh/5bWC/ckR7aUMP3
TVoAmgOopc4+AzK3opkQHwGKT/FPFu6r
=ps4u
-END PGP SIGNATURE-


Accepted:
mksh_33.4-1.diff.gz
  to pool/main/m/mksh/mksh_33.4-1.diff.gz
mksh_33.4-1.dsc
  to pool/main/m/mksh/mksh_33.4-1.dsc
mksh_33.4-1_amd64.deb
  to pool/main/m/mksh/mksh_33.4-1_amd64.deb
mksh_33.4.orig.tar.gz
  to pool/main/m/mksh/mksh_33.4.orig.tar.gz


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



Accepted ocsinventory-agent 1:0.0.8-3 (source all)

2008-04-12 Thread Pierre Chifflier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 12 Apr 2008 15:05:29 +0200
Source: ocsinventory-agent
Binary: ocsinventory-agent
Architecture: source all
Version: 1:0.0.8-3
Distribution: unstable
Urgency: low
Maintainer: Pierre Chifflier [EMAIL PROTECTED]
Changed-By: Pierre Chifflier [EMAIL PROTECTED]
Description: 
 ocsinventory-agent - Hardware and software inventory tool (client)
Closes: 469513 471484 475410
Changes: 
 ocsinventory-agent (1:0.0.8-3) unstable; urgency=low
 .
   * Add dependency on libproc-daemon-perl (Closes: #475410)
   * Call db_stop after ucf (Closes: #469513)
   * Add Brazilian Portuguese debconf templates (Closes: #471484)
Files: 
 2eb4701d070684039a9212033b6da293 769 net extra ocsinventory-agent_0.0.8-3.dsc
 9a9f80ce79b0e4ed13d1a420f118cd26 10081 net extra 
ocsinventory-agent_0.0.8-3.diff.gz
 4b16452dca8cf929435263545b3cea50 74430 net extra 
ocsinventory-agent_0.0.8-3_all.deb

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

iD8DBQFIALRftwVrWo1fQMsRAssfAKC/5swm+6nsZjZT55xUnE3K6WBu6ACgqFco
D9D01Pz0gNVhWh+pR6q/3gg=
=NGeg
-END PGP SIGNATURE-


Accepted:
ocsinventory-agent_0.0.8-3.diff.gz
  to pool/main/o/ocsinventory-agent/ocsinventory-agent_0.0.8-3.diff.gz
ocsinventory-agent_0.0.8-3.dsc
  to pool/main/o/ocsinventory-agent/ocsinventory-agent_0.0.8-3.dsc
ocsinventory-agent_0.0.8-3_all.deb
  to pool/main/o/ocsinventory-agent/ocsinventory-agent_0.0.8-3_all.deb


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



Accepted ion3 20080411-1 (source all i386)

2008-04-12 Thread Ben Hutchings
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 14:07:04 +0100
Source: ion3
Binary: ion3 ion3-dev
Architecture: source all i386
Version: 20080411-1
Distribution: unstable
Urgency: low
Maintainer: Ben Hutchings [EMAIL PROTECTED]
Changed-By: Ben Hutchings [EMAIL PROTECTED]
Description: 
 ion3   - tiling tabbed window manager designed for keyboard users
 ion3-dev   - Ion3 development files
Changes: 
 ion3 (20080411-1) unstable; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 f1c539984e4fa8dc2eb39609e522350e52899160 1081 ion3_20080411-1.dsc
 cf710c95ddc9d2f5b3bc60339c9d10f9b6ce1546 654063 ion3_20080411.orig.tar.gz
 63e11e128b4d9671d413f7c63e8e5d7765f290a0 35260 ion3_20080411-1.diff.gz
 2d76f39ffecf53435b296b24dc218c2df30d89a4 92162 ion3-dev_20080411-1_all.deb
 82059dd455c0b70f564e652d43a36c50a6b3919d 676046 ion3_20080411-1_i386.deb
Checksums-Sha256: 
 be9d8fff99188d9c89fdbd4d5969048b1dfcd210633c309331559dbf5397e4ba 1081 
ion3_20080411-1.dsc
 25c233d37073dcd88ddb57c557a7f25584abf1744c3ff207dc6325fa51aab474 654063 
ion3_20080411.orig.tar.gz
 e9bc52c4acdf25728da5a62ab5025953da5b1a509e05cc3e62b52f3da46a26cf 35260 
ion3_20080411-1.diff.gz
 3b351bc5e481f95ab760f29f038a3fced5aff5246a33a2a93976e85dbe7b5596 92162 
ion3-dev_20080411-1_all.deb
 9e7335bb41115123e21f51b8d4183dcb8c6ae0b82e9bd452ddfd7c4e72b405b3 676046 
ion3_20080411-1_i386.deb
Files: 
 c3ee0169e3fb1200c218a088572ecacf 1081 non-free/x11 extra ion3_20080411-1.dsc
 09e87c46ddf41182a85e06e304aa15a7 654063 non-free/x11 extra 
ion3_20080411.orig.tar.gz
 fd56e20dc3eb00690d7ec00a1e329f1a 35260 non-free/x11 extra 
ion3_20080411-1.diff.gz
 8780669d5933cc11ae7b6110954f734a 92162 non-free/devel extra 
ion3-dev_20080411-1_all.deb
 bc5fee8113b5808ab93d06919492d702 676046 non-free/x11 extra 
ion3_20080411-1_i386.deb

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

iD8DBQFIALgk79ZNCRIGYgcRApiiAJkBKkkKlDHCEENrXU7B2eJRS/+7CQCfbMsN
GN6zwF01ZGgEYE5bxosJM5Y=
=+erX
-END PGP SIGNATURE-


Accepted:
ion3-dev_20080411-1_all.deb
  to pool/non-free/i/ion3/ion3-dev_20080411-1_all.deb
ion3_20080411-1.diff.gz
  to pool/non-free/i/ion3/ion3_20080411-1.diff.gz
ion3_20080411-1.dsc
  to pool/non-free/i/ion3/ion3_20080411-1.dsc
ion3_20080411-1_i386.deb
  to pool/non-free/i/ion3/ion3_20080411-1_i386.deb
ion3_20080411.orig.tar.gz
  to pool/non-free/i/ion3/ion3_20080411.orig.tar.gz


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



Accepted brltty 3.10~r3662-1 (source all amd64)

2008-04-12 Thread Mario Lang
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 14:53:51 +0200
Source: brltty
Binary: brltty libbrlapi0.5 libbrlapi-dev libbrlapi-jni libbrlapi-java 
brltty-flite brltty-udeb brltty-x11 cl-brlapi python-brlapi
Architecture: source amd64 all
Version: 3.10~r3662-1
Distribution: experimental
Urgency: low
Maintainer: Mario Lang [EMAIL PROTECTED]
Changed-By: Mario Lang [EMAIL PROTECTED]
Description: 
 brltty - Access software for a blind person using a braille display
 brltty-flite - Access software for a blind person using a braille display
 brltty-udeb - Access software for a blind person using a braille display (udeb)
 brltty-x11 - Access software for a blind person using a braille display
 cl-brlapi  - Common Lisp bindings for BrlAPI
 libbrlapi-dev - Library for communication with BRLTTY - static libs and headers
 libbrlapi-java - Java bindings for BrlAPI
 libbrlapi-jni - Java bindings for BrlAPI (native library)
 libbrlapi0.5 - braille display access via BRLTTY - shared library
 python-brlapi - Python bindings for BrlAPI
Closes: 475015
Changes: 
 brltty (3.10~r3662-1) experimental; urgency=low
 .
   * New subversion snapshot.
 - Fix to Java building outside of sourcedir and Lisp bindings
   merged upstream.
   * Fix libbrlapi-dev header installation (Closes: Bug#475015).
Checksums-Sha1: 
 23a0eef0a23d178c97d728c72db6f03afcafbd87 1453 brltty_3.10~r3662-1.dsc
 4af9c024a9a764b016ed6bdef190d7a25aba8011 1462892 brltty_3.10~r3662.orig.tar.gz
 2e34fa20a5aa6db3c1fb5027229a13d57e7e0680 21515 brltty_3.10~r3662-1.diff.gz
 ea6a15df2faf3f9e629d309d565679c4a0ac17f9 1185496 brltty_3.10~r3662-1_amd64.deb
 46c87ef1c8215cb9af420bf3aa17bdc366179022 64310 
libbrlapi0.5_3.10~r3662-1_amd64.deb
 0ebd9cf04289dc41fabb08988a9e7b845a80f3bf 172454 
libbrlapi-dev_3.10~r3662-1_amd64.deb
 d2551ed9511c21733a4ba4cb136a132b078378ee 55588 
libbrlapi-jni_3.10~r3662-1_amd64.deb
 5ed00075724462c619f959641ca19985cb1ac708 49486 
brltty-flite_3.10~r3662-1_amd64.deb
 50dc8ec7fa52e6fd9ac6f8e1d18813077df9b2ba 98522 
brltty-x11_3.10~r3662-1_amd64.deb
 650a2fc75acdd4b75860127d07b59101b86c7e23 84920 
python-brlapi_3.10~r3662-1_amd64.deb
 00e777e6dc49e6d61caec3725fcc2503befba864 55486 
libbrlapi-java_3.10~r3662-1_all.deb
 860a478ab895c585b1fa2570b61695429fb3eb7f 49916 cl-brlapi_3.10~r3662-1_all.deb
 84600a5ff691fa9529600f600099f04e4fdd98b8 204718 
brltty-udeb_3.10~r3662-1_amd64.udeb
Checksums-Sha256: 
 62cb18143da7f1d21ac895047c01f59465f6dd54ce77652c48ca693387d3bbcd 1453 
brltty_3.10~r3662-1.dsc
 6caa80d171fa5fc323290819efc8782dcf336b52ae7a1b1095c5f3a9d3bf8aaa 1462892 
brltty_3.10~r3662.orig.tar.gz
 418158b4d428b6219d4314deb948ae1fd5adb67b2fa2efb2a4ecaec21b1dc13a 21515 
brltty_3.10~r3662-1.diff.gz
 f57012c6b5bdf83583e421424a30be04c921019c99aa0780b0016382eabec1d8 1185496 
brltty_3.10~r3662-1_amd64.deb
 0f83e635a395dbb8d511437c41fd6b0c2bec5c6fe2e0c73b404c9dc69931e68d 64310 
libbrlapi0.5_3.10~r3662-1_amd64.deb
 695ae24a19d238b3842f15e9356efb7aa203bfaeed3196cac6082eaaef928726 172454 
libbrlapi-dev_3.10~r3662-1_amd64.deb
 7c3519d2c02569e622fdfd085a85d56602c6529e37cd9f8523fa3067d9ff9c71 55588 
libbrlapi-jni_3.10~r3662-1_amd64.deb
 09d4ca14c578fdf227e5b965aac49b5c39f05ac6b30d407e8420517abdbb52de 49486 
brltty-flite_3.10~r3662-1_amd64.deb
 4bf5c775ccd9e5e730c1dd23b5f2f78214b16abf6942f1b8fa88752a7db64276 98522 
brltty-x11_3.10~r3662-1_amd64.deb
 e05c7c9f1b13d07add4c839920230dc1ba3c7659b55f52de3ed7ba341254025e 84920 
python-brlapi_3.10~r3662-1_amd64.deb
 547f546e52ce719b9108836c8d2a0e69675c5415cb0def7f717eb53a74ecf96c 55486 
libbrlapi-java_3.10~r3662-1_all.deb
 4e3fa68c0f79715a830920857e37f0c2cb0efa729cf71cf686d69d628d98d5f0 49916 
cl-brlapi_3.10~r3662-1_all.deb
 dc486d942c9681d95b2a975fd26dd30789c76888a315b7d8619ace7bc8385355 204718 
brltty-udeb_3.10~r3662-1_amd64.udeb
Files: 
 855f6f05e84b961e65e4f3059c8bb03a 1453 admin extra brltty_3.10~r3662-1.dsc
 e83eaeb146be25928e61b4497e6de893 1462892 admin extra 
brltty_3.10~r3662.orig.tar.gz
 80989e7dd0fa157165510ccd73991abe 21515 admin extra brltty_3.10~r3662-1.diff.gz
 93e7f6fe913527b225585f7a4d0469ad 1185496 admin extra 
brltty_3.10~r3662-1_amd64.deb
 130af5bd49581a7b15433cdd5ba65ef9 64310 libs extra 
libbrlapi0.5_3.10~r3662-1_amd64.deb
 4d4dffa422ec4a3261e2345f38835e78 172454 libdevel extra 
libbrlapi-dev_3.10~r3662-1_amd64.deb
 4ac6e3f9389204505553eaa286223de9 55588 libs extra 
libbrlapi-jni_3.10~r3662-1_amd64.deb
 b40c90db5a59e2c60bc668c0e1e2d8fd 49486 admin extra 
brltty-flite_3.10~r3662-1_amd64.deb
 c8d27a8e8951060c0d90835e455c5b99 98522 admin extra 
brltty-x11_3.10~r3662-1_amd64.deb
 afd6c0d387213ff0905bc8f260767580 84920 python extra 
python-brlapi_3.10~r3662-1_amd64.deb
 201c019396a1d50c0b74032068c47c0a 55486 libs extra 
libbrlapi-java_3.10~r3662-1_all.deb
 5c0041bf029859811f2e8bfc72b4c459 49916 admin extra 
cl-brlapi_3.10~r3662-1_all.deb
 0ddea09811b2ea3cb50b045416112524 204718 debian-installer extra 
brltty-udeb_3.10~r3662-1_amd64.udeb
Package-Type: udeb


Accepted libopensync-plugin-google-calendar 0.22-6 (source i386)

2008-04-12 Thread Michael Banck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 12 Apr 2008 15:31:19 +0200
Source: libopensync-plugin-google-calendar
Binary: opensync-plugin-google-calendar
Architecture: source i386
Version: 0.22-6
Distribution: unstable
Urgency: low
Maintainer: Michael Banck [EMAIL PROTECTED]
Changed-By: Michael Banck [EMAIL PROTECTED]
Description: 
 opensync-plugin-google-calendar - Opensync Google Calendar plugin
Closes: 468601
Changes: 
 libopensync-plugin-google-calendar (0.22-6) unstable; urgency=low
 .
   * Reverted changes from 0.22-5.
   * src/google-cal-helper.py: Applied patch by John Clark to port the python
 helper to python-4suite-xml; Closes: #468601.
Files: 
 52f44fe5eea63f9dc799760204695c60 834 libs optional 
libopensync-plugin-google-calendar_0.22-6.dsc
 e47249c9fb04c8705dc3aa6f6e02d800 30689 libs optional 
libopensync-plugin-google-calendar_0.22-6.diff.gz
 2782d8e5f5af19d33a9f5fbb88ff4e07 13750 libs optional 
opensync-plugin-google-calendar_0.22-6_i386.deb

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

iD8DBQFIALwYmHaJYZ7RAb8RApB9AJ9xnzqHUPLiyKH6WHnr9GjrWrXUwwCePUyU
lq1pIteSU077+OdJC7T9d6I=
=Xaci
-END PGP SIGNATURE-


Accepted:
libopensync-plugin-google-calendar_0.22-6.diff.gz
  to 
pool/main/libo/libopensync-plugin-google-calendar/libopensync-plugin-google-calendar_0.22-6.diff.gz
libopensync-plugin-google-calendar_0.22-6.dsc
  to 
pool/main/libo/libopensync-plugin-google-calendar/libopensync-plugin-google-calendar_0.22-6.dsc
opensync-plugin-google-calendar_0.22-6_i386.deb
  to 
pool/main/libo/libopensync-plugin-google-calendar/opensync-plugin-google-calendar_0.22-6_i386.deb


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



Accepted ion3-doc 20080411-1 (source all)

2008-04-12 Thread Ben Hutchings
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 14:27:54 +0100
Source: ion3-doc
Binary: ion3-doc
Architecture: source all
Version: 20080411-1
Distribution: unstable
Urgency: low
Maintainer: Ben Hutchings [EMAIL PROTECTED]
Changed-By: Ben Hutchings [EMAIL PROTECTED]
Description: 
 ion3-doc   - documentation for Ion3 and ParticleMan
Changes: 
 ion3-doc (20080411-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 3100c986b25d87655c885465acce9bc0b3493828 1003 ion3-doc_20080411-1.dsc
 24ed11bfab74fcb1ef7846b1e78fe20b05118358 937631 ion3-doc_20080411.orig.tar.gz
 cf567425bc2f05ba98665c4f8b289cd2507ed97e 13386 ion3-doc_20080411-1.diff.gz
 719c0c55642a78e5c7448983ba1eff32ccfa470a 118994 ion3-doc_20080411-1_all.deb
Checksums-Sha256: 
 6914aabfd2e56053594bb2100b1390176b9282247ec6ced5e5e5f7ab3d6f7296 1003 
ion3-doc_20080411-1.dsc
 f77fbadcedea168fb36d2346bb53ecc62eca55725feb6623c7a4efe95236dae0 937631 
ion3-doc_20080411.orig.tar.gz
 cacc43c741b75a34429ccd64e90f4e48c507f9057b06d7a43bb2d23a7ce145a0 13386 
ion3-doc_20080411-1.diff.gz
 24e89e7dc14bb4f87ef35be677b0425b4c0d84500ed8dfbe3ab9d7efd839fc1a 118994 
ion3-doc_20080411-1_all.deb
Files: 
 ffce8f2e2841ce7b2fd3b022b33e5604 1003 doc extra ion3-doc_20080411-1.dsc
 1004c114d506ee2bf4dfa25846385f07 937631 doc extra ion3-doc_20080411.orig.tar.gz
 92e047eba937ab3fea8384bb8736a850 13386 doc extra ion3-doc_20080411-1.diff.gz
 3e8a02fac0e834ea8d317782634027e5 118994 doc extra ion3-doc_20080411-1_all.deb

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

iD8DBQFIALvQ79ZNCRIGYgcRAnyrAJ9Tie+3RZFvB5ewZt+Xe6mKCPnrKwCfenWU
KXjZmCFtfFIj8lVtuoiwI8I=
=6Y86
-END PGP SIGNATURE-


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


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



Accepted open-iscsi 2.0.869~rc4-1 (source amd64)

2008-04-12 Thread Philipp Hug
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 15:53:12 +0200
Source: open-iscsi
Binary: open-iscsi
Architecture: source amd64
Version: 2.0.869~rc4-1
Distribution: experimental
Urgency: low
Maintainer: Philipp Hug [EMAIL PROTECTED]
Changed-By: Philipp Hug [EMAIL PROTECTED]
Description: 
 open-iscsi - High performance, transport independent iSCSI implementation
Closes: 419408 423368 423851 438542 470434 474167
Changes: 
 open-iscsi (2.0.869~rc4-1) experimental; urgency=low
 .
   * init script: If /sys is not mounted return without error
 (Closes: #470434, #423368)
   * Merged changes by Andrew Moise [EMAIL PROTECTED]
   * Adding Andrew as Co-Maintainer
   * New upstream release (Closes: #474167)
   * Added flex and bison build-depends
   * Fixed up init scripts to attempt to handle automatic mounting and
 unmounting properly (Closes: #423851, #438542)
   * Added /etc/network/if-up.d/000open-iscsi to start automatic targets
   * Parameterized /etc/iscsi/initiatorname.iscsi in init script,
 correcting one place where it still said /etc/initiatorname.iscsi
   * Updated README.Debian
   * Include iscsistart for use in initramfs (Closes: #419408)
   * Add initramfs scripts to make iSCSI root easy
   * Based on patch by Guido Guenther [EMAIL PROTECTED]
Checksums-Sha1: 
 a9cedba55240342a93f073cc6db0bf49a099c349 1071 open-iscsi_2.0.869~rc4-1.dsc
 9227dca27cab62254058778e82377e43e3b70ea9 277166 
open-iscsi_2.0.869~rc4.orig.tar.gz
 f96773618b0aad09b2d452237323c7caaedaa360 8484 open-iscsi_2.0.869~rc4-1.diff.gz
 5ae341bf247f3e80c46dd3af6f08de8b583b01a6 570662 
open-iscsi_2.0.869~rc4-1_amd64.deb
Checksums-Sha256: 
 78ec2667650934f1995c461e7eb5fa3d375d9a6ed37a0c7588f2e5787579fb39 1071 
open-iscsi_2.0.869~rc4-1.dsc
 d0f7ec9eeb125e21cf12a6d5c173cab9815fe8803cf4772f1fd3b427e369ba42 277166 
open-iscsi_2.0.869~rc4.orig.tar.gz
 76ae7e3a84bfc3745720992ed693270cc70cd091ba79fba1a04a05d168dc020a 8484 
open-iscsi_2.0.869~rc4-1.diff.gz
 9a39aab0b2be056e2b674e8a01f6023a9a401a665d9d3359b4c1222cee2c3057 570662 
open-iscsi_2.0.869~rc4-1_amd64.deb
Files: 
 144c5efbc70fbe0cdcea04cf9b1e4fbe 1071 net optional open-iscsi_2.0.869~rc4-1.dsc
 641625489a2581fae760295df222eb95 277166 net optional 
open-iscsi_2.0.869~rc4.orig.tar.gz
 0f9246fb8f54a3f5bc8c217ff0e8a266 8484 net optional 
open-iscsi_2.0.869~rc4-1.diff.gz
 c4837964416f0e349ebf8feeef11d537 570662 net optional 
open-iscsi_2.0.869~rc4-1_amd64.deb

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

iD8DBQFIAL8+aZN+myf86ycRAlDAAJ9fV77LfmV0V8PX88oBPnH+EaFo+wCgl3+U
+mT2B+cs5JnNTRd75XdxVqM=
=9g5S
-END PGP SIGNATURE-


Accepted:
open-iscsi_2.0.869~rc4-1.diff.gz
  to pool/main/o/open-iscsi/open-iscsi_2.0.869~rc4-1.diff.gz
open-iscsi_2.0.869~rc4-1.dsc
  to pool/main/o/open-iscsi/open-iscsi_2.0.869~rc4-1.dsc
open-iscsi_2.0.869~rc4-1_amd64.deb
  to pool/main/o/open-iscsi/open-iscsi_2.0.869~rc4-1_amd64.deb
open-iscsi_2.0.869~rc4.orig.tar.gz
  to pool/main/o/open-iscsi/open-iscsi_2.0.869~rc4.orig.tar.gz


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



Accepted tinymux 2.6.5.27-1 (source i386)

2008-04-12 Thread Ervin Hearn III
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Apr 2008 23:18:25 -0600
Source: tinymux
Binary: tinymux
Architecture: source i386
Version: 2.6.5.27-1
Distribution: unstable
Urgency: low
Maintainer: Ervin Hearn III [EMAIL PROTECTED]
Changed-By: Ervin Hearn III [EMAIL PROTECTED]
Description: 
 tinymux- text-based multi-user virtual world server
Changes: 
 tinymux (2.6.5.27-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 7077f3984777fd4304c3b7f8eb133969ad1b3361 1138 tinymux_2.6.5.27-1.dsc
 64347e26cd7c1c596c6399c9860084124bb23804 981835 tinymux_2.6.5.27.orig.tar.gz
 928fe8b7989fa1bf87687dbb55e6b6fa3ec88c72 12329 tinymux_2.6.5.27-1.diff.gz
 08c67bd7995d915dc384cbab3372bea4544b415e 637618 tinymux_2.6.5.27-1_i386.deb
Checksums-Sha256: 
 f920822fbe1430694cdc97c8653d953fe49ae6df23d8c4addc2e1a0389c429b8 1138 
tinymux_2.6.5.27-1.dsc
 11d8ca0e437313ca3f106c76a5bf3b8d6e2d3a20a01ee990081ed13e82e1709f 981835 
tinymux_2.6.5.27.orig.tar.gz
 b86bcd77dda51268770454da50e4627fd593455711587a9e9f27a08cb71a9cd2 12329 
tinymux_2.6.5.27-1.diff.gz
 dd61ae68431aa3e26437c636dba2858ffce767682a55fd447109623d23a0a283 637618 
tinymux_2.6.5.27-1_i386.deb
Files: 
 8696b3ace99235dc9abfa112492d018e 1138 games optional tinymux_2.6.5.27-1.dsc
 a52253776743254aeafdaff55dc89753 981835 games optional 
tinymux_2.6.5.27.orig.tar.gz
 9f11e0483479426f2f5018be0b33cc7a 12329 games optional 
tinymux_2.6.5.27-1.diff.gz
 c392f43ef7addac4bf140b32240ac466 637618 games optional 
tinymux_2.6.5.27-1_i386.deb

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

iD4DBQFIAMbN8KmKTEzW49IRAoDmAJjTblOSI7wP9djUowK/6GqAXZ78AJ9ew1+g
kLEdM+09vtbrXehtysj6ag==
=bkru
-END PGP SIGNATURE-


Accepted:
tinymux_2.6.5.27-1.diff.gz
  to pool/main/t/tinymux/tinymux_2.6.5.27-1.diff.gz
tinymux_2.6.5.27-1.dsc
  to pool/main/t/tinymux/tinymux_2.6.5.27-1.dsc
tinymux_2.6.5.27-1_i386.deb
  to pool/main/t/tinymux/tinymux_2.6.5.27-1_i386.deb
tinymux_2.6.5.27.orig.tar.gz
  to pool/main/t/tinymux/tinymux_2.6.5.27.orig.tar.gz


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



Accepted libhtml-tagset-perl 3.20-2 (source all)

2008-04-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 15:22:41 +0200
Source: libhtml-tagset-perl
Binary: libhtml-tagset-perl
Architecture: source all
Version: 3.20-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libhtml-tagset-perl - Data tables pertaining to HTML
Closes: 402272
Changes: 
 libhtml-tagset-perl (3.20-2) unstable; urgency=low
 .
   * Add patch isbodyelement.patch: fixes documentation for isBodyElement()
 (closes: #402272); thanks to Jamey Sharp and Josh Triplett for the bug
 report. Add quilt framework.
   * Refresh debian/rules; changes: the package is now parallel buildable;
 README isn't installed any more.
   * debian/control:
 - add libtest-pod-perl to Build-Depends-Indep to enable an additional
   test
 - add /me to Uploaders
   * debian/copyright: update copyright information and provide specific
 download link.
Checksums-Sha1: 
 dc19269982ac14cf8ee9e2230154b15b7b1bda5e 1451 libhtml-tagset-perl_3.20-2.dsc
 ca675f30a5e37b24668cac9a902f9418a36dafd8 3027 
libhtml-tagset-perl_3.20-2.diff.gz
 d9b9fdeaf7ff927b73a60feaf689d1df566b125c 13482 
libhtml-tagset-perl_3.20-2_all.deb
Checksums-Sha256: 
 cea311d1dbe8ae29a3bfb3371b65a4607d807d10c66345c235313765f7dcc374 1451 
libhtml-tagset-perl_3.20-2.dsc
 89c1eef81a6817abff1012ab5d6d2c182d7ad394f3ed9443bf85ef5a95bd8763 3027 
libhtml-tagset-perl_3.20-2.diff.gz
 d42d2a965a31ac9d198c46ffe61f582c35b84d9ea2bc679a855842dc4d02aabe 13482 
libhtml-tagset-perl_3.20-2_all.deb
Files: 
 5a408ef152ace614c4c51b654d7abed4 1451 perl optional 
libhtml-tagset-perl_3.20-2.dsc
 0d597262dc59ee7b76b57968a2944ee8 3027 perl optional 
libhtml-tagset-perl_3.20-2.diff.gz
 71a92b7e853a2d22b774b12272c10f25 13482 perl optional 
libhtml-tagset-perl_3.20-2_all.deb

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

iD8DBQFIAMkV5SXWIKfIlGQRAt6uAJ9KO0ZblYRzAgei4adPFw8xwGEFpACdHqTE
FFMrCwMvUHAPN8knexOkKX4=
=2yLN
-END PGP SIGNATURE-


Accepted:
libhtml-tagset-perl_3.20-2.diff.gz
  to pool/main/libh/libhtml-tagset-perl/libhtml-tagset-perl_3.20-2.diff.gz
libhtml-tagset-perl_3.20-2.dsc
  to pool/main/libh/libhtml-tagset-perl/libhtml-tagset-perl_3.20-2.dsc
libhtml-tagset-perl_3.20-2_all.deb
  to pool/main/libh/libhtml-tagset-perl/libhtml-tagset-perl_3.20-2_all.deb


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



Accepted pennmush 1.8.2p8-1 (source i386 all)

2008-04-12 Thread Ervin Hearn III
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Apr 2008 21:56:11 -0600
Source: pennmush
Binary: pennmush pennmush-common pennmush-i18n pennmush-mysql
Architecture: source i386 all
Version: 1.8.2p8-1
Distribution: unstable
Urgency: low
Maintainer: Ervin Hearn III [EMAIL PROTECTED]
Changed-By: Ervin Hearn III [EMAIL PROTECTED]
Description: 
 pennmush   - text-based multi-user virtual world server
 pennmush-common - common files for the PennMUSH virtual world server
 pennmush-i18n - i18n support files for the PennMUSH virtual world server
 pennmush-mysql - text-based multi-user virtual world server with MySQL support
Changes: 
 pennmush (1.8.2p8-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 993647fd54fe82177e4c06f0bbc88750c8e5cb92 1248 pennmush_1.8.2p8-1.dsc
 ddb1f5b44d6d7f5d51a904058bd9490306025044 2027505 pennmush_1.8.2p8.orig.tar.gz
 638e3bd119c22dcbf343b6aa17e5b15d51faeba6 13840 pennmush_1.8.2p8-1.diff.gz
 29e1563fa6ab506489e08ac384f9de9a8c3c7cf3 399366 pennmush_1.8.2p8-1_i386.deb
 a5ef84834fb873e7945e9c7cc166b1666091a80c 500110 
pennmush-common_1.8.2p8-1_all.deb
 0a8cefaf5e41289f66e861ab01840ef0962be6c2 355256 pennmush-i18n_1.8.2p8-1_all.deb
 bb8e79a81e3eebe45f9a674f8633b1ed2478f882 403338 
pennmush-mysql_1.8.2p8-1_i386.deb
Checksums-Sha256: 
 7d3ecb0e246d492ece98f33520f53f95f4b261d6986265ff27b4298dab2aaeeb 1248 
pennmush_1.8.2p8-1.dsc
 1d8672e7af215b83c8c255601f3cd71a21eeece783d626ccc788ad25d42d359b 2027505 
pennmush_1.8.2p8.orig.tar.gz
 909086c43f8c803fc50ed666a209221b9ee7c3216638d4f2077ffa4d2a328d84 13840 
pennmush_1.8.2p8-1.diff.gz
 f060dea6c3cb2480bdd0d97b87b1f0cadccb8ca2beff598cc72a115c1cce01cc 399366 
pennmush_1.8.2p8-1_i386.deb
 16dea4be90e49f92103fc5a7a0c5724f2fb7661e1b566deda9bf44a96d537174 500110 
pennmush-common_1.8.2p8-1_all.deb
 8d98218525c7bf03d767db1fa6fff66aa3f29114a0b36d2e789672fe8ae711e8 355256 
pennmush-i18n_1.8.2p8-1_all.deb
 dd57b4c7c26e2bc2195b7dd31a1f3161b25bdf2d6bab7de195fdb488667f66c3 403338 
pennmush-mysql_1.8.2p8-1_i386.deb
Files: 
 34a6a85ffb93bab486bd8ac368cd3898 1248 games optional pennmush_1.8.2p8-1.dsc
 e6d4d72b379911fcec7be07ea4d58c52 2027505 games optional 
pennmush_1.8.2p8.orig.tar.gz
 e57e447a2583b6f8ac279b3ef03f7c30 13840 games optional 
pennmush_1.8.2p8-1.diff.gz
 334468c46e62bbdf55bd069b84e2e1aa 399366 games optional 
pennmush_1.8.2p8-1_i386.deb
 d85adb1a63e5d90fb130e183952663ea 500110 games optional 
pennmush-common_1.8.2p8-1_all.deb
 e7cc0feabaa95990ee9c8e8ddd3560fa 355256 games optional 
pennmush-i18n_1.8.2p8-1_all.deb
 07904091b6f949b78f3ec718f171574b 403338 games optional 
pennmush-mysql_1.8.2p8-1_i386.deb

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

iD8DBQFIAMbH8KmKTEzW49IRAlF4AJ4xeWK2nDivk8NnbQAVIiKVH8UjsQCfdT3A
o/GE8RQw+L+X97V8htGdnOI=
=DCD9
-END PGP SIGNATURE-


Accepted:
pennmush-common_1.8.2p8-1_all.deb
  to pool/main/p/pennmush/pennmush-common_1.8.2p8-1_all.deb
pennmush-i18n_1.8.2p8-1_all.deb
  to pool/main/p/pennmush/pennmush-i18n_1.8.2p8-1_all.deb
pennmush-mysql_1.8.2p8-1_i386.deb
  to pool/main/p/pennmush/pennmush-mysql_1.8.2p8-1_i386.deb
pennmush_1.8.2p8-1.diff.gz
  to pool/main/p/pennmush/pennmush_1.8.2p8-1.diff.gz
pennmush_1.8.2p8-1.dsc
  to pool/main/p/pennmush/pennmush_1.8.2p8-1.dsc
pennmush_1.8.2p8-1_i386.deb
  to pool/main/p/pennmush/pennmush_1.8.2p8-1_i386.deb
pennmush_1.8.2p8.orig.tar.gz
  to pool/main/p/pennmush/pennmush_1.8.2p8.orig.tar.gz


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



Accepted libogg-vorbis-header-perl 0.03-3 (source i386)

2008-04-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 14:29:45 +0200
Source: libogg-vorbis-header-perl
Binary: libogg-vorbis-header-perl
Architecture: source i386
Version: 0.03-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libogg-vorbis-header-perl - perl interface to Ogg Vorbis information and 
comments
Closes: 315985
Changes: 
 libogg-vorbis-header-perl (0.03-3) unstable; urgency=low
 .
   * Add patch comments_case_insensitive.patch: comment field names are
 case-insensitive as per the Vorbis specification (closes: #315985);
 add quilt framework. Thanks to Frank Murphy for the bug report and the
 patch.
   * debian/rules: refresh, no functional changes.
Checksums-Sha1: 
 1d85d21f00eab097053629665031d0170268 1489 
libogg-vorbis-header-perl_0.03-3.dsc
 751dfa7b9bdad0fe3916c3a4fbc3b99ffc39a0a0 3511 
libogg-vorbis-header-perl_0.03-3.diff.gz
 65e1752d2799ffb8e840aac8ac03ca83ff23514c 31328 
libogg-vorbis-header-perl_0.03-3_i386.deb
Checksums-Sha256: 
 f407d08bcbb34448591b1db5c571f1102a8fc391f61482ef089aec3f5929240a 1489 
libogg-vorbis-header-perl_0.03-3.dsc
 d44653f2977b22a53d0be7549fb14b38b30f275baf2e162cf1f722b2f0f852a8 3511 
libogg-vorbis-header-perl_0.03-3.diff.gz
 c4f0374435cc75102ad56a936648ac967c3eb8c6a8cb905b917410ebc1ced4ad 31328 
libogg-vorbis-header-perl_0.03-3_i386.deb
Files: 
 ebe4321a2918dfd01925d9a327903cd2 1489 perl optional 
libogg-vorbis-header-perl_0.03-3.dsc
 237f309c4669f39458e324a2454b8bb2 3511 perl optional 
libogg-vorbis-header-perl_0.03-3.diff.gz
 238c2a06dc6585c1f77b89515293711c 31328 perl optional 
libogg-vorbis-header-perl_0.03-3_i386.deb

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

iD8DBQFIAMsP5SXWIKfIlGQRAlgVAJ9EBLlidxEZgP2c8AJg/7SrqkxNgwCeMvhX
Y94HD8RsVFXnuTyx/Qp2WAE=
=jnFr
-END PGP SIGNATURE-


Accepted:
libogg-vorbis-header-perl_0.03-3.diff.gz
  to 
pool/main/libo/libogg-vorbis-header-perl/libogg-vorbis-header-perl_0.03-3.diff.gz
libogg-vorbis-header-perl_0.03-3.dsc
  to 
pool/main/libo/libogg-vorbis-header-perl/libogg-vorbis-header-perl_0.03-3.dsc
libogg-vorbis-header-perl_0.03-3_i386.deb
  to 
pool/main/libo/libogg-vorbis-header-perl/libogg-vorbis-header-perl_0.03-3_i386.deb


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



Accepted libpam-mount 0.35.1-1 (source i386)

2008-04-12 Thread Bastian Kleineidam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Apr 2008 17:24:16 +0200
Source: libpam-mount
Binary: libpam-mount
Architecture: source i386
Version: 0.35.1-1
Distribution: unstable
Urgency: low
Maintainer: Bastian Kleineidam [EMAIL PROTECTED]
Changed-By: Bastian Kleineidam [EMAIL PROTECTED]
Description: 
 libpam-mount - PAM module that can mount volumes for a user session
Changes: 
 libpam-mount (0.35.1-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 c33a4d7ad46ae1c144b42f51bb90705b3f5942f1 1231 libpam-mount_0.35.1-1.dsc
 af4bd78b2dfe17caaa26aee72c59e30947056c50 420467 libpam-mount_0.35.1.orig.tar.gz
 f309d32481f6f09501a4fabd17076f3dbd2b8595 26868 libpam-mount_0.35.1-1.diff.gz
 cae147d8eeeb1a6ca6dd0911071d230c1d72bd5e 93510 libpam-mount_0.35.1-1_i386.deb
Checksums-Sha256: 
 a9df484358ed05d6b4529eda7fd80b367dbccc8e55bf276a1fe428bebde4d790 1231 
libpam-mount_0.35.1-1.dsc
 f2de5f71144909569fc35d37e74f47644edb3029517020470d71d52d51cb9317 420467 
libpam-mount_0.35.1.orig.tar.gz
 2f85971bc65dff898ac6f3dd6a2b9a213683a9d008e3a6ecda16f1e272cae220 26868 
libpam-mount_0.35.1-1.diff.gz
 a8c0fd2d489a92cb2e143e3a345b5cd2f3ccff0c154748f0df7d6e7754a5e22e 93510 
libpam-mount_0.35.1-1_i386.deb
Files: 
 6f4b45cb8dd739422784eda4bbbf2997 1231 admin extra libpam-mount_0.35.1-1.dsc
 4baa71e7dbe9c97d2d2c3fcf6afade95 420467 admin extra 
libpam-mount_0.35.1.orig.tar.gz
 09556deb107e98c8564e219045a2786c 26868 admin extra 
libpam-mount_0.35.1-1.diff.gz
 8d12e235f9587f46b425314b52b580dc 93510 admin extra 
libpam-mount_0.35.1-1_i386.deb

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

iD8DBQFIAM49eBwlBDLsbz4RAuFAAJ98UAPOR+FoqXhHBpYCWXLp+rFCUQCghAMx
qdxwsOu30FFMFteSzaMU00Y=
=HVco
-END PGP SIGNATURE-


Accepted:
libpam-mount_0.35.1-1.diff.gz
  to pool/main/libp/libpam-mount/libpam-mount_0.35.1-1.diff.gz
libpam-mount_0.35.1-1.dsc
  to pool/main/libp/libpam-mount/libpam-mount_0.35.1-1.dsc
libpam-mount_0.35.1-1_i386.deb
  to pool/main/libp/libpam-mount/libpam-mount_0.35.1-1_i386.deb
libpam-mount_0.35.1.orig.tar.gz
  to pool/main/libp/libpam-mount/libpam-mount_0.35.1.orig.tar.gz


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



Accepted libxml-xpathengine-perl 0.09-1 (source all)

2008-04-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 13:30:14 +0200
Source: libxml-xpathengine-perl
Binary: libxml-xpathengine-perl
Architecture: source all
Version: 0.09-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libxml-xpathengine-perl - a re-usable XPath engine for DOM-like trees
Changes: 
 libxml-xpathengine-perl (0.09-1) unstable; urgency=low
 .
   * New upstream release.
   * Refresh debian/rules, no functional changes.
   * Add /me to Uploaders.
Checksums-Sha1: 
 23d99737b079caa3620a86a0357039ab1ee4e04d 1479 
libxml-xpathengine-perl_0.09-1.dsc
 50b48c6f91c4209b089b623088aba4473a7170f7 24141 
libxml-xpathengine-perl_0.09.orig.tar.gz
 495c3d36ec43341f31eec2e2f629aaaf51ca8689 2425 
libxml-xpathengine-perl_0.09-1.diff.gz
 866b582b0d2e6a2b4b6bc15d52a169e1a19e6e0e 36804 
libxml-xpathengine-perl_0.09-1_all.deb
Checksums-Sha256: 
 8cfc84eaea724512c9e5f10b6043644ade782d05ea0eae573d1c1a7af6015b6b 1479 
libxml-xpathengine-perl_0.09-1.dsc
 0fdce0f5ffb1e65dbee1485a89e2d6517617894e59bbcd25aa4ac6c774b4fb89 24141 
libxml-xpathengine-perl_0.09.orig.tar.gz
 1da02003f80b36356897befc0b6acb72a2aee9bef105a5629bd826a9d60321ea 2425 
libxml-xpathengine-perl_0.09-1.diff.gz
 141224a3981030fc253ae9d9810cd3733699d9f51d0ea4ca59aad29a3d1da237 36804 
libxml-xpathengine-perl_0.09-1_all.deb
Files: 
 ce7c48a775e648f1527a22059b54e285 1479 perl optional 
libxml-xpathengine-perl_0.09-1.dsc
 97e210ef16886f89e4a607ef388419d6 24141 perl optional 
libxml-xpathengine-perl_0.09.orig.tar.gz
 d9d693ff4e6751d8cd320807349838ae 2425 perl optional 
libxml-xpathengine-perl_0.09-1.diff.gz
 ea421fb277c7ae0037adbe1b08727767 36804 perl optional 
libxml-xpathengine-perl_0.09-1_all.deb

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

iD8DBQFIAM7m5SXWIKfIlGQRAq4aAJ0QYPBmRiIAQv3uaen+QsTEt/rbdwCdHtNg
QAZ6uOPNwEJn/M36S3cESVI=
=y1c3
-END PGP SIGNATURE-


Accepted:
libxml-xpathengine-perl_0.09-1.diff.gz
  to 
pool/main/libx/libxml-xpathengine-perl/libxml-xpathengine-perl_0.09-1.diff.gz
libxml-xpathengine-perl_0.09-1.dsc
  to pool/main/libx/libxml-xpathengine-perl/libxml-xpathengine-perl_0.09-1.dsc
libxml-xpathengine-perl_0.09-1_all.deb
  to 
pool/main/libx/libxml-xpathengine-perl/libxml-xpathengine-perl_0.09-1_all.deb
libxml-xpathengine-perl_0.09.orig.tar.gz
  to 
pool/main/libx/libxml-xpathengine-perl/libxml-xpathengine-perl_0.09.orig.tar.gz


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



  1   2   >