Bug#630677: ITP: rhash -- utility for computing hash sums and magnet links

2011-06-16 Thread Rhash Admin

Package: wnpp
Severity: wishlist
Owner: Alexey Kravchenko rhash.ad...@gmail.com

  Package name: rhash
  Version : 1.2.6
  Upstream Author : Alexey Kravchenko rhash.ad...@gmail.com
  URL : http://rhash.sourceforge.net/
  License : RHash
  Programming Lang: C

RHash is powerful professional utility, supporting a wide range of 
hashing algorithms, such as CRC32, MD4, MD5, SHA1, SHA256, SHA512, 
Tiger, TTH, BitTorrent BTIH, AICH, ED2K, GOST R 34.11-94, RIPEMD-160, 
HAS-160, EDON-R 256/512, Whirlpool, Snefru.


Features:
 * Can calculate Magnet links and EDonkey 2000 links.
 * Output in a predefined (SFV, BSD) or a user-defined format.
 * Updating hash files (adding hash sums of files missing in the 
hashfile).

 * Ability to process directories recursively.
 * Portability: the program works the same on Linux, *BSD or Windows.

The LibRHash library is lightweight, thread-safe and easy to learn.
It is used by several open source applications.



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4df9c1ca.2050...@gmail.com



Bug#630678: ITP: libdebug-showstuff-perl -- A collection of handy debugging routines for displaying

2011-06-16 Thread Fabrizio Regalli
Package: wnpp
Severity: wishlist
Owner: Fabrizio Regalli fab...@fabreg.it



* Package name: libdebug-showstuff-perl
  Version : 1.13
  Upstream Author : Miko O'Sullivan m...@idocs.com
* URL : http://search.cpan.org/dist/Debug-ShowStuff/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : A collection of handy debugging routines for displaying

 Debug::ShowStuff grew dynamically from my needs in debugging code. I found
 myself doing the same tasks over and over... displaying the keys and values
 in a hash, displaying the elements in an array, displaying the output of
 STDERR in a web page, etc. Debug::ShowStuff began as two or three of my
 favorite routines and grew as I added to that collection. Finally I decided
 to publish these tools in the hope that other Perl hackers will find them
 useful.
 .
 Debug::ShowStuff is intended for debugging, not for production work. I would
 discourage anyone from using Debug::ShowStuff in ready-for-primetime code.
 Debug::ShowStuff is only for quick-n-dirty displays of variable values in
 order to debug your code.
 .
 These functions display values the way I personally like them displayed. Your
 preferences may be different. I encourage you to modify Debug::ShowStuff to
 suit your own needs.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110616084258.29587.6065.reportbug@debianfab



Re: ifupdown 0.7~alpha4 in experimental

2011-06-16 Thread Stephan Seitz

On Wed, Jun 15, 2011 at 06:52:54PM +0200, Christian Hammers wrote:

As a workaround you can already add the following to
/etc/network/interfaces to change your fixed address:

 # Mark this address as still reachable but deprecated as source
 # address for new outgoing connections:
 up  ip addr change 2001:f00::1234/64 dev eth0 preferred_lft 0


Thanks for your answer.
So how do you do the auto configuration? Do you have radvd running or 
a DHCPv6 server? If I understand correctly, radvd won’t give you DNS 
servers. How would an interface configuration look like?


Shade and sweet water!

Stephan

--
| Stephan Seitz E-Mail: s...@fsing.rootsland.net |
| PGP Public Keys: http://fsing.rootsland.net/~stse/pgp.html |


signature.asc
Description: Digital signature


Re: ifupdown 0.7~alpha4 in experimental

2011-06-16 Thread Christian Hammers
On Thu, 16 Jun 2011 11:28:48 +0200
Stephan Seitz stse+deb...@fsing.rootsland.net wrote:

 On Wed, Jun 15, 2011 at 06:52:54PM +0200, Christian Hammers wrote:
 As a workaround you can already add the following to
 /etc/network/interfaces to change your fixed address:
 
   # Mark this address as still reachable but deprecated as source
   # address for new outgoing connections:
   up  ip addr change 2001:f00::1234/64 dev eth0 preferred_lft 0
 
 Thanks for your answer.
 So how do you do the auto configuration? Do you have radvd running or 
 a DHCPv6 server? If I understand correctly, radvd won’t give you DNS 
 servers. How would an interface configuration look like?

I use /etc/network/interfaces for the static IP and tell the kernel
via sysctl to accept Router-Advertisements for additional prefixes
(autoconf=1 and accept_ra=1) under which it should generate random
addresses (use_tempaddr=2). New IPv6 Adresses then appear magically
with scope global temporary dynamic.
My DNS servers are configured fixed in /etc/resolv.conf.
There is no radvd or dhcp6d running.

iface eth0 inet6 static
address 2001:4dd0:0:xxx:yyy::
netmask 64
gateway fe80::1
pre-up sysctl net.ipv6.conf.eth0.autoconf=1
pre-up sysctl net.ipv6.conf.eth0.use_tempaddr=2
pre-up sysctl net.ipv6.conf.eth0.accept_ra=1

bye,

-christian-


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110616114649.3a617...@sys-251.netcologne.de



Re: ifupdown 0.7~alpha4 in experimental

2011-06-16 Thread Edward Allcutt

On Thu, 16 Jun 2011, Stephan Seitz wrote:
So how do you do the auto configuration? Do you have radvd running or a 
DHCPv6 server? If I understand correctly, radvd won’t give you DNS servers.


radvd can be configured to provide dns servers, eg.
interface eth0 {
prefix ...
...
RDNSS x:y:z {};
};

The client also needs to accept these. Linux (the kernel) keeps track
of dns servers advertised in this way but does not update userspace resolvers
directly. I recommend installing rdnssd which gets these details from the
kernel via a netlink socket and updates /etc/resolv.conf

--
Edward Allcutt

Re: ifupdown 0.7~alpha4 in experimental

2011-06-16 Thread Bjørn Mork
Stephan Seitz stse+deb...@fsing.rootsland.net writes:

 So how do you do the auto configuration? Do you have radvd running or
 a DHCPv6 server? If I understand correctly, radvd won’t give you DNS
 servers. 

radvd *can* give you DNS servers.  See the RDNSS option in radvd.conf(5).

rdnssd is a client implementation for Linux.  Other than that, the
client support is not very widespread.



Bjørn


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87k4cmkpo9@nemi.mork.no



Re: UDD access from Alioth(s children) (Was: Alioth status update, take 3)

2011-06-16 Thread Andreas Tille
On Tue, Jun 14, 2011 at 09:03:25PM +0100, Stephen Gran wrote:
   Thanks. Some findings about this: Formerly a plain service=udd was
  working as convenience. Is it planned to put the pg_service.conf into
  place again? That way the backend connection could be transparently
  switched (though, my guess would be that the tunnel is there for the
  same purpose)
 
 I've restored the pg_service config now.

Thanks.

   Also, it is working on wagner, but not on vasks. As I understood it
  this is intentional. On the other hand, the public_html sites are hosted
  on vasks, not on wagner, so services that would want to query UDD and
  offer results are out of scope in the new alioth setup.

That's also very annoying for the Blends pages.
 
 [ lot more good reasons snipped ]
 
 alioth admin hat
 I have to say that I'm not very happy about general purpose hosting on
 the 'alioth' servers.  While I agree QA work is useful and should be
 encouraged rather than discouraged, I don't know if alioth is the place
 for development work of this sort.
 /alioth admin hat

Regarding the Blends pages:  I have set up blends.debian.net which is
running a clone of UDD and the development of the pages is happening
there.  So the code which is rolled out at Alioth (and successors) is
tested.  I'm just using blends.alioth.d.o as the official address
because I'm trusting DSA for providing a reliable service which I can
not guarantee for blends.d.n.  I'm not using alioth as development
playground.

 dsa hat
 qa.d.o has a dedicated machine, udd has a dedicated machine, and I'm
 sure it would be straight forward enough to set up a playpen on one
 or the other of those machines for DDs who want to do QA tasks without
 formally joining the QA team (just a gid debian writable subdirectory
 of the web root where users could create their own spaces would probably
 be sufficient?).   This is just musing off the top of my head - I don't
 speak for the QA team or lucas about access to these services - the
 machines are open to all DDs, however, so I don't see any compelling
 issues to be resolved off hand.
 /dsa hat

As far as I understood the main concern of Gerfried was that UDD access
is possible on the wrong machine.  In my case it is the problem that I
can perfectly generate the Blends pages on wagner I need to sync them
afterwards to vasks.  While in my case this is possible for those static
pages it is just not straightforeward and I would love to understand the
motivation behind the constraint nont to enable UDD access on vasks.  (I
actually do not understand what is the sense of having UDD access on
wagner - I would see *only* a need on vasks.)

Kind regards

   Andreas.

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110616113619.gg6...@an3as.eu



Re: UDD access from Alioth(s children) (Was: Alioth status update, take 3)

2011-06-16 Thread Lucas Nussbaum
On 16/06/11 at 13:36 +0200, Andreas Tille wrote:
 On Tue, Jun 14, 2011 at 09:03:25PM +0100, Stephen Gran wrote:
Thanks. Some findings about this: Formerly a plain service=udd was
   working as convenience. Is it planned to put the pg_service.conf into
   place again? That way the backend connection could be transparently
   switched (though, my guess would be that the tunnel is there for the
   same purpose)
  
  I've restored the pg_service config now.
 
 Thanks.
 
Also, it is working on wagner, but not on vasks. As I understood it
   this is intentional. On the other hand, the public_html sites are hosted
   on vasks, not on wagner, so services that would want to query UDD and
   offer results are out of scope in the new alioth setup.
 
 That's also very annoying for the Blends pages.
  
  [ lot more good reasons snipped ]
  
  alioth admin hat
  I have to say that I'm not very happy about general purpose hosting on
  the 'alioth' servers.  While I agree QA work is useful and should be
  encouraged rather than discouraged, I don't know if alioth is the place
  for development work of this sort.
  /alioth admin hat
 
 Regarding the Blends pages:  I have set up blends.debian.net which is
 running a clone of UDD and the development of the pages is happening
 there.  So the code which is rolled out at Alioth (and successors) is
 tested.  I'm just using blends.alioth.d.o as the official address
 because I'm trusting DSA for providing a reliable service which I can
 not guarantee for blends.d.n.  I'm not using alioth as development
 playground.
 
  dsa hat
  qa.d.o has a dedicated machine, udd has a dedicated machine, and I'm
  sure it would be straight forward enough to set up a playpen on one
  or the other of those machines for DDs who want to do QA tasks without
  formally joining the QA team (just a gid debian writable subdirectory
  of the web root where users could create their own spaces would probably
  be sufficient?).   This is just musing off the top of my head - I don't
  speak for the QA team or lucas about access to these services - the
  machines are open to all DDs, however, so I don't see any compelling
  issues to be resolved off hand.
  /dsa hat
 
 As far as I understood the main concern of Gerfried was that UDD access
 is possible on the wrong machine.  In my case it is the problem that I
 can perfectly generate the Blends pages on wagner I need to sync them
 afterwards to vasks.  While in my case this is possible for those static
 pages it is just not straightforeward and I would love to understand the
 motivation behind the constraint nont to enable UDD access on vasks.  (I
 actually do not understand what is the sense of having UDD access on
 wagner - I would see *only* a need on vasks.)

It is my understanding that blends.alioth.debian.org is served from
wagner, not vasks. Are you sure?

- Lucas


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110616154950.ga13...@xanadu.blop.info



Re: oshackers.org: visualizing the operating system developers

2011-06-16 Thread Sakis Kasampalis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Στις 16/06/2011 04:36 πμ, ο/η Paul Wise έγραψε:
 On Thu, Jun 16, 2011 at 2:28 AM, Sakis Kasampalis f...@dtek.gr wrote:
 
 Based on the idea of http://maps.ubuntu.com/map/ my friend Efstathios
 and me (mostly consulting) developed http://oshackers.org/ - A Web
 application that can be used for visualizing the Free Software/Open
 Source operating system hackers around the world. oshackers supports
 features not included in the Ubuntu maps application, like (1)
 clustering, (2) short/detailed information about a developer by simply
 left-clicking on the system's icon,
 (3) visualization of a specific system, etc.

 You are more than welcomed to register and tell us what you think!
 
 Any particular reason you aren't using OpenStreetMap?
 

That's because there was already a prototype that my friend developed
for one of his school courses, and it was using Google Maps. The
reasons he didn't decide to use OpenStreetMap -- I'm not sure. But
I'll discuss it with him and if necessary we could make the required
changes.

- -- 
Backup aborted: Please remove disk #192 and start over.

Sakis Kasampalis  AND Automotive Navigation Data
Software Engineer Van Vollenhovenstraat 3
Phone: +31[0] 64 562 4937 3016 BE Rotterdam
E-Mail: sakis.kasampa...@and.com  The Netherlands
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJN+jK9AAoJEOHLE+ehj5GFgKkQAJI70EYwdSotIpfstAzV/9wQ
R9MbZDuyVyIB3KA6vdhi+qjDlWC4KxUgnUBTK2owCjJsNjcXTH6vWEnJm7bhxMjK
83pnkTOrZKkrCAnIXou6Hmq99gno5lhkdWDIWywPiF6/P9LqeYJhCs2kgtT609RR
NtNvHytQPvtI4Su2ZgAhlrbADn0Tji3RUa8EsPlyqhEMxZZbsAGqEpMCrNOqOIkm
PQ8gPZmRYLMNlFjaPsJkbz72mv+esJtDWpKHVrvtZFA1EDX0K5ygxRUMXLz3V8YG
bu3iUBlfU8G7weBbi86jZ8E15MntQxhT4lWEJv0wYQ23GB+EbZskdWJxTv6lihih
Bq4Jqy3YI/1LsnL1StoHEFWleC5QrfhEmO1YwS4/VVK+Gc5szd51Gde27fCTQ0Ng
UP9Nu6Q7vzcbyTzKuzzM0UXxyGg4yIwmoTGfZN2ukokB0B2DUDz3z9SFXfC2n76u
Yl4C79AA+a3mTvWl4KVHFbSAZbAeFjM1KzG7WgtLqpzwjsgUWhFpYw5fQ1pb6vSD
brTRgx0wapNt1sZlsgtEmERGPeT3obbHt8CCNFcaFw/q8YiA515Kr8l3mJtZc9x+
wIwOJDKS/fHIkxoUBEf0WsvIYcBAj+gi7VNz6aOlcu4fQwhMv+kD9ZNLQ8hvGety
AIi7PxNSM7me3ADcl6Mw
=QMPh
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4dfa32bd.3070...@dtek.gr



Re: ifupdown 0.7~alpha4 in experimental

2011-06-16 Thread Stephan Seitz

On Thu, Jun 16, 2011 at 11:42:05AM +0100, Edward Allcutt wrote:
So how do you do the auto configuration? Do you have radvd running or 
a DHCPv6 server? If I understand correctly, radvd won’t give you DNS 
servers.

radvd can be configured to provide dns servers, eg.


Thanks to you and the others for your information.


The client also needs to accept these. Linux (the kernel) keeps track
of dns servers advertised in this way but does not update userspace resolvers
directly. I recommend installing rdnssd which gets these details from the
kernel via a netlink socket and updates /etc/resolv.conf


Well, it seems I would need another method for Windows clients.

Please let me explain my setup and my intentions:
One system is a XEN system with two NICs. DomU is the firewall (one NIC 
for PPPoE and a Sixxs IPv6 tunnel via aiccu, one NIC for the internal 
network). It provides a Squid proxy, DNS and DHCPv4 server for guests.
Dom0 is my workstation. It only has an IP address on the network bridge 
to the internal network.

My notebook is connected via switch to the internal network.

In my IPv4 setup all my systems have fixed private IP addresses. The 
firewall is NATting the external traffic. Since my provider changes my 
PPPoE IP address every 24 hours, my external address is not constant.


Since IPv6 doesn’t provide NAT, all my systems have now a fixed public 
IPv6 address.


My goal is to shuffle the addresses in my big IPv6 network, so that 
external systems will always see another IPv6 address. Besides that, 
guest systems (Windows and Linux) should get IPv4 and IPv6 addresses with 
all necessary information (Gateway and DNS). IPv4 is covered.


So how will I do this? If I install radvd at my firewall (DomU), the 
fixed IP addresses are already set. So the temporary addresses have to be 
activated later.


Any hints are welcome.

Maybe this is the wrong list and the discussion should be moved to 
debian-user? If yes feel free. I’m reading both lists.


Shade and sweet water!

Stephan

--
| Stephan Seitz E-Mail: s...@fsing.rootsland.net |
| PGP Public Keys: http://fsing.rootsland.net/~stse/pgp.html |


signature.asc
Description: Digital signature


Re: oshackers.org: visualizing the operating system developers

2011-06-16 Thread Sakis Kasampalis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 16/06/2011 04:48 ??, ?/? Tiago Bortoletto Vaz ??:
 On Thu, Jun 16, 2011 at 09:36:49AM +0800, Paul Wise wrote:
 On Thu, Jun 16, 2011 at 2:28 AM, Sakis Kasampalis f...@dtek.gr wrote:

 Based on the idea of http://maps.ubuntu.com/map/ my friend Efstathios
 and me (mostly consulting) developed http://oshackers.org/ - A Web
 application that can be used for visualizing the Free Software/Open
 Source operating system hackers around the world. oshackers supports
 features not included in the Ubuntu maps application, like (1)
 clustering, (2) short/detailed information about a developer by simply
 left-clicking on the system's icon,
 (3) visualization of a specific system, etc.

 You are more than welcomed to register and tell us what you think!

 Any particular reason you aren't using OpenStreetMap?
 
 Btw, we have something similar at http://gis.debianart.org/
 
 Regards,
 

Nice, but our application does not focus only on Debian. The idea is to
get a nice view of the Free/Open Source os hackers around the world :)

- -- 
Backup aborted: Please remove disk #192 and start over.

Sakis Kasampalis  AND Automotive Navigation Data
Software Engineer Van Vollenhovenstraat 3
Phone: +31[0] 64 562 4937 3016 BE Rotterdam
E-Mail: sakis.kasampa...@and.com  The Netherlands
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJN+jPhAAoJEOHLE+ehj5GFDicP/RK6YWeJq3hJtD0ZLlZCZAJp
yCS2DaUWk9xb2DSbw/v1TAOAT1MW5oCmF1v5gKaHYtx3AEwMuPTxZXKnyD4MP0E9
fuy9RGeLkqHN8fHAXo+Cx2MXQJBAEVAiGxYyb4ARzZs9jgBykEg84rqfVEy//Zdf
PFx6HiWq4W9TmZrRMurVSrr3CgtryTJh48QFtHrL2Z1NsaWrKIYtZ7Eo17LNU9zi
SxJr3+foJQqm88Hj30PV6oGotXTpmHHGifbMOtOMWoOYpjLrKSru+7ihhOiv4d5i
PVNyD/SI2W9I8zOYhIf1RXbFETAd4gTL+aWfy7iJ/x61dFP5cMzpw4VScAWhVjf/
pmIkS+Nl0mjnZLJGYJ0rw5msrbfGJYtT+GxldVQZA4VjAAhejw44+RlF+1/tTvwH
O7t3OUCWyabLzMSXhNM5pwxGS79DPxSDhrEczKUFRPjp3FNcCRy7L+B1Df186Q4p
XRFTMi3/C0wMPoJlAELx2lNq2QEwadpehFBBVVxc7Wo7YW7I263cjlPNH9HArXMD
UB58s61U/SWB0ru1cr4N09tqDx+V5D+JZmmJPsiavodRG//2Us73ygQfB5Ytc8zQ
x4bhjePTa9DNiDnK6qGMisT2kvNK3tF1NIBRWz9tGCWhmHskHPrzMTULW1hbSe8W
OcJe2oiKQyC2ust53Zr3
=SWtk
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4dfa33e2.5020...@dtek.gr



Re: Re: oshackers.org: visualizing the operating system developers

2011-06-16 Thread Sakis Kasampalis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

One improvement would be to use JSON instead of Javascript. Also, IMHO
the Google Maps API is not famous for its speed, thus we could use an
alternative, for example OpenStreetMap (as mentioned). But we'll wait
for more feedback before making major changed.

Cheers,
Sakis

- -- 
Backup aborted: Please remove disk #192 and start over.

Sakis Kasampalis  AND Automotive Navigation Data
Software Engineer Van Vollenhovenstraat 3
Phone: +31[0] 64 562 4937 3016 BE Rotterdam
E-Mail: sakis.kasampa...@and.com  The Netherlands
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJN+jikAAoJEOHLE+ehj5GF4CgP/1T7Lmd/dpxz6dIChCnoIlyt
B3C/4YWswlObcBEzCUWWvlx/YhpAfs8h5ohSjxpTM4r5tBBsJ2/KvneSlD28ADjJ
LsdkThmTqChh1YzZ3uKbB0q+1wWJzJAH3ffiZQbnZGa6Qv791ZPfCPT3Xt1VS8iw
/yE7j2omNxRuNYrWfp8tzq5T1LTG2FMaKnUm2tsnvNv4s2GQUNZARUrT6qLKUztW
rXU7eNxjMoRQJxI14R4QjhI9XcJmRD6X5kaOwiRAx2Vrf0CCycZoIrDMQzHwpe/M
CHBNbup7FXUsNEpRXf+lnAeOzUqhFgcMauEXa8aZjA1VrGFEl2y38CFtHhnDzyAQ
BqPND0xwm1j2s0/2ksGlBRaE9Axqwhxnk8mvRDM1Bmy9FOROub40wfADQ61upmqR
Ke9lfpC+VGgz+4HA9WX6Hdr9/4XxlMZsoqBIpVeKXocWt27jbvAMoOsFDFUvqOYz
I6KgopR3Yzd6ZvMuHmv7NBYXwO0jFI1tNCB7COJkKBBIZTfoO7ZODKnuej/qmG2K
IaKJ9yYdhzd0F8krk9wDW6yFz6w0Y7f8uoHBl9IXkSUDjdBxJKpqYEuB0myq8GUD
20U5jCqBMuBo/PwZKEc4MYum3v4FcqAftrsUjevabHYXW1/+8L81/B1j8RgQN72z
wSPkVz4mj38VZJa/7+/V
=GpE7
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4dfa38a5.4050...@dtek.gr



Re: Bug#630653: ITP: libbencode-perl -- BitTorrent serialisation format

2011-06-16 Thread Francisco M.
Hello, 
Please, could you add a long description.

The information about the package is a bit poor,
and website doesn't have much more info.

Thanks,

Regards.
Francisco.

El jue, 16-06-2011 a las 00:26 +0200, Fabrizio Regalli escribió:
 Package: wnpp
 Severity: wishlist
 Owner: Fabrizio Regalli fab...@fabreg.it
 
 
 
 * Package name: libbencode-perl
   Version : 1.4
   Upstream Author : Aristotle Pagaltzis pagalt...@gmx.de
 * URL : http://search.cpan.org/dist/Bencode/
 * License : Artistic or GPL-1+
   Programming Lang: Perl
   Description : BitTorrent serialisation format
 
 
 

-- 
Francisco M. García Claramonte franciscomanuel.gar...@hispalinux.es
Debian GNU/Linux Developer franci...@debian.org
GPG: public key ID 556ABA51


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


[deb...@onerussian.com: Fwd: [atlas-devel] tenure letters]

2011-06-16 Thread Yaroslav Halchenko
Almost forgot about this -- a while (now) back I have received a request
for letters of support for the lead developer of Atlas.  I circulated it
on debian-science, but I bet there are other Debian developers who might
like to contribute to such a letter.  Please feel free to contribute:

http://whiteboard.debian.net/atlas-testimonial.wb

I am going to send it out to Clint in a week, so there is time left.

With best regards,
Yarik

- Forwarded message from Yaroslav Halchenko deb...@onerussian.com -

Date: Wed, 20 Apr 2011 18:42:13 -0400
From: Yaroslav Halchenko deb...@onerussian.com
To: Debian Science debian-scie...@lists.debian.org
Subject: Fwd: [atlas-devel] tenure letters
X-CRM114-Status: Good  ( pR: 19.0270 )

I am sure that we have lots of Debian-science users of ATLAS (actually
according to popcon it is more than 5% of Debian users).  And it
is time when we could help securing future ATLAS development.

I guess Sylvestre as the maintainer could write a letter and few
debian-science users/developers could write few more.  But what about
composing may be a group letter from Debian-Science group?

If idea is sound, then I guess we should start composing it on google
docs... sounds good?

Communicated by Matthew Brett matthew.br...@gmail.com:

-- Forwarded message --
From: Clint Whaley wha...@cs.utsa.edu
Date: Wed, Apr 20, 2011 at 7:24 AM
Subject: [atlas-devel] tenure letters
To: math-atlas-de...@lists.sourceforge.net


Guys,

I go up for tenure this summer.  The tenure committee has asked that I get
testimonials from ATLAS users so they can see the importance of the package
to the community.  So, if ATLAS has been of use to you, this is the time
to write a letter saying it.

If you are an individual researcher, discussing how ATLAS helps you in
your research will be very helpful.

If you are a repackager of ATLAS, discussing how ATLAS helps your distro,
and how many people use it would be very helpful.

If you are a sys admin who installs ATLAS for others to use, outlining
your lab and the types of research done their would be of great help.

If you have read my papers and find them helpful, discussing that is good as
well, but you don't need to do that for this, since they will ask for
academic reviewers separately.

If you know others that don't monitor this list who might be willing to
write letters, please pass this message on.  My colleagues have specifically
asked for this information so they can give weight to my claims that
providing ATLAS is a service to a large number of communities, that
it is widely used, and that its continued production at UTSA will
raise our profile.

If you are willing to write a letter and need further information,
please contact me directly if you like.

Thanks,
Clint

**
** R. Clint Whaley, PhD ** Assist Prof, UTSA ** www.cs.utsa.edu/~whaley **
**

-- 
=--=
Keep in touch www.onerussian.com
Yaroslav Halchenko www.ohloh.net/accounts/yarikoptic


--
To UNSUBSCRIBE, email to debian-science-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110420224213.gk15...@onerussian.com



- End forwarded message -

-- 
=--=
Keep in touch www.onerussian.com
Yaroslav Halchenko www.ohloh.net/accounts/yarikoptic


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110616194251.gu17...@onerussian.com



Re: Bug#630653: ITP: libbencode-perl -- BitTorrent serialisation format

2011-06-16 Thread Fabrizio Regalli
Hi,

Il giorno gio, 16/06/2011 alle 21.42 +0200, Francisco M. García
Claramonte ha scritto:
 Hello, 
 Please, could you add a long description.
 
 The information about the package is a bit poor,
 and website doesn't have much more info.
 

You are right, sorry.
As you said before, there are a few information about it but following
can be added:

* This module implements the BitTorrent bencode serialisation format as
described in http://www.bittorrent.org/beps/bep_0003.html '

I hope it's a little bit exhaustive now.

Cheers,
Fabrizio.




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


Bug#630753: ITP: snap -- gene finding with HMMs in Eukaryotes and Prokaryotes

2011-06-16 Thread Steffen Moeller
Package: wnpp
Severity: wishlist
Owner: Steffen Moeller steffen_moel...@gmx.de

* Package name: snap
* URL : http://homepage.mac.com/iankorf/
* License : GPL
  Description : gene finding with HMMs in Eukaryotes and Prokaryotes

The package is basically ready, demanding only man pages to be contributed.
It will be located with the Debian Med project at 
htp://debianmed.alioth.debian.org.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110616231710.10576.45874.reportbug@Toshiba.siemens



Re: Unofficial Debian Monthly Testing Snapshot Release (version 2011.06)

2011-06-16 Thread Stephen Allen
On Sun, Jun 12, 2011 at 06:06:04PM -0400, Michael Gilbert wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Hi all,
 
 I am pleased to announce the unofficial Debian monthly testing snapshot
 release for June 2011 (version 2011.06).  This release is currently
 available in two flavors, i386 and amd64, as mini iso images (16 MiB
 each) downloadable from:
 
 http://alioth.debian.org/~gilbert-guest/snapshots/2011.06/debian-testing-snapshot-2011.06-i386-mini.iso
 sha512sum: 
 f4839b92e8d090f7799f0e46b386c07522310d21a4fb05397586462d1024384e201a1f2ceb16e1adb8bc538231418b17bda1d846023326bb58d1cd7559af341f
 http://alioth.debian.org/~gilbert-guest/snapshots/2011.06/debian-testing-snapshot-2011.06-amd64-mini.iso
 sha512sum: 
 c98ebd24550b8f64929967e1f5b09b56d746f7d1654b3a4978d67c58665203739a31922872a82730990d5423533e4a89a057321117a825daa317187f54addd61
---end quoted text---

Thanks! Do these snapshots contain the proprietary binary drivers missing from 
Debian 
regular installation media?


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110616234317.GA3975@sda-ThinkPad-X41



Cross-platform detection of multiarch

2011-06-16 Thread Jan Medlock
What is the recommended way to detect the presence of multiarch in a
cross-platform build?

I'm trying to fix up the Sage http://www.sagemath.org/ build, which
seems to need to set a search path on multiarch systems:
http://trac.sagemath.org/sage_trac/ticket/11243

Currently, there's an explicit check for Ubuntu 11.04, which doesn't
work for Debian and its other derivatives, will break with the next
version of Ubuntu, etc.

So, what's the best way to check whether the OS has multiarch?

I though about using dpkg-architecture.  Another way would be
preferred since dpkg-dev, the package containing dpkg-architecture,
might not be installed.

Thanks,
Jan Medlock


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110616232841.ga5...@ralph.turboshower.net



Re: Cross-platform detection of multiarch

2011-06-16 Thread Brian May
On 17 June 2011 09:28, Jan Medlock medlock-deb...@turboshower.net wrote:
 I though about using dpkg-architecture.  Another way would be
 preferred since dpkg-dev, the package containing dpkg-architecture,
 might not be installed.

Is that likely?

dpkg-dev is required by build-essential and contains a number of
important programs required for building Debian packages.
-- 
Brian May br...@microcomaustralia.com.au


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/BANLkTi=xequtq2mivbg+uyeya2fgnra...@mail.gmail.com



Re: Cross-platform detection of multiarch

2011-06-16 Thread Jonathan Nieder
Hi Jan,

Jan Medlock wrote:

 What is the recommended way to detect the presence of multiarch in a
 cross-platform build?
[...]
 Currently, there's an explicit check for Ubuntu 11.04

Thanks for raising this.  Of course, multiarch in Debian is young so
there is still a chance to make changes to improve this kind of use
case before a release.  As you hinted, other platforms may have other
ways to solve the same problems.

I would be very interested to hear about how the presence of multiarch
affects sage's build, and maybe we can come up with a generic solution
(like adding a new variable to getconf, things like that).  After
reading the bug log you linked to, it's still unclear to me where
multiarch fits in (as not ld's change in defaults to
--no-copy-dt-needed, say).

For example: the best practice for installing a library for a long
time has been to write to $prefix/lib by default and allow this to be
overridden (for example to /usr/lib64 or /usr/lib/$(dpkg-architecture
-qDEB_HOST_MULTIARCH)) at build time.  I don't think multiarch changes
that.

To give another example: if you want to see where gcc looks for
libraries for some reason, there is gcc -print-search-dirs.

Looking forward to your thoughts,
Jonathan


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110617015812.GA27902@elie



Re: Cross-platform detection of multiarch

2011-06-16 Thread Jonathan Nieder
Jonathan Nieder wrote:

 After
 reading the bug log you linked to, it's still unclear to me where
 multiarch fits in (as not ld's change in defaults to
 --no-copy-dt-needed, say).

Ah, stupid me: here's a link so others can start where I left off.

 http://groups.google.com/group/sage-devel/msg/e60dc9297efebeaa

Perhaps Python should be making use of gcc -print-search-dirs
output.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110617020141.GA2769@elie



Re: Cross-platform detection of multiarch

2011-06-16 Thread Jan Medlock
On 17 June 2011 10:002, Brian May br...@microcomaustralia.com.au
wrote:
 On 17 June 2011 09:28, Jan Medlock medlock-deb...@turboshower.net
 wrote:
 I though about using dpkg-architecture.  Another way would be
 preferred since dpkg-dev, the package containing dpkg-architecture,
 might not be installed.
 
 Is that likely?
 
 dpkg-dev is required by build-essential and contains a number of
 important programs required for building Debian packages.

I don't know.  Is dpkg-dev installed by default on Debian, Ubuntu,
Mint, etc.?   (I'd guess the answer is no to all of them.)

Sage is designed to be built easily (just 'make') on a wide variety of
platforms.  I'd like a solution that as robust as possible to optional
packages the user might not have installed, since that's what Sage
tries to provide with its build system.

And in case there's confusion, I'm not talking about building a Debian
package: smarter people than me haven't yet solved that problem
because of all of its included dependencies, some of which are
required to be very specific versions.  The way to install Sage is to
build it from source, which now fails on multiarch Debian and
derivatives (except for Ubuntu 11.04).


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110617015148.ga2...@turboshower.net



Re: Unofficial Debian Monthly Testing Snapshot Release (version 2011.06)

2011-06-16 Thread Michael Gilbert
On Thu, 16 Jun 2011 19:43:17 -0400 Stephen Allen wrote:

 On Sun, Jun 12, 2011 at 06:06:04PM -0400, Michael Gilbert wrote:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
  
  Hi all,
  
  I am pleased to announce the unofficial Debian monthly testing snapshot
  release for June 2011 (version 2011.06).  This release is currently
  available in two flavors, i386 and amd64, as mini iso images (16 MiB
  each) downloadable from:
  
  http://alioth.debian.org/~gilbert-guest/snapshots/2011.06/debian-testing-snapshot-2011.06-i386-mini.iso
  sha512sum: 
  f4839b92e8d090f7799f0e46b386c07522310d21a4fb05397586462d1024384e201a1f2ceb16e1adb8bc538231418b17bda1d846023326bb58d1cd7559af341f
  http://alioth.debian.org/~gilbert-guest/snapshots/2011.06/debian-testing-snapshot-2011.06-amd64-mini.iso
  sha512sum: 
  c98ebd24550b8f64929967e1f5b09b56d746f7d1654b3a4978d67c58665203739a31922872a82730990d5423533e4a89a057321117a825daa317187f54addd61
 ---end quoted text---
 
 Thanks! Do these snapshots contain the proprietary binary drivers missing 
 from Debian 
 regular installation media?

No, but they do contain a newer kernel than stable, which may have better
support for such hardware.  There were cd images that included non-free
firmware on cdimages.debian.org at one point, but I forget where.  
You can probably google that.

Best wishes,
Mike


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110616230019.5a6c3b70.michael.s.gilb...@gmail.com



Re: Cross-platform detection of multiarch

2011-06-16 Thread Jan Medlock
Jonathan Nieder wrote:
 Jonathan Nieder wrote:
 After
 reading the bug log you linked to, it's still unclear to me where
 multiarch fits in (as not ld's change in defaults to
 --no-copy-dt-needed, say).
 
 Ah, stupid me: here's a link so others can start where I left off.
 
  http://groups.google.com/group/sage-devel/msg/e60dc9297efebeaa
 
 Perhaps Python should be making use of gcc -print-search-dirs
 output.

I just dug through this and understand better now.

Debian uses a different solution for building Python 2.6 than that
used by Sage (and it looks like Ubuntu). There's a patch in Debian's
packages of Python 2.6 that essential adds
{/lib,/usr/lib}/$(DEB_HOST_MULTIARCH) to the library search path.
This solution is included in upstream Python 2.7.

Python's distutils (or whatever is setting the default library paths)
seems to be not using the compiler's ideas about the library path
(i.e.  gcc -print-search-dirs).  That seems broken to me...  Parsing
the library directory paths across multiple compilers must be hard.

Thanks for sending me down the right path.  It looks like I should
just patch my local versions until Sage upgrades to Python 2.7.  (And
even then, it'll require dpkg-dev to compile.)  And multiarch was not
really involved...

JM


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110617041720.ga26...@ralph.turboshower.net



Accepted plasma-widget-veromix 0.12.0-1 (source all)

2011-06-16 Thread Nik Lutz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 13 Jun 2011 03:17:00 +0100
Source: plasma-widget-veromix
Binary: plasma-widget-veromix
Architecture: source all
Version: 0.12.0-1
Distribution: unstable
Urgency: low
Maintainer: Nik Lutz nik.l...@gmail.com
Changed-By: Nik Lutz nik.l...@gmail.com
Description: 
 plasma-widget-veromix - plasma widget to control pulseaudio
Closes: 626494
Changes: 
 plasma-widget-veromix (0.12.0-1) unstable; urgency=low
 .
 * New upstream release (Closes: #626494).
 * Updated debian/control Standards-Version to 3.9.2 (no changes).
Checksums-Sha1: 
 24775e36ff4030a61e71968f735ad002de5817be 1300 
plasma-widget-veromix_0.12.0-1.dsc
 593e92808b67db8f674bdc29b356314864c2d7f6 77726 
plasma-widget-veromix_0.12.0.orig.tar.gz
 9e21ba3a03a88ba9cb2061a973c39e4bf450b914 1907 
plasma-widget-veromix_0.12.0-1.debian.tar.gz
 2efc8783dd3452f145c005a17b9f40073a097cc4 83052 
plasma-widget-veromix_0.12.0-1_all.deb
Checksums-Sha256: 
 c5c99219ef658704ec9958a076acfc846bb9fb7f26406e19eb13b6af630def50 1300 
plasma-widget-veromix_0.12.0-1.dsc
 158531abcc81fd02b64931ba9f4dae1e3a64727a438bea64cec1475d53ecf909 77726 
plasma-widget-veromix_0.12.0.orig.tar.gz
 43b105bb27f2103b91fe060f1ec82a68a48460ba31d7d5b6fb1b62f104ae6d07 1907 
plasma-widget-veromix_0.12.0-1.debian.tar.gz
 3c46354a8c6f09d958e5f88e8e18885ac7229cc4f670896b9cabd30a6b67ad45 83052 
plasma-widget-veromix_0.12.0-1_all.deb
Files: 
 429ac6d5fd3ecbd636af1ca83c6a2050 1300 kde optional 
plasma-widget-veromix_0.12.0-1.dsc
 750a1300179e6f18d6fcb10c42fa6d42 77726 kde optional 
plasma-widget-veromix_0.12.0.orig.tar.gz
 9ed77f526e5ea9a26782949ae44890d0 1907 kde optional 
plasma-widget-veromix_0.12.0-1.debian.tar.gz
 0986bc7243c46b0c182c5cdd0e15e390 83052 kde optional 
plasma-widget-veromix_0.12.0-1_all.deb

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

iEYEARECAAYFAk35p/0ACgkQ+C5cwEsrK576lgCeKTddvX+fR1OovABPMcg2xHpR
VB4An1iHUFbXg3xlNpqMlzs0LTf+mwrW
=pu6/
-END PGP SIGNATURE-


Accepted:
plasma-widget-veromix_0.12.0-1.debian.tar.gz
  to main/p/plasma-widget-veromix/plasma-widget-veromix_0.12.0-1.debian.tar.gz
plasma-widget-veromix_0.12.0-1.dsc
  to main/p/plasma-widget-veromix/plasma-widget-veromix_0.12.0-1.dsc
plasma-widget-veromix_0.12.0-1_all.deb
  to main/p/plasma-widget-veromix/plasma-widget-veromix_0.12.0-1_all.deb
plasma-widget-veromix_0.12.0.orig.tar.gz
  to main/p/plasma-widget-veromix/plasma-widget-veromix_0.12.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qx6ae-0001hn...@franck.debian.org



Accepted unattended-upgrades 0.72.3 (source all)

2011-06-16 Thread Michael Vogt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 09:13:49 +0200
Source: unattended-upgrades
Binary: unattended-upgrades
Architecture: source all
Version: 0.72.3
Distribution: unstable
Urgency: low
Maintainer: Michael Vogt michael.v...@ubuntu.com
Changed-By: Michael Vogt m...@debian.org
Description: 
 unattended-upgrades - automatic installation of security upgrades
Closes: 630192
Changes: 
 unattended-upgrades (0.72.3) unstable; urgency=low
 .
   * debian/rules:
 - run the original targets after override_dh_
   * test/create_debug_lock.py, unattended-upgrade:
 - fix two missing python-apt 0.8 transition issues
   (thanks to Reinhard Tartler, closes: #630192)
Checksums-Sha1: 
 6f3a40eb6c72489bf6887887524b7ab09efbbe2c 939 unattended-upgrades_0.72.3.dsc
 f322686ebabae95dc3920e83d99dd7ba315d41e8 58009 
unattended-upgrades_0.72.3.tar.gz
 6d4e5ef5d9e2e40035439cb90963ca3fe0188141 33826 
unattended-upgrades_0.72.3_all.deb
Checksums-Sha256: 
 447fd158773bf75066c37d23df9adf7804bfd6fac4801d88a3e4d6a7174d9752 939 
unattended-upgrades_0.72.3.dsc
 bd2e3dfb01842f7ecd35d7ee4782b0a16f97571163331e5fe5a02ef86fbf13d6 58009 
unattended-upgrades_0.72.3.tar.gz
 002d55e562285eb6c72d8ff8babb14eac1974f33a698ee933e4aa1ce6cdecb90 33826 
unattended-upgrades_0.72.3_all.deb
Files: 
 6ba5a592fd932e6f3f0f1c3f52e0e883 939 admin optional 
unattended-upgrades_0.72.3.dsc
 a85d9e4916ecb84d08fbd54ccfbde217 58009 admin optional 
unattended-upgrades_0.72.3.tar.gz
 f9e9caf404d3d4520b0563e24ad8c404 33826 admin optional 
unattended-upgrades_0.72.3_all.deb

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

iEYEARECAAYFAk35ryIACgkQliSD4VZixzRj7wCfTc4Ezi/y1XupHXgYlZRPvezO
YdoAnRBxbqB4WDVZHwhtMWvHj3aG7Gjf
=CPyB
-END PGP SIGNATURE-


Accepted:
unattended-upgrades_0.72.3.dsc
  to main/u/unattended-upgrades/unattended-upgrades_0.72.3.dsc
unattended-upgrades_0.72.3.tar.gz
  to main/u/unattended-upgrades/unattended-upgrades_0.72.3.tar.gz
unattended-upgrades_0.72.3_all.deb
  to main/u/unattended-upgrades/unattended-upgrades_0.72.3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qx73g-0002yj...@franck.debian.org



Accepted audit 1.7.13-1.2 (source i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 09:48:16 +0200
Source: audit
Binary: auditd libaudit0 libaudit-dev python-audit audispd-plugins 
system-config-audit
Architecture: source i386
Version: 1.7.13-1.2
Distribution: unstable
Urgency: low
Maintainer: Philipp Matthias Hahn pmh...@debian.org
Changed-By: Luk Claes l...@debian.org
Description: 
 audispd-plugins - Plugins for the audit event dispatcher
 auditd - User space tools for security auditing
 libaudit-dev - Header files and static library for security auditing
 libaudit0  - Dynamic library for security auditing
 python-audit - Python bindings for security auditing
 system-config-audit - Graphical utility for editing audit configuration
Closes: 621141
Changes: 
 audit (1.7.13-1.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621141).
   * Add ${python:Depends} for system-config-audit.
Checksums-Sha1: 
 7136e010baf08ae089315abfec55c876dc940a5b 1369 audit_1.7.13-1.2.dsc
 df36ffae480a8e4ff4ed005033c9b0388560720c 11277 audit_1.7.13-1.2.diff.gz
 c5e9c778af00c2101769508fb648dae4f595db0c 376228 auditd_1.7.13-1.2_i386.deb
 32c56d85ddc3bfd6624b6e296d7c957ddaec003e 77984 libaudit0_1.7.13-1.2_i386.deb
 886f3c9e8b1a2bde70d680739e8989c46703cb64 137012 
libaudit-dev_1.7.13-1.2_i386.deb
 a8f48cc38f51f0d5f1c9814974acf78793d425ab 73516 python-audit_1.7.13-1.2_i386.deb
 b03e62e81797c387a2d9ecff4a85a2b8550be337 67514 
audispd-plugins_1.7.13-1.2_i386.deb
 46308a19dcfb10fcaa82e0308650c3f0922ca63c 74584 
system-config-audit_1.7.13-1.2_i386.deb
Checksums-Sha256: 
 4faf0b0b6a7254b19dbe179b6f904f2d0841786632cde1833f359cb8c8465a52 1369 
audit_1.7.13-1.2.dsc
 5321db9d3a33fdeae2d81accda72c7deaaf04d3ea88d5b633e11fa2572004a66 11277 
audit_1.7.13-1.2.diff.gz
 d903fcce3c54e52a96d893e4cb84a5229ddadd52c23cedede1eb55c02bfdcad7 376228 
auditd_1.7.13-1.2_i386.deb
 d0a8c06dad3e46bca6bbf3331d78f002108c597dd352fb80f57c6e5d366f030f 77984 
libaudit0_1.7.13-1.2_i386.deb
 73012520fb35c7d5ce3892f58f4d7508bf18c0386557a472bf427734eeb9efff 137012 
libaudit-dev_1.7.13-1.2_i386.deb
 e9a412fdc42e3fe8548d8d476ce9cdd7b196129fe4c307a8668ed2de7d135243 73516 
python-audit_1.7.13-1.2_i386.deb
 1d553e8f5ba958a57df7cbd3c689f033760e6009dc9bfde3778331e5b97a4c09 67514 
audispd-plugins_1.7.13-1.2_i386.deb
 170f988a349eea3c8fa5c715e9d42d2a5657355bc896bfba6cc87030ad50ab59 74584 
system-config-audit_1.7.13-1.2_i386.deb
Files: 
 5325f63fcf20d1800490411b39eaceeb 1369 libs extra audit_1.7.13-1.2.dsc
 71e2c3e4909bcbf49807dd45143f6941 11277 libs extra audit_1.7.13-1.2.diff.gz
 ea052fb0fb410df8015a7e2c9f26a49d 376228 admin extra auditd_1.7.13-1.2_i386.deb
 244ad13c16124035b05eb124f4e9c44f 77984 libs extra libaudit0_1.7.13-1.2_i386.deb
 ebd247d9b81df9e1f36b5156b47e605b 137012 libdevel extra 
libaudit-dev_1.7.13-1.2_i386.deb
 eb6df1330bd93ff03f7db106ef8093f3 73516 python extra 
python-audit_1.7.13-1.2_i386.deb
 65379de281cdce45f0bf408506176e82 67514 admin extra 
audispd-plugins_1.7.13-1.2_i386.deb
 98e48c0aa12c96f5b0709ac205ec2d4a 74584 admin extra 
system-config-audit_1.7.13-1.2_i386.deb

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

iEUEARECAAYFAk3zHtoACgkQ5UTeB5t8Mo063wCXS24UMcyCRJZmtLcYmvln/b8e
YQCgtJ01UIyaNcUtGvh7rBIUPnV04sk=
=PaWr
-END PGP SIGNATURE-


Accepted:
audispd-plugins_1.7.13-1.2_i386.deb
  to main/a/audit/audispd-plugins_1.7.13-1.2_i386.deb
audit_1.7.13-1.2.diff.gz
  to main/a/audit/audit_1.7.13-1.2.diff.gz
audit_1.7.13-1.2.dsc
  to main/a/audit/audit_1.7.13-1.2.dsc
auditd_1.7.13-1.2_i386.deb
  to main/a/audit/auditd_1.7.13-1.2_i386.deb
libaudit-dev_1.7.13-1.2_i386.deb
  to main/a/audit/libaudit-dev_1.7.13-1.2_i386.deb
libaudit0_1.7.13-1.2_i386.deb
  to main/a/audit/libaudit0_1.7.13-1.2_i386.deb
python-audit_1.7.13-1.2_i386.deb
  to main/a/audit/python-audit_1.7.13-1.2_i386.deb
system-config-audit_1.7.13-1.2_i386.deb
  to main/a/audit/system-config-audit_1.7.13-1.2_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qx8eq-00052y...@franck.debian.org



Accepted imagemagick 8:6.6.9.7-5 (source all amd64)

2011-06-16 Thread Bastien Roucariès
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 00:18:36 +0200
Source: imagemagick
Binary: imagemagick imagemagick-dbg imagemagick-common imagemagick-doc 
libmagickcore4 libmagickcore4-extra libmagickcore-dev libmagickwand4 
libmagickwand-dev libmagick++4 libmagick++-dev perlmagick
Architecture: source amd64 all
Version: 8:6.6.9.7-5
Distribution: unstable
Urgency: low
Maintainer: ImageMagick Packaging Team 
pkg-gmagick-im-t...@lists.alioth.debian.org
Changed-By: Bastien Roucariès roucaries.bastien+deb...@gmail.com
Description: 
 imagemagick - image manipulation programs
 imagemagick-common - image manipulation programs -- infrastructure
 imagemagick-dbg - debugging symbols for ImageMagick
 imagemagick-doc - document files of ImageMagick
 libmagick++-dev - object-oriented C++ interface to ImageMagick - development 
files
 libmagick++4 - object-oriented C++ interface to ImageMagick
 libmagickcore-dev - low-level image manipulation library - development files
 libmagickcore4 - low-level image manipulation library
 libmagickcore4-extra - low-level image manipulation library - extra codecs
 libmagickwand-dev - image manipulation library - development files
 libmagickwand4 - image manipulation library
 perlmagick - Perl interface to the ImageMagick graphics routines
Closes: 593041 630619
Changes: 
 imagemagick (8:6.6.9.7-5) unstable; urgency=low
 .
   * Replace a overlapped memcopy by a memmove
   * Fix a PNG reduction bug Corrupted (?) icons, thanks to
 Torbjörn Andersson eriknos...@telia.com
 (Closes: #630619).
   * Fix parallel build issue. Make debian/rules install target depend
 on check. Thanks Colin Watson cjwat...@ubuntu.com
 (Closes: #593041).
Checksums-Sha1: 
 6625018d085313aca0a7cc03d5665e13beb7bceb 1964 imagemagick_6.6.9.7-5.dsc
 36557ce40836a08f135cc7c5aeeb7b587bfbd7b6 40355 
imagemagick_6.6.9.7-5.debian.tar.bz2
 ee89d54cfbfae51ce613e7f0ff9a1c382293254a 124432 imagemagick_6.6.9.7-5_amd64.deb
 5629926334e51cd5337c1851b1c2154699a2be53 4616488 
imagemagick-dbg_6.6.9.7-5_amd64.deb
 31589c8e251e4021f085542967b837a566de80ac 112512 
imagemagick-common_6.6.9.7-5_all.deb
 431ec678f39261356ab44e2614c8b94001e21e54 5538046 
imagemagick-doc_6.6.9.7-5_all.deb
 5d33acab96564ab76eb59a16c2dfc1e39467bcd5 1947660 
libmagickcore4_6.6.9.7-5_amd64.deb
 3f9d0509167011f550c8d831b16d4e4e5c999eee 124668 
libmagickcore4-extra_6.6.9.7-5_amd64.deb
 3c275bf8abf92621eb897ee5d77163ac9047ce56 1295650 
libmagickcore-dev_6.6.9.7-5_amd64.deb
 124ab538df9f49f9817c477fc52668b57cc20ab6 442400 
libmagickwand4_6.6.9.7-5_amd64.deb
 d24bb3c4451921cf5814b610bfb091fba4eae8f9 524286 
libmagickwand-dev_6.6.9.7-5_amd64.deb
 203988ae7fd09ed9b06fcb2f7f2c9a86f7179d49 217602 
libmagick++4_6.6.9.7-5_amd64.deb
 2c77c669886f4ff2203aef7db612c82a60b2df24 268790 
libmagick++-dev_6.6.9.7-5_amd64.deb
 9fd7fa3cfc9b0a4796ade51a3cbea3d65c594545 248292 perlmagick_6.6.9.7-5_amd64.deb
Checksums-Sha256: 
 f618462154fbb536f825f52636c01ae6203d72ef2ee48629c64d4307df7485c2 1964 
imagemagick_6.6.9.7-5.dsc
 e91d5cf6342bbfe09153a016df2ea6c1e48020ea3094648dbbd9308c62be8f12 40355 
imagemagick_6.6.9.7-5.debian.tar.bz2
 3d74d971c5c137630b06c02438df4043fa65f97530895b788e0130e23af4c082 124432 
imagemagick_6.6.9.7-5_amd64.deb
 ab8897983ea791f99bf1c255966db45d4d0449bbe207ba6e8385b0d90c83c8ad 4616488 
imagemagick-dbg_6.6.9.7-5_amd64.deb
 534d1fab42882f17323f509cb89ab7e549e5a20d5c12116025df59933db663ab 112512 
imagemagick-common_6.6.9.7-5_all.deb
 aa057367e6707f4ea5e71c837a25d77db3b24e7daa7f365c780e4be089d99cba 5538046 
imagemagick-doc_6.6.9.7-5_all.deb
 b41a565773ccf6b1722337e89167b96ea1357d73185176cd78fadcec7198eb1d 1947660 
libmagickcore4_6.6.9.7-5_amd64.deb
 520af76c39f39c6b4c61d0c0238b132ba84f530fc6a0bfed52b676230f07c50b 124668 
libmagickcore4-extra_6.6.9.7-5_amd64.deb
 663c99331c636a9f9e754b4147ffb4b0b6ef52892ca6dc3f136e0ff24b9c640d 1295650 
libmagickcore-dev_6.6.9.7-5_amd64.deb
 8c6c2c22809d9e35f8b7b789a555e31362237c48a75fdd6d88a195bb84b656f1 442400 
libmagickwand4_6.6.9.7-5_amd64.deb
 c01e76d023086d5df72c5bb8e5ea14d01132f00a54490045c7be1b861f20d11e 524286 
libmagickwand-dev_6.6.9.7-5_amd64.deb
 bf38754edb68920fc100cd142a302a52637ca1d1061b0660318ba4e5f3834971 217602 
libmagick++4_6.6.9.7-5_amd64.deb
 330040a9e95d4e56203173596d819c1a8a2d8168b76570ecab67f016582af8bc 268790 
libmagick++-dev_6.6.9.7-5_amd64.deb
 1ec52c0e4415f08dd07363d1f801cce862e943d06c06dff56621c6b91cf8f821 248292 
perlmagick_6.6.9.7-5_amd64.deb
Files: 
 e1d4d5c303e2ee413e8897e5f83676fe 1964 graphics optional 
imagemagick_6.6.9.7-5.dsc
 4e9b39eafaf0955eba35d0ce520fec1a 40355 graphics optional 
imagemagick_6.6.9.7-5.debian.tar.bz2
 4154b145c612343b061aed0e6b2679d5 124432 graphics optional 
imagemagick_6.6.9.7-5_amd64.deb
 99ecfa87f03b37e70750e0c2b416caa2 4616488 debug extra 
imagemagick-dbg_6.6.9.7-5_amd64.deb
 fc0030efb422a7b1cf974ad39e0ca726 112512 graphics optional 
imagemagick-common_6.6.9.7-5_all.deb
 bbfa7d64ea2148c0786bcc2954c9be1e 5538046 doc optional 

Accepted rabbitmq-server 2.5.0-1 (source all)

2011-06-16 Thread jewel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 09:55:40 +0200
Source: rabbitmq-server
Binary: rabbitmq-server
Architecture: source all
Version: 2.5.0-1
Distribution: unstable
Urgency: low
Maintainer: RabbitMQ Team packag...@rabbitmq.com
Changed-By: je...@debian.org
Description: 
 rabbitmq-server - An AMQP server written in Erlang
Changes: 
 rabbitmq-server (2.5.0-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 d9f89e359e3b9c99a23e5dcc546a3e2e21ff2e98 1059 rabbitmq-server_2.5.0-1.dsc
 b816a9b96e7d7cf30696c195af6a693be58ae68c 328333 
rabbitmq-server_2.5.0.orig.tar.gz
 06b774575ae4c4f799d998152afb6a0b115f8575 15361 rabbitmq-server_2.5.0-1.diff.gz
 d3348ae7730268938ec84bb744b6507bc966f12b 1038806 
rabbitmq-server_2.5.0-1_all.deb
Checksums-Sha256: 
 c5ac27ced665670673956ba52fa4090ec58a3d1bfc5134f78df20addb5a31494 1059 
rabbitmq-server_2.5.0-1.dsc
 5e488e11c8ce9fb29f7a482012e6db30813d28641189e6f3597e0093e6569d4b 328333 
rabbitmq-server_2.5.0.orig.tar.gz
 44d62cc42616d43226711da863ce6827cb76bf64107e279f59ffc4aef0772e34 15361 
rabbitmq-server_2.5.0-1.diff.gz
 e22ba1620a117ccb03b1bac4aee111d603eafd7940ca2b264cdb07cca4eed134 1038806 
rabbitmq-server_2.5.0-1_all.deb
Files: 
 64d7b7d8aeb2a7d12c7bbd9f9c1d669c 1059 net extra rabbitmq-server_2.5.0-1.dsc
 b665ba003ab3f811b3053082fd006fa8 328333 net extra 
rabbitmq-server_2.5.0.orig.tar.gz
 889e7a589a58ffe1fb0ab42a425dabca 15361 net extra 
rabbitmq-server_2.5.0-1.diff.gz
 b1209a91a6d7723d1f547e974db7bede 1038806 net extra 
rabbitmq-server_2.5.0-1_all.deb

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

iD8DBQFN+blFXrnnKiKKOuQRAoMlAJ9kF5rC1YOLTfva12lehRSFMDNRyACeOtTn
bKoT0uv01H8sQZg9TVnyAvM=
=n4x5
-END PGP SIGNATURE-


Accepted:
rabbitmq-server_2.5.0-1.diff.gz
  to main/r/rabbitmq-server/rabbitmq-server_2.5.0-1.diff.gz
rabbitmq-server_2.5.0-1.dsc
  to main/r/rabbitmq-server/rabbitmq-server_2.5.0-1.dsc
rabbitmq-server_2.5.0-1_all.deb
  to main/r/rabbitmq-server/rabbitmq-server_2.5.0-1_all.deb
rabbitmq-server_2.5.0.orig.tar.gz
  to main/r/rabbitmq-server/rabbitmq-server_2.5.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qx8gj-00064o...@franck.debian.org



Accepted accountsservice 0.6.12-3 (source amd64)

2011-06-16 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 11:09:34 +0200
Source: accountsservice
Binary: accountsservice libaccountsservice0 libaccountsservice-dev 
gir1.2-accountservice-1.0
Architecture: source amd64
Version: 0.6.12-3
Distribution: unstable
Urgency: low
Maintainer: Alessio Treglia ales...@debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 accountsservice - query and manipulate user account information
 gir1.2-accountservice-1.0 - GObject introspection data for AccountService
 libaccountsservice-dev - query and manipulate user account information - 
header files
 libaccountsservice0 - query and manipulate user account information - shared 
libraries
Closes: 630577
Changes: 
 accountsservice (0.6.12-3) unstable; urgency=low
 .
   * Add accountsservice.{postinst,prerm} scripts to properly shut down
 the daemon on package upgrade and removal (Closes: #630577);
 thanks to Rodrigo Moya for the patch.
Checksums-Sha1: 
 ee8a58cd3ada3ae7521180679e887b969b02605b 1543 accountsservice_0.6.12-3.dsc
 a6f2451d5ed12ad84d9653100f56a44f7f21c7d9 9927 
accountsservice_0.6.12-3.debian.tar.gz
 901ea3003aa4f1eb6fb7ecb3251e63ca93cff35d 43662 
accountsservice_0.6.12-3_amd64.deb
 30df5d4f721da0a4a621fe95337abd9aa6c79a0e 29198 
libaccountsservice0_0.6.12-3_amd64.deb
 9ca11e2aac91c76ede03105c5e2dc051586030e6 10476 
libaccountsservice-dev_0.6.12-3_amd64.deb
 c5016faf1163b7068c587a1f0ecb544778bb6dbc 6966 
gir1.2-accountservice-1.0_0.6.12-3_amd64.deb
Checksums-Sha256: 
 9adcfdbb76745fbc75ba2cb0c3a416f633d56559e3060fdb835cc7cad05c9fec 1543 
accountsservice_0.6.12-3.dsc
 7b71f22447c34aec54468bf78fc920540e4699d1b23a7456b8a675a111c18ac4 9927 
accountsservice_0.6.12-3.debian.tar.gz
 1be9f6271ac1e2ef61191557eac543ef54cd24caf45e97bf0c04c4a71714d729 43662 
accountsservice_0.6.12-3_amd64.deb
 d6c5826a09fbc9d33b8cfc57c3642f4d1b75551e4885a769a501cd93d792da7f 29198 
libaccountsservice0_0.6.12-3_amd64.deb
 341dc8d500046082e3731b0e6fbd74e70a6927f95a943c2e2ba2662d91265056 10476 
libaccountsservice-dev_0.6.12-3_amd64.deb
 e0228d3af50e0851bfaf66a8c94e530fb4e53a22fbab5d031179f55bd3e2c142 6966 
gir1.2-accountservice-1.0_0.6.12-3_amd64.deb
Files: 
 317d55ed950cb6605f05f41abaac2b7c 1543 admin optional 
accountsservice_0.6.12-3.dsc
 60d5bcd95e4ad6077a55f9767b15cd12 9927 admin optional 
accountsservice_0.6.12-3.debian.tar.gz
 42d4d35e61396eb1d52312c2e6cee8b1 43662 admin optional 
accountsservice_0.6.12-3_amd64.deb
 4f02fbd8fef9706f9f141dee492fdc5a 29198 libs optional 
libaccountsservice0_0.6.12-3_amd64.deb
 9a9135f629fbb52bab8268c96d846326 10476 libdevel optional 
libaccountsservice-dev_0.6.12-3_amd64.deb
 47f452aa5d92a76814226b6c4782c291 6966 libs optional 
gir1.2-accountservice-1.0_0.6.12-3_amd64.deb

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

iEYEARECAAYFAk35zMsACgkQRdSMfNz8P9DbMwCeNQg8NuvVGZBe7jccXL0WnYZr
+vMAn1KUAZvPto9r0YDoeT7fy/tXGidZ
=Jd5z
-END PGP SIGNATURE-


Accepted:
accountsservice_0.6.12-3.debian.tar.gz
  to main/a/accountsservice/accountsservice_0.6.12-3.debian.tar.gz
accountsservice_0.6.12-3.dsc
  to main/a/accountsservice/accountsservice_0.6.12-3.dsc
accountsservice_0.6.12-3_amd64.deb
  to main/a/accountsservice/accountsservice_0.6.12-3_amd64.deb
gir1.2-accountservice-1.0_0.6.12-3_amd64.deb
  to main/a/accountsservice/gir1.2-accountservice-1.0_0.6.12-3_amd64.deb
libaccountsservice-dev_0.6.12-3_amd64.deb
  to main/a/accountsservice/libaccountsservice-dev_0.6.12-3_amd64.deb
libaccountsservice0_0.6.12-3_amd64.deb
  to main/a/accountsservice/libaccountsservice0_0.6.12-3_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qx9an-0002ae...@franck.debian.org



Accepted josm 0.0.svn4064-3 (source all)

2011-06-16 Thread Giovanni Mascellani
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 16 Jun 2011 11:12:33 +0200
Source: josm
Binary: josm
Architecture: source all
Version: 0.0.svn4064-3
Distribution: unstable
Urgency: low
Maintainer: Debian OpenStreetMap Team pkg-osm-ma...@lists.alioth.debian.org
Changed-By: Giovanni Mascellani g...@debian.org
Description: 
 josm   - Editor for OpenStreetMap
Closes: 630561
Changes: 
 josm (0.0.svn4064-3) unstable; urgency=low
 .
   * Build-Depend on default-jdk, that is used for compilation (closes:
 #630561).
Checksums-Sha1: 
 994d234e4994162ae79aeaa25175427bd3a8a20f 1622 josm_0.0.svn4064-3.dsc
 b371c943dfffdeebb9f7672c391ad256c92d712a 22682 josm_0.0.svn4064-3.debian.tar.gz
 f48d226c6aeccc4d5ab4e7fe9ffcad1b3d4b1b9d 5768248 josm_0.0.svn4064-3_all.deb
Checksums-Sha256: 
 84aae0be5360707529423cbf76c53189cdc226ac13e558c8b501de7bc86376ca 1622 
josm_0.0.svn4064-3.dsc
 9ed4eb5f6552fc907b3cd75b938778c9c74a062e80f15a321389bec628fe43a4 22682 
josm_0.0.svn4064-3.debian.tar.gz
 b329e68e23bfe900d91048ebe9c604a209cc29aeaadeea21c7fb06781963a399 5768248 
josm_0.0.svn4064-3_all.deb
Files: 
 106f6ca840012e034dcba0d8f639b94b 1622 utils extra josm_0.0.svn4064-3.dsc
 3d3064700ab49c2051a436a9820daee9 22682 utils extra 
josm_0.0.svn4064-3.debian.tar.gz
 6b92b1332d02e582156d3140611d 5768248 utils extra josm_0.0.svn4064-3_all.deb

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

iF4EAREKAAYFAk350KgACgkQBIoTAU7n/+Pd2AD7BEwZ/knJofye4H5a0RuxCSs7
GdqJW6IodenbxfDMvZEA/0mDht/Ox6UvRZHTPUDn6rFnoptDemd0qR7c9hhfine7
=VPzz
-END PGP SIGNATURE-


Accepted:
josm_0.0.svn4064-3.debian.tar.gz
  to main/j/josm/josm_0.0.svn4064-3.debian.tar.gz
josm_0.0.svn4064-3.dsc
  to main/j/josm/josm_0.0.svn4064-3.dsc
josm_0.0.svn4064-3_all.deb
  to main/j/josm/josm_0.0.svn4064-3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qx9pn-0003z6...@franck.debian.org



Accepted acovea 5.1.1-2.1 (source i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 11:51:37 +0200
Source: acovea
Binary: libacovea-5.1-5 libacovea-dev acovea
Architecture: source i386
Version: 5.1.1-2.1
Distribution: unstable
Urgency: medium
Maintainer: Al Stone a...@debian.org
Changed-By: Luk Claes l...@debian.org
Description: 
 acovea - analysis of compiler options via evolutionary algorithms
 libacovea-5.1-5 - library for analyzing compiler options via evolutionary 
algorithm
 libacovea-dev - library for analyzing compiler options via evolutionary 
algorithm
Closes: 621147 625078
Changes: 
 acovea (5.1.1-2.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Closes: bug#625078: Add sys.stat.h to fix FTBFS.
   * Closes: bug#621147: Don't ship .la files.
   * Update build dependency to libpng-dev.
Checksums-Sha1: 
 61cacbaa40cadc562b579f267edad8bfca43e61f 1046 acovea_5.1.1-2.1.dsc
 954c9d4db34e966afb2e0265bdae6db9f5d6c064 122991 acovea_5.1.1-2.1.diff.gz
 17ffaa583b05b46861d00fad2e79fc8eea968151 97004 
libacovea-5.1-5_5.1.1-2.1_i386.deb
 81a7360eb79f47f18cf05ad1f93e7acef155d745 66726 libacovea-dev_5.1.1-2.1_i386.deb
 71f5ac90516a8a79291841378b9fd1445bb06f2b 105818 acovea_5.1.1-2.1_i386.deb
Checksums-Sha256: 
 c0de537ec3fcc0214ff4ff6e3d575b3af60e1fa597c752013d440844da8b2ba6 1046 
acovea_5.1.1-2.1.dsc
 0354be1cd21fd2bfed611df2de2acd622c4dd92a8d188da3591f878219d32564 122991 
acovea_5.1.1-2.1.diff.gz
 850e390bd9133639f7c7fe6617ff228f3aecda35e3be7c6a6fa1ed5108f265f8 97004 
libacovea-5.1-5_5.1.1-2.1_i386.deb
 bfc59363ccfa1b333cf4b6c58eafe27aa733b454b76cb7f8765a57a25118b5b1 66726 
libacovea-dev_5.1.1-2.1_i386.deb
 ba46e8e05145d0b081359957cfa36396d042024b5742989e631650222d89ad23 105818 
acovea_5.1.1-2.1_i386.deb
Files: 
 ac774b15c34ad2a0691ba70a67c8915f 1046 devel optional acovea_5.1.1-2.1.dsc
 d077b7e8675aec92668a7587eb70e74f 122991 devel optional acovea_5.1.1-2.1.diff.gz
 91643c261b50c08db6717f5146afc484 97004 libs optional 
libacovea-5.1-5_5.1.1-2.1_i386.deb
 66441e7e50e3fd39f3abea7beaf18db9 66726 devel optional 
libacovea-dev_5.1.1-2.1_i386.deb
 dd5419897378954d81c65f9ede4faf47 105818 devel optional 
acovea_5.1.1-2.1_i386.deb

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

iEYEARECAAYFAk3zPBkACgkQ5UTeB5t8Mo1JogCgvDit5ApBAn4UtPL5ts76Vo1/
mdUAn0OluDY0nMEvyvD9TEUvUyzJ8Ecc
=QKXD
-END PGP SIGNATURE-


Accepted:
acovea_5.1.1-2.1.diff.gz
  to main/a/acovea/acovea_5.1.1-2.1.diff.gz
acovea_5.1.1-2.1.dsc
  to main/a/acovea/acovea_5.1.1-2.1.dsc
acovea_5.1.1-2.1_i386.deb
  to main/a/acovea/acovea_5.1.1-2.1_i386.deb
libacovea-5.1-5_5.1.1-2.1_i386.deb
  to main/a/acovea/libacovea-5.1-5_5.1.1-2.1_i386.deb
libacovea-dev_5.1.1-2.1_i386.deb
  to main/a/acovea/libacovea-dev_5.1.1-2.1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qx9s6-000594...@franck.debian.org



Accepted zsh 4.3.12-1 (source all amd64)

2011-06-16 Thread Axel Beckert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 02:02:04 +0200
Source: zsh
Binary: zsh zsh-doc zsh-static zsh-dev zsh-dbg
Architecture: source all amd64
Version: 4.3.12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Zsh Maintainers pkg-zsh-de...@lists.alioth.debian.org
Changed-By: Axel Beckert a...@debian.org
Description: 
 zsh- shell with lots of features
 zsh-dbg- shell with lots of features (debugging symbols)
 zsh-dev- shell with lots of features (development files)
 zsh-doc- zsh documentation - info/HTML format
 zsh-static - shell with lots of features (static link)
Closes: 620452 627046
Changes: 
 zsh (4.3.12-1) unstable; urgency=low
 .
   [ Frank Terbeck ]
   * New upstream release
 - Fixes typo in make-kpkg completion (Closes: #627046)
   * [b495ba1e] Removing upstream patches due to new release
   * [f575f568] Add urcl script for changelog updates at upstream releases
   * [8bcd117f] at2quilt: Updating autotools patches
   * [bf0a44a8] Enable additional $fpath entries for add-ons from other
 packages (Closes: #620452)
   * [b52c798e] Add do-dch script for convenience
   * [0ffda0fa] workflow.org: Fix structure
   * [b70d6102] Workflow updates
   * [250d8bd4] rules: system.h was renamed to zsh_system.h
 .
   [ Axel Beckert ]
   * [94e182d5] Bump Standards-Version to 3.9.2 (no changes)
   * [72c39771] debian/watch: Prefer .tar.bz2 over .tar.gz
   * [71716e7f] Add Frank Terbeck to Uploaders, so Lintian doesn't regard
 his changelog entries as NMUs
   * Fixed some issues reported by Lintian:
 - [30777d4c] binary-control-field-duplicates-source
 - [6629343a, 00e23c14] maintainer-script-without-set-e
 - [4cbb6b9f] description-synopsis-starts-with-article
   * [ff82f833] Override Lintian warnings about statically linked stuff in
 zsh-static
   * [7096bf4f] debian/source/options: Ignore Util/difflog.pl, configure
 and config.h.in for patch generation
   * [0882d862] Abort package build in case of unexpected changes to
 upstream code
Checksums-Sha1: 
 c182a60240aca072884df21d1aa77721544b162c 1474 zsh_4.3.12-1.dsc
 8fd7a6d841770c8b12cf3ae8229dd857ecdbad93 2917959 zsh_4.3.12.orig.tar.bz2
 1f3748331e958e03f5ff11f82891aa29436bd552 147005 zsh_4.3.12-1.debian.tar.gz
 05e79b529f3f1bb55e7fe3dbf942edad49b38952 2573412 zsh-doc_4.3.12-1_all.deb
 c49e4b90c92bc030fa85d95c47e9a9099af5724d 4776544 zsh_4.3.12-1_amd64.deb
 0ec7bbc1b1caa4ef0186ff171845bd87cdbbf905 1254526 zsh-dbg_4.3.12-1_amd64.deb
 6b46ea8bb8f543d92959b2c9eac7ff6f5f411012 1007322 zsh-static_4.3.12-1_amd64.deb
 db704e62a54cc48cbb180e8bfb6ab336272d7258 83288 zsh-dev_4.3.12-1_amd64.deb
Checksums-Sha256: 
 df8fccdd06bdc7f7b5c2cfaeaea57f073de6f46aafca36833594cdd9c46f14fb 1474 
zsh_4.3.12-1.dsc
 4a9fd2dac76fc08fd1dc400deba854fcefa12ad76226d93fb6c01a801324f106 2917959 
zsh_4.3.12.orig.tar.bz2
 f3fc1bebee9f7c94f87f7365a685eee8f430434f4d0daa0a5f15ec0ff6e72cc4 147005 
zsh_4.3.12-1.debian.tar.gz
 6b6df84d39c29ae6e9cda696df15e7a4520e45dd87f227847921c3182546399e 2573412 
zsh-doc_4.3.12-1_all.deb
 1e7ada66a0853fec91305128f2c0a89fe84eb6b84889da2092d2a44cd06af840 4776544 
zsh_4.3.12-1_amd64.deb
 aca7054bbb367756657188a34c514d66234a1b6c41b2986b547028afdc9ed57e 1254526 
zsh-dbg_4.3.12-1_amd64.deb
 ee496986ceed7a022c3e684eff3bfec7a264595fb05c21d023bb12aedcb09add 1007322 
zsh-static_4.3.12-1_amd64.deb
 1a4c5c14b549ed4737cf88e4d42527a9c56adf962bfaee3a8f239629369f8a97 83288 
zsh-dev_4.3.12-1_amd64.deb
Files: 
 63f7c6ee21f60a306a15bca8ebb4c352 1474 shells optional zsh_4.3.12-1.dsc
 7a82c0bf0635e046ca4e9ec1bdef3811 2917959 shells optional 
zsh_4.3.12.orig.tar.bz2
 29e3a31274b2aa49bf54b31bd626ff3d 147005 shells optional 
zsh_4.3.12-1.debian.tar.gz
 17056b4bf6688172180baa02ed70c886 2573412 doc optional zsh-doc_4.3.12-1_all.deb
 a74ced1c956d53e2a99aa6b8ddc81818 4776544 shells optional zsh_4.3.12-1_amd64.deb
 6ba7d26d38a09ff18216d564ed9741eb 1254526 debug extra zsh-dbg_4.3.12-1_amd64.deb
 4bf137db3c37f695edba5fd0e745dfce 1007322 shells optional 
zsh-static_4.3.12-1_amd64.deb
 3207b025e08023adb4af2cd808ce5166 83288 libdevel optional 
zsh-dev_4.3.12-1_amd64.deb

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

iEYEARECAAYFAk351QMACgkQwJ4diZWTDt5C/gCdF90iTRM6T1ELQ4jwttZd8pfm
ES8An2XI0G5kUlzYGkkVozA6pNeyJ08I
=qpof
-END PGP SIGNATURE-


Accepted:
zsh-dbg_4.3.12-1_amd64.deb
  to main/z/zsh/zsh-dbg_4.3.12-1_amd64.deb
zsh-dev_4.3.12-1_amd64.deb
  to main/z/zsh/zsh-dev_4.3.12-1_amd64.deb
zsh-doc_4.3.12-1_all.deb
  to main/z/zsh/zsh-doc_4.3.12-1_all.deb
zsh-static_4.3.12-1_amd64.deb
  to main/z/zsh/zsh-static_4.3.12-1_amd64.deb
zsh_4.3.12-1.debian.tar.gz
  to main/z/zsh/zsh_4.3.12-1.debian.tar.gz
zsh_4.3.12-1.dsc
  to main/z/zsh/zsh_4.3.12-1.dsc
zsh_4.3.12-1_amd64.deb
  to main/z/zsh/zsh_4.3.12-1_amd64.deb
zsh_4.3.12.orig.tar.bz2
  to main/z/zsh/zsh_4.3.12.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of 

Accepted gerbv 2.4.0-1.1 (source i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 12:17:52 +0200
Source: gerbv
Binary: gerbv
Architecture: source i386
Version: 2.4.0-1.1
Distribution: unstable
Urgency: medium
Maintainer: Debian Electronics Team 
pkg-electronics-de...@lists.alioth.debian.org
Changed-By: Luk Claes l...@debian.org
Description: 
 gerbv  - Gerber file viewer for PCB design
Closes: 554484 621154
Changes: 
 gerbv (2.4.0-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Set LDFLAGS to -ldl (Closes: #554484).
   * Don't ship .la files (Closes: #621154).
Checksums-Sha1: 
 d0fa370d61dc2ba07af7e0b917326e6d6f542371 1237 gerbv_2.4.0-1.1.dsc
 49d6c70eebf1760ab364fe434f1486c89c035ef1 5124 gerbv_2.4.0-1.1.diff.gz
 955c945b502cad04e2b4afe1b43bfffd4f44ef37 1205004 gerbv_2.4.0-1.1_i386.deb
Checksums-Sha256: 
 06dd8f7309f3fbf817c227c7ca50bb04f27867f72616fa39d32eba471587be52 1237 
gerbv_2.4.0-1.1.dsc
 f31f5a3a88c8806efcc65ad273b7ac689600e1ffe5ad14d10ebd7ecaf11a003d 5124 
gerbv_2.4.0-1.1.diff.gz
 cf46c99982d5710704f024f5a5abdd1d3fed3c621250d67a9429d6c3fbf90fa4 1205004 
gerbv_2.4.0-1.1_i386.deb
Files: 
 697c9f939209fb88550faac7daf5132a 1237 electronics optional gerbv_2.4.0-1.1.dsc
 9ebdd400e880303427681b18d443708d 5124 electronics optional 
gerbv_2.4.0-1.1.diff.gz
 3729fd0ff59bd2953ca3c1d14c3c1cb7 1205004 electronics optional 
gerbv_2.4.0-1.1_i386.deb

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

iEYEARECAAYFAk3zQwUACgkQ5UTeB5t8Mo0ZjgCgo9G42MQqTCsgMXX3i2msCWLy
n5UAn1VkvsbHM/ep6VuyW76II08xdCqR
=/imn
-END PGP SIGNATURE-


Accepted:
gerbv_2.4.0-1.1.diff.gz
  to main/g/gerbv/gerbv_2.4.0-1.1.diff.gz
gerbv_2.4.0-1.1.dsc
  to main/g/gerbv/gerbv_2.4.0-1.1.dsc
gerbv_2.4.0-1.1_i386.deb
  to main/g/gerbv/gerbv_2.4.0-1.1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxalm-0002yu...@franck.debian.org



Accepted openvpn 2.2.0-2 (source i386)

2011-06-16 Thread Alberto Gonzalez Iniesta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 15 Jun 2011 12:28:15 +0200
Source: openvpn
Binary: openvpn
Architecture: source i386
Version: 2.2.0-2
Distribution: unstable
Urgency: low
Maintainer: Alberto Gonzalez Iniesta a...@inittab.org
Changed-By: Alberto Gonzalez Iniesta a...@inittab.org
Description: 
 openvpn- virtual private network daemon
Changes: 
 openvpn (2.2.0-2) unstable; urgency=low
 .
   * Upload to unstable
   * debian/control: added Homepage field
   * Added debian/watch file
   * debian/patches: Added descriptions/authors/etc. to patches
Checksums-Sha1: 
 a6a4f8c2243f47f6765d14ec51fb520271aedbc7 1100 openvpn_2.2.0-2.dsc
 4110a4358f1af642b47c0cb155ad68064d42eed1 316261 openvpn_2.2.0-2.debian.tar.gz
 f3de8f3a201fa1b9409b3eeb93294b7dde6d75b1 485500 openvpn_2.2.0-2_i386.deb
Checksums-Sha256: 
 12fc86df9cfa4d7838f6f511ed3943212d341bbdaa1b369939cc1bb3ba97 1100 
openvpn_2.2.0-2.dsc
 30cb71c2131c886cdb0b1da8402f0c2ac553737fbabef2c6fb54ab5ec056ba6c 316261 
openvpn_2.2.0-2.debian.tar.gz
 a7ff0bdf9074cd0c62bff7f2765e1cb9627de626c4d9abe355ae693910ce484a 485500 
openvpn_2.2.0-2_i386.deb
Files: 
 4ad92d097ac82e6e21c654a45323463e 1100 net optional openvpn_2.2.0-2.dsc
 7107f9a57baf3c7a3375e7e19d3bfe6e 316261 net optional 
openvpn_2.2.0-2.debian.tar.gz
 5e211f18def2a1960550aa249a6298b0 485500 net optional openvpn_2.2.0-2_i386.deb

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

iEYEARECAAYFAk355WMACgkQxRSvjkukAcPORQCg0r1wDyiXAx9w2FWGGUQIUORU
TcoAoMvds+ogpvuklrz0Gr9gKqy/H3l/
=GHJL
-END PGP SIGNATURE-


Accepted:
openvpn_2.2.0-2.debian.tar.gz
  to main/o/openvpn/openvpn_2.2.0-2.debian.tar.gz
openvpn_2.2.0-2.dsc
  to main/o/openvpn/openvpn_2.2.0-2.dsc
openvpn_2.2.0-2_i386.deb
  to main/o/openvpn/openvpn_2.2.0-2_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxb3o-0001s2...@franck.debian.org



Accepted phoronix-test-suite 3.2.0-1 (source all)

2011-06-16 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 13:34:00 +0200
Source: phoronix-test-suite
Binary: phoronix-test-suite
Architecture: source all
Version: 3.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Alessio Treglia ales...@debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 phoronix-test-suite - a comprehensive testing and benchmarking platform
Changes: 
 phoronix-test-suite (3.2.0-1) unstable; urgency=low
 .
   * New upstream release.
   * Update debian/copyright, repack is no longer needed.
Checksums-Sha1: 
 156d254056582ebe8d2f7af48d4ca0af0759fce4 1301 phoronix-test-suite_3.2.0-1.dsc
 3d88ea41fa10e458bd7aefc7a7c430a32c7da272 398351 
phoronix-test-suite_3.2.0.orig.tar.gz
 41d71be953b50b741ee87ee5d79bae514b0d0d3c 3146 
phoronix-test-suite_3.2.0-1.debian.tar.gz
 afaa94c8981b417bf8f4f847f0aae513e22f55d7 408368 
phoronix-test-suite_3.2.0-1_all.deb
Checksums-Sha256: 
 a86d591ad7d54ca844a8dc3666a8d10010c33fa6fccea6834674f553bb5c4c7a 1301 
phoronix-test-suite_3.2.0-1.dsc
 216cd1a5f93f2c164a15c459d41062ddf620e463154223a345f193ad6b5e3a0f 398351 
phoronix-test-suite_3.2.0.orig.tar.gz
 c207713365e0cf569926f0c6755d8d414e61ec9c87b6879651ab15084765 3146 
phoronix-test-suite_3.2.0-1.debian.tar.gz
 15c79d5b3b2199c9b3713826c8be4f6dc6da78d1cb598cd0989b6811a655a1ec 408368 
phoronix-test-suite_3.2.0-1_all.deb
Files: 
 40bcdf48a8b9ebea00f177df7f424244 1301 utils optional 
phoronix-test-suite_3.2.0-1.dsc
 a4cc8689289d250147b564263ca535a6 398351 utils optional 
phoronix-test-suite_3.2.0.orig.tar.gz
 3672e806a77f7d29392053243a7ba3b5 3146 utils optional 
phoronix-test-suite_3.2.0-1.debian.tar.gz
 7749c04762d0cea7efbf3f98f9972ed9 408368 libs optional 
phoronix-test-suite_3.2.0-1_all.deb

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

iEYEARECAAYFAk356woACgkQRdSMfNz8P9DyNACfZuNSP3hIqR7jxfywehmLKt1N
dvwAn05iEdsH8BKF3XN40rly1q5PDwOw
=xBQ9
-END PGP SIGNATURE-


Accepted:
phoronix-test-suite_3.2.0-1.debian.tar.gz
  to main/p/phoronix-test-suite/phoronix-test-suite_3.2.0-1.debian.tar.gz
phoronix-test-suite_3.2.0-1.dsc
  to main/p/phoronix-test-suite/phoronix-test-suite_3.2.0-1.dsc
phoronix-test-suite_3.2.0-1_all.deb
  to main/p/phoronix-test-suite/phoronix-test-suite_3.2.0-1_all.deb
phoronix-test-suite_3.2.0.orig.tar.gz
  to main/p/phoronix-test-suite/phoronix-test-suite_3.2.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxb3a-0001ux...@franck.debian.org



Accepted python-distutils-extra 2.28-1 (source all)

2011-06-16 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 13:39:30 +0200
Source: python-distutils-extra
Binary: python-distutils-extra python3-distutils-extra
Architecture: source all
Version: 2.28-1
Distribution: unstable
Urgency: medium
Maintainer: Martin Pitt mp...@debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 python-distutils-extra - enhancements to the Python build system
 python3-distutils-extra - enhancements to the Python3 build system
Changes: 
 python-distutils-extra (2.28-1) unstable; urgency=medium
 .
   * Urgency medium as this fixes a nasty regression from 2.27 which causes
 some packages to FTBFS.
   * debian/local/python-mkdebian{,.1}: Change --force-control from a binary to
 a ternary option with modes none (don't touch it at all), deps (only
 update dependencies; old and new default behaviour), and full (always
 regenerate it). Update the manpage accordingly. Thanks to Jordan Mantha
 for the patch!
   * test/auto.py: Add test for a local module which raises an exception
 (replicates the current xdiagnose FTBFS), and a local module which runs
 optparse on import (replicates the current onboard bzr head FTBFS).
   * auto.py, __external_mod(): Put back the early decision for locally
 provided modules based on their name, without importing them. Running
 __import__ is dangerous in some cases like the above two, but
 unfortunately necessary to fully determine relative imports. This is still
 not quite perfect, as it will fail the same way if externally provided
 modules do dangerous things on mere imports, but at least fixes the
 regression from r248 (release 2.27). (See LP #746565)
Checksums-Sha1: 
 842ad22428208d12255a4974ec0285ac64ac80fb 2182 python-distutils-extra_2.28-1.dsc
 c891fa7ff1b2a5bab60ff24e686eeef6365e159b 26669 
python-distutils-extra_2.28.orig.tar.gz
 e27465dafef1c9cdd31183bd22689d64bf467a94 14592 
python-distutils-extra_2.28-1.debian.tar.gz
 c3e0be66303890d4e0a6a8c94cede863a572bacf 30910 
python-distutils-extra_2.28-1_all.deb
 28407fee7545df80227abe0430e7ee5d65c12e0e 22642 
python3-distutils-extra_2.28-1_all.deb
Checksums-Sha256: 
 ed16a5e08da6c13bd8d2e6170ca52dce872656fe49c9a2927a090e138b8c8f85 2182 
python-distutils-extra_2.28-1.dsc
 8c3f848a793573281949aac999371cb8fdadcc84f59d6f0bcc1d9328ab986b5f 26669 
python-distutils-extra_2.28.orig.tar.gz
 19ac396a96ad1fd6b474c3d463c193de5c490fa5b322fd77b8f8dd3ddab6a11d 14592 
python-distutils-extra_2.28-1.debian.tar.gz
 61806026145abe7d1d3efc2cb217e69aa17ed24606ceb3df3f76ce10ba0798f1 30910 
python-distutils-extra_2.28-1_all.deb
 5be3179ff8e2ecb5bd9f4f8a86d81f5047bf0c74b7bee7c2a38ac6d6199aaa86 22642 
python3-distutils-extra_2.28-1_all.deb
Files: 
 f737749b5c40eb90445e4a4642ed3104 2182 python optional 
python-distutils-extra_2.28-1.dsc
 6f4bd56233161fe8ce29a1b344f99da6 26669 python optional 
python-distutils-extra_2.28.orig.tar.gz
 c16e455a328e0c398a8b9fea4ca0dfde 14592 python optional 
python-distutils-extra_2.28-1.debian.tar.gz
 545fba832dde6dec07b5baf1a566b90d 30910 python optional 
python-distutils-extra_2.28-1_all.deb
 949317ceca8f350e7ffcb0a88cc29e46 22642 python optional 
python3-distutils-extra_2.28-1_all.deb

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

iQIcBAEBCAAGBQJN+exKAAoJEPmIJawmtHufhfMP/1iqaaN9KNqoSDUhzSD+sHW1
NpD0dvgLLcOGfH3qv1MQOG55lmq0IiWkSvysBI62i+BRdLJszy8m6Z3lDRArqum4
zJJzr9sfmryl4/QARxHP++ucPBIHtfh9x57K/j1X9VI1i51cWb+o9Bim1olnFZ5+
mUd11LeZ0MWdlTuVAlEYRZDDf0I6JyIV6QUOKvo1HIov7tF/4HDBlnX9ZS/svDgN
O1s4z9AXxxlY+B7E15eCSYayEW8ZrKP69hFGPK8wMuyyi4jIHgSPpmE11moAXEYo
1NWC64o8tNTxWAnkuo8lfuZM/k7JTBUg3UkJ3V/rMxWb969p9lTDApcbNUp7NAPb
+Njm7bBMCGbK8twyrzefmKynOT40BaNd5h/IZE6xU6pQqD47Fi84EvkghNBZ
9XnyXNblGULhMxKTE1O6lg+jL5ik7QCLAbS/uEw/e1eZR+1HSXTx6T1HWr2apEyK
VaxxDMSchVmYwwfq2w6u8NiaqLANDxGsTHmWk3M7hiiqBhp6aSPuM80p3yLWQ19d
XtY6RT4eXUjwFFuThxPzh7gttkjK3u4+7MmD36T01qsyiPfFytG28Pn2IOgFyG4z
em23ffzsigRDO7YyeGBZLojl2Uwxbn7xFV9M21LwdAR6kMocUxSN/RkWvmobpyFd
yKXu9d9eB0VLOWNvkZ/C
=3UkR
-END PGP SIGNATURE-


Accepted:
python-distutils-extra_2.28-1.debian.tar.gz
  to main/p/python-distutils-extra/python-distutils-extra_2.28-1.debian.tar.gz
python-distutils-extra_2.28-1.dsc
  to main/p/python-distutils-extra/python-distutils-extra_2.28-1.dsc
python-distutils-extra_2.28-1_all.deb
  to main/p/python-distutils-extra/python-distutils-extra_2.28-1_all.deb
python-distutils-extra_2.28.orig.tar.gz
  to main/p/python-distutils-extra/python-distutils-extra_2.28.orig.tar.gz
python3-distutils-extra_2.28-1_all.deb
  to main/p/python-distutils-extra/python3-distutils-extra_2.28-1_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxb47-00020f...@franck.debian.org



Accepted gmidimonitor 3.6-1 (source amd64)

2011-06-16 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 13:45:35 +0200
Source: gmidimonitor
Binary: gmidimonitor
Architecture: source amd64
Version: 3.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 gmidimonitor - GTK+ application that shows MIDI events
Changes: 
 gmidimonitor (3.6-1) unstable; urgency=low
 .
   * New upstream release:
 - switch from glade to gtkbuilder (Alessio Treglia)
 - fix transient of the about window (Nedko Arnaudov)
Checksums-Sha1: 
 30f48a627dbecd60828e0eda280a4c09bd48111b 1378 gmidimonitor_3.6-1.dsc
 6e5c9e459413f313db2090730eac788a76e1c607 122736 gmidimonitor_3.6.orig.tar.bz2
 4170d1ad39b8b7b5d199a2b04ca74027582c4fa6 3572 gmidimonitor_3.6-1.debian.tar.gz
 42d54adb55624b1f6fec2fddfa3e3d1800040e25 30018 gmidimonitor_3.6-1_amd64.deb
Checksums-Sha256: 
 e65f97d5ad85f644fce39192a425707337397314b1d80eea8e4f9dbc25a42df5 1378 
gmidimonitor_3.6-1.dsc
 941a8d19dc3b743e152fbaa44f0387d2c9d49b8fd17a6fa06f7155fdb4ec6a31 122736 
gmidimonitor_3.6.orig.tar.bz2
 6b56a4e4f402405d3c33a84aad83d0f57c01e17cbf1a01b2a1fdff34607c9778 3572 
gmidimonitor_3.6-1.debian.tar.gz
 44b9d86a4f3216e201fc124d65e270691b662a350459d4a045f959bf448f41b5 30018 
gmidimonitor_3.6-1_amd64.deb
Files: 
 24eb5c515a348f1ec6180f06f85def53 1378 sound extra gmidimonitor_3.6-1.dsc
 49733d81529cfaed1f7409cfe67b0398 122736 sound extra 
gmidimonitor_3.6.orig.tar.bz2
 55b86caea25c5f99952fc667977bb73f 3572 sound extra 
gmidimonitor_3.6-1.debian.tar.gz
 ab39fb1fad3ad95b793da4e839801b77 30018 sound extra gmidimonitor_3.6-1_amd64.deb

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

iEYEARECAAYFAk357dcACgkQRdSMfNz8P9BhEgCdFL3cUkUBiJ35zEVKxlXB2RGY
B5wAmgPJthnEC5IGnmtNCJTcb7pFY4s3
=IIDQ
-END PGP SIGNATURE-


Accepted:
gmidimonitor_3.6-1.debian.tar.gz
  to main/g/gmidimonitor/gmidimonitor_3.6-1.debian.tar.gz
gmidimonitor_3.6-1.dsc
  to main/g/gmidimonitor/gmidimonitor_3.6-1.dsc
gmidimonitor_3.6-1_amd64.deb
  to main/g/gmidimonitor/gmidimonitor_3.6-1_amd64.deb
gmidimonitor_3.6.orig.tar.bz2
  to main/g/gmidimonitor/gmidimonitor_3.6.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxbhf-0003d2...@franck.debian.org



Accepted qjson 0.7.1-3 (source all amd64)

2011-06-16 Thread Lisandro Damián Nicanor Pérez Meyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 09:28:12 -0300
Source: qjson
Binary: libqjson0 libqjson-dev libqjson-dbg libqjson0-dbg
Architecture: source amd64 all
Version: 0.7.1-3
Distribution: unstable
Urgency: low
Maintainer: Lisandro Damián Nicanor Pérez Meyer perezme...@gmail.com
Changed-By: Lisandro Damián Nicanor Pérez Meyer perezme...@gmail.com
Description: 
 libqjson-dbg - qt-based library that maps JSON data to QVariant objects, debug 
i
 libqjson-dev - qt-based library that maps JSON data to QVariant objects - 
develo
 libqjson0  - qt-based library that maps JSON data to QVariant objects
 libqjson0-dbg - trasitional dummy package for qjson's debugging symbols
Changes: 
 qjson (0.7.1-3) unstable; urgency=low
 .
   * Fix watch file. Thanks José Manuel Santamaría Lema for the pointer.
   * Remember to install CMake's config files. Thanks Felix Geyer.
Checksums-Sha1: 
 51e2627af884128ec09a301cbdf0da4ee865cc5a 1814 qjson_0.7.1-3.dsc
 bdf7edfea084b6983deab69a1b492132bf7b0b2d 6128 qjson_0.7.1-3.debian.tar.gz
 de0a9bfb0723679465b3d352eac54c476ec3650a 59542 libqjson0_0.7.1-3_amd64.deb
 f255609e4127a8ee2c10a8009cb4042f70384a2a 7758 libqjson-dev_0.7.1-3_amd64.deb
 997588703ae662b2e5e81eae147c39f3c0880427 506304 libqjson-dbg_0.7.1-3_amd64.deb
 24815f006849ac54c0892f49519493282fd93dc8 3254 libqjson0-dbg_0.7.1-3_all.deb
Checksums-Sha256: 
 a8b1776bc96f39ea84fbcf99defa1a6d8c871bd90cf8a1adc155edd47014a91d 1814 
qjson_0.7.1-3.dsc
 efa6b6b349088f32bb58bfdb7a25e3d3e9e78abaf38825d6e3d3110fe6f1612a 6128 
qjson_0.7.1-3.debian.tar.gz
 411a773ae3fba6de663c874915f0e6f46dae62219b01ae908b4c0a91bb7189ca 59542 
libqjson0_0.7.1-3_amd64.deb
 3b05bc35de35035c57fe387f908a8889fe56c7699c802db111ab365e075dbe89 7758 
libqjson-dev_0.7.1-3_amd64.deb
 93f83b402a9f129e3f9d68303a89fc37369ccdbc980656778b89f52f7e00f69e 506304 
libqjson-dbg_0.7.1-3_amd64.deb
 efc192340f9d858ca12008a731b89c654d723060ee6c9936c572fe054a5f6ff3 3254 
libqjson0-dbg_0.7.1-3_all.deb
Files: 
 80a4319f9349e8098206afa51277d1f0 1814 libs extra qjson_0.7.1-3.dsc
 de9f41f9e324685619fd9155f519bdba 6128 libs extra qjson_0.7.1-3.debian.tar.gz
 2296b85e1c7753d2c5cfebd5040354ef 59542 libs extra libqjson0_0.7.1-3_amd64.deb
 7a5327d6690f578bb802e02ffcd247a2 7758 libdevel extra 
libqjson-dev_0.7.1-3_amd64.deb
 dedc83176f6d40d1cfdbf164fc89ec4c 506304 debug extra 
libqjson-dbg_0.7.1-3_amd64.deb
 b20eca8c7abd1321d89d16d7c52d731b 3254 oldlibs extra 
libqjson0-dbg_0.7.1-3_all.deb

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

iQIcBAEBCAAGBQJN+fk/AAoJEKtkX0BihqfQQ1QP/2y4SU6CdZipNnSbxy/0njdl
Hn6i4XIyW+SzfRu9eNbbkYYGm5BxyIhLbCobNUf9+kyFiNNW55xKvjJvuT4gh5XN
t8oL5napF4GWJmluHTY1LJe1JqN4Hjur3ZjddXi5PZfRndHTDN4qQZpyCWnrUx83
UmCsWoXRC9jdu8T2+KusoqPyrWHfaQxEV7kNK8GaCCrzYSdR/vD2E9x0xL4xZC7e
0x2z1LyixhjZY408FjwGL5M4Yw+XOgXJTMfuh5cxEGdohxZFkrvyfDVKLAXK2IMV
/8Wm+M9EK9ktCbxPw9DWbOC+6/7DrKP7b/NRCn6wOZdbCEbprAk4j9rRCHfQaQo6
Y0pPGAy49qNDbkWXPnALSblQQjSrroBpDt+hJOmhdYSO1UqunZkU/LKiIM6jHIv2
Jn/i/eoTFsXeyJznbpdGyqkthvj7BUVE5IU+3D7Rlqj7gXo4eno47CMkyiA0H8Cr
OZCzHFQ8Ue/3/YZL5YmQkZ5YkXKwEsC/OQIfZtbOZsCGn/0l8E5MN5Xa9lfUPnE3
HP/RLMbVdZ9f8Ul6WWvrBY8jtc6XySu+bdhRUtNCEb8q1tyZgXRUg2g3B9CgRGPT
MML98poPB8W6BfTJGw9M31G9202Y38emsm4bamCAiB4edLQISl1U3NPrmKRrDSR/
/gk2talfNJ642XH95i69
=Xt0W
-END PGP SIGNATURE-


Accepted:
libqjson-dbg_0.7.1-3_amd64.deb
  to main/q/qjson/libqjson-dbg_0.7.1-3_amd64.deb
libqjson-dev_0.7.1-3_amd64.deb
  to main/q/qjson/libqjson-dev_0.7.1-3_amd64.deb
libqjson0-dbg_0.7.1-3_all.deb
  to main/q/qjson/libqjson0-dbg_0.7.1-3_all.deb
libqjson0_0.7.1-3_amd64.deb
  to main/q/qjson/libqjson0_0.7.1-3_amd64.deb
qjson_0.7.1-3.debian.tar.gz
  to main/q/qjson/qjson_0.7.1-3.debian.tar.gz
qjson_0.7.1-3.dsc
  to main/q/qjson/qjson_0.7.1-3.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxbzb-00061u...@franck.debian.org



Accepted sysinfo 0.7-6 (source all)

2011-06-16 Thread Iain Lane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 11:59:04 +0100
Source: sysinfo
Binary: sysinfo
Architecture: source all
Version: 0.7-6
Distribution: unstable
Urgency: low
Maintainer: Debian CLI Applications Team 
pkg-cli-apps-t...@lists.alioth.debian.org
Changed-By: Iain Lane la...@debian.org
Description: 
 sysinfo- display computer and system information
Changes: 
 sysinfo (0.7-6) unstable; urgency=low
 .
   * debian/rules, debian/control: Include cli.make so correct dependencies are
 generated.
   * Run wrap-and-sort
Checksums-Sha1: 
 84e8416328e969cdf1be475d43390e2094a1b779 2082 sysinfo_0.7-6.dsc
 f9245924bb5fcf155c7867be8b458c39adfcb4e3 10966 sysinfo_0.7-6.diff.gz
 a7ae825130cfc04f1593e5430783ea21dc61126e 109274 sysinfo_0.7-6_all.deb
Checksums-Sha256: 
 b10536048757a3907a79b9260d0b5a4136c9277bc4279f67108330b18fb2badd 2082 
sysinfo_0.7-6.dsc
 2db1e721914a3b0e56aa6184ccb734b842aba687b7ebba673f8fc347caa05ffe 10966 
sysinfo_0.7-6.diff.gz
 f455662e8b33c5530b6f0aad4f223375385167068279daf7e4cd1ec98fbf526e 109274 
sysinfo_0.7-6_all.deb
Files: 
 5e603e93eb55a213f75ceb4392ab4c87 2082 utils optional sysinfo_0.7-6.dsc
 c6a19c8aaa4edd719747645a6ec06e70 10966 utils optional sysinfo_0.7-6.diff.gz
 8baea2909ed0dc090c822c3157579db3 109274 utils optional sysinfo_0.7-6_all.deb

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

iQIcBAEBCAAGBQJN+ftxAAoJEONS1cUcUEHUEg8QAIq9SZFmsp8CIyNsg47hxUgP
NgbGtB3qluRZtdUEoaAEWJOoAfrbuk4BAUQpLVUy6ZAIPDC7Le8Om+TtyntS0rxJ
YiBDMuCuzrApeycCk0fYQslBnJJDHIcxBuhioMr55CuSBt0olLMwRobk/5bFL5ZM
Dwom0S3c/Wo3ms5fQDmZghzZKAr/AW/QVBx77xwIhKgfUUxRdnOi6147QWM+U7xD
MOZakfMP5NiZ6hNSVe3Jd/bgZPLJmETAolwiltvCZM0ncoyL7EUdckfDCf1JJu71
2US4GfSW5j4a2zyup67ypdCXB63LWIbG27eNiOacHcdHHz0kiRUYJAIVwhBjxxRS
pje1cUNXH7tvWiZa0/HDuTtr7bG75oLfNAY1UKpN2xDIq33avwPxDP82VuxSF/gq
3OJ5F1+RKnztMWrUF2QYtP0fXaIiTbQ3E+z+zku2oSHpGzfQ7zI/tthZKPxCYb2z
RD/K+hvc+mP0M6mHh3bsUzDW3pgNvQJ+MQXd6h4CMmMbgTuuYC8/Fy7V+0e4uOnD
2kbqLsnUWbJCLtD4hLlW0EbcYkQyGLSSifbRYKqt/oKmce9zt/ssXU9IrNnG8EOD
htRxS0iC8PWZBQZT9u4JgUu0k5Ie7YA31hs8QJ1QPk4ruoMxNApC7NYujRzNQ0kS
ZAqHJBRT/PVeTvvXtWwO
=Yfuk
-END PGP SIGNATURE-


Accepted:
sysinfo_0.7-6.diff.gz
  to main/s/sysinfo/sysinfo_0.7-6.diff.gz
sysinfo_0.7-6.dsc
  to main/s/sysinfo/sysinfo_0.7-6.dsc
sysinfo_0.7-6_all.deb
  to main/s/sysinfo/sysinfo_0.7-6_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxcda-0008nk...@franck.debian.org



Accepted synce-gnomevfs 0.13-2.1 (source i386)

2011-06-16 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 06 Jun 2011 14:29:56 +0200
Source: synce-gnomevfs
Binary: synce-gnomevfs
Architecture: source i386
Version: 0.13-2.1
Distribution: unstable
Urgency: low
Maintainer: Jonny Lamb jo...@debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 synce-gnomevfs - SynCE plugin for GNOME VFS
Closes: 613189
Changes: 
 synce-gnomevfs (0.13-2.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/control:
 - Drop Build-Depends on libhal-dev. synce-gnomevfs does not actually need
   libhal and only picked up an unnecessary dependency via the libtool .la
   files from libsynce and librapi.
   Those have been fixed now. (Closes: #613189)
Checksums-Sha1: 
 133974e887160667c943df89c9eb1d7b5337626e 1921 synce-gnomevfs_0.13-2.1.dsc
 ed11b98b3cf6d4d11f67cc935c7507be62521862 3281 
synce-gnomevfs_0.13-2.1.debian.tar.gz
 6f0e0e5797f187fec4d6d13c595810a76c22848b 26668 synce-gnomevfs_0.13-2.1_i386.deb
Checksums-Sha256: 
 c1f1da0d78d2fe7dd6b3f22da0c8255b4273ee45820675302206bbaa37bda2ba 1921 
synce-gnomevfs_0.13-2.1.dsc
 e34d3e3d43bf817a7d8373657ac7a14f8d9e13f2b2a8f96ac18ab2f974f10508 3281 
synce-gnomevfs_0.13-2.1.debian.tar.gz
 da2898ca7ac4208b8ab3b43f2f1e7c7fcac381103c46ed2ca18199ea328d52cf 26668 
synce-gnomevfs_0.13-2.1_i386.deb
Files: 
 a62208313ad6a7625587a25702bd96b5 1921 utils extra synce-gnomevfs_0.13-2.1.dsc
 94cb0e164f4c9724c9e92c86ca6fbcdc 3281 utils extra 
synce-gnomevfs_0.13-2.1.debian.tar.gz
 32be8bbc7f8b8ce9bb9586ba27977c6b 26668 utils extra 
synce-gnomevfs_0.13-2.1_i386.deb

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

iQIcBAEBCAAGBQJN7MpEAAoJEGrh3w1gjyLcGNcQAIOaX1Cm6H6dSdRDoz1S7m+D
zsfzwWMHVWrT85GhROeHNv0QnY27NplEeRe+zJ1gxoAIi9Ei5srxSpuFf3E/WxJr
hd932+yxXJfITKUvdMF38IJd5zFhLDFEEH90WGYHZyVYHmlz0OGztXI60kJMxnhw
3J2JzonHXzwPF3Ua81eLpqbJUAL7iFQdx0Y4NnzGvNaiMN3imIZB6P8SgjjoW4bX
Z8JNEVJwQdomKj9861ZovpyPVEdyHpKvnwFl6IYXUH0dKeTospf0KR1q1avGIqFk
fxAKKrggSztJL4g2zMIK/62yhBgJ9IEpR9SP8BioKB11jaRihyGvk6v91Qu/X3Id
y1of3cMhh2h/LFFfr8rHEKGTS+VL0jM9siICpsxWH6i8M7z1RJZyXCPBUPha1mX6
/DKth2sK0UxALfm+rBVrSKO8wBEnu19D1UmMWRaZUJzvunFexgEo7RWIqQt3n9+T
J4KPJ5IYS0by2pKPRfOOZ1rdSnqzYFcvJ6rIDlWWwNYvuP9LIJZy0AorDCQH4ku4
pJzDWsf7f9uQTpu3Pm4Jg7MM0KoBsJmOT43Ul2vAAkPLeHd9s4l5L7neaQNPhdRT
hMWrHSkE6tySZIfCwl30L/6+KuCtsqQa1lEnClLDGNfH50nuQXzICvpszCjTXm8a
yhCWS+MZCJfhk+mm/ltW
=NRsC
-END PGP SIGNATURE-


Accepted:
synce-gnomevfs_0.13-2.1.debian.tar.gz
  to main/s/synce-gnomevfs/synce-gnomevfs_0.13-2.1.debian.tar.gz
synce-gnomevfs_0.13-2.1.dsc
  to main/s/synce-gnomevfs/synce-gnomevfs_0.13-2.1.dsc
synce-gnomevfs_0.13-2.1_i386.deb
  to main/s/synce-gnomevfs/synce-gnomevfs_0.13-2.1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxcgc-0001ci...@franck.debian.org



Accepted aiksaurus 1.2.1+dev-0.12-6.1 (source all i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 15:05:12 +0200
Source: aiksaurus
Binary: libaiksaurus-1.2-dev libaiksaurus-1.2-0c2a aiksaurus 
libaiksaurus-1.2-data libaiksaurusgtk-1.2-dev libaiksaurusgtk-1.2-0c2a 
gaiksaurus
Architecture: source all i386
Version: 1.2.1+dev-0.12-6.1
Distribution: unstable
Urgency: low
Maintainer: Masayuki Hatta (mhatta) mha...@debian.org
Changed-By: Luk Claes l...@debian.org
Description: 
 aiksaurus  - an English-language thesaurus (utility)
 gaiksaurus - graphical interface to the Aiksaurus toolkit (GTK+ frontend)
 libaiksaurus-1.2-0c2a - an English-language thesaurus (development)
 libaiksaurus-1.2-data - an English-language thesaurus (data)
 libaiksaurus-1.2-dev - an English-language thesaurus (development)
 libaiksaurusgtk-1.2-0c2a - graphical interface to the Aiksaurus toolkit 
(library)
 libaiksaurusgtk-1.2-dev - graphical interface to the Aiksaurus toolkit 
(development)
Closes: 621155
Changes: 
 aiksaurus (1.2.1+dev-0.12-6.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621155).
Checksums-Sha1: 
 06a5d292fd3365aaeda4e78cc039509b1e8d71b7 1199 aiksaurus_1.2.1+dev-0.12-6.1.dsc
 256177273c3cc7830979ca0533aaadadda6e1706 27765 
aiksaurus_1.2.1+dev-0.12-6.1.diff.gz
 c0c2272100ef716c95ad60a14fc126d16de5f9b4 317372 
libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all.deb
 9acf0fad0cf23212613df40b0b41e6f40ae8206c 24722 
libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386.deb
 1ebb610f2da8673d2648b50b8a2305e34108cdea 23196 
libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386.deb
 7a33198b0c395774d59d99e94e018995309550a4 11564 
aiksaurus_1.2.1+dev-0.12-6.1_i386.deb
 c3ca0fc18d65f1aaa04c9669b90234c158d2c731 31310 
libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386.deb
 5be933794f59bafd5ca9a5959599d4a7b131ca1a 32392 
libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386.deb
 aaf129b75f41c7cd65847d7e4e20540121262e30 9110 
gaiksaurus_1.2.1+dev-0.12-6.1_i386.deb
Checksums-Sha256: 
 6ca3ba2048579a67ba3d392c1f714d7b3e1f6a66273318fd3e8fb8e989a7f84f 1199 
aiksaurus_1.2.1+dev-0.12-6.1.dsc
 b0a414f880cc7ec28276aaae6506c9c5dee1a2d1175f47dc9c535285f5a212fd 27765 
aiksaurus_1.2.1+dev-0.12-6.1.diff.gz
 a9a79aaccf11a8f9b92228f16b6aa232f4cbec080a3a2394c1681fa27d93e442 317372 
libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all.deb
 8957352a500605b92b91fc88e9a243aec7fde2de6afd2ed60c68c11fe7c20669 24722 
libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386.deb
 648a6e2cbed8ba630d204e3ec4143f10f6a9be636b31b6c29e373caf89961d62 23196 
libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386.deb
 83074529b0b9bcc5ec3194c95431fa6ed164d9fae0fd4683aa9ac4737d748ad1 11564 
aiksaurus_1.2.1+dev-0.12-6.1_i386.deb
 a3b1f69de5b117c118d6d49416a967c16e0631b95679ad20c95d4ed7d57ea84c 31310 
libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386.deb
 7ca5892b9710954a8c2f6cc4699d9f2c2639439feb8af9a4a792914b705ee94a 32392 
libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386.deb
 e4c8b1a1b536254d5e707610091ae35f76d07540130da0d1d57321c8766883ee 9110 
gaiksaurus_1.2.1+dev-0.12-6.1_i386.deb
Files: 
 d6f951743c370c02f5b8c32c74a03ac2 1199 devel optional 
aiksaurus_1.2.1+dev-0.12-6.1.dsc
 9492f6a33d3e7f6f689f5617b6ca80e7 27765 devel optional 
aiksaurus_1.2.1+dev-0.12-6.1.diff.gz
 f08994000481bf3ca7032529810cf44e 317372 libs optional 
libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all.deb
 35bb1ff78f5206ad945f50c7d41d4319 24722 libdevel optional 
libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386.deb
 628f7999f7b35aa82555736fd85cbd40 23196 libs optional 
libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386.deb
 04cfd83be40b046d8b419f046de42cfc 11564 text optional 
aiksaurus_1.2.1+dev-0.12-6.1_i386.deb
 4a73e14f6ea730ae5424d586273cdfbf 31310 libdevel optional 
libaiksaurusgtk-1.2-dev_1.2.1+dev-0.12-6.1_i386.deb
 6086597cb57f9be1da3fc0c95009fcce 32392 libs optional 
libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386.deb
 8e88a0d7420e443c8d4c51056a03215b 9110 text optional 
gaiksaurus_1.2.1+dev-0.12-6.1_i386.deb

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

iEYEARECAAYFAk3zaW4ACgkQ5UTeB5t8Mo3NIwCeIxltr4lbG8D+NV1LWtdMr0qJ
vYEAnA1nbVr1wQpzk/RWnWUUv2MndH0x
=YhIV
-END PGP SIGNATURE-


Accepted:
aiksaurus_1.2.1+dev-0.12-6.1.diff.gz
  to main/a/aiksaurus/aiksaurus_1.2.1+dev-0.12-6.1.diff.gz
aiksaurus_1.2.1+dev-0.12-6.1.dsc
  to main/a/aiksaurus/aiksaurus_1.2.1+dev-0.12-6.1.dsc
aiksaurus_1.2.1+dev-0.12-6.1_i386.deb
  to main/a/aiksaurus/aiksaurus_1.2.1+dev-0.12-6.1_i386.deb
gaiksaurus_1.2.1+dev-0.12-6.1_i386.deb
  to main/a/aiksaurus/gaiksaurus_1.2.1+dev-0.12-6.1_i386.deb
libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386.deb
  to main/a/aiksaurus/libaiksaurus-1.2-0c2a_1.2.1+dev-0.12-6.1_i386.deb
libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all.deb
  to main/a/aiksaurus/libaiksaurus-1.2-data_1.2.1+dev-0.12-6.1_all.deb
libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386.deb
  to main/a/aiksaurus/libaiksaurus-1.2-dev_1.2.1+dev-0.12-6.1_i386.deb
libaiksaurusgtk-1.2-0c2a_1.2.1+dev-0.12-6.1_i386.deb
  to 

Accepted libapache2-mod-perl2 2.0.5-2 (source all amd64)

2011-06-16 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 14:56:44 +0200
Source: libapache2-mod-perl2
Binary: libapache2-mod-perl2 libapache2-mod-perl2-dev libapache2-mod-perl2-doc
Architecture: source amd64 all
Version: 2.0.5-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libapache2-mod-perl2 - Integration of perl with the Apache2 web server
 libapache2-mod-perl2-dev - Integration of perl with the Apache2 web server - 
development fil
 libapache2-mod-perl2-doc - Integration of perl with the Apache2 web server - 
documentation
Closes: 628296
Changes: 
 libapache2-mod-perl2 (2.0.5-2) unstable; urgency=low
 .
   * Team upload.
   * Add 230-test-failures-fix.patch. Fixes for the testsuite to be
 compatible with = LWP + HTTP:Headers 6.0. (LP: #797716),
 (Closes: #628296).
Checksums-Sha1: 
 1389b8144b7d55601f1e8dcb19e749afb2c4c5ec 2426 libapache2-mod-perl2_2.0.5-2.dsc
 9be4f07abbc471f8bed3161ae8a7d5721fd67330 21945 
libapache2-mod-perl2_2.0.5-2.debian.tar.gz
 f4c4bbdd54695d861a3781b13edacd5c8f6d83c8 1127556 
libapache2-mod-perl2_2.0.5-2_amd64.deb
 b9d553367f70b3c3c606584d600a6356762f1f15 83696 
libapache2-mod-perl2-dev_2.0.5-2_all.deb
 02ce2d376b88133dc1c956f3aad84e83b1bc33b7 1912738 
libapache2-mod-perl2-doc_2.0.5-2_all.deb
Checksums-Sha256: 
 0c6ac23bae2be6a4be8317123de19156d854b0337071625a48d6d9607c10a21b 2426 
libapache2-mod-perl2_2.0.5-2.dsc
 9383fbf18a470275dc78b0fa537f7db12973c312d6930cec37c51142e3e366bf 21945 
libapache2-mod-perl2_2.0.5-2.debian.tar.gz
 37ea25d9f24141aa811bf4fb6f8232dd9abef3869d8f066dafde762df3e92954 1127556 
libapache2-mod-perl2_2.0.5-2_amd64.deb
 296d1e1f794acf6c358a00838b392c2e3961e653ee1b03b2bf3af71616d06656 83696 
libapache2-mod-perl2-dev_2.0.5-2_all.deb
 43e6216220f862c4d916b0cc1232ad4e02583d063956918e8193e4fcb626de62 1912738 
libapache2-mod-perl2-doc_2.0.5-2_all.deb
Files: 
 016ee6bf17e67f137df98b60b503546d 2426 httpd optional 
libapache2-mod-perl2_2.0.5-2.dsc
 a14a09482e339269c7f547e0bac895cd 21945 httpd optional 
libapache2-mod-perl2_2.0.5-2.debian.tar.gz
 5b006d374580d204a18bff99087aae24 1127556 httpd optional 
libapache2-mod-perl2_2.0.5-2_amd64.deb
 160e638026088ef00e4854a6f2ecd571 83696 libdevel optional 
libapache2-mod-perl2-dev_2.0.5-2_all.deb
 8b8aae722b2f176307daff37b139e9f6 1912738 doc optional 
libapache2-mod-perl2-doc_2.0.5-2_all.deb

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

iQIcBAEBCAAGBQJN+gVyAAoJEHidbwV/2GP+OaoP/Ap7pSLExeoJVmNqmJ0J9RlF
NArAblLSeiO9yATiXgCabGMLcingQIg6J1IbN55lgRO/ggf4RH8HZzong+3AV3zt
2RI+lQXRXso+aI6OQD/xDNJffDEVOyioUvyPCX+nzyQ+BMhZCLpRuJUUStKX8Umk
4U3UUSR6B8rVJcPZRMvtrOpsbJ57HaF+RonJvo/ZLBBfeph4YEQo4I7f8Auq314L
SOgvdpiQTbCaFNjD2nGS7kseHbeYlzKfFCuFnUoeZtn09ckJKQ8O49mlUuL/Yj6U
UW6UTpD2d4kDfT0tvO/AsD47c90E+wOiy15Sg03zMVrBUbwC9NM91XudrzXNqNOc
f1iuYgLX4yyJvTk1GvFFYQCBtj3xmQAepaaDl2VX7Nk2wgxzmrDB90CPDNYC+ojI
Z0980vyucJKKeE+9e33++ePwT7jT1RSUExmIHnxTh++cjsV/lsSgJR63z/uKvJsK
FNiHwt1R6e+WB4n3Y/vUj/1+6fvMtSfKyCbCEPJJc+vIQk6zzpeFkQiwqJzVG+kS
/Ywls2qNdrczzfcTbS0EnUYJ7u/cg8Br8B/n6WxhNBNezss/8zEWGSFFR15EpSbj
4VrF88p1jmuNkOrsYM13KV98Go1p5JbxRn0wyt84/873XPlkXFhtpyYODGQPGqqQ
2tVJ8vS5zk7yvA7RmWKW
=Qn/2
-END PGP SIGNATURE-


Accepted:
libapache2-mod-perl2-dev_2.0.5-2_all.deb
  to main/liba/libapache2-mod-perl2/libapache2-mod-perl2-dev_2.0.5-2_all.deb
libapache2-mod-perl2-doc_2.0.5-2_all.deb
  to main/liba/libapache2-mod-perl2/libapache2-mod-perl2-doc_2.0.5-2_all.deb
libapache2-mod-perl2_2.0.5-2.debian.tar.gz
  to main/liba/libapache2-mod-perl2/libapache2-mod-perl2_2.0.5-2.debian.tar.gz
libapache2-mod-perl2_2.0.5-2.dsc
  to main/liba/libapache2-mod-perl2/libapache2-mod-perl2_2.0.5-2.dsc
libapache2-mod-perl2_2.0.5-2_amd64.deb
  to main/liba/libapache2-mod-perl2/libapache2-mod-perl2_2.0.5-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxcuy-0002na...@franck.debian.org



Accepted concordance 0.23-1.2 (source all i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 15:19:01 +0200
Source: concordance
Binary: concordance libconcord2 libconcord-dev python-libconcord
Architecture: source all i386
Version: 0.23-1.2
Distribution: unstable
Urgency: low
Maintainer: Mathieu Trudel-Lapierre mathieu...@gmail.com
Changed-By: Luk Claes l...@debian.org
Description: 
 concordance - Harmony remote configuration tool
 libconcord-dev - Harmony remote configuration tool - development files
 libconcord2 - Harmony remote configuration tool - runtime libraries
 python-libconcord - Harmony remote configuration tool - Python bindings
Closes: 621157
Changes: 
 concordance (0.23-1.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621157).
Checksums-Sha1: 
 c0373799691d5820b0e2d9b8d0be18f707cca676 1192 concordance_0.23-1.2.dsc
 c6b0f7e28d27fc9622d7c72f0ce30efc718c5394 6259 
concordance_0.23-1.2.debian.tar.gz
 2baaa09e8c903e8d447bc5cb3011787ba116124c 13248 
python-libconcord_0.23-1.2_all.deb
 6e7b72f9a1d89daefe3e630665afc2b593f14c1d 23638 concordance_0.23-1.2_i386.deb
 88a64d37b7b87c38990b1270727ecb1a020e66a4 41430 libconcord2_0.23-1.2_i386.deb
 69ce23efb1655612f6ab7e41762f1e5cc1f42299 44648 libconcord-dev_0.23-1.2_i386.deb
Checksums-Sha256: 
 4453bec55c1b3fbdc8ac0e066bcc677c27567a29c4445bcab8181438175404d1 1192 
concordance_0.23-1.2.dsc
 ade44bf050fac54eadc4a34fe3a5fdf90ae7ad025f3f6494a4a33de623105ab1 6259 
concordance_0.23-1.2.debian.tar.gz
 f3c50b585eec71734198c71a884c2ef35327264523ce42f71c17f29a211777b7 13248 
python-libconcord_0.23-1.2_all.deb
 f0206ec76a6a91f39b1b509c398a1028e6b799716dc9cd3690632274d4e40b20 23638 
concordance_0.23-1.2_i386.deb
 a1bd01f75bf6d5d6f591d33d5bc5b97115746b322036a4e6f525da88048ae8c8 41430 
libconcord2_0.23-1.2_i386.deb
 5f3b314ffb94c355f8a7be41821844af54477c349f3da79fa8379af82503d3d3 44648 
libconcord-dev_0.23-1.2_i386.deb
Files: 
 b1fb538e54eb464d0830d8976cee3479 1192 utils optional concordance_0.23-1.2.dsc
 1cca4091e83e6af849c7a89bbaae5fc9 6259 utils optional 
concordance_0.23-1.2.debian.tar.gz
 15f1d3d9328c16d0a904ffdca2e3b1b5 13248 python optional 
python-libconcord_0.23-1.2_all.deb
 8d9f434752539bc28092be8699696f2d 23638 utils optional 
concordance_0.23-1.2_i386.deb
 3b1bcf19ff7ceaf7326d06933f2ff65a 41430 utils optional 
libconcord2_0.23-1.2_i386.deb
 ee5dc0963613703759e01044b994c833 44648 libdevel optional 
libconcord-dev_0.23-1.2_i386.deb

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

iEYEARECAAYFAk3zbBUACgkQ5UTeB5t8Mo2k2ACbBHSvNkLPkeOvjlCQZmrZtg8M
OLAAn3Tmg4OmP0yqTF2Uw4VSs4T8GASj
=uMBZ
-END PGP SIGNATURE-


Accepted:
concordance_0.23-1.2.debian.tar.gz
  to main/c/concordance/concordance_0.23-1.2.debian.tar.gz
concordance_0.23-1.2.dsc
  to main/c/concordance/concordance_0.23-1.2.dsc
concordance_0.23-1.2_i386.deb
  to main/c/concordance/concordance_0.23-1.2_i386.deb
libconcord-dev_0.23-1.2_i386.deb
  to main/c/concordance/libconcord-dev_0.23-1.2_i386.deb
libconcord2_0.23-1.2_i386.deb
  to main/c/concordance/libconcord2_0.23-1.2_i386.deb
python-libconcord_0.23-1.2_all.deb
  to main/c/concordance/python-libconcord_0.23-1.2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxdrp-00054o...@franck.debian.org



Accepted coolkey 1.1.0-8.1 (source i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 15:25:18 +0200
Source: coolkey
Binary: coolkey libckyapplet1 libckyapplet1-dev
Architecture: source i386
Version: 1.1.0-8.1
Distribution: unstable
Urgency: low
Maintainer: A. Maitland Bottoms bott...@debian.org
Changed-By: Luk Claes l...@debian.org
Description: 
 coolkey- Smart Card PKCS #11 cryptographic module
 libckyapplet1 - Smart Card Coolkey applet
 libckyapplet1-dev - Smart Card Coolkey applet development files
Closes: 621158
Changes: 
 coolkey (1.1.0-8.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621158).
Checksums-Sha1: 
 f2fd1fd19ca3108956c99b86f93d4851d22f35b4 1353 coolkey_1.1.0-8.1.dsc
 0163d98437dc396d4f9faf8ed6c5d72b18cf9ef2 47461 coolkey_1.1.0-8.1.debian.tar.gz
 b6158bc9714b6c955f2b1c5aba2cfae0d8d4654b 126804 coolkey_1.1.0-8.1_i386.deb
 656dd9149a77290eaafc44c97a488569925f9d44 29924 libckyapplet1_1.1.0-8.1_i386.deb
 e43d7476c6c3948e2ba8125c0906ef7ea8d16756 38238 
libckyapplet1-dev_1.1.0-8.1_i386.deb
Checksums-Sha256: 
 1089e1401a14a02450fad07dc0e9bace855f961616f6fcb1c92c8c5397ee95c9 1353 
coolkey_1.1.0-8.1.dsc
 f41a74215de464915d93632424d91c9159f9ba89adeab0db4e5269d58b9e83c6 47461 
coolkey_1.1.0-8.1.debian.tar.gz
 5e91ebc32a9bb54fe5f4679a51a06b365a9d3210d39b4bad96ee5a78f46d1023 126804 
coolkey_1.1.0-8.1_i386.deb
 572b61d6febac44e4258f06fab033e4d76143c6c52635fcda780b5a0424f78b4 29924 
libckyapplet1_1.1.0-8.1_i386.deb
 e18029a60770c7565024ca0598a224387e2fb9eef89ead951760ff7867167abf 38238 
libckyapplet1-dev_1.1.0-8.1_i386.deb
Files: 
 1ef6764ac462d8fb2be5e14caa863f5f 1353 admin optional coolkey_1.1.0-8.1.dsc
 c3d1ebbe199e06d026d27299aae299ea 47461 admin optional 
coolkey_1.1.0-8.1.debian.tar.gz
 42eacae4c02e1e72fab4a28ae0c56e65 126804 admin optional 
coolkey_1.1.0-8.1_i386.deb
 8e8c5e1b2fa73d4f822d630fe43df9ce 29924 libs optional 
libckyapplet1_1.1.0-8.1_i386.deb
 47348fe856ff39c810cd32d41875310e 38238 libdevel optional 
libckyapplet1-dev_1.1.0-8.1_i386.deb

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

iEYEARECAAYFAk3zblYACgkQ5UTeB5t8Mo1oIwCgxIHDQ0YMHoFU3kkAWP6kN7q/
d3IAnidC9v1ojcGb+BeVf905Qn4vv3e9
=F0EX
-END PGP SIGNATURE-


Accepted:
coolkey_1.1.0-8.1.debian.tar.gz
  to main/c/coolkey/coolkey_1.1.0-8.1.debian.tar.gz
coolkey_1.1.0-8.1.dsc
  to main/c/coolkey/coolkey_1.1.0-8.1.dsc
coolkey_1.1.0-8.1_i386.deb
  to main/c/coolkey/coolkey_1.1.0-8.1_i386.deb
libckyapplet1-dev_1.1.0-8.1_i386.deb
  to main/c/coolkey/libckyapplet1-dev_1.1.0-8.1_i386.deb
libckyapplet1_1.1.0-8.1_i386.deb
  to main/c/coolkey/libckyapplet1_1.1.0-8.1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxdrb-00059g...@franck.debian.org



Accepted fex 20110610-2 (source all)

2011-06-16 Thread Kilian Krause
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 16:25:20 +0200
Source: fex
Binary: fex fex-utils
Architecture: source all
Version: 20110610-2
Distribution: unstable
Urgency: low
Maintainer: Giuseppe Iuculano iucul...@debian.org
Changed-By: Kilian Krause kil...@debian.org
Description: 
 fex- web service for transferring very large files
 fex-utils  - web service for transferring very large files (utils)
Changes: 
 fex (20110610-2) unstable; urgency=low
 .
   * Support inetd.conf if xinetd is not installed.
   * Alternatively depend on inet-superserver instead of forcing xinetd
   * Make xinetd.d/fex only installed if xinetd is actually installed on the
 system
   * Remove /etc/xinetd.d from fex dirs
   * Add logrotate and move logfile to /var/log
   * New patch to make $logdir point to /var/log/fex in fex.ph
   * Update manpages - big thanks to Michael Bussmann b...@mb-net.net
   * Bump compat to 8 (stable has 8.0.0 and bpo has a version for oldstable too)
   * Update to 3.9.2 policy standards:
 - Use dh_perl instead of hardcoding perl Depends
   * Fixup short description typo - thanks to Nico Golde for pointing out!
   * Move htdocs to /var/lib/fex and make download and FEX.jar a symlink to
 /usr/share/fex/htdocs-static/download
   * Backport 04_docdir.patch with $docdir bugfix from upstream (includes
 bugfix for transparent proxy)
   * Always check for htdocs modifications upon upgrade and only overwrite
 htdocs if no changes were made by the user in /var/lib/fex/htdocs
   * New update check routine requires unzip to disassemble FIX.jar - added to
 Depends
Checksums-Sha1: 
 2442b6f856a228f12453a38484161d24e32fed50 1209 fex_20110610-2.dsc
 b7c6ff91c3d3d436d35333a8e3910bfc2c187051 20318 fex_20110610-2.debian.tar.gz
 07e99fa476c8e13fa3b40dcd142bb1862c5528bb 231946 fex_20110610-2_all.deb
 006e7d01b8018eb127db1571ad920f7ba1b43703 45468 fex-utils_20110610-2_all.deb
Checksums-Sha256: 
 e96b43b081c156b2b47881f244a56f1c27bc5b9fad3b223da7fd363eb3d5457e 1209 
fex_20110610-2.dsc
 ff29db3be52449040ecf13dde31a07df68a844dea85c07b52e14d1ee59b7b940 20318 
fex_20110610-2.debian.tar.gz
 4c2cf78e7a0118bad86eff6c27677e586f40808f34fb28001ce8cc4e193d643b 231946 
fex_20110610-2_all.deb
 3454c04fec4edd4a9455b58963dca9fea01fb77261675ea49de613eb129e3ba5 45468 
fex-utils_20110610-2_all.deb
Files: 
 e1641dcd2cc8af4e60624f949132ffe4 1209 web optional fex_20110610-2.dsc
 c9bb15e07920f9badde184de733e337c 20318 web optional 
fex_20110610-2.debian.tar.gz
 4750b7bd99941d0cfb7ab63c65143995 231946 web optional fex_20110610-2_all.deb
 7896ee88360697154a974907d9a87c5e 45468 web optional 
fex-utils_20110610-2_all.deb

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

iD8DBQFN+hNJvdkzt4X+wX8RAtGYAJ9rUImUgGnmNwG37vPpQLyr3VidmQCfRqi1
vOjsJllJmnSMs0WrlcrEdDg=
=jato
-END PGP SIGNATURE-


Accepted:
fex-utils_20110610-2_all.deb
  to main/f/fex/fex-utils_20110610-2_all.deb
fex_20110610-2.debian.tar.gz
  to main/f/fex/fex_20110610-2.debian.tar.gz
fex_20110610-2.dsc
  to main/f/fex/fex_20110610-2.dsc
fex_20110610-2_all.deb
  to main/f/fex/fex_20110610-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxdrn-0005cv...@franck.debian.org



Accepted ginspector 20050529-3.1 (source i386 all)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 16:12:41 +0200
Source: ginspector
Binary: libginspx-dev libginspx0 ginspector
Architecture: source i386 all
Version: 20050529-3.1
Distribution: unstable
Urgency: low
Maintainer: NIIBE Yutaka gni...@fsij.org
Changed-By: Luk Claes l...@debian.org
Description: 
 ginspector - GTK+ object/class inspector
 libginspx-dev - Development headers of GTK+ object/class inspector
 libginspx0 - Shared library of GTK+ object/class inspector
Closes: 621161
Changes: 
 ginspector (20050529-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621161).
Checksums-Sha1: 
 6e1f930b6fba9a39759589786bd01de99e9f4e19 1277 ginspector_20050529-3.1.dsc
 9d9aa721d56ccd0612d7119d3573c99e151ad571 5000 
ginspector_20050529-3.1.debian.tar.gz
 9c0539c871ff4e5e3897728d966247c456f38a20 106350 
libginspx-dev_20050529-3.1_i386.deb
 c8ad2d0bab2cd020ffd1ff5dd34a110303bd82d9 71368 libginspx0_20050529-3.1_i386.deb
 ec82d7986c653242148d36a5cf7b09ee36fac531 4706 ginspector_20050529-3.1_all.deb
Checksums-Sha256: 
 0bcad1b1c3bb1d4aa694400efbf64253633eda2b96a2f18614048b00f01fde36 1277 
ginspector_20050529-3.1.dsc
 6d7b9ee804c8fb55fe8da12bda7f1c89aa2bed838fb9bbc9b6f2c99e65b0f60d 5000 
ginspector_20050529-3.1.debian.tar.gz
 e6e5c9a00cfb687c61db54f4916b80db1521e22aed44e65f2c2f53fe61a3c704 106350 
libginspx-dev_20050529-3.1_i386.deb
 e601934fe3586b2664fa89863147cd6dfd857d1e1d4a5f318f3020f1d1b48be9 71368 
libginspx0_20050529-3.1_i386.deb
 9726a24f47233dda90197186d00c50a824655b277ef1471a45bb0902049b0dc2 4706 
ginspector_20050529-3.1_all.deb
Files: 
 b41be4ed8a097e305385cb51d236b33e 1277 devel extra ginspector_20050529-3.1.dsc
 832c12f4e40f0b924b93cdf793031223 5000 devel extra 
ginspector_20050529-3.1.debian.tar.gz
 7f6490a918f8585e1fa27a3cb7f8686c 106350 libdevel extra 
libginspx-dev_20050529-3.1_i386.deb
 9f431058d5227dc0be15bef0697a60f4 71368 libs extra 
libginspx0_20050529-3.1_i386.deb
 fc5963419a8c441f95e762362c90f0b5 4706 devel extra 
ginspector_20050529-3.1_all.deb

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

iEYEARECAAYFAk3zeQ4ACgkQ5UTeB5t8Mo1U1wCglnGqW4+V/H2Qc+OBhq8myxgA
NtEAn05dwWchGB/r5R+68iCRDD8EKxh9
=2HOX
-END PGP SIGNATURE-


Accepted:
ginspector_20050529-3.1.debian.tar.gz
  to main/g/ginspector/ginspector_20050529-3.1.debian.tar.gz
ginspector_20050529-3.1.dsc
  to main/g/ginspector/ginspector_20050529-3.1.dsc
ginspector_20050529-3.1_all.deb
  to main/g/ginspector/ginspector_20050529-3.1_all.deb
libginspx-dev_20050529-3.1_i386.deb
  to main/g/ginspector/libginspx-dev_20050529-3.1_i386.deb
libginspx0_20050529-3.1_i386.deb
  to main/g/ginspector/libginspx0_20050529-3.1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxds0-0005h0...@franck.debian.org



Accepted gnome-terminal 3.0.1-1 (source all i386)

2011-06-16 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 16:19:04 +0200
Source: gnome-terminal
Binary: gnome-terminal gnome-terminal-data
Architecture: source all i386
Version: 3.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Guilherme de S. Pastore gpast...@debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 gnome-terminal - GNOME terminal emulator application
 gnome-terminal-data - Data files for the GNOME terminal emulator
Changes: 
 gnome-terminal (3.0.1-1) unstable; urgency=low
 .
   [ Raphaël Hertzog ]
   * Add lintian overrides for menu-icon-missing.
 .
   [ Michael Biebl ]
   * debian/watch: Switch to .bz2 tarballs.
   * New upstream release.
   * debian/control.in
 - Drop Build-Depends on libdbus-glib-1-dev.
 - Drop Build-Depends on dpkg-dev (= 1.13.19), even the version from lenny
   is recent enough.
 - Add Vcs-* fields.
   * Bump debhelper compatibility level to 8.
 - Update Build-Depends on debhelper.
 - Strip debian/tmp/ from .install files.
   * Remove debian/fonts.conf, unused.
Checksums-Sha1: 
 31ede1f9eb7f7d18408fa2f35b63a80bca396b7c 2419 gnome-terminal_3.0.1-1.dsc
 47b307a7b0b65cfbfae2eee67aafc47eb0f5e96a 2321517 
gnome-terminal_3.0.1.orig.tar.bz2
 2a3c5cae3047fbf78e1106c5ea168ae421711976 24562 
gnome-terminal_3.0.1-1.debian.tar.gz
 3a73f31f00386ddb90fabdfdd686bb7cfdbf1259 3297896 
gnome-terminal-data_3.0.1-1_all.deb
 3e148937058c26efd92ed7f418ea570cb223b318 501388 gnome-terminal_3.0.1-1_i386.deb
Checksums-Sha256: 
 5bd6d1af43274230bafd7ec932e76f5325402fc8799685bedb500a221fd47bf1 2419 
gnome-terminal_3.0.1-1.dsc
 388eda40663566cb785e2d92180e0b584c2c89acc3e7bcd30605601710fddc48 2321517 
gnome-terminal_3.0.1.orig.tar.bz2
 31ef2f0b1709d60c45a8ba5e061df407ba6aed6da30fbbd14f80a7a8cf66850f 24562 
gnome-terminal_3.0.1-1.debian.tar.gz
 ed063962e52b794b4a0ae64fa8d06411df23fa0615c8787312cf25090ed5e43e 3297896 
gnome-terminal-data_3.0.1-1_all.deb
 6da87fbaa6107cd6fed5cc4468a6a95b9b3980ab5653ad6b90a67066a00c2d80 501388 
gnome-terminal_3.0.1-1_i386.deb
Files: 
 24176d7952ab957f2325fc6230c01ece 2419 gnome optional gnome-terminal_3.0.1-1.dsc
 63b1d72b22be15d5fa039260bc6fbd64 2321517 gnome optional 
gnome-terminal_3.0.1.orig.tar.bz2
 f60d3c3fe82d22379be2f40d2f4fe9a4 24562 gnome optional 
gnome-terminal_3.0.1-1.debian.tar.gz
 fffacbc2955b911cc47fe9c2f9827773 3297896 gnome optional 
gnome-terminal-data_3.0.1-1_all.deb
 5a0edf8bf15ba9a7867876904a076336 501388 gnome optional 
gnome-terminal_3.0.1-1_i386.deb

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

iQIcBAEBCAAGBQJN+hLsAAoJEGrh3w1gjyLczcQP/3KH5+ygODOQuLLoy+d32ZYs
mRdeTYqZnPOsmejrV7BlppLNJBY+2sJQgGD8BVhwGvjSw19P63i/Ya1cI8CRjDEH
KZM+a3bbBH0EYJj4CLc4FZml1bEc7O0JK/1p0YEKWuBJqHpRnoxzlSQ+dAGTWzWC
6X5EK/qESeGgzWlew+5UhnJXOTt9mPnJwBNN6aCubUuzdyvy7D3yPK0csO3kH70V
AgUpDyIiHIc2EMcsnNnuS0mxM/rcqwMnkpUPcjZop6SivSjpkHgRhUCc+9bWcqNT
R5RtGRXihFhwPVI7De25EV09/7XYJRd+dwiEiybpsUaasEqCpBdQW+7jPBnNlmS4
vAiRGYPgb7o+DQN12KUfbnc/G+ASolCE+0cdimOxP28h6x5UmVRI+v0oJLuLiBWQ
xj9I9c956D9Bjn3Ek0adFiW7HDXJV6wuyDncQD1uMtiW+UNYcAAN6aNz5Gi643zt
wDmXMI+Lt90SfLWshlh1oJZBf5oe1tUrnpi6NZFKExsUw4xLQgEtdkKkidmKAx51
Hfk8HNcotYN6ALWF91QK08JEuvpQ7a21TpJ1VUXnZ7lG6mDPDQUhPewPcPVivMTD
DKMpf5CZsYYeYFtlPRRsTYU4uYHt6/4WUY9qfMUIw1yZyqMxHSUClxszIbtAAFnF
KnR24AiLV6wlxmNk6eXM
=O/Fz
-END PGP SIGNATURE-


Accepted:
gnome-terminal-data_3.0.1-1_all.deb
  to main/g/gnome-terminal/gnome-terminal-data_3.0.1-1_all.deb
gnome-terminal_3.0.1-1.debian.tar.gz
  to main/g/gnome-terminal/gnome-terminal_3.0.1-1.debian.tar.gz
gnome-terminal_3.0.1-1.dsc
  to main/g/gnome-terminal/gnome-terminal_3.0.1-1.dsc
gnome-terminal_3.0.1-1_i386.deb
  to main/g/gnome-terminal/gnome-terminal_3.0.1-1_i386.deb
gnome-terminal_3.0.1.orig.tar.bz2
  to main/g/gnome-terminal/gnome-terminal_3.0.1.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxdse-0005l6...@franck.debian.org



Accepted haskell-data-accessor-template 0.2.1.7-2 (source all amd64)

2011-06-16 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 15:50:24 +0200
Source: haskell-data-accessor-template
Binary: libghc-data-accessor-template-dev libghc-data-accessor-template-prof 
libghc-data-accessor-template-doc
Architecture: source all amd64
Version: 0.2.1.7-2
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-data-accessor-template-dev - utilities for accessing and manipulating 
fields of records
 libghc-data-accessor-template-doc - utilities for accessing/manipulating 
fields of records; documenta
 libghc-data-accessor-template-prof - utilities for accessing/manipulating 
fields of records; profiling
Changes: 
 haskell-data-accessor-template (0.2.1.7-2) unstable; urgency=low
 .
   * Depend on ghc-ghci, to avoid build attempts on arches without
 template haskell.
Checksums-Sha1: 
 05a08503ad35a13fef89e730925b5d6285ebf7b4 1800 
haskell-data-accessor-template_0.2.1.7-2.dsc
 5059893e0520667f0b26cfad2889aed2c9155d06 2378 
haskell-data-accessor-template_0.2.1.7-2.debian.tar.gz
 bf94fb2fa4364cfcfe5eb498eb5b27cae23d2f0e 31166 
libghc-data-accessor-template-doc_0.2.1.7-2_all.deb
 072302168e5a806dcd094fb6a2941e0bd0f0d171 25380 
libghc-data-accessor-template-dev_0.2.1.7-2_amd64.deb
 3d1c1d68c67756d773c3510cb54948a9d9a9ccb6 26156 
libghc-data-accessor-template-prof_0.2.1.7-2_amd64.deb
Checksums-Sha256: 
 c5ba5c3b3adea6c2f9bff0af27df79c06c88c19269883bbb882701ba9c637381 1800 
haskell-data-accessor-template_0.2.1.7-2.dsc
 a5a22e45e96ce54a572534b83df961c7f65acaefb5cb53ab6772e5806497f302 2378 
haskell-data-accessor-template_0.2.1.7-2.debian.tar.gz
 5fc416fc1f21db15f3adc59fd8dc43b96b9ac871684cf722ee52189dcee7ff3d 31166 
libghc-data-accessor-template-doc_0.2.1.7-2_all.deb
 aad0bdb058d7d92f4f02815771b92a9a0478ca2fac2b4dce272e94876efd555d 25380 
libghc-data-accessor-template-dev_0.2.1.7-2_amd64.deb
 b4d1a64375c080c074e6d0ce0c3905c3a8899c82c275a589f050c9fea99b3c3b 26156 
libghc-data-accessor-template-prof_0.2.1.7-2_amd64.deb
Files: 
 6d85b5d5079b78e2563372a687e14ca6 1800 haskell extra 
haskell-data-accessor-template_0.2.1.7-2.dsc
 e283ea78e16bc298ab7fcc071d6af30b 2378 haskell extra 
haskell-data-accessor-template_0.2.1.7-2.debian.tar.gz
 c99a302556f5c6c2ef703ed360434de6 31166 doc extra 
libghc-data-accessor-template-doc_0.2.1.7-2_all.deb
 d477154872b98d365c63ac0864ef400e 25380 haskell extra 
libghc-data-accessor-template-dev_0.2.1.7-2_amd64.deb
 0702e86128f3c2b8eb5e46279cccd78a 26156 haskell extra 
libghc-data-accessor-template-prof_0.2.1.7-2_amd64.deb

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

iEYEARECAAYFAk36Cm0ACgkQ9ijrk0dDIGwZvgCeIBTtJvUb0VmE5UNcOoPbTxO2
wCAAoLw+oR1Mk5NViGx+mI+2mgExs80Y
=U9x4
-END PGP SIGNATURE-


Accepted:
haskell-data-accessor-template_0.2.1.7-2.debian.tar.gz
  to 
main/h/haskell-data-accessor-template/haskell-data-accessor-template_0.2.1.7-2.debian.tar.gz
haskell-data-accessor-template_0.2.1.7-2.dsc
  to 
main/h/haskell-data-accessor-template/haskell-data-accessor-template_0.2.1.7-2.dsc
libghc-data-accessor-template-dev_0.2.1.7-2_amd64.deb
  to 
main/h/haskell-data-accessor-template/libghc-data-accessor-template-dev_0.2.1.7-2_amd64.deb
libghc-data-accessor-template-doc_0.2.1.7-2_all.deb
  to 
main/h/haskell-data-accessor-template/libghc-data-accessor-template-doc_0.2.1.7-2_all.deb
libghc-data-accessor-template-prof_0.2.1.7-2_amd64.deb
  to 
main/h/haskell-data-accessor-template/libghc-data-accessor-template-prof_0.2.1.7-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxdso-0005qi...@franck.debian.org



Accepted john 1.7.7-2 (source all amd64)

2011-06-16 Thread Ruben Molina
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 Jun 2011 23:23:04 -0500
Source: john
Binary: john john-data
Architecture: source amd64 all
Version: 1.7.7-2
Distribution: unstable
Urgency: low
Maintainer: Ruben Molina rmol...@udea.edu.co
Changed-By: Ruben Molina rmol...@udea.edu.co
Description: 
 john   - active password cracking tool
 john-data  - active password cracking tool - character sets
Changes: 
 john (1.7.7-2) unstable; urgency=low
 .
   * Forcing the 'generic' target for hurd
   * Adding new escaping rules in order to solve FTBFS in armel, mips,
 mipsel, and s390 (all using the 'generic' target)
   * Updating copyright dates to 2011
   * Removing unused patch: single-have_words-fix-1.diff
Checksums-Sha1: 
 dba60e02d81cc7ed180e922d0f6d41db9e171b39 1645 john_1.7.7-2.dsc
 5c6e70e8068715efc71e0ab9892a6fa074d04378 28252 john_1.7.7-2.debian.tar.gz
 0196e6c5b26b4463ea9cdd3125f67794696dc2dd 191984 john_1.7.7-2_amd64.deb
 8783aae24eea0d08c625ee2dfeca31c6c208d44e 652264 john-data_1.7.7-2_all.deb
Checksums-Sha256: 
 ff478a1fdecc750688d90c115d7b71f8e38d9733267179599fe430baef8f67ec 1645 
john_1.7.7-2.dsc
 a38e684d1891bea190f8cb1aca7d190ef8f75a9e354f5ddc5f340fd94024e50f 28252 
john_1.7.7-2.debian.tar.gz
 d297d12308d71d4d379fe32fa969e9d655186e8aeb04d84ca6a127fce3dbb4eb 191984 
john_1.7.7-2_amd64.deb
 9acad8ed1a4473f031951bab89ea8ecbbcad23ee50e054c7292d14657caa6a16 652264 
john-data_1.7.7-2_all.deb
Files: 
 0ee16845f3286742422d106363395302 1645 admin optional john_1.7.7-2.dsc
 d70493299e9a7c14830db18ce8ff1c7c 28252 admin optional 
john_1.7.7-2.debian.tar.gz
 800de03fd8aac7696ec73e938353be44 191984 admin optional john_1.7.7-2_amd64.deb
 71e555d60b1aa0ce16e0ed65e1336371 652264 admin optional 
john-data_1.7.7-2_all.deb

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

iQIcBAEBCAAGBQJN+gdwAAoJEMW9bI8ildUCldsP/RGBcs3ft/Gi3S3SB79/p5sD
4TzdlaTWOfWHadgspMedRAty+e01S0TFaPJr9XCW/6FfcX8DzW4w/am1HiQQo5xb
WNH7ExtR0ccdn8JYpII5D0lTwoA6RR5JUy1vFqE2kHknuTtnlYp4nnlKhWO6HbQt
fWGgCiUdmojRwppk+mtnh0/PZ3+rYndjs3cCcXhf/bY7rLcx5y+7IfzCY34n9F1T
4aT47Gl4Ez+LQtO+zAG9eaVCXWU7ecycHTSN3kD1wUV0AaKt2ikgQ1Y6kT0andQd
0njVj+oDbZNe/Mn3lsAYjjKh4uB18tWYxn+0nuKkjuuBTvzedYZj5MHysxxaHGGF
KkzFz9VYHVjaQOwiXTIKjsAWpthJER3yVI5g+VGfAo2hWFnI7odUjAUSHf3q7uqH
QH84EEZrD8SpWlOHQnfO5KZOioTKV6SEN/HzDc2j7WybLQXzKRGWjY7L078hpA8R
QgZPG0XOKcJFwoZcylkRQ5XrXNS9gyB5X2jolUl8BwwErvvdHSxEpu1aJOiGtDGu
H586a9Vijc4fcfdEaGMqIxJ4sBjTOp+yCg44W6j+5vWoSbNPHN7FfUheIqHiQlVM
nJLipCM5mvZgBUrs6SFEOXiQUSMmjG7vnhcmAPxHWURX0jEe7IiFIOODscQgnU/T
FvoEsFnUw5EBomsD4w8I
=3oFs
-END PGP SIGNATURE-


Accepted:
john-data_1.7.7-2_all.deb
  to main/j/john/john-data_1.7.7-2_all.deb
john_1.7.7-2.debian.tar.gz
  to main/j/john/john_1.7.7-2.debian.tar.gz
john_1.7.7-2.dsc
  to main/j/john/john_1.7.7-2.dsc
john_1.7.7-2_amd64.deb
  to main/j/john/john_1.7.7-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxdsa-0005tc...@franck.debian.org



Accepted nvidia-graphics-drivers 275.09.07-1 (source i386)

2011-06-16 Thread Andreas Beckmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 Jun 2011 17:13:16 +0200
Source: nvidia-graphics-drivers
Binary: nvidia-glx nvidia-glx-ia32 libgl1-nvidia-glx libgl1-nvidia-glx-ia32 
nvidia-kernel-dkms nvidia-kernel-source nvidia-vdpau-driver 
nvidia-vdpau-driver-ia32 nvidia-smi libcuda1 libcuda1-ia32 libnvidia-compiler 
libnvidia-compiler-ia32 libnvcuvid1 libnvidia-ml1 nvidia-opencl-common 
nvidia-opencl-icd nvidia-opencl-icd-ia32 nvidia-libopencl1 
nvidia-libopencl1-ia32 libgl1-nvidia-alternatives 
libgl1-nvidia-alternatives-ia32 libglx-nvidia-alternatives
Architecture: source i386
Version: 275.09.07-1
Distribution: unstable
Urgency: low
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Andreas Beckmann deb...@abeckmann.de
Description: 
 libcuda1   - NVIDIA CUDA runtime library
 libcuda1-ia32 - NVIDIA CUDA runtime library (32-bit)
 libgl1-nvidia-alternatives - simplifies replacing MESA libGL with GPU vendor 
libraries
 libgl1-nvidia-alternatives-ia32 - simplifies replacing MESA libGL with GPU 
vendor libraries (32-bit
 libgl1-nvidia-glx - NVIDIA binary OpenGL libraries${nvidia:LegacyDesc}
 libgl1-nvidia-glx-ia32 - NVIDIA binary OpenGL 32-bit 
libraries${nvidia:LegacyDesc}
 libglx-nvidia-alternatives - simplifies replacing Xorg module libglx.so with 
GPU vendor librar
 libnvcuvid1 - NVIDIA CUDA nvcuvid runtime library
 libnvidia-compiler - NVIDIA runtime compiler library
 libnvidia-compiler-ia32 - NVIDIA runtime compiler library (32-bit)
 libnvidia-ml1 - NVIDIA management library (NVML) runtime library
 nvidia-glx - NVIDIA binary Xorg driver${nvidia:LegacyDesc}
 nvidia-glx-ia32 - NVIDIA 32-bit libraries (transitional package)
 nvidia-kernel-dkms - NVIDIA binary kernel module DKMS 
source${nvidia:LegacyDesc}
 nvidia-kernel-source - NVIDIA binary kernel module source${nvidia:LegacyDesc}
 nvidia-libopencl1 - NVIDIA OpenCL library
 nvidia-libopencl1-ia32 - NVIDIA OpenCL 32-bit library
 nvidia-opencl-common - NVIDIA OpenCL driver
 nvidia-opencl-icd - NVIDIA OpenCL ICD
 nvidia-opencl-icd-ia32 - NVIDIA OpenCL ICD (32-bit)
 nvidia-smi - NVIDIA System Management Interface
 nvidia-vdpau-driver - NVIDIA vdpau driver
 nvidia-vdpau-driver-ia32 - NVIDIA vdpau 32-bit driver
Closes: 629203 629808
Changes: 
 nvidia-graphics-drivers (275.09.07-1) unstable; urgency=low
 .
   [ Andreas Beckmann ]
   * New upstream release 275.09.07 (2011-06-14).
 - Fixed a bug that caused desktop corruption in GNOME 3 after a
   VT-switch or suspend/resume cycle.  (Closes: #629203)
 - Added support for the following GPUs: GeForce GT 545, GeForce GTX 560,
   GeForce GTX 560M, GeForce 315M, GeForce 320M, GeForce 410M,
   Quadro 3000M, Quadro 4000M, Quadro 5010M.
   * Upload to unstable.
   * Update symbols control files.
   * Refresh linux3.patch, upstream partially added Linux 3 support.
   * Partially merge 195.36.31-91 (UNRELEASED).
 - Add Pre-Depends: nvidia-installer-cleanup to nvidia-kernel-dkms.
 - Let nvidia-opencl-icd{,-ia32} depend on libnvidia-compiler{,-ia32},
   OpenCL code usually requires compilation at runtime.  (Closes: #629808)
 - Temporarily add versioned Breaks: libgl1-mesa-glx (= 7.10.2-4~), we need
   to rework the diversions for cooperation with multiarch enabled MESA
   libraries.
Checksums-Sha1: 
 0b39ff4614b7c2f3ceecfe7a7ab9e3c699eb5b07 2305 
nvidia-graphics-drivers_275.09.07-1.dsc
 075b6c5b1a07ca87f7d6d771f562ad45e58bcef7 80080222 
nvidia-graphics-drivers_275.09.07.orig.tar.gz
 3b470a7f72a6f01780e3aa909dc64490438e6adb 87153 
nvidia-graphics-drivers_275.09.07-1.debian.tar.gz
 70542ea4fa825c6c6af039de3c6875602df61ba5 3801732 
nvidia-glx_275.09.07-1_i386.deb
 ee5b55321d3deb200538800200b4b2fae79c7285 788 
libgl1-nvidia-glx_275.09.07-1_i386.deb
 fb230546dd7a172e771e2ab282c7404700107d34 8970332 
nvidia-kernel-dkms_275.09.07-1_i386.deb
 1c9955b09f12afcfbf1af83ee5fcb0d02e6805ef 8360450 
nvidia-kernel-source_275.09.07-1_i386.deb
 f7c6a9a107487501811fb33d828a5f0b53897b22 1044582 
nvidia-vdpau-driver_275.09.07-1_i386.deb
 f201b61392722e83f1aa6dbaeb41862d87720b08 89578 nvidia-smi_275.09.07-1_i386.deb
 0202da4c14e64c2abbbaa856657567a1e4bb0b68 4493488 libcuda1_275.09.07-1_i386.deb
 d74772d47abcb01c6723e3abd1ee9194d3702590 7413006 
libnvidia-compiler_275.09.07-1_i386.deb
 465b87bd908b5b82ca2b20a6411e78127327c39f 1168426 
libnvcuvid1_275.09.07-1_i386.deb
 c35841bfd15869108d908f5d8a05bf574e08c409 100324 
libnvidia-ml1_275.09.07-1_i386.deb
 9f1352f52ef1779db2c4f86e81cfc87976054479 63644 
nvidia-opencl-common_275.09.07-1_i386.deb
 8ba2105657764ec3da1e1538d06387d85771cf10 63524 
nvidia-opencl-icd_275.09.07-1_i386.deb
 056663c9fda68d14abe43e99ae13f5409176ee35 71486 
nvidia-libopencl1_275.09.07-1_i386.deb
 f831ce7a9b419d19dcf4512ea877b7c3366f8498 65720 
libgl1-nvidia-alternatives_275.09.07-1_i386.deb
 8c538c87518bc63db06c2b9466156eabcf623882 65608 
libglx-nvidia-alternatives_275.09.07-1_i386.deb
Checksums-Sha256: 
 

Accepted nvidia-settings 275.09.07-1 (source i386)

2011-06-16 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 07:27:48 -0700
Source: nvidia-settings
Binary: nvidia-settings libxnvctrl-dev
Architecture: source i386
Version: 275.09.07-1
Distribution: unstable
Urgency: low
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 libxnvctrl-dev - NV-CONTROL X extension (development files)
 nvidia-settings - Tool for configuring the NVIDIA graphics driver
Changes: 
 nvidia-settings (275.09.07-1) unstable; urgency=low
 .
   [ Andreas Beckmann ]
   * New upstream release.
   * Drop dependency on nvidia-common in favor of nvidia-installer-cleanup.
 .
   [ Russ Allbery ]
   * Add DM-Upload-Allowed: yes.
Checksums-Sha1: 
 0ef34a68a9facd6ca752bbef3dc95a7dfbb33ea9 1794 nvidia-settings_275.09.07-1.dsc
 d8ead4eb6ff57c18ddbbb6d9e02991d2ef9a5d80 1543808 
nvidia-settings_275.09.07.orig.tar.bz2
 8621af8c72379fd98b24115b95711581149036ec 11989 
nvidia-settings_275.09.07-1.debian.tar.gz
 e4de844ca9e1638a01b556e57d52bf4c43556300 851892 
nvidia-settings_275.09.07-1_i386.deb
 d9561e9815266a6a26de51806a8f26e4bb0376b7 91124 
libxnvctrl-dev_275.09.07-1_i386.deb
Checksums-Sha256: 
 b4abbe8b0302755f65205d012e9693c286c6dc028943dbbd8e259a9301f79ee5 1794 
nvidia-settings_275.09.07-1.dsc
 958bb21a9d76a5297cee322679e0b6368c7cd65536f77ae90cc0ad4c9733deb7 1543808 
nvidia-settings_275.09.07.orig.tar.bz2
 cc540b82898b43cf4cc1437c9d90db92940512d17121926d51b1bf2f7282bbb2 11989 
nvidia-settings_275.09.07-1.debian.tar.gz
 64539cff5ecaf056ef9537b095429ba33dbcf2f60b6e6379384dafc053c3d748 851892 
nvidia-settings_275.09.07-1_i386.deb
 481938a81f4ca189c127ea8ecb198d107a2e1cc148a4bf9389d3312d79174e0f 91124 
libxnvctrl-dev_275.09.07-1_i386.deb
Files: 
 844092258d1af1a796a14d4c134b18eb 1794 contrib/x11 optional 
nvidia-settings_275.09.07-1.dsc
 ebfe17b431ff121d53a41535f59aeb99 1543808 contrib/x11 optional 
nvidia-settings_275.09.07.orig.tar.bz2
 69984f727fc242d561b75efbbf86b233 11989 contrib/x11 optional 
nvidia-settings_275.09.07-1.debian.tar.gz
 856058e6daf0852b186bb5dce17665e8 851892 contrib/x11 optional 
nvidia-settings_275.09.07-1_i386.deb
 e675f2059508fd4f68ff54ddfdb51cfa 91124 contrib/libdevel optional 
libxnvctrl-dev_275.09.07-1_i386.deb

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

iQEcBAEBCAAGBQJN+hSNAAoJEH2AMVxXNt51rHoIAI8ENgeBqmAtp4546oYL5xdm
Z0wWomEEGr3wf47L+eNXklHmkNOyBFsqDyfbVsUWFNPZ41UHarOhUDTxghoKlYxf
czyY9x1bFG/3n+K423QfkkbG5NB3NqGvO8lhj5wzx23dgzVv0sFhroRTWksBsRtL
bGSjH28wGDpsmQJppW+HHXSos5X1ED7eohxDF/miNe60/pRyLP/4pAVHYvv3gUfc
rsAH/SvAbxIO9mTwsJ+h/EDxo+oj9eUq9SrUegcHcaasZRPtIX9F+qDwAQyDg6gZ
JLVil6WN/zGY5ecX89YY2ccaVpTrdtYJ/AwpGbgRpFebLoRX5HNs4yyzVGWdpwI=
=iJcS
-END PGP SIGNATURE-


Accepted:
libxnvctrl-dev_275.09.07-1_i386.deb
  to contrib/n/nvidia-settings/libxnvctrl-dev_275.09.07-1_i386.deb
nvidia-settings_275.09.07-1.debian.tar.gz
  to contrib/n/nvidia-settings/nvidia-settings_275.09.07-1.debian.tar.gz
nvidia-settings_275.09.07-1.dsc
  to contrib/n/nvidia-settings/nvidia-settings_275.09.07-1.dsc
nvidia-settings_275.09.07-1_i386.deb
  to contrib/n/nvidia-settings/nvidia-settings_275.09.07-1_i386.deb
nvidia-settings_275.09.07.orig.tar.bz2
  to contrib/n/nvidia-settings/nvidia-settings_275.09.07.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxe0s-0006ay...@franck.debian.org



Accepted nvidia-xconfig 275.09.07-1 (source i386)

2011-06-16 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 07:36:43 -0700
Source: nvidia-xconfig
Binary: nvidia-xconfig
Architecture: source i386
Version: 275.09.07-1
Distribution: unstable
Urgency: low
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 nvidia-xconfig - X configuration tool for non-free NVIDIA drivers
Changes: 
 nvidia-xconfig (275.09.07-1) unstable; urgency=low
 .
   [ Andreas Beckmann ]
   * New upstream release.
   * Drop dependency on nvidia-common in favor of nvidia-installer-cleanup.
 .
   [ Russ Allbery ]
   * Add DM-Upload-Allowed: yes.
Checksums-Sha1: 
 b3e4cf6685c42d9e1890fa16c06cfbce43673e95 1704 nvidia-xconfig_275.09.07-1.dsc
 e4aa5061c89100b6d05a78e65f72be26e14be47c 98406 
nvidia-xconfig_275.09.07.orig.tar.bz2
 27a2bf3f00ca19028798698eac7785ae93d449a5 5639 
nvidia-xconfig_275.09.07-1.debian.tar.gz
 1cf8a21f9e77b66824eb7fd52ad4ccf619dd2df0 79476 
nvidia-xconfig_275.09.07-1_i386.deb
Checksums-Sha256: 
 473dc68f8b2b02db45d0db87cd37dd514620642a9162ba253246f394cc6711e7 1704 
nvidia-xconfig_275.09.07-1.dsc
 2a3deee90be9c099914a8d65ab8bda8ea7a86e582bf91ced8457c09b3a69e94d 98406 
nvidia-xconfig_275.09.07.orig.tar.bz2
 bbb002ad05431ba6c2151138709554be968cf30406f56ab285e5759ff49e1081 5639 
nvidia-xconfig_275.09.07-1.debian.tar.gz
 8acde974e9f1be782eb4d1fe1bc5a94af453e311d65e768e840fd348148e2148 79476 
nvidia-xconfig_275.09.07-1_i386.deb
Files: 
 a12b63f5dde7b26853ee1fba7e0fca42 1704 contrib/x11 extra 
nvidia-xconfig_275.09.07-1.dsc
 1f3277830932034f4e348d3040c13629 98406 contrib/x11 extra 
nvidia-xconfig_275.09.07.orig.tar.bz2
 964089b065338890735aac45a366a023 5639 contrib/x11 extra 
nvidia-xconfig_275.09.07-1.debian.tar.gz
 8bfca8dbada4e495cb20068b04cb6dd6 79476 contrib/x11 extra 
nvidia-xconfig_275.09.07-1_i386.deb

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

iQEcBAEBCAAGBQJN+hY/AAoJEH2AMVxXNt51TI0IAKMDiiLrZTkRxFrARCgD+CRR
rcnakzbYLp86XlIVL51DO9TxUDvFxt3AyRMxWSuXl2RfRyanC1vulTSjYCNRV8Ko
7oarbmHcnTC1WIovVM3vGuRCMjDpmnrXgyJ+Nfaj/ipmcS6Li8fsfazY3o+YcR3B
Rw+QgErjRngXLk1Xa6A+LIcJhGHjDgh6hIB9lVaQq4q05pCSeCi/C0KT+g2UFc00
ngNJu71uygDBLNwl+XP5TBXUAvjBB363MjAcPvTl8Ua3tQ4smXglhVu7bUO7LpCd
7i40DnksqN2Wh7TKuetkEDlb2FL4iUXJMp6vc7bMvpzPnJyXJCqEOza2BSpTHP8=
=qJss
-END PGP SIGNATURE-


Accepted:
nvidia-xconfig_275.09.07-1.debian.tar.gz
  to contrib/n/nvidia-xconfig/nvidia-xconfig_275.09.07-1.debian.tar.gz
nvidia-xconfig_275.09.07-1.dsc
  to contrib/n/nvidia-xconfig/nvidia-xconfig_275.09.07-1.dsc
nvidia-xconfig_275.09.07-1_i386.deb
  to contrib/n/nvidia-xconfig/nvidia-xconfig_275.09.07-1_i386.deb
nvidia-xconfig_275.09.07.orig.tar.bz2
  to contrib/n/nvidia-xconfig/nvidia-xconfig_275.09.07.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxe13-0006ck...@franck.debian.org



Accepted cwidget 0.5.16-3.1 (source i386 all)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 16:31:11 +0200
Source: cwidget
Binary: libcwidget3 libcwidget3-dbg libcwidget-dev libcwidget-doc
Architecture: source i386 all
Version: 0.5.16-3.1
Distribution: unstable
Urgency: low
Maintainer: Daniel Burrows dburr...@debian.org
Changed-By: Luk Claes l...@debian.org
Description: 
 libcwidget-dev - high-level terminal interface library for C++ (development 
files)
 libcwidget-doc - high-level terminal interface library for C++ (documentation)
 libcwidget3 - high-level terminal interface library for C++ (runtime files)
 libcwidget3-dbg - high-level terminal interface library for C++ (debugging 
files)
Closes: 621184
Changes: 
 cwidget (0.5.16-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621184).
Checksums-Sha1: 
 46ef51d61bae8e9e827361a7ceb4656a85180ac2 1344 cwidget_0.5.16-3.1.dsc
 df0f97d2d3e0e911c87f77da194e8bccb6208119 5001 cwidget_0.5.16-3.1.diff.gz
 bad399d533ec1671c2d653f0f281d1c9680b2eb3 405226 libcwidget3_0.5.16-3.1_i386.deb
 95a77d9ef8f27edc9ce4bf6b9bd48ed7b990bbbd 2182908 
libcwidget3-dbg_0.5.16-3.1_i386.deb
 83b8c4825a2abb50574d4324784df6ec136027ef 631046 
libcwidget-dev_0.5.16-3.1_i386.deb
 0e50fb931031649e6d06039e9e82b077d875ef58 658448 
libcwidget-doc_0.5.16-3.1_all.deb
Checksums-Sha256: 
 2401f3b27e8b993ada8abae305c87433d34f028bea63c719209ea693383cbc94 1344 
cwidget_0.5.16-3.1.dsc
 7fed47eb2d775e31e65f2e0332d6745caebda72044a306e83f2f5037efc4e23d 5001 
cwidget_0.5.16-3.1.diff.gz
 efcbc00210702e1cd30fc5ce6c08a262b8388aad7ed36c32fcf7ee746eece83c 405226 
libcwidget3_0.5.16-3.1_i386.deb
 4069c6c28edfbe2083f8ad9e1212b2dace3df5e8ef14d7c08295e9ff9b103732 2182908 
libcwidget3-dbg_0.5.16-3.1_i386.deb
 9691b17f35fc5fe459200991617b8650616611776fe5b5bb7ab8752c14db49e2 631046 
libcwidget-dev_0.5.16-3.1_i386.deb
 6b84a93d418761722d16c03c65e3fbbf05fc0abffddea21b105936dc2264744b 658448 
libcwidget-doc_0.5.16-3.1_all.deb
Files: 
 098fd31e196335c090c1d01ef71ab48e 1344 libs extra cwidget_0.5.16-3.1.dsc
 fab16be36176058e9087558c539a4e33 5001 libs extra cwidget_0.5.16-3.1.diff.gz
 04bd72ccc32a2b77c124f850b0e92784 405226 libs important 
libcwidget3_0.5.16-3.1_i386.deb
 5e4fab465d4c79fce8ec90c0c038bd76 2182908 debug extra 
libcwidget3-dbg_0.5.16-3.1_i386.deb
 53a45eafc3b114b3d15485cd87918341 631046 libdevel extra 
libcwidget-dev_0.5.16-3.1_i386.deb
 c6fd4fd4355e972a51c5030319edf21a 658448 doc extra 
libcwidget-doc_0.5.16-3.1_all.deb

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

iEYEARECAAYFAk3zgAYACgkQ5UTeB5t8Mo1PRQCgrs2ZSw9EsRG0NKAemE8N7qxg
3t4AoI29tizAbJS+WZIzvtuWVPo8D4mC
=CpfE
-END PGP SIGNATURE-


Accepted:
cwidget_0.5.16-3.1.diff.gz
  to main/c/cwidget/cwidget_0.5.16-3.1.diff.gz
cwidget_0.5.16-3.1.dsc
  to main/c/cwidget/cwidget_0.5.16-3.1.dsc
libcwidget-dev_0.5.16-3.1_i386.deb
  to main/c/cwidget/libcwidget-dev_0.5.16-3.1_i386.deb
libcwidget-doc_0.5.16-3.1_all.deb
  to main/c/cwidget/libcwidget-doc_0.5.16-3.1_all.deb
libcwidget3-dbg_0.5.16-3.1_i386.deb
  to main/c/cwidget/libcwidget3-dbg_0.5.16-3.1_i386.deb
libcwidget3_0.5.16-3.1_i386.deb
  to main/c/cwidget/libcwidget3_0.5.16-3.1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxekb-0006mh...@franck.debian.org



Accepted jigit 1.19-1 (source amd64)

2011-06-16 Thread Steve McIntyre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 15:36:51 +0100
Source: jigit
Binary: jigit libjte1 libjte-dev
Architecture: source amd64
Version: 1.19-1
Distribution: unstable
Urgency: low
Maintainer: Steve McIntyre 93...@debian.org
Changed-By: Steve McIntyre 93...@debian.org
Description: 
 jigit  - tools for working with jigdo files
 libjte-dev - Jigdo Template Export - development
 libjte1- Jigdo Template Export - runtime library
Closes: 506449
Changes: 
 jigit (1.19-1) unstable; urgency=low
 .
   * New upstream release.
 + Improved error-handling in mkimage and libjte.
   - mkjigsnap rewrite:
   - merge two old implementations
   - switch to perl: cleaner code, much faster snapshot generation
   - added -v (verbose) and -N (dry-run) options
 + Put AC_CONFIG_MACRO_DIR in a better place in the libjte configure
   script.
 + Remove -Werror from the Makefile - gcc is getting more and more
   pedantic with every release, and this may cause package builds to
   fail.
   * Removed the jigit script itself - it hasn't worked in ages, and just
 doesn't seem to be useful any more. Closes: #506449
Checksums-Sha1: 
 b26e31265755d2b31bfe92c97e09143211e76078 1659 jigit_1.19-1.dsc
 043d00d58d8f635facb413f35724054e5c38bc79 424730 jigit_1.19.orig.tar.gz
 a5e0c5339f323b1d2b72e0a2e47d3f7ba67e4191 3630 jigit_1.19-1.diff.gz
 baceaaea1495e516f19b23279f9c42758ab510c1 37574 jigit_1.19-1_amd64.deb
 559768b7a877f162ae0ad7e7a5110ecbec79d8ab 30382 libjte1_1.19-1_amd64.deb
 5628d695c8ba68f6952fd72aa179528816a3e701 37130 libjte-dev_1.19-1_amd64.deb
Checksums-Sha256: 
 def0d751f2f33968a8dfae1d0eb837fc03c60619152962321f6201b90bd3abf1 1659 
jigit_1.19-1.dsc
 2b04bfbdeebb587794e73fcce1bd65958e1bd2fff9f02281b29dd54b4f516619 424730 
jigit_1.19.orig.tar.gz
 3949f37a64f083c2d0385e146646e0d7fe5ab360f2b8ebbb59083a9b251db756 3630 
jigit_1.19-1.diff.gz
 1b5c8c3177601e25ba03ae73f3bc0bd46b983dc7fe293486edd71039341a73cc 37574 
jigit_1.19-1_amd64.deb
 cc26c877740814844ccd15777c25a466d88c7d2d19f663956fc74af0c4c6 30382 
libjte1_1.19-1_amd64.deb
 5c8903e1d3f0c810c4a6f234edb61e21107a2e5739938d6ed53f018977d21b0d 37130 
libjte-dev_1.19-1_amd64.deb
Files: 
 8ec39ba8c98e411dfa0ac7199d0b6174 1659 utils extra jigit_1.19-1.dsc
 d3e8777dcf23e2f877a24e560c4b97b0 424730 utils extra jigit_1.19.orig.tar.gz
 186ccaab09c8526c65fa9407f262eea6 3630 utils extra jigit_1.19-1.diff.gz
 d73db428fe093360cde958d8f8b09323 37574 utils extra jigit_1.19-1_amd64.deb
 302b0b4720639a6a7c6a82461bdbd37a 30382 libs extra libjte1_1.19-1_amd64.deb
 34cf142fcad5855bcde4caca7307cf41 37130 libdevel extra 
libjte-dev_1.19-1_amd64.deb

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

iQIcBAEBCAAGBQJN+hjaAAoJEFh5eVc0QmhO4/oP/0yLR632nXSujvts2pS0z5D0
2yB8dcQ6k2nQsNBhQTcy4OocFjpobEFIbxTf+mHPrNEWWYFASkZ8aNH++8jbm5f7
NlFCptdT3jadTjdJFzJKtwxig8UU4boNJ4/szzLwZXgvuSDaeESJFqbqwzJj0HJe
6W6lcdK9t2vw4UWhERolVsreyo06vhRcqkaEnN33EvF0Q/f+8xq4BfU2B+acXepS
1A/HqTiT1OWTMcOR71cwLvIUxXN9E7bGQg4XpTS0vJ6nV8N4lvC1t+f8B8Mb0RG1
M7kJwnMUe2sdJe2h3NEwWaTg8enKKWywRdtCHzD0OxEijnaXG4mCdm03Q21vj1GR
baXr5jORVQj5vmghDHwoqdUjeLtO7USe40LpHqHrqVGXl9LXn6CBIwAvhz0q87Py
i/OvxWKOdwxVA9ThusiVd/Vx/PVU/0mTTjgpEQuBTqNmYNgEABaiMS6iRYvwNhVN
+yjOF6wrT+axOO2zfmdJgCVQm10SSEEkqAy7fW0nnuUKsBY2rSqGoE6Yopyiued6
MlzbdUdqtIm9bmXAosf7/IRGXWcrZ31ktSLQbQgopt9YTBX0hTSusZRuwpQkegKq
GJ+VBebcJfhCGUcG0svjWkRFu7lT7GkWr6wlfPrhIzFP5onaPHaWrN+CptqC1iSN
0Yaxrs3swiLA444X7waR
=mkrn
-END PGP SIGNATURE-


Accepted:
jigit_1.19-1.diff.gz
  to main/j/jigit/jigit_1.19-1.diff.gz
jigit_1.19-1.dsc
  to main/j/jigit/jigit_1.19-1.dsc
jigit_1.19-1_amd64.deb
  to main/j/jigit/jigit_1.19-1_amd64.deb
jigit_1.19.orig.tar.gz
  to main/j/jigit/jigit_1.19.orig.tar.gz
libjte-dev_1.19-1_amd64.deb
  to main/j/jigit/libjte-dev_1.19-1_amd64.deb
libjte1_1.19-1_amd64.deb
  to main/j/jigit/libjte1_1.19-1_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxekl-0006qo...@franck.debian.org



Accepted simgrid 3.6~rc3-1 (source i386)

2011-06-16 Thread Martin Quinson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 15:56:18 +0200
Source: simgrid
Binary: simgrid
Architecture: source i386
Version: 3.6~rc3-1
Distribution: unstable
Urgency: low
Maintainer: Lucas Nussbaum lu...@lucas-nussbaum.net
Changed-By: Martin Quinson mquin...@debian.org
Description: 
 simgrid- Toolkit for scalable simulation of distributed applications
Changes: 
 simgrid (3.6~rc3-1) unstable; urgency=low
 .
   * New upstream version: Third release candidate to 3.6
 - disable the tests that are not to be run in release settings
 - fix packaging issues, mainly impacting MacOS X users
Checksums-Sha1: 
 8af8df2071e9ab83dce3417b733ba3fc7b2c456c 1909 simgrid_3.6~rc3-1.dsc
 65d6a9381531b3d6018ab1d3702c2506f21df5b6 3994570 simgrid_3.6~rc3.orig.tar.gz
 3485cad711dc460a45c64b9fcd12443087dcb721 6745 simgrid_3.6~rc3-1.debian.tar.gz
 cba3cc798e5e333d3a34574c479a8f1dbe442934 3367362 simgrid_3.6~rc3-1_i386.deb
Checksums-Sha256: 
 545d8e3ac2e8935e1f1e38d3a20083172223cb01166565c1fc8471f92c08fea7 1909 
simgrid_3.6~rc3-1.dsc
 f35b73589f58c21939a76bdd990e583d0e4cfb8bcf0ab7de5bc91be416b2dbec 3994570 
simgrid_3.6~rc3.orig.tar.gz
 cb535fc86c8dd5565c1b829d32ab93c8d58cbdc3032ad4c2139ed08284eb4223 6745 
simgrid_3.6~rc3-1.debian.tar.gz
 a61258a34654e325dc609fce1ec24230ca658e39636148caef8c0e0d9163716d 3367362 
simgrid_3.6~rc3-1_i386.deb
Files: 
 1801d0bcde604c5b7db40b4f38e810cd 1909 science extra simgrid_3.6~rc3-1.dsc
 bb0b0f81e2ed30ad091f525a62697463 3994570 science extra 
simgrid_3.6~rc3.orig.tar.gz
 a9c62db094cff5b45ceceae598b1c66b 6745 science extra 
simgrid_3.6~rc3-1.debian.tar.gz
 521a41da2a14508c6aa9ffbe320dce90 3367362 science extra 
simgrid_3.6~rc3-1_i386.deb

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

iQIcBAEBCAAGBQJN+hjFAAoJEJi9lyRPc76nVm8P/0DOpUyPWEErAhDZjc807MZv
7irfVP7QqjoZOChCL/dITtPFW8c7U8nYWC5CS9cPm+7y68NZwj4J6Ys3SE5odre3
TRXwElY52RqQBDh+xs8R1uoXffboFVbCm5Ea6Ltry84xF5UMAJdLYI4YZvO8TOxt
b/lMU823R+WnuSeXnnJXHc7l6+LXIlwL9YOCaCMbWNZo0U8KmRqlbF49bgmpvQaM
L/28MMyEH7QVHw333fqnJzY81mpVxNWrt0oqFs3yTXhi0RslqDNCrXnPrLywiFQB
W8lJfwTOZO9oTQA5nkf7wkmHAhjxx7EkmyDDKJVZ5JpbgXngy7PaZAyqkwCUpZOb
ekZwJopSJP76Cp9bib0GZiklOQBFGeSz6BtY0wc9Y6tnqagZXY1q7l5LZmNOXkJL
578K1oCZEoQPJ1AwSlhlkzgNUZwQ5ESSqvknYTc2Q6YT9ynxerxBpM61JCUnTaeH
XhKzuI52BMem/Ze5O9tIwLLWPloRuvitnuEhU9J7OOfk0WSE/cSzSDpkXhKyaGq1
/q1CUaSqzvRhnTVpB9zwESd2KttCSAT4RwYA08vgqN9U2W6M9y6H9NkJMgZ+WeuC
zZEJBWIV+Jrw//LR9w2hqWLXwLa1cd2vhWau91OyyX1JsQxHdkoWK/aI4rLH3P3g
nM21oiaoOw/BmFBaA3M7
=YGcc
-END PGP SIGNATURE-


Accepted:
simgrid_3.6~rc3-1.debian.tar.gz
  to main/s/simgrid/simgrid_3.6~rc3-1.debian.tar.gz
simgrid_3.6~rc3-1.dsc
  to main/s/simgrid/simgrid_3.6~rc3-1.dsc
simgrid_3.6~rc3-1_i386.deb
  to main/s/simgrid/simgrid_3.6~rc3-1_i386.deb
simgrid_3.6~rc3.orig.tar.gz
  to main/s/simgrid/simgrid_3.6~rc3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxekq-0006uw...@franck.debian.org



Accepted augeas 0.8.1-2 (source all amd64)

2011-06-16 Thread Nicolas Valcárcel Scerpella
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 13 Jun 2011 14:42:12 -0400
Source: augeas
Binary: augeas-tools libaugeas-dev libaugeas0 augeas-dbg augeas-lenses 
augeas-doc
Architecture: source amd64 all
Version: 0.8.1-2
Distribution: unstable
Urgency: low
Maintainer: Nicolas Valcárcel Scerpella nicolas.valcar...@canonical.com
Changed-By: Nicolas Valcárcel Scerpella nicolas.valcar...@canonical.com
Description: 
 augeas-dbg - Debugging symbols for libaugeas0
 augeas-doc - Augeas lenses documentation
 augeas-lenses - Set of lenses needed by libaugeas0 to parse config files
 augeas-tools - Augeas command line tools
 libaugeas-dev - Development files for writing applications based on libaugeas0
 libaugeas0 - Augeas configuration editing library and API
Closes: 630256
Changes: 
 augeas (0.8.1-2) unstable; urgency=low
 .
   * debian/patches/test-readlink-errno.patch: On linux kernels 2.6.39
 one of the readlink tests fails with EINVAL, rather than the previous
 (expected) behaviour of ENOENT; causing FTBFS.  This patch accepts
 both behaviours resolving failure. Thanks to Dave Walker for the patch
 (Closes: #630256)
Checksums-Sha1: 
 6afc24f62e185851f7cc65d9a339060f3818ad75 1718 augeas_0.8.1-2.dsc
 2477150695720fb33a5af7e17eb678ee626ea3c6 9121 augeas_0.8.1-2.debian.tar.gz
 816fe87865e6d0ad2fb76ff963940f8d6fc1b41f 43240 augeas-tools_0.8.1-2_amd64.deb
 1f6ee14d9f1eb47870ef3eab1eac122ce2be64cc 27462 libaugeas-dev_0.8.1-2_amd64.deb
 7c822b354fde5b27a12da48c1b157dedc8a127bf 175148 libaugeas0_0.8.1-2_amd64.deb
 c3627f71e3ff8db9ada37c6faf3e718d29c4c8f5 370962 augeas-dbg_0.8.1-2_amd64.deb
 914712614f5a868f4ef09646cd26bd228b169b9f 161278 augeas-lenses_0.8.1-2_all.deb
 8177ee56615e452906c1f0d3fb93bb42fec9e6cc 612486 augeas-doc_0.8.1-2_all.deb
Checksums-Sha256: 
 3bfb63805a241ae9b43a4907bdf526c31de324c153236c006498ac9559d6630e 1718 
augeas_0.8.1-2.dsc
 2729813e3970867ccdab3a81fc7be10b61747254c9902f74312cc68f946697f8 9121 
augeas_0.8.1-2.debian.tar.gz
 d474b52069d2030e8bdc33b781cc2df3d28f00cc04729f6079af08fb5b1e4f93 43240 
augeas-tools_0.8.1-2_amd64.deb
 eaec0ea68d93d222a43a404d35ff05e71d213d14017ca223d1d536ec55e1adfc 27462 
libaugeas-dev_0.8.1-2_amd64.deb
 b2a4cd4b0547fbb1fc2ccc12d7cbceeb7704400b42890d7151a09ef06a0d0337 175148 
libaugeas0_0.8.1-2_amd64.deb
 173596c7295d71ffe65ad66d2fd8d5ace3f4990e1905eb8e1eb999c04008c78d 370962 
augeas-dbg_0.8.1-2_amd64.deb
 c06266a59876b6d3f5768a99ea67717e2961b9bd95d9e37190e8b3d447a595dc 161278 
augeas-lenses_0.8.1-2_all.deb
 d55268c3d06e756cc66d57fda160e75d5737b036e3ef0ffcca4b110fb0ad8613 612486 
augeas-doc_0.8.1-2_all.deb
Files: 
 b57393e8a6df54758c71bc89ca360c33 1718 libs optional augeas_0.8.1-2.dsc
 0c833ad6078117faa558cd8e718c8ac6 9121 libs optional 
augeas_0.8.1-2.debian.tar.gz
 08871b4d211ccead26a4e917201e58f8 43240 admin optional 
augeas-tools_0.8.1-2_amd64.deb
 3e60fdd3a36b919ed5501d4bbdf74d08 27462 libdevel optional 
libaugeas-dev_0.8.1-2_amd64.deb
 e09037125fd01b8bf28dafa46a5877e5 175148 libs optional 
libaugeas0_0.8.1-2_amd64.deb
 ecf113f9600d2fca1e5e06457d3807f5 370962 debug extra 
augeas-dbg_0.8.1-2_amd64.deb
 56679c38e11ad68bbe1ab640c133c0bc 161278 misc optional 
augeas-lenses_0.8.1-2_all.deb
 99c2a996217cb320f003bae0479e642e 612486 doc optional augeas-doc_0.8.1-2_all.deb

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

iQEcBAEBCAAGBQJN+hlIAAoJEFJOw83vWElwwEAH/0c+j8Aeao+jOsbS69sqLxx2
9FAsRtwMLVha2H143ePZk+NyVePBLtUL8eractwX79dVLRXwwvtqiMFoPfLNznPE
GKaAkRoh59h+uBvLa6Lsd2jkPCkUyiqUIJMi2PuMQJ4GrqZs0msD0MQOYJNirmzA
qQpDh2gmY0wedR8qlZfrJ05R/lXJ8Y60uBZf7ua73TL1jCU08uZU0hFTGopYn7j6
+b3gA7yabHXxUo9bXIwI7h3peCMoAxgFPTIZ2t4bxqffCxz9NTdzuhA2Cc/FjfbO
u2u2lkaXv8F1AwY37vrDWjln0jgS6iL6MlMlnA75LFycTJAt1uRyzduItioKP+k=
=cIXE
-END PGP SIGNATURE-


Accepted:
augeas-dbg_0.8.1-2_amd64.deb
  to main/a/augeas/augeas-dbg_0.8.1-2_amd64.deb
augeas-doc_0.8.1-2_all.deb
  to main/a/augeas/augeas-doc_0.8.1-2_all.deb
augeas-lenses_0.8.1-2_all.deb
  to main/a/augeas/augeas-lenses_0.8.1-2_all.deb
augeas-tools_0.8.1-2_amd64.deb
  to main/a/augeas/augeas-tools_0.8.1-2_amd64.deb
augeas_0.8.1-2.debian.tar.gz
  to main/a/augeas/augeas_0.8.1-2.debian.tar.gz
augeas_0.8.1-2.dsc
  to main/a/augeas/augeas_0.8.1-2.dsc
libaugeas-dev_0.8.1-2_amd64.deb
  to main/a/augeas/libaugeas-dev_0.8.1-2_amd64.deb
libaugeas0_0.8.1-2_amd64.deb
  to main/a/augeas/libaugeas0_0.8.1-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxeyl-0008si...@franck.debian.org



Accepted modsecurity-apache 2.6.0-1 (source i386 all)

2011-06-16 Thread Alberto Gonzalez Iniesta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 13:58:40 +0200
Source: modsecurity-apache
Binary: libapache2-modsecurity libapache-mod-security
Architecture: source i386 all
Version: 2.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Alberto Gonzalez Iniesta a...@inittab.org
Changed-By: Alberto Gonzalez Iniesta a...@inittab.org
Description: 
 libapache-mod-security - Dummy transitional package
 libapache2-modsecurity - Tighten web applications security for Apache
Closes: 607763 627858
Changes: 
 modsecurity-apache (2.6.0-1) unstable; urgency=low
 .
   * New upstream release (Closes: #627858, #607763)
   * Bumped Standards-Version to 3.9.2
Checksums-Sha1: 
 5506d94c51c6e2a3e58a53f074e43193005ace13 1248 modsecurity-apache_2.6.0-1.dsc
 280061a6cb49c955d7371b9526193f68a12ae2ac 1137345 
modsecurity-apache_2.6.0.orig.tar.gz
 1816bd2dd0aaccf3b5cc97a38fd80b5948c44227 9382 
modsecurity-apache_2.6.0-1.debian.tar.gz
 4a99cf30f4b8d2d168217dd35aaa4295aa823395 217754 
libapache2-modsecurity_2.6.0-1_i386.deb
 9d8761e0c8a69790849fb5f1c85962c8c64f3652 9382 
libapache-mod-security_2.6.0-1_all.deb
Checksums-Sha256: 
 da056ff3de7560a8cda5c1e519f4c87cd486b0687d38532538a3833fd72e7390 1248 
modsecurity-apache_2.6.0-1.dsc
 e36d8ca3a67df6def5ef72c1c241d7ea05d5adba87dd2a0bf3da7b28c5e5674e 1137345 
modsecurity-apache_2.6.0.orig.tar.gz
 2ce32a5349195e4d46046f95cfda11f58bdc37b53de64d77ad7d7b411fa4525c 9382 
modsecurity-apache_2.6.0-1.debian.tar.gz
 acd5e6558967d9ae5d5ea342f95590cb725f838eda037ac272443f6063dd5c7f 217754 
libapache2-modsecurity_2.6.0-1_i386.deb
 1e7d80320532c4f7c0f455831c5fad888768526231017256adb384f7f5ed9067 9382 
libapache-mod-security_2.6.0-1_all.deb
Files: 
 479a8a24dfc7c8b797198997b1705762 1248 httpd optional 
modsecurity-apache_2.6.0-1.dsc
 ffb858bd1e523f31adcee30191e013aa 1137345 httpd optional 
modsecurity-apache_2.6.0.orig.tar.gz
 11701cefce237040a5852bcf9aa9f8c6 9382 httpd optional 
modsecurity-apache_2.6.0-1.debian.tar.gz
 3a4b8bc6f86ede9e809eb9fee2273309 217754 httpd optional 
libapache2-modsecurity_2.6.0-1_i386.deb
 cd8d08d3135b512e5c5f91eac9b5e148 9382 oldlibs optional 
libapache-mod-security_2.6.0-1_all.deb

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

iEYEARECAAYFAk36HdsACgkQxRSvjkukAcMdqQCfcjfV7J/v1WQfShx9Q6aewnL5
T/8An3/AOhOwV7FQP5vL0YNLPv1kXuhv
=sVwA
-END PGP SIGNATURE-


Accepted:
libapache-mod-security_2.6.0-1_all.deb
  to main/m/modsecurity-apache/libapache-mod-security_2.6.0-1_all.deb
libapache2-modsecurity_2.6.0-1_i386.deb
  to main/m/modsecurity-apache/libapache2-modsecurity_2.6.0-1_i386.deb
modsecurity-apache_2.6.0-1.debian.tar.gz
  to main/m/modsecurity-apache/modsecurity-apache_2.6.0-1.debian.tar.gz
modsecurity-apache_2.6.0-1.dsc
  to main/m/modsecurity-apache/modsecurity-apache_2.6.0-1.dsc
modsecurity-apache_2.6.0.orig.tar.gz
  to main/m/modsecurity-apache/modsecurity-apache_2.6.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxebj-00013v...@franck.debian.org



Accepted dapl 2.0.19-1.1 (source i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 17:09:30 +0200
Source: dapl
Binary: libdapl-dev libdapl2 dapl2-utils
Architecture: source i386
Version: 2.0.19-1.1
Distribution: unstable
Urgency: low
Maintainer: OFED and Debian Developement and Discussion 
pkg-ofed-de...@lists.alioth.debian.org
Changed-By: Luk Claes l...@debian.org
Description: 
 dapl2-utils - Utilities for use with the DAPL libraries
 libdapl-dev - Development files for the DAPL libraries
 libdapl2   - The Direct Access Programming Library (DAPL)
Closes: 621185
Changes: 
 dapl (2.0.19-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621185).
   * Remove INSTALL symlink and config.log so rebuilds work.
Checksums-Sha1: 
 de0cb21e769fd2b46c77bb8e032b17ae4b10e7df 1298 dapl_2.0.19-1.1.dsc
 aee6719361ed94aff14ac9aa8ea96728eabbd8e0 222704 dapl_2.0.19-1.1.diff.gz
 802c9a696b5363f1f155ea9ce5cecf2513983002 223958 libdapl-dev_2.0.19-1.1_i386.deb
 2d769329df09da60d89126eecbfb481c0e1b6cce 150854 libdapl2_2.0.19-1.1_i386.deb
 6bf3605d77c607cae0a3525b82a8b70b79bfbac8 131894 dapl2-utils_2.0.19-1.1_i386.deb
Checksums-Sha256: 
 13d2ac51c2cb6b31c881cb84cf5cb4a7c557f88ae4bef2f36d670209945b 1298 
dapl_2.0.19-1.1.dsc
 b7df5d49eda0a26b1c0f74f04bb08ac17d0c77d34714db7b624800b61f1a6792 222704 
dapl_2.0.19-1.1.diff.gz
 58fe53ed499acbffc5c1dde7b42e639698b260f947fe1a1409dacc8784523736 223958 
libdapl-dev_2.0.19-1.1_i386.deb
 53e566e1251944c44d670b2ee38e5bcd380fa8e5a1cdf8048d42840c26856682 150854 
libdapl2_2.0.19-1.1_i386.deb
 67994fffd60558d13344d4b38c21bf5e9b4fedf57375fd9b5b20f704923fc90b 131894 
dapl2-utils_2.0.19-1.1_i386.deb
Files: 
 b828ce4f19c73506d32fafd2483e6193 1298 net extra dapl_2.0.19-1.1.dsc
 4db91248198de5f203f4259d9a114ef1 222704 net extra dapl_2.0.19-1.1.diff.gz
 6bd16416b503603ee15cd492028593de 223958 libdevel extra 
libdapl-dev_2.0.19-1.1_i386.deb
 a04a98adf75f20538b4583367e964e71 150854 libs extra libdapl2_2.0.19-1.1_i386.deb
 fc7e310d38c21b33d1b911f65e0520a8 131894 net extra 
dapl2-utils_2.0.19-1.1_i386.deb

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

iEYEARECAAYFAk3zhtoACgkQ5UTeB5t8Mo2IjQCgu1ON/jIe6ra6WyJyiagB/DZ7
GfMAoKDlKE3AxaaXRw2ngpk5SXFLG1os
=KRdC
-END PGP SIGNATURE-


Accepted:
dapl2-utils_2.0.19-1.1_i386.deb
  to main/d/dapl/dapl2-utils_2.0.19-1.1_i386.deb
dapl_2.0.19-1.1.diff.gz
  to main/d/dapl/dapl_2.0.19-1.1.diff.gz
dapl_2.0.19-1.1.dsc
  to main/d/dapl/dapl_2.0.19-1.1.dsc
libdapl-dev_2.0.19-1.1_i386.deb
  to main/d/dapl/libdapl-dev_2.0.19-1.1_i386.deb
libdapl2_2.0.19-1.1_i386.deb
  to main/d/dapl/libdapl2_2.0.19-1.1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxenp-0001tj...@franck.debian.org



Accepted modemmanager 0.4.997-1 (source i386)

2011-06-16 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 17:12:41 +0200
Source: modemmanager
Binary: modemmanager
Architecture: source i386
Version: 0.4.997-1
Distribution: unstable
Urgency: low
Maintainer: Alexander Sack a...@ubuntu.com
Changed-By: Michael Biebl bi...@debian.org
Description: 
 modemmanager - D-Bus service for managing modems
Changes: 
 modemmanager (0.4.997-1) unstable; urgency=low
 .
   * debian/watch: Switch to .bz2 tarballs.
   * Upload to unstable.
Checksums-Sha1: 
 0e83286014b84eb09746436f08f7a16ffcc2 2026 modemmanager_0.4.997-1.dsc
 a4f8fcb756c010afacbd6a2efa8441719e7c83ab 538902 
modemmanager_0.4.997.orig.tar.bz2
 a9ca0cd485c7e1f0178b614c2dcfe027301d50db 10730 
modemmanager_0.4.997-1.debian.tar.gz
 b2af58e0c67b9874b7951b7e6c03b285c71fe4b3 304300 modemmanager_0.4.997-1_i386.deb
Checksums-Sha256: 
 51c956fc0ab1ec33b901f83008a86841888ea377f98f8993a2829cc1b32f654e 2026 
modemmanager_0.4.997-1.dsc
 c9a6583fe558ad7e010ac9eb69a77eba65b6d4e576c7a03eac2e46aea64b5b1a 538902 
modemmanager_0.4.997.orig.tar.bz2
 ac37504b001bd5f731eda34fcef0bc901aa925ff45626a12972de7c4265eb820 10730 
modemmanager_0.4.997-1.debian.tar.gz
 9ca11ee13b6d763935f2b7c45afa16e7edecda28a92fa13050d1770780333bfe 304300 
modemmanager_0.4.997-1_i386.deb
Files: 
 dd2eeda7b9d87a4b31db4b878a08490c 2026 net optional modemmanager_0.4.997-1.dsc
 4f68b52ee806a928ab00675729f4bb88 538902 net optional 
modemmanager_0.4.997.orig.tar.bz2
 94769ecf67458e133a22de30e4140826 10730 net optional 
modemmanager_0.4.997-1.debian.tar.gz
 e3222ba940df340eb9b8dbc98c11c61c 304300 net optional 
modemmanager_0.4.997-1_i386.deb

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

iQIcBAEBCAAGBQJN+iIoAAoJEGrh3w1gjyLchMMP/ig1JoIDGJr50p0ekpyTP0vp
cqVxi1BIeeEagBFnDFVx9RcoiSfglqAJ53q9V7x+p74hatvLn7DVyEx/YaZ7u2RP
Jg+c3Kfhj/PlCF4ZtIC8NYuAEgKwIglVshqLIqbXoeRhVaSWwYOnoQ2FzY8CpLDX
Lrf4ELjsadRQ9P7yNmQT8QoywlV/+mUBvj40cwTIluSMTLT9OiKNdhJ3gFPkaY4b
nEiw9navFi6pvswI/fWGcmfT83Nzt/W/4znUEI2s6dTRGKHO+pFSQOogdkiTAFWO
LKV8ya6x/9eAXabctY5Kddqpu8YWVndzrsDUKVhJ9aRR9cocGBtf6pufl68jNDQA
eb+CllemPZFRX7gj2nKKvGLjuarkhxTwT8CmCUoyQ7F7C7IoKoeNpc71FEtZryaK
NOB88cx0PYM9T2sydEcQdlBQZn5y5uLl3pP20//SwCK3pbM6Gj1akOiJumCHsYwB
iS3nXD0kt7i8wSU533NCGTOX/0Jr/CvSS0qpDzfpQYNAa+R1szlOSSMiaPbsZj+1
pFCiHmd5Kfu7gLvTpVDaIO5mxB4xop7/eQHkeSoBk8lZOiV9z8OjLhKfaxJ/3skg
NReHDuvuUrowSo/YUtKECNUsgQ6K2vPxcq01OQUOC9sHSNgivP5JaPShRGMcBToG
zb+Afd3FRW9wXsAbQRJt
=mQot
-END PGP SIGNATURE-


Accepted:
modemmanager_0.4.997-1.debian.tar.gz
  to main/m/modemmanager/modemmanager_0.4.997-1.debian.tar.gz
modemmanager_0.4.997-1.dsc
  to main/m/modemmanager/modemmanager_0.4.997-1.dsc
modemmanager_0.4.997-1_i386.deb
  to main/m/modemmanager/modemmanager_0.4.997-1_i386.deb
modemmanager_0.4.997.orig.tar.bz2
  to main/m/modemmanager/modemmanager_0.4.997.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxeop-00025f...@franck.debian.org



Accepted fplll 2.1.6+20071129-2.1 (source i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 17:23:13 +0200
Source: fplll
Binary: libfplll0 libfplll-dev
Architecture: source i386
Version: 2.1.6+20071129-2.1
Distribution: unstable
Urgency: low
Maintainer: Tim Abbott tabb...@mit.edu
Changed-By: Luk Claes l...@debian.org
Description: 
 libfplll-dev - A library for LLL-reduction of euclidean lattices, development
 libfplll0  - A library for LLL-reduction of Euclidean lattices, runtime
Closes: 621188
Changes: 
 fplll (2.1.6+20071129-2.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621188).
Checksums-Sha1: 
 9be9803d81a59cc4a90da5ffabb57868b136b32e 1171 fplll_2.1.6+20071129-2.1.dsc
 c19396865341c38ab993122c5cad16a4165b151f 2544 fplll_2.1.6+20071129-2.1.diff.gz
 105f77c3448bfbf20b25a52b2e2f89af283e8184 50264 
libfplll0_2.1.6+20071129-2.1_i386.deb
 af9249b6717f8d2e3f72c2ba6a04645762b4d04c 79178 
libfplll-dev_2.1.6+20071129-2.1_i386.deb
Checksums-Sha256: 
 bd7233d95affae4865fbf5a8090eae84d0fad3e756b956fe9e67171e8eb524ea 1171 
fplll_2.1.6+20071129-2.1.dsc
 e6492ab4efc93cce0cbae232a84580b8ab86a6202afba0e38c5b39a999b520a3 2544 
fplll_2.1.6+20071129-2.1.diff.gz
 b129bc2dec574a07723f890b22883b24f1b5223964317450c7fc4457b747d96b 50264 
libfplll0_2.1.6+20071129-2.1_i386.deb
 33f1665549f455dd64d5b2dff41c3da4e64b42c12eb3ac4d50483f6082b592b8 79178 
libfplll-dev_2.1.6+20071129-2.1_i386.deb
Files: 
 abd8f1bc5f428a35784c11fb65ef6b7b 1171 math optional 
fplll_2.1.6+20071129-2.1.dsc
 ba318e8173dafe563606d2bf1b9f33e1 2544 math optional 
fplll_2.1.6+20071129-2.1.diff.gz
 9822bc63476279c9af3914e7f64e21dc 50264 libs optional 
libfplll0_2.1.6+20071129-2.1_i386.deb
 1a5242888274a015e0a26c501544c65d 79178 libdevel optional 
libfplll-dev_2.1.6+20071129-2.1_i386.deb

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

iEYEARECAAYFAk3zinoACgkQ5UTeB5t8Mo2i4QCgr2ha7D8p42AZ1xesmdNjUFwh
/zcAoJavsMfmsOjS2Pj9M0fKO9ZQ89iI
=gSlO
-END PGP SIGNATURE-


Accepted:
fplll_2.1.6+20071129-2.1.diff.gz
  to main/f/fplll/fplll_2.1.6+20071129-2.1.diff.gz
fplll_2.1.6+20071129-2.1.dsc
  to main/f/fplll/fplll_2.1.6+20071129-2.1.dsc
libfplll-dev_2.1.6+20071129-2.1_i386.deb
  to main/f/fplll/libfplll-dev_2.1.6+20071129-2.1_i386.deb
libfplll0_2.1.6+20071129-2.1_i386.deb
  to main/f/fplll/libfplll0_2.1.6+20071129-2.1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxf1f-00046v...@franck.debian.org



Accepted gconf 2.32.4-1 (source all i386)

2011-06-16 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 17:45:14 +0200
Source: gconf
Binary: gconf2 gconf2-common gconf-defaults-service libgconf2-4 libgconf2-dev 
gir1.2-gconf-2.0
Architecture: source all i386
Version: 2.32.4-1
Distribution: unstable
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 gconf-defaults-service - GNOME configuration database system (system defaults 
service)
 gconf2 - GNOME configuration database system (support tools)
 gconf2-common - GNOME configuration database system (common files)
 gir1.2-gconf-2.0 - GNOME configuration database system (GObject-Introspection)
 libgconf2-4 - GNOME configuration database system (shared libraries)
 libgconf2-dev - GNOME configuration database system (development)
Changes: 
 gconf (2.32.4-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 a2df13a7d38d3b64ca999df825d30479d9d17209 2584 gconf_2.32.4-1.dsc
 8c53a2b3220cfc058a08638a89fe35e44cfef581 1531539 gconf_2.32.4.orig.tar.bz2
 3dd41782f4631c6632ce64b02ed363710b085cd5 24895 gconf_2.32.4-1.debian.tar.gz
 8bfe7a75882d6dd644bf2f058400e11c1bcb2492 1737764 gconf2-common_2.32.4-1_all.deb
 aabe9279f92f01baa326d82cb0aee8650a198409 174906 gconf2_2.32.4-1_i386.deb
 8681ef6bd85f9ce76db707ac9cc4a91ac45c106c 115102 
gconf-defaults-service_2.32.4-1_i386.deb
 541a517ee90e5d9e96e20148ba9d56f0731489d2 282172 libgconf2-4_2.32.4-1_i386.deb
 def5d5c865e78aae3ccea76ea5ce9a0a3f8d8a57 285402 libgconf2-dev_2.32.4-1_i386.deb
 0854b422ef4edd471b1e27edcfd1fb7662e9c6db 102650 
gir1.2-gconf-2.0_2.32.4-1_i386.deb
Checksums-Sha256: 
 e03259e76d13c286f8d6be06f24dd1d588d1d885a0b559c8b5ca7bb3b7686fff 2584 
gconf_2.32.4-1.dsc
 46030c09422603dbb72f13b5dd592dcc01fbc13562b9e94dafb2b58982bc6b3a 1531539 
gconf_2.32.4.orig.tar.bz2
 753c6a41784b755f41dd1ab920da51015b2ac965e8f976a6c325562c2c9bda51 24895 
gconf_2.32.4-1.debian.tar.gz
 df6018773f091fa55875103cd1dbef80494fa6596d0761f6a6784e88402b7064 1737764 
gconf2-common_2.32.4-1_all.deb
 c8e796217be28c6891ed64838363547562b2679aa4b47820464045219826144d 174906 
gconf2_2.32.4-1_i386.deb
 3b81626a6ac5697d4d50975d161e1a06183a2acf1bc5aae33952522366cb735f 115102 
gconf-defaults-service_2.32.4-1_i386.deb
 ffc53bfb64bcbc23e86ab30cc6145db2dfcdc12d0adbf9472cb242aae9ed3151 282172 
libgconf2-4_2.32.4-1_i386.deb
 e8d3fc4bc781caa0b006d493ef633e3caa832a4ac25a632f60f59e30c9a87f5f 285402 
libgconf2-dev_2.32.4-1_i386.deb
 6a1b76114791d4006f98681a5d8d0301cce6c6d18c38e02f4379978e920242de 102650 
gir1.2-gconf-2.0_2.32.4-1_i386.deb
Files: 
 532b2dc7c040716fad54af088ea1a55b 2584 libs optional gconf_2.32.4-1.dsc
 b4475bb58c51ca59c7781cd95b302c13 1531539 libs optional 
gconf_2.32.4.orig.tar.bz2
 8f308a1aa84b3fdd67ae825c23a89d9b 24895 libs optional 
gconf_2.32.4-1.debian.tar.gz
 561a06bdf62ec85c8d51ae52667482f2 1737764 libs optional 
gconf2-common_2.32.4-1_all.deb
 176adc6aec8215e773f6b282759329ed 174906 libs optional gconf2_2.32.4-1_i386.deb
 bf6e665f909fd1fa26e9a255e3af5330 115102 libs optional 
gconf-defaults-service_2.32.4-1_i386.deb
 cd0564ec0dceb44d9a8c6686f18198d7 282172 libs optional 
libgconf2-4_2.32.4-1_i386.deb
 f127a85ca3bde6095cc024b685a6ea2f 285402 libdevel optional 
libgconf2-dev_2.32.4-1_i386.deb
 0b20bd5a48258bfe0cd5aecc730a06ff 102650 libs optional 
gir1.2-gconf-2.0_2.32.4-1_i386.deb

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

iQIcBAEBCAAGBQJN+idQAAoJEGrh3w1gjyLcFY8P/2NFma0otgUmX5bFz5Hhjsbk
2frRtoXsczdGlqQCPQXDGrFY0gUtmkpSNjmHwUMgbQk5QsVGf9ve0/KlXROuK7Wj
g+xJROLkkG9U+a88eqBmJ4Kg85qsGB0IcPiw43Tbm3RTvRTUqqqYYPuRLOxOpvIF
rt+3TYYg6BHhZibqvmj78PkdXWRowX5u+j8N3S59qLnu9bf1Q8JmjEm2me2y+SQj
HRds9B56tC2y6KbxGj5L8fISDSbT2P92mj6ZdEF7v+vw2Sl2bmSJm6nUjPSgocEl
MokgGqiC9IXAMEDPoQYT8KW8r7KjmprUHU9vrFxZROBQtjYE5IzKUEwo4gt69wh8
AkqJj0hgXwd3bX2IkBh/lA3bRgrWnrgNJHpNmXEriXyJqQmsZGqahpy/WOojoB/O
Er7Z6TGQH5q6582PNCYDW8FUFMiJRCT5hdBqEt2iP4akQCN0Ua+jyeCDhwEeTmpO
F9WpLLt26hSacVFYgeA5Qrey7LA/hjkV5r9vlyc5j00V8Dai34IhRpyyXCwJn5Pm
D+9jHb6Vo3Yj3h8a45gXrv7xM57bUCFEaX2tV2NdOegv6q+3XW6pNDbvBN7PQSGy
ymTXHqdVyfrGH8OKlYfUzor2BZ0XvseNbvzYjsDf/4I0mjFeYCZfmZ2BhJ1WJAtp
Ict0aLcFGGAjPAa0sqGu
=uw/t
-END PGP SIGNATURE-


Accepted:
gconf-defaults-service_2.32.4-1_i386.deb
  to main/g/gconf/gconf-defaults-service_2.32.4-1_i386.deb
gconf2-common_2.32.4-1_all.deb
  to main/g/gconf/gconf2-common_2.32.4-1_all.deb
gconf2_2.32.4-1_i386.deb
  to main/g/gconf/gconf2_2.32.4-1_i386.deb
gconf_2.32.4-1.debian.tar.gz
  to main/g/gconf/gconf_2.32.4-1.debian.tar.gz
gconf_2.32.4-1.dsc
  to main/g/gconf/gconf_2.32.4-1.dsc
gconf_2.32.4.orig.tar.bz2
  to main/g/gconf/gconf_2.32.4.orig.tar.bz2
gir1.2-gconf-2.0_2.32.4-1_i386.deb
  to main/g/gconf/gir1.2-gconf-2.0_2.32.4-1_i386.deb
libgconf2-4_2.32.4-1_i386.deb
  to main/g/gconf/libgconf2-4_2.32.4-1_i386.deb
libgconf2-dev_2.32.4-1_i386.deb
  to main/g/gconf/libgconf2-dev_2.32.4-1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org

Accepted autounit 0.20.1-3.1 (source i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 17:41:05 +0200
Source: autounit
Binary: libautounit-dev libautounit2
Architecture: source i386
Version: 0.20.1-3.1
Distribution: unstable
Urgency: low
Maintainer: Masami Ichikawa masami...@gmail.com
Changed-By: Luk Claes l...@debian.org
Description: 
 libautounit-dev - Development files for C unit testing framework
 libautounit2 - C unit testing framework interfacing well with autotools
Closes: 621190
Changes: 
 autounit (0.20.1-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621190).
Checksums-Sha1: 
 75f98230413c14e86c33f431cee2620f1a71ca38 1118 autounit_0.20.1-3.1.dsc
 78ffe67acdc267d10b249766f0348cf41a2dc33d 484961 autounit_0.20.1-3.1.diff.gz
 cb0e41c11d2d3a3053c7f86719c9bcb4d245f07e 27680 
libautounit-dev_0.20.1-3.1_i386.deb
 df47bb474df4cce4cb1e2df9975fa5610bb05df3 18138 libautounit2_0.20.1-3.1_i386.deb
Checksums-Sha256: 
 665cef5bd8b0ac34242e90440d9633ee282af0802c14a080a2653611403b9e50 1118 
autounit_0.20.1-3.1.dsc
 4b077e80d2a53e6f7cdd8004094316d365313181aecbc4a96b788592377135d3 484961 
autounit_0.20.1-3.1.diff.gz
 0d5f7026d10bb32ffca2d960f8451b39c9630f772afa699b22bac933a52f8fee 27680 
libautounit-dev_0.20.1-3.1_i386.deb
 b373d1659e806c90618e3b1412397b0bfe3375b14a96896ec4741511a125c66c 18138 
libautounit2_0.20.1-3.1_i386.deb
Files: 
 5a28a1b9bc6e12364dfd24fbcf4d0ab6 1118 libs optional autounit_0.20.1-3.1.dsc
 4ffc5b2f8008e120742e78c113968f1e 484961 libs optional 
autounit_0.20.1-3.1.diff.gz
 ff04f2242afe4cec9f82adc425e59fbb 27680 libdevel optional 
libautounit-dev_0.20.1-3.1_i386.deb
 bcef7cfa0178c4e76d17a496bd12e78e 18138 libs optional 
libautounit2_0.20.1-3.1_i386.deb

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

iEYEARECAAYFAk3zjS0ACgkQ5UTeB5t8Mo0TUQCeNpSmm5PkVSglPQGXaEPowpDH
ruMAnR5Q0CZ1PbkV2nplVL5FLpKS8E2g
=Xhqn
-END PGP SIGNATURE-


Accepted:
autounit_0.20.1-3.1.diff.gz
  to main/a/autounit/autounit_0.20.1-3.1.diff.gz
autounit_0.20.1-3.1.dsc
  to main/a/autounit/autounit_0.20.1-3.1.dsc
libautounit-dev_0.20.1-3.1_i386.deb
  to main/a/autounit/libautounit-dev_0.20.1-3.1_i386.deb
libautounit2_0.20.1-3.1_i386.deb
  to main/a/autounit/libautounit2_0.20.1-3.1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxffu-00055j...@franck.debian.org



Accepted modsecurity-crs 2.2.0-1 (source all)

2011-06-16 Thread Alberto Gonzalez Iniesta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 17:55:02 +0200
Source: modsecurity-crs
Binary: modsecurity-crs
Architecture: source all
Version: 2.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Alberto Gonzalez Iniesta a...@inittab.org
Changed-By: Alberto Gonzalez Iniesta a...@inittab.org
Description: 
 modsecurity-crs - modsecurity's Core Rule Set
Changes: 
 modsecurity-crs (2.2.0-1) unstable; urgency=low
 .
   * New upstream release
   * Bumped Standards-Version to 3.9.2
Checksums-Sha1: 
 e311a89cc2d1d712321382a9788ccb046cce8676 1084 modsecurity-crs_2.2.0-1.dsc
 16475a3e2fd4f0bfb91d30a8ce3c768049b005e6 745775 
modsecurity-crs_2.2.0.orig.tar.gz
 44c1e25402b8d82e1d0696e028bc249ac0819003 3158 
modsecurity-crs_2.2.0-1.debian.tar.gz
 c2eb2b449732022d5a5e5bc171d57709ecc1ec1c 163600 modsecurity-crs_2.2.0-1_all.deb
Checksums-Sha256: 
 42050b52c7d0c7640c7ca3cd8f331b0cdb69e2d37de4bc9ad9f3224e2dfa9036 1084 
modsecurity-crs_2.2.0-1.dsc
 1ca52bf6d0a00ec6b01f031e74209017b9f1fd00c8ee443446bc1dc43ddb1ff5 745775 
modsecurity-crs_2.2.0.orig.tar.gz
 61fa5464cddc46e3fc6d71911b09b8985aaf47f0c8691c8f1688f8e3842b4cac 3158 
modsecurity-crs_2.2.0-1.debian.tar.gz
 15e709556f10de3b06c7b949a4335fb94f1dced11a47e965cdbfb591611e2554 163600 
modsecurity-crs_2.2.0-1_all.deb
Files: 
 75a3f6012812afc6db491fc6ddfc4cdf 1084 httpd extra modsecurity-crs_2.2.0-1.dsc
 41da3245afecc99565439eb96dfb76c6 745775 httpd extra 
modsecurity-crs_2.2.0.orig.tar.gz
 259358affa9594ad45e48f6b85b13785 3158 httpd extra 
modsecurity-crs_2.2.0-1.debian.tar.gz
 173899328b82f3eb81bb9e9a7387010c 163600 httpd extra 
modsecurity-crs_2.2.0-1_all.deb

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

iEYEARECAAYFAk36KiwACgkQxRSvjkukAcNECgCePg5gP7N89QWAGD4gYgnkbuge
j5cAoOyOPcIbIrpmlLF+0Os0/BZdO2xd
=Gw9u
-END PGP SIGNATURE-


Accepted:
modsecurity-crs_2.2.0-1.debian.tar.gz
  to main/m/modsecurity-crs/modsecurity-crs_2.2.0-1.debian.tar.gz
modsecurity-crs_2.2.0-1.dsc
  to main/m/modsecurity-crs/modsecurity-crs_2.2.0-1.dsc
modsecurity-crs_2.2.0-1_all.deb
  to main/m/modsecurity-crs/modsecurity-crs_2.2.0-1_all.deb
modsecurity-crs_2.2.0.orig.tar.gz
  to main/m/modsecurity-crs/modsecurity-crs_2.2.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxfgm-0005ad...@franck.debian.org



Accepted diff-ext 0.3.2-1.1 (source i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 17:52:17 +0200
Source: diff-ext
Binary: diff-ext
Architecture: source i386
Version: 0.3.2-1.1
Distribution: unstable
Urgency: low
Maintainer: Andrea Veri andrea.ver...@gmail.com
Changed-By: Luk Claes l...@debian.org
Description: 
 diff-ext   - File manager context menu extension to launch comparison tools
Closes: 621192
Changes: 
 diff-ext (0.3.2-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621192).
Checksums-Sha1: 
 b08b00043d355e99eb8db7faca7b5ce400abb887 1275 diff-ext_0.3.2-1.1.dsc
 8e42ace4b4caab47ffa552c5c84d101d98b810bf 5914 diff-ext_0.3.2-1.1.diff.gz
 3a7d3e5f2268cb7e18470afb0db9dd007a031598 28226 diff-ext_0.3.2-1.1_i386.deb
Checksums-Sha256: 
 93a1dba73c7b5f858851d07ecf247b723520dfc8242a8912e1c69a282514be58 1275 
diff-ext_0.3.2-1.1.dsc
 7a8c443ee4b0643f83842cca54b4c0bbf603dd2200d91e61e71f6c0da5dfc880 5914 
diff-ext_0.3.2-1.1.diff.gz
 88189655849674a07f255f5fa96121883f2959583951b30e11abca1e7f81f96d 28226 
diff-ext_0.3.2-1.1_i386.deb
Files: 
 1be89b7e94a5a48fda69fc13b0899482 1275 utils optional diff-ext_0.3.2-1.1.dsc
 a7de09229a61dceafaa0d5f08ed8d1af 5914 utils optional diff-ext_0.3.2-1.1.diff.gz
 b8e5f0c4dd50ec16cf9206e6bf794887 28226 utils optional 
diff-ext_0.3.2-1.1_i386.deb

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

iEYEARECAAYFAk3zkUAACgkQ5UTeB5t8Mo17YgCcDlWrU0LQjG90WJUoayJ0nw9J
ZzAAn0DhH2/74QrkDMWtOovz9/pFvynX
=dEKH
-END PGP SIGNATURE-


Accepted:
diff-ext_0.3.2-1.1.diff.gz
  to main/d/diff-ext/diff-ext_0.3.2-1.1.diff.gz
diff-ext_0.3.2-1.1.dsc
  to main/d/diff-ext/diff-ext_0.3.2-1.1.dsc
diff-ext_0.3.2-1.1_i386.deb
  to main/d/diff-ext/diff-ext_0.3.2-1.1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxfuo-0006qj...@franck.debian.org



Accepted drupal6 6.22-1 (source all)

2011-06-16 Thread Luigi Gangitano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 15:55:08 +0200
Source: drupal6
Binary: drupal6
Architecture: source all
Version: 6.22-1
Distribution: unstable
Urgency: low
Maintainer: Luigi Gangitano lu...@debian.org
Changed-By: Luigi Gangitano lu...@debian.org
Description: 
 drupal6- fully-featured content management framework
Closes: 628896
Changes: 
 drupal6 (6.22-1) unstable; urgency=low
 .
   [ Luigi Gangitano ]
   * New upstream release (Closes: #628896)
 .
   * debian/control
 - Bumped Standard-Version to 3.9.2.0, no change needed
 - Removed article from start of Description: field
 .
   * debian/watch
 - Updated watch file to changed upstream repo
Checksums-Sha1: 
 69ed20984e2e24542ef5bd73f6d6f9742e88bc72 1115 drupal6_6.22-1.dsc
 a67acdb606aabbd9da6ddd2c016d43bb9ec17431 1100999 drupal6_6.22.orig.tar.gz
 f65730ef618b139419597cdb1463b789bc98e6cd 19335 drupal6_6.22-1.diff.gz
 8b9f39aa5972d2ac2b362ba5d74f40ec36b59f66 1124498 drupal6_6.22-1_all.deb
Checksums-Sha256: 
 2e819ac61b558aa4b7e14a862cc99c07a0a15e62835e09f08d9fabb014d13974 1115 
drupal6_6.22-1.dsc
 d43da1858bfb8211a26ad7f749cce8cc3ae701fd28b13502cf5daef51d31f021 1100999 
drupal6_6.22.orig.tar.gz
 58f37cedaedd816fd9235fef0df90938bdf0d40118586b8c588a0afb17084a43 19335 
drupal6_6.22-1.diff.gz
 e6bc2ada8506f79b3cebc91a30b942bbd4214954c5c8f103d576b4a5f4a80be0 1124498 
drupal6_6.22-1_all.deb
Files: 
 772713e454379d7c24e153e7c90a2c9f 1115 web extra drupal6_6.22-1.dsc
 447490f3bc155fd1d5c2d47280c999a5 1100999 web extra drupal6_6.22.orig.tar.gz
 dfbb940778c3c1d4f677824484353119 19335 web extra drupal6_6.22-1.diff.gz
 b325ad48ccd2de8b8b6df02e298fa8da 1124498 web extra drupal6_6.22-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (Darwin)

iEYEARECAAYFAk36KsMACgkQ8ZumGJJMDCYHyACfSKh6e0MsFHolJBz3z+GntF3C
5zUAn3DhP/TqRM5jIRKTnG0CX/Dokel3
=y8DF
-END PGP SIGNATURE-


Accepted:
drupal6_6.22-1.diff.gz
  to main/d/drupal6/drupal6_6.22-1.diff.gz
drupal6_6.22-1.dsc
  to main/d/drupal6/drupal6_6.22-1.dsc
drupal6_6.22-1_all.deb
  to main/d/drupal6/drupal6_6.22-1_all.deb
drupal6_6.22.orig.tar.gz
  to main/d/drupal6/drupal6_6.22.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxfuz-0006sx...@franck.debian.org



Accepted crawl 2:0.8.1-1 (source all amd64)

2011-06-16 Thread Adam Borowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 Jun 2011 22:50:57 +0200
Source: crawl
Binary: crawl-common crawl crawl-tiles
Architecture: source all amd64
Version: 2:0.8.1-1
Distribution: unstable
Urgency: low
Maintainer: Guus Sliepen g...@debian.org
Changed-By: Adam Borowski kilob...@angband.pl
Description: 
 crawl  - Dungeon Crawl, a text-based roguelike game
 crawl-common - Dungeon Crawl, a text-based roguelike game (data files)
 crawl-tiles - Dungeon Crawl, a roguelike game, tiles version
Changes: 
 crawl (2:0.8.1-1) unstable; urgency=low
 .
   * New upstream bugfix release.
   * Restore the workaround for g++-4.4 bug on powerpc, backports need it.
Checksums-Sha1: 
 1872bb4b71c1394a57aefb3ac7c46c35988f2e1a 1272 crawl_0.8.1-1.dsc
 18e8bbc5c8f64393deb87a01050f5668eaec64b7 6507956 crawl_0.8.1.orig.tar.bz2
 512b6fe5b4da8371dfb180ad97793e3aa373b49e 11262 crawl_0.8.1-1.debian.tar.gz
 086f96df0229fc485d184d4b3b9a39a71a3b321f 1191074 crawl-common_0.8.1-1_all.deb
 1a5b2ddd2bfcc7a7587a7b25fff1bb30773a8be7 3320244 crawl_0.8.1-1_amd64.deb
 dde6d319710b83476b77395f7ff82bcfd509e3bf 5324282 crawl-tiles_0.8.1-1_amd64.deb
Checksums-Sha256: 
 8c600ea3f1755e4e1f4656da8ab0f38389aedbf99cf0a08ecf02967fe04f4025 1272 
crawl_0.8.1-1.dsc
 91a7d8a9f3f2df333fa8e25548a4d0c233c8a145db0ad339bec4844d90aba9cf 6507956 
crawl_0.8.1.orig.tar.bz2
 f5dfec7bcdbfce0e05167f3bd727731377107c3f94b739c538d330adff578488 11262 
crawl_0.8.1-1.debian.tar.gz
 a5850784e23b4123b2173bca06b766f72c5edd45e3ca1b83dcb1cbe8c57b9cdc 1191074 
crawl-common_0.8.1-1_all.deb
 42f8cfcf5257afef2adb68c810702c42abaaf9a2fdfd8193cfd8aad9f8d42259 3320244 
crawl_0.8.1-1_amd64.deb
 0b3775aa8e90b740dceabcdfc0a0a9225613f97f2a939a8b507b89c5563d9f92 5324282 
crawl-tiles_0.8.1-1_amd64.deb
Files: 
 95f03e5b6302239d29f6a76b277a4fe7 1272 games optional crawl_0.8.1-1.dsc
 7ddeb1ff048401e55af0d1c11038f937 6507956 games optional 
crawl_0.8.1.orig.tar.bz2
 19106999af38c0d850503c8d10538855 11262 games optional 
crawl_0.8.1-1.debian.tar.gz
 96d692f66c95fcd5ae60ea39af68a7ad 1191074 games optional 
crawl-common_0.8.1-1_all.deb
 5d70f24dd9029efcfb097be4cbf966cc 3320244 games optional crawl_0.8.1-1_amd64.deb
 adfc3f9dc91c62608ad9301ca8558d32 5324282 games optional 
crawl-tiles_0.8.1-1_amd64.deb

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

iEYEARECAAYFAk36LtwACgkQAxLow12M2nvKAQCfbGaQYh3SGp2Yw9WwJWg7Nbts
geEAoJwQhpub8W8ykhWvTRCPBvVvmw60
=eqgX
-END PGP SIGNATURE-


Accepted:
crawl-common_0.8.1-1_all.deb
  to main/c/crawl/crawl-common_0.8.1-1_all.deb
crawl-tiles_0.8.1-1_amd64.deb
  to main/c/crawl/crawl-tiles_0.8.1-1_amd64.deb
crawl_0.8.1-1.debian.tar.gz
  to main/c/crawl/crawl_0.8.1-1.debian.tar.gz
crawl_0.8.1-1.dsc
  to main/c/crawl/crawl_0.8.1-1.dsc
crawl_0.8.1-1_amd64.deb
  to main/c/crawl/crawl_0.8.1-1_amd64.deb
crawl_0.8.1.orig.tar.bz2
  to main/c/crawl/crawl_0.8.1.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxfjr-0007qf...@franck.debian.org



Accepted sat4j 2.3.0-1 (source all)

2011-06-16 Thread Michael Tautschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 18:16:35 +0200
Source: sat4j
Binary: sat4j
Architecture: source all
Version: 2.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Michael Tautschnig m...@debian.org
Changed-By: Michael Tautschnig m...@debian.org
Description: 
 sat4j  - Efficient library of SAT solvers in Java
Closes: 630720
Changes: 
 sat4j (2.3.0-1) unstable; urgency=low
 .
   * New upstream release (closes: #630720)
   * Bumped standards version to 3.9.2 (no changes)
Checksums-Sha1: 
 32ac4f6a14fc69b36319af2aa0046df837093578 1140 sat4j_2.3.0-1.dsc
 86e147144cb51f61bc4b5536a856ab10ce587737 13832168 sat4j_2.3.0.orig.tar.gz
 cbaa5b0629521947288b9ff46cdedecd0190a455 11337 sat4j_2.3.0-1.debian.tar.gz
 dab612d624945b1018e2c92c2a7d2984a98e4d0d 591906 sat4j_2.3.0-1_all.deb
Checksums-Sha256: 
 8017e7dce79fc26fce22a894f7233429317e9ddd5c6c383ee58f0f2c3ba35c48 1140 
sat4j_2.3.0-1.dsc
 8d3f774265c653563c87442dbe8f0d0aebbfd5a60784d61572b57d7934fc1b84 13832168 
sat4j_2.3.0.orig.tar.gz
 fa74acb496d6601b5408b760a31ff42212b5ce7519dec66fb9d7b8bb1074b5e3 11337 
sat4j_2.3.0-1.debian.tar.gz
 8f8f52954340ee07afebf81ca9bca03fd3cea41ee3809fb52dca1c85b3246f12 591906 
sat4j_2.3.0-1_all.deb
Files: 
 8862d104f1db84255fda132059aa7915 1140 science optional sat4j_2.3.0-1.dsc
 2d37e27f91f104cbe36eca60ebf96344 13832168 science optional 
sat4j_2.3.0.orig.tar.gz
 048b50b79e213be0fa28b1c9b73c6c59 11337 science optional 
sat4j_2.3.0-1.debian.tar.gz
 34fbb60125b3c3464a2fc830668759e9 591906 science optional sat4j_2.3.0-1_all.deb

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

iEYEARECAAYFAk36Mh8ACgkQvx6dH3bVKsQ0ZgCgiwUA6c4U+F8/YRetHBw49t4J
A10An3jKEo04ZZ8FZHK1BRnS7O+FuL0A
=KRJ5
-END PGP SIGNATURE-


Accepted:
sat4j_2.3.0-1.debian.tar.gz
  to main/s/sat4j/sat4j_2.3.0-1.debian.tar.gz
sat4j_2.3.0-1.dsc
  to main/s/sat4j/sat4j_2.3.0-1.dsc
sat4j_2.3.0-1_all.deb
  to main/s/sat4j/sat4j_2.3.0-1_all.deb
sat4j_2.3.0.orig.tar.gz
  to main/s/sat4j/sat4j_2.3.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxfjv-0007tw...@franck.debian.org



Accepted libmoo-perl 0.009008-1 (source all)

2011-06-16 Thread Fabrizio Regalli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 Jun 2011 23:17:43 +0200
Source: libmoo-perl
Binary: libmoo-perl
Architecture: source all
Version: 0.009008-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Fabrizio Regalli fab...@fabreg.it
Description: 
 libmoo-perl - Minimalist Object Orientation library (with Moose compatiblity)
Changes: 
 libmoo-perl (0.009008-1) unstable; urgency=low
 .
   * New upstream release
   * Bump to 3.9.2 Standard-Version.
   * Switch to DEP5 license format.
   * Add myself to Uploaders.
   * Update Format-Specification link.
Checksums-Sha1: 
 c7b6fa6863ba4e58e630b33d65fafc4dea10c3b8 2091 libmoo-perl_0.009008-1.dsc
 14d3f63b4c1686eae10efe286405600b50a390cc 28035 libmoo-perl_0.009008.orig.tar.gz
 e58be0be91fd4061d0bbe426f1ac1e160905f714 2068 
libmoo-perl_0.009008-1.debian.tar.gz
 cd561c03671560ca0fbf55c66d608805993520f9 37544 libmoo-perl_0.009008-1_all.deb
Checksums-Sha256: 
 654ef1ed58aa0d8e4babf2114ab1fa247daf6cbb98ec6a463bf7623abe07c90a 2091 
libmoo-perl_0.009008-1.dsc
 03b086601c6142ce23615ab1af85fcd20177d4602e7f80818674bbeff0277794 28035 
libmoo-perl_0.009008.orig.tar.gz
 749b5033a0474b94c90f36f8ce84bafb06ccf5980df56240d7cba0034841a502 2068 
libmoo-perl_0.009008-1.debian.tar.gz
 52489e29aa9ce742ac4346dd4fd0ce30cfe7208ce0ab427a286210a7bc76c8da 37544 
libmoo-perl_0.009008-1_all.deb
Files: 
 a9326c8e5c8f9138598015e67e214308 2091 perl optional libmoo-perl_0.009008-1.dsc
 597c4f546219ffb02e5a8005288947f7 28035 perl optional 
libmoo-perl_0.009008.orig.tar.gz
 25710a87490a05a0d19e2377ce705e21 2068 perl optional 
libmoo-perl_0.009008-1.debian.tar.gz
 08d66ded672ff358f4488862e04f0cf0 37544 perl optional 
libmoo-perl_0.009008-1_all.deb

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

iQIcBAEBCAAGBQJN+jONAAoJEHidbwV/2GP+grkP/0ecMOqWP/8lNjwnllroA3ZL
fsy9Xt01nMXm3qzwMpXXCt5AHIQcinumXCA51fs+z2zDmFi23q4F/ar8/riCMkhx
UCR/oMTO6WwB74pDymeq+eh6a+wKyodwCbYM/bRb70bua/S5eJs0AyDMBw1S18Z1
6NELDpqz4D+dhKnm5K0T/6AgpaeGNvs0dy4WhBPGFsCJiUTdeK1xDY6Ez7t8KUOe
A07XskFFjUHQXO4DJARIVD55/uGU42qcxMJhK9Ue/1PDf1NYu8esTynCkHoJzLR/
xqjTKrenCT32+ghaj0LprWr3GlTiV8yFIQZxx/w2LBONrDNCv5CYWHYggHD2IvhQ
04E8QCI27INNGWkEiaa/6VPC5B43+MVUMF4rC9EPYN2wRA2QXi6xqtpcv1Nk/AmC
/5WF63lbptT6IjKRYgtdP3uHXS81cXkdmHwo2DqANagVcVoVyVTzWVYVRjqke1dm
r2ipYniSiWNSdn2tMYaZ9RAFdb3/RL6vEsTPe54OvATpgDl4eABMpL9H+7cYqWFB
LxGonzNH71onhCOhbNmsbc0wR0JVT2f8IZ+f2LWBUx96UuoGxA3csHtVczoGP/+R
K9DV8VlKxnBNd4EGB8p1uvYjL9kyjRs2c9+hUymzJsk3tgBKjgOvbDDf8F5sCi07
P90Uns/Jv34ggRIJz/yv
=ddWH
-END PGP SIGNATURE-


Accepted:
libmoo-perl_0.009008-1.debian.tar.gz
  to main/libm/libmoo-perl/libmoo-perl_0.009008-1.debian.tar.gz
libmoo-perl_0.009008-1.dsc
  to main/libm/libmoo-perl/libmoo-perl_0.009008-1.dsc
libmoo-perl_0.009008-1_all.deb
  to main/libm/libmoo-perl/libmoo-perl_0.009008-1_all.deb
libmoo-perl_0.009008.orig.tar.gz
  to main/libm/libmoo-perl/libmoo-perl_0.009008.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxfyv-0002fu...@franck.debian.org



Accepted netcfg 1.63 (source i386)

2011-06-16 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 18:03:01 +0100
Source: netcfg
Binary: netcfg netcfg-static
Architecture: source i386
Version: 1.63
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 netcfg - Configure the network (udeb)
 netcfg-static - Configure a static network (udeb)
Closes: 615600
Changes: 
 netcfg (1.63) unstable; urgency=low
 .
   * If BOOTIF= is set on the Linux command line, look for an interface with
 that address and use it by default (closes: #615600, LP: #56679).
 .
   [ Updated translations ]
   * Asturian (ast.po) by MAAC
   * German (de.po) by Holger Wansing
   * Italian (it.po) by Milo Casagrande
Checksums-Sha1: 
 c6af2699cf3c85d6a16950a789a2a832cb56 1757 netcfg_1.63.dsc
 7660cd39ff1ce345025ec8f5350943607558f936 435502 netcfg_1.63.tar.gz
 c4ec42c0b460789629d583d6d8a4fb777c6b3e9b 331484 netcfg_1.63_i386.udeb
 4ac565811375857f1868d02552104ea2c686dff3 255320 netcfg-static_1.63_i386.udeb
Checksums-Sha256: 
 375b2f67585ad8be1d9c8b044bfbadb8d707c4c3553158cb5f61a0d9b060ef0d 1757 
netcfg_1.63.dsc
 b5d8996833f79b3c9938eb3cac9051a9d1602fa06e5fe056ca18cd309d1a56f4 435502 
netcfg_1.63.tar.gz
 29f3dc7340f8ccc48d41460296267eea31723cd2274ad8a05286b016cd718254 331484 
netcfg_1.63_i386.udeb
 1990ac6722298669064e13fd59cce2101ecd4f3fbfef7833647030be853aa1d3 255320 
netcfg-static_1.63_i386.udeb
Files: 
 7d0b91364bb1fb73559d8b631126a9b4 1757 debian-installer optional netcfg_1.63.dsc
 5a025a1d1722270760fca44058834e26 435502 debian-installer optional 
netcfg_1.63.tar.gz
 ed28f52b32e2eed40bd3f010533b1446 331484 debian-installer optional 
netcfg_1.63_i386.udeb
 ff2edc74ffb709928396b2f7b0bcd61f 255320 debian-installer optional 
netcfg-static_1.63_i386.udeb
Package-Type: udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Colin Watson cjwat...@debian.org -- Debian developer

iQIVAwUBTfo3jTk1h9l9hlALAQgtAQ//etcl6G+DEDkrVfPQDYy8wYOj7IZprfJ9
Z16nt1JeRIrmLUO5Z6HoPULBpFF8KZuWpJ8FJ73ErbFGY71dm9F1oBUvS8F2u/0e
aJAFoH+cGlfxpulml2ZGcYxQk/ArTYoqzbTdW8DveEh59KTh3tp2n4p8s01bgxS7
cDg4DR9S1g+YcRe4osF5udIHIOQgAgUPBDc+sOO+/gIezMJJmgENkLXB41craUJf
giOhAQoovu0S1yslPg5foqmx9FSr4kXWmlfzpJgPg+Jo03u09DeECuKK3XbUe1EL
A3/A9iB4BqQps5XZLUTBYemdoGKaASJApdp2dEuosAiNz7fwfgURZbBfrB8WTtKd
7z4a2qegVZ99S/vTJYNHbVonwexa5j6/Q3K4u00tA9JJaGF3u84GtTGLXWfq9TGI
I41mje2wa4mgmV00HZ7TZwxdKsL6LSzGMbAsNMxoND427OWS4jfPTb6+voM46Qzl
K36wvm5KDuDULj8dKcCZf8ncfkmdcSQfn39lTbPjd84d0X6sZD/7rhUynNGUlH6g
CWVgpLHyxep3OUnl5eZMsQ2qAi4KO1sGsQXogYBpdZr8C4HsWLmZWToiVq5sBTo+
88ZW7z14wxsGVz0fvCqXM2DNnTTB4GksJzsaGQNxdWEDISTJaGM778R6avzkbs6R
aT9/JJd96Os=
=S5KW
-END PGP SIGNATURE-


Accepted:
netcfg-static_1.63_i386.udeb
  to main/n/netcfg/netcfg-static_1.63_i386.udeb
netcfg_1.63.dsc
  to main/n/netcfg/netcfg_1.63.dsc
netcfg_1.63.tar.gz
  to main/n/netcfg/netcfg_1.63.tar.gz
netcfg_1.63_i386.udeb
  to main/n/netcfg/netcfg_1.63_i386.udeb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxgcf-0003i2...@franck.debian.org



Accepted cronolog 1.6.2+rpk-1 (source amd64)

2011-06-16 Thread Maxime Chatelle
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 14 Jun 2011 23:47:39 +0200
Source: cronolog
Binary: cronolog
Architecture: source amd64
Version: 1.6.2+rpk-1
Distribution: unstable
Urgency: low
Maintainer: Maxime Chatelle m...@gmx.com
Changed-By: Maxime Chatelle m...@gmx.com
Description: 
 cronolog   - Logfile rotator for web servers
Changes: 
 cronolog (1.6.2+rpk-1) unstable; urgency=low
 .
   * RePacKaging of orig.tar.gz to change source tarball in the archive.
 (was a tarball-in-tarball source archive, for dbs use)
Checksums-Sha1: 
 17d3a797b4aaf1c511a63bc717cf64990633bbdc 1705 cronolog_1.6.2+rpk-1.dsc
 6422b7c5e87241eb31d76809a2e0eea77ae4c64e 133591 cronolog_1.6.2+rpk.orig.tar.gz
 9b369246d282976ba991df5f260b2fe012c3c149 10216 
cronolog_1.6.2+rpk-1.debian.tar.gz
 8545d94a8307d8030b41839696775d1038769cdd 29176 cronolog_1.6.2+rpk-1_amd64.deb
Checksums-Sha256: 
 a6a4c3f9a6b869e4eadda74326f60c9c087d322b4877aeac891ef797069a4ab3 1705 
cronolog_1.6.2+rpk-1.dsc
 65e91607643e5aa5b336f17636fa474eb6669acc89288e72feb2f54a27edb88e 133591 
cronolog_1.6.2+rpk.orig.tar.gz
 d681eed1c0c6f1a5d94844ad7df78a825742b878e50e41021c09eb7531d3b859 10216 
cronolog_1.6.2+rpk-1.debian.tar.gz
 b7c833ae14bc80a3f906b43d54e9b4e5708c1d64feac0f7f10c314ad9ebe2d8c 29176 
cronolog_1.6.2+rpk-1_amd64.deb
Files: 
 9980c03d2c920660be489bec40f14701 1705 web optional cronolog_1.6.2+rpk-1.dsc
 a44564fd5a5b061a5691b9a837d04979 133591 web optional 
cronolog_1.6.2+rpk.orig.tar.gz
 7752ad6bb8a9a54a4aa95ece52ffa177 10216 web optional 
cronolog_1.6.2+rpk-1.debian.tar.gz
 9a2535420fe1c51c6572901d496fd2ee 29176 web optional 
cronolog_1.6.2+rpk-1_amd64.deb

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

iQIcBAEBCgAGBQJN+j14AAoJEKv/7bJACMb5UdYP/12ZWWqiIx97LMp6gL2j736e
QMpKnDkJFmbyUmnQuvbS7fAk2yBmiK3ozslHma9I+uHXkZixOf055Xzl8L5UAjMQ
XL8rHvXEX5Fany6Kam3wsnzroVzN0pFGKHkpL1Lsb5vvRkFaKCZ+R8KOGCoAxOF6
BpZkqTLtS48Egm38lnCEYKlADOilRREL2YCLohL3vgvE/DDf4yDB5/QOdTmYJb+Y
5+6hiOnMoKegY66lacf69krL4VaBs0XI+MaDcU65wafJ1244BFi/0Z0AY85WtvGu
REVuR28Ia6yXvUAOWhrGDkcV0x3cD5Z6dwZHPS8GEDmy7/5aTUDTTB1rIDL8OfbH
G0711r3ZpNfDhF85JCwsnbyRWNYlJVwgAshvlyQC1Dw20hizp3WC+S04ZY9w4kht
Vl/MHtfVGVLKyBiRQ4GE3M+6nIXl0esH7cfZ4A+GhNWwINvG8U0SEuxUGOmhiEZf
VFWz5ixFDyiNSQAH40TxXioD9dsqPF7JV4pcx2K44k1xPzGiwDznGYu0vNAv4fnQ
iqsRRShe9QBow45/XMnn3aRhnxWQ5LvKwq7favxdwOJwxHTraddGXPmyq/aeTmib
yYnlXlAniqmjzgN5VYLCnGPoLKd7xQcM94+GiVhUlPeHL2ls8ydEKtGE7YcQnT6z
Ux7QY8lKXH2cZHCBo/vw
=3b3n
-END PGP SIGNATURE-


Accepted:
cronolog_1.6.2+rpk-1.debian.tar.gz
  to main/c/cronolog/cronolog_1.6.2+rpk-1.debian.tar.gz
cronolog_1.6.2+rpk-1.dsc
  to main/c/cronolog/cronolog_1.6.2+rpk-1.dsc
cronolog_1.6.2+rpk-1_amd64.deb
  to main/c/cronolog/cronolog_1.6.2+rpk-1_amd64.deb
cronolog_1.6.2+rpk.orig.tar.gz
  to main/c/cronolog/cronolog_1.6.2+rpk.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxgqq-0004fv...@franck.debian.org



Accepted openafs 1.6.0~pre6-1 (source i386 all)

2011-06-16 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 09:07:30 -0700
Source: openafs
Binary: openafs-client openafs-fuse openafs-kpasswd openafs-fileserver 
openafs-dbserver openafs-doc openafs-krb5 libkopenafs1 libafsauthent1 
libafsrpc1 libopenafs-dev openafs-modules-source openafs-modules-dkms 
libpam-openafs-kaserver openafs-dbg
Architecture: source i386 all
Version: 1.6.0~pre6-1
Distribution: unstable
Urgency: low
Maintainer: Russ Allbery r...@debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 libafsauthent1 - AFS distributed file system runtime library (authentication)
 libafsrpc1 - AFS distributed file system runtime library (RPC layer)
 libkopenafs1 - AFS distributed file system runtime library (PAGs)
 libopenafs-dev - AFS distributed filesystem development libraries
 libpam-openafs-kaserver - AFS distributed filesystem kaserver PAM module
 openafs-client - AFS distributed filesystem client support
 openafs-dbg - AFS distributed filesystem debugging information
 openafs-dbserver - AFS distributed filesystem database server
 openafs-doc - AFS distributed filesystem documentation
 openafs-fileserver - AFS distributed filesystem file server
 openafs-fuse - AFS distributed file system experimental FUSE client
 openafs-kpasswd - AFS distributed filesystem old password changing
 openafs-krb5 - AFS distributed filesystem Kerberos 5 integration
 openafs-modules-dkms - AFS distributed filesystem kernel module DKMS source
 openafs-modules-source - AFS distributed filesystem kernel module source
Closes: 622260
Changes: 
 openafs (1.6.0~pre6-1) unstable; urgency=low
 .
   * New upstream prerelease.
 - Don't do unnecessary page invalidation with directories.
 - Flush vcaches in afs_shutdown for better callback givebacks.
 - Fix the vnode type for dynroot FIDs.
 - Fix volinfo -filenames.
 - Fall back to afs3-vlserver for SRV records for afs3-prserver.
 - Fix a client locking issue on ICBS that could deadlock.
 - Fix callback state handling with demand-attach when salvaged.
 - Fix reference leak in GetCapabilities.
 - Document DNS SRV record usage in afsd man page.
   * Add a dummy debian/rules rule in the kernel module rules file to fix
 builds with make-kpkg.  (Closes: #622260)
   * Remove and symlink the copies of jquery generated by Doxygen and add a
 Recommends on libjs-jquery for openafs-doc.
Checksums-Sha1: 
 cb5dfd04c26dded02c1a75b87ced8c99df913d10 2024 openafs_1.6.0~pre6-1.dsc
 eac9e18e0971295b218d4bebe390a6906a213fce 9069288 openafs_1.6.0~pre6.orig.tar.gz
 fe23bbe82c92d9cdc9d7518b00839ec92b675a20 146831 
openafs_1.6.0~pre6-1.debian.tar.gz
 437bce23e684f5bc0b781577a6c14ad66f70185f 3650464 
openafs-client_1.6.0~pre6-1_i386.deb
 26dffbebd4e2f77be791c38ccdf8b9cae64a0686 295008 
openafs-fuse_1.6.0~pre6-1_i386.deb
 90b77d8e628c9b3ab89752ed4b3a82f662e11f83 316744 
openafs-kpasswd_1.6.0~pre6-1_i386.deb
 d4ea36cb5050329156cb33e0de043fea7374ba65 3244180 
openafs-fileserver_1.6.0~pre6-1_i386.deb
 77bf162c42b66cd742e4ad0637d81e8a54d1d919 754184 
openafs-dbserver_1.6.0~pre6-1_i386.deb
 ea58cd590ceb489cbf9e5a9834a63ab6a0bef487 4556908 
openafs-doc_1.6.0~pre6-1_all.deb
 357fc011dc10136c33a3767a3ec449ef49c486ba 345280 
openafs-krb5_1.6.0~pre6-1_i386.deb
 a61434e0c9167907b630ecd12fd8ab85675443b1 76574 
libkopenafs1_1.6.0~pre6-1_i386.deb
 5ffaa6376507ec393f82df8639c50ea81ba8e68b 152434 
libafsauthent1_1.6.0~pre6-1_i386.deb
 cc8e3c0fa01a21143ce5e21e83b034888f47143e 217330 
libafsrpc1_1.6.0~pre6-1_i386.deb
 4cdbb425d50959373e9c04474b774c8436809633 2681204 
libopenafs-dev_1.6.0~pre6-1_i386.deb
 d9a4278d902431d1493a27add571eb5ea9bc686d 1099616 
openafs-modules-source_1.6.0~pre6-1_all.deb
 7ebea186b6d8255fde01c1f412d88444a806ba62 1340484 
openafs-modules-dkms_1.6.0~pre6-1_all.deb
 7cd07d4ed5f014fcfa62b98f2a26636251b7b10f 365792 
libpam-openafs-kaserver_1.6.0~pre6-1_i386.deb
 35396638a42bf17d9fcadbd594445bc54d7e6881 5965898 
openafs-dbg_1.6.0~pre6-1_i386.deb
Checksums-Sha256: 
 12123d52539feb5f958c2125e0a6621d41530aeb098f5a769f05d2716d4f7b5b 2024 
openafs_1.6.0~pre6-1.dsc
 1ebf88949f6f16ad349e78d116b2a87f68e2523ec14912abe013ee1a1569202a 9069288 
openafs_1.6.0~pre6.orig.tar.gz
 0eadcd2d58a42793111283c3388ecfc4ce711b456b305607353999a9d7c159c8 146831 
openafs_1.6.0~pre6-1.debian.tar.gz
 6c4a0540ad42f07871b44931942267b43d743b209fea6fa350d284d81ca568f0 3650464 
openafs-client_1.6.0~pre6-1_i386.deb
 8e8a316c6b2dc9a6cacbcee6d0a47bb27d49ba5c237d2abaf00e20ee635ac3b0 295008 
openafs-fuse_1.6.0~pre6-1_i386.deb
 4dee2d642b47b9d25147d6007b684cc1308820122c147e69a456281d69eecac3 316744 
openafs-kpasswd_1.6.0~pre6-1_i386.deb
 5e6506af39cde049e47fed0d4d9fb16f6e8d6aa7097edf7fc29784a04c69a123 3244180 
openafs-fileserver_1.6.0~pre6-1_i386.deb
 09f889b650cb0a2a3d302a3df50bf2331f92e330977cf7b1efd13bb380039a90 754184 
openafs-dbserver_1.6.0~pre6-1_i386.deb
 80a31cedec14a60f98185d4b4bd0e3aae97fb84c2f6e1bcb770468b632ca9dfa 4556908 

Accepted banshee-community-extensions 2.1.1-1 (source all amd64)

2011-06-16 Thread Chow Loong Jin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 Jun 2011 02:31:33 +0800
Source: banshee-community-extensions
Binary: banshee-community-extensions banshee-extensions-common 
banshee-extension-alarm banshee-extension-ampache banshee-extension-awn 
banshee-extension-clutterflow banshee-extension-coverwallpaper 
banshee-extension-jamendo banshee-extension-karaoke 
banshee-extension-lastfmfingerprint banshee-extension-lcd 
banshee-extension-liveradio banshee-extension-lyrics 
banshee-extension-magnatune banshee-extension-mirage banshee-extension-openvp 
banshee-extension-radiostationfetcher banshee-extension-randombylastfm 
banshee-extension-streamrecorder banshee-extension-telepathy 
banshee-extension-zeitgeistdataprovider
Architecture: source all amd64
Version: 2.1.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian CLI Applications Team 
pkg-cli-apps-t...@lists.alioth.debian.org
Changed-By: Chow Loong Jin hyper...@ubuntu.com
Description: 
 banshee-community-extensions - set of community contributed extensions for 
Banshee
 banshee-extension-alarm - Alarm extension for Banshee
 banshee-extension-ampache - Ampache extension for Banshee
 banshee-extension-awn - AWN integration extension for Banshee
 banshee-extension-clutterflow - CoverFlow functionality for Banshee
 banshee-extension-coverwallpaper - Cover wallpaper extension for Banshee
 banshee-extension-jamendo - Jamendo extension for Banshee
 banshee-extension-karaoke - Karaoke extension for Banshee
 banshee-extension-lastfmfingerprint - Last.FM fingerprinting extension for 
Banshee
 banshee-extension-lcd - LCD display integration extension for Banshee
 banshee-extension-liveradio - LiveRadio extension for Banshee
 banshee-extension-lyrics - Lyrics extension for Banshee
 banshee-extension-magnatune - Magnatune for Banshee
 banshee-extension-mirage - Automatic Playlist Generation extension for Banshee
 banshee-extension-openvp - visualizations extension for Banshee
 banshee-extension-radiostationfetcher - radio station fetcher extension for 
Banshee
 banshee-extension-randombylastfm - Random By Last.FM extension for Banshee
 banshee-extension-streamrecorder - StreamRecorder extension for Banshee
 banshee-extension-telepathy - Telepathy extension for Banshee
 banshee-extension-zeitgeistdataprovider - Zeitgeist data provider extension 
for Banshee
 banshee-extensions-common - common files for banshee-community-extensions
Closes: 627384
Changes: 
 banshee-community-extensions (2.1.1-1) experimental; urgency=low
 .
   * [39d331d] Fix pushd usage inside Makefile
   * [2b7eac6] Imported Upstream version 2.1.1:
 + Enhancements since 2.0.0:
   - Use dbus-sharp instead of ndesk-dbus. The Telepathy extension does not
 bundle the ndesk-dbus sources anymore.
   - ClutterFlow: Major refactoring and code cleanup, for better 
readability.
 + Notable bugs fixed since 2.0.0:
   - ClutterFlow: Fix NRE crash (bgo#647134)
   - Karaoke: add an gst_init() call to make sure gstreamer is working
   - Karaoke: fix NRE on dispose if audiokaraoke was not found
   - LastfmFingerprint: Don't strdup strings
   - LastfmFingerprint: Fix empty name exception (bgo#648168)
   - Lirc: Drop liblirc_client.so moduleref (LP: #773686)
   - LiveRadio: Re-enable ShoutCast with request structure from
 RadioStationFetcher
   - Lyrics: Always update pane title when track changes (bgo#647108)
   - RadioStationFetcher: Updated the shoutcast plugin to fix the IP address
   - ZeitgeistDataprovider: Register dataprovider in DataSource Registry
 (LP: #691842)
   - ZeitgeistDataprovider: Differenciate between ScheduledActivity and
 UserActivity (LP: #748120)
   * [b28fd78] Drop upstreamed patches
   * Fix unresolved modulerefs with cli-common-dev 0.8 (Closes: #627384)
 + [0787020] Exclude libgdk-win32 moduleref
 + [597f885] Cherry-pick liblastfmfpbridge dllmap
 + [94a7827] Exclude glibsharpglue-2 moduleref
 + [f042731] Cherry-pick patch to fix gstreamer dllimport
   * [b83b3e2] Use dh_gencontrol -- -V for substvars
 .
 banshee-community-extensions (2.0.1-2) UNRELEASED; urgency=low
 .
   * [ea79349] Build-dep on dbus# instead of ndesk-dbus
   * [353fb83] Forward port to DBus#
   * [98b5b34] Add autoreconf
   * [a83884a] Bump build-dep on Banshee to 2.1.0
   * [0f06608] Backport upstream patch to fix autoreconf
   * [e1773a6] Use upstream autogen.sh with dh_autoreconf
Checksums-Sha1: 
 8bb60951228cf23f814a9c351e4794512b839a89 3418 
banshee-community-extensions_2.1.1-1.dsc
 4c7e742689a12f55f5c116d443b199785ba60d40 839527 
banshee-community-extensions_2.1.1.orig.tar.bz2
 7c0d82dde0eea2e46ec8847d14c02b81cce7cf9f 16538 
banshee-community-extensions_2.1.1-1.debian.tar.gz
 366beafdac7c8a79c375ae21cef74cd36ffc6048 10084 
banshee-community-extensions_2.1.1-1_all.deb
 718cddf195182b574774318a8aad03fbb6da64e7 58804 
banshee-extensions-common_2.1.1-1_all.deb
 

Accepted docky 2.1.3-1 (source all)

2011-06-16 Thread Rico Tzschichholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 Jun 2011 13:41:21 +0200
Source: docky
Binary: docky
Architecture: source all
Version: 2.1.3-1
Distribution: experimental
Urgency: low
Maintainer: Debian CLI Applications Team 
pkg-cli-apps-t...@lists.alioth.debian.org
Changed-By: Rico Tzschichholz ric...@ubuntu.com
Description: 
 docky  - Elegant, powerful, clean dock
Changes: 
 docky (2.1.3-1) experimental; urgency=low
 .
   * New upstream release 2.1.3 Paper cut,
 changes include:
 + prevent crash if a desktop-file contains invalid values (LP: #757140)
   * debian/control:
 + Bump Standards version to 3.9.2 (no changes needed)
   * debian/rules:
 + Add add GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
   * debian/patches/00bzr_fix_dll_maps.patch:
 + Fix dll maps to please moduleref check
Checksums-Sha1: 
 cd171efef7444929ec419617a03567b55aed24bc 2376 docky_2.1.3-1.dsc
 23ea67ec13cbaeb2184ec4154ec54ab65f62b259 691291 docky_2.1.3.orig.tar.bz2
 91defeaedf357d7ab85dbc05832d307ad950cd38 11258 docky_2.1.3-1.debian.tar.gz
 90a883e53facb652d53662c03ab37903f962a058 832314 docky_2.1.3-1_all.deb
Checksums-Sha256: 
 c3c6287bf21d8faa57c6208d27e65ba286d3485720fce2408492425f98805438 2376 
docky_2.1.3-1.dsc
 9df7dff04ddf07b88508410d453da4caca31132a6cfdd3504c562afc5a9f9ded 691291 
docky_2.1.3.orig.tar.bz2
 b650a3be973acba404bffcc011f1f74e531afd4f720944f9fa8f9b1a3e323626 11258 
docky_2.1.3-1.debian.tar.gz
 463bec11bd292e06147c9d58ff6378b34cdcb137509df2bd918d81fb3d0b77db 832314 
docky_2.1.3-1_all.deb
Files: 
 a39989b73664a3d7573500151f285ac6 2376 x11 optional docky_2.1.3-1.dsc
 fd8709e61d10d019e86caa53395f8624 691291 x11 optional docky_2.1.3.orig.tar.bz2
 09504cdeb8f36ebd4d70daabf8189e69 11258 x11 optional docky_2.1.3-1.debian.tar.gz
 73e121efd3dddff0b8625425efdffe0f 832314 x11 optional docky_2.1.3-1_all.deb

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

iQIcBAEBCAAGBQJN+lCmAAoJEONS1cUcUEHU37YQAIuaDaPb+XcBbSBn/v6KFyEv
tbir1bkIBDQTBBoYSYd7kYsL3RbW5LS/nmzzjtV9Dw9yIQ9FvPoSuP5/7mrCE9DT
x5n6kGCaAFa1Co/zy10Gqc3evtCkxehSz92x2pB46D5L0XIEqf4GTl/2WkoDbjJc
O9JHbIxMZDCPkmkt8Bz6lKU8ouMmXZRSl+yVcZT9/MftPvEipATvlVeJ93MbFuG+
B/EKiQzrr3ph9m2qmaWrbSj5175yhk3Xl8Q5jYcttz27qqJddP0rrGsnKBP4rGIn
6NMIPw+MLkTfXW6HBFkPEd0rRtqxvz3e9gOWONwEUYulz2JQnyJN4pLNf0hBaaRY
MkR6m9NtCwt//ojBmaqQkpfgZGJZBz8GeWsGjJ4NWvLBuMHnrTRLCeaEV+UsIITq
bUuK0nrCslMu7aRVCP/qb11hcG3XnR/SHXLOQyMl65ndoJvbnYrC/XyJeiJ0PwpK
4n1vCwoJcFhdQBr2OujD/tEA7EvypgChw5Vuslea5/8LFpkVllJmJscZhI92ocm3
QOAuyi2N7akDX1YLYHESKqSPfF1qQH2UP2xJOqD97sqWukKnRsPeYAr+0JVmvfZR
N05KBKJwWvfAsicWTmR0L6Rz7O19sz/KvVj/LxI6KnM1Wp/nIPfmBwDxUTvMzxf5
8fXAdFYnAuVR3xQikYVV
=OJP2
-END PGP SIGNATURE-


Accepted:
docky_2.1.3-1.debian.tar.gz
  to main/d/docky/docky_2.1.3-1.debian.tar.gz
docky_2.1.3-1.dsc
  to main/d/docky/docky_2.1.3-1.dsc
docky_2.1.3-1_all.deb
  to main/d/docky/docky_2.1.3-1_all.deb
docky_2.1.3.orig.tar.bz2
  to main/d/docky/docky_2.1.3.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxhpx-0004kk...@franck.debian.org



Accepted bless 0.6.0-3 (source all)

2011-06-16 Thread Jo Shields
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 20:02:20 +0100
Source: bless
Binary: bless
Architecture: source all
Version: 0.6.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian CLI Applications Team 
pkg-cli-apps-t...@lists.alioth.debian.org
Changed-By: Jo Shields direct...@apebox.org
Description: 
 bless  - A full featured hexadecimal editor
Changes: 
 bless (0.6.0-3) unstable; urgency=low
 .
   [ Julian Taylor ]
   * [9a79f6b] initial upstream branch
   * [928e04c] Imported Upstream version 0.6.0
   * [2e9be89] add patch to replace gmcs usage with mono-csc
   * [c7ca053] update Vcs-* fields to point to git
 .
   [ Iain Lane ]
   * [e720c76] Update to use my d.o email address
Checksums-Sha1: 
 118ef8039ffd02d46c9587f81e39240b3717ea8e 1648 bless_0.6.0-3.dsc
 1e85a6a6c00e8d26167297afca7a3c636178913b 5763 bless_0.6.0-3.diff.gz
 85adf64b45f5db69fe6504f7b495745ffede4314 526604 bless_0.6.0-3_all.deb
Checksums-Sha256: 
 d361da58f36561dcc782e2913198192dc29fbb5947616a26bc4fb286295131f7 1648 
bless_0.6.0-3.dsc
 eff9d89122a748c4c8369f805c643d5d70070768cc8b6026928c13e4c48f212f 5763 
bless_0.6.0-3.diff.gz
 5807663214b926012fea3b42f3ec688119d6759f9a472eb8efa332936072c108 526604 
bless_0.6.0-3_all.deb
Files: 
 4f0832514953ff94ef1b91bc030c8d37 1648 editors optional bless_0.6.0-3.dsc
 2903e443fb5ac065256059428efa27b7 5763 editors optional bless_0.6.0-3.diff.gz
 a112d6e27a40615038110ef553f8ada2 526604 editors optional bless_0.6.0-3_all.deb

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

iQEcBAEBAgAGBQJN+lPlAAoJEMkPnLkOH60MkHwH/2g9k70fb3tvY8CauMcWGymz
kgJ/dfSSTv3D2EoM0GqvtsfXhR19jP15KyCRhT+2xkUuof/ILWwMPXQ59sGm2T0x
JcOEoHZzer2nKY6ArxPanilICRaU387Q17Y4ZgD28Zwdb4HGtIAoKttcEW0gYPt7
ClL0YOBAH306BjlM8yeSBIxvldIwK8CuRFjdGexIkEWOfrG+2JzzH1VosvmCnVJk
r5aPrA/W5i2zFirDpxVo20+MSdbnA31h98DTldLdatOJz7OQq6FlNZXL+f6fPnZL
4DFclBi9KgA2hneMae3U1Ha/r6/rgED4mtnlb22OGDRiWH1ClBJt7MDz4MqrFkk=
=2Vy1
-END PGP SIGNATURE-


Accepted:
bless_0.6.0-3.diff.gz
  to main/b/bless/bless_0.6.0-3.diff.gz
bless_0.6.0-3.dsc
  to main/b/bless/bless_0.6.0-3.dsc
bless_0.6.0-3_all.deb
  to main/b/bless/bless_0.6.0-3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxi3y-0005gn...@franck.debian.org



Accepted libmongo-client 0.1.1-1 (source amd64)

2011-06-16 Thread Gergely Nagy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 12:25:16 +0200
Source: libmongo-client
Binary: libmongo-client0 libmongo-client-dev libmongo-client0-dbg
Architecture: source amd64
Version: 0.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Gergely Nagy alger...@madhouse-project.org
Changed-By: Gergely Nagy alger...@madhouse-project.org
Description: 
 libmongo-client-dev - Development files for the alternate C driver for MongoDB
 libmongo-client0 - Alternate C driver for the MongoDB document-oriented 
datastore
 libmongo-client0-dbg - Alternate C driver for MongoDB (debugging symbols)
Changes: 
 libmongo-client (0.1.1-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 1c6bcf6b2b233418a3b4b16403961222dd6c19d2 1350 libmongo-client_0.1.1-1.dsc
 3fb910b7138814db0b049ea8e0586d0164dbec6f 82869 
libmongo-client_0.1.1.orig.tar.gz
 e73de7ee997f047087d868e48103663ed042b9a8 2595 
libmongo-client_0.1.1-1.debian.tar.gz
 110eda7838c0ffe07e2ceb41e8f055a1d0b3f9e8 29958 
libmongo-client0_0.1.1-1_amd64.deb
 b1210c2abe8009a0ecc772445ddab8670e1d843b 40880 
libmongo-client-dev_0.1.1-1_amd64.deb
 12ad0894ec5748dc9b9dbe31a012789c3126fcd9 45738 
libmongo-client0-dbg_0.1.1-1_amd64.deb
Checksums-Sha256: 
 a420fec9a2d563b3df4d3ef44686374fb8f1607afacee34ff71db477c00f7453 1350 
libmongo-client_0.1.1-1.dsc
 fa4faa6901ff71a3eb6ad0d8775b2739cf73a44ac64f220dcc50d8475efd3518 82869 
libmongo-client_0.1.1.orig.tar.gz
 92f2fba9d3b9e0f682bed1fe9b7a88e217817d2aaabae9ad6b4ce935ddb24ab7 2595 
libmongo-client_0.1.1-1.debian.tar.gz
 abc9e1e8fc4063ec4eb848930c5f1f8e5df8377fb331ce7b7251441721debbf2 29958 
libmongo-client0_0.1.1-1_amd64.deb
 c2dc8cf5d657dce23de9d2bd4c363a7815b933501811de33bda5777634870c60 40880 
libmongo-client-dev_0.1.1-1_amd64.deb
 e64bd710acb4d2b0ed3be479019d3e74c972320ce09bdbde899ff942e8f5d767 45738 
libmongo-client0-dbg_0.1.1-1_amd64.deb
Files: 
 9222b64dc6128f74e260fd4ecdc1acfd 1350 libs extra libmongo-client_0.1.1-1.dsc
 8ecf60063d4bab40ef7bc097727d664d 82869 libs extra 
libmongo-client_0.1.1.orig.tar.gz
 7d724c23c2bd5dd3ca39b178df2598cd 2595 libs extra 
libmongo-client_0.1.1-1.debian.tar.gz
 57406083cb4446b8791649755eb571c6 29958 libs extra 
libmongo-client0_0.1.1-1_amd64.deb
 60dfeca5fdebf63431d6ea72681a34bd 40880 libdevel extra 
libmongo-client-dev_0.1.1-1_amd64.deb
 b9ca45e8380990566db85e285ea93fbf 45738 debug extra 
libmongo-client0-dbg_0.1.1-1_amd64.deb

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

iEYEARECAAYFAk36UuIACgkQMDatjqUaT91ojwCgrirks6r/6AJFjPGF6fwOiIJG
bBEAni0iN/NBW8Rv/76c+8r2Ax8yGvgQ
=9+Y+
-END PGP SIGNATURE-


Accepted:
libmongo-client-dev_0.1.1-1_amd64.deb
  to main/libm/libmongo-client/libmongo-client-dev_0.1.1-1_amd64.deb
libmongo-client0-dbg_0.1.1-1_amd64.deb
  to main/libm/libmongo-client/libmongo-client0-dbg_0.1.1-1_amd64.deb
libmongo-client0_0.1.1-1_amd64.deb
  to main/libm/libmongo-client/libmongo-client0_0.1.1-1_amd64.deb
libmongo-client_0.1.1-1.debian.tar.gz
  to main/libm/libmongo-client/libmongo-client_0.1.1-1.debian.tar.gz
libmongo-client_0.1.1-1.dsc
  to main/libm/libmongo-client/libmongo-client_0.1.1-1.dsc
libmongo-client_0.1.1.orig.tar.gz
  to main/libm/libmongo-client/libmongo-client_0.1.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxi4g-0005ld...@franck.debian.org



Accepted f-spot 0.8.2-3 (source amd64)

2011-06-16 Thread Jo Shields
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 20:15:27 +0100
Source: f-spot
Binary: f-spot
Architecture: source amd64
Version: 0.8.2-3
Distribution: unstable
Urgency: low
Maintainer: Debian CLI Applications Team 
pkg-cli-apps-t...@lists.alioth.debian.org
Changed-By: Jo Shields direct...@apebox.org
Description: 
 f-spot - personal photo management application
Changes: 
 f-spot (0.8.2-3) unstable; urgency=low
 .
   [ Iain Lane ]
   * [f187b28] Add new patch to fix compilation with new gtk#/mono 2.10
   * [104afec] Update to use my d.o email address
Checksums-Sha1: 
 6077e59039f751839a4885655c357c5cf29b76f1 2179 f-spot_0.8.2-3.dsc
 03b2e2e06600b02968ef8d9cbb631fa97157916e 88578 f-spot_0.8.2-3.diff.gz
 58ddd2defe951fd901d3a0c42d633b8cde97e9b3 3182310 f-spot_0.8.2-3_amd64.deb
Checksums-Sha256: 
 e83c780e54582b692c0aef7ac6171715f639260a3625cbc970d30830718c861b 2179 
f-spot_0.8.2-3.dsc
 669c799f548da8e301a4d981ca2a9d9bac5b516d5c404092c8d8cc78a2b06074 88578 
f-spot_0.8.2-3.diff.gz
 33b25dd38e84acb5567986720b161af711b19872a199cc293bbf950f640d6d05 3182310 
f-spot_0.8.2-3_amd64.deb
Files: 
 7e8a7107bbadb5cfb26795e1c6457180 2179 gnome optional f-spot_0.8.2-3.dsc
 531572431c1d406163d9192f0329b9f4 88578 gnome optional f-spot_0.8.2-3.diff.gz
 2ab4961774e4246ae296226f75bb656b 3182310 gnome optional 
f-spot_0.8.2-3_amd64.deb

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

iQEcBAEBAgAGBQJN+ljhAAoJEMkPnLkOH60MT+sH/0+uW6ZwMlvoRgbIHibeYCeI
siVqJzoZIfia28UUuClD0+SpHLIfV+Zb0+RN9/KimmJehEzWQ4dFkdVdagLqVDvc
mzDTjAA2a6RtQud7RoP0vD8nTrWd5g2DU9UGeqLUG3c3GgohoqX5Zzi+88+/PO2C
8qd2hPUOq4OzCoQxNIRgdqwgtJnyrQ7H5DIJym3vSZjA96GuGsGUUvsmPmVZWOw6
5MhPbRZWuNDXiCDT4dNxNmXBHtJ+nGStwMTr22pQRnlzf6BWHa0A1OeHsKcxpYRc
iZ8bUeZnTEft/zHNc5SebExepNAiIntXmVJn4VZfMlC1IsAqwZc+u9YX//x5DZw=
=PoFM
-END PGP SIGNATURE-


Accepted:
f-spot_0.8.2-3.diff.gz
  to main/f/f-spot/f-spot_0.8.2-3.diff.gz
f-spot_0.8.2-3.dsc
  to main/f/f-spot/f-spot_0.8.2-3.dsc
f-spot_0.8.2-3_amd64.deb
  to main/f/f-spot/f-spot_0.8.2-3_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxiiq-0007iw...@franck.debian.org



Accepted gcc-4.6 4.6.0-14 (source all amd64)

2011-06-16 Thread Matthias Klose
 Standard C++ Library v3 (64bit)
 lib64stdc++6-4.6-dbg - GNU Standard C++ Library v3 (debugging files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgcc2- GCC support library
 libgcc2-dbg - GCC support library (debug symbols)
 libgcc4- GCC support library
 libgcc4-dbg - GCC support library (debug symbols)
 libgfortran3 - Runtime library for GNU Fortran applications
 libgfortran3-dbg - Runtime library for GNU Fortran applications (debug symbols)
 libgo0 - Runtime library for GNU Go applications
 libgo0-dbg - Runtime library for GNU Go applications (debug symbols)
 libgomp1   - GCC OpenMP (GOMP) support library
 libgomp1-dbg - GCC OpenMP (GOMP) support library (debug symbols)
 libmudflap0 - GCC mudflap shared support libraries
 libmudflap0-4.6-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 libn32gcc1 - GCC support library (n32)
 libn32gcc1-dbg - GCC support library (debug symbols)
 libn32gfortran3 - Runtime library for GNU Fortran applications (n32)
 libn32gfortran3-dbg - Runtime library for GNU Fortran applications (n32 debug 
symbols)
 libn32go0  - Runtime library for GNU Go applications (n32)
 libn32go0-dbg - Runtime library for GNU Go applications (n32 debug symbols)
 libn32gomp1 - GCC OpenMP (GOMP) support library (n32)
 libn32gomp1-dbg - GCC OpenMP (GOMP) support library (n32 debug symbols)
 libn32mudflap0 - GCC mudflap shared support libraries (n32)
 libn32mudflap0-dbg - GCC mudflap shared support libraries (n32 debug symbols)
 libn32objc3 - Runtime library for GNU Objective-C applications (n32)
 libn32objc3-dbg - Runtime library for GNU Objective-C applications (n32 debug 
symbo
 libn32quadmath0 - GCC Quad-Precision Math Library (n32)
 libn32quadmath0-dbg - GCC Quad-Precision Math Library (n32 debug symbols)
 libn32stdc++6 - GNU Standard C++ Library v3 (n32)
 libn32stdc++6-4.6-dbg - GNU Standard C++ Library v3 (debugging files)
 libobjc3   - Runtime library for GNU Objective-C applications
 libobjc3-dbg - Runtime library for GNU Objective-C applications (debug symbols)
 libquadmath0 - GCC Quad-Precision Math Library
 libquadmath0-dbg - GCC Quad-Precision Math Library (debug symbols)
 libstdc++6 - GNU Standard C++ Library v3
 libstdc++6-4.6-dbg - GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.6-dev - GNU Standard C++ Library v3 (development files)
 libstdc++6-4.6-doc - GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.6-pic - GNU Standard C++ Library v3 (shared library subset kit)
Closes: 630567
Changes: 
 gcc-4.6 (4.6.0-14) unstable; urgency=low
 .
   * Update to SVN 20110616 (r175102) from the gcc-4_6-branch.
 - Fix PR debug/48459, PR fortran/49103, PR rtl-optimization/49390,
   PR c++/49117, PR c++/49369, PR c++/49290, PR target/44618,
   PR tree-optimization/49419 (closes: #630567).
   * Update the Linaro support to the 4.6-2011.06-0 release.
Checksums-Sha1: 
 eb07447ab7b763d35e890a849bd19b56fa4ea8e2 4191 gcc-4.6_4.6.0-14.dsc
 d5223d31601de66f945bccd63b6f7f737ba21839 9711341 gcc-4.6_4.6.0-14.diff.gz
 940a209db93a7fe6d22e18d63076f5bb89baf9e7 65863014 
gcc-4.6-source_4.6.0-14_all.deb
 2a3519a7f38714f6812c80e6a91b169192dcb843 3714264 
libstdc++6-4.6-doc_4.6.0-14_all.deb
 29f49d358b78620ff181c69548b0e8218a065ba8 2590798 
gcc-4.6-locales_4.6.0-14_all.deb
 2793bfa389c8341e15814b2cb6379a43eb1b4e67 130972 gcc-4.6-base_4.6.0-14_amd64.deb
 f067e122db339cc5f0d16ef6aba3194fb3b4cef7 42852 libgcc1_4.6.0-14_amd64.deb
 e3032c60ebd82e84877288c5cb47290e94806c48 93080 libgcc1-dbg_4.6.0-14_amd64.deb
 f4fa23d3f5988b940f6a73e2af58a05846e0b357 54080 lib32gcc1_4.6.0-14_amd64.deb
 9d99853c24ea6b117c7db1a7905f9ad1a8891a92 98516 lib32gcc1-dbg_4.6.0-14_amd64.deb
 7c0c922a42eadd59afb89cd3dcbc4079adfc7de9 126004 libquadmath0_4.6.0-14_amd64.deb
 0c52e867bdcc8c4176b468991dd4ff4486bca974 149970 
libquadmath0-dbg_4.6.0-14_amd64.deb
 8ed260ca5d4aabb4e0ff79697984dff404d40f98 195272 
lib32quadmath0_4.6.0-14_amd64.deb
 70df63f01a559324d54244ddbf455a762e9f29ae 169464 
lib32quadmath0-dbg_4.6.0-14_amd64.deb
 2c1e42e11701ab77c0008cfea8270268ee65eec2 25714 libgomp1_4.6.0-14_amd64.deb
 a2db18dabf289ba621d0217626db52b13f1326b4 62810 libgomp1-dbg_4.6.0-14_amd64.deb
 35f740dfe348c552b5674ef5c3f3fd0c093d3584 28430 lib32gomp1_4.6.0-14_amd64.deb
 7d515b6d23be5ceba389c40a9e67e3db15f4f01c 62786 
lib32gomp1-dbg_4.6.0-14_amd64.deb
 c4e68f68a88c8c8ee95c95268f70d07ba0af37a1 4784364 cpp-4.6_4.6.0-14_amd64.deb
 7361e46aa138308b35cb1ee9abd05fc30ee37bee 65438 fixincludes_4.6.0-14_amd64.deb
 3867377e2930f21cc466f9115f00414c42d0fff5 218896 
libmudflap0-4.6-dev_4.6.0-14_amd64.deb
 fd50114a7f30449d558065b20922f177d42dff57 97804 libmudflap0_4.6.0-14_amd64.deb
 5ecde1526844aec33ef41167adfdc2b7e97e75f7 133630 
libmudflap0-dbg_4.6.0-14_amd64.deb
 ce7ea8ed4de60dace2f584df0c1eff03356d6066 88036 lib32mudflap0_4.6.0-14_amd64.deb
 78f59650a0af02c57bbe34173b458f2f496225c8 118518 
lib32mudflap0

Accepted cssutils 0.9.8~a1-1 (source all)

2011-06-16 Thread Charlie Smotherman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 14:55:24 -0500
Source: cssutils
Binary: python-cssutils python-cssutils-doc python-encutils
Architecture: source all
Version: 0.9.8~a1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Charlie Smotherman cj...@cableone.net
Description: 
 python-cssutils - CSS Cascading Style Sheets parser and builder
 python-cssutils-doc - CSS Cascading Style Sheets parser and builder - API 
documentation
 python-encutils - Encoding detection collection for Python
Closes: 616782
Changes: 
 cssutils (0.9.8~a1-1) unstable; urgency=low
 .
   [ Charlie Smotherman ]
   * Team upload.
   * New upstream release.
   * Update package to use dh_python2.  Closes: #616782
   * Switched to using dh7 tiny rules.
   * Increased debian/compat to 7.
   * Updated debian/python-cssutils.install and debian/python-encutils.install
 to allow installation into dist-packages.
   * Renamed debian/examples, debian/docs to debian/python-cssutils-doc.examples
 and debian/python-cssutils-doc.docs so they will be part of the docs
 package.
   * Added python-cssutils-doc to python-cssutils Recommends section.
   * Added the manpages
 - debian/man/csscapture.manpage1.
 - debian/man/csscombine.manpage1.
 - debian/man/cssparse.manpage1.
   * Added debian/python-cssutils.manpages to install the new manpages.
   * Updated debian/copyright to DEP5.
   * Added manpage copyright info to debian/copyright.
   * Added debian/doc-base to register the html documentation with doc-base.
   * Added debian/python-cssutils-doc.links to create the jquery.js symlink.
   * Reworked debian/watch so it now reports correctly.
   * Switched to using source format 3.0.
   * debian/control
 - removed cdbs from B-D.
 - bumped min python version to = 2.6.6-3~.
 - removed python-central from B-D-I.
 - increased min debhelper version to = 7.0.50~
 - bumped Standards Version to 3.9.2 no changes needed.
 - removed XS-P-V in favor of X-P-V, increased X-P-V to =2.6.
 - removed XB-P-V.
 - added Recommends: python-cssutils-doc to python-cssutils binary stanza.
 - added libjs-jquery to Depends field of python-cssutils-doc bianry
   stanza.
 - removed dpkg-dev from B-D.
   * debian/rules
 - removed dh_auto_install override, not needed.
 - added dh_install exclude for jquery.js
 - removed --single-version-externally-managed, not needed anymore.
 .
   [ Stefano Rivera ]
   * Add debian/clean to delete egg-info.
Checksums-Sha1: 
 4d946438e0d2d4cf14639f202132f35f067765d6 1885 cssutils_0.9.8~a1-1.dsc
 9eeb0e111ca6e61b04836343a8a0f3a32d7ba378 478905 cssutils_0.9.8~a1.orig.tar.gz
 cc16bc48f36d45b4a1c32d78487e187c55467240 5860 cssutils_0.9.8~a1-1.debian.tar.gz
 9f26e9ce10b89c72eb4ab1410a86f0a3c06bad10 174814 
python-cssutils_0.9.8~a1-1_all.deb
 2f5a93dd04ad20f74651f74b156d6065805b1aba 189696 
python-cssutils-doc_0.9.8~a1-1_all.deb
 77d24a70a94e3b123f50e796d3eadd6187922bce 48984 
python-encutils_0.9.8~a1-1_all.deb
Checksums-Sha256: 
 ef3eef0b1614d5b4e628b156adbfdfd47d74f35bbe73f7156a6ed9f3f5b016f3 1885 
cssutils_0.9.8~a1-1.dsc
 aec758645b6935d41433a78efbe264590da8ee49b7ada48d015e3ef2c143625f 478905 
cssutils_0.9.8~a1.orig.tar.gz
 3d8603b4254714971daf4782aa51f65b12d53576dd4b0854e18eaad2481c905e 5860 
cssutils_0.9.8~a1-1.debian.tar.gz
 68094cf095a0ca171e88253f784b6fe9d38550cf0310eada93aae3660f56d0e2 174814 
python-cssutils_0.9.8~a1-1_all.deb
 f53555df6756868e177ca33a36c8083a6a8cb8b8eb2a5479d32f73f0c38fc124 189696 
python-cssutils-doc_0.9.8~a1-1_all.deb
 c1dbc37667839e836575fdb3e9196da44bcf95a607d0723d148121a91abe2bca 48984 
python-encutils_0.9.8~a1-1_all.deb
Files: 
 83a95f75b016535de5e4e697357450ad 1885 python optional cssutils_0.9.8~a1-1.dsc
 1964a3dc938008ac01e04641424435c9 478905 python optional 
cssutils_0.9.8~a1.orig.tar.gz
 1c04cc8de4170beb3357eb7d10c5af28 5860 python optional 
cssutils_0.9.8~a1-1.debian.tar.gz
 1b9954e33ee707180febeb6ad8d6cd62 174814 python optional 
python-cssutils_0.9.8~a1-1_all.deb
 b829db2cfb8bacaacff36ca392a02309 189696 doc optional 
python-cssutils-doc_0.9.8~a1-1_all.deb
 a8ec3dc5db8caa030c5dd7207d419e2e 48984 python optional 
python-encutils_0.9.8~a1-1_all.deb

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

iQIcBAEBAgAGBQJN+mCgAAoJEACQ/CG1zRrMZ5kQAJWGYdTwZeGy6o+L8ukw0GTe
arOBDvqPOmrQh9M+XsCq764obYwnUqZMrZ9Yfc/qj90qC32yqlRzYg8V6JgTkPqU
1sK7bh1UW/I3oc0rX/qRhj+dDgNcPNdY2k/hDw6k+fX55guJ1l4tRzL4WR9q2LC2
XlE/w+raMtjMJ+8gtlyKl0Cksc+lZSszXRpvh67u0F73NyqcjidYVf7vLNKRWJQZ
SnUyUYn3cx3y8tQ8wuJb1cYXFm1Bp5/L945WUMoqpjcdJfOVosfQ72mnsjLunTt9
QU0ReQ+GhDaKSDZKpRXGXkaKbNv5r3yGN7RZciYj/5nmdWTPe+j1+MmPAkzMwFyA
He2BX+zJAqDnrCzKqld2mEEx7Djk3gzZSp26IghYMcnrTHBMtCPst+9aWfFm+iAf
lS4Mo7P7gtBtBoC5hjy79Usp8OsopZ2zS+YR96EdbGS5oaSFttfRgIy9gCOq8a0d
cxqS3RtIZdquj/Ybc4UdZeciYDaTrCRqSAGfG+odyayBIWNSjlwzkZAnIH8I5nAX

Accepted mgltools-geomutils 1.5.6~rc1+cvs.20110615-1 (source amd64)

2011-06-16 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 15 Jun 2011 21:43:37 +0200
Source: mgltools-geomutils
Binary: mgltools-geomutils
Architecture: source amd64
Version: 1.5.6~rc1+cvs.20110615-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-geomutils - Python library for geometric analyses
Changes: 
 mgltools-geomutils (1.5.6~rc1+cvs.20110615-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: added myseld to Uploaders:
   * debian/copyright: word copyright needed now
Checksums-Sha1: 
 8798c31b9ba6117809ce1944a038427b73dcd5c6 1706 
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1.dsc
 88cd8cce0fb5a008937e6bfa8d272417a08bd1f2 49256 
mgltools-geomutils_1.5.6~rc1+cvs.20110615.orig.tar.gz
 46d50c59012183647f91e86c37be95c66f1e9a4c 5200 
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1.debian.tar.gz
 b99c3c67ee51da6be09307643f13f4fc3a2dcce5 206180 
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1_amd64.deb
Checksums-Sha256: 
 a76c2914cc1d024eb2e95100e394025ec046dfd2aff0b41ef295b1f10d4d7f59 1706 
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1.dsc
 c92e1e9b09a889950c8f764d5bb298b7993563df55d3dffeef1257ce598f26f6 49256 
mgltools-geomutils_1.5.6~rc1+cvs.20110615.orig.tar.gz
 19410d07583351e13dc32e299309550fb59d476c298e514b635a00d1640c8072 5200 
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1.debian.tar.gz
 5e446d8b5c6f9b1c7b403f6fd15a82dbad963b5205d3aa64d5a004dbfa137d01 206180 
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1_amd64.deb
Files: 
 3f8c6bff00d09286febec41f3fadc640 1706 non-free/science optional 
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1.dsc
 a56a1c70fbe7f26972052a372b4262f6 49256 non-free/science optional 
mgltools-geomutils_1.5.6~rc1+cvs.20110615.orig.tar.gz
 7f228ced83d9aa157945b48d620406ba 5200 non-free/science optional 
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1.debian.tar.gz
 e2a35dfe5133436b7efcca7d540a7d96 206180 non-free/science optional 
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1_amd64.deb

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

iEYEARECAAYFAk36ZuQACgkQ1gXdnL6dUznInACgjkFF23ZFfiBdBnIQILpFNHdg
lEoAnRaRjfJFqmj5kZItIgfuE+11ws2t
=wZvV
-END PGP SIGNATURE-


Accepted:
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1.debian.tar.gz
  to 
non-free/m/mgltools-geomutils/mgltools-geomutils_1.5.6~rc1+cvs.20110615-1.debian.tar.gz
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1.dsc
  to 
non-free/m/mgltools-geomutils/mgltools-geomutils_1.5.6~rc1+cvs.20110615-1.dsc
mgltools-geomutils_1.5.6~rc1+cvs.20110615-1_amd64.deb
  to 
non-free/m/mgltools-geomutils/mgltools-geomutils_1.5.6~rc1+cvs.20110615-1_amd64.deb
mgltools-geomutils_1.5.6~rc1+cvs.20110615.orig.tar.gz
  to 
non-free/m/mgltools-geomutils/mgltools-geomutils_1.5.6~rc1+cvs.20110615.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxjfx-ed...@franck.debian.org



Accepted mgltools-pmv 1.5.6~rc1+cvs.20110615-1 (source all)

2011-06-16 Thread Steffen Moeller
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 12 Nov 2010 14:20:35 +0100
Source: mgltools-pmv
Binary: mgltools-pmv
Architecture: source all
Version: 1.5.6~rc1+cvs.20110615-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Steffen Moeller moel...@debian.org
Description: 
 mgltools-pmv - Python-based Molecular Viewer
Changes: 
 mgltools-pmv (1.5.6~rc1+cvs.20110615-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 3b13b769e9f1229433abb2531d819dda54b00d21 1631 
mgltools-pmv_1.5.6~rc1+cvs.20110615-1.dsc
 969b2b1df06cfed38e40f8010e73a022b6ea924e 14752159 
mgltools-pmv_1.5.6~rc1+cvs.20110615.orig.tar.gz
 6c23f2d5650b8a838f3a11376a3f3b7c6cd06f71 7630 
mgltools-pmv_1.5.6~rc1+cvs.20110615-1.debian.tar.gz
 f081f512c144e2b202e7b0ddb326fed7d3b8bdd0 14770364 
mgltools-pmv_1.5.6~rc1+cvs.20110615-1_all.deb
Checksums-Sha256: 
 d401f85c94d2fa7aa9dd1824a1d6a7ac2c9c7ac4ec4412c64c72c228a4136501 1631 
mgltools-pmv_1.5.6~rc1+cvs.20110615-1.dsc
 d73ee8851e80cdb7fa8644a9c93106360c72491ee0cfacb54129cd628eeb17b4 14752159 
mgltools-pmv_1.5.6~rc1+cvs.20110615.orig.tar.gz
 fbaec07518d2e086b3f9996d791b7788cb0a751984a4a37732e50114e6d4f4d5 7630 
mgltools-pmv_1.5.6~rc1+cvs.20110615-1.debian.tar.gz
 b298ae087d7049a7f8b1fd45a4fec6ec5466d4bc41e108f6ddfd5d20a16454b2 14770364 
mgltools-pmv_1.5.6~rc1+cvs.20110615-1_all.deb
Files: 
 95537d9e71d9f2064875cc94b784895e 1631 non-free/science optional 
mgltools-pmv_1.5.6~rc1+cvs.20110615-1.dsc
 f6ba848112381eae996247d356b25d75 14752159 non-free/science optional 
mgltools-pmv_1.5.6~rc1+cvs.20110615.orig.tar.gz
 6d3d4283ed6d56907913e6c4869d4c66 7630 non-free/science optional 
mgltools-pmv_1.5.6~rc1+cvs.20110615-1.debian.tar.gz
 6ef839482c7663da15d347b76e8ff5a8 14770364 non-free/science optional 
mgltools-pmv_1.5.6~rc1+cvs.20110615-1_all.deb

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

iEYEARECAAYFAk36YckACgkQ1gXdnL6dUznNAwCfSFcPK8vHud7X7B93lmF4PapL
CsUAnRi4q9J7MGJubbuEJtmSG4kT9Jev
=Ety2
-END PGP SIGNATURE-


Accepted:
mgltools-pmv_1.5.6~rc1+cvs.20110615-1.debian.tar.gz
  to non-free/m/mgltools-pmv/mgltools-pmv_1.5.6~rc1+cvs.20110615-1.debian.tar.gz
mgltools-pmv_1.5.6~rc1+cvs.20110615-1.dsc
  to non-free/m/mgltools-pmv/mgltools-pmv_1.5.6~rc1+cvs.20110615-1.dsc
mgltools-pmv_1.5.6~rc1+cvs.20110615-1_all.deb
  to non-free/m/mgltools-pmv/mgltools-pmv_1.5.6~rc1+cvs.20110615-1_all.deb
mgltools-pmv_1.5.6~rc1+cvs.20110615.orig.tar.gz
  to non-free/m/mgltools-pmv/mgltools-pmv_1.5.6~rc1+cvs.20110615.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxjge-hk...@franck.debian.org



Accepted pdfmod 0.9.1-2 (source all)

2011-06-16 Thread Iain Lane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 22 May 2011 15:03:24 +0100
Source: pdfmod
Binary: pdfmod
Architecture: source all
Version: 0.9.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian CLI Applications Team 
pkg-cli-apps-t...@lists.alioth.debian.org
Changed-By: Iain Lane la...@ubuntu.com
Description: 
 pdfmod - simple tool for modifying PDF documents
Changes: 
 pdfmod (0.9.1-2) unstable; urgency=low
 .
   * [b137df1] Cherry-pick commit a29cfe7f8f by Nuno Araujo to fix 2.10
 compilation
Checksums-Sha1: 
 f552a54d9510841aa42ff5b2cfc0b4b429c5fa07 1725 pdfmod_0.9.1-2.dsc
 5c82e969026783a37a162a912d2b0a7546f27c44 4346 pdfmod_0.9.1-2.debian.tar.gz
 d566860cf2933915a1bb51c68eab1bb4025be616 582524 pdfmod_0.9.1-2_all.deb
Checksums-Sha256: 
 ecc8e7e4b78b1999a2bfeb4597fbfa62eb5f9993660cc638b879f72fec2eee9c 1725 
pdfmod_0.9.1-2.dsc
 f4232baf5b5ae15a7c01a5234f254032d8eeb06d816ed419d17bb1b071601e85 4346 
pdfmod_0.9.1-2.debian.tar.gz
 b00365160508092723f127b82bee96f2cc9edc4d7bd2cf9038a632ed7f7053d3 582524 
pdfmod_0.9.1-2_all.deb
Files: 
 561daef988ff78f748c2b0ad76b4195f 1725 gnome optional pdfmod_0.9.1-2.dsc
 7d4a8f13f43e6bb4188e9b89544d6af5 4346 gnome optional 
pdfmod_0.9.1-2.debian.tar.gz
 be9b36b054e03c6628f650ccf7882d56 582524 gnome optional pdfmod_0.9.1-2_all.deb

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

iQEcBAEBAgAGBQJN+l2qAAoJEMkPnLkOH60M/kIIAJj38IeMgCzoHs7Qs7q5e4/Y
HBml/9ZHynUXKd0jVUjTXdAnPVohFvUtpK0Tj67f+RlJ29jWGOtSNue50od+AArG
WMM6xhok7AucEFSb0+SUlXwcZWZnClltgWPNB9keMG+QE9gfQqd6scDarhIcHOPA
h3Y23tXsKhd/nmXudixLg9STUawzA1BITsGuNwB01dfrI61WzbRaMInrRzdVD/fn
6CJ3riARojuhqPyUSPXd89zmOzP2A4M2H3bW6mLOmJjxWE47KW0PMjwHWglprHQZ
4QVaOmQpiPF8vEp69hsRMIFxAgMQeg4RCFZJ7ux3FkKbA2f3gxJMAyHh/ea/9H4=
=t6ol
-END PGP SIGNATURE-


Accepted:
pdfmod_0.9.1-2.debian.tar.gz
  to main/p/pdfmod/pdfmod_0.9.1-2.debian.tar.gz
pdfmod_0.9.1-2.dsc
  to main/p/pdfmod/pdfmod_0.9.1-2.dsc
pdfmod_0.9.1-2_all.deb
  to main/p/pdfmod/pdfmod_0.9.1-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxjgr-jq...@franck.debian.org



Accepted win32-loader 0.7.2 (source all)

2011-06-16 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 21:59:55 +0200
Source: win32-loader
Binary: win32-loader
Architecture: source all
Version: 0.7.2
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Didier Raboud o...@debian.org
Description: 
 win32-loader - Debian-Installer loader for win32
Changes: 
 win32-loader (0.7.2) unstable; urgency=low
 .
   The « Raisinée » release.
 .
   * Use bzip2 compression for the source tarball.
   * Make win32-loader work from kFreeBSD CDs.
 - Add gzio grub module as kernels are gz-compressed.
 - Allow new win32-loader.ini option: kernel=, to be specified on the CDs.
Checksums-Sha1: 
 c61ed155b7fa80b73c1711969220176c381e7a3e 1282 win32-loader_0.7.2.dsc
 672dc49c824c18214fbc5fcbcdc8a6f2bbdc7712 243627 win32-loader_0.7.2.tar.bz2
 ac8d3a285446dd1800b1fe344557f1937e00b0c9 446328 win32-loader_0.7.2_all.deb
 885e7b53eb0e953212e797ad7358710b494aab38 892688 win32-loader_0.7.2_all.exe
 169e8d146e935724339b93d94eff2562288a1e00 3713 win32-loader_0.7.2_all.txt
Checksums-Sha256: 
 8c1cc638199e1d94195445e47c57fdf773d51b700f7ed98c1a584dff36bc35da 1282 
win32-loader_0.7.2.dsc
 d56d9a51bdeacf10bed2801b989c248a9cfdabcfe185b10e9441ce3eca85650d 243627 
win32-loader_0.7.2.tar.bz2
 a0964a0dd41db615f1df7e50a8f66cd1153ead4a0fd18358277d377e7dc9a514 446328 
win32-loader_0.7.2_all.deb
 ec99f29edd0c8222ad826ebebe4404da1882a7cc1e2ff80dd586df635bec096c 892688 
win32-loader_0.7.2_all.exe
 60ae30b6dde502bfc5db6dc77e03ba83048ed28aba17e8204ec1a4d74f280524 3713 
win32-loader_0.7.2_all.txt
Files: 
 de73e55bd23ccfba036d4a2e0d824a95 1282 utils extra win32-loader_0.7.2.dsc
 5ba5dfb7144018f6464ae45a9f20017e 243627 utils extra win32-loader_0.7.2.tar.bz2
 e858684c66bd9e4b823e0d9f9400bc15 446328 utils extra win32-loader_0.7.2_all.deb
 8d3b8a1e1cf43bc98c54cbb40e454e1d 892688 byhand - win32-loader_0.7.2_all.exe
 27714161d64e192ca1f0a91d67672468 3713 byhand - win32-loader_0.7.2_all.txt

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

iJwEAQECAAYFAk36ZbAACgkQKA1Vt+jBwDg/eQP/W38N+w838VVxacIR+w/EFrs7
43dyjyC5XD/5ERWVWF8g8TQ6Po1lvH3gNf/uxrzRhXzY5nN03Dq9rYO9T81o+5PJ
KsWGItRS9C1sCVnwrSr5V54jK3k01Gi/ig48goz7lOtRRLykGmlhl15QGZADXkOi
Bbexk5zK+abfEjWX/eM=
=YyVT
-END PGP SIGNATURE-


Accepted:
win32-loader_0.7.2.dsc
  to main/w/win32-loader/win32-loader_0.7.2.dsc
win32-loader_0.7.2.tar.bz2
  to main/w/win32-loader/win32-loader_0.7.2.tar.bz2
win32-loader_0.7.2_all.deb
  to main/w/win32-loader/win32-loader_0.7.2_all.deb
win32-loader_0.7.2_all.exe byhand
win32-loader_0.7.2_all.txt byhand


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxjgl-s4...@franck.debian.org



Accepted cpanminus 1.4008-1 (source all)

2011-06-16 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 16:05:44 +0200
Source: cpanminus
Binary: cpanminus
Architecture: source all
Version: 1.4008-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Alessandro Ghedini al3x...@gmail.com
Description: 
 cpanminus  - script to get, unpack, build and install modules from CPAN
Changes: 
 cpanminus (1.4008-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 a4000a82cfd81a62b84cc0ada4c0868eb8d7b143 1958 cpanminus_1.4008-1.dsc
 6102bf015e66e00a09f1df784fc86bbba899049d 58491 cpanminus_1.4008.orig.tar.gz
 34e18ef485e1ef457b273b5ccd3b2787b25af8df 2091 cpanminus_1.4008-1.debian.tar.gz
 65e37d7a63459654c9ed0ab2f826afab23b93d6f 75038 cpanminus_1.4008-1_all.deb
Checksums-Sha256: 
 7f66ce223bd836b11efce7e8e9eda6daf539a3ad7d18041577d152af3d741da6 1958 
cpanminus_1.4008-1.dsc
 016093970c73bea1e7d3ee45a3a8842dbf2cb89903bf230c244c051e1d792f18 58491 
cpanminus_1.4008.orig.tar.gz
 6e34ec7279a2964d3648f69ade82e83213a5b70613a4f901ff6396abc58b71ef 2091 
cpanminus_1.4008-1.debian.tar.gz
 664378189d1193f1929a6d1db8209a2d1efae6312a9633ce64646f927f844586 75038 
cpanminus_1.4008-1_all.deb
Files: 
 8b74b936f967627f991880a8e68b7f40 1958 perl optional cpanminus_1.4008-1.dsc
 35631af0c42ecbdb93bb2468f97de284 58491 perl optional 
cpanminus_1.4008.orig.tar.gz
 9cf1b9c907e5661294c7d58a9fb9b5a5 2091 perl optional 
cpanminus_1.4008-1.debian.tar.gz
 338e6350f0ae3895f92df9e36dadce48 75038 perl optional cpanminus_1.4008-1_all.deb

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

iQIcBAEBCAAGBQJN+mt5AAoJELs6aAGGSaoGb54QAK8AiJnQQpCznsfBiCsSGW6O
9yIDNoqZtDPkILEmFqI6i659wcGcJBJAwlgH8pmwzBOQaEYwaOT50DdMs/x33vrU
3GVTRGAaYMjhkYpl0oDJ33MB0PS2lrAcZhRYXChrC4vH7PL3OJI/k17yi1Nx6CV2
sKreQjapXnhIf9go3Ugc+ICEjCmG6eATjECbvTAR5KvnqKlKHYWhMtCDWD3snQg/
J1MLZsQz00KDrF+bwUxYKLcYCkP0P/uQ0W/QuVJ0kAvsrC3VTGbGdHG4nuCWtOTv
9K7hxI44uXAc2SotG8sdxFHsrCmMfm9UCCujZnN3CgK13EMx4tcSShb60FS43cWu
ZHEb93GJf09P9nlloqtTnDGyqW6QqHkCl9++6TJ/Z2RQBkyD4NZEs3YNXrury9T4
f49OFiEW8JNG8fakm5ws7/DjY56F4MDyQsjVROSNzSHDAwXmlvjJ5ilpr4ztrQBI
edpP79T6ysS76IaEPqgUrYpFUHKbFCBQA9E02zFH/9baII6XsuegiPWLshrGrWkb
uktJZEToFmVhuzD1S+eQutOM4aX228L0Dfp5SfeeOZSX+leC6EViBPy/OW2bdgsj
E4ytB6xfnKMtLxmsqUoLV4AWEYuGBmVu/qGXRoMdz7UF7cK3o+ha7aU2f107eU/g
urvarOtf3YnFKvnMZbwA
=Il8n
-END PGP SIGNATURE-


Accepted:
cpanminus_1.4008-1.debian.tar.gz
  to main/c/cpanminus/cpanminus_1.4008-1.debian.tar.gz
cpanminus_1.4008-1.dsc
  to main/c/cpanminus/cpanminus_1.4008-1.dsc
cpanminus_1.4008-1_all.deb
  to main/c/cpanminus/cpanminus_1.4008-1_all.deb
cpanminus_1.4008.orig.tar.gz
  to main/c/cpanminus/cpanminus_1.4008.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxjhz-0005cg...@franck.debian.org



Accepted libdancer-perl 1.3060+dfsg-1 (source all)

2011-06-16 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 18:50:24 +0200
Source: libdancer-perl
Binary: libdancer-perl
Architecture: source all
Version: 1.3060+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Alessandro Ghedini al3x...@gmail.com
Description: 
 libdancer-perl - effortless web application framework
Changes: 
 libdancer-perl (1.3060+dfsg-1) unstable; urgency=low
 .
   * New upstream release
   * Update spelling patch
   * Add libhttp-parser-xs-perl (= 0.10) to B-D-I (needed by a test)
Checksums-Sha1: 
 8e8689d177959150ba6f563b0bc3dc2c4a8d9098 2607 libdancer-perl_1.3060+dfsg-1.dsc
 fe7119a43380a0e38a23b705ad1bc435af27e3aa 252338 
libdancer-perl_1.3060+dfsg.orig.tar.gz
 43d88e8d120396f76676172c8870c8db2c381866 10170 
libdancer-perl_1.3060+dfsg-1.debian.tar.gz
 e804deee56c847c845ab41454256e9fb03eec777 378772 
libdancer-perl_1.3060+dfsg-1_all.deb
Checksums-Sha256: 
 16fa940f753ed2c38a17aa3ea9aaaf5010ddeef6cb48b8155935dfa55d56ddd1 2607 
libdancer-perl_1.3060+dfsg-1.dsc
 bb753a591aeb91e307ed61a08a8c8d81b45ab0f9d26f7280134df351040d831a 252338 
libdancer-perl_1.3060+dfsg.orig.tar.gz
 0eed00e338b3544aab1a9ee6c0af5d1e265b35b2d541129d544a16a54b1fa3ae 10170 
libdancer-perl_1.3060+dfsg-1.debian.tar.gz
 6982ee135c8697c2e03eb910673de32106bf590ee3905fb66b39a37dc8bd268c 378772 
libdancer-perl_1.3060+dfsg-1_all.deb
Files: 
 a3e36d1197c029ac98a98fc63984bb4a 2607 perl optional 
libdancer-perl_1.3060+dfsg-1.dsc
 d07fa3601d8e611c4e66683134adab91 252338 perl optional 
libdancer-perl_1.3060+dfsg.orig.tar.gz
 796abb0c6fb6c322d5f167a4f7bab08a 10170 perl optional 
libdancer-perl_1.3060+dfsg-1.debian.tar.gz
 2dfbcc5fb3df922ff04c4a4c261c1af8 378772 perl optional 
libdancer-perl_1.3060+dfsg-1_all.deb

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

iQIcBAEBCAAGBQJN+m3tAAoJELs6aAGGSaoGIBwP/itzquB481Mz2m1RdRK7okK9
KSDaXzQC7HNisx0ulDOJm/6BBujCr8EmyEEBlfKHZuXx/lVA/Zy1e0sn1Uy1awEh
adBzNn+Fe9O0Kw6L58SHfi9y6sZt4wcIcT2erKMqAmKDIWDIGt9o2nX34jER209a
tb3VHSs7rrifE8n3RvKz83yOHfKMOWF8PqL6b1mxK2ejkezUfOb9wUKOQ/0s2IXt
sQHDvyuovm+lVgFSWKHou0ryiHfOZLX2sCeWtsV5dabVxvf4vCOma+eNxUvKuLTT
L3N4YAQ62Gum0FFiftordHS8SRLE7dLOy5dsN7pvckNGCLR9Nqm3KnrNjKpIZp21
JRKH1JsQMC+AVWJNkfgtLFO3NWKXgFeO9Tzzlo54xxSV1Yx2DtimibHHAaQluJNA
IOgRtu+/4Elk8bp8tdXwHvEd6df/zq0Zje7KMT43wFd+yZoVet4dYvpvpX9NSgIv
j/9w13+Ee6M+x8loFlFf5ZB+x/oR6RivlQeoPUxsqcUPfPBFjsSU58YcucfcoRp+
0/0y6tUR2PyU+cMawS1xiWbz6HGp93wTiZs5YJr6End5kgjGwhWNUAuVghEq96Yk
ZZvWqgY6gFYN0rnXRzaTq33dvyiMbgvLy+8fFB+NObXvTMIUTutgsvIXmf+UtRR2
dUvXQ90649YXAbCnW9Hq
=U7np
-END PGP SIGNATURE-


Accepted:
libdancer-perl_1.3060+dfsg-1.debian.tar.gz
  to main/libd/libdancer-perl/libdancer-perl_1.3060+dfsg-1.debian.tar.gz
libdancer-perl_1.3060+dfsg-1.dsc
  to main/libd/libdancer-perl/libdancer-perl_1.3060+dfsg-1.dsc
libdancer-perl_1.3060+dfsg-1_all.deb
  to main/libd/libdancer-perl/libdancer-perl_1.3060+dfsg-1_all.deb
libdancer-perl_1.3060+dfsg.orig.tar.gz
  to main/libd/libdancer-perl/libdancer-perl_1.3060+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxji1-0005eq...@franck.debian.org



Accepted upnp-inspector 0.2.2+dfsg-3 (source all)

2011-06-16 Thread Charlie Smotherman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 15:43:36 -0500
Source: upnp-inspector
Binary: upnp-inspector
Architecture: source all
Version: 0.2.2+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Charlie Smotherman cj...@cableone.net
Changed-By: Charlie Smotherman cj...@cableone.net
Description: 
 upnp-inspector - Python UPnP framework analyser
Changes: 
 upnp-inspector (0.2.2+dfsg-3) unstable; urgency=low
 .
   * Updated header info for 01_upnp-inspector.desktop_fix to DEP3.
   * Switched to using source format 3.0 (quilt).
   * Updated debian/copyright to DEP5 rev173, added comment about tarball
 repack.
   * Removed date from debian/patches/01_upnp-inspector.desktop_fix.
   * debian/rules:
 - switched to --with python2.
 - remove --single-version-externally-managed no longer needed.
 - added override_dh_clean rule to remove *.egg-info during build.
 - added get-orig-source rule to add GPL-2 to the orig.tar.gz.
   * debian/control:
 - removed dependency on quilt.
 - increased min python version to (=2.6.6-3).
 - removed B-D-I on python-support.
 - bumped Standards Version to 3.9.2, no changes needed.
 - use X-P-V instead of XS-P-V.
Checksums-Sha1: 
 204b052b0113627e290116ea4682a6688ee3ff45 2074 upnp-inspector_0.2.2+dfsg-3.dsc
 6bcc9365462e7dc86713a66daf3ea96c8f74cbd8 5295 
upnp-inspector_0.2.2+dfsg-3.debian.tar.gz
 7941e1d733a9f4f33fcb977439d737c020eebc57 102806 
upnp-inspector_0.2.2+dfsg-3_all.deb
Checksums-Sha256: 
 23d560377a1dfe82f700027f9311a372a408299ea92eabb316e5248e696bb665 2074 
upnp-inspector_0.2.2+dfsg-3.dsc
 8f15ac2c4009b55a06930c3c59df9110261b3771e157dea6dd9014045d1c9a90 5295 
upnp-inspector_0.2.2+dfsg-3.debian.tar.gz
 bae5b1de13dd5bea8375d4bcbed57906022563e884310fcb1ff87c42f4d54f08 102806 
upnp-inspector_0.2.2+dfsg-3_all.deb
Files: 
 d585de75670f185e148889377ace 2074 net optional 
upnp-inspector_0.2.2+dfsg-3.dsc
 4199e96e982778fdecf3ecace7584532 5295 net optional 
upnp-inspector_0.2.2+dfsg-3.debian.tar.gz
 f7b577c2afbf2124865df9f766e9d9b4 102806 net optional 
upnp-inspector_0.2.2+dfsg-3_all.deb

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

iQIcBAEBAgAGBQJN+m7RAAoJEACQ/CG1zRrMVPkP/0m7pHSrs7ikuO41lo9K9cbg
+N/0c4Or3LbqKk1oJzDZkt+BAJUNhCwVx6S+DhTqKRlW8Jn7zcRPGmgTcUqJqNSR
cAXmNakFwpxyVIbSCAMuZAsETAZsLwuU9OWWv9RtTn2Z1nWKwhtenvlzUpCNSbb4
AJDJGZgtReHAy/AgOpK8mFO8ehJyuCctaFWBfOS1jwEvcd+0NBHKwCG+Kwx75pz4
67N+WODKBJU0fFBUxp36r5kGz0FuTayD5KFytQ51xTCpx1fLASZwiESU84RwkfzA
ug776A+6KtnXHUWudtH4fGve1mYIXx86NmvE5+VPZtk9BQ3VBm+nGpdEq+ds1di4
irNo+O7ituuHw4KD5Cl4Wo5HMVd62CxoGichFkoVg8zPMsvC4qDmt3/n1qB4vNYP
SdB5yfd3DVlvaY5JTPOjbL6VZYhtSCjU4UHY9svHVf0Qq3ejtKsJAXnHgjAZ1j4x
fmflAT60Ye66zJM5E0LGnN2KGDEBXlbU7CwfMu6mwIWzeV5g4614uVoG05uJeEZe
E4Q1E6yOqb9Tx6tyhXoobPJNql65+rrxRQwaw1OySpLiS/z/HrZ52ZddgtLfZdkw
yTKL4UI23/z/f082jVEE7DjvBhcG+7U6H0Kz5H24Hbzlnr87lsErsLjng54U8DrZ
4bdCsOCNDdfQXaJOnSxc
=EgOy
-END PGP SIGNATURE-


Accepted:
upnp-inspector_0.2.2+dfsg-3.debian.tar.gz
  to main/u/upnp-inspector/upnp-inspector_0.2.2+dfsg-3.debian.tar.gz
upnp-inspector_0.2.2+dfsg-3.dsc
  to main/u/upnp-inspector/upnp-inspector_0.2.2+dfsg-3.dsc
upnp-inspector_0.2.2+dfsg-3_all.deb
  to main/u/upnp-inspector/upnp-inspector_0.2.2+dfsg-3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxjih-0005j2...@franck.debian.org



Accepted xfe 1.32.4-1 (source all amd64 i386)

2011-06-16 Thread Joachim Wiedorn
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 15 Jun 2011 20:19:08 +0200
Source: xfe
Binary: xfe xfe-i18n xfe-themes
Architecture: all amd64 i386 source
Version: 1.32.4-1
Distribution: unstable
Urgency: low
Maintainer: Joachim Wiedorn ad_deb...@joonet.de
Changed-By: Joachim Wiedorn ad_deb...@joonet.de
Closes: 556704 628030 628069
Description: 
 xfe-i18n   - lightweight file manager for X11 (i18n support)
 xfe- lightweight file manager for X11
 xfe-themes - lightweight file manager for X11 (themes)
Changes: 
 xfe (1.32.4-1) unstable; urgency=low
 .
   * New upstream release:
 - Fix compiling errors when use binutils-gold. (Closes: #556704)
 - Fix opening root window as a regular user. (Closes: #628030)
 - Fix crashes during drag and drop operations. (Closes: #628069)
   * debian/patches:
 - Update some patches.
 - Add patch for support of xournal (pdf editor) in xferc.
   * Update debian/copyright.
   * debian/control:
 - Bump to Standards-Version 3.9.2 (no changes).
 - Move to debhelper (= 8)
 - Update Vcs Git and Browser URLs.
 - Optimize short package descriptions.
   * Move to compatibility level 8.
Checksums-Sha1: 
 de4a55a6b03245d8ab47eb60ce65db7a84274bce 1253 xfe_1.32.4-1.dsc
 bcf346367a5a5d9016463fd43dacd54515689eae 2274240 xfe_1.32.4.orig.tar.gz
 a1fdf69e3e4ea098b1e185df8c58599201e7e9e0 16267 xfe_1.32.4-1.debian.tar.gz
 9c7617d497832362a1c745ca63cdeef3dab94d4b 1577338 xfe_1.32.4-1_amd64.deb
 c9074e9fe62f1cc91d753d99d9243daa53d40fe7 438646 xfe-i18n_1.32.4-1_all.deb
 44ddc2d822d89aa2e3990b960803186ce331e164 702122 xfe-themes_1.32.4-1_all.deb
 6e023e4943652b6772d3c1fda2cc85080b0e6bb1 1574024 xfe_1.32.4-1_i386.deb
Checksums-Sha256: 
 29fa1d9207c3b8eed7d57339987277bd89e990ff06c6d00907ba849970fafd4e 1253 
xfe_1.32.4-1.dsc
 b42cfd31929af3cbf0445d0f68ac8a344baef10b8f923144f646c1b45bed12a6 2274240 
xfe_1.32.4.orig.tar.gz
 b1293d1e64e9a80ce62c943fbadf754b49670b4420c938fc566a0116301fd9fb 16267 
xfe_1.32.4-1.debian.tar.gz
 59120669bf0a450e1f0e50d75531932f18507cdb7841924712a0b933951b3df3 1577338 
xfe_1.32.4-1_amd64.deb
 4972a448be80905fbd424e74f2f3694a32f493ded4945f997898f75372ad518b 438646 
xfe-i18n_1.32.4-1_all.deb
 3b447de4d7c17a983a695655640680667dc3c2019e1a8e7081e5b03798693dd3 702122 
xfe-themes_1.32.4-1_all.deb
 3c9f94e584858b1eb8a4a2747c3837ec8b675969dcc85a6a14ae2aed35c4644b 1574024 
xfe_1.32.4-1_i386.deb
Files: 
 c413ebdd935408b8e08747e389afb783 1253 x11 optional xfe_1.32.4-1.dsc
 ed9db4338b9191adb5267fd12f64e774 2274240 x11 optional xfe_1.32.4.orig.tar.gz
 dad52250b0d485eafd8083efeb873f7a 16267 x11 optional xfe_1.32.4-1.debian.tar.gz
 0ded2804ad35a9af9d3f411b1eb70def 1577338 x11 optional xfe_1.32.4-1_amd64.deb
 9ed65c42c2a37cb2f295d344f0df3415 438646 x11 optional xfe-i18n_1.32.4-1_all.deb
 08235b21b8d344c647294f8e793c2ee3 702122 x11 optional 
xfe-themes_1.32.4-1_all.deb
 d619a24f3804a5759979f868574ce0bd 1574024 x11 optional xfe_1.32.4-1_i386.deb

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

iEYEARECAAYFAk36NVEACgkQSiJUZB/hsIujVwCeLJ4lKbm1YoRuqQBpJc5GTGlS
d2gAoLc9pJ9oYQI0xziSu2m2M3kcrqXQ
=1QTr
-END PGP SIGNATURE-


Accepted:
xfe-i18n_1.32.4-1_all.deb
  to main/x/xfe/xfe-i18n_1.32.4-1_all.deb
xfe-themes_1.32.4-1_all.deb
  to main/x/xfe/xfe-themes_1.32.4-1_all.deb
xfe_1.32.4-1.debian.tar.gz
  to main/x/xfe/xfe_1.32.4-1.debian.tar.gz
xfe_1.32.4-1.dsc
  to main/x/xfe/xfe_1.32.4-1.dsc
xfe_1.32.4-1_amd64.deb
  to main/x/xfe/xfe_1.32.4-1_amd64.deb
xfe_1.32.4-1_i386.deb
  to main/x/xfe/xfe_1.32.4-1_i386.deb
xfe_1.32.4.orig.tar.gz
  to main/x/xfe/xfe_1.32.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxjia-0005pw...@franck.debian.org



Accepted blackbox-themes 0.4 (source all)

2011-06-16 Thread Moritz Muehlenhoff
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 10 Jun 2011 14:41:47 +0200
Source: blackbox-themes
Binary: blackbox-themes
Architecture: source all
Version: 0.4
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Moritz Muehlenhoff j...@inutil.org
Description: 
 blackbox-themes - Themes for the Blackbox Windowmanager
Changes: 
 blackbox-themes (0.4) unstable; urgency=low
 .
   * QA upload, set maintainer to Debian QA group
   * Switch to source format 3
Checksums-Sha1: 
 3eaeca4df64ff63553c1fe777a8d7780a4d9ee11 737 blackbox-themes_0.4.dsc
 4bb04a9f5c3d033036ead9d6f96c8191ebb88875 423090 blackbox-themes_0.4.tar.gz
 2294427f23fc32ec2b53c815b6228f40095e972b 418648 blackbox-themes_0.4_all.deb
Checksums-Sha256: 
 b01d06167d45b11b174cc6c8634787c85f910d53e83d138cf25e88f717b4f1a5 737 
blackbox-themes_0.4.dsc
 619de5485f92aaa32562d9e3aa936b78e5f0b8413cf9162569cd805c0cc6dd9b 423090 
blackbox-themes_0.4.tar.gz
 05812d871ee6f3f867e881469fb3ded32c9b0588493c3ee4174405462cb2c8b5 418648 
blackbox-themes_0.4_all.deb
Files: 
 c427a25a96daf6af5fe8360576f585de 737 x11 optional blackbox-themes_0.4.dsc
 a9adeea072b4258d36d47c86265a0dfd 423090 x11 optional blackbox-themes_0.4.tar.gz
 d023419f45f4842155c8472cde67bf2d 418648 x11 optional 
blackbox-themes_0.4_all.deb

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

iEYEARECAAYFAk36dY0ACgkQXm3vHE4uylokCACg0vsfJ1gxvifodg8GVA2+5eTV
wGkAnjJZeEgq77vmJIIjyBqlB0vREgU4
=Gd2y
-END PGP SIGNATURE-


Accepted:
blackbox-themes_0.4.dsc
  to main/b/blackbox-themes/blackbox-themes_0.4.dsc
blackbox-themes_0.4.tar.gz
  to main/b/blackbox-themes/blackbox-themes_0.4.tar.gz
blackbox-themes_0.4_all.deb
  to main/b/blackbox-themes/blackbox-themes_0.4_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxkaf-00046h...@franck.debian.org



Accepted crossfire 1.50.0-1.1 (source all i386)

2011-06-16 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Jun 2011 22:55:06 +0200
Source: crossfire
Binary: crossfire-server crossfire-common crossfire-doc
Architecture: source all i386
Version: 1.50.0-1.1
Distribution: unstable
Urgency: low
Maintainer: Kari Pahula k...@debian.org
Changed-By: Luk Claes l...@debian.org
Description: 
 crossfire-common - Architecture independent common files for Crossfire server
 crossfire-doc - Documentation for Crossfire
 crossfire-server - Server for Crossfire Games
Closes: 621201
Changes: 
 crossfire (1.50.0-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #621201).
Checksums-Sha1: 
 10ceea3a88e581af1cda6cee4d14e60a3274d81c 1149 crossfire_1.50.0-1.1.dsc
 60034248d8001f2d726e5b44918709418a829f6d 7557 
crossfire_1.50.0-1.1.debian.tar.gz
 0e17b44a10ee13ddaa0bfbdd725189a328fc7f2d 2994958 
crossfire-common_1.50.0-1.1_all.deb
 c58b44e1fb26815936120ed657ddae92af9e4b3b 1452610 
crossfire-doc_1.50.0-1.1_all.deb
 3fe5c36a0e22080e9fec7759d6a23529ead0ebb1 1801950 
crossfire-server_1.50.0-1.1_i386.deb
Checksums-Sha256: 
 7b40040f64df7197ad97f0b8ad315144dce73248f3f65d1423930fdf0084398a 1149 
crossfire_1.50.0-1.1.dsc
 f071375ffb1493fb832d75c740714514d365face7b6203da2183d67b23417143 7557 
crossfire_1.50.0-1.1.debian.tar.gz
 9ffd23f74763f180770d735c4b0a87bf25465f4c1a1c1388eb81ad2e94fe662f 2994958 
crossfire-common_1.50.0-1.1_all.deb
 97139fb3bb886527fd87488fff723209c93e04bb11877f381d94946bb74360c3 1452610 
crossfire-doc_1.50.0-1.1_all.deb
 488ee6afb0ea38d77511edacadb9c1b7f33794be1d311096a332fd3902cb56ed 1801950 
crossfire-server_1.50.0-1.1_i386.deb
Files: 
 81b4c10738ed1207380cf30f2d2ec3df 1149 games optional crossfire_1.50.0-1.1.dsc
 f925cc06b6f8c61ac088dff2343c0883 7557 games optional 
crossfire_1.50.0-1.1.debian.tar.gz
 6b7e4e8a286efd399c606e166cb78860 2994958 games optional 
crossfire-common_1.50.0-1.1_all.deb
 53109f920d52f5ebe5ff3118edda0e53 1452610 doc optional 
crossfire-doc_1.50.0-1.1_all.deb
 6001dee8f12dcd7edddf04c6f00e811e 1801950 games optional 
crossfire-server_1.50.0-1.1_i386.deb

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

iEYEARECAAYFAk3z19wACgkQ5UTeB5t8Mo2bTwCfW6Lk9BYHYEp7cW8bTe/2DG86
QS0An1FVkRZY4UQkEYK2Mwgdos3parcU
=2DFJ
-END PGP SIGNATURE-


Accepted:
crossfire-common_1.50.0-1.1_all.deb
  to main/c/crossfire/crossfire-common_1.50.0-1.1_all.deb
crossfire-doc_1.50.0-1.1_all.deb
  to main/c/crossfire/crossfire-doc_1.50.0-1.1_all.deb
crossfire-server_1.50.0-1.1_i386.deb
  to main/c/crossfire/crossfire-server_1.50.0-1.1_i386.deb
crossfire_1.50.0-1.1.debian.tar.gz
  to main/c/crossfire/crossfire_1.50.0-1.1.debian.tar.gz
crossfire_1.50.0-1.1.dsc
  to main/c/crossfire/crossfire_1.50.0-1.1.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxkax-0004bq...@franck.debian.org



Accepted libapache-dbilogger-perl 0.93-12 (source all)

2011-06-16 Thread Fabrizio Regalli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 Jun 2011 12:56:13 +0200
Source: libapache-dbilogger-perl
Binary: libapache-dbilogger-perl
Architecture: source all
Version: 0.93-12
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Fabrizio Regalli fab...@fabreg.it
Description: 
 libapache-dbilogger-perl - Perl module for tracking what's being transferred 
in a DBI databa
Changes: 
 libapache-dbilogger-perl (0.93-12) unstable; urgency=low
 .
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
 (source stanza).
   * debian/control: Added: ${misc:Depends} to Depends: field.
 .
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 .
   [ Fabrizio Regalli ]
   * Bump to 3.9.2 Standard-Version.
   * Switch to DEP5 license format.
   * Add myself to Uploaders.
   * Switch d/compat to 8.
   * Build-Depends: switch to debhelper (= 8).
   * Bump to 3.0 quilt format.
   * Email change: gregor herrmann - gre...@debian.org
Checksums-Sha1: 
 90e72a6c5c4e57bd2d629552caa4fc349ecb2b7f 2160 
libapache-dbilogger-perl_0.93-12.dsc
 4b7281852c5d42eabe91f664808c88c65ffcf88b 5441 
libapache-dbilogger-perl_0.93-12.debian.tar.gz
 9bd58a638efd8939ea07bbe79c8b804b9a3d71e8 14204 
libapache-dbilogger-perl_0.93-12_all.deb
Checksums-Sha256: 
 fd326aec8d7c5eb28dad40651c1873964dce2997c98df5ac5454b704d1b96a5b 2160 
libapache-dbilogger-perl_0.93-12.dsc
 92ff0eef40dd85277ffac4281a7faea72d3721f63735a5d18487111454ac0498 5441 
libapache-dbilogger-perl_0.93-12.debian.tar.gz
 27504598c7317d6fbef57ee7a3905a527ac52014043e7cd6f290ca13443a2d33 14204 
libapache-dbilogger-perl_0.93-12_all.deb
Files: 
 761d8d84bcbec44658ab62ac5dd40259 2160 perl optional 
libapache-dbilogger-perl_0.93-12.dsc
 17674bb0c52b2d67716bc969e28668c0 5441 perl optional 
libapache-dbilogger-perl_0.93-12.debian.tar.gz
 cc1153e780df6f4e38347708aefc2c75 14204 perl optional 
libapache-dbilogger-perl_0.93-12_all.deb

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

iQIcBAEBCAAGBQJN+nRVAAoJELs6aAGGSaoG7nsP/jlIB82+ziWlpuxnQQ5b5gRB
ezx+MoIABpfTEXspTqbVsdtyxEyg7PG/P7zIWOHGdqLcNDCiTNurzRYF/DPsXKM/
ZfYsDePJZxKE7+66r2cimZtNZjbi3LA04WkD3pLtbuoDwlaFHQ9laCL6HzmfwhaS
UWTryKHlpH1UNCoYbE/LT5gv0QCZ3TBs65OLpyJyfqc1zSNOMq4lVEosDVr3i0lX
+gXkXZekaqwtX4o4gl45O7MLTchh5rEoUJE4/8a8+UQDw34n6vahwBDU2NBV1OJi
Wja9lac9qaEFEdMeo2hiLq6QjIiLcQlSzvxIYb2j3eLslik4088ohnA67qeZ9obp
GIs9g+2GYAt7JXONgTUIJ2J+RCHD3EElkL8brHiiSm43kkkmLDkxl6NzYJCr0du5
PHaIB3azx7JJcJ7cTGOClyoc6CBU/ctTpuFze0+35FgPru1WdJPIyTnBYH+yvrli
Kh0Fwvr4zC1vKH+HLIucgv/z8loP/gxHzFSNK8IDQalm1KR03fBjbGbJVmteJ/Rd
V3iurVofIEO5+L77hiLvG42vGLrJd/DsdxLknQBZlSevkFs/nyrfK+wQyjFi9xks
esVgl3Pm1zXgPr8UOGg6yFuif8drbyoLFYy2/Qaoik/c2rXbiuQ31/6AtBSHqMYr
swBrUjd0hMBZZ2OxrQ93
=/Xoi
-END PGP SIGNATURE-


Accepted:
libapache-dbilogger-perl_0.93-12.debian.tar.gz
  to 
main/liba/libapache-dbilogger-perl/libapache-dbilogger-perl_0.93-12.debian.tar.gz
libapache-dbilogger-perl_0.93-12.dsc
  to main/liba/libapache-dbilogger-perl/libapache-dbilogger-perl_0.93-12.dsc
libapache-dbilogger-perl_0.93-12_all.deb
  to main/liba/libapache-dbilogger-perl/libapache-dbilogger-perl_0.93-12_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxkbe-0004ec...@franck.debian.org



Accepted libgda4 4.2.8-1 (source all i386)

2011-06-16 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 23:02:17 +0200
Source: libgda4
Binary: libgda-4.0-4 libgda-4.0-bin libgda-4.0-common libgda-4.0-dev 
libgda-4.0-4-dbg libgda-4.0-doc libgda-4.0-mysql libgda-4.0-postgres 
gir1.2-gda-4.0
Architecture: source all i386
Version: 4.2.8-1
Distribution: experimental
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 gir1.2-gda-4.0 - data abstraction library based on GLib -- GObject 
Introspection
 libgda-4.0-4 - data abstraction library based on GLib
 libgda-4.0-4-dbg - data abstraction library based on GLib -- debug files
 libgda-4.0-bin - data abstraction library based on GLib -- binary files
 libgda-4.0-common - data abstraction library based on GLib -- common files
 libgda-4.0-dev - data abstraction library based on GLib -- development files
 libgda-4.0-doc - data abstraction library based on GLib -- documentation files
 libgda-4.0-mysql - MySQL provider for libgda database abstraction library
 libgda-4.0-postgres - PostgreSQL provider for libgda database abstraction 
library
Changes: 
 libgda4 (4.2.8-1) experimental; urgency=low
 .
   [ Piotr Pokora ]
   * New upstream release
 .
   [ Michael Biebl ]
   * debian/watch: Switch to .bz2 tarballs.
   * debian/control.in:
 - Drop Build-Depends on dpkg-dev (= 1.13.19), even lenny has a more
   recent version.
 - Bump Standards-Version to 3.9.2. No further changes.
 - Drop old Conflicts and Replaces which are no longer necessary.
   * Bump debhelper compatibility level to 8. Update Build-Depends accordingly.
   * Don't abort on test-suite failures. The test-suite needs more work first.
Checksums-Sha1: 
 3f9c660751e0f1b137ec192faf57e1f981481fce 2663 libgda4_4.2.8-1.dsc
 01b859233407407807b2da1c4c244a5907695b7b 13130319 libgda4_4.2.8.orig.tar.bz2
 ec39e32b4650dc497851a89155723cfa93d8b9c1 18892 libgda4_4.2.8-1.debian.tar.gz
 67b2c5b63b4a2b3e622fc14af06ed1c0857706c6 1256816 
libgda-4.0-common_4.2.8-1_all.deb
 12daa5852f5a4645570fec0e520538871bb85639 3398930 libgda-4.0-doc_4.2.8-1_all.deb
 58ef94f0e17c8440e034eb163018e6a9e33e6c39 619104 libgda-4.0-4_4.2.8-1_i386.deb
 2b857a7cd8e587d7cee6c3485f0fb737afd06f69 78260 libgda-4.0-bin_4.2.8-1_i386.deb
 45243dd770a5fc21d83fb189eb5aef37fc95b4f4 742690 libgda-4.0-dev_4.2.8-1_i386.deb
 8d57a04b45b7beda3352e9cfd4ae9ed816f7ca33 1483760 
libgda-4.0-4-dbg_4.2.8-1_i386.deb
 adf520d4fdea319f661724a305fae265a5c23227 75258 
libgda-4.0-mysql_4.2.8-1_i386.deb
 f860418771723098a59f6773e0e32731a80a087d 76646 
libgda-4.0-postgres_4.2.8-1_i386.deb
 9630484a504ea28e02fc651ad84b887f5b7b42ac 264346 gir1.2-gda-4.0_4.2.8-1_i386.deb
Checksums-Sha256: 
 5016c17f6ea553d0289fd6dc8f8447044ff4a39d5f828f1186ec53ebf11bdb7a 2663 
libgda4_4.2.8-1.dsc
 4f7a0bdb366f2711628a4751b40b2b194d1c5632d60fb8b549e2d8319f9c93cf 13130319 
libgda4_4.2.8.orig.tar.bz2
 88fe08bb47d69ddd649831d8bf404953945e673c3896499f0ce2a10e84ce68c6 18892 
libgda4_4.2.8-1.debian.tar.gz
 b5fac4cb930e5b673dab9e51ae96b122b6ae6220d9fe29ad9779d12e111e32b0 1256816 
libgda-4.0-common_4.2.8-1_all.deb
 f686fb2946f359019f8a488e8a52c17cd791c4157fb1a5a797b8646c24cfc8c1 3398930 
libgda-4.0-doc_4.2.8-1_all.deb
 2e025ef868edd3a6d1057404062b6ca652e454d32b11a8de69904974a5f20de2 619104 
libgda-4.0-4_4.2.8-1_i386.deb
 15f5d9b05e5deb9f5c174bd1efdb3f6bf78d52b894799a9a9a90cfccf4e537b2 78260 
libgda-4.0-bin_4.2.8-1_i386.deb
 c37cb507bed2f97dda5a0e8f6b49cd25b3a0088a1945793d70d34968ffc4946f 742690 
libgda-4.0-dev_4.2.8-1_i386.deb
 afd95135544789f1e99f548f4c7a6772b831e38c72ace7f9eaca04d6c0f37501 1483760 
libgda-4.0-4-dbg_4.2.8-1_i386.deb
 d472ab3e7687d16971894a96636f48397e68072b9fd16f6ade8bd7413545c569 75258 
libgda-4.0-mysql_4.2.8-1_i386.deb
 97edd8f6fdebe0b422f2d2f29b57cbc3212459d9205862983ae482cd34e37725 76646 
libgda-4.0-postgres_4.2.8-1_i386.deb
 fc4068833da498471ab40d8ab5b1080e68666dd8e6589d09fdefd86da9113f29 264346 
gir1.2-gda-4.0_4.2.8-1_i386.deb
Files: 
 b166ac5cfdfcd43116fa4e73ec0c948b 2663 libs optional libgda4_4.2.8-1.dsc
 320e6d237776ce4fab79e7c2210521da 13130319 libs optional 
libgda4_4.2.8.orig.tar.bz2
 0c2e6876e78f93d774a4ed34006fa3fb 18892 libs optional 
libgda4_4.2.8-1.debian.tar.gz
 dec6befb8b4c400699d23f242b515d41 1256816 database optional 
libgda-4.0-common_4.2.8-1_all.deb
 3e3ee6d9c36f666cc09941e7d7db93ad 3398930 doc optional 
libgda-4.0-doc_4.2.8-1_all.deb
 022316e1bcf18b510f1a1e00e5cc081b 619104 libs optional 
libgda-4.0-4_4.2.8-1_i386.deb
 684f99343b0ac421672523783d7d1b01 78260 database optional 
libgda-4.0-bin_4.2.8-1_i386.deb
 3fdc72e344251a13221ee19d01eef8cd 742690 libdevel optional 
libgda-4.0-dev_4.2.8-1_i386.deb
 b5b071211a022e568153c1cea2b36bd9 1483760 debug extra 
libgda-4.0-4-dbg_4.2.8-1_i386.deb
 8cf776188667af39cab57f56efeef3d4 75258 database optional 
libgda-4.0-mysql_4.2.8-1_i386.deb
 87ef0972d94ac6f4d681971a3bca63ce 76646 database optional 
libgda-4.0-postgres_4.2.8-1_i386.deb
 

Accepted libmoosex-oneargnew-perl 0.002-1 (source all)

2011-06-16 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 18:56:43 +0200
Source: libmoosex-oneargnew-perl
Binary: libmoosex-oneargnew-perl
Architecture: source all
Version: 0.002-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Alessandro Ghedini al3x...@gmail.com
Description: 
 libmoosex-oneargnew-perl - Moose role that extends class' constructor to 
accept single argum
Changes: 
 libmoosex-oneargnew-perl (0.002-1) unstable; urgency=low
 .
   * New upstream release
   * Bump upstream copyright year
   * Bump Standards-Version to 3.9.2 (no changes needed)
Checksums-Sha1: 
 7518dc270279b49281f83b0777b29281b14f3791 2187 
libmoosex-oneargnew-perl_0.002-1.dsc
 4d10b4396ccc79f07a0713df69f11904b3c37439 10909 
libmoosex-oneargnew-perl_0.002.orig.tar.gz
 958535e5503d1aa3a868328ef6dde53d047aaaf6 1840 
libmoosex-oneargnew-perl_0.002-1.debian.tar.gz
 8067fec55731151189b51799944398bbf0da34c1 6514 
libmoosex-oneargnew-perl_0.002-1_all.deb
Checksums-Sha256: 
 5ffa21e4fc7ccaf9d35ca3245ace54589d06012d522c845b8c1d17ec296dabbf 2187 
libmoosex-oneargnew-perl_0.002-1.dsc
 f548f03f36943c42dd704c2dca10b76718ef4642a44d8740f175e7a0031add71 10909 
libmoosex-oneargnew-perl_0.002.orig.tar.gz
 2ca1f4040b1fb0f4f1dce82776782e87b407500ccd91ad7faba710fb14bba52a 1840 
libmoosex-oneargnew-perl_0.002-1.debian.tar.gz
 9a8b4abc35e009b1be88d97c5ca3ece112c42c4c05755c5c44d1726df04fb697 6514 
libmoosex-oneargnew-perl_0.002-1_all.deb
Files: 
 1f2a91f8849d4e350c16c193fe55e944 2187 perl optional 
libmoosex-oneargnew-perl_0.002-1.dsc
 7bd6f8b873427967bc0cd55f14ede3ea 10909 perl optional 
libmoosex-oneargnew-perl_0.002.orig.tar.gz
 46220e2fcb3beb0f0ecfe237a5793ba6 1840 perl optional 
libmoosex-oneargnew-perl_0.002-1.debian.tar.gz
 edb8c839dbac0be08cd2de0a2a0c8fca 6514 perl optional 
libmoosex-oneargnew-perl_0.002-1_all.deb

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

iQIcBAEBCAAGBQJN+m7yAAoJELs6aAGGSaoGJkgQAJPPjignPnvZWe6buFSfhokt
QcG72lw7jl/wzUWAIXDvk+rLjgveY0guLEAGh4RlGS+3puT2HBUHrmlUl2ntXo2J
yFSxTvsz7pVkS7CVCX7RLTNCWi2wk6wTwNjDNEH2Xfdc8U5dNDHs0uapud1A+692
j32pJqwmdZZojohOqJv1pW9bw0U6VmfwFAewz2iekPfQAojQM4AkSI+aR8kDXyqX
lO2DaoPtStGuh32p+iaEWUXAFEAhgX5nyPgN7/knMNlk55BwyT6d0axgoLen7bLI
RZMTWeLL1nnWlkVYwVXJw8yH9M7iXHWXJ1p4g9tVc+kz3BQf03jULh+ey0bBLAM9
sYWsukXPikUXxPJsmVqm5q5dTy78qJlDDXQfiMaA5Dy12updMCttOGrDCfWg+FhK
D0zpPkb8NXOlBuRPnY9ELi5UcBJoxDlB762kj+FbaOgx+LIT5pbfvYYuhXbTRU3/
u3X5eEp8dD0XzYVM28kZzsEALv2iXiwCCPDJy6/BiD162T3nFmN5my+sg+sNelc8
Iaza/PdRdM7hs+ZldFj7e/mv9XIPn7VRoFRkFRWnu7Eqcy4it/zqK9WWEroUqlTK
jIbXmcn3UDpXrPr5RGb7qFkPnZiG8+VWD4MaANLvhy/U7DIaYi+6pFDJ2lcFi1bP
a+HgVVTlV/l7EqLsCaoQ
=vK0x
-END PGP SIGNATURE-


Accepted:
libmoosex-oneargnew-perl_0.002-1.debian.tar.gz
  to 
main/libm/libmoosex-oneargnew-perl/libmoosex-oneargnew-perl_0.002-1.debian.tar.gz
libmoosex-oneargnew-perl_0.002-1.dsc
  to main/libm/libmoosex-oneargnew-perl/libmoosex-oneargnew-perl_0.002-1.dsc
libmoosex-oneargnew-perl_0.002-1_all.deb
  to main/libm/libmoosex-oneargnew-perl/libmoosex-oneargnew-perl_0.002-1_all.deb
libmoosex-oneargnew-perl_0.002.orig.tar.gz
  to 
main/libm/libmoosex-oneargnew-perl/libmoosex-oneargnew-perl_0.002.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxkbr-0004sb...@franck.debian.org



Accepted libtest-warn-perl 0.23-1 (source all)

2011-06-16 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 Jun 2011 22:35:48 +0200
Source: libtest-warn-perl
Binary: libtest-warn-perl
Architecture: source all
Version: 0.23-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Alessandro Ghedini al3x...@gmail.com
Description: 
 libtest-warn-perl - test module for checking which warnings are generated
Closes: 629292
Changes: 
 libtest-warn-perl (0.23-1) unstable; urgency=low
 .
   [ Nicholas Bamber ]
   * New upstream release (closes: #629292)
   * Updated copyright
 .
   [ Alessandro Ghedini ]
   * Bump debhelper compat level to 8
   * Bump Standards-Version to 3.9.2 (no changes needed)
   * Remove README.source
   * Add myself to Uploaders
Checksums-Sha1: 
 eba6a022111cff8b66ae39a4337d5d27a79de851 2201 libtest-warn-perl_0.23-1.dsc
 242c801004d71d04ae68f7b402a535ab833056ac 11316 
libtest-warn-perl_0.23.orig.tar.gz
 f399b545cf56e3a69ecf9599916a88ee4d97326a 6401 
libtest-warn-perl_0.23-1.debian.tar.gz
 80f6d4c23c20aab100240fd749b21b9c1925940c 15946 libtest-warn-perl_0.23-1_all.deb
Checksums-Sha256: 
 8e7c0bccf4eff00aeb59b82bf655fa8c5680bea637d115261cf29b6b8cc3f6f4 2201 
libtest-warn-perl_0.23-1.dsc
 c035679567d817e38979de9f071ea109c4bc76d85aee0db586a05ea2d3d0639c 11316 
libtest-warn-perl_0.23.orig.tar.gz
 67d0ff353dc5eb7a2c23d3d4f9fe79a44b79145a3ad6bc71cd6683d238ab5ef3 6401 
libtest-warn-perl_0.23-1.debian.tar.gz
 3620a56d0418e9ba8a4cb227177042e332cadf6de7f50dc5a1174fbdf9e8c4fe 15946 
libtest-warn-perl_0.23-1_all.deb
Files: 
 5908b9b0f1352a509303635e41b5812a 2201 perl optional 
libtest-warn-perl_0.23-1.dsc
 96e224cba15bf69b7513c08e70496457 11316 perl optional 
libtest-warn-perl_0.23.orig.tar.gz
 3a846d0e29b32f160d69428c1ac1244c 6401 perl optional 
libtest-warn-perl_0.23-1.debian.tar.gz
 6179672170747f2acce3b544c0d25550 15946 perl optional 
libtest-warn-perl_0.23-1_all.deb

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

iQIcBAEBCAAGBQJN+nBrAAoJELs6aAGGSaoGGm8QAJ2Dw0fo+YuWDgNwZjDhBMgp
ruRNpK7IdL2L1wU1FU+s/uGYfwCBKJqIjxsdNHU9g00yByJq2hRV7czGjAL4kVH0
Qr1Z5EWqmAPYgJDTxcuB1rmtPyYC4N7VNz0gzkYu+MbKMRS8dStVxrqyoA50M5zS
/zBFXwGXvD0o/A3xuk/5aRILHnsSC7NY0krD45FTayaa8d+6GbTYjS3LVel0WMvW
l//gNSuIQuPlEQjOTV4Q+W3/KE02cHi/Tf+mwZPGekL4yg0IMI0SEOZ2O5JttF20
vXhC+A0XvajygJH5DvtzjPNk3biAnYJvh5nI3ZIPdlRRC7+CwUmRo+H6zsAtsuFD
dPO5JyRdpLfCqWXSuq0lV+sFIp23o3FjX6aFjn9uQ/4g0pE723NBXos6epzOI19R
KXsUMQsMe97B8tnQS0XTFkNFMZuNgeFzjc1h41DX8xf+l0a2gvPufbS4RpDGHqti
70T4tpGXzkXvq8+ILc+cIYzg5ZLPAIkt+bELNRLDbBvQoPJL/PpFeCirdgAZpmvU
geutSHr2feG5LWQPBEMTsO82a8xBHvNYJrPOC/ME9JK0pnaFd9ILwSU8m7uWD8tq
cH2kkGH/Ru7sF4kTtjVpyuPS4Q+/730/dNBGvUAslRURxB+AhiJNmfSXuHHzl/MF
5GdIK0rDh6cDbbt7yI3C
=4jzv
-END PGP SIGNATURE-


Accepted:
libtest-warn-perl_0.23-1.debian.tar.gz
  to main/libt/libtest-warn-perl/libtest-warn-perl_0.23-1.debian.tar.gz
libtest-warn-perl_0.23-1.dsc
  to main/libt/libtest-warn-perl/libtest-warn-perl_0.23-1.dsc
libtest-warn-perl_0.23-1_all.deb
  to main/libt/libtest-warn-perl/libtest-warn-perl_0.23-1_all.deb
libtest-warn-perl_0.23.orig.tar.gz
  to main/libt/libtest-warn-perl/libtest-warn-perl_0.23.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxkcz-0004xz...@franck.debian.org



Accepted libuniversal-isa-perl 1.20110614-1 (source all)

2011-06-16 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 Jun 2011 19:25:39 +0200
Source: libuniversal-isa-perl
Binary: libuniversal-isa-perl
Architecture: source all
Version: 1.20110614-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Alessandro Ghedini al3x...@gmail.com
Description: 
 libuniversal-isa-perl - safer version of UNIVERSAL::isa
Changes: 
 libuniversal-isa-perl (1.20110614-1) unstable; urgency=low
 .
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 .
   [ Ryan Niebur ]
   * New upstream release 1.03
   * Add myself to Uploaders
   * Debian Policy 3.8.2
   * Update ryan52's email address
 .
   [ gregor herrmann ]
   * Add perl (= 5.10.1) as an alternative build dependency for
 Module::Build.
 .
   [ Alessandro Ghedini ]
   * New upstream release
   * Switch to 3.0 (quilt) format
   * Bump debhelper compat level to 8
   * Remove libmodule-build-perl from Build-Depends (no more used)
   * Bump Standards-Version to 3.9.2
 - Remove versioned Build-Depends-Indep on perl
   * Add myself to Uploaders
   * Remove trailing comma from Depends field
   * Remove non-copyright holders from debian/copyright
   * Update upstream license and copyright
 - Update upstream copyright years
 - License is now Artistic or GPL-1+, change debian/* licensing accordingly
   (see the comment in debian/copyright for debian/* licensing)
Checksums-Sha1: 
 c39cfd0a5fb68c813367e2fdb6799529d86394a9 2209 
libuniversal-isa-perl_1.20110614-1.dsc
 dcdb501c59c0494b0f52481c5514b2d9d84b6a8a 12229 
libuniversal-isa-perl_1.20110614.orig.tar.gz
 560d831fa32868b27514e2993fa3501c77e14b61 2641 
libuniversal-isa-perl_1.20110614-1.debian.tar.gz
 d4a230e127dc4e78352dc946527aa60d47a4 9072 
libuniversal-isa-perl_1.20110614-1_all.deb
Checksums-Sha256: 
 b32ea09d6e8cb0f57f3fd2647ca30544eb8a6c48559964e1ca8f950e1a47a9dc 2209 
libuniversal-isa-perl_1.20110614-1.dsc
 d8afdf32918714d1210d4df68de95cbdd652c9aa35e4332dc4ce2d770f6c7fd9 12229 
libuniversal-isa-perl_1.20110614.orig.tar.gz
 77ef43e64b6fbca114512dfd4dc1e72f857035efeaed87648d21a82d42f1cc49 2641 
libuniversal-isa-perl_1.20110614-1.debian.tar.gz
 0b2db2d761b202d0e097ea14f2d46d0fcc0cded39f8e4527f8d95b8a36dfc400 9072 
libuniversal-isa-perl_1.20110614-1_all.deb
Files: 
 413bc59a9493f3aa4529fc0e5af4de86 2209 perl optional 
libuniversal-isa-perl_1.20110614-1.dsc
 eb803bbba60bb0904f194f8670e9d20c 12229 perl optional 
libuniversal-isa-perl_1.20110614.orig.tar.gz
 292cd0d612af847b87151d08ab23926b 2641 perl optional 
libuniversal-isa-perl_1.20110614-1.debian.tar.gz
 c51e7d348120910632efecded1d50a25 9072 perl optional 
libuniversal-isa-perl_1.20110614-1_all.deb

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

iQIcBAEBCAAGBQJN+nFsAAoJELs6aAGGSaoGsnQP/2KfqQn5XrAtMV9G7Tc3+EFh
pc7RIcLrAadlGXUa1sNEN4s6RjtUH6Gp33yZqd72zt8IiEizTFA8ROPA9khl1oPL
L0OMrJPkpMZeY9qYNZMqqwG+IIoOgfUwzIotgJ9aGYOn8BzqM4BqaE5wKc4W3d7b
P3H8oR87OovdLtBwqIhUgfiMp7c9awGfNBwBr1PEAC3B9WN+8y0ITU2um8qIs2I+
/fAMt0BLkBZGyzwrYgaijKhBtz1c97MOtl1MkOiWJ9WIYdJLLc7r30HWfoX2LUt3
IoIvBSGLKxDHifDoZMoJSt03hubgx4r9wuh2DqnTMuWYwleOevOj5S4kg5mTq3kH
MyxnJLw4BZYcXcIvF4Fo35xF9KC6m1Vb5FpDpeXOtH4iTurjyvE8yA42SC/4iGx7
NL6FR9350svyFKXGM0SxqFwsbq5GjZSBpBrIjWBT/7KIHQFICBPk54h2RvXtfwUL
o74q7tmUOuniOF7AUaFNx101t1UQtmrcAY+keQBhqu/KQSOnz+FQZV2KvLimOv6W
CWXB6I2B4PhDRzDHhbJlnqgUzRO+5TVM0wR7E6EurCzDAcZ12fZ/JMjBTQyOuCoj
oXHIMzVPazfKvfgYTA1wltOHWg0C0fStccFV17LIHaocN6jr24ffPLuFWtyErPuL
06ueTsFTAnD+7KAdRdn3
=fDE5
-END PGP SIGNATURE-


Accepted:
libuniversal-isa-perl_1.20110614-1.debian.tar.gz
  to 
main/libu/libuniversal-isa-perl/libuniversal-isa-perl_1.20110614-1.debian.tar.gz
libuniversal-isa-perl_1.20110614-1.dsc
  to main/libu/libuniversal-isa-perl/libuniversal-isa-perl_1.20110614-1.dsc
libuniversal-isa-perl_1.20110614-1_all.deb
  to main/libu/libuniversal-isa-perl/libuniversal-isa-perl_1.20110614-1_all.deb
libuniversal-isa-perl_1.20110614.orig.tar.gz
  to 
main/libu/libuniversal-isa-perl/libuniversal-isa-perl_1.20110614.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxkck-0004zh...@franck.debian.org



Accepted w3-dtd-mathml 2.0.0.0-2 (source all)

2011-06-16 Thread Moritz Muehlenhoff
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 10 Jun 2011 13:52:53 +0200
Source: w3-dtd-mathml
Binary: w3-dtd-mathml
Architecture: source all
Version: 2.0.0.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Moritz Muehlenhoff j...@inutil.org
Description: 
 w3-dtd-mathml - Mathematical Markup Language V2.0 DTD
Closes: 615356
Changes: 
 w3-dtd-mathml (2.0.0.0-2) unstable; urgency=low
 .
   * QA upload, set maintainer to Debian QA Group
   * Add homepage entry (Closes: #615356)
   * Switch to source format 3
Checksums-Sha1: 
 f5ac19843a61a4daf01c6930b89a7ccb26fcafd8 1081 w3-dtd-mathml_2.0.0.0-2.dsc
 4bbe3061af869bdf9627fe85f9bd1399ee9af42a 2960 
w3-dtd-mathml_2.0.0.0-2.debian.tar.gz
 25171b96770a9a8a0821e11f68ff1d76676889b6 107858 w3-dtd-mathml_2.0.0.0-2_all.deb
Checksums-Sha256: 
 8b9df4ebd040fbf85826e617af4ce6cb5a17ddbb80e199ef97a595ac42322e69 1081 
w3-dtd-mathml_2.0.0.0-2.dsc
 048cd7a061ba809c5dff31857ba30759006d40154548591ca8466238a644ffe5 2960 
w3-dtd-mathml_2.0.0.0-2.debian.tar.gz
 aedb4b52bab2b9d9af7b004393f7b75e2381d687b539929a64646d47678d97a8 107858 
w3-dtd-mathml_2.0.0.0-2_all.deb
Files: 
 96eab4888709df8e1897ff1f77ac8873 1081 text optional w3-dtd-mathml_2.0.0.0-2.dsc
 8183cdc53873813a795f239a828db218 2960 text optional 
w3-dtd-mathml_2.0.0.0-2.debian.tar.gz
 db2c3438c0f35e747d716d992e45659f 107858 text optional 
w3-dtd-mathml_2.0.0.0-2_all.deb

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

iEYEARECAAYFAk35GtAACgkQXm3vHE4uylpHrQCgoLk2wE5+fi40c4Y4I0uEpYbe
yhwAn2Z65d+Uhtzxotr+a0THIrIs8XTr
=BtSz
-END PGP SIGNATURE-


Accepted:
w3-dtd-mathml_2.0.0.0-2.debian.tar.gz
  to main/w/w3-dtd-mathml/w3-dtd-mathml_2.0.0.0-2.debian.tar.gz
w3-dtd-mathml_2.0.0.0-2.dsc
  to main/w/w3-dtd-mathml/w3-dtd-mathml_2.0.0.0-2.dsc
w3-dtd-mathml_2.0.0.0-2_all.deb
  to main/w/w3-dtd-mathml/w3-dtd-mathml_2.0.0.0-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxkd1-0004f0...@franck.debian.org



Accepted ispell 3.3.02-5 (source i386 all)

2011-06-16 Thread Robert Luberda
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 15 Jun 2011 07:58:21 +0200
Source: ispell
Binary: ispell ienglish-common iamerican ibritish iamerican-small 
ibritish-small iamerican-large ibritish-large iamerican-huge ibritish-huge 
iamerican-insane ibritish-insane
Architecture: source i386 all
Version: 3.3.02-5
Distribution: unstable
Urgency: low
Maintainer: Robert Luberda rob...@debian.org
Changed-By: Robert Luberda rob...@debian.org
Description: 
 iamerican  - American English dictionary for ispell (standard version)
 iamerican-huge - American English dictionary for ispell (huge)
 iamerican-insane - American English dictionary for ispell (insane version)
 iamerican-large - American English dictionary for ispell (large)
 iamerican-small - American English dictionary for ispell (small)
 ibritish   - British English dictionary for ispell (standard version)
 ibritish-huge - British English dictionary for ispell (huge)
 ibritish-insane - British English dictionary for ispell (insane version)
 ibritish-large - British English dictionary for ispell (large)
 ibritish-small - British English dictionary for ispell (small)
 ienglish-common - Common files for British and American ispell dictionaries
 ispell - International Ispell (an interactive spelling corrector)
Closes: 630240 630243
Changes: 
 ispell (3.3.02-5) unstable; urgency=low
 .
   * Fix a typo in ibritish-huge description (closes: #630240).
   * Replace `The package also recommends' with `The package also suggests' in
 packages' descriptions (closes: #630243).
   * Standards-Version: 3.9.2 (no changes).
Checksums-Sha1: 
 010a8180230311c79b3210104b38101246512591 1658 ispell_3.3.02-5.dsc
 9328ca1cc433c2d3aead2b6e011b39569f23af95 48419 ispell_3.3.02-5.debian.tar.gz
 0cabfe6483dd4e97779b9c654300a048c7c9f169 157230 ispell_3.3.02-5_i386.deb
 36d8af02dd7793261a595f6d97c62847821615cc 31980 ienglish-common_3.3.02-5_all.deb
 7b17dbbb75c8908e896703bfcf27e93cedb20fff 187046 iamerican_3.3.02-5_all.deb
 ed96b4f9ed28c775ba5a0ff335b2045c6634e99a 187002 ibritish_3.3.02-5_all.deb
 6e47ea75f93a31a7da0ce0c9dd5dd497b4c3681f 94166 iamerican-small_3.3.02-5_all.deb
 1350cc596f441b96a07fca14e86d3be923e372a8 94094 ibritish-small_3.3.02-5_all.deb
 a99ac32e2e1e5c2ed73be142dddaa15c3cbda82b 420326 
iamerican-large_3.3.02-5_all.deb
 32461fcae6cee934da62efd1d922953d965aca85 420990 ibritish-large_3.3.02-5_all.deb
 b3e4ed2ed9bb463a48248d3611d05178c4018583 695294 iamerican-huge_3.3.02-5_all.deb
 c3495ab226a4cc309c37b42791dc5d40cc1a57e6 696610 ibritish-huge_3.3.02-5_all.deb
 eadd070558babfee5b5a9d08225f226734aa410f 1309218 
iamerican-insane_3.3.02-5_all.deb
 2c2563b4cba89a33b39dcd7bf51709ae059eb596 1311294 
ibritish-insane_3.3.02-5_all.deb
Checksums-Sha256: 
 a5f7751587ce8ae930067e65d5058cfa16e91c2a0b39118723953a08f658c4ed 1658 
ispell_3.3.02-5.dsc
 d983f0662b303b1e7166196806ce7df7401ee40fa49fbdbd5c58e0b4731b0789 48419 
ispell_3.3.02-5.debian.tar.gz
 468ab6c4172216b8f9cb5b4964a3cd6546c50560c7a073e58de2e76af56f25d8 157230 
ispell_3.3.02-5_i386.deb
 bf99b65206046b32bdccae3f131be46f12727c479b56a58e770dd884f76fe29a 31980 
ienglish-common_3.3.02-5_all.deb
 eb997ec919db69c5ea5874bab2cfc20731ac9f0656177842525ebb2d3436dc55 187046 
iamerican_3.3.02-5_all.deb
 a6ac2794829404e486400225b45816f4b1c85f4952fad6141646e54d3f8b26a1 187002 
ibritish_3.3.02-5_all.deb
 2c884c41dbfb7a893bb2b7f20a19031ef77d4c21d621a44e2084da8bfe164cfa 94166 
iamerican-small_3.3.02-5_all.deb
 be201bcf69cd3751c6cb86d16e898d0df85bcf6882ba21ab96f443feae305fad 94094 
ibritish-small_3.3.02-5_all.deb
 259034e6d2a7200a55881d840d0dc95ec51801c574532b1fef3b596ea35ac70a 420326 
iamerican-large_3.3.02-5_all.deb
 ece64ea38b9b85dcb56cc5b448a5f9464c474265319e5c7319902efa85d522dd 420990 
ibritish-large_3.3.02-5_all.deb
 512b60ce2338a198ec03da577c2a1fe78e321498f42940807ae2b1fed611fdd2 695294 
iamerican-huge_3.3.02-5_all.deb
 60d843a4d9b3497c8db8d9de13a4b51ccacaaf6207ec05807da2d92531bf4b2e 696610 
ibritish-huge_3.3.02-5_all.deb
 cb9d5bf8df8a6295ec78700ca0a5ebd9ec64036a41e4cabb2c037f2cc0fc42fc 1309218 
iamerican-insane_3.3.02-5_all.deb
 4d6f9f8df896b675099239142ab02e7e75b65722b3a5c15e333061917240ba2d 1311294 
ibritish-insane_3.3.02-5_all.deb
Files: 
 45805fb592eb84d871844e65e106b146 1658 text optional ispell_3.3.02-5.dsc
 f363f880d03c6b2977c1233c82d04aac 48419 text optional 
ispell_3.3.02-5.debian.tar.gz
 95a3fc07c14760818c1c389b3651b78c 157230 text optional ispell_3.3.02-5_i386.deb
 fdfc32e7022a84a4610acd6f85b16e4c 31980 text optional 
ienglish-common_3.3.02-5_all.deb
 231500768bceaa73d1d39bc9a709e8d3 187046 text optional 
iamerican_3.3.02-5_all.deb
 a8b666f37582f1836794d590402927cf 187002 text optional ibritish_3.3.02-5_all.deb
 e8114b6f18d07edd9503fa991f300cec 94166 text optional 
iamerican-small_3.3.02-5_all.deb
 d8801d6a97656e1e7ff2861e7b5c4fc4 94094 text optional 
ibritish-small_3.3.02-5_all.deb
 b6b6db7cb6996276cd1a9ab1d4f86a94 420326 text optional 
iamerican-large_3.3.02-5_all.deb
 

Accepted libconfig-ini-perl 1:0.018-1 (source all)

2011-06-16 Thread Fabrizio Regalli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 20:58:43 +0200
Source: libconfig-ini-perl
Binary: libconfig-ini-perl
Architecture: source all
Version: 1:0.018-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Fabrizio Regalli fab...@fabreg.it
Description: 
 libconfig-ini-perl - module for reading and writing .ini files
Changes: 
 libconfig-ini-perl (1:0.018-1) unstable; urgency=low
 .
   * New upstream release
 .
   [ Jonathan Yu ]
   * Updated copyright information
   * Add myself to Uploaders and Copyright
 .
   [ Salvatore Bonaccorso ]
   * Email change: Salvatore Bonaccorso - car...@debian.org
 .
   [ Fabrizio Regalli ]
   * Switch d/compat to 8.
   * Build-Depends: switch to debhelper (= 8).
   * Bump to 3.9.2 Standard-Version.
   * Add myself to Uploaders and Copyright.
 .
   [ gregor herrmann ]
   * Build-depend on Test::More 0.96.
Checksums-Sha1: 
 139e4ce1abf94aa288e29bb3c9153d41fc26fcb1 2176 libconfig-ini-perl_0.018-1.dsc
 45b68685024371c65b27774cf34d55683a75b97e 18923 
libconfig-ini-perl_0.018.orig.tar.gz
 d3971448681b062d98a4b0eb9d69b5b14d21334d 2268 
libconfig-ini-perl_0.018-1.debian.tar.gz
 b45e3fe45b5b981144f8312df203a512c2ce5550 22890 
libconfig-ini-perl_0.018-1_all.deb
Checksums-Sha256: 
 57805959580dd77dfa7048ba6a6b7c0094951ad4fc5383bd62d06a04797331a4 2176 
libconfig-ini-perl_0.018-1.dsc
 1666ed5d02e57f5181c5b1c903c7297e919a64f630feab4fd39f7299923a0f9d 18923 
libconfig-ini-perl_0.018.orig.tar.gz
 d4cf581bc1a14f70fce80b08e65de817141b3c131b68cf0b94c05eea63f165e8 2268 
libconfig-ini-perl_0.018-1.debian.tar.gz
 00347140e80dee6f7bf2a1bafa565fb71f1e270d9fa058ad22ad0ccd5083bcc5 22890 
libconfig-ini-perl_0.018-1_all.deb
Files: 
 7362759e66249b3cef963cf5974f7bcf 2176 perl optional 
libconfig-ini-perl_0.018-1.dsc
 ae4c470d71364b82bc29dacf7e16074d 18923 perl optional 
libconfig-ini-perl_0.018.orig.tar.gz
 fea9a9b76c6da8c8f63384792624f11f 2268 perl optional 
libconfig-ini-perl_0.018-1.debian.tar.gz
 f6469903ea31ccac4f3a05aff618edf9 22890 perl optional 
libconfig-ini-perl_0.018-1_all.deb

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

iQIcBAEBCAAGBQJN+nc/AAoJELs6aAGGSaoG7dwQAJqcMCxO0yH5Nyp3TvD6AJJH
Ib7xj+MMncb3oMzHDSYWVlMS+Q6eRFReNFovspBIYtfuLp5XbcpKacMw9SfCKLJ2
jeyfXJhlKWNcgPtJoTYeDgkJSOXOS2gEiHtHOsalQ+3AP4d7aoTN4fuuojzD2G7h
/T7OLKg447ZhjsJY1XX9EkIup5RBtzYQ4Q89t7BZMk1WUvFShxkN0mrXbrDCHGKC
KGd2oesva1TfWf09roZTF6JKz9MBezs6wZX/CXwbD7lt6o246/U0qy1vE5J6C3rv
QBBJDlGaCnTrjfQbobgzOgyvrTIItjbqf0fIveT4jgC4LuhfRVmICgSFkhfgOSAJ
4MD6FWDyD8o2f6H3a0ls3qjTO9qdQ1I9QozPQNm/Y7a3oybk4sPOUlsSKgtW3Y/0
IkuCLA1mGVrm7wODD2rz+W/qeLX924zG4Y/Jrz35zzcJQJ5dVC+5mpi1KVi1yWFA
DJNFFlGSWNJIPjcECfNjMpjz4AY0Q3eAOOEYRq1oiEqe1c/qkhJVw1iHkKA9hcsf
dTuW55+84H14Ip/n+1R2kmOD55I7NIB4oXscmE+ntID6cqw2wgxOUcPOOCZH1TXK
dVPOhs5UQdZ8KD+fqiPwxiii85NOK8ZyLvMZD+PCEmaYaMnjuC95dLX6nCUENFey
ukphPvlSeAzfPT8v5Glg
=n6Lj
-END PGP SIGNATURE-


Accepted:
libconfig-ini-perl_0.018-1.debian.tar.gz
  to main/libc/libconfig-ini-perl/libconfig-ini-perl_0.018-1.debian.tar.gz
libconfig-ini-perl_0.018-1.dsc
  to main/libc/libconfig-ini-perl/libconfig-ini-perl_0.018-1.dsc
libconfig-ini-perl_0.018-1_all.deb
  to main/libc/libconfig-ini-perl/libconfig-ini-perl_0.018-1_all.deb
libconfig-ini-perl_0.018.orig.tar.gz
  to main/libc/libconfig-ini-perl/libconfig-ini-perl_0.018.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxkpq-0005rs...@franck.debian.org



Accepted kicad 0.0.20110616-1 (source all amd64)

2011-06-16 Thread Georges Khaznadar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 22:52:02 +0200
Source: kicad
Binary: kicad kicad-common kicad-doc-de kicad-doc-en kicad-doc-es kicad-doc-fr 
kicad-doc-hu kicad-doc-pt kicad-doc-ru kicad-doc-zh-cn
Architecture: source amd64 all
Version: 0.0.20110616-1
Distribution: unstable
Urgency: low
Maintainer: Georges Khaznadar georg...@ofset.org
Changed-By: Georges Khaznadar georg...@ofset.org
Description: 
 kicad  - Electronic schematic and PCB design software
 kicad-common - Common files used by kicad
 kicad-doc-de - Kicad help files (German)
 kicad-doc-en - Kicad help files (English)
 kicad-doc-es - Kicad help files (Spanish)
 kicad-doc-fr - Kicad help files (French)
 kicad-doc-hu - Kicad help files (Hungarian)
 kicad-doc-pt - Kicad help files (Portuguese)
 kicad-doc-ru - Kicad help files (Russian)
 kicad-doc-zh-cn - Kicad help files (Simplified Chinese)
Closes: 630453
Changes: 
 kicad (0.0.20110616-1) unstable; urgency=low
 .
   * upgraded to the latest upstream version.
   * included the files sent by their author, by email
 4df93da9.50...@iridec.com.au, Closes: #630453
Checksums-Sha1: 
 42f919ad190d6f56f985f67a75482cdb65510bdd 1441 kicad_0.0.20110616-1.dsc
 50fdc3dbe07bacc5fc44264275ab2b3ec5fdcae4 101241168 
kicad_0.0.20110616.orig.tar.gz
 1551dd459409b94c33985fcd2f59fa5510da97bc 1913926 
kicad_0.0.20110616-1.debian.tar.gz
 6820288bd4d7529fd6b461d7fbf492e9508e6909 4701134 kicad_0.0.20110616-1_amd64.deb
 a6406cf2916e353212d370b894d265ad222384e4 24869690 
kicad-common_0.0.20110616-1_all.deb
 357929a485e0ecb3370a039339f58aeeb750a063 406256 
kicad-doc-de_0.0.20110616-1_all.deb
 f7581db24e31cbdb9339f67043b7578c3ef8c6f4 4764544 
kicad-doc-en_0.0.20110616-1_all.deb
 6066749421c200ee04f749f3c0dc8f93545e102e 512404 
kicad-doc-es_0.0.20110616-1_all.deb
 ad433de04ed1fcea0132ac90e81547276678e204 4386172 
kicad-doc-fr_0.0.20110616-1_all.deb
 e73842b1cc41f37da0fc9c3ebcfcb3ce8a88b9f2 759252 
kicad-doc-hu_0.0.20110616-1_all.deb
 ecebfc18a435a30a3c8e31e8e1b1d67c9f337514 5846 
kicad-doc-pt_0.0.20110616-1_all.deb
 f09a46de469171e60a6cc1d521434f494fc42d2e 5780466 
kicad-doc-ru_0.0.20110616-1_all.deb
 5dce2f5e588122bd21ebb567471872c5a93b84fc 478872 
kicad-doc-zh-cn_0.0.20110616-1_all.deb
Checksums-Sha256: 
 e24851e2fe290072922038f0b8707254beeffc2c3f325def71fe9eb52e4bd6dc 1441 
kicad_0.0.20110616-1.dsc
 e96e87b0c7503f7dd23cdab5a5db0648cd2651a23f5c6f6dfefbea99fcc2809d 101241168 
kicad_0.0.20110616.orig.tar.gz
 bcd76244c4a2fce5517248c060867c29aaf0d897cf8f94a6052646a37eaa4cb8 1913926 
kicad_0.0.20110616-1.debian.tar.gz
 bb7153917d6c0a6b07d8fa927df4787a667e09aca32562f633b64bb35be7ffce 4701134 
kicad_0.0.20110616-1_amd64.deb
 0ffcf17ce60acb2e806c4638e4c4e29825fe5d57c81683de7df247bd4c9e7eb0 24869690 
kicad-common_0.0.20110616-1_all.deb
 159b49f8eeab2dd04634de8b45e1a9d3d3f7375415b60c1bee3a773095d3ab11 406256 
kicad-doc-de_0.0.20110616-1_all.deb
 86720d3212dcb06f271fd2e9e9c075372756f4fbecd817f0c4e8532b0ab4ecb2 4764544 
kicad-doc-en_0.0.20110616-1_all.deb
 746f79892d66a7b11bc0a5f1b0e2f0daa59fb6f548ec432438c19695beb91f18 512404 
kicad-doc-es_0.0.20110616-1_all.deb
 4952cc0a5b84a774c8d4d06cff0c595e8b15df999bdc69de13cc9bda0e7041bb 4386172 
kicad-doc-fr_0.0.20110616-1_all.deb
 be8f67985c28cd3afaae16f734a878a1cfec31f521c7ded34dd27590bbe4a2a3 759252 
kicad-doc-hu_0.0.20110616-1_all.deb
 0a27536c5052c209105563ed1fdaee33face31436d4bfe0b97322b9afd3efb2e 5846 
kicad-doc-pt_0.0.20110616-1_all.deb
 bc619bb505fb4540efc8782396d07263c19050be0b0c195a8a38fc8a8f4dda6f 5780466 
kicad-doc-ru_0.0.20110616-1_all.deb
 0fc502f0ce123d8445890d7367dd5eda37cbbd093de107dc94fc71520313b49d 478872 
kicad-doc-zh-cn_0.0.20110616-1_all.deb
Files: 
 63128370e37f5d2702fc5e0ccde25afe 1441 electronics optional 
kicad_0.0.20110616-1.dsc
 f15ce5d65464413c33316ccd1a1ed4f8 101241168 electronics optional 
kicad_0.0.20110616.orig.tar.gz
 1b4952c1473b74ee35f70be2054d3efe 1913926 electronics optional 
kicad_0.0.20110616-1.debian.tar.gz
 ff2b3220cf1c597f01f8751d995cdcad 4701134 electronics optional 
kicad_0.0.20110616-1_amd64.deb
 9e17a7193f5ea9de5be5b0de92cd6e82 24869690 electronics optional 
kicad-common_0.0.20110616-1_all.deb
 b567f9f6e2b85357e4deffa9df2f0706 406256 electronics optional 
kicad-doc-de_0.0.20110616-1_all.deb
 e62bb8232909d667ac10c251d810bfcd 4764544 electronics optional 
kicad-doc-en_0.0.20110616-1_all.deb
 26588859f95592809e2c69ff306e1e57 512404 electronics optional 
kicad-doc-es_0.0.20110616-1_all.deb
 e33590314a24f4f825e16c908568e2ef 4386172 electronics optional 
kicad-doc-fr_0.0.20110616-1_all.deb
 bacb67d8fcd339b868420c7296cf4382 759252 electronics optional 
kicad-doc-hu_0.0.20110616-1_all.deb
 6b41f51a700075c4ad21e9a1086a7bba 5846 electronics optional 
kicad-doc-pt_0.0.20110616-1_all.deb
 148dbf7dc99df1230a2d53c7939c3f6f 5780466 electronics optional 
kicad-doc-ru_0.0.20110616-1_all.deb
 9746cc3500ee54a66616d266238dc1f4 478872 electronics optional 
kicad-doc-zh-cn_0.0.20110616-1_all.deb

-BEGIN PGP 

Accepted aafigure 0.5-2 (source all)

2011-06-16 Thread Jakub Wilk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jun 2011 23:55:23 +0200
Source: aafigure
Binary: python-aafigure
Architecture: source all
Version: 0.5-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Jakub Wilk jw...@debian.org
Description: 
 python-aafigure - ASCII art to image converter
Changes: 
 aafigure (0.5-2) unstable; urgency=low
 .
   * QA upload (see #589967).
 + Set Maintainer to Debian QA Group.
 + Remove Uploaders.
   * Drop work-around for bug #575377.
   * Bump standards version to 3.9.2 (no changes needed).
   * Fix a typo in the manual page.
   * Relicense Debian packaging to the BSD license.
   * Simplify debian/rules. Add build-arch and build-indep targets.
   * Build-depend on python-all.
   * Update debian/copyright to the latest DEP-5 version.
Checksums-Sha1: 
 14b4414653fe44e42d3b8423e85b8b8de74b6314 1893 aafigure_0.5-2.dsc
 5e64cf45a31eb1e473815269b2de0abd965e6a4f 4943 aafigure_0.5-2.debian.tar.gz
 ff031841e97c74bfba65f1a8fd0060e7e8854c06 40438 python-aafigure_0.5-2_all.deb
Checksums-Sha256: 
 5ed76007bc967c34ddeab2ce8dea3f7bb56ca8cb7aa1909810317e40c3c02b55 1893 
aafigure_0.5-2.dsc
 0b8886da6c5686cc4d13f84fff68fcce03cca5bae7f50771aaa0ab00906db0f7 4943 
aafigure_0.5-2.debian.tar.gz
 3270c9b48207bb6b1f381fb615665845d9fbf4b4af72766f1b7fc32f9dd66036 40438 
python-aafigure_0.5-2_all.deb
Files: 
 c602cd7a8cc732b78df3ec492665e786 1893 python optional aafigure_0.5-2.dsc
 6151e47adb915e5f250a266689caf1b0 4943 python optional 
aafigure_0.5-2.debian.tar.gz
 ae30a3d66ace9a85576cd6fd5d831db1 40438 python optional 
python-aafigure_0.5-2_all.deb

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

iQIcBAEBCAAGBQJN+n4sAAoJEC1Os6YBVHX1LocP/Rk1gq9FTsgkIBcr93bOoI5T
dMHvf1CDB6BRTiycu8SwSgDiAtktdpyN4I13Okyz0DWVRRdEnOtKUUZp/KTTecvG
agiU1XvWW7OTyCkUfASTgQJANixwxrI648C6qCRMgb5Xw3iRJg7+tVJrFnSDE5GZ
gm5VTEt/YuULHAj4busnSj0NXpxoe+BGkegvUyb4aLqqnuGnBCRpXUClvjR/am6/
Txp45bZRJDA13jOUs4tDxY/FegZuRcILpl8HqZkBdtux7TYT9sb693lp3x5xABMp
Yyup26RtBulLALZR5bbs6OFGM9PeuFC+YBtrXMblij/8LY65x3QvMfZUMQKY09ur
vVPCrKTcfXti2R54gfNTgrFw95PsMhDxGkC1Ebcxtpv4B94hoZHW0n9DUAeTUgb/
urPDiWDNqz4VEA7bOFGNW+K+buBmOqT2j3RViGKa2z+iOlNGYdpxYIe6KUa2lK+u
G4UfW1DgASc3pDxiZoD+3JrDo9WgPdHshovzMgjgxHOF7Az982qPRH1MnL+hATBy
ZX3gD8MNgD1wjvwo03irzHL4tX7nMpl3OCtcgjHJDk7XdpDrrfGgvlh65YbcwMt8
UO7dyb8qNjcTw/H+PEkdldXpahLIFTUbWlJkRAkZnAfR1ucAD/6mrDpNSFYeoF3d
Rr8OQp+x5aSet2Hc+A3t
=OOVP
-END PGP SIGNATURE-


Accepted:
aafigure_0.5-2.debian.tar.gz
  to main/a/aafigure/aafigure_0.5-2.debian.tar.gz
aafigure_0.5-2.dsc
  to main/a/aafigure/aafigure_0.5-2.dsc
python-aafigure_0.5-2_all.deb
  to main/a/aafigure/python-aafigure_0.5-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qxks9-0007dl...@franck.debian.org



Accepted gcc-defaults 1.105 (source all i386)

2011-06-16 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Jun 2011 23:47:48 +0200
Source: gcc-defaults
Binary: cpp g++ g++-multilib gobjc gobjc-multilib gobjc++ gobjc++-multilib 
gfortran gfortran-multilib gccgo gccgo-multilib libgcj-common libgcj-bc gcj-jdk 
gcj-jre-headless gcj-jre gcc gcc-multilib gdc gcc-spu g++-spu gfortran-spu
Architecture: source all i386
Version: 1.105
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 cpp- GNU C preprocessor (cpp)
 g++- GNU C++ compiler
 g++-multilib - GNU C++ compiler (multilib files)
 g++-spu- SPU cross-compiler (C++ compiler)
 gcc- GNU C compiler
 gcc-multilib - GNU C compiler (multilib files)
 gcc-spu- SPU cross-compiler (preprocessor and C compiler)
 gccgo  - Go compiler, based on the GCC backend
 gccgo-multilib - Go compiler, based on the GCC backend (multilib files)
 gcj-jdk- gcj and classpath development tools for Java(TM)
 gcj-jre- Java runtime environment using GIJ/classpath
 gcj-jre-headless - Java runtime environment using GIJ/classpath (headless 
version)
 gdc- D compiler, based on the GCC backend
 gfortran   - GNU Fortran 95 compiler
 gfortran-multilib - GNU Fortran 95 compiler (multilib files)
 gfortran-spu - SPU cross-compiler (Fortran compiler)
 gobjc  - GNU Objective-C compiler
 gobjc++- GNU Objective-C++ compiler
 gobjc++-multilib - GNU Objective-C++ compiler (multilib files)
 gobjc-multilib - GNU Objective-C compiler (multilib files)
 libgcj-bc  - Link time only library for use with gcj
 libgcj-common - Java runtime library (common files)
Closes: 630417
Changes: 
 gcc-defaults (1.105) unstable; urgency=low
 .
   * Build libgcj-bc for multiarch. Closes: #630417.
Checksums-Sha1: 
 e66c6f580c74a23e98a5f693b0173c1fa779fa45 1385 gcc-defaults_1.105.dsc
 8f6dcb4c105a400159a415baf2e2f16c157d40bb 60494 gcc-defaults_1.105.tar.gz
 26bbf6f1b0ff1fe7bad49ea24da3b9f0494940f2 139834 libgcj-common_4.4.5-10_all.deb
 eb88d356eb9e96e101390cb7a128f8068e6c19a0 15568 cpp_4.6.0-6_i386.deb
 c21e812a1539e41ffe179ea703e6a01f570ed728 5016 gcc_4.6.0-6_i386.deb
 10ee5913828f8e7df1f25bfaf9533c1149d8491d 876 gcc-multilib_4.6.0-6_i386.deb
 c00b4998ea09113db515c6e38703fd831ba37f3b 15620 gdc_4.4.5-10_i386.deb
 a34b9336fca0e382466bf559a8d3fbe88737a43e 1372 g++_4.6.0-6_i386.deb
 90a9b732809f289b68c5de799ffd303a30af6a86 830 g++-multilib_4.6.0-6_i386.deb
 09a5f939dda597d0a956253d18fea56adf9f26f5 852 gobjc_4.6.0-6_i386.deb
 9da9ae8511587829d0cd8194b1d9ff51f17ce6d1 846 gobjc-multilib_4.6.0-6_i386.deb
 390c625141cd989c0ac525e81e5a50417788e80b 876 gobjc++_4.6.0-6_i386.deb
 11c3b45668c331f414493a2343d689cc2ae081b1 854 gobjc++-multilib_4.6.0-6_i386.deb
 d27d2a48e42ea360fecf1565d640b0136106ec14 1134 gfortran_4.6.0-6_i386.deb
 ffdb994dd01f40db29204edfc82de70fc2aa70f2 850 gfortran-multilib_4.6.0-6_i386.deb
 165850fa67edde3bd2b8ab56f5c43aac1e5e4691 914 gccgo_4.6.0-6_i386.deb
 d3a64b7c8b05f70abf1654e2d06d91a19711d254 878 gccgo-multilib_4.6.0-6_i386.deb
 1f246c06a4e5110541f9af8ad625a93315005084 1182 libgcj-bc_4.6.0-6_i386.deb
 1ef0d4991f63cefde49d650832ab59d76a320144 1484 gcj-jre-headless_4.6.0-6_i386.deb
 733edd4d67800d14c4d68ce0322f90b896cbb9da 1022 gcj-jre_4.6.0-6_i386.deb
 090b7ef737c61c967ea8238aa61d1f2573e058c7 6258 gcj-jdk_4.6.0-6_i386.deb
Checksums-Sha256: 
 75f59813a553110cc038a43d700e629519a2dbafe00a93cb56c25fd8c4e44c88 1385 
gcc-defaults_1.105.dsc
 cc3efec0a7e60324a1789253a145b69f8bdd6be93661bf147785d0e525edca50 60494 
gcc-defaults_1.105.tar.gz
 4aa057c152822b96ce712cae8fea63fdbb485264ee0bc6e31c56055f16d02a42 139834 
libgcj-common_4.4.5-10_all.deb
 59c4788bf1274f20b66b0a30786d3012a744c81f70dfa12eb39df12938fa7157 15568 
cpp_4.6.0-6_i386.deb
 f087343f705fbca5d9d65ede02b7a0f0127e7c3413df9cee09276f074cf93435 5016 
gcc_4.6.0-6_i386.deb
 3ba8be5972f06ad56b629aae5b30c0d94b1aea651350303d168781d44e6e273c 876 
gcc-multilib_4.6.0-6_i386.deb
 9c8e2d997ad6bf2207b2dca57107d8b6ed8210b2263ee6624552f6bddfc3fbc1 15620 
gdc_4.4.5-10_i386.deb
 e83e8c380d2be93a6f10fce6157974f6ac415c1ddbafcb41c672e8b99e562547 1372 
g++_4.6.0-6_i386.deb
 ea2c3d3a2d9ac9cfc7ecdd1309f5484e49a86cf73b3f92fd6c2ab25a79d2b21a 830 
g++-multilib_4.6.0-6_i386.deb
 1fa4e66526642efa65a1c225c5783571005d5811c328bf8e4bf7d346424c15df 852 
gobjc_4.6.0-6_i386.deb
 5767e6f1dc8f7dc21f26a4176a12382598991d813baa925ab7f27192908becd9 846 
gobjc-multilib_4.6.0-6_i386.deb
 f2fa411a8c5e910f36636ff8260e0e0f1be0a88a2394faf4a70b0863a62ec3a8 876 
gobjc++_4.6.0-6_i386.deb
 6f9350f91d5f61d320f0a49dbdac49a6fccb29eb4bf6245314f5905eb0af3979 854 
gobjc++-multilib_4.6.0-6_i386.deb
 505858fdb122d0c93678dc584016157e861fa862bf9663f3ded9d2fc34bf3f1b 1134 
gfortran_4.6.0-6_i386.deb
 c7f947b81bc05eeff18cd3852c1e0fccb02fe770b10cb5689a0e83e5efac9f93 850 
gfortran-multilib_4.6.0-6_i386.deb
 4a5ee27df179dad8566ce0db42c68fb6b4d8ca00e5870df2e683291dad81 914 
gccgo_4.6.0-6_i386.deb
 

  1   2   >