Bug#612718: ITP: libanyevent-dbd-pg-perl -- AnyEvent interface to DBD::Pg's async interface

2011-02-10 Thread Dmitry E. Oboukhov
Package: wnpp
Severity: wishlist
Owner: Dmitry E. Oboukhov un...@debian.org

* Package name: libanyevent-dbd-pg-perl
  Version : 0.03
  Upstream Author : Mons Anderson, m...@cpan.org
* URL : 
http://search.cpan.org/~mons/AnyEvent-DBD-Pg/lib/AnyEvent/DBD/Pg.pm
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : AnyEvent interface to DBD::Pg's async interface

This perl-module can be used inside AnyEvent application to
access postgresql database in non-blocking mode.



-- 
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/20110210080506.23244.66589.reportbug@apache



Re: Fun with libtool and cross-builds

2011-02-10 Thread Shachar Shemesh

On 09/02/11 22:10, Simon Josefsson wrote:


Please try to debug where the -L/usr/lib comes from, I don't believe
libtool is adding this by itself but instead it is told to add it by
some incorrect .la file or similar.

   
This is from memory, as I also ran into the same problem. The problem 
is, if my memory serves me right, in the following scenario:
Cross build library A and install it with DESTDIR (obviously) to 
/tmp/otheroot
Try to cross build library B, that needs library A. Obviously, you're 
going to give it -L /tmp/otheroot/usr/lib. The problem is that the .la 
files in /tmp/otheroot/usr/lib point to /usr/lib as the place to find 
the library. This only becomes a problem when a native version of 
library A is installed on the real system, at which point the compiler 
prefers that version, and then fails as it is of the wrong architecture.


In my projects I wound up fixing the la file with sed as part of the 
build process, but that was an embedded project where:


  1. The la files were not installed to the destination machine, and
  2. The entire build was controlled by a single governing makefile.

If either one of these conditions is not present, my solution simply 
wouldn't work. Another solution is to build A with 
--prefix=/tmp/otheroot/usr, but I think we can all see how that might 
break stuff in the library if the destination path is used inside the code.


The only real solution I see for this is for libtool to have specific 
support for linking against DESTDIR installed libraries (maybe make it 
respect DESTDIR if it's defined during the build? That could be a 
solution that is both easy to understand and simple to integrate)


Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting Ltd.
http://www.lingnu.com



Re: Fun with libtool and cross-builds

2011-02-10 Thread Tollef Fog Heen
]] Shachar Shemesh 

| The only real solution I see for this is for libtool to have specific
| support for linking against DESTDIR installed libraries (maybe make it
| respect DESTDIR if it's defined during the build? That could be a
| solution that is both easy to understand and simple to integrate)

Isn't a much simpler solution just to get rid of .la files for platforms
where they're useless?  They're not needed for dynamic linking and
Debian doesn't really support static linking well, and if you do need
static linking, you can just use pkg-config which more and more libs
support those days.

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


-- 
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/874o8c8a60@qurzaw.varnish-software.com



Bug#612734: O: policyd-weight -- a Perl policy daemon for the Postfix MTA

2011-02-10 Thread Jan Wagner
Package: wnpp
Severity: normal
X-Debbugs-CC: debian-devel@lists.debian.org

I intend to orphan the policyd-weight package. I no longer use policyd-weight 
and active upstream development stoped. Anyways, upstream is responsive and is 
acting on bugs.

policyd-weight (0.1.15.1-3) unstable; urgency=low

  * Orphan the package.
  * Add 03_cacherejectmsg.dpatch, to have a more verbose reject message on
cache hit, thanks Martin F. Krafft (Closes: #598844)
  * Updating standards version to 3.9.1
- use dh_prep instead of dh_clean -k
  * Update to debhelper 7

 -- Jan Wagner w...@cyconet.org  Thu, 10 Feb 2011 10:38:35 +0100

The package description is:
 Its intended to eliminate forged envelope senders and HELOs (i.e. in bogus 
 mails). It allows you to score DNSBLs (RBL/RHSBL), HELO, MAIL FROM and client 
 IP addresses before any queuing is done. It allows you to REJECT messages 
 which have a score higher than allowed, providing improved blocking of spam 
 and virus mails. policyd-weight caches the most frequent client/sender 
 combinations (SPAM as well as HAM) to reduce the number of DNS queries. 


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


Fun with libtool and cross-builds

2011-02-10 Thread Wookey
[This was also posted to debian-devel but I got the linaro addesss
wrong: http://lists.debian.org/debian-devel/2011/02/msg00196.html]

Libtool is intended to make library linking 'just work' whatever the
details of your build mechanisms are. 

However in Debian/Ubuntu cross-building it seems to go out of its way
to make it not-work. The problem is papered-over when using i386
machines, or amd64 machines and a new-enough (or old enough) version
of binutils, but this seems to me to be a very poor solution as it has
to be put into the linker for every cross-combination people might
choose to build between.

Making libtool actually do the right thing would be much better. In
fact it would be correct, and we like correctness.

This is not a new problem. In a bit of research I found a post
suggesting it was actually broken in 2002 (I've not yet looked into this).

(a long list of previous posts on the issue from OE, Debian, Ubuntu,
astlinux and buildroot people is at the end of this mail).

Now, before I get too carried away I want to check that I'm not just
misunderstanding something. It seems faintly crazy that this very
straightforward cross-comiling problem is not already solved.

And I have to admit that I have always done my best to avoid
understanding the details of libtool (like most people). However I
think the time has come to sort this out properly, if in fact it
hasn't been already.

The problem
---

We are crossbuilding Debian packages, that build libraries, which link to
other libraries. There are lots of those, but I'm using unixodbc and
libprce3 here as they seem fairly typical examples.

The libraries to link against are installed into a directory,
historically /usr/triplet/lib, but moving to
/usr/lib/host-multiarchtuple using multiarch mechanisms. They could also
be in sysroot locations if using sysroot mechanisms). The point is that they 
are _not_ in
/usr/lib (or /usr/lib/build-multiarchtuple in multiarch world).

libtool gets most of this process right (or at least not wrong), until
the library is installed into the package location typically
(debian/tmp/usr/lib) using libtool's 'install' mode, which then calls
libtool with mode 'relink'.

At this points it calls the linker and adds -L/usr/lib on the front -
thereby adding this path in front of the default cross-compiler path.

If called without this -L, or called with -L/usr/triplet/lib (i.e
the correct path, wherever that is), then everything is fine because
the libraries for the correct (host) architecture are found. So there
are 2 ways to get this right and one way to get it wrong, which is the
one libtool picks. 

The workarounds which mean this has not yet been fixed are that the
linker used to just issue a warning and ignore libraries
which it didn't understand: 
/usr/lib/libgcc_s.so: file not recognized: File format not recognized

And more recently it has been taught to understand specific
architectures enough to decide they are the wrong ones:
/usr/arm-linux-gnueabi/bin/ld: skipping incompatible /usr/lib/libpthread.so 
when searching for
-lpthread
/usr/arm-linux-gnueabi/bin/ld: skipping incompatible /usr/lib/libpthread.so 
when searching for
-lpthread
/usr/arm-linux-gnueabi/bin/ld: skipping incompatible /usr/lib/libc.so when 
searching for -lc

However on amd64 machine with armel toolchain and
binutils-arm-linux-gnueabi_2.20.51.20100908-0ubuntu2cross1.52 the
skipping fails for static libs: 
/usr/lib/libc.a: could not read symbols: File format not recognized
and the build fails.

on i386, or later versions of binutils, these are skipped the same as
the .so s.

However as stated above I don't think relying on this linker
behaviour is any real sort of solution - we should get libtool to
either leave it up to the toolchain, or pass the correct explicit
path.

Here is the example unixodbc case that illustrates the problem:
(Built with: xdeb -a armel --apt-source unixodbc, which runs: 
dpkg-buildpackage -rfakeroot -d -us -uc -aarmel -b -tc )

make[4]: Entering directory /home/chroot-user/build/unixodbc-2.2.14p2/samples'
test -z /usr/lib || mkdir -p -- 
/home/chroot-user/build/unixodbc-2.2.14p2/debian/tmp/usr/lib
 /bin/bash ../libtool --mode=install /usr/bin/install -c  'libboundparam.la' 
'/home/chroot-user/build/unixodbc-2.2.14p2/debian/tmp/usr/lib/libboundparam.la'
libtool: install: warning: relinking libboundparam.la'
libtool: install: (cd /home/chroot-user/build/unixodbc-2.2.14p2/samples; 
/bin/bash /home/chroot-user/build/unixodbc-2.2.14p2/libtool  --tag CC 
--mode=relink arm-l$
libtool: relink: arm-linux-gnueabi-gcc -shared  .libs/boundparam.o 
.libs/helper.o .libs/cboundtimestampparam.o  -Wl,--whole-archive 
../autotest/.libs/libgtrtstlc.$
/usr/lib/gcc/arm-linux-gnueabi/4.5.1/../../../../arm-linux-gnueabi/bin/ld: 
skipping incompatible /usr/lib/libpthread.so when searching for -lpthread
/usr/lib/gcc/arm-linux-gnueabi/4.5.1/../../../../arm-linux-gnueabi/bin/ld: 
skipping incompatible /usr/lib/libpthread.so when searching 

Re: libsdl-perl

2011-02-10 Thread Jonathan Yu
Hi there,

Unfortunately, that package is maintained by the Debian SDL Package
Maintainers (as you can see by the top line of the bug report you
mentioned, Maintainer for libsdl-perl is Debian SDL packages
maintainers pkg-sdl-maintain...@lists.alioth.debian.org

I have forwarded your e-mail to that list, as I can't find anything on
lists.debian.org for it.

Cheers,

Jonathan

Cc: debian-devel, maybe someone there will know more
Cc: pkg-sdl-maintainers

On Thu, Feb 10, 2011 at 5:14 AM, Roman V. Nikolaev rsha...@rambler.ru wrote:
 Hi all!

 Can somebody update libsdl-perl package? Last updated in 2009 =(

 Bug:  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592998
 CPAN: http://search.cpan.org/~froggs/SDL/

 I try to make game but SDL bindings too old.

 P.S. Current libsdl-perl used in some games. But some functions and
 packages depricated for last years. Maybe make libsdl2.5-perl?
 --

         Roman V. Nikolaev

 mail:        rsha...@rambler.ru
 icq:         198-364-657
 jabber:      rsha...@jabber.org
 site:        http://www.rshadow.ru




--
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/aanlktikn6gf8mrtklixcaxa8ug8wr9mzy9rmt+aby...@mail.gmail.com



Re: Fun with libtool and cross-builds

2011-02-10 Thread Loïc Minier
On Thu, Feb 10, 2011, Wookey wrote:
 Loic Minier in October last year, to libtool list
 http://thread.gmane.org/gmane.comp.gnu.libtool.bugs/7626
 (response: yes that seems to be a bug, no time to fix now, does sysroot
 option fix it? 'Not for me' said lool)

 FTR, I just tried libtool.git, and it seems to still be affected by the
 issue

 ./bootstrap
 cd tests/depdemo
 ./configure --build=x86_64-linux-gnu --host=arm-linux-gnueabi --libdir=/usr/lib
 make install DESTDIR=`pwd`/destdir

test -z /usr/lib || /bin/mkdir -p 
/home/lool/scratch/libtool/libtool-git/tests/depdemo/destdir/usr/lib
 /bin/bash ../libtool   --mode=install /usr/bin/install -c   libl2.la 
'/home/lool/scratch/libtool/libtool-git/tests/depdemo/destdir/usr/lib'
libtool: install: warning: relinking `libl2.la'
libtool: install: (cd /home/lool/scratch/libtool/libtool-git/tests/depdemo/l2; 
/bin/bash /home/lool/scratch/libtool/libtool-git/tests/depdemo/libtool  --tag 
CC --mode=relink arm-linux-gnueabi-gcc -g -O2 -no-undefined -o libl2.la -rpath 
/usr/lib l2.lo ../l1/libl1.la -inst-prefix-dir 
/home/lool/scratch/libtool/libtool-git/tests/depdemo/destdir)
libtool: relink: arm-linux-gnueabi-gcc -shared  -fPIC -DPIC  .libs/l2.o   
-L/home/lool/scratch/libtool/libtool-git/tests/depdemo/destdir/usr/lib 
-L/usr/lib -ll1  -O2   -Wl,-soname -Wl,libl2.so.0 -o .libs/libl2.so.0.0.0
/usr/lib/gcc/arm-linux-gnueabi/4.5.2/../../../../arm-linux-gnueabi/bin/ld: 
skipping incompatible /usr/lib/libc.so when searching for -lc
/usr/lib/libc.a: could not read symbols: File format not recognized
collect2: ld returned 1 exit status
libtool: install: error: relink `libl2.la' with the above command before 
installing it


 I'd recommend you work with test cases (not necessarily libtool's) as
 various compilation mode might impose subtly different constraints on
 our tools (toolchain, libtool and others).  This will help us give
 upstreams a recipe to reproduce and will also keep our tools working
 for use cases we care about.  Here, we can try changing libtool and see
 if the above test passes -- it's not really an isolated test ATM
 though.

-- 
Loïc Minier


-- 
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/20110210112652.gb2...@bee.dooz.org



Bug#612761: ITP: python-pebl -- Python Environment for Bayesian Learning

2011-02-10 Thread Miriam Ruiz
Package: wnpp
Severity: wishlist
Owner: Miriam Ruiz little_m...@yahoo.es


* Package name: python-pebl
  Version : 1.0.2
  Upstream Author : Abhik Shah abhiks...@gmail.com
* URL : https://code.google.com/p/pebl-project/
* License : MIT
  Programming Lang: C, Python
  Description : Python Environment for Bayesian Learning

 Pebl is a python library and command line application for learning
 the structure of a Bayesian network given prior knowledge and
 observations. Pebl includes the following features:
   * Can learn with observational and interventional data
   * Handles missing values and hidden variables using exact and heuristic
 methods
   * Provides several learning algorithms; makes creating new ones simple
   * Has facilities for transparent parallel execution using several
 cluster/grid resources
   * Calculates edge marginals and consensus networks
   * Presents results in a variety of formas



-- 
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/20110210131807.20621.72714.report...@alioth.debian.org



Processed: Re: Bug#612744: general: Keyboard input problem after somehow connected with win_key

2011-02-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 612744 normal
Bug #612744 [general] general: Keyboard input problem after somehow connected 
with win_key
Severity set to 'normal' from 'serious'

 reassign 612744 linux-2.6
Bug #612744 [general] general: Keyboard input problem after somehow connected 
with win_key
Bug reassigned from package 'general' to 'linux-2.6'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
612744: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612744
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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/handler.s.c.129734625727240.transcr...@bugs.debian.org



Re: Bug#612694: ITP: scanmonitord -- scanner button daemon

2011-02-10 Thread Simon Paillard
On Thu, Feb 10, 2011 at 08:33:00AM +0100, Adrian von Bidder wrote:
 On Thursday 10 February 2011 01.32:12 Jakub Wilk wrote:
 Description : scanner button daemon
  
  Scanmonitord is a daemon which runs device monitors on one or more
  devices. [...]
 
 I'm curious (and you might want to add it to the description): does this tie 
 in with modern desktop systems via DBUS or whatever, or is this a standalone 
 thing?

What is the difference with scanbuttond ?
http://packages.debian.org/sid/scanbuttond

-- 
Simon Paillard


-- 
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/20110210150225.go9...@glenfiddich.ikibiki.org



Olita, Ginta un Brigita sniedz Tev dzudznozimigas buchas

2011-02-10 Thread Elvina
Burviigaas draiskuliites Anete, Olita un Amanda dod Tev draudzigus sveicienus 
Valentindiena!

Protams, meitenes gaida Tevi karstu seansu!

http://www.sexy-massazha.info -tur ir visa informacija

Aicinot tevi, Olita



-- 
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/20110210191730.9583d13a4...@liszt.debian.org



Re: Upcoming FTPMaster meeting

2011-02-10 Thread Josselin Mouette
Le jeudi 03 février 2011 à 22:05 +0100, Joerg Jaspert a écrit :
 Attached below is a tentative agenda. This is an unsorted list and we
 might not get to every point. We might also have missed any number of
 points, if so feel free to tell us about them.

Would it be possible to add support for ddebs?

-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling


--
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/1297369634.2375.1.camel@tomoe



Re: Upcoming FTPMaster meeting

2011-02-10 Thread Sandro Tosi
On Thu, Feb 3, 2011 at 22:05, Joerg Jaspert jo...@ganneff.de wrote:
 * Throwaway DD built .debs (well, let's have the fight^Wdiscussion)

could you please keep in mind the bandwidth impaired and try something
that avoids to upload those binary packages in the first place? but
also something that avoids the risk of uploads without even trying to
build the package first.

Thanks,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi


-- 
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/aanlktim0_hcr8rnrhse3qmffxmhrjorc1gip2fgsw...@mail.gmail.com



Bug#612817: ITP: xnbd -- a Network Block Device server with support for Live Migration, Copy on Write and concurrent access

2011-02-10 Thread Arno Töll
Package: wnpp
Severity: wishlist
Owner: Arno Töll deb...@toell.net


* Package name: xnbd
  Version : 0.0.3+hg20110210
  Upstream Author : Takahiro Hirofuchi t.hirofu...@aist.go.jp
* URL : https://bitbucket.org/hirofuchi/xnbd/wiki/Home
* License : GPL
  Programming Lang: C
  Description : a Network Block Device server with support for Live 
Migration, Copy on Write and concurrent access

xNBD is yet another NBD (Network Block Device) server program, which is fully 
compatible with the NBD client driver of Linux Kernel.

In comparison with the original NBD server, xNBD provides the following 
features:

* Possibly better I/O performance by using mmap().
* Concurrent access from multiple clients.
* Distributed Copy-on-Write disk.
* Live storage migration for virtual machines.
* IPv6 support. 

(description is verbatim copy from the home page)



-- 
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/20110210212003.8401.41232.report...@snowball.fritz.box



Re: Upcoming FTPMaster meeting

2011-02-10 Thread Ben Hutchings
On Thu, 2011-02-10 at 21:43 +0100, Sandro Tosi wrote:
 On Thu, Feb 3, 2011 at 22:05, Joerg Jaspert jo...@ganneff.de wrote:
  * Throwaway DD built .debs (well, let's have the fight^Wdiscussion)
 
 could you please keep in mind the bandwidth impaired and try something
 that avoids to upload those binary packages in the first place? but
 also something that avoids the risk of uploads without even trying to
 build the package first.

Since there is no support for auto-building arch-independent binaries, I
think this would only apply to the arch-dependent binaries.  And you can
already upload without those, which I always do for linux-2.6.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


RFA: all my packages

2011-02-10 Thread Decklin Foster
I'm looking for a new maintainer for, well, any of these. My heart is
not in it anymore and most of them have been neglected for a while.
Recently my free time has been taken up by other things (mainly my job)
and I forsee that continuing.

http://qa.debian.org/developer.php?login=decklin%40red-bean.com

python-beautifulsoup and mpd need attention for proposed-updates; I
missed getting them into Squeeze. rxvt-unicode is a total clusterfuck.

If any desktop-type packages remain I will orphan them, as I am only
running Debian on servers now. Apart from that, perhaps with a greatly
reduced load I can still make a tiny contribution to the community. If
not, I will retire.

-- 
things change.
deck...@red-bean.com


-- 
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/1297375750-sup-7...@gillespie.rupamsunyata.org



Re: Upcoming FTPMaster meeting

2011-02-10 Thread Mike Hommey
On Thu, Feb 10, 2011 at 09:58:57PM +, Ben Hutchings wrote:
 On Thu, 2011-02-10 at 21:43 +0100, Sandro Tosi wrote:
  On Thu, Feb 3, 2011 at 22:05, Joerg Jaspert jo...@ganneff.de wrote:
   * Throwaway DD built .debs (well, let's have the fight^Wdiscussion)
  
  could you please keep in mind the bandwidth impaired and try something
  that avoids to upload those binary packages in the first place? but
  also something that avoids the risk of uploads without even trying to
  build the package first.
 
 Since there is no support for auto-building arch-independent binaries, I
 think this would only apply to the arch-dependent binaries.  And you can
 already upload without those, which I always do for linux-2.6.

But you can only do so if there are arch:all packages iirc.

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/20110210230935.ga22...@glandium.org



Re: RFA: all my packages

2011-02-10 Thread Yaroslav Halchenko

On Thu, 10 Feb 2011, Decklin Foster wrote:
 I'm looking for a new maintainer for, well, any of these. My heart is
 not in it anymore and most of them have been neglected for a while.
 Recently my free time has been taken up by other things (mainly my job)
 and I forsee that continuing.
 http://qa.debian.org/developer.php?login=decklin%40red-bean.com

Thanks for taking care about such a nice collection of software for
Debian.

 rxvt-unicode is a total clusterfuck.

if noone ever comes up (I am already overloaded somewhat) -- I guess
I will need to look at this cluster..ck since I am using it ;-)

-- 
=--=
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/20110211000216.gg8...@onerussian.com



Re: RFA: all my packages

2011-02-10 Thread Ruben Molina
El jue, 10-02-2011 a las 17:11 -0500, Decklin Foster escribió:
 I'm looking for a new maintainer for, well, any of these. My heart is
 not in it anymore and most of them have been neglected for a while.
 Recently my free time has been taken up by other things (mainly my job)
 and I forsee that continuing.
 
 http://qa.debian.org/developer.php?login=decklin%40red-bean.com
 

I'll be happy to take over netcat. Co-maintainers are welcome.
Best regards,
  Ruben Molina


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


Re: Bug#612694: ITP: scanmonitord -- scanner button daemon

2011-02-10 Thread Jakub Wilk

* Simon Paillard spaill...@debian.org, 2011-02-10, 16:02:

   Description : scanner button daemon

Scanmonitord is a daemon which runs device monitors on one or more
devices. [...]


I'm curious (and you might want to add it to the description): does 
this tie in with modern desktop systems via DBUS or whatever, or is 
this a standalone thing?


It's a standalone thing.


What is the difference with scanbuttond ?
http://packages.debian.org/sid/scanbuttond


scanmonitord supports my pet scanner; scanbuttond does not.
Or more generally, scanmonitord queries scanner via SANE.

--
Jakub Wilk


--
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/20110210153329.ga8...@jwilk.net



Re: RFA: all my packages

2011-02-10 Thread Ryan Kavanagh
Hi,

On Thu, Feb 10, 2011 at 07:02:16PM -0500, Yaroslav Halchenko wrote:
 On Thu, 10 Feb 2011, Decklin Foster wrote:
  rxvt-unicode is a total clusterfuck.
 
 if noone ever comes up (I am already overloaded somewhat) -- I guess
 I will need to look at this cluster..ck since I am using it ;-)

I don't think I have the time and nor the ability to properly maintain
rxvt-unicode solo, but since it's my terminal of choice, I'm willing to
co-maintain it.

Kind regards,
Ryan

-- 
|_)|_/  Ryan Kavanagh |  GnuPG key
| \| \  http://ryanak.ca/ |  4A11C97A (Transitioning from E95EDDC9)   
()  ascii ribbon campaign - against html e-mail 
/\  www.asciiribbon.org   - against proprietary attachments


signature.asc
Description: Digital signature


Re: Upcoming FTPMaster meeting

2011-02-10 Thread Paul Wise
On Fri, Feb 11, 2011 at 5:58 AM, Ben Hutchings b...@decadent.org.uk wrote:

 Since there is no support for auto-building arch-independent binaries

I would hope that throwing away developer built debs would also apply
to arch-independent packages, IIRC that was part of the proposal.
There was talk of a Build-Architecture field for Architecture: all
stuff that can only be built on certain architectures (firmware,
bootloaders etc where there is no cross-compiler available).

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


-- 
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/AANLkTinWEO1+PSKrc7zA01+k=g-oxaktyqnzq5abk...@mail.gmail.com



Re: RFA: all my packages

2011-02-10 Thread Alexander Wirt
Decklin Foster schrieb am Thursday, den 10. February 2011:

 I'm looking for a new maintainer for, well, any of these. My heart is
 not in it anymore and most of them have been neglected for a while.
 Recently my free time has been taken up by other things (mainly my job)
 and I forsee that continuing.
 
 http://qa.debian.org/developer.php?login=decklin%40red-bean.com
As I am a heavy mpd user I would like to take these over and form a team for
mpd related packages. Are they still for adoption?

Alex



signature.asc
Description: Digital signature


Bug#612852: ITP: pd-iemambi -- Pd-objects for Ambisonics sound spatialization

2011-02-10 Thread IOhannes m zmoelnig
Package: wnpp
Severity: wishlist
Owner: IOhannes m zmoelnig zmoel...@iem.at


* Package name: pd-iemambi
  Version : 0.1
  Upstream Author : Thomas Musil
* URL : http://get.puredata.info/iem_ambi
* License : GPL
  Programming Lang: C
  Description : Pd-objects for Ambisonics sound spatialization

 This library contains a few objects for calculating Ambisonics encoder 
matrices,
 rotation matrices and decoder matrices from 1st to 4th order in 3D, or from 1st
 to 12th order in 2D. 



-- 
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/20110208165111.29139.62245.reportbug@ferrari.iemnet



Accepted dose2 1.4.2-2 (source amd64)

2011-02-10 Thread Ralf Treinen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 08:26:13 +0100
Source: dose2
Binary: libdose2-ocaml-dev libdose2-ocaml
Architecture: source amd64
Version: 1.4.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 libdose2-ocaml - OCaml libraries for managing packages and their dependencies
 libdose2-ocaml-dev - OCaml libraries for package dependencies (development 
files)
Closes: 599300
Changes: 
 dose2 (1.4.2-2) unstable; urgency=low
 .
   * Make short descriptions of  libdose2-ocaml and  libdose2-ocaml-dev
 different.
   * Standards-version 3.9.1 (no change).
   * debian/rules: switch from cdbs to debhelper  7, dh.
   * Use dh_ocaml (= 0.9.0) to calculate depencies and provides
 (closes: #599300)
   * Dependency on ocaml-findlib: downgrade to Suggests in -dev package,
 remove completely in library package.
   * source format 3.0 (quilt)
Checksums-Sha1: 
 44a9ed72bcb2546a1c015df0cbe78f59f006f0aa 1444 dose2_1.4.2-2.dsc
 f88944dede618b61ad2fe0d0a00d7803b7ed266a 4281 dose2_1.4.2-2.debian.tar.gz
 188dd354f57e4e85690ca54d2e88562a93d41a35 316152 
libdose2-ocaml-dev_1.4.2-2_amd64.deb
 5809a85d223e829b082072faf0a06816ef7c4779 12620 libdose2-ocaml_1.4.2-2_amd64.deb
Checksums-Sha256: 
 38b34ab3f34400ac71d8c4ace01fccc53a83e5412bcc9e552918e6b9643b0a41 1444 
dose2_1.4.2-2.dsc
 f12ffc030e3d178e890bdb01be9aa7cba6cfa7bc48ca215a8ab700232a81a1c9 4281 
dose2_1.4.2-2.debian.tar.gz
 76a4a8a2f3eba9fa2c3011ed9b33a99e249d5c2c013568b38837ac57dce4d776 316152 
libdose2-ocaml-dev_1.4.2-2_amd64.deb
 61f4dd4748d0aa4b3f052b982b949cf3a7830b8fabb205478d43fafa2cdf 12620 
libdose2-ocaml_1.4.2-2_amd64.deb
Files: 
 7666f9cbe697623e1a1940c9b7710635 1444 ocaml optional dose2_1.4.2-2.dsc
 7df360a6555ea11251239cfd3b22b348 4281 ocaml optional 
dose2_1.4.2-2.debian.tar.gz
 b476ea5034e9f75c8bb27be95e2da9f3 316152 ocaml optional 
libdose2-ocaml-dev_1.4.2-2_amd64.deb
 948fa157a7e590ceef9f781c966940bf 12620 ocaml optional 
libdose2-ocaml_1.4.2-2_amd64.deb

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

iEYEARECAAYFAk1Tn48ACgkQtzWmSeC6BMGPqgCgz4HS2qgguiYh/0MfjX6BF65q
AGcAoL4Qo2US2en0BAi1d1kz6ok0wgv3
=NT7G
-END PGP SIGNATURE-


Accepted:
dose2_1.4.2-2.debian.tar.gz
  to main/d/dose2/dose2_1.4.2-2.debian.tar.gz
dose2_1.4.2-2.dsc
  to main/d/dose2/dose2_1.4.2-2.dsc
libdose2-ocaml-dev_1.4.2-2_amd64.deb
  to main/d/dose2/libdose2-ocaml-dev_1.4.2-2_amd64.deb
libdose2-ocaml_1.4.2-2_amd64.deb
  to main/d/dose2/libdose2-ocaml_1.4.2-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/e1pnryo-0008um...@franck.debian.org



Accepted polib 0.6.1-1 (source all)

2011-02-10 Thread Angel Abad
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 08:56:00 +0100
Source: polib
Binary: python-polib
Architecture: source all
Version: 0.6.1-1
Distribution: unstable
Urgency: low
Maintainer: Angel Abad angela...@gmail.com
Changed-By: Angel Abad angela...@gmail.com
Description: 
 python-polib - Python library to parse and manage gettext catalogs
Changes: 
 polib (0.6.1-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 5438845acbb5f2bc6f6714dfc81d8332c718f768 1283 polib_0.6.1-1.dsc
 46356d8c6f430ce9eb3fae4824f5c2612efb6060 146296 polib_0.6.1.orig.tar.gz
 8c981872c5ed652d801ede17872ff91251479b9f 2299 polib_0.6.1-1.debian.tar.gz
 4a11dd79f18ab0311c545fcc62af92332fc92ece 19486 python-polib_0.6.1-1_all.deb
Checksums-Sha256: 
 8eb0fc54ea84b126009a7f30c0104d65210f9b59b4733141bcc062b783b7ab34 1283 
polib_0.6.1-1.dsc
 d6f64ad1125cb6cfa97acf74ad1bbdace9b191c4cff5170caab88c2ffebe1bf2 146296 
polib_0.6.1.orig.tar.gz
 3aca37598cfab6df5c903467f2ec7dae70ffcc6b20d60a7b8bb59617d46559ac 2299 
polib_0.6.1-1.debian.tar.gz
 e0a838038212b6c79bb279253d455a5e069f394401cc15c64386b5106717db92 19486 
python-polib_0.6.1-1_all.deb
Files: 
 03a5bb06a422ffa4cb5a3cc38ed7aeeb 1283 python optional polib_0.6.1-1.dsc
 50123e878884b539750a931c1f5dbe93 146296 python optional polib_0.6.1.orig.tar.gz
 cfe9c7bf906f0194c8f695f77612adb6 2299 python optional 
polib_0.6.1-1.debian.tar.gz
 e3f86275c593d550eca9733b91239281 19486 python optional 
python-polib_0.6.1-1_all.deb

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

iEYEARECAAYFAk1TnRAACgkQCY2uR+47wnmawgCfe2mNbZ+acXuOAR91/JQjCW4a
kyoAn0e3Nv03JBkJ0mEMfonSyFT+uCCU
=5MNm
-END PGP SIGNATURE-


Accepted:
polib_0.6.1-1.debian.tar.gz
  to main/p/polib/polib_0.6.1-1.debian.tar.gz
polib_0.6.1-1.dsc
  to main/p/polib/polib_0.6.1-1.dsc
polib_0.6.1.orig.tar.gz
  to main/p/polib/polib_0.6.1.orig.tar.gz
python-polib_0.6.1-1_all.deb
  to main/p/polib/python-polib_0.6.1-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/e1pns2w-nk...@franck.debian.org



Accepted postfwd 1.20-1 (source all)

2011-02-10 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 08:38:04 +0100
Source: postfwd
Binary: postfwd
Architecture: source all
Version: 1.20-1
Distribution: unstable
Urgency: low
Maintainer: Jan Wagner w...@cyconet.org
Changed-By: Jan Wagner w...@cyconet.org
Description: 
 postfwd- Postfix policyd to combine complex restrictions in a ruleset
Closes: 582969
Changes: 
 postfwd (1.20-1) unstable; urgency=low
 .
   * New upstream release
 - Release contains postfwd1 and postfwd2 now (Closes: #582969)
 - new --umask setting allows to set filepermissions for pidfiles and unix
   domain sockets
 - Rate limit code rewritten
 - rbl checks disabled for ipv6 addresses, cidr compare will switch to
   default (regex/string)
 - rbl check could fail on multiple dnsbl answers
   * Add dpatch infrastructure
   * Provide update-alternatives for choosing the postfwd variant
   * Install also CHANGELOG2
   * Bump Standards-Version to 3.9.1, no changes needed
Checksums-Sha1: 
 6c1165198665e5eca7e23575147bdc3e520238dd 1107 postfwd_1.20-1.dsc
 056760dc3e9b3f230419be63eb987361a2d3d73e 202388 postfwd_1.20.orig.tar.gz
 2b1816158ac0c267d8b912156355c0b13a313b64 8743 postfwd_1.20-1.diff.gz
 3600bee8071f96a5a196844faee39f25e952ecdb 187414 postfwd_1.20-1_all.deb
Checksums-Sha256: 
 b91c010e0be451e8775045b6079044cfeb4096e93a59391cf704361dbc6dff71 1107 
postfwd_1.20-1.dsc
 22dd6208019ce2bfefc2709df20aeba5df1537560cf77fa347a33d6940d557ab 202388 
postfwd_1.20.orig.tar.gz
 fb96e612f6b4f342c06c12f67e7bc7f4ada873916a170ce99793717e09ea4f82 8743 
postfwd_1.20-1.diff.gz
 0988f39cfecefca20e14e57cf62fa818b4701a9f2f10084b05957e4130573cdc 187414 
postfwd_1.20-1_all.deb
Files: 
 48c3ba7bf49cd124a673d17f666916ef 1107 mail optional postfwd_1.20-1.dsc
 94dc1531fe33f354a5e0b224d3752f33 202388 mail optional postfwd_1.20.orig.tar.gz
 67d35fda0099c83aa67091357209abfc 8743 mail optional postfwd_1.20-1.diff.gz
 90fb9f9622cd08c9f6f46aff2edbc83e 187414 mail optional postfwd_1.20-1_all.deb

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

iD8DBQFNU5aw9u6Dud+QFyQRApbgAJ4y+mG2q1eSP3sx+Ag1uNFg1uy/6gCgvwVJ
qkyz7xlhB5s6sf9qS3dnG60=
=7H0+
-END PGP SIGNATURE-


Accepted:
postfwd_1.20-1.diff.gz
  to main/p/postfwd/postfwd_1.20-1.diff.gz
postfwd_1.20-1.dsc
  to main/p/postfwd/postfwd_1.20-1.dsc
postfwd_1.20-1_all.deb
  to main/p/postfwd/postfwd_1.20-1_all.deb
postfwd_1.20.orig.tar.gz
  to main/p/postfwd/postfwd_1.20.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/e1pns2j-pp...@franck.debian.org



Accepted libreoffice-voikko 3.1.2+svn20100205-1 (source i386)

2011-02-10 Thread Timo Jyrinki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 06 Feb 2011 15:00:46 +0200
Source: libreoffice-voikko
Binary: libreoffice-voikko
Architecture: source i386
Version: 3.1.2+svn20100205-1
Distribution: experimental
Urgency: low
Maintainer: Timo Jyrinki t...@debian.org
Changed-By: Timo Jyrinki t...@debian.org
Description: 
 libreoffice-voikko - Finnish language tools for LibreOffice
Closes: 612077
Changes: 
 libreoffice-voikko (3.1.2+svn20100205-1) experimental; urgency=low
 .
   * New upstream snapshot (Closes: #612077)
   * Switch from openoffice.org-voikko to libreoffice-voikko
   * Change installation to LO 3.3 style
   * Update Standards-Version to 3.9.1
   * Increast debhelper dependency to 7
Checksums-Sha1: 
 d9fdb397a93061fc6e49d0698e494a7b73c5c3f9 1232 
libreoffice-voikko_3.1.2+svn20100205-1.dsc
 bb19f82ac6d8bc99b1bc94869f0f9fc63c438c50 70379 
libreoffice-voikko_3.1.2+svn20100205.orig.tar.gz
 f968b9f1d2a96b22dbe7df9b7de8ca27409d6e5f 4860 
libreoffice-voikko_3.1.2+svn20100205-1.debian.tar.gz
 11a1a93aaa1aa68f6a5ae7013cc9e2b66fa8123d 70220 
libreoffice-voikko_3.1.2+svn20100205-1_i386.deb
Checksums-Sha256: 
 4130596e9df1807669e3b9d31060867a50dabf01b51a23246e39e18c3d3ae4fc 1232 
libreoffice-voikko_3.1.2+svn20100205-1.dsc
 7711d214261ae9a496802562d5ff28d7b21aab4b0d922497ce24a5961401aae3 70379 
libreoffice-voikko_3.1.2+svn20100205.orig.tar.gz
 a2d1e3e14fea97e00f418233ba6559d38d2ec1e7e7a9fa1d85584378a0577340 4860 
libreoffice-voikko_3.1.2+svn20100205-1.debian.tar.gz
 a681457996d7b16979e97e8070e20fc23f755b15f682413b857db374d38d5fdc 70220 
libreoffice-voikko_3.1.2+svn20100205-1_i386.deb
Files: 
 ccd42a09f52e8e80ce275f4230cc4b88 1232 text optional 
libreoffice-voikko_3.1.2+svn20100205-1.dsc
 8f75e71f680244893d3663bbb34aa06f 70379 text optional 
libreoffice-voikko_3.1.2+svn20100205.orig.tar.gz
 6e5b379de5c61d496a9ea0959cd557bd 4860 text optional 
libreoffice-voikko_3.1.2+svn20100205-1.debian.tar.gz
 824e7948dc835a0ef9c4b92d1d06811f 70220 text optional 
libreoffice-voikko_3.1.2+svn20100205-1_i386.deb

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

iEYEARECAAYFAk1Om7EACgkQgtffbfx/bQ8QPQCdFtLCXTNfv0N6m7+17xH6Cx92
EosAnirND6qX83ZlPk6NMqKnidf3LY2r
=XYmk
-END PGP SIGNATURE-


Accepted:
libreoffice-voikko_3.1.2+svn20100205-1.debian.tar.gz
  to 
main/libr/libreoffice-voikko/libreoffice-voikko_3.1.2+svn20100205-1.debian.tar.gz
libreoffice-voikko_3.1.2+svn20100205-1.dsc
  to main/libr/libreoffice-voikko/libreoffice-voikko_3.1.2+svn20100205-1.dsc
libreoffice-voikko_3.1.2+svn20100205-1_i386.deb
  to 
main/libr/libreoffice-voikko/libreoffice-voikko_3.1.2+svn20100205-1_i386.deb
libreoffice-voikko_3.1.2+svn20100205.orig.tar.gz
  to 
main/libr/libreoffice-voikko/libreoffice-voikko_3.1.2+svn20100205.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/e1pnvhr-0007bc...@franck.debian.org



Accepted libreoffice-voikko 3.1.2+svn20110205-1 (source i386)

2011-02-10 Thread Timo Jyrinki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 08 Feb 2011 08:28:13 +0200
Source: libreoffice-voikko
Binary: libreoffice-voikko
Architecture: source i386
Version: 3.1.2+svn20110205-1
Distribution: unstable
Urgency: low
Maintainer: Timo Jyrinki t...@debian.org
Changed-By: Timo Jyrinki t...@debian.org
Description: 
 libreoffice-voikko - Finnish language tools for LibreOffice
Changes: 
 libreoffice-voikko (3.1.2+svn20110205-1) unstable; urgency=low
 .
   * Fix off-by-one in version number and ITP bug number
   * Upload to unstable, since libreoffice was also uploaded
Checksums-Sha1: 
 c74e3f0dbdbeefbd78653090ba8f3cd3130c93e3 1232 
libreoffice-voikko_3.1.2+svn20110205-1.dsc
 849f9b9af0ebc1047a64685b6d42d5729133b77b 70378 
libreoffice-voikko_3.1.2+svn20110205.orig.tar.gz
 4370af444d93366efb9180090235e478d07981fd 4977 
libreoffice-voikko_3.1.2+svn20110205-1.debian.tar.gz
 95ef0aa90723b5a8d174d1fde08a11e4aeb300c9 70294 
libreoffice-voikko_3.1.2+svn20110205-1_i386.deb
Checksums-Sha256: 
 a803346424f2e318543bd1749a712c83a3337ff04226214b816f308fa8ee17c3 1232 
libreoffice-voikko_3.1.2+svn20110205-1.dsc
 1b63cd91d9f62c2a5dfce2460290bf6e798c07c387fa3a5ad76f4fd9b3f6b2ef 70378 
libreoffice-voikko_3.1.2+svn20110205.orig.tar.gz
 d1f1c53a12826c352dee1173f806cbdd09abdde52d2affb5a2ebb8f8dd6996cc 4977 
libreoffice-voikko_3.1.2+svn20110205-1.debian.tar.gz
 a2113321eac703e9633f73ce859fd55c3866ab54d6241f2f5c55c60a2dcbe0a2 70294 
libreoffice-voikko_3.1.2+svn20110205-1_i386.deb
Files: 
 a8ff736ad63e2f3225035f2ea29d9cf2 1232 text optional 
libreoffice-voikko_3.1.2+svn20110205-1.dsc
 92ef6eb09647a11544c4b540fa77852c 70378 text optional 
libreoffice-voikko_3.1.2+svn20110205.orig.tar.gz
 36fdcb7133dfe5b80b38ef08796ae765 4977 text optional 
libreoffice-voikko_3.1.2+svn20110205-1.debian.tar.gz
 62ae831dabed602c28f84b50035610db 70294 text optional 
libreoffice-voikko_3.1.2+svn20110205-1_i386.deb

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

iEYEARECAAYFAk1Q4wcACgkQgtffbfx/bQ+a+wCfdfaqqA0bMOngokLwCke240e1
R7MAn3MaIEernvcasXtnFdFe3px2mYU3
=jJ29
-END PGP SIGNATURE-


Accepted:
libreoffice-voikko_3.1.2+svn20110205-1.debian.tar.gz
  to 
main/libr/libreoffice-voikko/libreoffice-voikko_3.1.2+svn20110205-1.debian.tar.gz
libreoffice-voikko_3.1.2+svn20110205-1.dsc
  to main/libr/libreoffice-voikko/libreoffice-voikko_3.1.2+svn20110205-1.dsc
libreoffice-voikko_3.1.2+svn20110205-1_i386.deb
  to 
main/libr/libreoffice-voikko/libreoffice-voikko_3.1.2+svn20110205-1_i386.deb
libreoffice-voikko_3.1.2+svn20110205.orig.tar.gz
  to 
main/libr/libreoffice-voikko/libreoffice-voikko_3.1.2+svn20110205.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/e1pnvhf-0007fy...@franck.debian.org



Accepted bluez-hcidump 2.0-2 (source amd64)

2011-02-10 Thread Nobuhiro Iwamatsu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 18:46:19 +0900
Source: bluez-hcidump
Binary: bluez-hcidump
Architecture: source amd64
Version: 2.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Bluetooth Maintainers 
pkg-bluetooth-maintain...@lists.alioth.debian.org
Changed-By: Nobuhiro Iwamatsu iwama...@debian.org
Description: 
 bluez-hcidump - Analyses Bluetooth HCI packets
Changes: 
 bluez-hcidump (2.0-2) unstable; urgency=low
 .
   * Upload to unstable.
Checksums-Sha1: 
 981945e54189b735d0053a5b09c6abba4623ac16 1357 bluez-hcidump_2.0-2.dsc
 bd8891eec4682010a71811374469928452acfd51 3133 bluez-hcidump_2.0-2.diff.gz
 2497210e8ef44d8882c43f7ac07e560a468758b5 88786 bluez-hcidump_2.0-2_amd64.deb
Checksums-Sha256: 
 a3b4f852352dea490515eb1d9a2f693764d3327cc25fb2f1dbf7ea3c19dbe5fb 1357 
bluez-hcidump_2.0-2.dsc
 879824a0b8f7be2101f6f08ac2c1b502d7420aaac959de32bc52f4b8986fcf01 3133 
bluez-hcidump_2.0-2.diff.gz
 39c209353b264653adadfc36e11f3c5772759e76d90f619254c745804d598de6 88786 
bluez-hcidump_2.0-2_amd64.deb
Files: 
 9180027e223bde95fd6d80bc9e9ee43e 1357 admin extra bluez-hcidump_2.0-2.dsc
 f5e7c0808ca2d3c168cfcab1e62bca3e 3133 admin extra bluez-hcidump_2.0-2.diff.gz
 b8ca436e7aabbf3b2bb066a9766b2106 88786 admin extra 
bluez-hcidump_2.0-2_amd64.deb

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

iEYEARECAAYFAk1TteMACgkQQSHHQzFw6+lOtACgpayxsD+D4Sh0IaC9SVUMZDfp
n5UAnj/HpEHOsiUf1nb/HLXpW8krssvj
=s8kz
-END PGP SIGNATURE-


Accepted:
bluez-hcidump_2.0-2.diff.gz
  to main/b/bluez-hcidump/bluez-hcidump_2.0-2.diff.gz
bluez-hcidump_2.0-2.dsc
  to main/b/bluez-hcidump/bluez-hcidump_2.0-2.dsc
bluez-hcidump_2.0-2_amd64.deb
  to main/b/bluez-hcidump/bluez-hcidump_2.0-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/e1pnvk6-0007pi...@franck.debian.org



Accepted codelite 2.8.0.4537~dfsg-2 (source amd64)

2011-02-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 09:42:05 +0100
Source: codelite
Binary: codelite codelite-plugins
Architecture: source amd64
Version: 2.8.0.4537~dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Alessio Treglia ales...@debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 codelite   - Powerful and lightweight C/C++ IDE
 codelite-plugins - Powerful and lightweight C/C++ IDE - plugins
Changes: 
 codelite (2.8.0.4537~dfsg-2) unstable; urgency=low
 .
   * Upload to unstable.
   * Patches have been forwarded.
   * Update debian/gbp.conf.
Checksums-Sha1: 
 9b8b90dc1122b0d5a28ad9194838d1f9197c6d81 1303 codelite_2.8.0.4537~dfsg-2.dsc
 c7d80db094fd9a0407ba6d8d276c0f52de52e2d3 16595 
codelite_2.8.0.4537~dfsg-2.debian.tar.gz
 3558fb558e5b2e12f0b2bfec6b8194e3c5441781 3675940 
codelite_2.8.0.4537~dfsg-2_amd64.deb
 c22c789575c704a8aa422cc0803b063eee6ec442 1450364 
codelite-plugins_2.8.0.4537~dfsg-2_amd64.deb
Checksums-Sha256: 
 c8c35522ba3d13f3a652b9046521e74c25d2ef3f0312fcbdab1e24637febf920 1303 
codelite_2.8.0.4537~dfsg-2.dsc
 208a5078c777bad0067739e80af39c832e413342f6bbfd91e229d53b6faa421c 16595 
codelite_2.8.0.4537~dfsg-2.debian.tar.gz
 a4529f68fc59c9522552f8e15e68ee50c70178a09fd08b816b3a2de1ad743736 3675940 
codelite_2.8.0.4537~dfsg-2_amd64.deb
 aea6a33876934987570430f46664bf40d31115cba0cf85b0b44eb6042fb8aa8c 1450364 
codelite-plugins_2.8.0.4537~dfsg-2_amd64.deb
Files: 
 f8cacacd7379de3f469b940694784a08 1303 devel optional 
codelite_2.8.0.4537~dfsg-2.dsc
 893f902fd92f1701e74df0cd64fa74fa 16595 devel optional 
codelite_2.8.0.4537~dfsg-2.debian.tar.gz
 02eca04767e0ee0028a97efe54f83eea 3675940 devel optional 
codelite_2.8.0.4537~dfsg-2_amd64.deb
 258e52a8b5da71dc1dc0ba7da0a5d2a8 1450364 devel optional 
codelite-plugins_2.8.0.4537~dfsg-2_amd64.deb

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

iEUEARECAAYFAk1TrLoACgkQRdSMfNz8P9BDjQCXb5LUmBMrV9DWWtw3vIUb5eFj
OwCfRW16ubv9QSOUVwmrlAaSkLctfwQ=
=5fnk
-END PGP SIGNATURE-


Accepted:
codelite-plugins_2.8.0.4537~dfsg-2_amd64.deb
  to main/c/codelite/codelite-plugins_2.8.0.4537~dfsg-2_amd64.deb
codelite_2.8.0.4537~dfsg-2.debian.tar.gz
  to main/c/codelite/codelite_2.8.0.4537~dfsg-2.debian.tar.gz
codelite_2.8.0.4537~dfsg-2.dsc
  to main/c/codelite/codelite_2.8.0.4537~dfsg-2.dsc
codelite_2.8.0.4537~dfsg-2_amd64.deb
  to main/c/codelite/codelite_2.8.0.4537~dfsg-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/e1pnvlx-0007j1...@franck.debian.org



Accepted gmerlin-encoders 1.0.0-2 (source amd64)

2011-02-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 09:23:50 +0100
Source: gmerlin-encoders
Binary: gmerlin-encoders-ffmpeg gmerlin-encoders-good
Architecture: source amd64
Version: 1.0.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 gmerlin-encoders-ffmpeg - ffmpeg encoders for Gmerlin
 gmerlin-encoders-good - patent-free encoders for Gmerlin
Changes: 
 gmerlin-encoders (1.0.0-2) unstable; urgency=low
 .
   * Upload to unstable.
Checksums-Sha1: 
 f809296c0c6723451eef0113ae0df52fd0a481b5 1692 gmerlin-encoders_1.0.0-2.dsc
 eeeac11422f0d8a4ab3d1691433f4ab8feab6c51 5860 
gmerlin-encoders_1.0.0-2.debian.tar.gz
 b15e4609d1c029fd6090ba5c21b5691505961754 70724 
gmerlin-encoders-ffmpeg_1.0.0-2_amd64.deb
 a4817db2c6166653b3bb5917347ba00510a13034 90824 
gmerlin-encoders-good_1.0.0-2_amd64.deb
Checksums-Sha256: 
 dbd1c4991221557baf9a332ec1b1803c510a86949ac68bb58459be63d04844d1 1692 
gmerlin-encoders_1.0.0-2.dsc
 76d0c7dc2c797d1dfdecd0e1a6b1115034124949846189dccff7ac2a336c5f79 5860 
gmerlin-encoders_1.0.0-2.debian.tar.gz
 a8dd9d7c4dd95ee5c65b1993ef16d828216f5293a4da908937194de4af27e4fa 70724 
gmerlin-encoders-ffmpeg_1.0.0-2_amd64.deb
 88e6ad052f33252802176fb810a89c696a5afbdaa5930de808b095c8c6516a95 90824 
gmerlin-encoders-good_1.0.0-2_amd64.deb
Files: 
 c33035ea271bb124f9bde775a25d0c05 1692 libs extra gmerlin-encoders_1.0.0-2.dsc
 3322a71e0987abf213c983b9f4fa6065 5860 libs extra 
gmerlin-encoders_1.0.0-2.debian.tar.gz
 f730c0e3331b6f26b687e4f0c1a3d261 70724 libs extra 
gmerlin-encoders-ffmpeg_1.0.0-2_amd64.deb
 509a6871bda37fb6e81db218c2cd5a52 90824 libs extra 
gmerlin-encoders-good_1.0.0-2_amd64.deb

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

iEYEARECAAYFAk1TodMACgkQRdSMfNz8P9AwsACfaCbFexCSVvTzwqMDAHv32mw/
gN8An3fVjPEYRaLvQSVENBVUYG62D/Bm
=Zlam
-END PGP SIGNATURE-


Accepted:
gmerlin-encoders-ffmpeg_1.0.0-2_amd64.deb
  to main/g/gmerlin-encoders/gmerlin-encoders-ffmpeg_1.0.0-2_amd64.deb
gmerlin-encoders-good_1.0.0-2_amd64.deb
  to main/g/gmerlin-encoders/gmerlin-encoders-good_1.0.0-2_amd64.deb
gmerlin-encoders_1.0.0-2.debian.tar.gz
  to main/g/gmerlin-encoders/gmerlin-encoders_1.0.0-2.debian.tar.gz
gmerlin-encoders_1.0.0-2.dsc
  to main/g/gmerlin-encoders/gmerlin-encoders_1.0.0-2.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/e1pnvrq-0008gt...@franck.debian.org



Accepted gravitation 3+dfsg1-3 (source amd64)

2011-02-10 Thread Paul Wise
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 17:20:03 +0800
Source: gravitation
Binary: gravitation
Architecture: source amd64
Version: 3+dfsg1-3
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Paul Wise p...@debian.org
Description: 
 gravitation - game about mania, melancholia, and the creative process
Closes: 554744
Changes: 
 gravitation (3+dfsg1-3) unstable; urgency=low
 .
   * Link against pthread (Closes: #554744)
   * Switch to dpkg-source v3 format
   * Change the patch to use DEP-3 headers
   * Switch to debhelper dh rules.tiny style
   * Improve the generation of the orig.tar.gz
   * Keep upstream capitalization, add symlinks
   * Improve the menu files
   * Drop README.Debian, it is not useful to users
   * Build  use a large transparent icon from the MacOS icon  mask
   * Bump Standards-Version, no changes needed
Checksums-Sha1: 
 416673f6486c8ca95bd1554bc81774cbb9ba654d 1327 gravitation_3+dfsg1-3.dsc
 a05bc415cc6eecb74093880af1fd167f2bb02845 5890 
gravitation_3+dfsg1-3.debian.tar.gz
 e8e680404f4cc946336113ef808f190dd32142e0 70360 gravitation_3+dfsg1-3_amd64.deb
Checksums-Sha256: 
 6b06a2e6eb8e1dc51603ba3a410530c394d7d8f7f06f36f2e1801bfc4ca91715 1327 
gravitation_3+dfsg1-3.dsc
 d6b264ee5748c03e5ed662581a8e97062bd074d62748237eae492d1dc47a03ce 5890 
gravitation_3+dfsg1-3.debian.tar.gz
 74f62e7aba4340b953b03bef07f5710c0cab23130cbfb3fe52d28cb2eb87dcc8 70360 
gravitation_3+dfsg1-3_amd64.deb
Files: 
 d40a891fabecc451ffce9c1271a61766 1327 games extra gravitation_3+dfsg1-3.dsc
 c202c686b4ec047223cff00bc212803f 5890 games extra 
gravitation_3+dfsg1-3.debian.tar.gz
 ffe8d18980cf1bc70ed662a8b8dc7443 70360 games extra 
gravitation_3+dfsg1-3_amd64.deb

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

iEYEARECAAYFAk1Tr8wACgkQ5Sc9mGvjxCMJfwCgofFo2x0sSH22p2Ti3lT1j7fz
Q6wAnjaEoKBdKMafVYYeN3Hw6WX9u5/2
=Y7PN
-END PGP SIGNATURE-


Accepted:
gravitation_3+dfsg1-3.debian.tar.gz
  to main/g/gravitation/gravitation_3+dfsg1-3.debian.tar.gz
gravitation_3+dfsg1-3.dsc
  to main/g/gravitation/gravitation_3+dfsg1-3.dsc
gravitation_3+dfsg1-3_amd64.deb
  to main/g/gravitation/gravitation_3+dfsg1-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/e1pnvsy-x0...@franck.debian.org



Accepted gstreamer0.10-ffmpeg 0.10.11-4 (source amd64)

2011-02-10 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 10:24:42 +0100
Source: gstreamer0.10-ffmpeg
Binary: gstreamer0.10-ffmpeg gstreamer0.10-ffmpeg-dbg
Architecture: source amd64
Version: 0.10.11-4
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages 
pkg-gstreamer-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 gstreamer0.10-ffmpeg - FFmpeg plugin for GStreamer
 gstreamer0.10-ffmpeg-dbg - FFmpeg plugin for GStreamer (debug symbols)
Changes: 
 gstreamer0.10-ffmpeg (0.10.11-4) unstable; urgency=low
 .
   * debian/control:
 + Depend on libavcodec52 ( 5:0) | libavcodec-extra-52 ( 5:0)
   to allow usage of the ffmpeg-extra packages.
Checksums-Sha1: 
 3388714f853f9d2c4eb3adc11ff30612e33f07db 1726 
gstreamer0.10-ffmpeg_0.10.11-4.dsc
 4fb7cd693be9f0dd25bf93d60ca856f3325f 9953 
gstreamer0.10-ffmpeg_0.10.11-4.debian.tar.gz
 5de1700dc752ae2121a22670575705a96ca46fdb 173376 
gstreamer0.10-ffmpeg_0.10.11-4_amd64.deb
 c7ba907a3501896142c7f9dd24336cce1ff72ee2 331612 
gstreamer0.10-ffmpeg-dbg_0.10.11-4_amd64.deb
Checksums-Sha256: 
 705ddc9074adde5079a06b15fd6d3792d0a567fa7070ba9e7c9dda658ea27983 1726 
gstreamer0.10-ffmpeg_0.10.11-4.dsc
 3118fa3c0c23aa10d33b8db2851472cc829c6547fe76c038ca4048efc4e03eb3 9953 
gstreamer0.10-ffmpeg_0.10.11-4.debian.tar.gz
 3cd3880c830453f04f2b6742bf9634043d93d925344c1e2f61fc0755f8dc387b 173376 
gstreamer0.10-ffmpeg_0.10.11-4_amd64.deb
 05b092460902fe53a49319b009c83fccc46b5b57656d62ee99c93025757932cc 331612 
gstreamer0.10-ffmpeg-dbg_0.10.11-4_amd64.deb
Files: 
 ecdd23ff592d353cd776ab1dbda5e1bd 1726 libs optional 
gstreamer0.10-ffmpeg_0.10.11-4.dsc
 4cce07b066a018431db7c891161812e6 9953 libs optional 
gstreamer0.10-ffmpeg_0.10.11-4.debian.tar.gz
 934316a3207f8c03181503b79c543dc5 173376 libs optional 
gstreamer0.10-ffmpeg_0.10.11-4_amd64.deb
 a66b52831b0afedb5136777d33b6c3c3 331612 debug extra 
gstreamer0.10-ffmpeg-dbg_0.10.11-4_amd64.deb

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

iEUEARECAAYFAk1TsEwACgkQBsBdh1vkHyFclACfVBVOMTapfr8LkgsYXfiZSCsM
DhQAmPhFIxZKHBKPVS3dTbJ9j9Q2xfg=
=oFb6
-END PGP SIGNATURE-


Accepted:
gstreamer0.10-ffmpeg-dbg_0.10.11-4_amd64.deb
  to main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg-dbg_0.10.11-4_amd64.deb
gstreamer0.10-ffmpeg_0.10.11-4.debian.tar.gz
  to main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.11-4.debian.tar.gz
gstreamer0.10-ffmpeg_0.10.11-4.dsc
  to main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.11-4.dsc
gstreamer0.10-ffmpeg_0.10.11-4_amd64.deb
  to main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.11-4_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/e1pnvti-00011f...@franck.debian.org



Accepted gwibber 2.91.2-2 (source all)

2011-02-10 Thread Kartik Mistry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 08:59:10 +0530
Source: gwibber
Binary: gwibber gwibber-service gwibber-service-facebook 
gwibber-service-twitter gwibber-service-identica gwibber-service-flickr 
gwibber-service-digg gwibber-service-buzz gwibber-service-statusnet 
gwibber-service-foursquare gwibber-service-friendfeed gwibber-service-pingfm 
gwibber-service-qaiku gwibber-themes
Architecture: source all
Version: 2.91.2-2
Distribution: unstable
Urgency: low
Maintainer: Kartik Mistry kar...@debian.org
Changed-By: Kartik Mistry kar...@debian.org
Description: 
 gwibber- Open source social networking client for GNOME (client)
 gwibber-service - Open source social networking client for GNOME (service)
 gwibber-service-buzz - Buzz plugin for Gwibber
 gwibber-service-digg - Digg plugin for Gwibber
 gwibber-service-facebook - Facebook plugin for Gwibber
 gwibber-service-flickr - Flickr plugin for Gwibber
 gwibber-service-foursquare - Foursquare plugin for Gwibber
 gwibber-service-friendfeed - Friendfeed plugin for Gwibber
 gwibber-service-identica - Identi.ca plugin for Gwibber
 gwibber-service-pingfm - pingfm plugin for Gwibber
 gwibber-service-qaiku - Qaiku plugin for Gwibber
 gwibber-service-statusnet - Status.Net plugin for Gwibber
 gwibber-service-twitter - Twitter plugin for Gwibber
 gwibber-themes - Open source social networking client for GNOME (Themes)
Changes: 
 gwibber (2.91.2-2) unstable; urgency=low
 .
   * Synced with Ubuntu package
   * debian/control:
 + Added suggests for gwibber-service-statusnet, gwibber-service-foursquare,
   gwibber-service-friendfeed, gwibber-service-pingfm, 
gwibber-service-qaiku,
   gwibber-service-flickr, gwibber-service-digg
 + Bumped cdbs dependency to use dh_scour
   * debian/rules:
 + Override dh_scour args to prevent losing the gradient in the icon
Checksums-Sha1: 
 0de0b973d260dc403eca2148e59f5cacf377b5c3 1444 gwibber_2.91.2-2.dsc
 f3c59847171a66920cb1c6a863dff18f5cd12110 26517 gwibber_2.91.2-2.debian.tar.gz
 5ab2abcb41c72682f639f39091514d89e274c752 293696 gwibber_2.91.2-2_all.deb
 245b5910eb46523f69e1552e16af5c052d3cf1d4 66470 gwibber-service_2.91.2-2_all.deb
 2473d2a88b6c6384fe0770bf0f0ad50594424ad9 26534 
gwibber-service-facebook_2.91.2-2_all.deb
 f57178b8942187b0993659ebdb8801a824a31748 26780 
gwibber-service-twitter_2.91.2-2_all.deb
 a5feeda553d1e9316a7908ec4f400fb0ac24956c 26658 
gwibber-service-identica_2.91.2-2_all.deb
 ba13bc46d52346fa5a606871301f92255b177b1c 24046 
gwibber-service-flickr_2.91.2-2_all.deb
 a1527ac23bc7729fcf840ac79f7f0407907b3006 23886 
gwibber-service-digg_2.91.2-2_all.deb
 9e88ddc5061bab98e08b40a313339354cdc4e421 28996 
gwibber-service-buzz_2.91.2-2_all.deb
 bbc87c2b0032c78d4d52cf46c39f9d5bc9d6f025 27042 
gwibber-service-statusnet_2.91.2-2_all.deb
 b6af72634807e5583f3c743d779d8d9cf74d2aab 34408 
gwibber-service-foursquare_2.91.2-2_all.deb
 51b3fefe6f566bac4a45f518430380f0d4877640 24454 
gwibber-service-friendfeed_2.91.2-2_all.deb
 f73414682babc084d2d28f5c0be1762e0ccae975 23532 
gwibber-service-pingfm_2.91.2-2_all.deb
 bc701204d07b600661df6f66bdbdf9a0725361aa 24374 
gwibber-service-qaiku_2.91.2-2_all.deb
 261868d46a7812ebd2c5df4639157758675fef5b 26308 gwibber-themes_2.91.2-2_all.deb
Checksums-Sha256: 
 f90c18ddfff899cb48fb49db3bb47598f756d33b16ce58a4a72cd16477ea7d6e 1444 
gwibber_2.91.2-2.dsc
 cdcd7a11782e6130ae0c9e556c1e1d4470c4748dc5aac71e04b0acf32d49815b 26517 
gwibber_2.91.2-2.debian.tar.gz
 b5710b2870c9705196c6aa8397fbed29ba6980c564060cc190f42dbbef85 293696 
gwibber_2.91.2-2_all.deb
 899d2402515ea0d26e8783aefa79900c0f36bf13d3776e1998af98ed58fe8ebe 66470 
gwibber-service_2.91.2-2_all.deb
 8ab4a4339e4ead16621da94a7b55a139e002d5f56ba952197061315bbc65603e 26534 
gwibber-service-facebook_2.91.2-2_all.deb
 23ca41fa193fffd6401afa1033b089befab5320ccfa16da86f8699c281c2142e 26780 
gwibber-service-twitter_2.91.2-2_all.deb
 2dcca9e8801749fd0d7549065f62d25da8ac85180948040813291cc71119a622 26658 
gwibber-service-identica_2.91.2-2_all.deb
 27c096749a983bad286b34eb6dd78d4bb187e057b5a65e514d28941275f7346e 24046 
gwibber-service-flickr_2.91.2-2_all.deb
 cc74e66828eed1a15440fcbfbb5488a347d53b21b111db992b0ae6dacc89f37d 23886 
gwibber-service-digg_2.91.2-2_all.deb
 bab7c64ca353b11a961071a2f6bf1f65ec44eb614c305571c5edcd6fb4dacbaf 28996 
gwibber-service-buzz_2.91.2-2_all.deb
 b61ad3a171118c5d12c1264a59492f6c98e8c98b6813162443bc35e917feec5e 27042 
gwibber-service-statusnet_2.91.2-2_all.deb
 03c9c7ebf929cf51f4d39968a5578fea1d87ed6cd01726380583eb2e2f312890 34408 
gwibber-service-foursquare_2.91.2-2_all.deb
 52dff7d7b1f6155b86b965ab709a8f9c67fb6c50721b1c024d37870c31d05d1d 24454 
gwibber-service-friendfeed_2.91.2-2_all.deb
 401ada5e6735c311297d8a5006513052f501f4eaf7c3056c137311985358b169 23532 
gwibber-service-pingfm_2.91.2-2_all.deb
 b35e17b68c79e0a25c683538aba63b92441596828aeea4ad55e181c5217a1a5d 24374 
gwibber-service-qaiku_2.91.2-2_all.deb
 

Accepted ipsec-tools 1:0.7.3-15 (source i386)

2011-02-10 Thread Stefan Bauer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 11:11:53 +0100
Source: ipsec-tools
Binary: ipsec-tools racoon
Architecture: source i386
Version: 1:0.7.3-15
Distribution: experimental
Urgency: low
Maintainer: Stefan Bauer stefan.ba...@cubewerk.de
Changed-By: Stefan Bauer stefan.ba...@cubewerk.de
Description: 
 ipsec-tools - IPsec tools for Linux
 racoon - IPsec IKE keying daemon
Closes: 612448 612676
Changes: 
 ipsec-tools (1:0.7.3-15) experimental; urgency=low
 .
   * Fix build problems on *bsd (Closes: #612676)
   * Include configuration example to tunnel with OpenBSD (Closes: #612448)
 Thanks to Mats Erik Andersson
Checksums-Sha1: 
 7ee4c1e53ced73c7d6ce150cfa2017a48601629b 1826 ipsec-tools_0.7.3-15.dsc
 33ba008ca58cb9b4aeb34cb4ce9902805906689c 164377 
ipsec-tools_0.7.3-15.debian.tar.gz
 aaf24efc656eb8acb3be4fb30755ec764d79323a 82826 ipsec-tools_0.7.3-15_i386.deb
 ac199ea6bf6f895faea0da85559efd5924681e98 384662 racoon_0.7.3-15_i386.deb
Checksums-Sha256: 
 c9be76fa20b4d86a25d5b281465c97bff900513fb550e38778cb851d1761a795 1826 
ipsec-tools_0.7.3-15.dsc
 51c02fe5fc304569b338bac971c1a19b7838ec4dd87a1402d03209c92b2e0658 164377 
ipsec-tools_0.7.3-15.debian.tar.gz
 8b9c09c36906bd754792421624f9a2bfdbb738df73f7f7a1cb2700301944bfdc 82826 
ipsec-tools_0.7.3-15_i386.deb
 9171c47670d7694ba957b30b230111d6c6d8e38a16d319af6b0bb53568a9b076 384662 
racoon_0.7.3-15_i386.deb
Files: 
 381709336c22e2cee6e025b9950f6dcd 1826 net extra ipsec-tools_0.7.3-15.dsc
 0651f776ff84ef1c3656ca4cd411870a 164377 net extra 
ipsec-tools_0.7.3-15.debian.tar.gz
 f3bef193c24236fed5ca4a5d180f428c 82826 net extra ipsec-tools_0.7.3-15_i386.deb
 954fe90a1e000dfe4c56595b86a92c03 384662 net extra racoon_0.7.3-15_i386.deb

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

iQIcBAEBCAAGBQJNU7/mAAoJEGvKetR568TsNGgQALPuLoCckJHTq8FZFnlaHTEx
Kw2FB6hO9CRnOY0NTEy0wUNrkBGi/0sIgYJMLBJxkUs27EdMFvcUCdgoUSlILZyP
RMYu5uF1ZZzE0Z6kQwgEwprrsJD4w+4lH3dkLM/GXjbeZsIyg5ougNeZCmUQDH50
UFTYj7fiyO4dcyLIn7B6InexrjJdB8/9D7NlZpMrJVU0uYrjuCvFDUGDz9h0GwJM
9HcdVvGz/Bi1KkZQ77Ra9+v5VRxle6kPLnfyMhDsivO8BrhlrObq65kR5ZS2zz+/
nEemSKg7jDLizmc8Fovj9GZVv7qy0sOyidne912CtVbqEpyupxw0iewB4B5XisC3
3pU/OUkNvQKstgDvehFTpKQ10nhdML8oHrgGc+g+R3jmDwm3ubyH+bxAHUuTdrVB
bFwARouj8DIPqnhdUce1u+mm2SA7jmv1gU3edGuq+Pkh8Kcm0uOCc7oJzlxPvo+u
IawnqTgVnPsgsL6dImi4P0VPr3ImX+PlGbkPj5WMIhOwR5a+Ak8ChN9ghexJ3C2P
OiD3H/kJpf6RUS5S/VfbXm2vwHPDBP6mywxH3MbAkmUy7BmxtJwrd27XKW3/2Gtv
VvQNHRB0CC1Gjtse/s8YcjsuNDZtIJki9yzxzR7/v6bJi9QwdS3vXZe2mz1YNDRX
08Sd+q2DHNRtj28SZVpl
=/UjB
-END PGP SIGNATURE-


Accepted:
ipsec-tools_0.7.3-15.debian.tar.gz
  to main/i/ipsec-tools/ipsec-tools_0.7.3-15.debian.tar.gz
ipsec-tools_0.7.3-15.dsc
  to main/i/ipsec-tools/ipsec-tools_0.7.3-15.dsc
ipsec-tools_0.7.3-15_i386.deb
  to main/i/ipsec-tools/ipsec-tools_0.7.3-15_i386.deb
racoon_0.7.3-15_i386.deb
  to main/i/ipsec-tools/racoon_0.7.3-15_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/e1pnvvv-0001tr...@franck.debian.org



Accepted libgpod 0.7.95-2 (source all amd64)

2011-02-10 Thread Chow Loong Jin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 01:45:54 +0800
Source: libgpod
Binary: libgpod-nogtk-dev libgpod4-nogtk libgpod-dev libgpod4 libgpod-common 
libgpod-doc python-gpod libgpod-cil libgpod-cil-dev
Architecture: source amd64 all
Version: 0.7.95-2
Distribution: unstable
Urgency: low
Maintainer: gtkpod Maintainers pkg-gtkpod-de...@lists.alioth.debian.org
Changed-By: Chow Loong Jin hyper...@ubuntu.com
Description: 
 libgpod-cil - CLI bindings for libgpod
 libgpod-cil-dev - CLI bindings for libgpod -- development files
 libgpod-common - common files for libgpod
 libgpod-dev - development files for libgpod
 libgpod-doc - documentation for libgpod
 libgpod-nogtk-dev - development files for libgpod (version without artwork 
support)
 libgpod4   - library to read and write songs and artwork to an iPod
 libgpod4-nogtk - library to read and write songs to an iPod
 python-gpod - Python bindings for libgpod
Changes: 
 libgpod (0.7.95-2) unstable; urgency=low
 .
   * Reupload to sid
Checksums-Sha1: 
 33cf64c1ad4778e6a350d379eb547e83c12ebf7f 2154 libgpod_0.7.95-2.dsc
 da6565ff6ddb40dbc96332de8f42f840db08eb64 16528 libgpod_0.7.95-2.debian.tar.gz
 1e05cc7c70978dd48afcf6057639ac521431674b 149850 
libgpod-nogtk-dev_0.7.95-2_amd64.deb
 3c0dd3a375db29ad60efa3e1d7703336d063515a 163772 
libgpod4-nogtk_0.7.95-2_amd64.deb
 2d7cb00d890ba40f6263b6b776ec2507745361fd 264388 libgpod-dev_0.7.95-2_amd64.deb
 bd5caf6720d4c0a93c1f148deb1f8c0300722ef0 271914 libgpod4_0.7.95-2_amd64.deb
 db22c10b5cc899c1154a7fb2a25a256e6f72d1dc 109538 
libgpod-common_0.7.95-2_amd64.deb
 68c0ae37378c777c452749e95939ea2882cfcb7f 143272 libgpod-doc_0.7.95-2_all.deb
 72aa2829387a632a7acc792ab29c466e83f463f1 298746 python-gpod_0.7.95-2_amd64.deb
 363d0838916b8098863ff13e120cc5a62a487f48 68042 libgpod-cil_0.7.95-2_all.deb
 6e9fedc2ab3592aa009195b1af5babf3d155723e 51140 libgpod-cil-dev_0.7.95-2_all.deb
Checksums-Sha256: 
 ca29f45f17fc4eaf4f166f0ee0b3f91ad69148461a8507abffd02c9795c4261c 2154 
libgpod_0.7.95-2.dsc
 b305b914e321c528ee4fd2bcde701ce512078027afc10302dc5cb7a4bf645399 16528 
libgpod_0.7.95-2.debian.tar.gz
 48975e141b60c63d605956cf3c14d01b511fd56e535e0cb6a9e4981a9b2ff829 149850 
libgpod-nogtk-dev_0.7.95-2_amd64.deb
 a7dd0d39b02f50adb34ecc825edac6c2de94049596b49286c04fa93aabd36f8b 163772 
libgpod4-nogtk_0.7.95-2_amd64.deb
 66eb84fc88d42287cc1dd9d857ee82da887d7ac1a5bf710580203ce213b13b44 264388 
libgpod-dev_0.7.95-2_amd64.deb
 f4b9b0a783176ae6a3099357319de3a61b7b017a7a70e7bd7a8589775515ac3b 271914 
libgpod4_0.7.95-2_amd64.deb
 677a08e9b6f5bf7479ea675aeedd9ecf89f7d8ac5141a58e85e08d2cb95fd577 109538 
libgpod-common_0.7.95-2_amd64.deb
 cf166ecf1ef07684a5e76622355853a9a93ef80b89688083eaea96be445994c1 143272 
libgpod-doc_0.7.95-2_all.deb
 d8ff05724df5667d74c392f4015d00681f3653bf2bfdcbea86e274f7c16e67ef 298746 
python-gpod_0.7.95-2_amd64.deb
 4204df9340a48e47cefbfe1f741106f255968c695e8a867ca2cb59a12673f1c4 68042 
libgpod-cil_0.7.95-2_all.deb
 fa6d45b37f11ead15a3518cad3e0ed2b24cd232d1357231f53992b75d8b62142 51140 
libgpod-cil-dev_0.7.95-2_all.deb
Files: 
 ced0916e9ba083e0b514a9fc22583887 2154 libs optional libgpod_0.7.95-2.dsc
 c079677b44509c00828c214a7a19b23d 16528 libs optional 
libgpod_0.7.95-2.debian.tar.gz
 000321b65d3f31a89fa8883b446b7ad2 149850 libdevel extra 
libgpod-nogtk-dev_0.7.95-2_amd64.deb
 3b0e5420d66bbb6f2302b5b4439adcff 163772 libs extra 
libgpod4-nogtk_0.7.95-2_amd64.deb
 7a9611dc6cec5f06796aaba1392ffcc1 264388 libdevel optional 
libgpod-dev_0.7.95-2_amd64.deb
 c6435c82d93af85200e522601aeb43de 271914 libs optional 
libgpod4_0.7.95-2_amd64.deb
 60d129bade411ee90950faa4affb7745 109538 libs optional 
libgpod-common_0.7.95-2_amd64.deb
 368ad4467145aaba07fddf40702b1e06 143272 doc optional 
libgpod-doc_0.7.95-2_all.deb
 14772fba576b4c88a6c0323cbb582bad 298746 python optional 
python-gpod_0.7.95-2_amd64.deb
 47b70e380d22045e26e1bbf5472ecb1a 68042 cli-mono optional 
libgpod-cil_0.7.95-2_all.deb
 7e319f9d0af919a70be4f5e9e98ce40c 51140 libdevel optional 
libgpod-cil-dev_0.7.95-2_all.deb

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

iQEcBAEBAgAGBQJNU8hAAAoJEMkPnLkOH60MtjQIAI1ZmO8p+ZypnyqOruul4MZE
9m2ldTyqjk/aPYNjndmoA48iY+pfPcBevMsk5JZq0zdjEy3TWxGOWmKW8CluoxQw
eex2dMOhRwFRwZ5aR5n+ayvbnq91b03SdLZ0qZEeMKq2ZC1m8CrwIDIdiVMTW46C
6cgLId+HbRQlOCcp0ltAR+qzkNrQsor0JfE3JOAg8XY0clQQXfETXAWdDRw9eT5Y
VfrPmgXuI1NOR3Wdz6e2Udc8tuI0Qg876ELKmKlHHOsELCNhGi7mzDbVTyi/mXbJ
bvu1TiIdOlzcslRspQnNsi28EZjIbSHhSgmBhAcF4kP1xSACYldYKRxxl0tfa2E=
=xwAD
-END PGP SIGNATURE-


Accepted:
libgpod-cil-dev_0.7.95-2_all.deb
  to main/libg/libgpod/libgpod-cil-dev_0.7.95-2_all.deb
libgpod-cil_0.7.95-2_all.deb
  to main/libg/libgpod/libgpod-cil_0.7.95-2_all.deb
libgpod-common_0.7.95-2_amd64.deb
  to main/libg/libgpod/libgpod-common_0.7.95-2_amd64.deb
libgpod-dev_0.7.95-2_amd64.deb
  to main/libg/libgpod/libgpod-dev_0.7.95-2_amd64.deb
libgpod-doc_0.7.95-2_all.deb
  to main/libg/libgpod/libgpod-doc_0.7.95-2_all.deb

Accepted libmtp 1.0.5-1 (source all amd64)

2011-02-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 10:43:52 +0100
Source: libmtp
Binary: libmtp8 libmtp-dev libmtp-dbg libmtp-doc mtp-tools
Architecture: source all amd64
Version: 1.0.5-1
Distribution: unstable
Urgency: low
Maintainer: Alessio Treglia ales...@debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 libmtp-dbg - Media Transfer Protocol (MTP) debugging symbols
 libmtp-dev - Media Transfer Protocol (MTP) development files
 libmtp-doc - Media Transfer Protocol (MTP) library documentation
 libmtp8- Media Transfer Protocol (MTP) library
 mtp-tools  - Media Transfer Protocol (MTP) library tools
Changes: 
 libmtp (1.0.5-1) unstable; urgency=low
 .
   * Upload to unstable.
   * New upstream release:
 - soname libmtp.so.8.3.5
 - several fixes from Denis Dupeyron to ease work for maintainers:
   + ./configure --enable-doxygen: make Doxygen doc generation optional.
   + ./configure --with-udev=DIR: select a dir for udev.
   + ./configure --with-udev-rules=NAME: select name of udev rules file.
 - several mtp-probe fixes for udev use, now we only probe:
   + Devices that are of known classes to conatin MTP extensions:
 COMM, PTP, CUSTOM and per-interface.
   + Unless the device is CUSTOM, it needs to contain atleast one
 CUSTOM interface.
   + Clear halt on EP 0 after probe if it fails with error.
   + Stop accepting *all* PTP devices as MTP, this is confusing.
 - Minor fixes and new devices.
   * Don't build,install static libraries.
   * Pass --enable-doxygen to the configure script.
   * Refresh patches.
Checksums-Sha1: 
 00e412926497a36baddd3cb7cc17af9e388b3c72 1282 libmtp_1.0.5-1.dsc
 75878bbab18c06d800821dfb455fe022c8992aa0 614318 libmtp_1.0.5.orig.tar.gz
 421f2d237ce7120c04a86f4cbd7d08e31b0bea7e 18283 libmtp_1.0.5-1.debian.tar.gz
 4e2d9193d2d6a3b39e303d2cf7f4aca416a8f69f 62828 libmtp-dev_1.0.5-1_all.deb
 486c391eec84bed347d6b9d3837a18a6d391a20b 377310 libmtp-doc_1.0.5-1_all.deb
 61351597dabbd698c92bb60a00f2f37c8cb587e1 182972 libmtp8_1.0.5-1_amd64.deb
 c8dec45fd1f0ee78a3ce95488239745235a39339 248608 libmtp-dbg_1.0.5-1_amd64.deb
 87aca4f9378690a3bb21b0f9e184984e8e504cdd 95572 mtp-tools_1.0.5-1_amd64.deb
Checksums-Sha256: 
 3b88d402a857c10f8c404cbdc267726bb95e86121ef1b637017870484d4a4ef6 1282 
libmtp_1.0.5-1.dsc
 f55e80223e9abe07d44f260bed716dcc9c54a28e846fb4fb6cfc2054017418d8 614318 
libmtp_1.0.5.orig.tar.gz
 3aa6fd65871cb33b1244ec7a2610bee36cd081430d82e9420aef72bb82cc2eee 18283 
libmtp_1.0.5-1.debian.tar.gz
 645c4cd58616fa82e8f0ca8a09918bf056de0317a1139f839ae76adac091201f 62828 
libmtp-dev_1.0.5-1_all.deb
 35c5b6f647cd9df61123e8b727448755b17ff67fa11c423562301641e80e89dd 377310 
libmtp-doc_1.0.5-1_all.deb
 c22031d59092bd8b2a5eebab62b5ab8d69e6f85eed770dfd3be4abf0c4a6d6ee 182972 
libmtp8_1.0.5-1_amd64.deb
 073ffd7b378970e06f2824605517381c446e3c80b112a671afec549c05c6d0d2 248608 
libmtp-dbg_1.0.5-1_amd64.deb
 4a9f834c190697cb66925aa5bb635c3480186f4865619b61458cb7a8f565b0ac 95572 
mtp-tools_1.0.5-1_amd64.deb
Files: 
 b0adccc8cb61c682c379a522c58637e1 1282 libs optional libmtp_1.0.5-1.dsc
 20765c47ff696406bee9333a086a64cc 614318 libs optional libmtp_1.0.5.orig.tar.gz
 f13847723cceb5540dfeaeb4f1dbbf75 18283 libs optional 
libmtp_1.0.5-1.debian.tar.gz
 c99c67d5a34e8a08765fe65fc756ba94 62828 libdevel optional 
libmtp-dev_1.0.5-1_all.deb
 5d7f725a9ba79463dfa05b8e8fb80652 377310 doc optional libmtp-doc_1.0.5-1_all.deb
 2989118a43517bd09f6fcd8a95d18b78 182972 libs optional libmtp8_1.0.5-1_amd64.deb
 4ffc289fae5daf78d1c276589c7c6caa 248608 debug extra 
libmtp-dbg_1.0.5-1_amd64.deb
 b7898a4c9f8ed6a356286fe97c7fe237 95572 utils optional 
mtp-tools_1.0.5-1_amd64.deb

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

iEYEARECAAYFAk1TtNcACgkQRdSMfNz8P9DXxQCfcENmqzKwy/bHwpfPdSO5IHXf
qh4AnAiuVOg/dy6dWY8u/ADZ9ivYgwCG
=o2Jw
-END PGP SIGNATURE-


Accepted:
libmtp-dbg_1.0.5-1_amd64.deb
  to main/libm/libmtp/libmtp-dbg_1.0.5-1_amd64.deb
libmtp-dev_1.0.5-1_all.deb
  to main/libm/libmtp/libmtp-dev_1.0.5-1_all.deb
libmtp-doc_1.0.5-1_all.deb
  to main/libm/libmtp/libmtp-doc_1.0.5-1_all.deb
libmtp8_1.0.5-1_amd64.deb
  to main/libm/libmtp/libmtp8_1.0.5-1_amd64.deb
libmtp_1.0.5-1.debian.tar.gz
  to main/libm/libmtp/libmtp_1.0.5-1.debian.tar.gz
libmtp_1.0.5-1.dsc
  to main/libm/libmtp/libmtp_1.0.5-1.dsc
libmtp_1.0.5.orig.tar.gz
  to main/libm/libmtp/libmtp_1.0.5.orig.tar.gz
mtp-tools_1.0.5-1_amd64.deb
  to main/libm/libmtp/mtp-tools_1.0.5-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/e1pnvyv-00022r...@franck.debian.org



Accepted lua-json 1.2.1-1 (source all)

2011-02-10 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 10:34:12 +0100
Source: lua-json
Binary: liblua5.1-json
Architecture: source all
Version: 1.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Bernd Zeimetz b...@debian.org
Changed-By: Bernd Zeimetz b...@debian.org
Description: 
 liblua5.1-json - JSON decoder/encoder for Lua
Changes: 
 lua-json (1.2.1-1) unstable; urgency=low
 .
   * [9b2b474a] Fixing filenamemangle in watch file.
   * [cdacecf3] Merge branch 'upstream'
Checksums-Sha1: 
 efe108bd937aa315b593c31e3df68610a36ee2de 1758 lua-json_1.2.1-1.dsc
 7ca2dd21c028b16a60379483d039d39df9d2699b 36214 lua-json_1.2.1.orig.tar.gz
 b530aade9fc139e103e75c8c6945d110bd6c69f1 2159 lua-json_1.2.1-1.diff.gz
 bfc0bdbe15f98d57031f90f1dd9033f34bf4c59e 25280 liblua5.1-json_1.2.1-1_all.deb
Checksums-Sha256: 
 2edd7ef18168cc447785ce05a70ba7a52e433f57883ff1a0cd31be9aa9a8ad68 1758 
lua-json_1.2.1-1.dsc
 a1578c80328016244b7d184dcf8b963f685aae5ca747d8821552192bc78d1abd 36214 
lua-json_1.2.1.orig.tar.gz
 e300644bb20c1b151fdf3bf32d5e9c9155e47e1e56431670692acce1a5cbd1f0 2159 
lua-json_1.2.1-1.diff.gz
 d5e4b683335db4f4d2d405a941c3bd97d310dad0f84344915ddf49825faded99 25280 
liblua5.1-json_1.2.1-1_all.deb
Files: 
 9fa33533a567e3f421a9163b8a9bf8a8 1758 interpreters optional 
lua-json_1.2.1-1.dsc
 e8964ea844c2a709d9e17f36abad9341 36214 interpreters optional 
lua-json_1.2.1.orig.tar.gz
 d697d719f4219d122e11b7b863823090 2159 interpreters optional 
lua-json_1.2.1-1.diff.gz
 34069694f993906e02d5129f3798052d 25280 interpreters optional 
liblua5.1-json_1.2.1-1_all.deb

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

iQIcBAEBCAAGBQJNU8rMAAoJEOs2Fxpv+UNfDy0P/jCxUYapbwI0WcBvIRcvuZ4Y
8il6R9v3hn9ccajX4dX8D414SfFALa4xV657TimKVpQC4kCM7YhBWzIyqB5Vln1Q
SmiVSi1A2KTZnrM+O3/hPcHhLB0ovTPL59AokJvyV9RaFtw3s9afD7iJJwwoB55o
5peXK4XoO+dBKVZnl6rdrrlkombuy/VQ5aeyTrG4bvsQk0PbAp4hrp0AdMEqzVXJ
Ix7E7wDGg0pCIGKnG1xN320kzM1zXZU5ssyF9VzJFzKwDIWklyCy4fyvQyrxG9cw
GodmzjdtUpse7hv9R8V9C2rd0fk7P2VjW5xodc5YbiseKrRoOD1jTCe39dfFYX+f
5z2mlsdsDBS9EpXKbsY5FEr6nVnaxQZWnX+NqJgo1AsufUs7NnLXbQ0AVx5+5I/z
cGEAL43SCnq4xIYNGGhv11AwCpfNsbxwXMDdFwwV4fFpboiqGqm2GNzByybS5z5t
ASP2lFAzANWukfjpwfUkT8v0ox2YnU7/JWI321v1n3UOTZsPqiOvq73mgUiWSoRV
vwEAaJjS2bNYfDLcnHGyfElJkfmiGgQlkMb/K0S9Q/r+rEny+5VN7MDheOndv6UI
GQFKlI1QcBA4LrzMurtKc49UBUssx8k74UxlSWi6BI5tWoY9meY8lLpyYzh4VE/T
FfAjrs9z5idCcpRaOej4
=7LuA
-END PGP SIGNATURE-


Accepted:
liblua5.1-json_1.2.1-1_all.deb
  to main/l/lua-json/liblua5.1-json_1.2.1-1_all.deb
lua-json_1.2.1-1.diff.gz
  to main/l/lua-json/lua-json_1.2.1-1.diff.gz
lua-json_1.2.1-1.dsc
  to main/l/lua-json/lua-json_1.2.1-1.dsc
lua-json_1.2.1.orig.tar.gz
  to main/l/lua-json/lua-json_1.2.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/e1pnvzq-00027f...@franck.debian.org



Accepted ninix-aya 4.1.2-1 (source i386)

2011-02-10 Thread PaulLiu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 17:28:19 +0800
Source: ninix-aya
Binary: ninix-aya
Architecture: source i386
Version: 4.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Ying-Chun Liu (PaulLiu) paul...@debian.org
Changed-By: Ying-Chun Liu (PaulLiu) paul...@debian.org
Description: 
 ninix-aya  - Interactive fake-AI Ukagaka-compatible desktop mascot program
Changes: 
 ninix-aya (4.1.2-1) unstable; urgency=low
 .
   * New upstream release
   * Update debian/copyright files.
   * Update debian/ninix.sgml to add --debug syntax.
Checksums-Sha1: 
 e350afd6be0cb55f53c418115eec8238620a1f5c 1761 ninix-aya_4.1.2-1.dsc
 1af6daa58cbd2b30c4816d03207223eba6a53f71 301615 ninix-aya_4.1.2.orig.tar.gz
 9fe1a05000ddd451c4dbfff6f12eafa5ef04909d 7210 ninix-aya_4.1.2-1.debian.tar.gz
 dae5b51ce7fc9cba6f3e2d1fce081f6fc3fbcdc8 296714 ninix-aya_4.1.2-1_i386.deb
Checksums-Sha256: 
 a81f56ac259f841b46299c0ede76c7101fd6e850669c4a873a8db92333fd1ed9 1761 
ninix-aya_4.1.2-1.dsc
 0448baa1cfd5e95ed268d2768063dbbcb8423089e2d5c06a48ef1c8dc01ff6ee 301615 
ninix-aya_4.1.2.orig.tar.gz
 92f236ba6874de83e3f8dd012eb61e7c4f0e915e001ead2624c8c6e6949502c5 7210 
ninix-aya_4.1.2-1.debian.tar.gz
 8944c0c98047747cf0069f558d0a89023368129a16b76bb02b519e950b119d1a 296714 
ninix-aya_4.1.2-1_i386.deb
Files: 
 e7127784334e44153c4b7df5e841ad6b 1761 games extra ninix-aya_4.1.2-1.dsc
 bea017f6f07cb5f6e21bf9ebda192b3a 301615 games extra ninix-aya_4.1.2.orig.tar.gz
 145ddc253e4a5c7f888b960e126ceb37 7210 games extra 
ninix-aya_4.1.2-1.debian.tar.gz
 b8a42d12b61cf1db4f1d99b2817dd7fc 296714 games extra ninix-aya_4.1.2-1_i386.deb

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

iQIcBAEBCgAGBQJNU7EcAAoJEPgLgUbQQog231YQAJ/Olf9XnC0SZr2ZUc51Iq5U
plV8+kYgN9tybqUtHeH2IDI0hvoTRfUCozszxju47qRGvs+1F/QqoZEHYDt5IYs/
W0OV8SoUz+IhrQ1UhQMA2Lvl0nuKqSfbUXgXkRqdhz1R5ng7ZJzu5UpcH/D7vAxt
8T/XbGXm2slhHrYdLGTg6qQrm30+ekhwomuZTx+VUGaoNRbdITneJiN1+cHd/E3j
bcrt21FiEIWNqwzey1yN5gmhMaGiQ8/aq73n6aLwYAnM87U22DR5Zp1LqUosFKug
a5BFYhKIh2TxO6PYu7a8yw1L58u+QvIg/NCzIamCjIssF5+29GWnrUY+7N2kltu9
QaBaRsWiI4Y9Gaaw1iWSkEiTVRsgBpFSXEGfFdUvLNhGvbpno/YQJFiIKHsmpovu
7mLZ1hJrVGeTcj8RO2MvOQsQtedrlgtue3FoU3Fhoi+ZHWRBNIozqs5NCzFofeAy
ncT3JvbYMeiZazS6my7kfJC+zhLZ3OhZTgXy39O9Y3aj7JUXKQB5PVyNWIJ11/NE
EdxvbbEE78NsB7LEIZ2iv6zEZd8NSXaJWNCg4CShRm699MEkfkCNSw6WpkcFT7zg
z9tSjfL6erXIs90fT2Xu2pFfx6OqyQ6aLfQWFSJE80qU0cJanaC0VxJ/IiJNMnm5
B7hrr+cF4ODozQL9RYRg
=cwmh
-END PGP SIGNATURE-


Accepted:
ninix-aya_4.1.2-1.debian.tar.gz
  to main/n/ninix-aya/ninix-aya_4.1.2-1.debian.tar.gz
ninix-aya_4.1.2-1.dsc
  to main/n/ninix-aya/ninix-aya_4.1.2-1.dsc
ninix-aya_4.1.2-1_i386.deb
  to main/n/ninix-aya/ninix-aya_4.1.2-1_i386.deb
ninix-aya_4.1.2.orig.tar.gz
  to main/n/ninix-aya/ninix-aya_4.1.2.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/e1pnvce-0002mf...@franck.debian.org



Accepted obby 0.4.7-2 (source amd64)

2011-02-10 Thread Philipp Kern
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 09 Feb 2011 22:47:31 +0100
Source: obby
Binary: libobby-0.4-dev libobby-0.4-1 libobby-0.4-1-dbg
Architecture: source amd64
Version: 0.4.7-2
Distribution: unstable
Urgency: low
Maintainer: Philipp Kern pk...@debian.org
Changed-By: Philipp Kern pk...@debian.org
Description: 
 libobby-0.4-1 - Synced document buffers
 libobby-0.4-1-dbg - Synced document buffers - debugging symbols
 libobby-0.4-dev - Synced document buffers - development files
Closes: 603901 605322
Changes: 
 obby (0.4.7-2) unstable; urgency=low
 .
   * Stop installing the .la file.  (Closes: #603901)
   * Add Danish translation, thanks to Joe Dalton.  (Closes: #605322)
   * Add Ukrainian translation, taken from upstream git.
Checksums-Sha1: 
 5ce523cbacb9a4e87b06b3e3269c86a74e515cd4 1131 obby_0.4.7-2.dsc
 00b1981265f6abde3dc9b12b330cafd4408aaf3d 8194 obby_0.4.7-2.debian.tar.gz
 b9e965cad7ce25813d6d27a0dbea59d87efd959a 247970 
libobby-0.4-dev_0.4.7-2_amd64.deb
 defa8d851a9ef35ab7d26d72cc21df82bd1947b0 126570 libobby-0.4-1_0.4.7-2_amd64.deb
 a417f6c7f87d7673723906fcfa89ed61eb8c2fb8 669720 
libobby-0.4-1-dbg_0.4.7-2_amd64.deb
Checksums-Sha256: 
 e02b1cd4ad1331d36f9cf1a21f9f98df1a1bde208075f763d7298b3dff6ff583 1131 
obby_0.4.7-2.dsc
 f0c30de62c2879d92a7ec4d7833734c704055ec3216bb25a116341ec9584bcdb 8194 
obby_0.4.7-2.debian.tar.gz
 43810ecd8ed7f248220a08ca8315235e5c6efe10f8b21aab291587618549e11c 247970 
libobby-0.4-dev_0.4.7-2_amd64.deb
 f6a0ffc302c448f2b910d479867b1bfa9a113c58a6c8008e7af264032b83b98b 126570 
libobby-0.4-1_0.4.7-2_amd64.deb
 678be80894b2afc3de5d540e1230127653e4f41c324a413274c509093d6d2a95 669720 
libobby-0.4-1-dbg_0.4.7-2_amd64.deb
Files: 
 adc36d644b73820c9055639db802826d 1131 net optional obby_0.4.7-2.dsc
 855792e99f0ae3c40154b45267fad706 8194 net optional obby_0.4.7-2.debian.tar.gz
 85d5d32dc8ad94bf99d9ecfebf0a7f1b 247970 libdevel optional 
libobby-0.4-dev_0.4.7-2_amd64.deb
 0704f885e1fbca3763ee1739edc07e6d 126570 libs optional 
libobby-0.4-1_0.4.7-2_amd64.deb
 68b459c389cf4e49e5b90dc8428f7542 669720 debug extra 
libobby-0.4-1-dbg_0.4.7-2_amd64.deb

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

iEYEARECAAYFAk1TracACgkQ7Ro5M7LPzdjalwCgpfFt+25zNp3J1CQWky8Zw9QV
7vYAniW3/mfFCeonr5IdDJLmbMmV/ztk
=mrhs
-END PGP SIGNATURE-


Accepted:
libobby-0.4-1-dbg_0.4.7-2_amd64.deb
  to main/o/obby/libobby-0.4-1-dbg_0.4.7-2_amd64.deb
libobby-0.4-1_0.4.7-2_amd64.deb
  to main/o/obby/libobby-0.4-1_0.4.7-2_amd64.deb
libobby-0.4-dev_0.4.7-2_amd64.deb
  to main/o/obby/libobby-0.4-dev_0.4.7-2_amd64.deb
obby_0.4.7-2.debian.tar.gz
  to main/o/obby/obby_0.4.7-2.debian.tar.gz
obby_0.4.7-2.dsc
  to main/o/obby/obby_0.4.7-2.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/e1pnvcw-0002qh...@franck.debian.org



Accepted obexd 0.40-2 (source amd64)

2011-02-10 Thread Nobuhiro Iwamatsu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 18:32:00 +0900
Source: obexd
Binary: obexd-client obexd-server
Architecture: source amd64
Version: 0.40-2
Distribution: unstable
Urgency: low
Maintainer: Debian Bluetooth Maintainers 
pkg-bluetooth-maintain...@lists.alioth.debian.org
Changed-By: Nobuhiro Iwamatsu iwama...@debian.org
Description: 
 obexd-client - D-Bus OBEX client
 obexd-server - D-Bus OBEX server
Changes: 
 obexd (0.40-2) unstable; urgency=low
 .
   * Upload to unstable.
Checksums-Sha1: 
 dd9359f5a0680ebf0e775273a1fdeb587fda55f6 1295 obexd_0.40-2.dsc
 3e66d6b6714b2e74ec0dd65c4a270e6dde4a15fa 2247 obexd_0.40-2.diff.gz
 0fadd12ea0a3305bb6331150a19ebff8f78558a8 74186 obexd-client_0.40-2_amd64.deb
 be618e454514099cf84ae091666b749992516241 69522 obexd-server_0.40-2_amd64.deb
Checksums-Sha256: 
 9ba122f474590e77a8fb0be4c3ee037ace283e79d41cd33d9e394186acf599f6 1295 
obexd_0.40-2.dsc
 387bf1faf4485aabeb6df4ea0e21b7ec51a9832f6a5161300e092e2f90628a80 2247 
obexd_0.40-2.diff.gz
 a708aad0eb9a57504580abe150c76eb29cb14da5eb1ac28388688cdac0a587da 74186 
obexd-client_0.40-2_amd64.deb
 c884f31b1a7f81c223971e88911ef269e9bc56ba3e178c438d211cecd1f73779 69522 
obexd-server_0.40-2_amd64.deb
Files: 
 f195d5e7e2865dc61ad51cda0b76292b 1295 admin optional obexd_0.40-2.dsc
 2b7a9f36bfff9e30ee8c94585c23b666 2247 admin optional obexd_0.40-2.diff.gz
 619920817d916110f3477b3f8a9f9d42 74186 admin optional 
obexd-client_0.40-2_amd64.deb
 690a4ef741b9980f24b8f9056641af42 69522 admin optional 
obexd-server_0.40-2_amd64.deb

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

iEYEARECAAYFAk1TssYACgkQQSHHQzFw6+nTmQCeJiY6XBSh1827VdqfHgN/a273
NowAniDsuvJbw1NDLeNaku0E6tq/SsjD
=r/Xt
-END PGP SIGNATURE-


Accepted:
obexd-client_0.40-2_amd64.deb
  to main/o/obexd/obexd-client_0.40-2_amd64.deb
obexd-server_0.40-2_amd64.deb
  to main/o/obexd/obexd-server_0.40-2_amd64.deb
obexd_0.40-2.diff.gz
  to main/o/obexd/obexd_0.40-2.diff.gz
obexd_0.40-2.dsc
  to main/o/obexd/obexd_0.40-2.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/e1pnvck-0002tx...@franck.debian.org



Accepted passage 4+dfsg1-1 (source amd64)

2011-02-10 Thread Paul Wise
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 16:09:20 +0800
Source: passage
Binary: passage
Architecture: source amd64
Version: 4+dfsg1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Paul Wise p...@debian.org
Description: 
 passage- game about the passage through life
Closes: 556052
Changes: 
 passage (4+dfsg1-1) unstable; urgency=low
 .
   * New upstream release
 - Builds with binutils-gold (Closes: #556052)
   * Switch to dpkg-source v3 format
   * Refresh, clean patches
 - Drop amd64_fix.patch, applied upstream
   * Switch to debhelper dh rules.tiny style
   * Keep upstream capitalization, add symlinks
   * Improve the menu files
   * Change the patch to use DEP-3 headers
   * Drop README.Debian, it is not useful to users
   * Bump Standards-Version, no changes needed
   * Use the various icons to build different sized menu icons
Checksums-Sha1: 
 22bf882984fafe22258d9a46b5c5ca239562c699 1283 passage_4+dfsg1-1.dsc
 ad731765abe67923dcd841400c04e3c02010c66b 375081 passage_4+dfsg1.orig.tar.gz
 e84da27f4eb58202a63e2bb2823fa22514d69c70 5993 passage_4+dfsg1-1.debian.tar.gz
 bf62a81b97e44d5f3e82d0d055e8ea72dfee1327 68246 passage_4+dfsg1-1_amd64.deb
Checksums-Sha256: 
 43dbf11ff4792cce88ffb18b4b068cdeab677b7cef462e37b82099120a8e81a8 1283 
passage_4+dfsg1-1.dsc
 23b81ee247e2bf5e2ca8a36dc45e9112c15e92e3cb41c5d947d85812fa0e4962 375081 
passage_4+dfsg1.orig.tar.gz
 4cb293f0533aa54281163829ccdca3c02c14dae81761753ae0c26156b8065340 5993 
passage_4+dfsg1-1.debian.tar.gz
 a2a6cf41141cde5c315b676a7cb2825d5cd0484ac8d80903a710c7273b63c6f0 68246 
passage_4+dfsg1-1_amd64.deb
Files: 
 451f7389af03c611ef7dee543011f520 1283 games extra passage_4+dfsg1-1.dsc
 166a68f64b388dce7961459ab180b36f 375081 games extra passage_4+dfsg1.orig.tar.gz
 a1fab59f4b384f95a6b322aea0da6959 5993 games extra 
passage_4+dfsg1-1.debian.tar.gz
 b5339e81f469d30a7b600e358755c6bb 68246 games extra passage_4+dfsg1-1_amd64.deb

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

iEYEARECAAYFAk1TpgcACgkQ5Sc9mGvjxCME/ACfRsdBDynOwqGb6xRKQ3/Yyt/8
I6UAoMFeWwJUiNLRPvfUQip2jnqA8NMK
=wkf8
-END PGP SIGNATURE-


Accepted:
passage_4+dfsg1-1.debian.tar.gz
  to main/p/passage/passage_4+dfsg1-1.debian.tar.gz
passage_4+dfsg1-1.dsc
  to main/p/passage/passage_4+dfsg1-1.dsc
passage_4+dfsg1-1_amd64.deb
  to main/p/passage/passage_4+dfsg1-1_amd64.deb
passage_4+dfsg1.orig.tar.gz
  to main/p/passage/passage_4+dfsg1.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/e1pnve9-0002xj...@franck.debian.org



Accepted phasex 0.12.0+m1-2 (source amd64)

2011-02-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 12:40:37 +0100
Source: phasex
Binary: phasex phasex-dbg
Architecture: source amd64
Version: 0.12.0+m1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 phasex - Phase Harmonic Advanced Synthesis EXperiment
 phasex-dbg - Debugging symbols for PHASEX
Changes: 
 phasex (0.12.0+m1-2) unstable; urgency=low
 .
   * Upload to unstable.
   * Suggests on jack-keyboard | vkeybd.
   * Suggests on lashd.
   * Correct linking order to fix the build failure with the newest
 toolchain; thanks to Michael Bienia for the patch (LP: #677501).
   * Refresh 02-gcc_flags.patch patch.
Checksums-Sha1: 
 2d6c63d3dcaef1c43f24b935dca8360038844c04 1408 phasex_0.12.0+m1-2.dsc
 20f960a21a64ffc5e3324db1e58aff794535f0d9 5759 phasex_0.12.0+m1-2.debian.tar.gz
 ea49b69735f88debf5d79918a6637ebcfde294a2 316650 phasex_0.12.0+m1-2_amd64.deb
 4ba039fac06703de1906209a57e11bba555e73b9 156624 
phasex-dbg_0.12.0+m1-2_amd64.deb
Checksums-Sha256: 
 5a8f1259c9802003cdb58ffe139f1baec99d4ed2fa7a8973a327b24b7f82006b 1408 
phasex_0.12.0+m1-2.dsc
 ea84e5f0aa28e6a9b061118afc14d30ef07247cee618499378d82865e10b68e5 5759 
phasex_0.12.0+m1-2.debian.tar.gz
 9a3049424c853e4399358cc07ad482715a5c874a8c8f0d522adbdb26ab0530a8 316650 
phasex_0.12.0+m1-2_amd64.deb
 659fa279ca2b6224715f3bb09b084d4cd08dd887c53c34ddccd0a533f1a65095 156624 
phasex-dbg_0.12.0+m1-2_amd64.deb
Files: 
 adabae0c5f6b7c67cb6dfdbe53b5de15 1408 sound optional phasex_0.12.0+m1-2.dsc
 5b77acba61d97d30d6e9f63bcc70bf74 5759 sound optional 
phasex_0.12.0+m1-2.debian.tar.gz
 045b447fd8697865074d840daac10e91 316650 sound optional 
phasex_0.12.0+m1-2_amd64.deb
 4066b607065d831bc690ee749cd1e69d 156624 debug extra 
phasex-dbg_0.12.0+m1-2_amd64.deb

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

iEYEARECAAYFAk1Tz6QACgkQRdSMfNz8P9B7HQCfbvPl7ra8xSeczialzY6PXTNY
5CIAn1UNy/RnVsv6nzit2ldkExqF3mvY
=44ss
-END PGP SIGNATURE-


Accepted:
phasex-dbg_0.12.0+m1-2_amd64.deb
  to main/p/phasex/phasex-dbg_0.12.0+m1-2_amd64.deb
phasex_0.12.0+m1-2.debian.tar.gz
  to main/p/phasex/phasex_0.12.0+m1-2.debian.tar.gz
phasex_0.12.0+m1-2.dsc
  to main/p/phasex/phasex_0.12.0+m1-2.dsc
phasex_0.12.0+m1-2_amd64.deb
  to main/p/phasex/phasex_0.12.0+m1-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/e1pnvg4-0002p4...@franck.debian.org



Accepted policyd-weight 0.1.15.1-3 (source all)

2011-02-10 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 10:38:35 +0100
Source: policyd-weight
Binary: policyd-weight
Architecture: source all
Version: 0.1.15.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Jan Wagner w...@cyconet.org
Description: 
 policyd-weight - a Perl policy daemon for the Postfix MTA
Closes: 598844
Changes: 
 policyd-weight (0.1.15.1-3) unstable; urgency=low
 .
   * Orphan the package.
   * Add 03_cacherejectmsg.dpatch, to have a more verbose reject message on
 cache hit, thanks Martin F. Krafft (Closes: #598844)
   * Updating standards version to 3.9.1
 - use dh_prep instead of dh_clean -k
   * Update to debhelper 7
Checksums-Sha1: 
 0d6cde822b13d735ce466e9a955e088e437e02f3 1220 policyd-weight_0.1.15.1-3.dsc
 c4bd7fec22cfd6ef47ba56a5e77de2838ae08b93 6922 policyd-weight_0.1.15.1-3.diff.gz
 20aca65f73a7161d97260da11d8186c4cab41347 54084 
policyd-weight_0.1.15.1-3_all.deb
Checksums-Sha256: 
 49fa3ce650ed719a479e26b475ba95a433f089f02e9c44762d3b91654d0e2b79 1220 
policyd-weight_0.1.15.1-3.dsc
 0cb995eef281f4aae9caa51e2fa74f42361a45a3e3b967da75551db66d629bf3 6922 
policyd-weight_0.1.15.1-3.diff.gz
 1828d236e5611791a5fe5e867ffc3953b5a9d9e822b17269f70408e55246df23 54084 
policyd-weight_0.1.15.1-3_all.deb
Files: 
 72653fef753d0bec41fbef227c21c42a 1220 mail optional 
policyd-weight_0.1.15.1-3.dsc
 41f6cd0f5c8cae4bcab2988f9a0287fc 6922 mail optional 
policyd-weight_0.1.15.1-3.diff.gz
 c08730efbd04adca3c5422c4d0be384d 54084 mail optional 
policyd-weight_0.1.15.1-3_all.deb

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

iD8DBQFNU7Ke9u6Dud+QFyQRAlpuAJ9EYNrYerb6zimeHAHwS6EBJr0qfwCg9jDO
6LhNgQM9a0Sn2UPh22QNT9w=
=q2Wu
-END PGP SIGNATURE-


Accepted:
policyd-weight_0.1.15.1-3.diff.gz
  to main/p/policyd-weight/policyd-weight_0.1.15.1-3.diff.gz
policyd-weight_0.1.15.1-3.dsc
  to main/p/policyd-weight/policyd-weight_0.1.15.1-3.dsc
policyd-weight_0.1.15.1-3_all.deb
  to main/p/policyd-weight/policyd-weight_0.1.15.1-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/e1pnvgj-0002uy...@franck.debian.org



Accepted polyglot 1.4.64b-1 (source i386)

2011-02-10 Thread Oliver Korff
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 10:41:02 +0100
Source: polyglot
Binary: polyglot
Architecture: source i386
Version: 1.4.64b-1
Distribution: experimental
Urgency: low
Maintainer: Oliver Korff o...@xynyx.de
Changed-By: Oliver Korff o...@xynyx.de
Description: 
 polyglot   - chess engine protocol adaptor, connects UCI engines to xboard
Changes: 
 polyglot (1.4.64b-1) experimental; urgency=low
 .
   * New upstream version
   * Main upstream news: Support for egtpath gaviota, all other
 changes seem to be bugfixes. See manpage for usage.
Checksums-Sha1: 
 d15cff3f076d5eee00c151d4ac4f66ee46db 1063 polyglot_1.4.64b-1.dsc
 3e9c6f4286a2ceda3d815f4f9a2e58cbb4ec9611 271280 polyglot_1.4.64b.orig.tar.gz
 f5d459445b02dfb2085b607dae45212510033781 6835 polyglot_1.4.64b-1.debian.tar.gz
 6f9bef37b9dd2aeed9a46b0c3b0fe472a88643c9 118296 polyglot_1.4.64b-1_i386.deb
Checksums-Sha256: 
 7184a0bea8f81d39b95d126410e39daadb6db96f99285878ddc0bf3cb6fdc61b 1063 
polyglot_1.4.64b-1.dsc
 d5c183f80e9cb85e1ad47ccb63a07b2208b04293c554391ef69e35f164b80f22 271280 
polyglot_1.4.64b.orig.tar.gz
 3bbffe5248dfae192df9fc11a10c67c0756818a660d7fcea02de48246cd66436 6835 
polyglot_1.4.64b-1.debian.tar.gz
 7fa3dd5cef97c167e12545e1501ab928c7367353b3ca088341bc0e145c18f222 118296 
polyglot_1.4.64b-1_i386.deb
Files: 
 cd805372157eb066a16af437bb3c69e5 1063 games optional polyglot_1.4.64b-1.dsc
 11cef61e5f94837b58a1c43fceca8b28 271280 games optional 
polyglot_1.4.64b.orig.tar.gz
 1963bd26cf872b0775b4bcafe8a5e19a 6835 games optional 
polyglot_1.4.64b-1.debian.tar.gz
 7a790753d526e115e65b3631d8c48414 118296 games optional 
polyglot_1.4.64b-1_i386.deb

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

iEYEARECAAYFAk1TuVYACgkQYEKwtdP5dN9rvgCgg7fhirG+6paKqbZkjtxpmAz2
Kc4AoNK+x06EgR6SaSJ0qhFCs+2pD4py
=FSM2
-END PGP SIGNATURE-


Accepted:
polyglot_1.4.64b-1.debian.tar.gz
  to main/p/polyglot/polyglot_1.4.64b-1.debian.tar.gz
polyglot_1.4.64b-1.dsc
  to main/p/polyglot/polyglot_1.4.64b-1.dsc
polyglot_1.4.64b-1_i386.deb
  to main/p/polyglot/polyglot_1.4.64b-1_i386.deb
polyglot_1.4.64b.orig.tar.gz
  to main/p/polyglot/polyglot_1.4.64b.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/e1pnvgw-0002zf...@franck.debian.org



Accepted primrose 6+dfsg1-2 (source amd64)

2011-02-10 Thread Paul Wise
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 17:31:18 +0800
Source: primrose
Binary: primrose
Architecture: source amd64
Version: 6+dfsg1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Paul Wise p...@debian.org
Description: 
 primrose   - compelling tile-placement puzzle game
Changes: 
 primrose (6+dfsg1-2) unstable; urgency=low
 .
   * Switch to dpkg-source v3
   * Clean up patch headers
   * Add missing build-dep on OpenGL headers
   * Switch to debhelper dh rules.tiny style
   * Keep upstream capitalization, add symlinks
   * Improve situation with icons
   * Drop README.Debian, it is not useful to users
   * Bump Standards-Version, no changes needed
Checksums-Sha1: 
 3e0dd7d887720285c44c1d1d8b9a2dd83ad0f842 1355 primrose_6+dfsg1-2.dsc
 6c578393919d69643ee683ca9095a0cc11921963 6017 primrose_6+dfsg1-2.debian.tar.gz
 87946746aa680f0bdc604433c63f0203a4f033d7 176142 primrose_6+dfsg1-2_amd64.deb
Checksums-Sha256: 
 073312c18430d836d7fa88afc631c1dfa2933b4634570ee44aba6bc2fb1198a6 1355 
primrose_6+dfsg1-2.dsc
 5249bb205ace13bb33353814735c4fcecfb79196bf710dd6eef784b0de5095cc 6017 
primrose_6+dfsg1-2.debian.tar.gz
 386ea2c6196e07d7b081461916f50b6651807b9799000a168f3202c75daff389 176142 
primrose_6+dfsg1-2_amd64.deb
Files: 
 929a79f137fbf0818e4bc56b8ecf0ff4 1355 games extra primrose_6+dfsg1-2.dsc
 6c3915443c04659e54a9337c1a6a3a60 6017 games extra 
primrose_6+dfsg1-2.debian.tar.gz
 6976f8772a0f9df98f999498c4cfec61 176142 games extra 
primrose_6+dfsg1-2_amd64.deb

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

iEYEARECAAYFAk1Ts0EACgkQ5Sc9mGvjxCMTBwCggWhXA2MwxE9P2GkBY4cMf/QU
s7AAn2YBHHHAz0rHjtb1CfB6eiBWv2iL
=wq4k
-END PGP SIGNATURE-


Accepted:
primrose_6+dfsg1-2.debian.tar.gz
  to main/p/primrose/primrose_6+dfsg1-2.debian.tar.gz
primrose_6+dfsg1-2.dsc
  to main/p/primrose/primrose_6+dfsg1-2.dsc
primrose_6+dfsg1-2_amd64.deb
  to main/p/primrose/primrose_6+dfsg1-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/e1pnvgn-00031u...@franck.debian.org



Accepted softflowd 0.9.8+hg20101101.b35a000870cc-1 (source amd64)

2011-02-10 Thread Christoph Biedl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 07 Feb 2011 23:26:31 +0100
Source: softflowd
Binary: softflowd
Architecture: source amd64
Version: 0.9.8+hg20101101.b35a000870cc-1
Distribution: unstable
Urgency: low
Maintainer: Christoph Biedl debian.packages.h...@manchmal.in-ulm.de
Changed-By: Christoph Biedl debian.packages.h...@manchmal.in-ulm.de
Description: 
 softflowd  - Flow-based network traffic analyser
Changes: 
 softflowd (0.9.8+hg20101101.b35a000870cc-1) unstable; urgency=low
 .
   * Based on upstream changeset 205:b35a000870cc
   * Rework Debianisation, especially:
 - upgrade to Standards-Version 3.9.1
 - use debhelper 7
 - switch to dpkg-source 3.0 (quilt) format
Checksums-Sha1: 
 30a4c62eede62e31da82f6a27e9eaa118c98f9bd 1273 
softflowd_0.9.8+hg20101101.b35a000870cc-1.dsc
 34fbf195a84ccb4b4aa1d739ad3966543cdd8fa9 55719 
softflowd_0.9.8+hg20101101.b35a000870cc.orig.tar.gz
 f238b998d34d6637daa08805ece55ea391bdf823 6934 
softflowd_0.9.8+hg20101101.b35a000870cc-1.debian.tar.gz
 7d318d2235afe99c73622ec747980d644a76a8a4 44606 
softflowd_0.9.8+hg20101101.b35a000870cc-1_amd64.deb
Checksums-Sha256: 
 595a1c065a7b5395568bdae61f1b2f571b27c27b5758aa7a18f2b58f09e55033 1273 
softflowd_0.9.8+hg20101101.b35a000870cc-1.dsc
 9547c09b98895b972d7a3024a8c561422d6b5f859aaefcba7d9d6960a303 55719 
softflowd_0.9.8+hg20101101.b35a000870cc.orig.tar.gz
 81cdacf0d26ff62a55b68b2a2d1c30ba1be065b03502649a04ba6876dc5f01c2 6934 
softflowd_0.9.8+hg20101101.b35a000870cc-1.debian.tar.gz
 e71411743dc35c2804d0c27c5536c50126e52ec50ffd285da7f492100b90ab86 44606 
softflowd_0.9.8+hg20101101.b35a000870cc-1_amd64.deb
Files: 
 b676dfb8a0e1e930f8eab59fd9bb036c 1273 net extra 
softflowd_0.9.8+hg20101101.b35a000870cc-1.dsc
 8c771048576f4b3e68846b493a63bd59 55719 net extra 
softflowd_0.9.8+hg20101101.b35a000870cc.orig.tar.gz
 81b7fc309e3665015b6b5092ea6bec2a 6934 net extra 
softflowd_0.9.8+hg20101101.b35a000870cc-1.debian.tar.gz
 a9c65b8347e969c5ccf8ce11bd658ca2 44606 net extra 
softflowd_0.9.8+hg20101101.b35a000870cc-1_amd64.deb

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

iEYEARECAAYFAk1TvU8ACgkQUCgnLz/SlGg/TQCgkau//kSGN14Cq8IgJaFpdpJF
r0gAoIQ6z20OcGn7XaTH2b7NcrBdlBvA
=VrHo
-END PGP SIGNATURE-


Accepted:
softflowd_0.9.8+hg20101101.b35a000870cc-1.debian.tar.gz
  to main/s/softflowd/softflowd_0.9.8+hg20101101.b35a000870cc-1.debian.tar.gz
softflowd_0.9.8+hg20101101.b35a000870cc-1.dsc
  to main/s/softflowd/softflowd_0.9.8+hg20101101.b35a000870cc-1.dsc
softflowd_0.9.8+hg20101101.b35a000870cc-1_amd64.deb
  to main/s/softflowd/softflowd_0.9.8+hg20101101.b35a000870cc-1_amd64.deb
softflowd_0.9.8+hg20101101.b35a000870cc.orig.tar.gz
  to main/s/softflowd/softflowd_0.9.8+hg20101101.b35a000870cc.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/e1pnvke-0003mc...@franck.debian.org



Accepted synaptic 0.75 (source i386)

2011-02-10 Thread Michael Vogt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 09:56:20 +0100
Source: synaptic
Binary: synaptic
Architecture: source i386
Version: 0.75
Distribution: unstable
Urgency: low
Maintainer: Michael Vogt m...@debian.org
Changed-By: Michael Vogt m...@debian.org
Description: 
 synaptic   - Graphical package manager
Changes: 
 synaptic (0.75) unstable; urgency=low
 .
   [ Michael Vogt ]
   * merged lp:~mathieu-tl/synaptic/gtk3 this brings gtkbuilder
 (instead of glade) and the preparation for updating for gtk3
 Many thanks to Mathieu Trudel-Lapierre
   * show changelog button alongside the screenshot button
   * make sure /etc/apt/apt.conf.d/99synaptic is mode 644
 (LP: #637157)
   * common/rpackagecache.cc:
 - read pindir as well as the pinfile (LP: #628818)
   * when reading markings, ensure the views are refreshed
 so that broken dependencies are displayed
   * show /ask about the pkg state changes when reading selections
 from a file, simpify askStateChanges code
   * merged
 lp:~chris-ascentsoftware/ubuntu/natty/synaptic/synaptic-fix-706271
 many thanks! (LP: #706271)
   * merged lp:~kelemeng/synaptic/bug702181, many thanks!
 (LP: #702181)
   * merged lp:~kelemeng/synaptic/bug688897, many thanks!
 (LP: #688897)
 .
   [ Chris McGinlay ]
   * gtk/gtkbuilder/window_preferences.ui, po/*
- Change capitalisation of internet to Internet (LP: #706271)
 .
   [ Luca Falavigna ]
   * common/rpackageview.cc:
 - Do not display base packages in manual view.
Checksums-Sha1: 
 5d0d1f3ca2ec9ec62dc16d387d1c71998d5072d5 1013 synaptic_0.75.dsc
 df755fafe8908283b910ca0ab0d756917d3ee989 4194667 synaptic_0.75.tar.gz
 027eb98f87735f001b47a4e30de9ccbcd48b9d49 2323670 synaptic_0.75_i386.deb
Checksums-Sha256: 
 96f3499505457c78cd801613915d6d2e28bfa6fa50388b4fae49f31914a08d90 1013 
synaptic_0.75.dsc
 dab97318526a7059cfee1f8ff9424fa7dcac200cb16e23fe17929e1081f3baea 4194667 
synaptic_0.75.tar.gz
 c2fc93404092fcffc8b8c356059240b0678963772c44030ba13a8f3e56244c55 2323670 
synaptic_0.75_i386.deb
Files: 
 5359c471d6e34cc856caede079e332e6 1013 admin optional synaptic_0.75.dsc
 327565c74cd4d71a87291e69c98d4f2a 4194667 admin optional synaptic_0.75.tar.gz
 6501f6a360e67b22873d489ccbee5a73 2323670 admin optional synaptic_0.75_i386.deb

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

iEYEARECAAYFAk1TqQQACgkQliSD4VZixzTqIgCfWR+BctppBpJlHeT63FttVGwM
ouwAn0rFhlNgGDsgdcwNMgUG0b6VSzP9
=zJxk
-END PGP SIGNATURE-


Accepted:
synaptic_0.75.dsc
  to main/s/synaptic/synaptic_0.75.dsc
synaptic_0.75.tar.gz
  to main/s/synaptic/synaptic_0.75.tar.gz
synaptic_0.75_i386.deb
  to main/s/synaptic/synaptic_0.75_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/e1pnvlz-0003wx...@franck.debian.org



Accepted unison 2.32.52-2 (source amd64)

2011-02-10 Thread Stéphane Glondu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 12:21:24 +0100
Source: unison
Binary: unison unison-gtk
Architecture: source amd64
Version: 2.32.52-2
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Stéphane Glondu glo...@debian.org
Description: 
 unison - A file-synchronization tool for Unix and Windows
 unison-gtk - A file-synchronization tool for Unix and Windows with GTK+ interf
Closes: 585453
Changes: 
 unison (2.32.52-2) unstable; urgency=low
 .
   * Team upload
   * Switch source package format to 3.0 (quilt)
   * Add patch to fix build with OCaml 3.12 (Closes: #585453)
   * Add set -e to maintainer scripts
   * Remove conflicts older than oldstable
   * Bump Standards-Version to 3.9.1
Checksums-Sha1: 
 1762f7527badc5ac307c3173b11b52e6b4c2a5cd 2071 unison_2.32.52-2.dsc
 c7ad9c2b642c76c81b1869a2573b4964a7f1ad7d 21658 unison_2.32.52-2.debian.tar.gz
 f45bd9aed856bc2afae77a611425cdf27db97381 692822 unison_2.32.52-2_amd64.deb
 145da488104f79fc9403a666da23067d14bb314d 1226380 unison-gtk_2.32.52-2_amd64.deb
Checksums-Sha256: 
 520510c429d491b47de3dc24117ff428e45a755ef060c849c99ea3e6d4be54dd 2071 
unison_2.32.52-2.dsc
 b8ddaac2481a9ed33f12e475594f1778895020592e02f9a4e0def4bb0d6fd31e 21658 
unison_2.32.52-2.debian.tar.gz
 dd6baa3f3893c77c3543a8d65a53db32d7f2632823f4b8a637a62d73fe7995c4 692822 
unison_2.32.52-2_amd64.deb
 7629abdca7cf61f94eeef66463af41f0e331aa3e86452d0fa3df95c78be24b18 1226380 
unison-gtk_2.32.52-2_amd64.deb
Files: 
 e28fbb99c20893be08810bfaffae0ec8 2071 utils optional unison_2.32.52-2.dsc
 bb91aa74b7b7a019ff0c132a98556471 21658 utils optional 
unison_2.32.52-2.debian.tar.gz
 d35ac15c2cc61fd0f0fc6c4365cf454f 692822 utils optional 
unison_2.32.52-2_amd64.deb
 9e934caae68e8f0f2c114d1f6b3a2a5a 1226380 utils optional 
unison-gtk_2.32.52-2_amd64.deb

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

iQIcBAEBCgAGBQJNU8u6AAoJEHhT2k1JiBrT3bwP/RcI4d44NLAXtbUsSR17YlO0
K7kOFV12nNE475u7K32bh4X+QCr0POyiQp2xwOapyDbMHoNZPFsOCGZbCmhkJ4Br
bbC9V6s5pqqLURM1bJda5JkpKtY+bph1yVm2woISuK5xbHq6L3iJcIObB60Qe+VR
PNG0fvOG3jN0wsq+TnQ9CYo8VZJHpvBGXCDyfeAuwRuV97ccCiMUv6uQF4tOcEXX
69inn4Dfe95LrrwKExy3dy7rfib2TG6KRyh0MbkVrjVlMg9avonZVMYFTDL3MBdN
/bJlNPM3zJ96Y/9eMEA41NUpkDD/J9IzAZNz5lPePSr9UisJbRrUKNTRQ9cFKqzf
WSs+Oa2WnKKhh1jzG07ZcFkSr9qfIxG+Gfkh5t8AXZHscv53FtPeix0rPJbRDmwc
yMJfk+O+WwCBMKfhNP0ZfpVWXaPjs8DTFuT4JkIe6hD+of9rVMyKi/ipdCX8gOjD
B18EDfbhkMy/YnvPIyoT0llkK+W/yp1aukbDLrRc/y8WItEGP5LeRJrfXMJ3vWl1
IJOKkxaNuIksm0AxC/8B7I8ygr4wB+zKM9v1m8m5yHEXOiPK8B81y4yyYnOyIxDV
ZxgkvtmzcFZKnvvbdZMVoSfjagUoqIktDUEqbrFhOP/p2vSJjv3yrcwIe5EEl18f
zSfn11vqOXRBZRU+qSYi
=EUEo
-END PGP SIGNATURE-


Accepted:
unison-gtk_2.32.52-2_amd64.deb
  to main/u/unison/unison-gtk_2.32.52-2_amd64.deb
unison_2.32.52-2.debian.tar.gz
  to main/u/unison/unison_2.32.52-2.debian.tar.gz
unison_2.32.52-2.dsc
  to main/u/unison/unison_2.32.52-2.dsc
unison_2.32.52-2_amd64.deb
  to main/u/unison/unison_2.32.52-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/e1pnvo8-0003e1...@franck.debian.org



Accepted xjadeo 0.6.0~rc7-2 (source amd64)

2011-02-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 12:49:19 +0100
Source: xjadeo
Binary: xjadeo
Architecture: source amd64
Version: 0.6.0~rc7-2
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 xjadeo - Video player with JACK sync
Changes: 
 xjadeo (0.6.0~rc7-2) unstable; urgency=low
 .
   * Upload to unstable.
   * Fix misspelling in the Build-Depends field.
Checksums-Sha1: 
 76e411ccad51c69f0d3844b2b01904dcc5e83936 1674 xjadeo_0.6.0~rc7-2.dsc
 a785f9244f2f9dca6cb0f6d0b8414a5f552131e3 202460 
xjadeo_0.6.0~rc7-2.debian.tar.gz
 1a69257f7cf88a8f1845d86599a6f78d69e121b9 360292 xjadeo_0.6.0~rc7-2_amd64.deb
Checksums-Sha256: 
 3097f1524e2aaf5b2c2a53bfd77cd839f44bb9ce52a3bfea8f084abbea41da3a 1674 
xjadeo_0.6.0~rc7-2.dsc
 e13c713215b9194385cd77b016be9f6f7d550c2b5785a833d9bc5cb3672cdf9c 202460 
xjadeo_0.6.0~rc7-2.debian.tar.gz
 c15cd61cdfcd1158f92f36134026d8c38c7614ba3f35ed3b11c319726f242c79 360292 
xjadeo_0.6.0~rc7-2_amd64.deb
Files: 
 c915ad10f27188f0def517a809a89e29 1674 video optional xjadeo_0.6.0~rc7-2.dsc
 cad978fa057d486fead075c1c3e75a83 202460 video optional 
xjadeo_0.6.0~rc7-2.debian.tar.gz
 c3297da72a493e12e4f488e6e792d874 360292 video optional 
xjadeo_0.6.0~rc7-2_amd64.deb

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

iEYEARECAAYFAk1T0n0ACgkQRdSMfNz8P9BjUgCcCiXUx8HDinPYAl+pb73REiSC
mN4AniyFe5hKo1j8FfcKag2scRQLqLjx
=vsjw
-END PGP SIGNATURE-


Accepted:
xjadeo_0.6.0~rc7-2.debian.tar.gz
  to main/x/xjadeo/xjadeo_0.6.0~rc7-2.debian.tar.gz
xjadeo_0.6.0~rc7-2.dsc
  to main/x/xjadeo/xjadeo_0.6.0~rc7-2.dsc
xjadeo_0.6.0~rc7-2_amd64.deb
  to main/x/xjadeo/xjadeo_0.6.0~rc7-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/e1pnvqm-0003rv...@franck.debian.org



Accepted xsynth-dssi 0.9.4-2 (source amd64)

2011-02-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 10:53:11 +0100
Source: xsynth-dssi
Binary: xsynth-dssi
Architecture: source amd64
Version: 0.9.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 xsynth-dssi - classic-analog (VCOs-VCF-VCA) style software synthesizer
Changes: 
 xsynth-dssi (0.9.4-2) unstable; urgency=low
 .
   * Upload to unstable.
Checksums-Sha1: 
 6029225d8051de66096104323d6d431fb05348b1 1447 xsynth-dssi_0.9.4-2.dsc
 d6b4d6b4f74f8407e624eb5cf94f7f1c59237972 3100 xsynth-dssi_0.9.4-2.debian.tar.gz
 759e59058e12be9cc852054fbb3b12e190e55234 172850 xsynth-dssi_0.9.4-2_amd64.deb
Checksums-Sha256: 
 f5f751348b034d6daf5e3ca486e3237bd631ed7b67f1fa67bf95973828835cf0 1447 
xsynth-dssi_0.9.4-2.dsc
 ddeba7108e208b06423ff076410605057de38567b3b89a65d0c224422b8d629c 3100 
xsynth-dssi_0.9.4-2.debian.tar.gz
 d609cb660f971e79c238f6bb41acb8cdb011128c64fded58f1870426537cabad 172850 
xsynth-dssi_0.9.4-2_amd64.deb
Files: 
 5e6a18e6d0704e01526a024722b0ecdb 1447 sound optional xsynth-dssi_0.9.4-2.dsc
 4325080e04948b9e305f812e17e040ed 3100 sound optional 
xsynth-dssi_0.9.4-2.debian.tar.gz
 cb0349e65f3217225177b31f23cc1b3c 172850 sound optional 
xsynth-dssi_0.9.4-2_amd64.deb

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

iEYEARECAAYFAk1TtmoACgkQRdSMfNz8P9C5HwCeLubIlhI9+ZmN6ZlRctCewmJN
poIAn13al6gQXu9k920sTZEmbFlZkdXu
=Pqpa
-END PGP SIGNATURE-


Accepted:
xsynth-dssi_0.9.4-2.debian.tar.gz
  to main/x/xsynth-dssi/xsynth-dssi_0.9.4-2.debian.tar.gz
xsynth-dssi_0.9.4-2.dsc
  to main/x/xsynth-dssi/xsynth-dssi_0.9.4-2.dsc
xsynth-dssi_0.9.4-2_amd64.deb
  to main/x/xsynth-dssi/xsynth-dssi_0.9.4-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/e1pnvxm-0004aj...@franck.debian.org



Accepted zsh 4.3.11-3 (source all amd64)

2011-02-10 Thread Michael Prokop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 10:48:36 +0100
Source: zsh
Binary: zsh zsh-doc zsh-static zsh-dev zsh-dbg
Architecture: source all amd64
Version: 4.3.11-3
Distribution: unstable
Urgency: low
Maintainer: Debian Zsh Maintainers pkg-zsh-de...@lists.alioth.debian.org
Changed-By: Michael Prokop m...@debian.org
Description: 
 zsh- A shell with lots of features
 zsh-dbg- A shell with lots of features (debugging symbols)
 zsh-dev- A shell with lots of features (development files)
 zsh-doc- zsh documentation - info/HTML format
 zsh-static - A shell with lots of features (static link)
Closes: 612143
Changes: 
 zsh (4.3.11-3) unstable; urgency=low
 .
   * [6b5d568] Update Vcs-Git and Vcs-Browser control headers.
   * [17c579f] New maintainers (pkg-zsh). (Closes: #612143)
Checksums-Sha1: 
 d00a720a0d9ac87fe42fe0992c68b2b84f869142 1425 zsh_4.3.11-3.dsc
 228aed88a5866fc1a683880f95727f6c044fe2b2 56852 zsh_4.3.11-3.debian.tar.gz
 be81511f89de6d29d248fd2c4a7ea638c06a 2553680 zsh-doc_4.3.11-3_all.deb
 802a7b32e16a5876f3215fe61c8e3bd8b58b5d45 4661322 zsh_4.3.11-3_amd64.deb
 4c0e997beb8fcee182e53e3e3cc07709c12c9915 1118732 zsh-dbg_4.3.11-3_amd64.deb
 735c69a013f9d023cc82774073777175ece76ad0 982892 zsh-static_4.3.11-3_amd64.deb
 99c64565089f845d0085521cf535b775f659ff6c 80162 zsh-dev_4.3.11-3_amd64.deb
Checksums-Sha256: 
 39aeeb2cddb15794472df582ad9681a5b838b3f035c90df1a01929458cc1c6b5 1425 
zsh_4.3.11-3.dsc
 0b2272b55d21b5963fc12a65a446e614d788ea91403f5458bbc9f4032ef1ae03 56852 
zsh_4.3.11-3.debian.tar.gz
 99ee407ac75ff9752066399282de16064dec268c3afd7cfd493756a09b42f8e0 2553680 
zsh-doc_4.3.11-3_all.deb
 21821247215a3470d657d498d6520f4cec3c59b5620388bb1a840ef6a3ea0170 4661322 
zsh_4.3.11-3_amd64.deb
 e7f9d6b51f4a0c1f0fae1798f51e195513cf506e36cc91f5ea899c38a8b19905 1118732 
zsh-dbg_4.3.11-3_amd64.deb
 8342ce393636730160e4857bd6f98fa07953c1d99b955bae140d515ebe1ff1ca 982892 
zsh-static_4.3.11-3_amd64.deb
 bec13289197a8d2d498ca5686b69133dab619f7d2cfb3613edaf9b5bb1c49a79 80162 
zsh-dev_4.3.11-3_amd64.deb
Files: 
 7893c4629b7297eeaba3de187a30d5c8 1425 shells optional zsh_4.3.11-3.dsc
 06810a6a9adb8c1dc783bfffbc2001b0 56852 shells optional 
zsh_4.3.11-3.debian.tar.gz
 7050e0003565ce87a1f91bdfb0d06c03 2553680 doc optional zsh-doc_4.3.11-3_all.deb
 25cc2c215ff74252802f1297656d83d3 4661322 shells optional zsh_4.3.11-3_amd64.deb
 1e8c9062e36ba8b65f044fe1ab4f7c1f 1118732 debug extra zsh-dbg_4.3.11-3_amd64.deb
 04162eb4abc4cbc483f81284864df4af 982892 shells optional 
zsh-static_4.3.11-3_amd64.deb
 f2e9f9fee7d589caf781f35f0299c23f 80162 libdevel optional 
zsh-dev_4.3.11-3_amd64.deb

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

iEYEARECAAYFAk1Tyv8ACgkQ2N9T+zficuglPgCfZGfDXaVKpZn9oYyn2OBrjwY6
yP8AnjcUoa/JWFOIootjcKfW5VSkhV5Y
=1ap9
-END PGP SIGNATURE-


Accepted:
zsh-dbg_4.3.11-3_amd64.deb
  to main/z/zsh/zsh-dbg_4.3.11-3_amd64.deb
zsh-dev_4.3.11-3_amd64.deb
  to main/z/zsh/zsh-dev_4.3.11-3_amd64.deb
zsh-doc_4.3.11-3_all.deb
  to main/z/zsh/zsh-doc_4.3.11-3_all.deb
zsh-static_4.3.11-3_amd64.deb
  to main/z/zsh/zsh-static_4.3.11-3_amd64.deb
zsh_4.3.11-3.debian.tar.gz
  to main/z/zsh/zsh_4.3.11-3.debian.tar.gz
zsh_4.3.11-3.dsc
  to main/z/zsh/zsh_4.3.11-3.dsc
zsh_4.3.11-3_amd64.deb
  to main/z/zsh/zsh_4.3.11-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/e1pnvy8-0004tq...@franck.debian.org



Accepted acpi-support 0.138-7 (source all amd64)

2011-02-10 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 12:03:35 +0100
Source: acpi-support
Binary: acpi-support acpi-support-base acpi-fakekey
Architecture: source all amd64
Version: 0.138-7
Distribution: unstable
Urgency: low
Maintainer: Debian Acpi Team pkg-acpi-de...@lists.alioth.debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 acpi-fakekey - tool to generate fake key events
 acpi-support - scripts for handling many ACPI events
 acpi-support-base - scripts for handling base ACPI events such as the power 
button
Closes: 609276 611699 612628
Changes: 
 acpi-support (0.138-7) unstable; urgency=low
 .
   * Use /dev/uinput instead of the no longer existing /dev/input/uinput.
 (Closes: #612628) - thanks to Sven Joachim svenj...@gmx.de
   * Use a smaller canon (no forks) to edit /tmp/.X11-unix/* (Closes:
 #609276) - thanks to Cristian Ionescu-Idbohrn cristian.ionescu-
 idbo...@axis.com
   * Added a small explanation why some packages are recommended.
 (Closes: #611699)
Checksums-Sha1: 
 07616fa3dae0974d174ad15c86730663a27ad4c8 1234 acpi-support_0.138-7.dsc
 17899611f15ee89befe0750d202365e117313b96 61753 acpi-support_0.138-7.diff.gz
 541d39e21f05de13a1afd2ad06b484eef5793734 51834 acpi-support_0.138-7_all.deb
 70540fd5c0fb74214f8b845b97bd1017501f7690 20828 
acpi-support-base_0.138-7_all.deb
 7ed36fb1b83b2097f43c9abbcfad4fd77786d98a 22776 acpi-fakekey_0.138-7_amd64.deb
Checksums-Sha256: 
 8059dbf0c357c74d4b4be78c713c7a3ee5557d585985a1dbd1b38bfa607cbc5f 1234 
acpi-support_0.138-7.dsc
 6e3882914d1e444a1d67dc90968211db194299bb0a49994ec1ca0513cee58ae3 61753 
acpi-support_0.138-7.diff.gz
 fecaf8ae7a6a12d64347add916be4e70a926d7a161b54990e38cd776893028ed 51834 
acpi-support_0.138-7_all.deb
 6d8b640d57d53b86b3ec4dcaca06dc452baf6e99a0ee5f00734632dfac6b4fc4 20828 
acpi-support-base_0.138-7_all.deb
 bb3a4c49f54b1ecbf20fbe2f91af3b5244eb3df4ac1931d733089682c1477b83 22776 
acpi-fakekey_0.138-7_amd64.deb
Files: 
 e45502bc2fac3e784247e06ffb04942c 1234 admin optional acpi-support_0.138-7.dsc
 c3871032aac1966cb1842c28f55b430d 61753 admin optional 
acpi-support_0.138-7.diff.gz
 2a15ed15b3811c1d3d47e7733a7f5b83 51834 admin optional 
acpi-support_0.138-7_all.deb
 29ede2148d808f86d5a065ddc86c1dd0 20828 admin optional 
acpi-support-base_0.138-7_all.deb
 23a386a8fb6edc98ff62044af1da26c4 22776 admin optional 
acpi-fakekey_0.138-7_amd64.deb

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

iD8DBQFNU9T6VkEm8inxm9ERAoVwAJ9/OXummFLTMuOZVf1IFIrZDoOicgCfTw1P
2CEZSLYuodsa3tHvLuVh/Xw=
=QXXU
-END PGP SIGNATURE-


Accepted:
acpi-fakekey_0.138-7_amd64.deb
  to main/a/acpi-support/acpi-fakekey_0.138-7_amd64.deb
acpi-support-base_0.138-7_all.deb
  to main/a/acpi-support/acpi-support-base_0.138-7_all.deb
acpi-support_0.138-7.diff.gz
  to main/a/acpi-support/acpi-support_0.138-7.diff.gz
acpi-support_0.138-7.dsc
  to main/a/acpi-support/acpi-support_0.138-7.dsc
acpi-support_0.138-7_all.deb
  to main/a/acpi-support/acpi-support_0.138-7_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/e1pnzvy-o6...@franck.debian.org



Accepted bzr-git 0.5.4-1 (source all)

2011-02-10 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 14:14:53 +0100
Source: bzr-git
Binary: bzr-git
Architecture: source all
Version: 0.5.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr-git- Bazaar plugin providing Git integration
Changes: 
 bzr-git (0.5.4-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 c396291a52ddaa01c4e307fe8ceee5ef801d856b 1380 bzr-git_0.5.4-1.dsc
 679d839653e7c8c64d063137a833342219ee767c 87423 bzr-git_0.5.4.orig.tar.gz
 61c9f80d0ba7ce6c0d7bff6eb64c8de1939880ce 3201 bzr-git_0.5.4-1.debian.tar.gz
 fb7d561e306b89983caf2fc40be1893673ce6f7b 85176 bzr-git_0.5.4-1_all.deb
Checksums-Sha256: 
 eb12fc77f885b5e13ef75b78c012f691b8cf01ac3cf4a900da96ac2279bf2d8e 1380 
bzr-git_0.5.4-1.dsc
 976db9b5eb7f9141fe78309d8fa24d2041cad0bfcf1ed2ed5ad24ee183848048 87423 
bzr-git_0.5.4.orig.tar.gz
 21f5f87958b4890ecd5bb5eff599c30981eca6bb83df5e7e6dc907f1920931a5 3201 
bzr-git_0.5.4-1.debian.tar.gz
 66fa9537f45c9cecf9b347cc55b9c68c4f5562b1b2cec6f6896bd87f76c17808 85176 
bzr-git_0.5.4-1_all.deb
Files: 
 071ff33307fd4459a57e4ac18eb07ec9 1380 vcs optional bzr-git_0.5.4-1.dsc
 159583709c5b50a1740495714346 87423 vcs optional bzr-git_0.5.4.orig.tar.gz
 dd6c1791ba9582b7cc49b5d43550442c 3201 vcs optional 
bzr-git_0.5.4-1.debian.tar.gz
 7591ca9fc1f711a2a91b2ff11c2bbe1c 85176 vcs optional bzr-git_0.5.4-1_all.deb

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

iEYEARECAAYFAk1T5nQACgkQPa9Uoh7vUnaTCACgjXYlMSfuWC4kMNm35diToviJ
+5EAnRY0WW33mJ2EkgXwbaonXqmkWTsZ
=Fusf
-END PGP SIGNATURE-


Accepted:
bzr-git_0.5.4-1.debian.tar.gz
  to main/b/bzr-git/bzr-git_0.5.4-1.debian.tar.gz
bzr-git_0.5.4-1.dsc
  to main/b/bzr-git/bzr-git_0.5.4-1.dsc
bzr-git_0.5.4-1_all.deb
  to main/b/bzr-git/bzr-git_0.5.4-1_all.deb
bzr-git_0.5.4.orig.tar.gz
  to main/b/bzr-git/bzr-git_0.5.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/e1pnzxt-ud...@franck.debian.org



Accepted bzr-rewrite 0.6.1+bzr227-1 (source all)

2011-02-10 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 14:20:08 +0100
Source: bzr-rewrite
Binary: bzr-rewrite bzr-rebase
Architecture: source all
Version: 0.6.1+bzr227-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr-rebase - transitional dummy package for bzr-rewrite
 bzr-rewrite - History rewriting plugin for Bazaar
Changes: 
 bzr-rewrite (0.6.1+bzr227-1) unstable; urgency=low
 .
   * New upstream snapshot.
+ Marks bzr 2.4 as being supported.
Checksums-Sha1: 
 acde30707fb0bae1c8e2c054f74fe4028b87f043 1375 bzr-rewrite_0.6.1+bzr227-1.dsc
 8d7ec941b1945a45b2d6e46246d2b8d459b2e5d7 31324 
bzr-rewrite_0.6.1+bzr227.orig.tar.gz
 49da9524cbdd1b59fca0a8687dbb4f57b3d57e96 3610 
bzr-rewrite_0.6.1+bzr227-1.debian.tar.gz
 6ca447f98195d0008e3e8722eec8067e8fb2db98 29510 
bzr-rewrite_0.6.1+bzr227-1_all.deb
 28c85dbe7fdee9b096689509d77ff9f512cd924a 6268 bzr-rebase_0.6.1+bzr227-1_all.deb
Checksums-Sha256: 
 50e9a2c2495092d6039d60cebd9fd2289fa21437f4d910dc6aad265a29c194f1 1375 
bzr-rewrite_0.6.1+bzr227-1.dsc
 714c5dada6c5cc55bb24f9950d853eea908f65592c39cecca2d69f7be8dde7b1 31324 
bzr-rewrite_0.6.1+bzr227.orig.tar.gz
 8447481a84546812e3a5751085ef45f27945743bf6138b6534f12f1568f04f20 3610 
bzr-rewrite_0.6.1+bzr227-1.debian.tar.gz
 ab074e45d3d236829a74629c0289b46ea1ec8fd992ea0bf177fa78345ff92f8c 29510 
bzr-rewrite_0.6.1+bzr227-1_all.deb
 1f9d8ab3dfcfb3b928ddf34063bf2c5f28ffbde0f03812ee8844158b3e16a4b6 6268 
bzr-rebase_0.6.1+bzr227-1_all.deb
Files: 
 a2fd8266f5e0a65866163980250280da 1375 vcs optional 
bzr-rewrite_0.6.1+bzr227-1.dsc
 a9bb1552a646a85b3e754bee254664f3 31324 vcs optional 
bzr-rewrite_0.6.1+bzr227.orig.tar.gz
 2928701671c79a4f93134fb4b18a29bf 3610 vcs optional 
bzr-rewrite_0.6.1+bzr227-1.debian.tar.gz
 6f85de6f615892913df4ef9767421f44 29510 vcs optional 
bzr-rewrite_0.6.1+bzr227-1_all.deb
 18a064165e52fd4165194586df1db397 6268 vcs optional 
bzr-rebase_0.6.1+bzr227-1_all.deb

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

iEYEARECAAYFAk1T55gACgkQPa9Uoh7vUnYX6wCaAs1Yix3CAPU2dtL5q1pq13GB
ok8An0djgLQLPxprNaItwf+ofm0+Og7A
=TsGj
-END PGP SIGNATURE-


Accepted:
bzr-rebase_0.6.1+bzr227-1_all.deb
  to main/b/bzr-rewrite/bzr-rebase_0.6.1+bzr227-1_all.deb
bzr-rewrite_0.6.1+bzr227-1.debian.tar.gz
  to main/b/bzr-rewrite/bzr-rewrite_0.6.1+bzr227-1.debian.tar.gz
bzr-rewrite_0.6.1+bzr227-1.dsc
  to main/b/bzr-rewrite/bzr-rewrite_0.6.1+bzr227-1.dsc
bzr-rewrite_0.6.1+bzr227-1_all.deb
  to main/b/bzr-rewrite/bzr-rewrite_0.6.1+bzr227-1_all.deb
bzr-rewrite_0.6.1+bzr227.orig.tar.gz
  to main/b/bzr-rewrite/bzr-rewrite_0.6.1+bzr227.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/e1pnzxn-xe...@franck.debian.org



Accepted bzr-upload 1.0.0+bzr83-1 (source all)

2011-02-10 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 18 Jan 2011 05:09:20 +0100
Source: bzr-upload
Binary: bzr-upload
Architecture: source all
Version: 1.0.0+bzr83-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr-upload - Bazaar plugin for uploading to web servers
Changes: 
 bzr-upload (1.0.0+bzr83-1) unstable; urgency=low
 .
   * New upstream snapshot.
+ Marks Bazaar 2.4 as being supported.
Checksums-Sha1: 
 49a8f33cd1647323ff567ce7400d3b218f2c272c 1399 bzr-upload_1.0.0+bzr83-1.dsc
 57155dfd7d3a7be9a0ed6f48b62bbf9dce55b54f 21536 
bzr-upload_1.0.0+bzr83.orig.tar.gz
 583e2a6527de5114e3b5247827d26187254c3780 3205 
bzr-upload_1.0.0+bzr83-1.debian.tar.gz
 d7a5f4d2f7f320264c60ec67392a606905a2199f 19436 bzr-upload_1.0.0+bzr83-1_all.deb
Checksums-Sha256: 
 1e6753f56e693a3b01556b04f49b38d53af2c053686a499c3c057179924a4b77 1399 
bzr-upload_1.0.0+bzr83-1.dsc
 1a6c3e8e013bb909dd5760c73d2e58d437ec8c213ba36b0cdb31cd379949f424 21536 
bzr-upload_1.0.0+bzr83.orig.tar.gz
 ed5081d1ee4bb51f5ec2b087be9c461eefcc75aa98bb3dc9ac12b5d55fbe8df7 3205 
bzr-upload_1.0.0+bzr83-1.debian.tar.gz
 dc84053730a77d66e67cb6c9cb4e3c5a9566d392375b902e9d1b6835a3d90cae 19436 
bzr-upload_1.0.0+bzr83-1_all.deb
Files: 
 bac5538f6cc4bb08200cf3160a8447ff 1399 vcs optional bzr-upload_1.0.0+bzr83-1.dsc
 fec3b28d86e3468867dbc4a018c15360 21536 vcs optional 
bzr-upload_1.0.0+bzr83.orig.tar.gz
 5270ebd80013f24eba20989d831e0d47 3205 vcs optional 
bzr-upload_1.0.0+bzr83-1.debian.tar.gz
 4ab490124e830e651a7649a3fe9500ed 19436 vcs optional 
bzr-upload_1.0.0+bzr83-1_all.deb

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

iEYEARECAAYFAk1T6T0ACgkQPa9Uoh7vUnZjPwCfWsSfrIEgdREUcDuABVESdXT2
7d4AnA1RQZa2UqNrSQhpfnruyWjOnfkd
=OXls
-END PGP SIGNATURE-


Accepted:
bzr-upload_1.0.0+bzr83-1.debian.tar.gz
  to main/b/bzr-upload/bzr-upload_1.0.0+bzr83-1.debian.tar.gz
bzr-upload_1.0.0+bzr83-1.dsc
  to main/b/bzr-upload/bzr-upload_1.0.0+bzr83-1.dsc
bzr-upload_1.0.0+bzr83-1_all.deb
  to main/b/bzr-upload/bzr-upload_1.0.0+bzr83-1_all.deb
bzr-upload_1.0.0+bzr83.orig.tar.gz
  to main/b/bzr-upload/bzr-upload_1.0.0+bzr83.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/e1pnzy9-bc...@franck.debian.org



Accepted clustershell 1.4-1 (source all)

2011-02-10 Thread Stéphan Gorget
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 26 Jan 2011 10:48:28 +0100
Source: clustershell
Binary: clustershell
Architecture: source all
Version: 1.4-1
Distribution: unstable
Urgency: low
Maintainer: Python Applications Packaging Team 
python-apps-t...@lists.alioth.debian.org
Changed-By: Stéphan Gorget phan...@gmail.com
Description: 
 clustershell - Distributed shell that provides an efficient python interface
Changes: 
 clustershell (1.4-1) unstable; urgency=low
 .
   * New upstream release
   * Add version number to the Build-Depends parameters :
 - python-support (= 0.6)
 - python-all(= 2.4)
 - python-setuptools (= 0.6)
   * Remove debian/dir useless file
Checksums-Sha1: 
 83b8a016d143e0a04f2ac8fb374bb019ebd6f2b6 2033 clustershell_1.4-1.dsc
 c45e7d3ab70cdd44fad3ff162d802435f9c303d8 135120 clustershell_1.4.orig.tar.gz
 78d4619d1f49a7533c2c0956879cad6c7bf0ebe5 9496 clustershell_1.4-1.debian.tar.gz
 0937b1d9f6986d8bd97640178d847fd3d3654d76 97994 clustershell_1.4-1_all.deb
Checksums-Sha256: 
 0dfcec8eda72de206f03900215ab8f49fb4d4f34c1ae46deeea116af69fb 2033 
clustershell_1.4-1.dsc
 d64d961345fa02817585c2856f34e7c9a775754e04d94301bd223486d353cc0d 135120 
clustershell_1.4.orig.tar.gz
 836e534e9c5cd1787dc26fda793c519468a34c3d64435d86fdd284ecfc59419c 9496 
clustershell_1.4-1.debian.tar.gz
 c1262b3a9a4efeb4e56419662f6ec7345aa9fdaf87a98f230ebe0a1477492bd3 97994 
clustershell_1.4-1_all.deb
Files: 
 dab2c2c4399fbb289a6d8a50c2bc5312 2033 net optional clustershell_1.4-1.dsc
 d5db30b70708df7693495c297ae39636 135120 net optional 
clustershell_1.4.orig.tar.gz
 57d34c1c10b44275fd50bc3cc9e5ff22 9496 net optional 
clustershell_1.4-1.debian.tar.gz
 a259dcea9fccb1f26b4e4c2dc7ed8a08 97994 net optional clustershell_1.4-1_all.deb

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

iQIcBAEBCAAGBQJNVBSmAAoJEOs2Fxpv+UNfx40P/jfeVFkDFi4m+NGE+VN+w3zA
0/5EiAYIJog0qYCkbAyRos/aNIyuGzOZ/NhSP7OYJcmH7A8M23yq+VMrJyU2FALb
YYe8oXWbRPHYvMcH/AzbA02EimQdSrg0hrO4AD+B4g5C1ngUprBDXEDgR4cSc5aF
86Sx5j0V8xIq+/eE5BtY+11n55f43nGvvN9iEwp74SZUvYPJwY9yd1AmZZzYSZJK
fcY1ynQPToOm6Is1SG2S7e2ARQyUy05Ui1v2lvasvqb4FgC30NvMi1QKNcCyQd57
0tyVDWFfeT+hnIwthpWQnGDdqPMEm2D9yUGSGUwdqR5PrBTKdXpVIklv5QcTOQ0w
qkZDpoe7lJHf2JwHwDgnfYPR43Q4Us8VqgkwAMppurpyuobRc7zCndz1Ydd0lZdA
3b6+iY+x/0TjUgR3bnwBx3TpPKseRYF7fSoiRVC7Udm28A68LgdWuFXCBc6razlJ
LA825ius4W3djGnN/S2XhNvWkmSPZ/Xml/5Ywp+Rw6gdB63lvCjA5/IOp+JihBT7
UKj36og4BqWEeGq7Txn2P+VZ40nyh50n3/99zMJqlJ2vvz4XUHkVYY5A8VvVAxfU
PkLoqXtjXFuVKCY5RClu+5J9qTvnC1i3FT1uMWrG3ns6CeM9CQ+ZmQ6JlssR+RwP
Co5w+OWvcXzBRgjOBiAB
=IOri
-END PGP SIGNATURE-


Accepted:
clustershell_1.4-1.debian.tar.gz
  to main/c/clustershell/clustershell_1.4-1.debian.tar.gz
clustershell_1.4-1.dsc
  to main/c/clustershell/clustershell_1.4-1.dsc
clustershell_1.4-1_all.deb
  to main/c/clustershell/clustershell_1.4-1_all.deb
clustershell_1.4.orig.tar.gz
  to main/c/clustershell/clustershell_1.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/e1pnzyr-g9...@franck.debian.org



Accepted cmip5-cmor-tables 1.3.5-1 (source all)

2011-02-10 Thread Alastair McKinstry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 16:28:15 +
Source: cmip5-cmor-tables
Binary: cmip5-cmor-tables
Architecture: source all
Version: 1.3.5-1
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry mckins...@debian.org
Changed-By: Alastair McKinstry mckins...@debian.org
Description: 
 cmip5-cmor-tables - CMIP5 tables for the Climate Model Output Rewriter library
Changes: 
 cmip5-cmor-tables (1.3.5-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 f8b8ecff35f4067a4ad63bb82cf68c166a1f293b 1166 cmip5-cmor-tables_1.3.5-1.dsc
 0e413aa458cce236ff241efdefdac7499127ceef 1118953 
cmip5-cmor-tables_1.3.5.orig.tar.gz
 d232a7caf8878dc91607bd9f368dc119591eb118 2059 
cmip5-cmor-tables_1.3.5-1.debian.tar.gz
 1094a51e290598dd6236b35f4afe36d1675f16bc 94652 
cmip5-cmor-tables_1.3.5-1_all.deb
Checksums-Sha256: 
 00f04bea9dd61f590d3002346a4b3c531222bc217fb7027014b9883a6459bbb9 1166 
cmip5-cmor-tables_1.3.5-1.dsc
 40d1fdfbc18978698f6931fb6ec3dad3b5cd131e9cc4e85d48466a6adacbcea4 1118953 
cmip5-cmor-tables_1.3.5.orig.tar.gz
 c02584bbfd2b2bcd7fbc7283959aef4049938e7aeeef749201d28f97e021cf6e 2059 
cmip5-cmor-tables_1.3.5-1.debian.tar.gz
 1cb9b19b8398f3cbd4314ba9ea9c213902eeb53be5008d0727418b4b03a7db62 94652 
cmip5-cmor-tables_1.3.5-1_all.deb
Files: 
 525780fdf5687db7bbbc9bb3ff56ae12 1166 utils optional 
cmip5-cmor-tables_1.3.5-1.dsc
 e9354da9ac7fbe3228e30f8852b8b3cc 1118953 utils optional 
cmip5-cmor-tables_1.3.5.orig.tar.gz
 598a4cf1bdb216b9f4ea574541d49a1e 2059 utils optional 
cmip5-cmor-tables_1.3.5-1.debian.tar.gz
 8847c8df4bd37f49f0a11aedd0c26d63 94652 utils optional 
cmip5-cmor-tables_1.3.5-1_all.deb

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

iEYEARECAAYFAk1UFDQACgkQQTK/kCo4XFerXACgy1fMNApUxATm01rtAHiT4lPK
75IAnjDzTPT353Pzqe1ioDTAwNho6tev
=lfsD
-END PGP SIGNATURE-


Accepted:
cmip5-cmor-tables_1.3.5-1.debian.tar.gz
  to main/c/cmip5-cmor-tables/cmip5-cmor-tables_1.3.5-1.debian.tar.gz
cmip5-cmor-tables_1.3.5-1.dsc
  to main/c/cmip5-cmor-tables/cmip5-cmor-tables_1.3.5-1.dsc
cmip5-cmor-tables_1.3.5-1_all.deb
  to main/c/cmip5-cmor-tables/cmip5-cmor-tables_1.3.5-1_all.deb
cmip5-cmor-tables_1.3.5.orig.tar.gz
  to main/c/cmip5-cmor-tables/cmip5-cmor-tables_1.3.5.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/e1pnzzk-kw...@franck.debian.org



Accepted coccinelle 0.2.4.deb-3 (source amd64)

2011-02-10 Thread Євгеній Мещеряков
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 16:14:38 +0100
Source: coccinelle
Binary: coccinelle
Architecture: source amd64
Version: 0.2.4.deb-3
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Євгеній Мещеряков eu...@debian.org
Description: 
 coccinelle - semantic patching tool for C
Changes: 
 coccinelle (0.2.4.deb-3) unstable; urgency=low
 .
   * Upload to unstable
   * Fix watch file for rc versions
Checksums-Sha1: 
 809927cb24065772a57d549ca3f2975f03b2b784 1667 coccinelle_0.2.4.deb-3.dsc
 5d074267d90726f42856c9ff436dca0c7e77c2a8 7492 
coccinelle_0.2.4.deb-3.debian.tar.gz
 abb325ee9f3a05105796530b27b5a456c88908e1 2921816 
coccinelle_0.2.4.deb-3_amd64.deb
Checksums-Sha256: 
 aea4668a13b31b22c00ec4b3ea2c6a7d66435510dc391682187f177c4e98dcfd 1667 
coccinelle_0.2.4.deb-3.dsc
 c3d9a88476b8519a2847d9d085a4d900e4eea6fc6fa29025f08277e04d4f7fda 7492 
coccinelle_0.2.4.deb-3.debian.tar.gz
 657d197b16dce50c9967a1a8ba0171a27748bc1e5edd67c0dbdf7bc9d34bb7e6 2921816 
coccinelle_0.2.4.deb-3_amd64.deb
Files: 
 7c8c56914960486290b9095d76ba75bf 1667 devel optional coccinelle_0.2.4.deb-3.dsc
 ede02ec0acc2b39e541b2043f988b30a 7492 devel optional 
coccinelle_0.2.4.deb-3.debian.tar.gz
 723e1ac4881a3b290e02ce49f82cd0c3 2921816 devel optional 
coccinelle_0.2.4.deb-3_amd64.deb

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

iEYEARECAAYFAk1UEZIACgkQKaC6+zmozOJUhgCdEAbTQLXgR2zLPjAtUas/aSSZ
bcIAoJXKd6IvmOStJosnxUQlxQ0kbjoA
=Fgpw
-END PGP SIGNATURE-


Accepted:
coccinelle_0.2.4.deb-3.debian.tar.gz
  to main/c/coccinelle/coccinelle_0.2.4.deb-3.debian.tar.gz
coccinelle_0.2.4.deb-3.dsc
  to main/c/coccinelle/coccinelle_0.2.4.deb-3.dsc
coccinelle_0.2.4.deb-3_amd64.deb
  to main/c/coccinelle/coccinelle_0.2.4.deb-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/e1pnzzb-ow...@franck.debian.org



Accepted csound 1:5.13.0~dfsg-2 (source all amd64)

2011-02-10 Thread Felipe Sateler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 11:54:10 -0300
Source: csound
Binary: csound csound-gui csound-utils libcsound64-5.2 libcsnd-java 
libcsound64-dev libcsnd-dev libcsoundac-dev pd-csound python-csound libcsnd5.2 
liblua5.1-luacsnd5.2 tclcsound libcsoundac5.2 python-csoundac csladspa 
libcsound64-doc
Architecture: source all amd64
Version: 1:5.13.0~dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Felipe Sateler fsate...@debian.org
Description: 
 csladspa   - LADSPA plugin for Csound
 csound - powerful and versatile sound synthesis software
 csound-gui - GUI interfaces and opcodes for Csound
 csound-utils - miscellaneous utilities for the Csound system
 libcsnd-dev - development files for Csound -- C++ API
 libcsnd-java - Java bindings for the Csound API
 libcsnd5.2 - C++ bindings for the Csound API
 libcsound64-5.2 - main library for Csound
 libcsound64-dev - development files for Csound
 libcsound64-doc - Csound API documentation
 libcsoundac-dev - development files for CsoundAC
 libcsoundac5.2 - the Csound Algorithmic Composition library
 liblua5.1-luacsnd5.2 - Lua bindings for the Csound API
 pd-csound  - Csound external for PureData
 python-csound - Python bindings for Csound
 python-csoundac - Python bindings for CsoundAC
 tclcsound  - Tcl bindings and interpreters for Csound
Changes: 
 csound (1:5.13.0~dfsg-2) unstable; urgency=low
 .
   * Upload to unstable.
Checksums-Sha1: 
 2ae8ba1a4c66e0fade9beb50f6c9b9881a745c60 2702 csound_5.13.0~dfsg-2.dsc
 0753fba5b9e4d2b258c1886a36774a03cc46bf60 46048 
csound_5.13.0~dfsg-2.debian.tar.gz
 e261036f76a4055e9184bef803c16d4e999aa87e 189522 
libcsound64-dev_5.13.0~dfsg-2_all.deb
 8aa7549872c96351f3c7b908c5cb8f533f03d5aa 151238 
libcsnd-dev_5.13.0~dfsg-2_all.deb
 335195374ee45b95665d28fdff7e12762e6084db 175128 
libcsoundac-dev_5.13.0~dfsg-2_all.deb
 da5dd9574aafc163975546211f490bcb54dd7a7f 1885410 
libcsound64-doc_5.13.0~dfsg-2_all.deb
 c1d6263976f8494026ccf35d49fa2296d536c023 328318 csound_5.13.0~dfsg-2_amd64.deb
 961e22303b958c944e2bd0fc1675bcddf7fab435 261244 
csound-gui_5.13.0~dfsg-2_amd64.deb
 110fc884be5a05bab482ef0ad410aae1a867080a 184490 
csound-utils_5.13.0~dfsg-2_amd64.deb
 6b2e2da6f92c09a0dd0a9a2ad3403e9dd96003c4 1375324 
libcsound64-5.2_5.13.0~dfsg-2_amd64.deb
 c3abf045d3860a3124638b78e6f35c6dcdea400f 295502 
libcsnd-java_5.13.0~dfsg-2_amd64.deb
 d9d5811361572cc74a2b8f7521d6cd8b5f63dec2 150558 
pd-csound_5.13.0~dfsg-2_amd64.deb
 74489cca4fc61f3c50f30b26673ab0fb7b86c8e6 418874 
python-csound_5.13.0~dfsg-2_amd64.deb
 8340f04cf30b58b6da384c3ae640f99d4aba538b 206830 
libcsnd5.2_5.13.0~dfsg-2_amd64.deb
 0ff3d48e186f4e1bd4a9d931ab34081302ab03d8 331562 
liblua5.1-luacsnd5.2_5.13.0~dfsg-2_amd64.deb
 2be299df990d3f20d7852f582f28491bd14224be 167894 
tclcsound_5.13.0~dfsg-2_amd64.deb
 79dc714055e0e471be59606ea1a5598c6a8d6023 415486 
libcsoundac5.2_5.13.0~dfsg-2_amd64.deb
 d7a68c702adf78628d96b3b4a4a1c5d493cd896d 626796 
python-csoundac_5.13.0~dfsg-2_amd64.deb
 33654bd76ac3de7abdc665d6355d5581745415c5 161016 
csladspa_5.13.0~dfsg-2_amd64.deb
Checksums-Sha256: 
 cf8c9a65ba40eea1aa5f6ff99aca46a08675fa65000d2778d3e6912fd18d4bce 2702 
csound_5.13.0~dfsg-2.dsc
 97401d30037eaa4fd0e729c8e5894bc3286ce0439b3e210ce9bd08737ae5fa4a 46048 
csound_5.13.0~dfsg-2.debian.tar.gz
 46e28672f9a6762e322ab129f8941a5b03689f1f6dabc7a5f3f16fc1d03ab97b 189522 
libcsound64-dev_5.13.0~dfsg-2_all.deb
 3209da26b41be6f085fb7fff446b3933990304fef1783270e3742805edddb4e1 151238 
libcsnd-dev_5.13.0~dfsg-2_all.deb
 590d9b2c6dc2be6c7a3dadf5d3ed3f82eef81bd24b45cb57714260aa8f6805c9 175128 
libcsoundac-dev_5.13.0~dfsg-2_all.deb
 9c6f5c9c51245371b640c43c3beaf9c69679804998bf929e62728237801521b8 1885410 
libcsound64-doc_5.13.0~dfsg-2_all.deb
 e9ea03519359381dda6788afd601ffd39e87c0ecaee5b8105d249d1ad7be885b 328318 
csound_5.13.0~dfsg-2_amd64.deb
 241673c3dbff066cda09d093ec07d89a3a96c4e675951e4a57a1dd333c261500 261244 
csound-gui_5.13.0~dfsg-2_amd64.deb
 cf85e99733ce463b2ba232805259792b6f7a47285948e0fc5672323721504840 184490 
csound-utils_5.13.0~dfsg-2_amd64.deb
 564ee3af73fe8180026d590431d56b8dca6e4fdbfebc47d0459a21d11ac8e9c1 1375324 
libcsound64-5.2_5.13.0~dfsg-2_amd64.deb
 9fbdb0bbf91143501913e46a90cf559e0642c093f850c685f2f3d583be9ca8e5 295502 
libcsnd-java_5.13.0~dfsg-2_amd64.deb
 174c3e2be5053efe0bc99324952e1ae8567fc9b08f69d67d4672b6f9de57ef6d 150558 
pd-csound_5.13.0~dfsg-2_amd64.deb
 591908a58df7d7de73a310e5f9fd9c52327681dbe5ab5891f2bf7e70881a7ed8 418874 
python-csound_5.13.0~dfsg-2_amd64.deb
 ecb4d9f851393e9766321a7b34e971a9be17a86b0dd7f21dd61e6f9081704dbc 206830 
libcsnd5.2_5.13.0~dfsg-2_amd64.deb
 0d29aa46bddd45c185df8b8cb647bcc3ae91ad14fcb1f31b48ab4596b1965cb9 331562 
liblua5.1-luacsnd5.2_5.13.0~dfsg-2_amd64.deb
 c2cf4aef601e31e23423f981541bd6f3a0a182e2ab72c546cd2409cb3e1f61b6 167894 
tclcsound_5.13.0~dfsg-2_amd64.deb
 

Accepted dans-gdal-scripts 0.18-1 (source i386)

2011-02-10 Thread Francesco Paolo Lovergine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 13:42:51 +0100
Source: dans-gdal-scripts
Binary: dans-gdal-scripts
Architecture: source i386
Version: 0.18-1
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-de...@lists.alioth.debian.org
Changed-By: Francesco Paolo Lovergine fran...@debian.org
Description: 
 dans-gdal-scripts - GDAL contributed tools by Geographic Information Network 
of Alask
Changes: 
 dans-gdal-scripts (0.18-1) unstable; urgency=low
 .
   * New upstream release.
   * Moving to source 3.0 format and quilt.
   * Moved from svn to git repository and changed Vcs-* fields.
Checksums-Sha1: 
 4c7fe1bc4a92185a36c4f720287f2853d843fd81 1375 dans-gdal-scripts_0.18-1.dsc
 693d19fe7635991e3b78d35a086c1e91e7de0c3c 163853 
dans-gdal-scripts_0.18.orig.tar.gz
 363521b6e66ff215e9951cf4c23550c61ae6cc7c 4942 
dans-gdal-scripts_0.18-1.debian.tar.gz
 4b0ec491194d6680f7764b0a9890c3da12a18260 354988 
dans-gdal-scripts_0.18-1_i386.deb
Checksums-Sha256: 
 21d43ca6f05e665164d767a7210fa932c90aef6a2593434ca88dfb3cfd7e0b25 1375 
dans-gdal-scripts_0.18-1.dsc
 6419ff0d8b0d9e8cfdaee1da404a65d4cc8b156cafaba639d436238e3001 163853 
dans-gdal-scripts_0.18.orig.tar.gz
 e3b20d7f3377313066b2849ad428ee4b60688c33fc47d5491e346bb4d114e7bc 4942 
dans-gdal-scripts_0.18-1.debian.tar.gz
 22670c9d80d54313ccdb44825d01be285608b39e491820d48b49fc29abfea438 354988 
dans-gdal-scripts_0.18-1_i386.deb
Files: 
 ec734e7de791335ac0f3d41c1ae1d907 1375 science extra 
dans-gdal-scripts_0.18-1.dsc
 5eaf90623eb8f34ce1b8efc8de98ab04 163853 science extra 
dans-gdal-scripts_0.18.orig.tar.gz
 73ad516c8199de2d3268f321275916fa 4942 science extra 
dans-gdal-scripts_0.18-1.debian.tar.gz
 ccdfbfe106a7c3c83ef423ed9331390a 354988 science extra 
dans-gdal-scripts_0.18-1_i386.deb

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

iEYEARECAAYFAk1T3jcACgkQpFNRmenyx0eDYQCfaq1tfbS3OZGmyAr71jYumqZy
Xp0AoLgO3uGmil9M1lbe0rRnYP1jqUqE
=A2iO
-END PGP SIGNATURE-


Accepted:
dans-gdal-scripts_0.18-1.debian.tar.gz
  to main/d/dans-gdal-scripts/dans-gdal-scripts_0.18-1.debian.tar.gz
dans-gdal-scripts_0.18-1.dsc
  to main/d/dans-gdal-scripts/dans-gdal-scripts_0.18-1.dsc
dans-gdal-scripts_0.18-1_i386.deb
  to main/d/dans-gdal-scripts/dans-gdal-scripts_0.18-1_i386.deb
dans-gdal-scripts_0.18.orig.tar.gz
  to main/d/dans-gdal-scripts/dans-gdal-scripts_0.18.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/e1pna1m-0001yk...@franck.debian.org



Accepted dictionaries-common 1.9.3 (source all)

2011-02-10 Thread Agustin Martin Domingo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 12:44:51 +0100
Source: dictionaries-common
Binary: dictionaries-common dictionaries-common-dev
Architecture: source all
Version: 1.9.3
Distribution: unstable
Urgency: low
Maintainer: Agustin Martin Domingo agmar...@debian.org
Changed-By: Agustin Martin Domingo agmar...@debian.org
Description: 
 dictionaries-common - Common utilities for spelling dictionary tools
 dictionaries-common-dev - Developer tools and Policy for spelling dictionary 
tools
Changes: 
 dictionaries-common (1.9.3) unstable; urgency=low
 .
   * debian/rules: Do not use '-d' when calling dh_perl
Checksums-Sha1: 
 13b01fa23abb50d43492b4643d66c1674d675e18 1128 dictionaries-common_1.9.3.dsc
 75eb1cae68d6d5facadae8f34e14b18f6cbf8d4e 319992 
dictionaries-common_1.9.3.tar.gz
 54c00d4f8619ffb098c2e022cc7153433f7151b9 301432 
dictionaries-common_1.9.3_all.deb
 7c8acb4abd6458721125a290f6497117f9773c46 130874 
dictionaries-common-dev_1.9.3_all.deb
Checksums-Sha256: 
 e35008c3d5b23c9f0caa32157f1e68f2e139677167eb34a2a8a836b272ac6728 1128 
dictionaries-common_1.9.3.dsc
 9456389c58cd25b85aba6f5f2f00d13bbf8ba4425247f12440f7d0122a6b5d86 319992 
dictionaries-common_1.9.3.tar.gz
 a895cc056dfe0d22f8a4ed6df2fe8eb6fac35cd16f3fa3ce59d4237ee24b3ce5 301432 
dictionaries-common_1.9.3_all.deb
 0e8ce820954d0d443ab2f57e334b82d0c55de6350eb8aabed52878f2b072b5fc 130874 
dictionaries-common-dev_1.9.3_all.deb
Files: 
 1fb99a16f83fb269e55d306adbb4c3c3 1128 text optional 
dictionaries-common_1.9.3.dsc
 e7164fad73eae76b00e72c5eb62d1d20 319992 text optional 
dictionaries-common_1.9.3.tar.gz
 69c5061547b171dbc923e19b2c4b426b 301432 text optional 
dictionaries-common_1.9.3_all.deb
 49da7ce7bd5526e8da53beb1f3cc2edf 130874 devel extra 
dictionaries-common-dev_1.9.3_all.deb

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

iD8DBQFNU9VfTShHqj72DpwRAtF5AJ0WSSGCZXcuxHbvvgYsOeVNiQRcJACgj3Cp
rK4euhYkE30WETUhdKOw34o=
=pyC+
-END PGP SIGNATURE-


Accepted:
dictionaries-common-dev_1.9.3_all.deb
  to main/d/dictionaries-common/dictionaries-common-dev_1.9.3_all.deb
dictionaries-common_1.9.3.dsc
  to main/d/dictionaries-common/dictionaries-common_1.9.3.dsc
dictionaries-common_1.9.3.tar.gz
  to main/d/dictionaries-common/dictionaries-common_1.9.3.tar.gz
dictionaries-common_1.9.3_all.deb
  to main/d/dictionaries-common/dictionaries-common_1.9.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/e1pna1x-0001be...@franck.debian.org



Accepted dwdiff 1.9-0.1 (source amd64)

2011-02-10 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 10:12:00 -0500
Source: dwdiff
Binary: dwdiff
Architecture: source amd64
Version: 1.9-0.1
Distribution: unstable
Urgency: low
Maintainer: Olexandr Kravchuk sashko.deb...@gmail.com
Changed-By: Clint Adams cl...@debian.org
Description: 
 dwdiff - front-end for the diff program that operates word by word
Closes: 612771
Changes: 
 dwdiff (1.9-0.1) unstable; urgency=low
 .
   * NMU
   * New upstream release.  closes: #612771.
   * Change dh_clean -k to dh_prep.
   * Add a watch file.
Checksums-Sha1: 
 26f003dd0dce2c87fa5bc9aa54b2a340d11aa34d 1662 dwdiff_1.9-0.1.dsc
 69e97a0994552b929693c109bfe092353b89b381 76488 dwdiff_1.9.orig.tar.gz
 39503cbecb0252437f31517a0186830b338ef6f7 2832 dwdiff_1.9-0.1.diff.gz
 2f99fbe22a4e04f35b75a24c9d53b11675f94be2 56230 dwdiff_1.9-0.1_amd64.deb
Checksums-Sha256: 
 c0fba7e1fe97df7c46d76c46278e281759e657955c3e9a4cb77603ca10564219 1662 
dwdiff_1.9-0.1.dsc
 602a6728f317717041ff83d46737c92e2b08491fd44370f70d956fc7b7db6219 76488 
dwdiff_1.9.orig.tar.gz
 fd06719562af7230ec13225133fd109f52637402e65b92c56e05ab6ca5233222 2832 
dwdiff_1.9-0.1.diff.gz
 b9022755272b34c6f4754ee2c866eeb052fff1e57cd1c0d09186dfbe173be0db 56230 
dwdiff_1.9-0.1_amd64.deb
Files: 
 19a61d7e090b0b94136aa4119a3c9c67 1662 utils extra dwdiff_1.9-0.1.dsc
 f483d8d8dab7a972ef21d5096e07fd47 76488 utils extra dwdiff_1.9.orig.tar.gz
 4f2a6d0c630db5dfdc664e89d6b76bd5 2832 utils extra dwdiff_1.9-0.1.diff.gz
 503ade50a7e675ef588e32cd2f980690 56230 utils extra dwdiff_1.9-0.1_amd64.deb

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

iQIcBAEBCgAGBQJNVAMgAAoJEFWSMx4ZnTio2wgP/AtvQaBkK6mnRpRerjXN0gbD
ImhgKk6EIVXAcMX/OBJj5baA+kpNZMKWO6///7df1FdIMJm1Algv8ITAFjKNSFjm
c7WI9W5sLWQe5UG1sAA0EvB6D4glD1KpFl88jOOu3H4CNA4w3+PvAQEmlKPUQLqj
os7jlj5Xfrv0NCRhvuiZvhJGw3txVaDLIezNtomdvKf/L0kXaZ1Si0oZL8EKubP/
FNCOzRmlQAC5YunkQo8AX92oUf7E5j/FYcfyh73jP51IMrhXRb3zC/ek38AeFm5S
gbgpJhzBE2CNjHYzPCRvC9bHnusqpWgdtlVQN4k0C3rCQE6e7YGOwrzvR/RWc4PN
ulspboGgJvxcmuXeqQVSVndCxJbMp942zZmPawwe9gFDnTPBxOpY6slaloVoxqdr
5H+3kaHJk6z/y4qx7abL9FP2vpl+3ibMvLupJ/7vEzztuCZ76OvRUC2TdFa45hq1
q8eXQb364HPNuL2uw+C290GFBlj7CKYE0CjlERnH++FPbA3YUDa8X4OxLclLUFVD
2UG4nL9hXJZQQDBzqriYgKeVsAhi95fcnXaMokRd6NjeR1iuLZ2cGjzVznfQW/iz
U4ZTx1d294/rnGDdxsi2LxXIdVO16PCIjrNWeaXYAYy8wsUT7lxvDGvu2IDFXsoe
tj4Wk+TIBSiXWlQFGf7R
=8foi
-END PGP SIGNATURE-


Accepted:
dwdiff_1.9-0.1.diff.gz
  to main/d/dwdiff/dwdiff_1.9-0.1.diff.gz
dwdiff_1.9-0.1.dsc
  to main/d/dwdiff/dwdiff_1.9-0.1.dsc
dwdiff_1.9-0.1_amd64.deb
  to main/d/dwdiff/dwdiff_1.9-0.1_amd64.deb
dwdiff_1.9.orig.tar.gz
  to main/d/dwdiff/dwdiff_1.9.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/e1pna2a-0001gs...@franck.debian.org



Accepted enum 1.0.3-1 (source amd64)

2011-02-10 Thread Jan Hauke Rahm
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 16:12:52 +0100
Source: enum
Binary: enum
Architecture: source amd64
Version: 1.0.3-1
Distribution: unstable
Urgency: low
Maintainer: Jan Hauke Rahm j...@debian.org
Changed-By: Jan Hauke Rahm j...@debian.org
Description: 
 enum   - seq- and jot-like enumerator
Changes: 
 enum (1.0.3-1) unstable; urgency=low
 .
   * New upstream release
 - Fix linking with --as-needed (thanks to Michael Bienia) making the
   Ubuntu patch unnecessary
Checksums-Sha1: 
 80fe9327295f252188b2708f23dc7fcdd6dffeb3 1769 enum_1.0.3-1.dsc
 6eb3f8fe6d2f5c90ef161f36b9c9d23faec68df2 99657 enum_1.0.3.orig.tar.bz2
 ad42c2b3958c5af5dd76d2124498cb4277a31236 2474 enum_1.0.3-1.debian.tar.gz
 6e58af0874fc5c4f47f8f7580f58e16b36bd27b2 23984 enum_1.0.3-1_amd64.deb
Checksums-Sha256: 
 da52fbf6fa0d215c63b48a3b8507bb51acdc025f008744e4509abed51146d1eb 1769 
enum_1.0.3-1.dsc
 480b428c894f69563ec9f25bee0ed154697065dfbc332ca3cabb7e0f2ee6f3fe 99657 
enum_1.0.3.orig.tar.bz2
 05df1d507b948b27d6ff46cf5cd1c1f041f11c36d44b5b62cf797afda7baa643 2474 
enum_1.0.3-1.debian.tar.gz
 280b7fefd2f0d00107ce988edb79511291fdbda71eb246032362fcd100a7d845 23984 
enum_1.0.3-1_amd64.deb
Files: 
 1356d9a74d0d32e7be3ed2ad66e7120b 1769 utils optional enum_1.0.3-1.dsc
 a308c442763ae5105e08215df1a4cab1 99657 utils optional enum_1.0.3.orig.tar.bz2
 847d235502918894a09c8a9ad12b1190 2474 utils optional enum_1.0.3-1.debian.tar.gz
 e94f21aba81b9edd6df6998ed7bbfd00 23984 utils optional enum_1.0.3-1_amd64.deb

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

iQIcBAEBCgAGBQJNVAIcAAoJEOCD7BUSMcRlfkEP/j1gkfqRgYIk4IEBtjuA7LRP
VxPm0gdg3t71+R5QkMG6zehBsDFiGaLKyTK5PyOwvQjRoyI254VYmmf5ChRPY14F
fZfcL81wKzu8ksVyDvWRSGt+V9s2YtxTWEgr+Z01tB8Tzmg1F3Vx0VzRTvK+jR+2
D4BXtZ8UtY4pxR4Z6xJFOzu779/5P5fD3P3Izj+xzvcwyUYpXl3oqpOXl3wLoWlf
IEXv50g6Jt/y5+E2P0PPm+5nZAGEwsqtwKTQVKMvg9vsdvdYDzIWVGAHtt2L/O0+
27bJ7BHsYY2gDYYf8DsbudxFrBUgU1nC0f15guGxK93XcaQtqMlTwoEFzg8LbPWt
QGndn3nyAUMcUbq0DJAr86breJFs0j60PViiSX6ws7dB78zWyqx0bmqzQNsn1EEe
7sUngK8PismWCPaTz0VbE3BQe7vjWw9pneRr5zfk+HdYmzszkJoPd3BT5bEijCDE
T0RlTodCaX707gmEGc+Z+Par6s6QQqz9sHguxpVvssBpd9WZEgMb77TLuS7gZSGM
DO/uBTi9atT1Vi02FsjPWrXLXh3sSt7P8OrInLyfJ3bLuL+Nif6Q+tw8ViRz0AMN
zGpHYLGjUd+T3WO/Fg8bRBR9Q8Nme47Ds8T0XLD2MTk1nMLCtIt2wbDdqsjyHOrA
BkjzyYEtP4gWPWwwGcne
=TE6T
-END PGP SIGNATURE-


Accepted:
enum_1.0.3-1.debian.tar.gz
  to main/e/enum/enum_1.0.3-1.debian.tar.gz
enum_1.0.3-1.dsc
  to main/e/enum/enum_1.0.3-1.dsc
enum_1.0.3-1_amd64.deb
  to main/e/enum/enum_1.0.3-1_amd64.deb
enum_1.0.3.orig.tar.bz2
  to main/e/enum/enum_1.0.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/e1pna37-0001uk...@franck.debian.org



Accepted gammu 1.29.90-1 (source all amd64)

2011-02-10 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 15:39:30 +0100
Source: gammu
Binary: gammu gammu-smsd libgammu-dev libgammu-i18n libgammu7 libgsmsd7 
libgammu-dbg python-gammu python-gammu-dbg gammu-doc python-gammu-doc
Architecture: source all amd64
Version: 1.29.90-1
Distribution: experimental
Urgency: low
Maintainer: Michal Čihař ni...@debian.org
Changed-By: Michal Čihař ni...@debian.org
Description: 
 gammu  - mobile phone management utility
 gammu-doc  - The Gammu Manual
 gammu-smsd - SMS message daemon
 libgammu-dbg - mobile phone management library (debugger symbols)
 libgammu-dev - mobile phone management library (development files)
 libgammu-i18n - mobile phone management library (i18n files)
 libgammu7  - mobile phone management library
 libgsmsd7  - SMS daemon helper library
 python-gammu - Python module to communicate with mobile phones
 python-gammu-dbg - Python module to communicate with mobile phones (debug 
version)
 python-gammu-doc - Transitional dummy package for Gammu documentation
Closes: 482436
Changes: 
 gammu (1.29.90-1) experimental; urgency=low
 .
   * New upstream release.
 - Adds support for S60 phones (Closes: #482436).
Checksums-Sha1: 
 a870cfc1c97c351d6bf4587c495d46f1b2c534e4 2308 gammu_1.29.90-1.dsc
 fffe257a3820feb44deecb155c92cb6b55f57d57 7956056 gammu_1.29.90.orig.tar.gz
 31c93df3b95b70cc08e4297abf808f7f5bb8ae3b 13854 gammu_1.29.90-1.debian.tar.gz
 56ea6d335d0c986ba1be935cf14af12a6f33bb91 326616 libgammu-i18n_1.29.90-1_all.deb
 eb3c7ba95d12495c9e4f680ef7255876ba35c399 889260 gammu-doc_1.29.90-1_all.deb
 3e1cc5c4223529d3a1132e98c332f9a7b40885b3 80922 
python-gammu-doc_1.29.90-1_all.deb
 0e75382f7ef315bdced9babe4d3cb3f4c5f622b6 289866 gammu_1.29.90-1_amd64.deb
 13184a2f5e2e0a4f3560fd26b27d5fb4b041661c 140478 gammu-smsd_1.29.90-1_amd64.deb
 79edc8bba7ce4e02e4331e33a8e411c32cc61d1e 272594 
libgammu-dev_1.29.90-1_amd64.deb
 834e2e5efc58b9514536766b4dcff5bd255f4e7e 569202 libgammu7_1.29.90-1_amd64.deb
 caf3eea374aaf94abf1199da58d10283bb0cf9f3 120048 libgsmsd7_1.29.90-1_amd64.deb
 8adcc15e6ffeb7020368158e9fbd535f5269c5a0 2030694 
libgammu-dbg_1.29.90-1_amd64.deb
 2caa6cefa34bc63a1bd83f6535529e527a6d1d7d 257550 
python-gammu_1.29.90-1_amd64.deb
 3b97a6a0a022f10ba6c7dd9b06e2b0e539305ae1 268016 
python-gammu-dbg_1.29.90-1_amd64.deb
Checksums-Sha256: 
 8cba09fdacca2e439eaa22d3c35f2de0c8b7b469e8db85daa4547f18a8264b73 2308 
gammu_1.29.90-1.dsc
 6592ae7bb829cb540a69ee0107f110cb38c0cbab37d25db7ec954fe4ecf7bc7a 7956056 
gammu_1.29.90.orig.tar.gz
 dee8bb599452c92be5f3d38e1d6540c743b52ce139a641a423f34dddef1f21bc 13854 
gammu_1.29.90-1.debian.tar.gz
 f3d7a7c3e7282d56e9c38e8d07fd387c5660dc21c540ff394c8f9912ad05ca1b 326616 
libgammu-i18n_1.29.90-1_all.deb
 1ed2b7311d51dd6a6f677807fd3904307990deb30708403404e4005397e674a3 889260 
gammu-doc_1.29.90-1_all.deb
 e3c8ab48f1823dcadea99123e9757a0c3bc16edf6cebd35d762d04253040bf39 80922 
python-gammu-doc_1.29.90-1_all.deb
 3c3247cf359b907433151544d1e1c385ed6b6db3625a7f410cb1fda33de103d1 289866 
gammu_1.29.90-1_amd64.deb
 bacc690abf13dc40b8ae74141d11cd78dc5f90fd6d23908e97532a440364a758 140478 
gammu-smsd_1.29.90-1_amd64.deb
 497f229e3b321460e7741a3d1e61c255202c601ebae5b1a7c5aec697c232ce45 272594 
libgammu-dev_1.29.90-1_amd64.deb
 311ebb180c687c0263455baaa1fbad15528f2d94bc66a6ac003bf9d4a5b1417d 569202 
libgammu7_1.29.90-1_amd64.deb
 87d6a88a8953b96f39157089366f60ddfb0950b12ab03b1dd96696253818a72e 120048 
libgsmsd7_1.29.90-1_amd64.deb
 df9ae974f5cfbdff5c156a0b836df9f1b7705abecfaa1e32f14cc357dd5eddd8 2030694 
libgammu-dbg_1.29.90-1_amd64.deb
 6416410769c364b842535ebd45622d00eb0dcb276df4ec3388920880e8ede44d 257550 
python-gammu_1.29.90-1_amd64.deb
 228fbdf7f96b1a58f9e3d55378d80454b8cf149e9c2640732488835b50f1c165 268016 
python-gammu-dbg_1.29.90-1_amd64.deb
Files: 
 6bdf857f987a71ca87d79b1e93ee426e 2308 comm optional gammu_1.29.90-1.dsc
 2b648d396d019ddaf003be5c9c0e0d5f 7956056 comm optional 
gammu_1.29.90.orig.tar.gz
 6f35b8f3c7cffa142527da2da0c87e3c 13854 comm optional 
gammu_1.29.90-1.debian.tar.gz
 cc871757aa9707da6a10671b158bb1f2 326616 localization optional 
libgammu-i18n_1.29.90-1_all.deb
 24bd1fc31f0926c0deadc948e37cdd1a 889260 doc optional 
gammu-doc_1.29.90-1_all.deb
 7a1615599df1eb5d3b0d848a817addbb 80922 doc optional 
python-gammu-doc_1.29.90-1_all.deb
 cf44051cc77ef42a118e0c9f1f431b2a 289866 comm optional gammu_1.29.90-1_amd64.deb
 bfe9d407a63a628aaf4c3c1e2a77976d 140478 comm optional 
gammu-smsd_1.29.90-1_amd64.deb
 060901b2736c92f9d1a4fc046944e7fd 272594 libdevel optional 
libgammu-dev_1.29.90-1_amd64.deb
 47d1829645476f14c0b77b03e3212b12 569202 libs optional 
libgammu7_1.29.90-1_amd64.deb
 a60c1a4fed629af115550c6c4670dbeb 120048 libs optional 
libgsmsd7_1.29.90-1_amd64.deb
 fe25eba7e1c93acfb42e3ad6220987f5 2030694 debug extra 
libgammu-dbg_1.29.90-1_amd64.deb
 e405783eaa91f2bc772d33e974071684 257550 python optional 
python-gammu_1.29.90-1_amd64.deb
 3def04bf6fcfee04eb72253a50ad262c 268016 debug 

Accepted gmic 1.4.8.0+dfsg-1 (source amd64)

2011-02-10 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 13:13:22 +0100
Source: gmic
Binary: gmic gimp-gmic
Architecture: source amd64
Version: 1.4.8.0+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Bernd Zeimetz b...@debian.org
Changed-By: Bernd Zeimetz b...@debian.org
Description: 
 gimp-gmic  - GIMP plugin for GREYC's Magic Image Converter
 gmic   - GREYC's Magic Image Converter
Changes: 
 gmic (1.4.8.0+dfsg-1) unstable; urgency=low
 .
   * [33847b44] Merge commit 'upstream/1.4.8.0+dfsg'
   * [6e771817] Refreshing patches.
Checksums-Sha1: 
 a6545e7c8a73347b113e741bdbfab0041b3beba7 2038 gmic_1.4.8.0+dfsg-1.dsc
 786754c21068572744401889b2b4c66b7c863713 862317 gmic_1.4.8.0+dfsg.orig.tar.gz
 52415602c1922fa474b46c6963d2e1264127e824 13243 
gmic_1.4.8.0+dfsg-1.debian.tar.gz
 432dffcfbb5406edb9b6b0791f66887dc0a8deb4 4945642 gmic_1.4.8.0+dfsg-1_amd64.deb
 30286115365fac588cb855d8922292819a0c62ac 1073100 
gimp-gmic_1.4.8.0+dfsg-1_amd64.deb
Checksums-Sha256: 
 44a780f6fd3919f30692012ef0db01e1226793b49a83d197be6dd5aa994d8923 2038 
gmic_1.4.8.0+dfsg-1.dsc
 04d4fefe6f253081fe91f10f14e355076037f01cdccf3b4facc6d94bf0f16690 862317 
gmic_1.4.8.0+dfsg.orig.tar.gz
 befcb271c95ed234d9b7074865a0bf37b8820ca4bffdaeba83eb3751c54fc8a9 13243 
gmic_1.4.8.0+dfsg-1.debian.tar.gz
 5011878342e64e2c230bf9e18cdecba526967f78523d3e506ac410efd85c8b6c 4945642 
gmic_1.4.8.0+dfsg-1_amd64.deb
 96c5a29d17c2af8c69bfa34cc31f26563d336e1d67a8641773de4c1535308765 1073100 
gimp-gmic_1.4.8.0+dfsg-1_amd64.deb
Files: 
 6261c8a64e3835727cd06a62966fe132 2038 graphics optional gmic_1.4.8.0+dfsg-1.dsc
 b0b3288767e46735d7d916bc76dbf0bb 862317 graphics optional 
gmic_1.4.8.0+dfsg.orig.tar.gz
 7d8cb9b8117533c6ba7cb9e0f547036d 13243 graphics optional 
gmic_1.4.8.0+dfsg-1.debian.tar.gz
 12924d46dc3db53cd4b1e40516a84b31 4945642 graphics optional 
gmic_1.4.8.0+dfsg-1_amd64.deb
 c90c1c25f25cec4d5289fda5e8864582 1073100 graphics optional 
gimp-gmic_1.4.8.0+dfsg-1_amd64.deb

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

iQIcBAEBCAAGBQJNU+OkAAoJEOs2Fxpv+UNfD/kQAKPX685jz43N+19gGQRjMd4T
a/QWX5GwiUoxdkNc/wMuS9ZmnNEKbk3aO5G779mCXWNnZX5KwBC4ONfMgrEfZl1a
usHRAMQeSaVbE2HA3JYMdYYmKXRDahElbh3Ji4JLz7Si9+lEL+mzXLVzHZi2cCOQ
ph7JHJbFCfYOJDZyPDW+YYcOSITzYaj+Up+lAKW57J+PMRbJXrxBz0FBqNQ1sH7/
lMYb3Zn6TiZHVQ+GYiD6XCNlFsPrEqD2BFTwF5ha76m1n6iLElimdbEugNrNBoGY
BbmdVOXy2sHRq5s8Qez4bE1ON/FQzKPjY3znVEPyUWVe+WInm3jo4ZySZ5sQFMDL
AMdcqO7JV07/qTCmic0MB8LUnbBE15QHo1kL1eIukGHHiHUvF689T+IKiQNZoRPI
Yv+i7DHwihpPr8ZRsIUEzC6iQxPdAJS9j15kDKBMP+C6aFrXN0BNdG+nDDoJVCcw
ti+Ty26Slr2y2zl1ImerExBKVQ96BH4x9edtqFhgZnVVTHpbDcZ2NNKK7AfMdzRy
Kg83e9R7E8mybHRXEkzrszSzbkas5fvu4u9jvGd7HZT150Rr64js/4D/IARhOyeI
cf9NAMj4Gw/J8H99Bm1tM3mzG6Zsjd+u01kx48KAPN75/2kYQVDEXjUFapqNRHRh
Wnrbbi0AxO10pF62357w
=MWXW
-END PGP SIGNATURE-


Accepted:
gimp-gmic_1.4.8.0+dfsg-1_amd64.deb
  to main/g/gmic/gimp-gmic_1.4.8.0+dfsg-1_amd64.deb
gmic_1.4.8.0+dfsg-1.debian.tar.gz
  to main/g/gmic/gmic_1.4.8.0+dfsg-1.debian.tar.gz
gmic_1.4.8.0+dfsg-1.dsc
  to main/g/gmic/gmic_1.4.8.0+dfsg-1.dsc
gmic_1.4.8.0+dfsg-1_amd64.deb
  to main/g/gmic/gmic_1.4.8.0+dfsg-1_amd64.deb
gmic_1.4.8.0+dfsg.orig.tar.gz
  to main/g/gmic/gmic_1.4.8.0+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/e1pna5c-0002jt...@franck.debian.org



Accepted hunspell 1.2.14-4 (source amd64)

2011-02-10 Thread Rene Engelhard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 11:50:31 +
Source: hunspell
Binary: libhunspell-dev libhunspell-1.2-0 hunspell hunspell-tools
Architecture: source amd64
Version: 1.2.14-4
Distribution: unstable
Urgency: low
Maintainer: Debian OpenOffice Team debian-openoff...@lists.debian.org
Changed-By: Rene Engelhard r...@debian.org
Description: 
 hunspell   - spell checker and morphological analyzer (program)
 hunspell-tools - tools for hunspell
 libhunspell-1.2-0 - spell checker and morphological analyzer (shared library)
 libhunspell-dev - spell checker and morphological analyzer (development)
Closes: 612542
Changes: 
 hunspell (1.2.14-4) unstable; urgency=low
 .
   * debian/patches/18_fix_mkallcap_calls.dpatch: also add fix another
 part calling mkallcap (closes: #612542)
Checksums-Sha1: 
 e7becd6d808fc4ac9cb3869b8336fdbe974feb67 1937 hunspell_1.2.14-4.dsc
 792dfcc209564233d47e234fe1c708f4ddfcd83a 22191 hunspell_1.2.14-4.diff.gz
 fded2aec88fcc750ed4bc3c8fd7ba2595dc6b2e1 235958 
libhunspell-dev_1.2.14-4_amd64.deb
 9dfe0847d8f6946aaa8c62467eab21193083828f 171810 
libhunspell-1.2-0_1.2.14-4_amd64.deb
 738b7cd3d9b032ed89abd1a17644c040e1370ca8 75872 hunspell_1.2.14-4_amd64.deb
 a41c0be34fb2af4eabd095e77db5ccda9ff7e32c 70900 
hunspell-tools_1.2.14-4_amd64.deb
Checksums-Sha256: 
 cd2bd5b98d09851d5b3da419c54b52598188836662402bbdbddd7201f87d0dfa 1937 
hunspell_1.2.14-4.dsc
 7946fd516e4e1b0128eff64ceefa1d3c76f6513e1c415999e52fb060aab0ec6d 22191 
hunspell_1.2.14-4.diff.gz
 a668828eb0ac367800dfe36a3a627da38ed895a24e439eb786873bc4ddeb75d4 235958 
libhunspell-dev_1.2.14-4_amd64.deb
 5d3d49a8c2a734b3b5049f23cc6574f0cd4db30ab0939e45f808545ac746 171810 
libhunspell-1.2-0_1.2.14-4_amd64.deb
 7d8d5811eb7eaeeb888cfca764f76361dc995d25c94d9fc23d463ae5ab8f98f5 75872 
hunspell_1.2.14-4_amd64.deb
 3237dea2d829c3d0609b695042790fc4720d00ab145d7de709ba29bb85564603 70900 
hunspell-tools_1.2.14-4_amd64.deb
Files: 
 1cef34e07210b6a912daf9f9e84b4161 1937 text optional hunspell_1.2.14-4.dsc
 c84877e459b48665a2427da43f02c2c7 22191 text optional hunspell_1.2.14-4.diff.gz
 6a193f85428443ae7cb32bc156e10cea 235958 libdevel optional 
libhunspell-dev_1.2.14-4_amd64.deb
 1f139643c03ea28443ff7e23672ed9f8 171810 libs optional 
libhunspell-1.2-0_1.2.14-4_amd64.deb
 e952c520498ed6f05b39071036d8b636 75872 text optional 
hunspell_1.2.14-4_amd64.deb
 280dd74e31ead803b8a18eff6c2c6426 70900 text optional 
hunspell-tools_1.2.14-4_amd64.deb

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

iQIcBAEBCAAGBQJNU+LwAAoJEAqgRXHQPj5wa0EP/jveiBrE8NJ/+RxD9qixd3iR
fRu3/GgeIsJ81c8204RSidfQ3s+MaonquBl9RMAhUaVbS1G62/19NnN7cJs39AEf
xpy0hKX3MpSbylVCVw3Ql3JMoDDCv+atfu/3d3M9pBVi6HgzCXfg+bP2RvLUh3+C
+JqcYgVBtN6NYXwoyd8N6BWEOmdJHV5u1S4oL9/dzwZyQp1cBElC7Nr7/zP3YTud
KtTZnuYPHmQiytXcC3T+JWxs/e03xdq1DMu9D28tIA/1D7FQpmXTjjTV7Q0G/vc7
HT+X2edtAc7zvAW07XPFvQ3O8WVr+yJKnDdBKlRCnqQTDiQp5TXJ+vtSGsaHceMQ
IE/nu6m9GgMS2+nUDqpl1hXqlrr4fWlYlZtPaUEmoYNbCNhgA419L4IFHWu12rEO
uHsr5JHx7Yg5txVEmxH2D7JmatIcn2O/QOBZ61fnsnS0GBN2k6eesduqTB+aJOnr
RT6pPOLj07kaUisqBK7vpoV8ytK8V0m20l6RJhD9oIHaWxnjoGS9vMUsSLZ4Hmfq
tcKvNqIk53w9TCN3gHDHoF+rBcxhU8Xh5UKurDtDS+Ld874W3kygwncPm6ZjNyDk
X2bS8sAA0EG0LVBdgFcK38E6uE8v3WcGhIM9v5KhaNvbaGzy04SGftwrGVOJ1zCO
dXuqncBK3hSIA6n+u/EK
=Hz8Z
-END PGP SIGNATURE-


Accepted:
hunspell-tools_1.2.14-4_amd64.deb
  to main/h/hunspell/hunspell-tools_1.2.14-4_amd64.deb
hunspell_1.2.14-4.diff.gz
  to main/h/hunspell/hunspell_1.2.14-4.diff.gz
hunspell_1.2.14-4.dsc
  to main/h/hunspell/hunspell_1.2.14-4.dsc
hunspell_1.2.14-4_amd64.deb
  to main/h/hunspell/hunspell_1.2.14-4_amd64.deb
libhunspell-1.2-0_1.2.14-4_amd64.deb
  to main/h/hunspell/libhunspell-1.2-0_1.2.14-4_amd64.deb
libhunspell-dev_1.2.14-4_amd64.deb
  to main/h/hunspell/libhunspell-dev_1.2.14-4_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/e1pna6q-0002rw...@franck.debian.org



Accepted iscsitarget 1.4.20.2-3 (source all amd64)

2011-02-10 Thread Ritesh Raj Sarraf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 20:05:24 +0530
Source: iscsitarget
Binary: iscsitarget iscsitarget-source iscsitarget-dkms
Architecture: source amd64 all
Version: 1.4.20.2-3
Distribution: experimental
Urgency: low
Maintainer: Debian iSCSI Maintainers 
pkg-iscsi-maintain...@lists.alioth.debian.org
Changed-By: Ritesh Raj Sarraf r...@debian.org
Description: 
 iscsitarget - iSCSI Enterprise Target userland tools
 iscsitarget-dkms - iSCSI Enterprise Target kernel module source - dkms version
 iscsitarget-source - iSCSI Enterprise Target kernel module source
Changes: 
 iscsitarget (1.4.20.2-3) experimental; urgency=low
 .
   * Upload to unstable
Checksums-Sha1: 
 89db1d7663d42982d688293948aa71c5715da3e4 2078 iscsitarget_1.4.20.2-3.dsc
 d6dc25266d4c7276fec4f2bbb56169db98787ee1 0 
iscsitarget_1.4.20.2-3.debian.tar.gz
 eb975d72ec925dfbbdbfb748168cd271185dc207 75506 iscsitarget_1.4.20.2-3_amd64.deb
 310b74fa76301c316b9f7012256aa74ded51f5ad 57892 
iscsitarget-source_1.4.20.2-3_all.deb
 53b760fd6b0fedf5e9934c9998fe24d3ee001f8e 71154 
iscsitarget-dkms_1.4.20.2-3_all.deb
Checksums-Sha256: 
 81352cc4440e22ceb55b418dbc1bfccf9878b7475606ea961804a9e695a039a0 2078 
iscsitarget_1.4.20.2-3.dsc
 f984d4d441fb7205717fa5ed3ecba156e189139763517c244389e81af70f1835 0 
iscsitarget_1.4.20.2-3.debian.tar.gz
 5e9e6bad75a66fae3dd059c70bc91f36724ef7f401cb60760d0331258eae9e9e 75506 
iscsitarget_1.4.20.2-3_amd64.deb
 ec3b53a182f2d7402dcef080cffc3bcfb164d0c0310fcfd8a48f621653dd5b94 57892 
iscsitarget-source_1.4.20.2-3_all.deb
 23d3b5fe59b408f52437a767e843fb79963a972ba3034296a5fd6002a95fc703 71154 
iscsitarget-dkms_1.4.20.2-3_all.deb
Files: 
 4b5326b25a3a3387d9134e883731ef79 2078 net optional iscsitarget_1.4.20.2-3.dsc
 75fb5e35fc7b9a33d0d1d095a60270b6 0 net optional 
iscsitarget_1.4.20.2-3.debian.tar.gz
 2c013006d8d1c08788ca1414cd12ec78 75506 net optional 
iscsitarget_1.4.20.2-3_amd64.deb
 1163c1a93dee4bdf09bbb46d68ce86aa 57892 net optional 
iscsitarget-source_1.4.20.2-3_all.deb
 ccdb2a8879b97e91399763d2138f2267 71154 net optional 
iscsitarget-dkms_1.4.20.2-3_all.deb

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

iQIcBAEBCgAGBQJNU/gmAAoJEKY6WKPy4XVpenUP/266zbQHwOeBoxB5fOxaU6Kc
UhptCMgNtSXUh/6t0L066OMGda0wwXPk5qmWirqaOVIuNCHZneju+7QBetr0VmnN
3K8ItMMkcJK2M9gbIJqEZnL0CGZFYAM9I2TgiBbe1PVKGw27ySjZmIL9ZFEPnBq5
X6m/OuAZr+9gFEkxczzE3CRYFB9+agemAbGzEYrVQr3bt+CECSrFMS0l6jiZ6AQh
9QIOr0trTarinUWxrCIXhg6yIeI/wqpWrZ8oA03BTmPU1li3txZ3MeYF0jIJ778p
c+KRSgzliO7yUPpPU5OMxK4qbmBthQfqTdI4+crZGbuyQ1IFakS+CPXZ9aC+zZGa
NLT7fUDKFnORhuIY3zqVL4Btmyqza71Yi17YLVhHWm6fkpb5K51oqACdPSZW8Ijp
Ge0SUkpperuypsuXckRl8UWSZHdgBWYL1dxYoEMiv5KAoJSTLpY7XfTW26+UOQFk
j+ncrLOMWx0CxIblLl5cQ3VD9tNotWxcnEc1ZgNt+y923oxvbjf+fTNjI0NlfMmO
j9LsPjPfM3v8s9ethZP/wVKekaRYSn0eshhapnTdFjRqoOjX7zfcWbz1dvz37p7B
ZFc5yxZs7NT/+6fruUr+c34XLDx9vO1wUPd5TbA0Mx8A9Dnjwr919J/dKmcTKboR
Br3gxvzzItbwTeGFMvlF
=ZvRY
-END PGP SIGNATURE-


Accepted:
iscsitarget-dkms_1.4.20.2-3_all.deb
  to main/i/iscsitarget/iscsitarget-dkms_1.4.20.2-3_all.deb
iscsitarget-source_1.4.20.2-3_all.deb
  to main/i/iscsitarget/iscsitarget-source_1.4.20.2-3_all.deb
iscsitarget_1.4.20.2-3.debian.tar.gz
  to main/i/iscsitarget/iscsitarget_1.4.20.2-3.debian.tar.gz
iscsitarget_1.4.20.2-3.dsc
  to main/i/iscsitarget/iscsitarget_1.4.20.2-3.dsc
iscsitarget_1.4.20.2-3_amd64.deb
  to main/i/iscsitarget/iscsitarget_1.4.20.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/e1pna6s-0002ws...@franck.debian.org



Accepted maatkit 7284-1 (source all)

2011-02-10 Thread Dario Minnucci
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 13:50:00 +0100
Source: maatkit
Binary: maatkit
Architecture: source all
Version: 7284-1
Distribution: unstable
Urgency: low
Maintainer: Baron Schwartz baron.schwa...@gmail.com
Changed-By: Dario Minnucci mid...@debian.org
Description: 
 maatkit- Command-line utilities for MySQL
Changes: 
 maatkit (7284-1) unstable; urgency=low
 .
   * New upstream release (7284).
   * This version will be uploaded to unstable. Previous were uploaded
 to experimental due to the freeze.
Checksums-Sha1: 
 b9759060ad23a6aade0228d5e5f7632ee6fdb901 1986 maatkit_7284-1.dsc
 55ec12bd7a458f62b658340bd48a6d2205c5abe5 1203928 maatkit_7284.orig.tar.gz
 77235352855c8ffe8f87e3f8e8cd2a2c8fa85753 5689 maatkit_7284-1.debian.tar.gz
 8183871714b7bf6e79d772c849d4c150dd4d 1500968 maatkit_7284-1_all.deb
Checksums-Sha256: 
 0e6b880cbcf92a2ed06402cb8a76d27495e5c4deb0c407e5f3fa83d2f3861fa4 1986 
maatkit_7284-1.dsc
 31bda025f80a11b0e5f9bf0801681903138ef15c47e8d10b7db1290b147e3cbf 1203928 
maatkit_7284.orig.tar.gz
 ec785110abca9cb8e63b1cc3ae2d6ea0124a3acd43490e81ce084a01e1d97ae3 5689 
maatkit_7284-1.debian.tar.gz
 0eedf0c551e0b63449756f166b57d0352db11bc78338bdb79d7f1d3d5b6aef7a 1500968 
maatkit_7284-1_all.deb
Files: 
 81d854d8a4aaedd3b63f4e3c6543ce38 1986 utils optional maatkit_7284-1.dsc
 cc3c003ada9b4607a02e46ea7b10f88e 1203928 utils optional 
maatkit_7284.orig.tar.gz
 e7cd06c93703d6724466079c34e7a808 5689 utils optional 
maatkit_7284-1.debian.tar.gz
 fe6631fb8eb4e53f0380112e3311a63d 1500968 utils optional maatkit_7284-1_all.deb

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

iQIcBAEBCAAGBQJNU99YAAoJEKgvu4Pz1XAzi88QAMDD7Gu3B4lbaM6nC7CEUGXY
iv7d9Pt4uhf9YTt4s8Y5eF9gdDGmtT33sPKednIxn8JsQEdPBi7+IfmbR/YbhqXR
ce8C7NtqzDvtS+DCY+BzpujGAufMmp92mdPQ/loHvSfEUfEf9pfdIyqSMOCeaZGc
FaYgeX5PaCoL4qVT2JelIf8pi1DsKg9AhXzItcvopEFnhWxmvrJKpLVlavDxKH0x
zP8180DA/K3AecCl2G1qEOiPqzG7Aw8pV72zn1LRPFGtdaXc1qdSKcEBbq5+Gd5/
YKqJWPYxBHBfAL7OoO53j9bLpb1uPDbwjl6ONGdmlt6YD/I7OMpOH2erar4Zve3O
XyM6EQAIQcp6X0dAnpuxrUogoH6bBz1Ws3iFiPutu+PERl4d5RGhaqvfOiQV6i8E
dDyOequnVz6epjlZu+j1I+uOTgD/zQc/S44sgDcrJVBXBRS8GM2f/6po2+NeBXdI
0Ri4OY1TVkNuClcyUXjmUrilQhI0ndeFbWRN0Fbb/txwu9m9AtfXDN1Eg5tXi9qf
kjgXF6zNm0EyG2q+96Z/sJH+AexWpATiC0FBbjWX0PtzPbGZ+yWaYcz67FsS9YUQ
mzr0uoOisroqpkzSIK3YgecluHdxQo1DAvg+Y/g0EcLXis80aRHi2PASZmi59tf8
p1FMLJVLHRoWUY4KjVpI
=cbE0
-END PGP SIGNATURE-


Accepted:
maatkit_7284-1.debian.tar.gz
  to main/m/maatkit/maatkit_7284-1.debian.tar.gz
maatkit_7284-1.dsc
  to main/m/maatkit/maatkit_7284-1.dsc
maatkit_7284-1_all.deb
  to main/m/maatkit/maatkit_7284-1_all.deb
maatkit_7284.orig.tar.gz
  to main/m/maatkit/maatkit_7284.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/e1pna9d-0002hz...@franck.debian.org



Accepted open-iscsi 2.0.871.3-4 (source amd64)

2011-02-10 Thread Ritesh Raj Sarraf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 20:08:37 +0530
Source: open-iscsi
Binary: open-iscsi
Architecture: source amd64
Version: 2.0.871.3-4
Distribution: experimental
Urgency: low
Maintainer: Debian iSCSI Maintainers 
pkg-iscsi-maintain...@lists.alioth.debian.org
Changed-By: Ritesh Raj Sarraf r...@debian.org
Description: 
 open-iscsi - High performance, transport independent iSCSI implementation
Changes: 
 open-iscsi (2.0.871.3-4) experimental; urgency=low
 .
   * Reupload to unstable
Checksums-Sha1: 
 ec4ea1d2560377c9afe74317aaadf2e0651ac911 2036 open-iscsi_2.0.871.3-4.dsc
 f3649f61c251c2e8b9c34c87509e4855212553be 18057 
open-iscsi_2.0.871.3-4.debian.tar.gz
 f9c06ab51f399a146cf5ae70fdae3fcf13ea5bab 332946 
open-iscsi_2.0.871.3-4_amd64.deb
Checksums-Sha256: 
 4fd443d77379c2067ff474ec81d910360009af170c13f4e224bbd047f126cd3c 2036 
open-iscsi_2.0.871.3-4.dsc
 06bf291a0d801396c15316cc07d0c845549eec95c2dbe06a4f30473771e67f27 18057 
open-iscsi_2.0.871.3-4.debian.tar.gz
 114f69f374b134d706e893420a27b656af5a2d97949ff0e10711acbe60c24ad9 332946 
open-iscsi_2.0.871.3-4_amd64.deb
Files: 
 e414c3729dea15138d356ad906f51f2f 2036 net optional open-iscsi_2.0.871.3-4.dsc
 6d76cdca6119530f8318ef60f7787051 18057 net optional 
open-iscsi_2.0.871.3-4.debian.tar.gz
 8bb593d41c59222d83ccdd8c046d23e0 332946 net optional 
open-iscsi_2.0.871.3-4_amd64.deb

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

iQIcBAEBCgAGBQJNU/jFAAoJEKY6WKPy4XVpsRUP/RimvqwDHADc9BHxjSFvAqbj
bp4y0mVmfcuaeirCXfHKbU2+64Mhbfs1P0/wOXY9ELQT0AiWY49YN/yS8xJU0fxO
q9BfnVEX1HupP6w2yWThF8mudObZxbRIpiDwe8QgU2x2SafqZYL8vP0YNrdQ5pKT
bgd5tHRxrxb4JsZ08LY6r4bNprn9iIgQWYwawJFQNaahEOICBZuApL9nAoAFUm9l
QyanxPk3cT+9PVqEUk4muMX0pc9fZu+onAmwkuq89OsOehE/2pFPJ24AhaE5Adob
ohp0+p2DZCdq5euuEg7uxcIz4lmCxUbEhVXF2l66UOQb1YlZkugSKHAGrrgogFVP
KVwCRV672B0ncfqeTIYK0r/GGmsnF6PJxxcjXm4RvXD3LO1YCgYjhCOxDOfonH8k
tuluO1qWmuz4ze70g/T3TXT3f00Jk+Qt6P9UivJrIiIkYH90bLwxJ5+cISyolR+z
CZgSh3PoJHgaaurORCYC0j72K1R8diNSb94Ih+e7glHwZpmhxPQHW3+wBj1yyYVO
ijKyTiwCyvX2dvKVbrx/+AI489jcphJ/qPqQ41GtszoxooMTgafz5kWm8nSsaU3v
SkDM+Ru81Xj61mPeTIhswSphigujcxhQv7TapPFVo4U1/G+O3MXG6gaSiI/2n1Co
qhydijDbV7hleKEON4Jz
=fUdS
-END PGP SIGNATURE-


Accepted:
open-iscsi_2.0.871.3-4.debian.tar.gz
  to main/o/open-iscsi/open-iscsi_2.0.871.3-4.debian.tar.gz
open-iscsi_2.0.871.3-4.dsc
  to main/o/open-iscsi/open-iscsi_2.0.871.3-4.dsc
open-iscsi_2.0.871.3-4_amd64.deb
  to main/o/open-iscsi/open-iscsi_2.0.871.3-4_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/e1pnabj-0002re...@franck.debian.org



Accepted sysprof 1.0.12-4 (source all amd64)

2011-02-10 Thread Ritesh Raj Sarraf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 20:19:07 +0530
Source: sysprof
Binary: sysprof sysprof-module-source sysprof-module-dkms
Architecture: source amd64 all
Version: 1.0.12-4
Distribution: unstable
Urgency: low
Maintainer: Ritesh Raj Sarraf r...@debian.org
Changed-By: Ritesh Raj Sarraf r...@debian.org
Description: 
 sysprof- A system-wide Linux profiler
 sysprof-module-dkms - Source for the sysprof module - DKMS version
 sysprof-module-source - Source for the sysprof module
Changes: 
 sysprof (1.0.12-4) unstable; urgency=low
 .
   * Upload to unstable
Checksums-Sha1: 
 a328382cfb6707115279383f6f8c9decabc2c31d 1919 sysprof_1.0.12-4.dsc
 b49c7b66842423b66c968182a16c88984969e5cb 9345 sysprof_1.0.12-4.debian.tar.gz
 6e0cc484ad8512428fcc43f73c4664c85ef06f74 403538 sysprof_1.0.12-4_amd64.deb
 9b9e6f822e1f49c1957e3bdbb2b680ca2b5d1f0f 29362 
sysprof-module-source_1.0.12-4_all.deb
 e4864be84411326d766e47633d42424560f143fa 17338 
sysprof-module-dkms_1.0.12-4_all.deb
Checksums-Sha256: 
 9f82fcab0abf67efaf1473add8eba4d8460818ed7be4d46a45fdd5f5ac5ecfd8 1919 
sysprof_1.0.12-4.dsc
 3f41247ba4b84f8bec3d5227b6369fc465155cc0ad90ab82ebe3d8eb169f 9345 
sysprof_1.0.12-4.debian.tar.gz
 28bdeabd3c54e409848ee643aae32de09547d6c24acfd25997939727e0782195 403538 
sysprof_1.0.12-4_amd64.deb
 59f53dbda4307cce97aa468407f1c5518917bb828a633f19f32f6950cd52a5a8 29362 
sysprof-module-source_1.0.12-4_all.deb
 a463f70d481bc31b65ad162aeb585ae8c03ae5f6923d622f3f99e58ff03c6698 17338 
sysprof-module-dkms_1.0.12-4_all.deb
Files: 
 eab3bb81f5a8197709baa7ba16b9f556 1919 devel optional sysprof_1.0.12-4.dsc
 d5e34466c300949c8014864043e46e2b 9345 devel optional 
sysprof_1.0.12-4.debian.tar.gz
 8c5e7a05aa82075750e23d70ae6b7f80 403538 devel optional 
sysprof_1.0.12-4_amd64.deb
 f57fd170e7964199a784455ca660a867 29362 devel optional 
sysprof-module-source_1.0.12-4_all.deb
 cc9c5a8da9c6517d3c5e4e13a06895f3 17338 devel optional 
sysprof-module-dkms_1.0.12-4_all.deb

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

iQIcBAEBCgAGBQJNU/09AAoJEKY6WKPy4XVpkMAQALBT/RIbvc9I9XnU0hkbhsoX
1S937G6zOuSCuAGMHKkVfDDS5q0UPc711MF72yE80dd+zNT+Sj4msGISIqJlEaCX
tRjcTCHmqQLdx+2X5e1uOMCiVDMLjq5t8CGKkvVFgcLjtIXTnHaCYriL8FlpFro6
IIXkpGuCjBVlOD1JjwiElLjAk8G5Egq5XI086w0qY2SJ8/wLZi5ia3HieAUJvUK/
knCTr9PzmNbyTW62cb3P5yxO6oxWGQmrFdszi+q1beY6huDK6MJSJe6MoltaAP50
ICV1vtSE9UuyctO7RQsZTeKpxXGVWGWjTAvGILW/7EF5TxF0eOczoEe3uA5RNqbX
AMA9jI92AAzxmrAh95nlK+kYk5j7jj7Hupc4SywjS29tAPPfSc0lquJNRGkvVWw3
YsaWFVXLdGstZt8n/IuaqaBXd0akGSwzXnHDRsslFMbYnT7gaeVXZPzicKPRrNdE
3RWQ/QR39AAN+ciZyZjcqg4TACNCbVEQ2XzCaHEq5H49/UiVsxs+aE0o7OTCq7y7
aDxjFFFQkGyLiMLBrLc5JGiLEe5JYfOno/wvIfmVDc8PqVpspRW7eQRKaPb7b3zf
+dnJCcR7s3AJHbR0mHLbMg7cUm1jZ8ImZeIPwQiKpFjngdIYg2SPzEONpbhwJXHk
XzPbvHyL6WM2JwtqNnNs
=GS/c
-END PGP SIGNATURE-


Accepted:
sysprof-module-dkms_1.0.12-4_all.deb
  to main/s/sysprof/sysprof-module-dkms_1.0.12-4_all.deb
sysprof-module-source_1.0.12-4_all.deb
  to main/s/sysprof/sysprof-module-source_1.0.12-4_all.deb
sysprof_1.0.12-4.debian.tar.gz
  to main/s/sysprof/sysprof_1.0.12-4.debian.tar.gz
sysprof_1.0.12-4.dsc
  to main/s/sysprof/sysprof_1.0.12-4.dsc
sysprof_1.0.12-4_amd64.deb
  to main/s/sysprof/sysprof_1.0.12-4_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/e1pnags-00048y...@franck.debian.org



Accepted systemtap 1.3-2 (source all amd64)

2011-02-10 Thread Ritesh Raj Sarraf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 20:30:26 +0530
Source: systemtap
Binary: systemtap systemtap-common systemtap-runtime systemtap-doc 
systemtap-server systemtap-client systemtap-sdt-dev systemtap-grapher
Architecture: source amd64 all
Version: 1.3-2
Distribution: unstable
Urgency: low
Maintainer: Ritesh Raj Sarraf r...@debian.org
Changed-By: Ritesh Raj Sarraf r...@debian.org
Description: 
 systemtap  - instrumentation system for Linux 2.6
 systemtap-client - instrumentation system for Linux 2.6 (client for compile 
server)
 systemtap-common - instrumentation system for Linux 2.6 (common component)
 systemtap-doc - documentation and examples for SystemTap
 systemtap-grapher - instrumentation system for Linux 2.6 (grapher)
 systemtap-runtime - instrumentation system for Linux 2.6 (runtime component)
 systemtap-sdt-dev - statically defined probes development files
 systemtap-server - instrumentation system for Linux 2.6 (compile server)
Closes: 604439 608905
Changes: 
 systemtap (1.3-2) unstable; urgency=low
 .
   * Add dependency on package adduser. Thanks to the piuparts
 infrastructure for spotting it. (Closes: #604439)
   * Add dependency on make (Closes: #608905)
   * Upload to unstable
Checksums-Sha1: 
 a1f812451160b1415b63a07f07854bdf86e307ce 2329 systemtap_1.3-2.dsc
 ab68acef6b2c6dd8a19f3486c98b7aee0502d517 1711980 systemtap_1.3.orig.tar.gz
 182561c23c6cbb4354627ea543d6ee131cc147ee 23866 systemtap_1.3-2.debian.tar.gz
 977c2e3ca6569c726ebee7286eb93e320bf4467f 725820 systemtap_1.3-2_amd64.deb
 12957b650a77e3c541d69a49f735c4da2c96316b 424482 systemtap-common_1.3-2_all.deb
 cadd5cdbfb19e22120dff49d610972af9813edc3 64396 
systemtap-runtime_1.3-2_amd64.deb
 8e34b532e99f877b8891d3c756ee9a34ed7cf992 837338 systemtap-doc_1.3-2_all.deb
 00082733c89963c84be54e1c195a96007e24cfeb 62694 systemtap-server_1.3-2_amd64.deb
 17d737b354fc27ce42d8bf682146671b3c3a44a0 41378 systemtap-client_1.3-2_amd64.deb
 393b79e8eaad65ae45e361c586d4f57aa57467db 21034 systemtap-sdt-dev_1.3-2_all.deb
 1f8316ec76435a4cc63b6778639514e035eff820 121260 
systemtap-grapher_1.3-2_amd64.deb
Checksums-Sha256: 
 3dad5126a079fe044fbee299e2c98fb4d89ce46275d40124edb2f2963026b1b9 2329 
systemtap_1.3-2.dsc
 013a2d214ac164a75c437e836bd97039c9f92b167bba7d18101097ad98ea 1711980 
systemtap_1.3.orig.tar.gz
 3f10cdc1bb6a72ce0d962e0a4e7b984287bb2c94908b5efd7ff0e05ebc10ab0c 23866 
systemtap_1.3-2.debian.tar.gz
 5bcbd5174c9db2c64d5756bc591065fa1342e3a56e9371139eb9d8fcf9032b24 725820 
systemtap_1.3-2_amd64.deb
 caf1c0bcbccc385c343209a9f4f491bfb7c6c3bb9e557d72a50f481ccd158533 424482 
systemtap-common_1.3-2_all.deb
 fe4f5c82ea76463c89f22b8b832a0717b8128cb3a091b3a29159567eb6a57953 64396 
systemtap-runtime_1.3-2_amd64.deb
 c430af71bdf7834abcea113775d037628e3ffa2f59dd838da2a837a4bf9b552f 837338 
systemtap-doc_1.3-2_all.deb
 84cebea245b70d7269af594249d43ba27cc09aa62d5ab2f2743d574e6cb3d1f3 62694 
systemtap-server_1.3-2_amd64.deb
 5aac601d07f64d94c00d7a05ddc4e806b939fa3dde7a32f8cc869303a1af92f5 41378 
systemtap-client_1.3-2_amd64.deb
 2892253f9b8296a39bd80cc96acbe8c246f128ee7a88a9e723df3983512538db 21034 
systemtap-sdt-dev_1.3-2_all.deb
 ad6d6646430223560460ff05529e5f5f85dd7bae102f8d4f8afeb650cd38f116 121260 
systemtap-grapher_1.3-2_amd64.deb
Files: 
 8e231cb886b59d64faa1ce4f88bf479d 2329 devel optional systemtap_1.3-2.dsc
 044a0d225de53498fb62d25724af3fd7 1711980 devel optional 
systemtap_1.3.orig.tar.gz
 4b42b4c7f039a6afb80d1ad4257f828b 23866 devel optional 
systemtap_1.3-2.debian.tar.gz
 7668b800c5d9fc166d0c7b49150cb4cc 725820 devel optional 
systemtap_1.3-2_amd64.deb
 85eaf3231a6f8ba520bc54510a8b0bd3 424482 devel optional 
systemtap-common_1.3-2_all.deb
 307b23d213daa5ff09409ecd6849134c 64396 devel optional 
systemtap-runtime_1.3-2_amd64.deb
 a18de46f3fb26cc857cb92cea8f7d2b2 837338 doc optional 
systemtap-doc_1.3-2_all.deb
 f89969216050c797ef6ea95cc877c727 62694 devel optional 
systemtap-server_1.3-2_amd64.deb
 272b3e719ab283deb1d20f4cb0236e59 41378 devel optional 
systemtap-client_1.3-2_amd64.deb
 c4eccaf8035186caf831f10c97f2c38f 21034 devel optional 
systemtap-sdt-dev_1.3-2_all.deb
 c5c229e1efba2cfbffe11f2400aa3100 121260 devel optional 
systemtap-grapher_1.3-2_amd64.deb

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

iQIcBAEBCgAGBQJNVAGEAAoJEKY6WKPy4XVpVd8QAJ1Tl4EnjujkSP/XAjY/j/JQ
sG2UJk5LNmVk9xL5VooAGZpj/YSy0FtBtAWaj//tOJrMa5gAWIoFssb5vGpbERe+
pDscWjDz9ulE0F3xy9NbgbTu7uX2IxGyaJ4NdSHs6ZdSFalvBSaWUHyVjfW3+F6N
bE7WbHQ2htlR8YE27rCp6+nIOuh8G7s1Lp8VtTsAJJCKxP5bjeVqtK+jYSoac+zo
Ky2NNek0JLlzwiU+m0os+lz0nvKBwkNDsj8BJKQoe3fht5bx6aXIXL6zgXUmeBOj
nJzNSlHDwhQCmX35gY1hAWDxvoMXaG4AP1/fwM4/bxqdXOezRhucRSIno18Jsakb
EozNbQbYgF2UA6wM4ksQCtFOjiaVekrY2z6PhwMFSXSnO8Vlsv0IQscWpNaHVGo1
gLj06wFH9at9zk4Ks7vNy+m0Dlz4hPk1lySIUZcJrHZqS9yq7C3JtjTKoYJ1TMLp
BXHxkebER9qhFFPNJBRxKZZyhlBRVtfHs6dfe7SVDw+n4xVIqHIC/hF4HHS8d75H
aAiOcTbWDKZgUuGTBcC+WrEYdXSWk1VvLus6dcoAw1CVBFhDTpaIuWsSO3uPHtJO

Accepted tzdata 2011b-1 (source all)

2011-02-10 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 09:58:03 -0500
Source: tzdata
Binary: tzdata tzdata-java
Architecture: source all
Version: 2011b-1
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-gl...@lists.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 tzdata - time zone and daylight-saving time data
 tzdata-java - time zone and daylight-saving time data for use by java runtimes
Changes: 
 tzdata (2011b-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 8e20148333be97f3411ca866026ca5a7fd38f780 1794 tzdata_2011b-1.dsc
 0222d6cb2057239b96f7d16fd2a5434091d5a8c4 193030 tzdata_2011b.orig.tar.gz
 b8755db3d835b7caa873390d11d5b9ce0b00272e 249480 tzdata_2011b-1.debian.tar.gz
 13a7a21d1b36edcc0475e53f2e2748c3ddedaa45 764196 tzdata_2011b-1_all.deb
 a6a9ef59e0f1819a7dc0f7be52309a3bab010b06 151580 tzdata-java_2011b-1_all.deb
Checksums-Sha256: 
 2a329f510472dbfc5ae9c7cce20baf0dafd2b467e16a2a9d3a1bf11207176468 1794 
tzdata_2011b-1.dsc
 ff45f5ddc2ec925249626d00d7bc2587e0956a1d8245517a023bf27e4cc9 193030 
tzdata_2011b.orig.tar.gz
 dce907d3f08432be66fe156cbde22fce762783346bcce3e284590f83a66cd151 249480 
tzdata_2011b-1.debian.tar.gz
 70dd9833cdaf8a0fa96511e5aaa1b678b869f3ccf23b38ca520b857a52c51674 764196 
tzdata_2011b-1_all.deb
 3c79ee73b15514ba1808cfb78e1244873668e1ce0819e95cb1cc9a20ee916a80 151580 
tzdata-java_2011b-1_all.deb
Files: 
 f9747d9696a939f7705f9a2cd7fae5c8 1794 libs required tzdata_2011b-1.dsc
 9eaf3ca354c42a32bd28e623539bf0e0 193030 libs required tzdata_2011b.orig.tar.gz
 0b99d6c369485ce38c201ed1f8dce449 249480 libs required 
tzdata_2011b-1.debian.tar.gz
 9aa3c92e78e35c8939be8ff0973e4b6d 764196 libs required tzdata_2011b-1_all.deb
 f3c4fd8da2863eddbf8cb6f9b11eeb74 151580 java optional 
tzdata-java_2011b-1_all.deb

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

iQIcBAEBCgAGBQJNU/4FAAoJEFWSMx4ZnTiocnAP/i49jFOERlh3xX3++W1Gj0hc
/dWskcRu6smY1byLyyi6TDtI4b7Mdufb0WIDIIQTUZ/WtOpXUywIJfWx5fY98c0X
4PGhvQSsK9gjBlPP6DLsXff6WMfeyAhmotVY5rSNjqZ6cWhqEYL+txlyT2UNb41x
+jyiqqM+pIiHG47tN+RXovHIH7D04tf7BbhGlVIyd+UHCR5jh5W1/aIS9mQt84/D
sB+gURSpBxEm8v8+ym3ASn8p+i6vaCvSWaPVd8n7S0FxtyQJQFhfCyxfIN1kiw/R
Qoepww587FIVOCJte5PsrN1vm5z4DCF6T5Ha3M0qe0vkILb72Jtpq70UiOU4DnWi
8W3oVrEslAlU7XUfweq9AG8YKc1qbueGYC/AiCh/ehx4280VOnb31bAVWxypxrCU
Mx4D7xpk73QtRp0lDShiK9mPMw1TGcJhMLCy5AxXyM+VRTJvtV5L7edckw219Pdn
RGjo69mApxUI9vzOvN8oLYC/NZ+WLVJRpzczFRrTI5G4Ze0532+Hb4/4GeUywyeB
7YyENjiCR1sr4PpB7wYMbzD5pd5bWQfmThkFeMXJNeFWXwcS2mIAnOBKrpb7nXFB
6gW7cpVsItQW46Mvxp6S/lSrFsayyARhJPQF05DtPwC7/Fyc71rrlzvoEZtrMcfI
icmA8xm6ERNflQjJFEjp
=pj9y
-END PGP SIGNATURE-


Accepted:
tzdata-java_2011b-1_all.deb
  to main/t/tzdata/tzdata-java_2011b-1_all.deb
tzdata_2011b-1.debian.tar.gz
  to main/t/tzdata/tzdata_2011b-1.debian.tar.gz
tzdata_2011b-1.dsc
  to main/t/tzdata/tzdata_2011b-1.dsc
tzdata_2011b-1_all.deb
  to main/t/tzdata/tzdata_2011b-1_all.deb
tzdata_2011b.orig.tar.gz
  to main/t/tzdata/tzdata_2011b.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/e1pnahb-0004ly...@franck.debian.org



Accepted unison2.27.57 2.27.57-3 (source amd64)

2011-02-10 Thread Sylvain Le Gall
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 14:47:54 +0100
Source: unison2.27.57
Binary: unison2.27.57 unison2.27.57-gtk
Architecture: source amd64
Version: 2.27.57-3
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Sylvain Le Gall gil...@debian.org
Description: 
 unison2.27.57 - A file-synchronization tool for Unix and Windows
 unison2.27.57-gtk - A file-synchronization tool for Unix and Windows with GTK+ 
interf
Closes: 585453
Changes: 
 unison2.27.57 (2.27.57-3) unstable; urgency=low
 .
   [ Stéphane Glondu ]
   * Team upload
   * Switch source package format to 3.0 (quilt)
   * Add patch to fix build with OCaml 3.12 (Closes: #585453)
   * Add set -e to maintainer scripts
   * Remove conflicts older than oldstable
   * Bump Standards-Version to 3.9.1
 .
   [ Sylvain Le Gall ]
   * Backup files changed during build (lwt/depend, ubase/depend)
Checksums-Sha1: 
 8304bd88ec71031bd357acb4f9a7b01ead4fbad8 2134 unison2.27.57_2.27.57-3.dsc
 3bc31588b17ee565bedc1084ec2c3180e51120d6 16351 
unison2.27.57_2.27.57-3.debian.tar.gz
 8021be44acd018abcc42c53f0741300c89efb703 628264 
unison2.27.57_2.27.57-3_amd64.deb
 72d939b60ae29bc1531b85c0288560c298f63f6b 1161432 
unison2.27.57-gtk_2.27.57-3_amd64.deb
Checksums-Sha256: 
 d5dcb8129b015a0bb58134ada01c9f14c32e11ae3e46f5605726a4c9225e3cf1 2134 
unison2.27.57_2.27.57-3.dsc
 f53cad5e26b6b62e6fb1239416648b007ac50ca53f112ba28f22e2bb110f8e6c 16351 
unison2.27.57_2.27.57-3.debian.tar.gz
 f5b6dca51aed4504bff76b446e0511d44809453b848ea62c472a05129dd15246 628264 
unison2.27.57_2.27.57-3_amd64.deb
 9f07656e56d9beb2844a859411638e1f646411f042c71bb598edee8c33521ac2 1161432 
unison2.27.57-gtk_2.27.57-3_amd64.deb
Files: 
 1cf0e350be6fbb71b4d3ed041a80697f 2134 utils optional 
unison2.27.57_2.27.57-3.dsc
 56be42acd003276a2d6755c797e315c0 16351 utils optional 
unison2.27.57_2.27.57-3.debian.tar.gz
 32e1328683d82065ead646f6b5e33bda 628264 utils optional 
unison2.27.57_2.27.57-3_amd64.deb
 aff5afc8abf5d38efbff900a8a36e8b3 1161432 utils optional 
unison2.27.57-gtk_2.27.57-3_amd64.deb

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

iQIcBAEBCgAGBQJNU+1oAAoJEHhT2k1JiBrTZEoQAIQZ2Xzf9PiuEPmbPOMJi5fZ
vjtmToKYJTCYAwUEyxEDx6EFNoRrUMctqGj81e2pxcld+9K9Lj/nHIYXLS4itOGs
s5vhCDYuKxzGsbKiijJ2YUiG55J+WH5DslMjmgqaEF5afSX27CbtTPBoq/YvY0xC
L6HU9ySPogp1VUGTc86ziSTC28axvghzkDM3GQOt7HMorlZnOOLHzlh3PAxQhPos
A4HsZp0XT9rKm+gAH6PhUsZn0bAn2quIuP1K37dYLxMSK9KLE6jegwJ0zgWc61Ch
CvgkMC3OJg6Evkod5UtoOAgCXyOzhba3AEIb26b/DFrS3eq1KoQZ43yxk/QDdsVw
KRTkU8yyKuCVw5IrhAYVp7516pUUeKCJJYrHe4egdiZWRhuw3DQIlIcCgxPacDWb
SAcK/MKpGn5/PXYz9pRrm/lVMBQ64Esmxpq8rnvNmSRjvL0ThyJNx/bCMdwn2AZl
fuAWHkidGCBvtO5QtngSBz5SgvaFp+hX78jkGR7niyxYihONk92W7uhYle3U43ft
+wpep69g61a7j4axbl4qqi+teF283nqG3KKXvGZntpQgNZh+twLO6JlPHXbrkTXw
CyGENwjBH21/aG+qInJW+jZ5cI5kVW1Ua3UhJ9nD3LaXVWFPaVzT0H+6JXihRZiM
7r2n8Bd3oE8cxcuhA8/a
=GmSv
-END PGP SIGNATURE-


Accepted:
unison2.27.57-gtk_2.27.57-3_amd64.deb
  to main/u/unison2.27.57/unison2.27.57-gtk_2.27.57-3_amd64.deb
unison2.27.57_2.27.57-3.debian.tar.gz
  to main/u/unison2.27.57/unison2.27.57_2.27.57-3.debian.tar.gz
unison2.27.57_2.27.57-3.dsc
  to main/u/unison2.27.57/unison2.27.57_2.27.57-3.dsc
unison2.27.57_2.27.57-3_amd64.deb
  to main/u/unison2.27.57/unison2.27.57_2.27.57-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/e1pnaiq-0004sa...@franck.debian.org



Accepted wicd-kde 0.2.1-5 (source i386)

2011-02-10 Thread shaola
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 13:16:23 +
Source: wicd-kde
Binary: wicd-kde
Architecture: source i386
Version: 0.2.1-5
Distribution: unstable
Urgency: low
Maintainer: Iker Salmón San Millán (shaola) sha...@esdebian.org
Changed-By: Iker Salmón San Millán (shaola) sha...@esdebian.org
Description: 
 wicd-kde   - Wired and wireless network manager - KDE client
Closes: 612501
Changes: 
 wicd-kde (0.2.1-5) unstable; urgency=low
 .
   * changed Architecture from any to linux-any (closes: #612501)
Checksums-Sha1: 
 e185264b381ba6e308693f82008d3c2753f48840 1152 wicd-kde_0.2.1-5.dsc
 f2fb12cc923c006039cc929435d79de77426962b 12354 wicd-kde_0.2.1-5.debian.tar.gz
 1ca6a90806fb5903540b96e0f5b83a487cbb213e 346600 wicd-kde_0.2.1-5_i386.deb
Checksums-Sha256: 
 409e131c4bc26d8b6580fd2e8e64ae3a27203a06248f69aa43600cc665a1a921 1152 
wicd-kde_0.2.1-5.dsc
 d72612e451d6447c6b9263bff486b63d829a11f17c480921825b2e244ee32846 12354 
wicd-kde_0.2.1-5.debian.tar.gz
 abb49dbd0de24c9961b5688f6b128e0e5029feb2b08b88a523959dd6b857c606 346600 
wicd-kde_0.2.1-5_i386.deb
Files: 
 293b3f0cec8ff765622677ec68ceb87d 1152 kde optional wicd-kde_0.2.1-5.dsc
 5f20c876a20e94d669e490a309ab83e3 12354 kde optional 
wicd-kde_0.2.1-5.debian.tar.gz
 2ab69fb0aeab45da149c986894ee9fb5 346600 kde optional wicd-kde_0.2.1-5_i386.deb

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

iEYEARECAAYFAk1UAO0ACgkQ5qqQFxOSsXTn/QCfVUQLV49zZZGkBb5gkMUt0TZn
r8IAoK7KMyEl95P7u+zSxBnuwU21NwMa
=Mnoi
-END PGP SIGNATURE-


Accepted:
wicd-kde_0.2.1-5.debian.tar.gz
  to main/w/wicd-kde/wicd-kde_0.2.1-5.debian.tar.gz
wicd-kde_0.2.1-5.dsc
  to main/w/wicd-kde/wicd-kde_0.2.1-5.dsc
wicd-kde_0.2.1-5_i386.deb
  to main/w/wicd-kde/wicd-kde_0.2.1-5_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/e1pnaiu-0004xq...@franck.debian.org



Accepted x11-xfs-utils 7.6+1 (source amd64)

2011-02-10 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 17:42:00 +0100
Source: x11-xfs-utils
Binary: x11-xfs-utils
Architecture: source amd64
Version: 7.6+1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 x11-xfs-utils - X font server utilities
Changes: 
 x11-xfs-utils (7.6+1) unstable; urgency=low
 .
   * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
 good reason.  Thanks, Colin Watson!
   * Remove myself from Uploaders
   * debian/rules: add get-tarballs rule.
   * New upstream releases:
 - fslsfonts 1.0.3
 - fstobdf 1.0.4
 - showfont 1.0.3
 - xfsinfo 1.0.3
   * Remove Brice Goglin and David Nusinow from Uploaders.  Thanks for your
 work!
   * Drop Pre-Depends on x11-common.
   * Bump Standards-Version to 3.9.1.
   * Run dh_makeshlibs before dh_installdeb/dh_shlibdeps (lintian).
Checksums-Sha1: 
 e451e3f90d84ba5fea280ba3ba06128f2cd0d46b 1577 x11-xfs-utils_7.6+1.dsc
 66bca618bd55a75eea58685027c4e5a91efc69e4 547319 x11-xfs-utils_7.6+1.tar.gz
 ad63d6870e4bf79bf71ee226f9f5ca11a9d40ebe 27516 x11-xfs-utils_7.6+1_amd64.deb
Checksums-Sha256: 
 facfabfa003c941d719517d6ca206794a6c7287efd56ae403782d8f5f2ab0ff0 1577 
x11-xfs-utils_7.6+1.dsc
 194b5a2ae4bb91d21e923db8a1175eab7d7d91a7d2ee38d83c348217e9022d2b 547319 
x11-xfs-utils_7.6+1.tar.gz
 d9dde590d6bdd4b96502131aa7003fd56159e1567f6371daaf8fe7b80ca5a4c0 27516 
x11-xfs-utils_7.6+1_amd64.deb
Files: 
 8475abbc844da49a011d9d6da83ea72a 1577 x11 optional x11-xfs-utils_7.6+1.dsc
 749d21e2df6ca3a05b4a0504644f7060 547319 x11 optional x11-xfs-utils_7.6+1.tar.gz
 d36d9bb989e690837f06e4059fda8daa 27516 x11 optional 
x11-xfs-utils_7.6+1_amd64.deb

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

iQIcBAEBCAAGBQJNVBXuAAoJEDEBgAUJBeQM7O8QAOf06+x4w2g1wc+gDz9e81hF
OTy5wQoB1yNTV54o07C3pdNPul8CY7EMKEFx7L8pWH/1YEIM9j4TgiivY2HsnQSo
cywVS2DJGZgyer2idIY/M4MqWGVJksfUjWW2LRuVrhLmqHw4y+MDoWxuTaxcx/Kh
IGEX2GmtiqEtPi4eGCAKHyo+DwZhKD6fL1yr8z+h/Bcde97mdyzxnuYFd6P/F3S4
nNhzOLbRH9mJBQz+PxNEcY7x2jALXflhoRc5YmwcddQLN1IJxaKXW49NFlgjIrRp
a8giRE79VZWo4bhFDJFMckh9fJk1UqP3bhbiG4wdYH1FWF9fKhgkGgx65CaPZzo2
WNxvk2Mmdq5iU6heOKOeT0jFDUN4A03EkZ1aV2Fr0JbYxJayOr1HOqcppFnAur82
7yHkk9Fxky0OGqF04ky/V+hEwYGRf0XUbJAwkYytqC17ZNXZXmm36QWZqSiSB5cV
irzFZhP/mACIy+vlwfOdvbnbVh/AEqVJ3pH7MCELA69COsSeH+6AMRXdlOGL7LzA
OIB7O5k8+0bYG48+VqP6EsSsegXxnr9mCKxYDQgVsmtpsyb491eR1wWlNZgi/sLH
07Z3e2BcTB9KUXhx0ZyB7EJiplsPcPrP+SSHPj3jbAevVCEdtm9aUcTWI5H0Ydgl
VJo/4Dgy2NXVLSvXIzWm
=qfk2
-END PGP SIGNATURE-


Accepted:
x11-xfs-utils_7.6+1.dsc
  to main/x/x11-xfs-utils/x11-xfs-utils_7.6+1.dsc
x11-xfs-utils_7.6+1.tar.gz
  to main/x/x11-xfs-utils/x11-xfs-utils_7.6+1.tar.gz
x11-xfs-utils_7.6+1_amd64.deb
  to main/x/x11-xfs-utils/x11-xfs-utils_7.6+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/e1pnajl-0004ap...@franck.debian.org



Accepted xchm 2:1.18-2 (source amd64)

2011-02-10 Thread Kartik Mistry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 17:20:50 +0530
Source: xchm
Binary: xchm
Architecture: source amd64
Version: 2:1.18-2
Distribution: unstable
Urgency: low
Maintainer: Kartik Mistry kar...@debian.org
Changed-By: Kartik Mistry kar...@debian.org
Description: 
 xchm   - Compiled HTML Help (CHM) file viewer for X
Changes: 
 xchm (2:1.18-2) unstable; urgency=low
 .
   * Uploaded to unstable
Checksums-Sha1: 
 0aee84ef28bdbaf998b7435838e3245cccaee197 1089 xchm_1.18-2.dsc
 d5f8b3ae8c80a9c74f79dcd2b90bdd021c89105e 8990 xchm_1.18-2.debian.tar.gz
 a58d0bafa1d2ab233adafa57fbfd805935b3510b 184106 xchm_1.18-2_amd64.deb
Checksums-Sha256: 
 f7a10fd60f4ce1181a83e55fb17a6ac8454c4299ff198a02c582e63f21f28943 1089 
xchm_1.18-2.dsc
 c6fa1f9dd89883b15cf3d3a2cb0834e94e4897994f337204ef8da809e31653d1 8990 
xchm_1.18-2.debian.tar.gz
 2af0a2ac52e888ba7991a87540490c0ebf5c78de690af125adb0ffb80358 184106 
xchm_1.18-2_amd64.deb
Files: 
 c9ef10b4476e436aea88e16bac28ab6e 1089 x11 optional xchm_1.18-2.dsc
 9c76e6dc72f9e5fbfad9f16c938eb9f2 8990 x11 optional xchm_1.18-2.debian.tar.gz
 7ebe2790f95b505c8fd4192dd59fcb35 184106 x11 optional xchm_1.18-2_amd64.deb

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

iEYEARECAAYFAk1T3OQACgkQoRg/jtECjI2kcgCeJ0+msaXINyx1utx4OuBrFrAs
3u0AoK4wQFJ8zPwD6PRoVhd3gclA5bXH
=I1Ya
-END PGP SIGNATURE-


Accepted:
xchm_1.18-2.debian.tar.gz
  to main/x/xchm/xchm_1.18-2.debian.tar.gz
xchm_1.18-2.dsc
  to main/x/xchm/xchm_1.18-2.dsc
xchm_1.18-2_amd64.deb
  to main/x/xchm/xchm_1.18-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/e1pnaje-0004d9...@franck.debian.org



Accepted zeroc-ice 3.4.1-2 (source all i386)

2011-02-10 Thread Cleto Martin Angelina
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 14:46:43 +0100
Source: zeroc-ice
Binary: zeroc-ice34 ice34-translators ice34-services libicestorm34 libicegrid34 
libicebox34 icebox libicepatch2-34 libglacier2-34 libfreeze34 libicedb34 
ice34-slice libzeroc-ice34 libicessl34 libiceutil34 libicexml34 libslice34 
libzeroc-ice34-dev libzeroc-ice34-dbg python-zeroc-ice php-zeroc-ice 
libzeroc-ice3.4-cil libzeroc-ice-ruby1.8 libzeroc-ice3.4-java icegrid-gui
Architecture: source all i386
Version: 3.4.1-2
Distribution: unstable
Urgency: high
Maintainer: Francisco Moya p...@debian.org
Changed-By: Cleto Martin Angelina cleto.mar...@gmail.com
Description: 
 ice34-services - Services bundled into ZeroC Ice
 ice34-slice - Slice definitions for Ice 3.4 services
 ice34-translators - Slice translators to several languages
 icebox - Plugin-based meta-application for ZeroC Ice
 icegrid-gui - GUI for IceGrid service
 libfreeze34 - Libraries implementing a persistence framework for ZeroC Ice
 libglacier2-34 - Libraries implementing a firewall service for ZeroC Ice
 libicebox34 - Libraries implementing a plugin framework for ZeroC Ice
 libicedb34 - Libraries for persistent backends for ZeroC Ice
 libicegrid34 - Libraries implementing grid-like services for ZeroC Ice
 libicepatch2-34 - Libraries implementing a distribution service for ZeroC Ice
 libicessl34 - Ice for C++ SSL plug-in
 libicestorm34 - Libraries implementing an event service for ZeroC Ice
 libiceutil34 - Ice for C++ misc utility library
 libicexml34 - ZeroC Ice for C++ XML parser library
 libslice34 - Ice for C++ Slice parser library
 libzeroc-ice-ruby1.8 - Ice for Ruby modules
 libzeroc-ice3.4-cil - Ice for C# libraries
 libzeroc-ice3.4-java - Ice for Java libraries
 libzeroc-ice34 - Ice for C++ runtime library
 libzeroc-ice34-dbg - Ice for C++ debugging symbols
 libzeroc-ice34-dev - Ice for C++ development libraries
 php-zeroc-ice - Ice for PHP extension
 python-zeroc-ice - Ice for Python libraries
 zeroc-ice34 - Internet Communications Engine
Closes: 612368 612495
Changes: 
 zeroc-ice (3.4.1-2) unstable; urgency=high
 .
   * Bug fix: libzeroc-ice3.4-java and libzeroc-ice3.3-java: error when
  trying to install together, thanks to Ralf Treinen (Closes: #612495).
   * Patch for SH4 arch applied. Thanks to Nobuhiro Iwamatsu (Closes: #612368).
Checksums-Sha1: 
 9d3ca331e89cd459ca4e58e1872a2ba7f4cc9a3d 2008 zeroc-ice_3.4.1-2.dsc
 a0d2b37cf8932c00a52b004b9ce1d3a38fc7d410 36602 zeroc-ice_3.4.1-2.debian.tar.gz
 a8715f0f7b579e38dfd7cbfb868f5127f1e67679 33034 zeroc-ice34_3.4.1-2_all.deb
 88bd72973e7c4876e979dc7be7d2e03fb3b64c6a 217000 ice34-slice_3.4.1-2_all.deb
 4e3957eb25176987df32a574e5d2ded09349aa77 724746 
libzeroc-ice3.4-cil_3.4.1-2_all.deb
 68758681648e3fb8c1c38088d37bd209b080a6a3 2676646 
libzeroc-ice3.4-java_3.4.1-2_all.deb
 d4dfbc3678d1aaafd25fc326ebda1e5fbfcf4f30 2983576 icegrid-gui_3.4.1-2_all.deb
 7a1fbe1a74e05c2ef8fd74c371b325dbae63bfc5 851288 
ice34-translators_3.4.1-2_i386.deb
 d8cec13e3c649741e863a407f8a797c6cacaa87c 3364202 
ice34-services_3.4.1-2_i386.deb
 e50bd4e383e7206dabb95cc88dbdeb24a1405b45 557778 libicestorm34_3.4.1-2_i386.deb
 3856bb7adef057109ac1bee8fb959004391c4767 851978 libicegrid34_3.4.1-2_i386.deb
 f668b4d33211ef011265ba6a5c1f4c690d241efa 103886 libicebox34_3.4.1-2_i386.deb
 f5375f0f50f95df694216136c563c5532273e407 93072 icebox_3.4.1-2_i386.deb
 528f49ab032ebc37a78a02f82dbb439c56f13547 162970 
libicepatch2-34_3.4.1-2_i386.deb
 34a42420bebe6766779326189daea9668eea4f54 220058 libglacier2-34_3.4.1-2_i386.deb
 56e81a99f8b37fc75d65bbec2255b147ccb9632e 301642 libfreeze34_3.4.1-2_i386.deb
 1f3b1828cc9fa48d9555b14edb883262cd35dd54 36458 libicedb34_3.4.1-2_i386.deb
 c2b94c4afc5a36e173256862f81872eb14709e2c 1025082 
libzeroc-ice34_3.4.1-2_i386.deb
 8bbd25a7d9ceb2ad5354da5b4e80a9f8c6ab3de5 161634 libicessl34_3.4.1-2_i386.deb
 adf92440755c2b04cb1c90693b91a35c6a426201 134996 libiceutil34_3.4.1-2_i386.deb
 25c0ae240d65554ec86f4c196b0768205ea1104f 51494 libicexml34_3.4.1-2_i386.deb
 f08213ad6cd98cbb9068dae03dd53b418619afb1 478570 libslice34_3.4.1-2_i386.deb
 083fec790653e3779db03bfe9e84b925be377d16 243388 
libzeroc-ice34-dev_3.4.1-2_i386.deb
 0fb535e2c13bb680fcecde9071ae8821ebb50934 35884812 
libzeroc-ice34-dbg_3.4.1-2_i386.deb
 ec94e8b0e07366180171c5a29cc99b886877d6c0 661892 
python-zeroc-ice_3.4.1-2_i386.deb
 4c049cc3ea5c29e01c0ac515c659dd1fe034d898 32322 php-zeroc-ice_3.4.1-2_i386.deb
 d9beb565597728c881ecf688b532e8ef1e3137f0 231640 
libzeroc-ice-ruby1.8_3.4.1-2_i386.deb
Checksums-Sha256: 
 c49d88f6caef136f204b42147a91e0b067e35180f1e295889530a64a54e425a3 2008 
zeroc-ice_3.4.1-2.dsc
 e3ce8d43ce8861ac12fdbb55b14b4651a28234849bbaa94c2ae3d7807823e3e7 36602 
zeroc-ice_3.4.1-2.debian.tar.gz
 89029644009d8e6aca1ef60b1be15d1652e4dd5e675c163cc74b6f7cd57422b2 33034 
zeroc-ice34_3.4.1-2_all.deb
 ef946982c939f4272386f89d7b864fd83a4ef54c0a5fc63f57495e7c0d3b4bb8 217000 
ice34-slice_3.4.1-2_all.deb
 

Accepted zynjacku 5.2-4 (source amd64)

2011-02-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 17:22:55 +0100
Source: zynjacku
Binary: zynjacku
Architecture: source amd64
Version: 5.2-4
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 zynjacku   - JACK based host for LV2 synths and LV2 plugins
Changes: 
 zynjacku (5.2-4) unstable; urgency=low
 .
   * Depends on lashd (LP: #613145).
   * Bump Standards.
   * Remove DM-Upload-Allowed: yes, unnecessary.
   * Switch to DH 7 + autotools_dev helper.
   * Update gbp's config file.
   * Add -Wl,--as-needed to the linking flags.
   * Build-dep on python-dev = 2.6.
   * Rename patches.
   * 0001-fix_scan_without_plugins_installed.patch:
 - Properly handle scan when there are no LV2 plugins installed.
   * 0002-handle_empty_doapmaintainer_field.patch:
 - Handle empty doap:maintainer.
   EQ10Q-1.0 does not define the foaf prefix and this causes empty
   doap:maintainer.
   * 0003-syntax_error_exception.patch:
 - Fix syntax error exception.
   * 0004-flex_parser_recognizes_datatype_uris_and_lang_suffixes.patch:
 - In the flex parser, recognize datatype URIs and language suffixes
   for string literals
 - Add ttl.l flex description file.
   * 0005-lv2_parser_ignores_datatype_uris_and_lang_suffixes.patch:
 - In the LV2 parser, ignore datatype URIs and language suffixes for
   string literals.
   * 0006-ui_gtk_threads_init.patch:
 - Call gtk.gdk.threads_init() before doing any GTK+ stuff.
   When using the Composite Sampler plugin, the UI would freeze (but
   the audio would be functional).
   * 0007-unknown_ui_types.patch:
 - React better to unknown or unspecified UI types.
 - Minor refactoring.
   * 0008-continue_on_missing_ui_plugin_req.patch:
 - Do not give up too easily when not being able to meet UI plugin's
   requirement. Just try another one.
   * 0009-regex_uris_command_line.patch:
 - Add command line support for /regex/ syntax for URIs.
   * 0010-external_gui_cleanup.patch:
 - Call cleanup on the external GUI.
   * 0011-check_ui_is_visible.patch:
 - Make sure that ui_run didn't shut down the GUI.
   * 0012-fix_parsing_lv2rack_cmdline.patch:
 - Fix parsing of lv2rack commandline.
Checksums-Sha1: 
 c4a5416e21f112f0976e28b1a285b7fa3a380438 1452 zynjacku_5.2-4.dsc
 5fde5f1587d35fe9a5b894d54ff2976d8d9a0ab3 17053 zynjacku_5.2-4.debian.tar.gz
 fa6c83884e04286e33543fcbf5b47d3a7c05f157 138192 zynjacku_5.2-4_amd64.deb
Checksums-Sha256: 
 cd7f201aa8a44fa1c0ebf416547927debefcc677eaed09380cbfb52d8151ffee 1452 
zynjacku_5.2-4.dsc
 73baae96c901ab1d44ab53265107c68022bc44236e038b149e69a400c6c9eea9 17053 
zynjacku_5.2-4.debian.tar.gz
 968290df04abdae4ced05433bc236bc3d8fb9d8fc48d51f92dbd2cda7689ab93 138192 
zynjacku_5.2-4_amd64.deb
Files: 
 8108c431f543c32c371afba82f8be2a8 1452 sound optional zynjacku_5.2-4.dsc
 bf04811814bdc72352f25a554fd30668 17053 sound optional 
zynjacku_5.2-4.debian.tar.gz
 6d7c66bcf5c29621ff23bd569d4f89c2 138192 sound optional zynjacku_5.2-4_amd64.deb

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

iEYEARECAAYFAk1UEacACgkQRdSMfNz8P9DusgCeLB22I7uLPxksDjZLS/gI+4tF
NsUAn1nRpKdFJvF/SwHt9HNavXG1BCZx
=fVcW
-END PGP SIGNATURE-


Accepted:
zynjacku_5.2-4.debian.tar.gz
  to main/z/zynjacku/zynjacku_5.2-4.debian.tar.gz
zynjacku_5.2-4.dsc
  to main/z/zynjacku/zynjacku_5.2-4.dsc
zynjacku_5.2-4_amd64.deb
  to main/z/zynjacku/zynjacku_5.2-4_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/e1pnaum-0006ap...@franck.debian.org



Accepted bcfg2 1.1.1-2 (source all)

2011-02-10 Thread Arto Jantunen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 18:49:19 +0200
Source: bcfg2
Binary: bcfg2 bcfg2-server
Architecture: source all
Version: 1.1.1-2
Distribution: unstable
Urgency: low
Maintainer: Arto Jantunen vi...@debian.org
Changed-By: Arto Jantunen vi...@debian.org
Description: 
 bcfg2  - Configuration management client
 bcfg2-server - Configuration management server
Closes: 608613
Changes: 
 bcfg2 (1.1.1-2) unstable; urgency=low
 .
   * The Yay Squeeze release
   * Upload to unstable
   * Transition to dh_python2
   * Upstream has added a man page for bcfg2-reports (Closes: #608613)
Checksums-Sha1: 
 578596a7561663da69462e2bd765607fb502c81c 1071 bcfg2_1.1.1-2.dsc
 ab6a257c734293c0fd90cfc3a004ad15c03289d8 14759 bcfg2_1.1.1-2.debian.tar.gz
 1c21519dca7d03687a5f649ec7ec039d53936969 93576 bcfg2_1.1.1-2_all.deb
 3c60be5c834287d21088d889aff77a0ecbe04a9d 176568 bcfg2-server_1.1.1-2_all.deb
Checksums-Sha256: 
 ffeffee07bb7a4264a7bcad2c381d2688e921cdd12d4f6b50724484243f33026 1071 
bcfg2_1.1.1-2.dsc
 a4b9c5aad5dc12590bbd6d6f070e170151947a7daad412135ea31eac47dd2ada 14759 
bcfg2_1.1.1-2.debian.tar.gz
 3e465f17d3c99ee96a1c61f8be4c4fe2254ed45ca53fb7b50b2d04bfb9940df1 93576 
bcfg2_1.1.1-2_all.deb
 bda9d9539d9fd221ccb81b5adf4f9e431bf2d263786df38d51b75d8000432c0a 176568 
bcfg2-server_1.1.1-2_all.deb
Files: 
 0baec16f6874c9821ca2befe52ff702a 1071 admin optional bcfg2_1.1.1-2.dsc
 2e1ff67eb8baa835c6de524c3aaa40a6 14759 admin optional 
bcfg2_1.1.1-2.debian.tar.gz
 5d82107d4a6b1c8dba8d3ba52c02f02a 93576 admin optional bcfg2_1.1.1-2_all.deb
 3d3cbfc1569660f8a7160de414f2930f 176568 admin optional 
bcfg2-server_1.1.1-2_all.deb

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

iEYEARECAAYFAk1UGq8ACgkQQ9/iJIjcFnoQMgCeLiL7MpleJt7RyWcSH/xlw5R1
ZVgAoLHWop5cpcRjik4ioX1aDA3aWO8A
=7jRN
-END PGP SIGNATURE-


Accepted:
bcfg2-server_1.1.1-2_all.deb
  to main/b/bcfg2/bcfg2-server_1.1.1-2_all.deb
bcfg2_1.1.1-2.debian.tar.gz
  to main/b/bcfg2/bcfg2_1.1.1-2.debian.tar.gz
bcfg2_1.1.1-2.dsc
  to main/b/bcfg2/bcfg2_1.1.1-2.dsc
bcfg2_1.1.1-2_all.deb
  to main/b/bcfg2/bcfg2_1.1.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/e1pnaqm-0001im...@franck.debian.org



Accepted foreign 0.8.42-1 (source i386)

2011-02-10 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 11:45:03 -0600
Source: foreign
Binary: r-cran-foreign
Architecture: source i386
Version: 0.8.42-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-foreign - GNU R package to read/write data from other stat. systems
Changes: 
 foreign (0.8.42-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
Checksums-Sha1: 
 d3614b200285f05f4ed1d1f0dc178c6fbe561044 983 foreign_0.8.42-1.dsc
 b986ff7465fce6b1b6fee3eabc709f4eef895e5f 334727 foreign_0.8.42.orig.tar.gz
 44dab9538077580d74c15baba056e81dcb2efbbe 3384 foreign_0.8.42-1.diff.gz
 54a3c7a1dfb9ecadb8f4b6eb805c9d4b96079cd4 167010 
r-cran-foreign_0.8.42-1_i386.deb
Checksums-Sha256: 
 c4c9d76e2b3a1b970075c18cc7b72c51dc98dae276f9965aeb0e46b1c696fb08 983 
foreign_0.8.42-1.dsc
 05ff79db83486d0c4396304088317da110188d5e9802f08924c8895f592d183c 334727 
foreign_0.8.42.orig.tar.gz
 9934ccb50359b5b36bee42b8967b520332c5d457c149a8c9ff203f0fc81e875f 3384 
foreign_0.8.42-1.diff.gz
 76b3ad3118ace88e833a17aab154213ff72110d46257ecbb7e59695d46e20d13 167010 
r-cran-foreign_0.8.42-1_i386.deb
Files: 
 7d96a67d5b92152ab234a8bfbee668ad 983 gnu-r optional foreign_0.8.42-1.dsc
 3b477b4e3ea29f57eb79d0b054581fd7 334727 gnu-r optional 
foreign_0.8.42.orig.tar.gz
 e45af771573f1cf6ee6d6fcc05e5a29a 3384 gnu-r optional foreign_0.8.42-1.diff.gz
 2aa8e879c86c37a2d0510124454af379 167010 gnu-r optional 
r-cran-foreign_0.8.42-1_i386.deb

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

iD8DBQFNVCU2CZSR95Gw07cRAhiDAJ4vi5hkk0GowOtzuFp7CmWEpY7+wACcCVCH
LNRk+sbjSvoGLfgR9PwP24M=
=aq2f
-END PGP SIGNATURE-


Accepted:
foreign_0.8.42-1.diff.gz
  to main/f/foreign/foreign_0.8.42-1.diff.gz
foreign_0.8.42-1.dsc
  to main/f/foreign/foreign_0.8.42-1.dsc
foreign_0.8.42.orig.tar.gz
  to main/f/foreign/foreign_0.8.42.orig.tar.gz
r-cran-foreign_0.8.42-1_i386.deb
  to main/f/foreign/r-cran-foreign_0.8.42-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/e1pnasl-0001tw...@franck.debian.org



Accepted r-cran-slam 0.1-20-1 (source i386)

2011-02-10 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 11:41:40 -0600
Source: r-cran-slam
Binary: r-cran-slam
Architecture: source i386
Version: 0.1-20-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-slam - GNU R sparse lighweight arrays and matrices package
Changes: 
 r-cran-slam (0.1-20-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
Checksums-Sha1: 
 582f555487f5c3fc4498627b8213516aa7317d94 1070 r-cran-slam_0.1-20-1.dsc
 2a9ad93c34addb56b32e9193229873044f5400d6 20452 r-cran-slam_0.1-20.orig.tar.gz
 71bfa1f59c5cb6f98aa9c5dc4821efd258337425 1598 r-cran-slam_0.1-20-1.diff.gz
 ecea6c25ea038979ae37c0e8d67661b6041823b6 47758 r-cran-slam_0.1-20-1_i386.deb
Checksums-Sha256: 
 1c600667225aa18821b000b50d9c5175c943c3afaaaf43f1f013d46be491f951 1070 
r-cran-slam_0.1-20-1.dsc
 e36885671d277894824fd8ad80d5b288db3da0ef886539453fa474a9330f00f1 20452 
r-cran-slam_0.1-20.orig.tar.gz
 df4b23f6c7ee6847d04136f46e83ab30950d817e42b9f1b1006701e1200c9464 1598 
r-cran-slam_0.1-20-1.diff.gz
 90956426c2bbdc86994c3c75bd24a4f1e224b430e658c7d9948d4e216a2a741a 47758 
r-cran-slam_0.1-20-1_i386.deb
Files: 
 8f353b0bce6790343f83132087a4ac2c 1070 gnu-r optional r-cran-slam_0.1-20-1.dsc
 4a54d6ddaf621f74ae6dd6b844df6228 20452 gnu-r optional 
r-cran-slam_0.1-20.orig.tar.gz
 3a653ecf63a25b24ccdae35fd1b3229e 1598 gnu-r optional 
r-cran-slam_0.1-20-1.diff.gz
 e94ada0681277b7f5b674809083d3f55 47758 gnu-r optional 
r-cran-slam_0.1-20-1_i386.deb

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

iD8DBQFNVCOcCZSR95Gw07cRAnU4AJ9rh0O34T9b3jkipbnof6twUffYnwCfUnzE
uf/mRBwc/i87lO+QmRSx4LM=
=O9y8
-END PGP SIGNATURE-


Accepted:
r-cran-slam_0.1-20-1.diff.gz
  to main/r/r-cran-slam/r-cran-slam_0.1-20-1.diff.gz
r-cran-slam_0.1-20-1.dsc
  to main/r/r-cran-slam/r-cran-slam_0.1-20-1.dsc
r-cran-slam_0.1-20-1_i386.deb
  to main/r/r-cran-slam/r-cran-slam_0.1-20-1_i386.deb
r-cran-slam_0.1-20.orig.tar.gz
  to main/r/r-cran-slam/r-cran-slam_0.1-20.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/e1pnaxy-0001ut...@franck.debian.org



Accepted tzdata 2011b-2 (source all)

2011-02-10 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Feb 2011 12:28:15 -0500
Source: tzdata
Binary: tzdata tzdata-java
Architecture: source all
Version: 2011b-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-gl...@lists.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 tzdata - time zone and daylight-saving time data
 tzdata-java - time zone and daylight-saving time data for use by java runtimes
Closes: 612700
Changes: 
 tzdata (2011b-2) unstable; urgency=low
 .
   * Mark tzdata and tzdata-java as Multi-Arch: foreign.
 closes: #612700.
Checksums-Sha1: 
 1fe8d267daa1874cb177c18f59fe6f3f3b2d667a 1794 tzdata_2011b-2.dsc
 9064025ffd17d038706782772c423d90a2c141df 249529 tzdata_2011b-2.debian.tar.gz
 76b7d91b3b299bf69d8427d9f5dcfd61e6fb17c6 764398 tzdata_2011b-2_all.deb
 b62d61a975436464652e18cf05c2c15637f6bcbe 151642 tzdata-java_2011b-2_all.deb
Checksums-Sha256: 
 223e201e0f343c51fc28fe98f61cfcbe740d7660c45748dae9f7fd15384b8979 1794 
tzdata_2011b-2.dsc
 4b4c877c1cb99a997c99767e53de3263cf6835ef4d35213e8b5c1ddb2056b711 249529 
tzdata_2011b-2.debian.tar.gz
 2c270ddbd6c776f96d9ea9a5fab42f3155f01af15575bea571a9290aa5df1a94 764398 
tzdata_2011b-2_all.deb
 da5b2ae24282949d5043196f8b0fb22302c9b570764fb9723a6cdc9fb83478eb 151642 
tzdata-java_2011b-2_all.deb
Files: 
 fedde2798d6f31467823590ab8c328b4 1794 libs required tzdata_2011b-2.dsc
 1e1333c3953b958dd592953eb45577f9 249529 libs required 
tzdata_2011b-2.debian.tar.gz
 d1062a5859040e99526d97d8044607ca 764398 libs required tzdata_2011b-2_all.deb
 aec375121e4b508cac23fd5159eb7257 151642 java optional 
tzdata-java_2011b-2_all.deb

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

iQIcBAEBCgAGBQJNVCC0AAoJEFWSMx4ZnTiornMP/R4kVg0D0IOP1pGUG6/8V/XK
FTtLDWyuwMsAI5dXVm99EhJBKqrFzAFMFpfdWxRC7tcEWtQUs5MWLH0u2To6gYmL
1AS/cNkUyT6Nm9xbF7Zul7ihEIT0DYWO7gs4zO68b1cp5IqOK0bLC6DFbqXV1w6x
mbWGyNXYSEdC9eoa3xuf+x6jTVfKWJJ/j/bO29WjGCEd4hua8UB3w51UJuRW6aDj
tCtaQr2+N0bLOccd1P4L98Kpx+pPOnLgnQFfOsg6nZ/ZcdVxV+2eELpNqu46DOpL
/iTaQxddf74zFOCDmRFN8JpIOZHlrwKgHeH9ECxPK68CrpyksEE+ZhSjxqJI7+0z
vWTO0rwKKL761uDztNM5p5Pa6Db5OfAVHhkFkmPvg2pTa8C0X/1zDU5MNyBmE/dd
Y5ShL9sjSxAhR1CqElBuOiEtI7H8PI8yQqCaLoLJFzgisxxhEC6QloFDVg3HBcY6
pQnfRFZG2WVIHReq+BJ46exG1Giw3uHci/D8HOQL4AQT449BC1GpkIJrWkX1Eco7
tExzRXmsAZEEAaqrHkIfsyzSav5HgQx2LxmXiOu5FJ6oMfttZp+QY+IUB4LSXqTe
TBy5Nec1B01ET56JaN8AtAwt/FOgP3/Q2t8rIBmtlOL9fPHn/eZIP/DGH3tyYac+
rlUcFh4vzLmMHjB38q6E
=d1RM
-END PGP SIGNATURE-


Accepted:
tzdata-java_2011b-2_all.deb
  to main/t/tzdata/tzdata-java_2011b-2_all.deb
tzdata_2011b-2.debian.tar.gz
  to main/t/tzdata/tzdata_2011b-2.debian.tar.gz
tzdata_2011b-2.dsc
  to main/t/tzdata/tzdata_2011b-2.dsc
tzdata_2011b-2_all.deb
  to main/t/tzdata/tzdata_2011b-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/e1pnayt-00024f...@franck.debian.org



Accepted x11-xkb-utils 7.6+2 (source amd64)

2011-02-10 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 17:59:27 +0100
Source: x11-xkb-utils
Binary: x11-xkb-utils x11-xkb-utils-udeb
Architecture: source amd64
Version: 7.6+2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 x11-xkb-utils - X11 XKB utilities
 x11-xkb-utils-udeb - X11 XKB utilities (udeb)
Closes: 80510
Changes: 
 x11-xkb-utils (7.6+2) unstable; urgency=low
 .
   [ Cyril Brulebois ]
   * Install xkbevd's example.cf file (Closes: #80510).
   * Switch dh_install from --list-missing to --fail-missing for added
 safety.
 .
   [ Julien Cristau ]
   * Remove Brice Goglin and David Nusinow from Uploaders.  Thanks for your
 work!
   * Drop Pre-Depends on x11-common.
   * Bump Standards-Version to 3.9.1.
   * Upload to unstable.
Checksums-Sha1: 
 744b55d13ca310cb080be483bef0d00abc14c716 1735 x11-xkb-utils_7.6+2.dsc
 d91bb7cb4783740b2396acb6ab0aa0b829fa7b3c 949087 x11-xkb-utils_7.6+2.tar.gz
 8b66bbe9c364a6dd1e767858e2f94c366869f02c 198064 x11-xkb-utils_7.6+2_amd64.deb
 a51bf0c6735d6f30057d7b7d650849e616cd2a4c 97880 
x11-xkb-utils-udeb_7.6+2_amd64.udeb
Checksums-Sha256: 
 0769a0018bf0791dce29ecb3af6acd16d7f1ffaa9e590bf3c9363f1551db8c9d 1735 
x11-xkb-utils_7.6+2.dsc
 5d62f3d927142a2d0ce43858d4f8027aa6bd9bf36f6fdc85f946cd21c728e8a4 949087 
x11-xkb-utils_7.6+2.tar.gz
 2d604d322c04550c1f441d16707613ddcd98a2e75e3943492b3a3102db8dfbc7 198064 
x11-xkb-utils_7.6+2_amd64.deb
 5558b8c19361642a4190a94e6ea8ed2593a9170be0c25d7d2913e118575ecce4 97880 
x11-xkb-utils-udeb_7.6+2_amd64.udeb
Files: 
 8d10ce3752f648a9a34a2e7f5830c390 1735 x11 optional x11-xkb-utils_7.6+2.dsc
 98749f826b91bd8188b71cf7aad1779a 949087 x11 optional x11-xkb-utils_7.6+2.tar.gz
 3a870b8d0ec52a27de6a949212f27f9d 198064 x11 optional 
x11-xkb-utils_7.6+2_amd64.deb
 f0d0e09645afa9485202e540d64be49c 97880 debian-installer optional 
x11-xkb-utils-udeb_7.6+2_amd64.udeb
Package-Type: udeb

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

iQIcBAEBCAAGBQJNVBoBAAoJEDEBgAUJBeQMwRMQAMpc7V/4Q/FdHYTb/JtF7BZs
U3oG9APdgLz0Fv9WH4CtsSlbl3UL8MDFV2pfbS6jZ2Tl1a5lAS1inbfedHD+zZCe
O6Q5X9kj92BMR297m8g311QxjZ1GzIJlyQ95wQV3Av2FjAQLJ5VdUcQsMtpEI6se
Hi4xsXozfzZNG1omRE87e6dKc2hY378mwBz8OHWOi76Zi6y896ug4wEcthQhPpMo
O1xJ7VLniBFOcFCaYn3vpe87gqHL/QUqdV/RkRhWcIkbYf54BL/bLrRkOfVzlKss
C60l9alaCIxFQZPRkBS3lO1OuKGJsUzAJDIMaUdGgMeWQ39OnuQSsnnR6sd1KVZg
I/IbulwQGHMUlSms15rA5aa7lTp6KksAvByVALAw+boCnStofzJbUS5g6ehxUToD
l05tkzzqMzpnSpyIZ20iwMOJUdOvfmnrbX0emV6tJxBZpX8DYlxTrtsGAphrYEMw
JU8a6pZXlYOIT716HJId/v84zhw4Bjdb6PxIdmJ/VCJouypUPCWrLHjfxOx47/Il
l0CYmcHT+CUvjAmerl+TMBAzRPQ6KEd0ozFNrm9wnrfYqFE4Kx3wOIFLnIHSKnFa
7uSH+Ntl1GE7mqBbRQvbJYEsEuDEhxlqpK2mNgQzRwt4ym8rClyVA6RmUsLUrBKd
iLvaZ+y+/E6RGjfY//qF
=rCw6
-END PGP SIGNATURE-


Accepted:
x11-xkb-utils-udeb_7.6+2_amd64.udeb
  to main/x/x11-xkb-utils/x11-xkb-utils-udeb_7.6+2_amd64.udeb
x11-xkb-utils_7.6+2.dsc
  to main/x/x11-xkb-utils/x11-xkb-utils_7.6+2.dsc
x11-xkb-utils_7.6+2.tar.gz
  to main/x/x11-xkb-utils/x11-xkb-utils_7.6+2.tar.gz
x11-xkb-utils_7.6+2_amd64.deb
  to main/x/x11-xkb-utils/x11-xkb-utils_7.6+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/e1pnaze-0002ae...@franck.debian.org



Accepted x11-xserver-utils 7.6+1 (source amd64)

2011-02-10 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 18:20:20 +0100
Source: x11-xserver-utils
Binary: x11-xserver-utils
Architecture: source amd64
Version: 7.6+1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 x11-xserver-utils - X server utilities
Closes: 509837
Changes: 
 x11-xserver-utils (7.6+1) unstable; urgency=low
 .
   [ David Nusinow ]
   * Add 03_iceauth_manpage_commands.patch. Documents iceauth commands more
 fully. Also fixes fd.o bug # 2354. Closes: #509837
 .
   [ Cyril Brulebois ]
   * Make update-copyright target .PHONY
 .
   [ Julien Cristau ]
   * xrdb 1.0.8.
   * Remove Brice Goglin and David Nusinow from Uploaders.  Thanks for your
 work!
   * Bump Standards-Version to 3.9.1.
   * Refresh patches.
   * Upload to unstable.
Checksums-Sha1: 
 91558191e9cb32bc6927de186d8f49e8d29a6e92 1904 x11-xserver-utils_7.6+1.dsc
 463546ff19d7a570950656014d7afc27badee7f5 2278532 x11-xserver-utils_7.6+1.tar.gz
 de9470793ff550dc9a2c38a628223e43ddfa7cb3 187506 
x11-xserver-utils_7.6+1_amd64.deb
Checksums-Sha256: 
 ed41d832e679937e20ab33195b5943363c0093d80f7e64e6e44de735743a64f8 1904 
x11-xserver-utils_7.6+1.dsc
 fb7c44cd4eb43156255a21b4c121c00c9af44d6fa6044478edc2aa48bc68dcb2 2278532 
x11-xserver-utils_7.6+1.tar.gz
 eb1eb89776935110201035c77c3a4c953941f5c8f0ed33a71c6953726932fca2 187506 
x11-xserver-utils_7.6+1_amd64.deb
Files: 
 775fbac71b9be4efd635ab0d85693834 1904 x11 optional x11-xserver-utils_7.6+1.dsc
 697635b355e73fb12efc072e54ff3618 2278532 x11 optional 
x11-xserver-utils_7.6+1.tar.gz
 8157d5a2cf7e6a80e5b3bf4c40960440 187506 x11 optional 
x11-xserver-utils_7.6+1_amd64.deb

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

iQIcBAEBCAAGBQJNVB9BAAoJEDEBgAUJBeQMi2IQANevHJBVQqVZqHv0urM7sSF0
biKYRIK4YfnUzxe7Q7AF2Vz206jPIAPIZrfXrGx1VWhuTpKXYQ/GIQ+Y457/Hq5A
dgDMCUV78Q3Z1XZMgRqlXpRQGf8bLwTnr0Ph1P16oSIT5pn4sLanoKZPIgGrWwnJ
6DE0dbE+7eXzxVM86Y4okuU3aCNXD1ftpjeFzf1ngwvdIiQk839S8EiF+q6v94s8
cuFytuyhuSjxn/FYIGog/R7VvDGsx61fMJfPlcE0q/A7fvhVMiRzQTwRrui2ro9j
oKJh1tuz0+RCR3EGG19EFvY7GIi4ehltqmVv6utc1FmLNjR8TacS6bJUceCztRip
0BLIFeR6inVwvDhus/IrSjybWmHotM7jv+//dCkOjFyf0mivRbUDQ39OD7klqumC
ioQ/XEc8LPD24VXBbvLVRcdI/VpmNuHyy41DFVCebOCtaGLs5UKWc0iGV9xRUFjv
S0AireAbP21Y34OunGMWlI2RKx7F1RkYj8Nn1rowwKNIFlsyenm3OwpoVjfJUkdQ
4l75ILHKDXPgRymjndGvC19aqxFEJdKX0QDI25cz8tXpLB/Rh/L3vRNfvucAbJNy
JNV4bUb0x5XL32rWkOwd3rRNme9d60y3x5diMgJXA1bN0eX0L1oshlOWTqCh1CFr
znYayGWeszWz0PSUfWMJ
=A/Cq
-END PGP SIGNATURE-


Accepted:
x11-xserver-utils_7.6+1.dsc
  to main/x/x11-xserver-utils/x11-xserver-utils_7.6+1.dsc
x11-xserver-utils_7.6+1.tar.gz
  to main/x/x11-xserver-utils/x11-xserver-utils_7.6+1.tar.gz
x11-xserver-utils_7.6+1_amd64.deb
  to main/x/x11-xserver-utils/x11-xserver-utils_7.6+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/e1pnazq-0002ey...@franck.debian.org



Accepted xterm 268-1 (source amd64)

2011-02-10 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 18:48:37 +0100
Source: xterm
Binary: xterm
Architecture: source amd64
Version: 268-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xterm  - X terminal emulator
Closes: 373139 588785 603808
Changes: 
 xterm (268-1) unstable; urgency=low
 .
   [ Sven Joachim ]
   * Prefer lynx-cur over lynx in Build-Depends.
   * Update xsfbs.
   * Drop useless debian/xterm.dirs.
   * Stop recommending the transitional xutils package.
   * Mention ncurses-base in README.Debian (Closes: #373139).
   * Do not manually gzip the text version of the FAQ, dh_compress can take
 care of that.
 .
   [ Julien Cristau ]
   * Update copy of XTerm FAQ to revision 1.167 (dated 2010/11/25)
   * New upstream release (267)
 + add copy-selection action (request by Timo Juhani Lindfors,
   closes: #588785
   * New upstream release (268)
 + fix an inconsistency of the Enable Reverse Video checkbox in the VT
   Options menu.  This also removes a special case added in patch #217
   which limited the effect of the reverseVideo resource (closes: #603808)
Checksums-Sha1: 
 cf11282e06231ef008ea278ddb7501e9a0d6fceb 1994 xterm_268-1.dsc
 b4bbc2ba29e6590c8881460502b617ac7f09f47c 955221 xterm_268.orig.tar.gz
 df336f941d357e8c9663b9ee195e2e48efff4a21 90167 xterm_268-1.diff.gz
 5de92770a84956b3b9bd9be0836578ab694c3807 569472 xterm_268-1_amd64.deb
Checksums-Sha256: 
 f0a9b9f6bc08dadbfea435cfef970582f9b6cfce9588b18b6a0b1c4792df73f5 1994 
xterm_268-1.dsc
 574d763a2dbae6c114770ca10d002dc999576fc0f65ee90c09939cfcaa4128c3 955221 
xterm_268.orig.tar.gz
 69058be5428ab1d4dae0b4299375c2f413feb1ae43d52b8f91ce0d91ae4c4b88 90167 
xterm_268-1.diff.gz
 294955f8d51c5697eed59f785bd9b9ab23f28df5fdc414c810c35a67bc3012e5 569472 
xterm_268-1_amd64.deb
Files: 
 746dee9e5d71accaa9db41f80ddb3114 1994 x11 optional xterm_268-1.dsc
 25bfc6a4a8f965e7bcc8207f0dd2e826 955221 x11 optional xterm_268.orig.tar.gz
 73ada7f3ca70a7e82800b45a271606d0 90167 x11 optional xterm_268-1.diff.gz
 d07b0bdfc7abd05321032dcf38d95ff5 569472 x11 optional xterm_268-1_amd64.deb

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

iQIcBAEBCAAGBQJNVCV/AAoJEDEBgAUJBeQMMuEQAMrtkn+mj7qXd33NKzFXzUcO
6mSb7GVeftl/0857VQppXv8R3YekPNsJQ9bm6Pg+MOigUKxEnMukgzaht30PVYZ7
8ltTFydpJxWnKC5nrANuBzeObQHSkbiySD3vCTxDhUw6uZ27vcIRX+Nh7nw0FYkM
XPgQxlOlO1nuHQ0UojFtFdfOMiaqTtSyoVRNTDfUv+yGdsBi80JwQQ+3JSfBMw+s
f07VKfDlQk/CItETQUZGkJZpX7cLkMDOBYLcnoXdWSIM6p1yPz5L/Z2dfV67XDrn
McnyHfpMqpvgDhIXfCjYmOcO9ccH6Po8IYnPotcb6FzPiQYnJegzqnaiHREp1mjZ
r/D96/JRd5MkIgHWqjIwSJW1LZ4enhnskrlJFyEayFV75E89iINeH4ZngiI5t8Xm
4drNIcZLoHJ2tZSNFbM/DtW8eMPOsthYRLXO2urF5klVWAZLiiTYJ79TE4jVvTed
sbjg/IzuIdba6lx87QXANjIoA1p6zOfPpSyxGAcC1aj3pl8CyuAbQOUoCn81xVH+
SEzxVePpq1EFG75HfDuT8ngo4R5ybjm7+EAZPGIHr9VIdCB72IJ7ybmlNumI7uDH
8XbvyQ3x/21vSAsRiE1Z2hiBy86kEEEnDLafJ6yDWC2WMkc1aGOYdvCK281dqFGi
GihEV9yS/YlA9UX+NcrL
=fx6t
-END PGP SIGNATURE-


Accepted:
xterm_268-1.diff.gz
  to main/x/xterm/xterm_268-1.diff.gz
xterm_268-1.dsc
  to main/x/xterm/xterm_268-1.dsc
xterm_268-1_amd64.deb
  to main/x/xterm/xterm_268-1_amd64.deb
xterm_268.orig.tar.gz
  to main/x/xterm/xterm_268.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/e1pnb6x-0003sy...@franck.debian.org



Accepted jacktrip 1.0.5.patch2-1 (source amd64)

2011-02-10 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 29 Nov 2010 11:27:15 +0100
Source: jacktrip
Binary: jacktrip
Architecture: source amd64
Version: 1.0.5.patch2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 jacktrip   - A System for High-Quality Audio Network Performance
Closes: 604758
Changes: 
 jacktrip (1.0.5.patch2-1) unstable; urgency=low
 .
   [ IOhannes m zmoelnig (gpg-key at iem) ]
   * Initial release.
 Closes: bug#604758.
Checksums-Sha1: 
 d90812b16a13f4170e6cc781b889ac45d49b024c 2094 jacktrip_1.0.5.patch2-1.dsc
 1a9a8dd42aa99159d83a69a2671ddcd51f0656f9 251215 
jacktrip_1.0.5.patch2.orig.tar.gz
 5cb6674ac0252273b4bcc0234b78c8fe99c366be 3633 
jacktrip_1.0.5.patch2-1.debian.tar.gz
 9126ef2d9c272a2744f82e4a944fd7884a32d1d2 535124 
jacktrip_1.0.5.patch2-1_amd64.deb
Checksums-Sha256: 
 c683c6a759180ed007995f3bf508fca5bce5ab63f0f8699648dca49d55fde854 2094 
jacktrip_1.0.5.patch2-1.dsc
 08985c0af61dd2ec23c4d1478442acf81939e4ad23705034c01e4c0e0943e199 251215 
jacktrip_1.0.5.patch2.orig.tar.gz
 9bac99783846a272994c60f6680204aee5ad8634a7a29df8bf0dabe77d98e26b 3633 
jacktrip_1.0.5.patch2-1.debian.tar.gz
 4599b25ae07027bc3ed2b184c6452720287db1c85877ef4762af1956922bc0e6 535124 
jacktrip_1.0.5.patch2-1_amd64.deb
Files: 
 a8ce721c9e800c13e474684ee0ffd967 2094 sound optional 
jacktrip_1.0.5.patch2-1.dsc
 e8c6a7241a43d684e7eb95399bd20b30 251215 sound optional 
jacktrip_1.0.5.patch2.orig.tar.gz
 68a186e1a1c4d432910cb3aadd56777d 3633 sound optional 
jacktrip_1.0.5.patch2-1.debian.tar.gz
 b9341cae811292d67c81d26d8b21235d 535124 sound optional 
jacktrip_1.0.5.patch2-1_amd64.deb

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

iQIcBAEBCgAGBQJM84OcAAoJECx8MUbBoAEheGIQAI8z5PVkGXiXJ7PdzyYS1q6g
a9SwvEGVQycGfRVpKCXJxj3atrxc/bVU9vHiBQJq0dVNDcOlJmxzU9mqzK2GXuv2
cksbCCq5GuU/bi6dpKez5Kg1tTThOy/FSObXRaEOwnYn83Y1MovYYMK9SM/SrCVg
nkO4P7bKiZMRDCL5uc6PfmH/Xko3UzRgTDEz0ZXJRFMo+rGGhif4BAlK/hciFAN4
ZBvTCISTUWRhe/SyxJ8yK/qe2nl0FUStAxL+ySdM3V8VqNjgZk9+6BbNFn48Nx8G
SpkX3HpsDbQZqD7Mu1pgrXTb6V//JCcJ/+O8LknwlLGSzEPlHFs6ajKfIISP4QlT
KqJCeHHdgUmWyf5ux5OyHjd1qpztEZ9IP+YhX3IdB0PlffUjUHj/Gsdr6zBqcpGi
sdqipCR+9e14L4O9v5CIGN5DGkl1imynnEWOhf4+fec2Aj/VyDTYMh/JvoRHDPJy
ZZABRaclj7w2tdbE9GWUoXIycupP12BoQfOiQaD7ZQ8oRkW+hGOD7S4n/4zFM5/M
Flrxh18g2dW5bV9E7Nx7qUZIR8QCRL7KA0TSkVVPMUTmp0JiZJR45L8gpicgs0lG
bFioKA8zRGjRJhaL1f4e/ysTqFWvKdIaUHbYcEMa82QR1CnfQT570iJLpuuUA59y
4c2FGHXdYnWVgRQjVhRH
=kLCp
-END PGP SIGNATURE-


Accepted:
jacktrip_1.0.5.patch2-1.debian.tar.gz
  to main/j/jacktrip/jacktrip_1.0.5.patch2-1.debian.tar.gz
jacktrip_1.0.5.patch2-1.dsc
  to main/j/jacktrip/jacktrip_1.0.5.patch2-1.dsc
jacktrip_1.0.5.patch2-1_amd64.deb
  to main/j/jacktrip/jacktrip_1.0.5.patch2-1_amd64.deb
jacktrip_1.0.5.patch2.orig.tar.gz
  to main/j/jacktrip/jacktrip_1.0.5.patch2.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/e1pnbjh-0005w0...@franck.debian.org



Accepted pdns-recursor 3.3-1 (source amd64)

2011-02-10 Thread Matthijs Möhlmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 22 Jan 2011 16:39:02 +0100
Source: pdns-recursor
Binary: pdns-recursor pdns-recursor-dbg
Architecture: source amd64
Version: 3.3-1
Distribution: unstable
Urgency: low
Maintainer: Matthijs Mohlmann matth...@cacholong.nl
Changed-By: Matthijs Möhlmann matth...@cacholong.nl
Description: 
 pdns-recursor - PowerDNS recursor
 pdns-recursor-dbg - debugging symbols for PowerDNS recursor
Closes: 565052 594243 594805
Changes: 
 pdns-recursor (3.3-1) unstable; urgency=low
 .
   * New upstream release. (Closes: #565052)
   * Init loop is fixed in pdns (Closes: #594805)
   * Now my name is spelled correctly.
   * Update Standards-Version to 3.9.1
   * Update the recursor.conf and include new configuration parameters.
   * Add debug package (Closes: #594243)
Checksums-Sha1: 
 2bdd701b2ae8deb744c433ffa271a5ec10ccf850 1821 pdns-recursor_3.3-1.dsc
 559c892b397e539518d3faade9f0aab1316e2e55 179401 pdns-recursor_3.3.orig.tar.gz
 d65b60583643f3b26cb81d3457bb31588824a19e 10995 
pdns-recursor_3.3-1.debian.tar.gz
 24af2219441f3008d274ec5c53df6df9fec3256c 588908 pdns-recursor_3.3-1_amd64.deb
 0a4805fbc723c374906a07b1e3430c890ee137e2 2805132 
pdns-recursor-dbg_3.3-1_amd64.deb
Checksums-Sha256: 
 7995649854fdadcb27659cefbacde57c2889b3a8921704d73c7f176574147cbe 1821 
pdns-recursor_3.3-1.dsc
 33afbc0ed4d99514c2e2b26471f17d0bc774e7a0e0e7ac366aa5f42f1cead002 179401 
pdns-recursor_3.3.orig.tar.gz
 8e25fc32de898b42626277e890fffb0becd085a65ff3797235e54c27841f2eb1 10995 
pdns-recursor_3.3-1.debian.tar.gz
 153ad9cb69ec96446c420f6d89a5d033460d337dabca9391a352fb396d8cfe4c 588908 
pdns-recursor_3.3-1_amd64.deb
 32090c2a86e898fb59e105896ddf8db3a585d377b1717beca97835054f538049 2805132 
pdns-recursor-dbg_3.3-1_amd64.deb
Files: 
 418eca171a86a39cd10d69e7274d616b 1821 net extra pdns-recursor_3.3-1.dsc
 60a30917af10ba8a70cbe2c125604574 179401 net extra pdns-recursor_3.3.orig.tar.gz
 b5ad463e502ebc8e7cad8adcad2f4b25 10995 net extra 
pdns-recursor_3.3-1.debian.tar.gz
 7b081dd80dcee5da05991ce10075cd7c 588908 net extra pdns-recursor_3.3-1_amd64.deb
 82ab315be347694f7c6a1ef6b54cddba 2805132 debug extra 
pdns-recursor-dbg_3.3-1_amd64.deb

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

iQIcBAEBAgAGBQJNVAn3AAoJEBXBjvSJ+ky+CawP/0vuY++jht/KsHbgmFCvdmGs
5JqvpArGMq3Dlp2qy7NIFX4KgQ2mFaJG2tGIdpSJ7vHI3nGufPVr1YpG5WtB1/6M
GxB+W39KtueqCzjZbnp+asOFDSS6uST5u9IA2gdxifmB58Hm45nN0sRaqHp1Ptga
N1E4BwZIFNiAZ4J/PJKBZzYYruiwpZbuihU0O5BzQ85kPTabvbtYqxJHkMkRM+yo
NK5E0/MZUv5X3b3iDV9/kfBkYLR6LRpfBSfCmysnkBqL5htpg4CStf1JnEu+lqCU
mcthHUphTmnaeH1q3JZiwq3DXEJ2NV8a8Ae9wKwCLziSD8XAapEGm1XrRyinOMCQ
BAVQu51AxABwZ3Vfy3Wi78vCpYXOlBdi1y2tlxtPdZmTjA6qovdsngh37uTO4i2p
griA91GXiDbPczPojkHKTDK5niOqYqBMfVbqZhJH0tpeVb2NUL/JtvHOmOiKZR8K
dOCeIOk9m7ZZVZ/f5Ll8vEi04SC6HJuqDCtY4xgezFo+nl9KowrTKUO9s/QeYE+H
OeOSG6wgM+Y7rLJN9T1iOlUmOwupk+pjI3mpKKEwJjcEE119Wvy/u4pHrc+j0e3c
WCC7J3QI7g02iu97guu1XObUmELr5vj/24HcdWDm6/xZvotxfQ6zzTnOv/hm0ypf
LWoKvT6u80Mec+nXnngg
=NR1B
-END PGP SIGNATURE-


Accepted:
pdns-recursor-dbg_3.3-1_amd64.deb
  to main/p/pdns-recursor/pdns-recursor-dbg_3.3-1_amd64.deb
pdns-recursor_3.3-1.debian.tar.gz
  to main/p/pdns-recursor/pdns-recursor_3.3-1.debian.tar.gz
pdns-recursor_3.3-1.dsc
  to main/p/pdns-recursor/pdns-recursor_3.3-1.dsc
pdns-recursor_3.3-1_amd64.deb
  to main/p/pdns-recursor/pdns-recursor_3.3-1_amd64.deb
pdns-recursor_3.3.orig.tar.gz
  to main/p/pdns-recursor/pdns-recursor_3.3.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/e1pnbjs-0005zl...@franck.debian.org



Accepted scour 0.25+bzr194-1 (source all)

2011-02-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 29 Nov 2010 10:32:04 +0100
Source: scour
Binary: python-scour
Architecture: source all
Version: 0.25+bzr194-1
Distribution: unstable
Urgency: low
Maintainer: Alessio Treglia ales...@debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 python-scour - SVG scrubber and optimizer
Closes: 605358
Changes: 
 scour (0.25+bzr194-1) unstable; urgency=low
 .
   * Initial release (Closes: #605358).
Checksums-Sha1: 
 eca8ee266567907f48713c11096391dba8bafb03 1239 scour_0.25+bzr194-1.dsc
 46671ca6c2cbec125c221c97d6c22cf75cb5b800 41510 scour_0.25+bzr194.orig.tar.gz
 7d0cecb32261ee1be3059f6f25b148be6f23d669 4482 scour_0.25+bzr194-1.debian.tar.gz
 5b1f49e84bc91ab0b7839b327890f092e49c1af3 41262 
python-scour_0.25+bzr194-1_all.deb
Checksums-Sha256: 
 e466732f8f67c5ff977383b85e4aa6c6b7c414ac4f2bd409ebf8fd159f72c76d 1239 
scour_0.25+bzr194-1.dsc
 ed02b93806d31712ae0261f53375226d7ac34907c6d9b023150956685f25335c 41510 
scour_0.25+bzr194.orig.tar.gz
 fff7b156e922c843bb32948ceba0e15f97ced13da25b2198b1ffdb82533ce2e3 4482 
scour_0.25+bzr194-1.debian.tar.gz
 369c32c556ceb09e1641079aa13ec36688aa9c7da8466f911d461613f76f94d6 41262 
python-scour_0.25+bzr194-1_all.deb
Files: 
 4f319c99adbe5ec3f4b4058a857899ab 1239 python optional scour_0.25+bzr194-1.dsc
 eaa10221a89cc4c50feee42f73a6c6e5 41510 python optional 
scour_0.25+bzr194.orig.tar.gz
 6c2ee99e0ceb46c3ae801014a3e0f58e 4482 python optional 
scour_0.25+bzr194-1.debian.tar.gz
 68833e3adab141961d409aade2b9da2d 41262 python optional 
python-scour_0.25+bzr194-1_all.deb

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

iEYEARECAAYFAkzzg4kACgkQRdSMfNz8P9DT6wCfTWaFt9/zKZvIC7apmwu5aCw6
iuUAnjTzVgvhZS5h3oNre5SYJoh5hYZI
=1zL1
-END PGP SIGNATURE-


Accepted:
python-scour_0.25+bzr194-1_all.deb
  to main/s/scour/python-scour_0.25+bzr194-1_all.deb
scour_0.25+bzr194-1.debian.tar.gz
  to main/s/scour/scour_0.25+bzr194-1.debian.tar.gz
scour_0.25+bzr194-1.dsc
  to main/s/scour/scour_0.25+bzr194-1.dsc
scour_0.25+bzr194.orig.tar.gz
  to main/s/scour/scour_0.25+bzr194.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/e1pnbje-0005c5...@franck.debian.org



Accepted slepc 3.1-p5.dfsg-1 (source all amd64)

2011-02-10 Thread Christophe Prud'homme
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 12:01:14 +0100
Source: slepc
Binary: libslepc3.1-dev libslepc3.1 libslepc3.1-dbg slepc3.1-doc
Architecture: source all amd64
Version: 3.1-p5.dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Christophe Prud'homme prudh...@debian.org
Description: 
 libslepc3.1 - Scalable Library for Eigenvalue Problem Computations
 libslepc3.1-dbg - Scalable Library for Eigenvalue Problem Computations
 libslepc3.1-dev - Scalable Library for Eigenvalue Problem Computations
 slepc3.1-doc - Scalable Library for Eigenvalue Problem Computations
Changes: 
 slepc (3.1-p5.dfsg-1) unstable; urgency=low
 .
   [ Christophe Trophime ]
   * New upstream version
 .
   [ Christophe Prud'homme ]
   * Update to -p5
Checksums-Sha1: 
 d34a3e99159471ced3557da4b2840932b12bacaa 1453 slepc_3.1-p5.dfsg-1.dsc
 5246be95f097566ea4cc52e6e7534640d121d336 1050565 slepc_3.1-p5.dfsg.orig.tar.gz
 6497fd7ae4f92023bb2c159b676ab0299c5e21d1 8336 slepc_3.1-p5.dfsg-1.diff.gz
 cc306dfa390ed694746dc0efecbe85a87397e4b3 239930 
slepc3.1-doc_3.1-p5.dfsg-1_all.deb
 305763cf91c4215ffb56439235f4d542d7f2d717 1247838 
libslepc3.1-dev_3.1-p5.dfsg-1_amd64.deb
 91952de133fc2743bb62c1475d2754f13467e575 322072 
libslepc3.1_3.1-p5.dfsg-1_amd64.deb
 353b96c2690142146966a0b72bef323b299e8a36 1203142 
libslepc3.1-dbg_3.1-p5.dfsg-1_amd64.deb
Checksums-Sha256: 
 b1b5d501a450907c5bfcba316691622727ffe8879d396a863b82a1d4037e536c 1453 
slepc_3.1-p5.dfsg-1.dsc
 564326fb601209b5b485822936cb40609dcc9d7616916e56a8ab12eb0c378559 1050565 
slepc_3.1-p5.dfsg.orig.tar.gz
 aa3429d3b4368b314abf4599d3fd6f4a4c46ad8c318ceea2b951e5e972bb5398 8336 
slepc_3.1-p5.dfsg-1.diff.gz
 ed79dada856efd24121a961d947495d5a35f4dcf1593bc7d3fe8625039da00b2 239930 
slepc3.1-doc_3.1-p5.dfsg-1_all.deb
 7c252f2e93b5750fbe44a5d931e9c651d623d6e00d1d158029d857bb24d1fd21 1247838 
libslepc3.1-dev_3.1-p5.dfsg-1_amd64.deb
 196fa93565585b5a33de679f0ab06a0db8d9a1746fccb48b67fdd1a912969d88 322072 
libslepc3.1_3.1-p5.dfsg-1_amd64.deb
 526d3033f331180e456dec07584d201835bc6d44c7b708b7e389defa75903e69 1203142 
libslepc3.1-dbg_3.1-p5.dfsg-1_amd64.deb
Files: 
 d75b822f2b19130029515a34e497e157 1453 libs extra slepc_3.1-p5.dfsg-1.dsc
 ba9cb25780233db573498ecb12599485 1050565 libs extra 
slepc_3.1-p5.dfsg.orig.tar.gz
 cd0b17b086f2341774b9c7bd2ef836eb 8336 libs extra slepc_3.1-p5.dfsg-1.diff.gz
 04afee7da854d5490d5a3dd189e69619 239930 doc extra 
slepc3.1-doc_3.1-p5.dfsg-1_all.deb
 3863e6b121c1a83aea51d7b6c59c7461 1247838 libdevel extra 
libslepc3.1-dev_3.1-p5.dfsg-1_amd64.deb
 ab3a0e5755649b683743c639b40aca4d 322072 libs extra 
libslepc3.1_3.1-p5.dfsg-1_amd64.deb
 c039ea3dcd5863de137913f8638d080f 1203142 debug extra 
libslepc3.1-dbg_3.1-p5.dfsg-1_amd64.deb

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

iD8DBQFNU8wYoY+0C9S+FFARApVoAJ9w7lGvifOBjn1YMouVJicnfM44DgCeJ97X
kYhBfzVZkBSzhvDKK8XYpxU=
=BWT1
-END PGP SIGNATURE-


Accepted:
libslepc3.1-dbg_3.1-p5.dfsg-1_amd64.deb
  to main/s/slepc/libslepc3.1-dbg_3.1-p5.dfsg-1_amd64.deb
libslepc3.1-dev_3.1-p5.dfsg-1_amd64.deb
  to main/s/slepc/libslepc3.1-dev_3.1-p5.dfsg-1_amd64.deb
libslepc3.1_3.1-p5.dfsg-1_amd64.deb
  to main/s/slepc/libslepc3.1_3.1-p5.dfsg-1_amd64.deb
slepc3.1-doc_3.1-p5.dfsg-1_all.deb
  to main/s/slepc/slepc3.1-doc_3.1-p5.dfsg-1_all.deb
slepc_3.1-p5.dfsg-1.diff.gz
  to main/s/slepc/slepc_3.1-p5.dfsg-1.diff.gz
slepc_3.1-p5.dfsg-1.dsc
  to main/s/slepc/slepc_3.1-p5.dfsg-1.dsc
slepc_3.1-p5.dfsg.orig.tar.gz
  to main/s/slepc/slepc_3.1-p5.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/e1pnbju-0005h4...@franck.debian.org



Accepted ttf-droid 20101110+git-1 (source all)

2011-02-10 Thread Simon Ochsenreither
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 10 Nov 2010 14:55:51 +0100
Source: ttf-droid
Binary: ttf-droid
Architecture: source all
Version: 20101110+git-1
Distribution: unstable
Urgency: low
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Simon Ochsenreither si...@ochsenreither.de
Description: 
 ttf-droid  - handheld device font with extensive style and language support
Closes: 511036
Changes: 
 ttf-droid (20101110+git-1) unstable; urgency=low
 .
   * ITP: ttf-droid (closes: #511036)
Checksums-Sha1: 
 9cbdd9a589d6cd07d94b676168e2c392e3cb36e4 1944 ttf-droid_20101110+git-1.dsc
 698bcb4a431ba49faf63e733407313e508a34fc9 3168674 
ttf-droid_20101110+git.orig.tar.gz
 0defdd3d06f86b3a6ea4079da7043e459eae88e7 4015 
ttf-droid_20101110+git-1.debian.tar.gz
 fd3593cab642925485056af3e10fadc734e17a95 3147098 
ttf-droid_20101110+git-1_all.deb
Checksums-Sha256: 
 3e9c7f915765e73a63090c78971e239079052e1f529ffeabe26ba9ec6186b19a 1944 
ttf-droid_20101110+git-1.dsc
 77043baefdeaecbf36d85a1031ab2ebcb0198183d42ca0c1b978c8325dceabbc 3168674 
ttf-droid_20101110+git.orig.tar.gz
 f09aed9fbfd8143e57cea9eb1cf0dfee58d6c6fedd8876d10c334afbac81c694 4015 
ttf-droid_20101110+git-1.debian.tar.gz
 08cf9a7190220f3f92c9b0e4c190c9c4cf727e999e760de05941b6d0dbef1ce2 3147098 
ttf-droid_20101110+git-1_all.deb
Files: 
 47e9232d1fdbe33aa94666eef092c4b3 1944 fonts optional 
ttf-droid_20101110+git-1.dsc
 48524cf33bbd36195c4a51508979bd7c 3168674 fonts optional 
ttf-droid_20101110+git.orig.tar.gz
 45c7ef66168aa761f62dc217595ee167 4015 fonts optional 
ttf-droid_20101110+git-1.debian.tar.gz
 de2fed011ccd4ec852c0347f104a93b8 3147098 fonts optional 
ttf-droid_20101110+git-1_all.deb

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

iQIVAwUBTPQRfIcvcCxNbiWoAQKrxQ//RZ7TPV50+2s5KRhQ48tXiq0aFDODSFYE
7HqZdT0Sb2yA2p5lO00T3CY7HfxEBUFA9k0n3kjjZAx65yChAUqOnmEqVZWx3R3A
wH4IMSrbqJNFNmZzdn3RvebPl7KksREB7Ip0N8n+a/FrMBJ6Z5vBmR74SI9fMSZP
wyekAkMes9d+iTtJdex5cgE7HmU8zjtbw2ruZZ9X6QbdWOe7p9b2IW2mXESf9OPX
t/f5PZayJpbi4H9ygbdl6P99HEgBNGcN/wusMVSoNvWcLWq7CUyFkPcBx+1XFVxr
a2PZ3dUNW9yiHWJQX3xF+/nr7SSqwbFtA6ZbZ9Tgd6inrTrgC5l4uPQhyqlQXe4K
BRUeJ79xCmElOkerKaqxGSqRQ77aYCs0VNXk7dy6wBwoVrTjXIy1Ajh+F/jlvBcU
VgFEm8iiXX5Xjs8GM23u2jTGU3JIJ1st9J6O/1gAzP86T23PAya9KMlPOkIWZUPj
wLTcb5kuou8DeZuUaBI5GK5EPoonZwdg4CwBekdntjarmOqpHoJecoXhyZBuE8id
7gYwPcNiiCw2A40tnqVP9vZdCdS1R56UjvM8fDkqW5zpskLyozzzHjz0aKi/ri77
LBN31iQ9R3ZzPSXBbI1BOcJWmvtcpI8cDyOiErgmC9FmkrsiUnDCgbkHErvvSgIe
olOX6SAcSjo=
=F/tN
-END PGP SIGNATURE-


Accepted:
ttf-droid_20101110+git-1.debian.tar.gz
  to main/t/ttf-droid/ttf-droid_20101110+git-1.debian.tar.gz
ttf-droid_20101110+git-1.dsc
  to main/t/ttf-droid/ttf-droid_20101110+git-1.dsc
ttf-droid_20101110+git-1_all.deb
  to main/t/ttf-droid/ttf-droid_20101110+git-1_all.deb
ttf-droid_20101110+git.orig.tar.gz
  to main/t/ttf-droid/ttf-droid_20101110+git.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/e1pnbk7-0005j4...@franck.debian.org



Accepted fportfolio 2130.80-1 (source i386)

2011-02-10 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 12:11:15 -0600
Source: fportfolio
Binary: r-cran-fportfolio
Architecture: source i386
Version: 2130.80-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-fportfolio - GNU R package for financial engineering -- fPortfolio
Changes: 
 fportfolio (2130.80-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
   * debian/control: Set Standards-Version: to current version
Checksums-Sha1: 
 676fea00ab8778721f372b04d2edf167bbe5e13d 1191 fportfolio_2130.80-1.dsc
 ff3c6c980194ed58e2dee0dfe9cc66a2f26f88fe 3244488 fportfolio_2130.80.orig.tar.gz
 37cc604b637ea38cc886614749a9f3f79c74a4b0 3096 fportfolio_2130.80-1.diff.gz
 c58ab05edd534382ad85365458e506151688 3433300 
r-cran-fportfolio_2130.80-1_i386.deb
Checksums-Sha256: 
 e96f72111defcca6cce6e64e761605679f06751ee3c100dc9803add2dcb155a2 1191 
fportfolio_2130.80-1.dsc
 1caa87caf47897364120e13804a4f40f2fb6f787a80abcd950c976c32c302e44 3244488 
fportfolio_2130.80.orig.tar.gz
 fba861135dda17c0a04413a4996451e05c3afad41e9a8768481911605e919c91 3096 
fportfolio_2130.80-1.diff.gz
 487cc4df6ae2c64eb600487d84ed404192835498e57c21bb093ee2337c09a85d 3433300 
r-cran-fportfolio_2130.80-1_i386.deb
Files: 
 eda208f648ce1a6fd0bc6a618f58b7cf 1191 gnu-r optional fportfolio_2130.80-1.dsc
 d454b410ab6a05469647587f3ef3452e 3244488 gnu-r optional 
fportfolio_2130.80.orig.tar.gz
 9ea0e85e3e9cfa9d7e0882e512e88eb7 3096 gnu-r optional 
fportfolio_2130.80-1.diff.gz
 1f6562d151cbbe76d736aeb73e18036c 3433300 gnu-r optional 
r-cran-fportfolio_2130.80-1_i386.deb

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

iD8DBQFNVCqJCZSR95Gw07cRAu6yAJ9h1cKYL384MgP3opqXRPPzW0j3WQCeJ/v4
SNsg+pvSZNRVggpjoHSQ7Yk=
=xOPH
-END PGP SIGNATURE-


Accepted:
fportfolio_2130.80-1.diff.gz
  to main/f/fportfolio/fportfolio_2130.80-1.diff.gz
fportfolio_2130.80-1.dsc
  to main/f/fportfolio/fportfolio_2130.80-1.dsc
fportfolio_2130.80.orig.tar.gz
  to main/f/fportfolio/fportfolio_2130.80.orig.tar.gz
r-cran-fportfolio_2130.80-1_i386.deb
  to main/f/fportfolio/r-cran-fportfolio_2130.80-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/e1pnbkk-0005lm...@franck.debian.org



Accepted libmtp 1.0.5-2 (source all amd64)

2011-02-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 19:19:27 +0100
Source: libmtp
Binary: libmtp8 libmtp-dev libmtp-dbg libmtp-doc mtp-tools
Architecture: source all amd64
Version: 1.0.5-2
Distribution: unstable
Urgency: low
Maintainer: Alessio Treglia ales...@debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 libmtp-dbg - Media Transfer Protocol (MTP) debugging symbols
 libmtp-dev - Media Transfer Protocol (MTP) development files
 libmtp-doc - Media Transfer Protocol (MTP) library documentation
 libmtp8- Media Transfer Protocol (MTP) library
 mtp-tools  - Media Transfer Protocol (MTP) library tools
Changes: 
 libmtp (1.0.5-2) unstable; urgency=low
 .
   * 1002-udev_rules.patch:
 - Adapt upstream udev rules file to Debian standards.
Checksums-Sha1: 
 e4c9fb3896df20cb8595b96763a3d5d08a633cf7 1282 libmtp_1.0.5-2.dsc
 692dae265b3fb87ab3133105e48b351d0ec6762a 18461 libmtp_1.0.5-2.debian.tar.gz
 78964af84be3042c8e256b79d2d330585e9fdc46 62862 libmtp-dev_1.0.5-2_all.deb
 097ca1729eaa25f5e439a250e409c316dc804afa 377212 libmtp-doc_1.0.5-2_all.deb
 98220a7a6f4d0dd6b89334dcd8e782302d847a37 182984 libmtp8_1.0.5-2_amd64.deb
 06a361609c0652f8b212fa0129b38d56a18b1c47 248658 libmtp-dbg_1.0.5-2_amd64.deb
 63a17cbe19fa8de7a78c251a32bdd2b0ac5dfd4d 95646 mtp-tools_1.0.5-2_amd64.deb
Checksums-Sha256: 
 528058cf276dc443adc4d0681bbb30814a3d2f1ca005f9bd6adb7e8f599288a3 1282 
libmtp_1.0.5-2.dsc
 bbab1fc9b8de13d34b1fdaf7331f32b586e1a7a59086af9514219df3991b4c22 18461 
libmtp_1.0.5-2.debian.tar.gz
 54c1bd67bfab5e506030a6bcf84e3b8087d72b2c7fc4ce40a6e82a2fe0ee7053 62862 
libmtp-dev_1.0.5-2_all.deb
 6a777d24dec7ecbdf9dc8cc2dde7e38671447545985d1d2b642eb4be9d63080c 377212 
libmtp-doc_1.0.5-2_all.deb
 cadcc2f72a6057132191b978d685bf2773c6d6b768f07a563abd43bfa3fe459f 182984 
libmtp8_1.0.5-2_amd64.deb
 92868fa23c17004f6b4b59dd3bc3936a873a1de775fb47f76811edf1e0d589cc 248658 
libmtp-dbg_1.0.5-2_amd64.deb
 d9e8fd28d04e2b39f8521faf5e1a6a10cfef76baf37ff0457c2ea682514f0020 95646 
mtp-tools_1.0.5-2_amd64.deb
Files: 
 70913022fe02f99007ed5bd81a970024 1282 libs optional libmtp_1.0.5-2.dsc
 a2f35149c968ed96b7b7c0c159450eec 18461 libs optional 
libmtp_1.0.5-2.debian.tar.gz
 2d02fe12796fe17dcd44ea4ec5cf9952 62862 libdevel optional 
libmtp-dev_1.0.5-2_all.deb
 f0b527991a5f9ec3f0642c692df12d25 377212 doc optional libmtp-doc_1.0.5-2_all.deb
 280689ecdf5f86ccfdd9af4c3f88b27f 182984 libs optional libmtp8_1.0.5-2_amd64.deb
 225ec8c3f9ab6b88e4fd9048e4096618 248658 debug extra 
libmtp-dbg_1.0.5-2_amd64.deb
 ca9c2034f54f318b291fe615a9122b0b 95646 utils optional 
mtp-tools_1.0.5-2_amd64.deb

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

iEYEARECAAYFAk1ULXUACgkQRdSMfNz8P9CnogCeMb1yMueeKQLDFKXAcT+LFR4E
7aEAniJUgMfwcW4Uq45byKesANXo/mr1
=+qUa
-END PGP SIGNATURE-


Accepted:
libmtp-dbg_1.0.5-2_amd64.deb
  to main/libm/libmtp/libmtp-dbg_1.0.5-2_amd64.deb
libmtp-dev_1.0.5-2_all.deb
  to main/libm/libmtp/libmtp-dev_1.0.5-2_all.deb
libmtp-doc_1.0.5-2_all.deb
  to main/libm/libmtp/libmtp-doc_1.0.5-2_all.deb
libmtp8_1.0.5-2_amd64.deb
  to main/libm/libmtp/libmtp8_1.0.5-2_amd64.deb
libmtp_1.0.5-2.debian.tar.gz
  to main/libm/libmtp/libmtp_1.0.5-2.debian.tar.gz
libmtp_1.0.5-2.dsc
  to main/libm/libmtp/libmtp_1.0.5-2.dsc
mtp-tools_1.0.5-2_amd64.deb
  to main/libm/libmtp/mtp-tools_1.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/e1pnbkb-0005yl...@franck.debian.org



Accepted nlme 3.1.98-1 (source i386)

2011-02-10 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 11:57:19 -0600
Source: nlme
Binary: r-cran-nlme
Architecture: source i386
Version: 3.1.98-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-nlme - GNU R package for (non-)linear mixed effects models
Changes: 
 nlme (3.1.98-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
Checksums-Sha1: 
 61954f3b864dfd9a35f6385c4e958585079f437f 990 nlme_3.1.98-1.dsc
 704d930970f516927e45e0ad22f84a47293dc614 701633 nlme_3.1.98.orig.tar.gz
 4ceae6966b74ba4571f4ae5626c9ac16262f07f3 3369 nlme_3.1.98-1.diff.gz
 63ecb6634a1a77c52d53c8af45ff833a34487c50 1582782 r-cran-nlme_3.1.98-1_i386.deb
Checksums-Sha256: 
 540dcecbfdfdc65f8399f2c7d07cae3b23caa69b8acb9cd2d7dcb8ded9485ccb 990 
nlme_3.1.98-1.dsc
 c8816892166bda9d527c48debe4b25516f02e06cf728ad7bde99e4b54b2571ee 701633 
nlme_3.1.98.orig.tar.gz
 576a028e23d1b410e453b79538299958871c3e5181502d6d187130eca5c48a91 3369 
nlme_3.1.98-1.diff.gz
 f35af01b8e2295233b384566a4100c1a0f8b965b9f44c727ec5160e6a1ec2749 1582782 
r-cran-nlme_3.1.98-1_i386.deb
Files: 
 b82c10b9ff033a8a641809526c5f3985 990 gnu-r optional nlme_3.1.98-1.dsc
 064d352fc2650e19bbb5ffa02061a8aa 701633 gnu-r optional nlme_3.1.98.orig.tar.gz
 fb7957e03c1ebc4d4adc4b9df0cd0635 3369 gnu-r optional nlme_3.1.98-1.diff.gz
 418108e1cf709454f6e3f1305e1392a7 1582782 gnu-r optional 
r-cran-nlme_3.1.98-1_i386.deb

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

iD8DBQFNVCdLCZSR95Gw07cRAjXWAJ9nPHXKgPWQyLbSBkuP5gOYAQ0awQCfTO+X
fqD8kTHE7GWtEOemHjOUd70=
=EFy/
-END PGP SIGNATURE-


Accepted:
nlme_3.1.98-1.diff.gz
  to main/n/nlme/nlme_3.1.98-1.diff.gz
nlme_3.1.98-1.dsc
  to main/n/nlme/nlme_3.1.98-1.dsc
nlme_3.1.98.orig.tar.gz
  to main/n/nlme/nlme_3.1.98.orig.tar.gz
r-cran-nlme_3.1.98-1_i386.deb
  to main/n/nlme/r-cran-nlme_3.1.98-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/e1pnbkm-00060o...@franck.debian.org



Accepted openarena 0.8.5-7 (source amd64)

2011-02-10 Thread Simon McVittie
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Feb 2011 17:30:00 +
Source: openarena
Binary: openarena openarena-server openarena-dbg
Architecture: source amd64
Version: 0.8.5-7
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Simon McVittie s...@debian.org
Description: 
 openarena  - fast-paced 3D first-person shooter
 openarena-dbg - debug symbols for OpenArena's game logic
 openarena-server - server and game logic for the game OpenArena
Closes: 612782
Changes: 
 openarena (0.8.5-7) unstable; urgency=low
 .
   * Use ~/.openarena, not ~/openarena (Closes: #612782)
Checksums-Sha1: 
 80486fbbc3d7efb00509fbba839c8721cd872632 2107 openarena_0.8.5-7.dsc
 649ad3180e25ee6159eff04531de568d99d2aeca 43720 openarena_0.8.5-7.debian.tar.gz
 28f70540f14fca6235a72859f4954f4cfc76c009 34704 openarena_0.8.5-7_amd64.deb
 488824280193096317556aaa227cda54ae95aa1e 2326746 
openarena-server_0.8.5-7_amd64.deb
 3d6a61be5c3f8555e7d34c654c56844ee45b9e73 2407704 
openarena-dbg_0.8.5-7_amd64.deb
Checksums-Sha256: 
 e2dbc29e8be34863a3332c2188c3974a96788a4c180b5504f13d91b069db8972 2107 
openarena_0.8.5-7.dsc
 ff4372ca9147c8a9c81e8309ea911932083e373fc27f6cd0be98c1a45c81598e 43720 
openarena_0.8.5-7.debian.tar.gz
 d9c2817d1916d91d7cd60cc94c1e9e6a78c1f0a4f21f61e2cf3a46dc556222fc 34704 
openarena_0.8.5-7_amd64.deb
 d6d0b17e3b99058a3d986f9341ad540c7fae3b8f69ac3adf08dca16b15214300 2326746 
openarena-server_0.8.5-7_amd64.deb
 3b38ba2229c6be0d4953eb53294b6167109063f09837029059e246485a9cfdfb 2407704 
openarena-dbg_0.8.5-7_amd64.deb
Files: 
 e76e4c566b73816a08d907f74818eec4 2107 games optional openarena_0.8.5-7.dsc
 321ffd677101a209ceb883da96459b3c 43720 games optional 
openarena_0.8.5-7.debian.tar.gz
 f6bf6210328510e1e0404e7d32d31c5c 34704 games optional 
openarena_0.8.5-7_amd64.deb
 69c0e843d9c0e9fb83fca49401602aec 2326746 games optional 
openarena-server_0.8.5-7_amd64.deb
 4f917dbae1250150802fcecf764b4315 2407704 debug extra 
openarena-dbg_0.8.5-7_amd64.deb

-BEGIN PGP SIGNATURE-

iQIVAwUBTVQrKk3o/ypjx8yQAQiPexAAngq3D1Lof3ycwl9JFDa/oiVIP0Ki66d5
Bw0mudw17rs3x/VB5k6M/3skR7qvtRtxK5MJfzYIvEQkYqps0GqGCdtizanpGY6J
V/U16+ggW56p2d5VWFIi2ylR74pfYT20C01P9ru8jC1IDOiW7XFWoP5PS6k6HUrE
uYrtMIrAK48AvGYpxTYL5yel9SBijmwxWkPsoDNVKzOSx3lXa/lCEGsnVwU4XM2h
c+tenpySWe6M9aTz6nqkUITX2n6KIobqDaDewu6V8DealATKvl0n1X2ErsPYtMWR
sx+iO4UVhnopO9rgVzKdPmk8FV4CZzB65kcFerLWWLXiok+f7wse7UuZbyA6OGOi
Fp7xbMqmbfDFnq7yNFjmIJGO3UPoqwvXehreZ5f59/Kgts9f2HdiOmpat8avfNsF
z0JIeaxQ7nx0VPNv3jeAwfCS1+9SSaxZuNdZUlQJxFYsBzcuV4siXZfXn9f6hlm3
NQ+6DaHgXpbkRi0tVwxpO3JGwGkWGZzqibZlLJmbtiwzn4u1JH/NxSQuQK35u3af
mLD2RSnQPRDi2PplP7mBRRnVipbIhAEu9a5GmtkZtOaBxG7rBEQoUqbgA6oOtJ5K
EPKgp+hjlEcOFTGVW8rb0ieJIF8bPuNYRxTSOTpqUgGDFOTTLBHavZCopBq18SA/
AD8kF9TJr2s=
=agbA
-END PGP SIGNATURE-


Accepted:
openarena-dbg_0.8.5-7_amd64.deb
  to main/o/openarena/openarena-dbg_0.8.5-7_amd64.deb
openarena-server_0.8.5-7_amd64.deb
  to main/o/openarena/openarena-server_0.8.5-7_amd64.deb
openarena_0.8.5-7.debian.tar.gz
  to main/o/openarena/openarena_0.8.5-7.debian.tar.gz
openarena_0.8.5-7.dsc
  to main/o/openarena/openarena_0.8.5-7.dsc
openarena_0.8.5-7_amd64.deb
  to main/o/openarena/openarena_0.8.5-7_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/e1pnbl5-00067s...@franck.debian.org



Accepted r-cran-mass 7.3-11-1 (source i386)

2011-02-10 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 12:07:21 -0600
Source: r-cran-mass
Binary: r-cran-mass
Architecture: source i386
Version: 7.3-11-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-mass - GNU R package of Venables and Ripley's MASS
Changes: 
 r-cran-mass (7.3-11-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
Checksums-Sha1: 
 4971b5701b609e3b74a745507ab9c8943d56b0fd 1073 r-cran-mass_7.3-11-1.dsc
 00fe8e304a45412aaca8e135d03c58d11104a01e 455055 r-cran-mass_7.3-11.orig.tar.gz
 62e708955606e53764b6058de77ecd7549e9c331 2781 r-cran-mass_7.3-11-1.diff.gz
 9a49e8fac7143754edb44df34e4e96ba2532290f 797318 r-cran-mass_7.3-11-1_i386.deb
Checksums-Sha256: 
 a20efa6e9773be174a54c3c86ead7d4bb9656d5f6542e204389200de53152ad8 1073 
r-cran-mass_7.3-11-1.dsc
 070124d1ca9d6dd0eeb41501f9c460173866e9c2990bdcd907a4fc6f56ac2d39 455055 
r-cran-mass_7.3-11.orig.tar.gz
 12966fcc27149a05bef873a8007e99d38b7224b87fc6b37e0caffbeba7542c79 2781 
r-cran-mass_7.3-11-1.diff.gz
 307d2f24476c6a3cb64bcb1e364d467d1731c17cf032f5ccbeacb4b34af9a503 797318 
r-cran-mass_7.3-11-1_i386.deb
Files: 
 c7a7f2fbc0a64cf33d75bdeb88ff1b21 1073 gnu-r optional r-cran-mass_7.3-11-1.dsc
 1cd7dccfec9b7a3c88e8ce7e921dfbb2 455055 gnu-r optional 
r-cran-mass_7.3-11.orig.tar.gz
 366d8d52175d5dbe5b2aece1e02350e3 2781 gnu-r optional 
r-cran-mass_7.3-11-1.diff.gz
 25fa0552b87955c596319f34dfcee4a0 797318 gnu-r optional 
r-cran-mass_7.3-11-1_i386.deb

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

iD8DBQFNVCmfCZSR95Gw07cRArZXAKCJIi51wxL/klrxs7KoUaAuelerogCglZr/
cmyK3/Jwv0IhYBQrCKI+ibU=
=LirP
-END PGP SIGNATURE-


Accepted:
r-cran-mass_7.3-11-1.diff.gz
  to main/r/r-cran-mass/r-cran-mass_7.3-11-1.diff.gz
r-cran-mass_7.3-11-1.dsc
  to main/r/r-cran-mass/r-cran-mass_7.3-11-1.dsc
r-cran-mass_7.3-11-1_i386.deb
  to main/r/r-cran-mass/r-cran-mass_7.3-11-1_i386.deb
r-cran-mass_7.3-11.orig.tar.gz
  to main/r/r-cran-mass/r-cran-mass_7.3-11.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/e1pnblf-0006a9...@franck.debian.org



Accepted r-cran-timedate 2130.92-1 (source i386)

2011-02-10 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 12:26:35 -0600
Source: r-cran-timedate
Binary: r-cran-timedate
Architecture: source i386
Version: 2130.92-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-timedate - GNU R package for financial engineering -- timeDate
Changes: 
 r-cran-timedate (2130.92-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
Checksums-Sha1: 
 32d814efd3b7d66737af4783466a410a91539a3f 1107 r-cran-timedate_2130.92-1.dsc
 28e286c5ee5c7a691da1f32824073b5d02da58f7 293716 
r-cran-timedate_2130.92.orig.tar.gz
 44fc43abecc57c5eb94dd6ad68bc6905a38996ac 2750 r-cran-timedate_2130.92-1.diff.gz
 836041c262fa5b581944de06c6b752745bf42b8f 767224 
r-cran-timedate_2130.92-1_i386.deb
Checksums-Sha256: 
 7f6274ca8658590782cf191fd1442c83db58e5cd34eaddbaa93fb995b3455ec2 1107 
r-cran-timedate_2130.92-1.dsc
 d5ac3c5684c8b8b3a93ec4e69da7352b8b7b0433406d00bdba3c4a5dbb14acbe 293716 
r-cran-timedate_2130.92.orig.tar.gz
 407fb0a010f5460ece30feed1269d53db1cf41e60dc30e7e11347a94260518b5 2750 
r-cran-timedate_2130.92-1.diff.gz
 2c9b0cf7937fbeec8caa788727a674501cfc3a8bcb4ae896c8d2ea6b1afe1fd3 767224 
r-cran-timedate_2130.92-1_i386.deb
Files: 
 262ea068b2ffcf5bea3ef4f1c75ec521 1107 gnu-r optional 
r-cran-timedate_2130.92-1.dsc
 50d9d778eb177b18498abef9bb50f42f 293716 gnu-r optional 
r-cran-timedate_2130.92.orig.tar.gz
 306b6e1e0695c7f27aa815a8c3ee854d 2750 gnu-r optional 
r-cran-timedate_2130.92-1.diff.gz
 7a1c9f42f77289e1ff138c43ac5292f4 767224 gnu-r optional 
r-cran-timedate_2130.92-1_i386.deb

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

iD8DBQFNVC7aCZSR95Gw07cRAsFJAKCJer1pz/otYIGQN/trPCgyexqKQwCfXUZB
vLoHCyu0ryl8pmwbISvr29M=
=TX76
-END PGP SIGNATURE-


Accepted:
r-cran-timedate_2130.92-1.diff.gz
  to main/r/r-cran-timedate/r-cran-timedate_2130.92-1.diff.gz
r-cran-timedate_2130.92-1.dsc
  to main/r/r-cran-timedate/r-cran-timedate_2130.92-1.dsc
r-cran-timedate_2130.92-1_i386.deb
  to main/r/r-cran-timedate/r-cran-timedate_2130.92-1_i386.deb
r-cran-timedate_2130.92.orig.tar.gz
  to main/r/r-cran-timedate/r-cran-timedate_2130.92.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/e1pnblp-0006cl...@franck.debian.org



Accepted r-cran-timeseries 2130.91-1 (source i386)

2011-02-10 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Feb 2011 12:16:54 -0600
Source: r-cran-timeseries
Binary: r-cran-timeseries
Architecture: source i386
Version: 2130.91-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-timeseries - GNU R package for financial engineering -- timeSeries
Changes: 
 r-cran-timeseries (2130.91-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
Checksums-Sha1: 
 c161fd5a5b70d44cd5a9e4b451808925a9630d49 1153 r-cran-timeseries_2130.91-1.dsc
 1f434bce9082e0daf6442d9d6cb6c4363c4ecb51 336331 
r-cran-timeseries_2130.91.orig.tar.gz
 73bdb813c8f5732cbcd5078776eae92596989c6b 2184 
r-cran-timeseries_2130.91-1.diff.gz
 d0a0e5e97e4c05923e664d25a09e8057c6b89c95 644424 
r-cran-timeseries_2130.91-1_i386.deb
Checksums-Sha256: 
 0dc48b8c45fedbf06359f4754a9d706a209bc8ce017947870bbe185350523f23 1153 
r-cran-timeseries_2130.91-1.dsc
 c2244be22a4f1c1a6fbd295126b9bf03e7c09a36e11813f326f487979a52c05d 336331 
r-cran-timeseries_2130.91.orig.tar.gz
 f603e6edc272754981320adfdeb324c359b7ab3f68f46994a06c32bba5515828 2184 
r-cran-timeseries_2130.91-1.diff.gz
 debef780c118200c8fc3f05a3bb27c1cc9bdaf90cdeec8bd8557b9d8e3c2968c 644424 
r-cran-timeseries_2130.91-1_i386.deb
Files: 
 da2e343cf341e3fb7c4075d00d34ac99 1153 gnu-r optional 
r-cran-timeseries_2130.91-1.dsc
 dc9e5c8489fd0e6987f669598e4e79ec 336331 gnu-r optional 
r-cran-timeseries_2130.91.orig.tar.gz
 d1f6de3879a882e5fade656580340fff 2184 gnu-r optional 
r-cran-timeseries_2130.91-1.diff.gz
 17b1e17485c4f34b02fd1ab8abf4b1e1 644424 gnu-r optional 
r-cran-timeseries_2130.91-1_i386.deb

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

iD8DBQFNVCvXCZSR95Gw07cRAtICAJwLiDbx1E1GDo1ik4ovWTUHSPJ+YwCdEWXL
+63sTWvC4JdNX3Pgch9h2cI=
=KpNM
-END PGP SIGNATURE-


Accepted:
r-cran-timeseries_2130.91-1.diff.gz
  to main/r/r-cran-timeseries/r-cran-timeseries_2130.91-1.diff.gz
r-cran-timeseries_2130.91-1.dsc
  to main/r/r-cran-timeseries/r-cran-timeseries_2130.91-1.dsc
r-cran-timeseries_2130.91-1_i386.deb
  to main/r/r-cran-timeseries/r-cran-timeseries_2130.91-1_i386.deb
r-cran-timeseries_2130.91.orig.tar.gz
  to main/r/r-cran-timeseries/r-cran-timeseries_2130.91.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/e1pnblb-0006et...@franck.debian.org



Accepted alsaequal 0.6-1 (source amd64)

2011-02-10 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 25 Nov 2010 18:28:00 +0100
Source: alsaequal
Binary: libasound2-plugin-equal
Architecture: source amd64
Version: 0.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessandro Ghedini al3x...@gmail.com
Description: 
 libasound2-plugin-equal - equalizer plugin for ALSA
Closes: 604908
Changes: 
 alsaequal (0.6-1) unstable; urgency=low
 .
   * Initial release (Closes: #604908).
Checksums-Sha1: 
 f01bf05d20abc794ac07105a85def46d221c0af9 1342 alsaequal_0.6-1.dsc
 aeb04e06821be82bea2e439758ca775903d62a37 23562 alsaequal_0.6.orig.tar.bz2
 ecf11caaebecb7142faec5190a8324cff265d0bb 11462 alsaequal_0.6-1.debian.tar.gz
 22a8017cd180acc90ecd641745e142f62effcb7f 14948 
libasound2-plugin-equal_0.6-1_amd64.deb
Checksums-Sha256: 
 9e606975ad6da7fbcafb1d1e808ff28df678bdcadb0c98906088cd6dc62a244e 1342 
alsaequal_0.6-1.dsc
 916e7d152added24617efc350142438a46099efe062bd8781d36dbf10b4e6ff0 23562 
alsaequal_0.6.orig.tar.bz2
 1d09fded2a645b6d543410027db4652a4651f765c6daf320506b83a0cde52acb 11462 
alsaequal_0.6-1.debian.tar.gz
 4dfb7b490b32783891e94d389be14fd8ca9a2935507132a4eced75f8d5cc1b34 14948 
libasound2-plugin-equal_0.6-1_amd64.deb
Files: 
 b65edd7ff9e3a36b886c1afba7402594 1342 libs optional alsaequal_0.6-1.dsc
 d2edc7710c72cbf3ab297c414e35ebda 23562 libs optional alsaequal_0.6.orig.tar.bz2
 a9587614d7c60b12a6cc3800f49ec383 11462 libs optional 
alsaequal_0.6-1.debian.tar.gz
 034fd8a49d34c73ee61853defc76d122 14948 libs optional 
libasound2-plugin-equal_0.6-1_amd64.deb

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

iEYEARECAAYFAkz0ObEACgkQRdSMfNz8P9BwiQCfdwEdysPOP6WIIS2kUSrUW66p
aDMAn3nrqIyK7b3+ks/DJNYkf0I56kes
=gtdc
-END PGP SIGNATURE-


Accepted:
alsaequal_0.6-1.debian.tar.gz
  to main/a/alsaequal/alsaequal_0.6-1.debian.tar.gz
alsaequal_0.6-1.dsc
  to main/a/alsaequal/alsaequal_0.6-1.dsc
alsaequal_0.6.orig.tar.bz2
  to main/a/alsaequal/alsaequal_0.6.orig.tar.bz2
libasound2-plugin-equal_0.6-1_amd64.deb
  to main/a/alsaequal/libasound2-plugin-equal_0.6-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/e1pnbxn-0007fl...@franck.debian.org



  1   2   >