Re: Moving /tmp to tmpfs makes it useful

2012-06-05 Thread Serge
2012/6/1 Goswin von Brederlow wrote:

 All the complaints about /tmp as tmpfs come down to one simple issue:
 The size of the tmpfs isn't chosen well.

Mounting /tmp to tmpfs not just breaks a lot of apps and reduces system
stability, but it actually does nothing else. You get no benefits from
/tmp being on tmpfs.
That's the complaint: the change makes something bad and nothing good.

 Even without load it is much faster because fsync() becomes a NOP.

Yes, it is. So it's a good idea to use tmpfs for some apps, that
heavily use fsync() on files that fit in RAM. But... wait... no app
is heavily using fsync() on files in /tmp. So it's useless to put
/tmp on tmpfs.

 It also saves on wear of the disk if the files are small and short
 lived, like temp files for gcc.

I guess you talk about SSD-like disks. Then...
1. short-lived files remain in cache and don't hit the disk.
2. gcc does not use fsync, does it?
3. gcc with -pipe option does not use /tmp
4. if you manually build something, you can add -pipe option to CFLAGS
5. if you build a package, you can add it to global build options
6. this doesn't matter, since pretty much nobody builds apps on SSD disks
So this is not even a corner case. :)

 - There's not enough space, so the system starts swapping,
 including some apps.

 Which happens regardless wether tmp is tmpfs or a real filesystem.
 The more IO there is the more likely some app gets swapped out.

No. I checked that. If you have e.g. 50% of free ram then whatever
files you read/write other apps won't get swapped, zero swap usage.
But if you start writing large files to tmpfs you get swapping.

 With tmps that instantly frees up all the memory and swap used by the
 file. With a real FS the file data remains in the dirty cache until such
 a time as the disk has cought up with writing it all and then it is
 thrown away. So potentially memory is freed up much later.

Actually cache also frees all the memory instantly on delete, but may
delay writing to disk. So only a few kilobytes of metadata are not freed.

 Yes because writing that on disk will only block the thread performing the
 write, not every thread that tries to allocate memory.

 Wrong.
Not that much.
 The thread doing the write will just write to cache and not block
 at all. That is until you run out of cache.
Until you run out of dirty_ratio, which is usually less than entire cache. :)

 No, tmpfs will be swapped out if you don't use a file for a while but
 something else uses memory, including IO caching.

It won't, I tried. I put a few hundreds MB on tmpfs and started reading
and copying gigabytes of files, tar/untar archives. I was still getting
no swap usage. As long as there's enough RAM they don't get swapped.

 I'm asking for *popular* apps, that create files in /tmp, *never put
 large files* there, and become *noticeably* faster with /tmp on tmpfs?

 gcc, ocamlopt, mc, lintian

Which of them becomes faster with /tmp on tmpfs? Can you suggest a use
case, that I can test with /tmp on disk and on tmpfs myself and see them
becoming faster?

-- 
  Serge


-- 
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/caovenepfrzmzzppsux8fib9g0ce-gnoum-mdkzn2nzkyxfw...@mail.gmail.com



Re: Moving /tmp to tmpfs makes it useful

2012-06-05 Thread Mike Hommey
On Tue, Jun 05, 2012 at 09:29:46AM +0300, Serge wrote:
 2012/6/1 Goswin von Brederlow wrote:
 
  All the complaints about /tmp as tmpfs come down to one simple issue:
  The size of the tmpfs isn't chosen well.
 
 Mounting /tmp to tmpfs not just breaks a lot of apps and reduces system
 stability, but it actually does nothing else. You get no benefits from
 /tmp being on tmpfs.
 That's the complaint: the change makes something bad and nothing good.
 
  Even without load it is much faster because fsync() becomes a NOP.
 
 Yes, it is. So it's a good idea to use tmpfs for some apps, that
 heavily use fsync() on files that fit in RAM. But... wait... no app
 is heavily using fsync() on files in /tmp. So it's useless to put
 /tmp on tmpfs.

It takes one application using fsync on any file in / for all files in
/tmp to be flushed to disk if it's the same filesystem. It doesn't need
to be the application using /tmp doing fsync.

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/20120605064244.ga15...@glandium.org



Re: debuild/dpkg-buildpackage behaves not as expected

2012-06-05 Thread Goswin von Brederlow
debian-de...@liska.ath.cx (Olе Streicher) writes:

 Goswin von Brederlow goswin-...@web.de writes:
 debian-de...@liska.ath.cx (Ole Streicher) writes:
 I think the best way would be that debuild/dpkg-buildpackage would not
 automatically unapply the patches (so it would leave the source in the

 It doesn't automatically unapply the patches. It only restores the state
 you had before the dpkg-buildpackage was called.

 It does not since it keeps the compiled files. If you mean it serious
 with restoring the state, you should call clean here, too.

The state of the patches.

 or hook that does this for those who really need it (and know what they
 are doing).
 Which would mean that you would have to unapply patches every time you
 try to build while working on a patch. With the current behaviour I can do

 quilt push foo.patch   (foo.patch being somewhere in the middle)
 edit file
 quilt refresh
 debuild
 [...]

 You can do the same even if either clean is called before the
 unpatching was done, or if neither clean nor unpatching was done, since
 quilt recognizes the state.

If the patches aren't rolled back to foo.patch after build then the
files will differ. If you still have the file open in an editor then
editing it will destroy stuf. And quilt refresh will refresh the topmost
patch and not foo.patch as intended.

So no, you can't do the same without the patch state being restored.

 The point is really: The state
 * compiled files (*.o etc.) from a patched package, but
 * unpatched source files
 is inconsistent. 

In a good way. :)

 Best regards

 Ole

MfG
Goswin


-- 
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/87k3zmdxvd.fsf@frosties.localnet



Re: Moving /tmp to tmpfs makes it useless

2012-06-05 Thread Goswin von Brederlow
Salvo Tomaselli tipos...@tiscali.it writes:

 If anyone wants to experience that then write out some GB of data over
 NFS. After a short while processes will hang while others keep running.

 True, that's what i was saying.
 But if there is not enough memory, it's not only one process that will hang. 
 It's everything.
 So i think that adding pressure on the RAM, which is absolutely not as 
 aboundant as disk space is a mistake, for a generic configuration.
 If you know that you aren't going to hit that high memory allocation then.. 
 free to use tmpfs.

Doesn't matter if the pressure is from IO to a disk based filesystem or
IO to tmpfs. They both go to the same buffer cache anyway.

MfG
Goswin


-- 
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/87fwaadxjs.fsf@frosties.localnet



Re: Moving /tmp to tmpfs makes it useless

2012-06-05 Thread Goswin von Brederlow
Ben Hutchings b...@decadent.org.uk writes:

 On Fri, Jun 01, 2012 at 11:19:40PM +0200, Carlos Alberto Lopez Perez wrote:
 On 01/06/12 13:33, Goswin von Brederlow wrote:
   I don't know the ultimate reason behind this ugly behaviour of Linux
   when the swapping process is happening, but I know this is real and it
   happens because I have experimented this situation myself more than a
   couple of times.
  It's a matter of that gets swapped and linux choosing the wrong thing to
  swap (far too often). There is some bug in linux that when you have
  lots and lots of IO at some point the swap heuristics tip over and start
  swapping apps and usefull data to create more cache space for
  IO. Doesn't matter that you already have 3GB for cache, it still swaps
  out your mouse cursor and then things go real bad.
 
 This makes sense. Many times I have experimented this situation while
 copying a large file from a quick device (hdd) to a very slow device
 (cheap usb stick)
 
 IMHO The logical way of behaving in such situation is to slow-down the
 IO bandwidth of the processes that are filling the cache, by sending to
 sleep any process that requests more IO while the cache is full instead
 of trying to free RAM by swapping out things from the RAM to the swap.
 
 Do you know any way to avoid (or mitigate) this? Perhaps some sysctl
 variable?

There are 2 settings for that, one to limit the number of dirty pages
before writing them starts and one to limit the number of dirty pages
being written (being on-the-fly) at any one time. The defaults are iirc
30% and 10% but none of that seems to matter. A process writing to a
slow devcie isn't put to sleep if the limits are exceeded so it keeps
eating up memory with dirty pages.
 
 Can't Linux be configured to just block (sleep) any process that
 requests IO while the cache is full?

 Perhaps a good idea would be to limit the cache size on a per-PID basis
 and block (sleep) the pid while its cache is full.

 I don't think it makes any sense to have a hard per-process limit.
 Also, it's not generally possible to account dirty pages to specific
 processes exactly.  But I think you will be pleased with this change
 that was included in Linux 3.2:

 http://lwn.net/Articles/456904/

 Ben.

Hui, lets hope that works better.

MfG
Goswin


-- 
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/87bokydx4p.fsf@frosties.localnet



Re: Moving /tmp to tmpfs makes it useless

2012-06-05 Thread Goswin von Brederlow
Salvo Tomaselli tipos...@tiscali.it writes:

 No, tmpfs will be swapped out if you don't use a file for a while but
 something else uses memory, including IO caching. 
 unless too many things want to use memory, then tmpfs gives a great 
 contribution in taking down the machine.

 As you pointed out yourself in another email, under memory pressure the 
 kernel 
 starts doing odd choices.

 So the point is: is it correct to enforce a default setting that will break 
 many software that would otherwise work flawlessy, and that makes the machine 
 less reliable but faster for certain kind of tasks?

You're still ignoring that a disk based filesystem puts up the same
memory pressure, even more so for the journal and metadata overhead.

As I pointed out the tipping point can be easily recreated by writing to
NFS. A slow USB device works too if you have one big enough. I haven't
seen the same behaviour with tmpfs but then again I don't put files much
much larger than my ram in /tmp.

MfG
Goswin


-- 
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/877gvmdwv8.fsf@frosties.localnet



Re: Moving /tmp to tmpfs makes it useless

2012-06-05 Thread Goswin von Brederlow
Uoti Urpala uoti.urp...@pp1.inet.fi writes:

 Goswin von Brederlow wrote:
  Le vendredi 25 mai 2012 à 16:01 +0300, Uoti Urpala a écrit : 
  There is one significant difference though. When you read data back to
  memory from swap, the kernel does not remember that it already exists on
  disk; when the data is evicted from memory again, it is unnecessarily
  rewritten to disk rather than just dropped. Thus, if you do multiple
  read iterations through a large set of data (which does not fit in
  memory) on tmpfs, each iteration does disk read AND write rather than
  just read.

 Linux certainly has a notion of cached swap, i.e. pages from swap that
 are also unmodified in memory. As long as you have enough swap the
 kernel should not reap the swapped data and know that it is already on
 disk when it wants to evict the page.

 I haven't read the relevant kernel code, but that doesn't match the
 behavior I see. Reading a large file from tmpfs and then allocating
 memory results in large swap writes every time, even if the newly
 allocated memory is not itself immediately swapped out and the file
 should already be in swap from before.

But does it rewrite the pages it has just read back? Or does it swap out
some other pages it didn't have swapped out before?

It might consider a page it just had to swap in to be more valuable than
a page it had lying around for a long time and rather swap out the old
page than forget the just read page. So this doesn't proof that data in
tmpfs is rewritten again and again.

 The script below can be used to test the behavior. It creates a file,
 then loops alternatively reading the file and allocating+freeing memory.
 It's noteworthy that sometimes the read performance also drops over
 iterations (maybe the swap layout becomes more fragmented?). I used the
 given sizes for testing on a machine with 8 GiB memory. This load does
 run faster on ext4 than tmpfs.

What kernel?

MfG
Goswin


-- 
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/87396adwof.fsf@frosties.localnet



Bug#676166: ITP: cpputest -- C/C++ based unit test framework

2012-06-05 Thread Raphaël Hertzog
Package: wnpp
Severity: wishlist
Owner: Raphaël Hertzog hert...@debian.org

* Package name: cpputest
  Version : 3.1
  Upstream Author : James Grenning  Bas Vodde
* URL : http://www.cpputest.org/
* License : BSD
  Programming Lang: C++
  Description : C/C++ based unit test framework

CppUTest is a C/C++ based unit xUnit test framework for unit testing and
for test-driving your code. It is written in C++ but is used in C and C++
projects and frequently used in embedded systems.

CppUTest has a couple design principles:
 * Simple to use and small
 * Portable to old and new platforms

CppUTest also has support for building mocks and can be used by
practitioners of Test Driven Development.



--
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/20120605073718.25873.26663.reportbug@rivendell.localdomain



Re: Moving /tmp to tmpfs makes it useful

2012-06-05 Thread Goswin von Brederlow
Mike Hommey m...@glandium.org writes:

 On Tue, Jun 05, 2012 at 09:29:46AM +0300, Serge wrote:
 2012/6/1 Goswin von Brederlow wrote:
 
  All the complaints about /tmp as tmpfs come down to one simple issue:
  The size of the tmpfs isn't chosen well.
 
 Mounting /tmp to tmpfs not just breaks a lot of apps and reduces system
 stability, but it actually does nothing else. You get no benefits from
 /tmp being on tmpfs.
 That's the complaint: the change makes something bad and nothing good.
 
  Even without load it is much faster because fsync() becomes a NOP.
 
 Yes, it is. So it's a good idea to use tmpfs for some apps, that
 heavily use fsync() on files that fit in RAM. But... wait... no app
 is heavily using fsync() on files in /tmp. So it's useless to put
 /tmp on tmpfs.

 It takes one application using fsync on any file in / for all files in
 /tmp to be flushed to disk if it's the same filesystem. It doesn't need
 to be the application using /tmp doing fsync.

 Mike

For example runing apt-get upgrade while doing other stuff that uses
/tmp.

MfG
Goswin


-- 
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/87y5o2chhx.fsf@frosties.localnet



Re: Moving /tmp to tmpfs makes it useful

2012-06-05 Thread Goswin von Brederlow
Serge sergem...@gmail.com writes:

 2012/6/1 Goswin von Brederlow wrote:

 All the complaints about /tmp as tmpfs come down to one simple issue:
 The size of the tmpfs isn't chosen well.

 Mounting /tmp to tmpfs not just breaks a lot of apps and reduces system
 stability, but it actually does nothing else. You get no benefits from
 /tmp being on tmpfs.
 That's the complaint: the change makes something bad and nothing good.

You keep claiming tmpfs compromises system stability. Can you show a
kernel oops of a crash caused by tmpfs?

 It also saves on wear of the disk if the files are small and short
 lived, like temp files for gcc.

 I guess you talk about SSD-like disks. Then...
 1. short-lived files remain in cache and don't hit the disk.

A short-livd file goes to cache, as dirty pages. dirty pages are then
written to disk in the background.

Are you claiming that filesystem do un-dirty pages when a file is
deleted before it was actually written to disk? Do they remove the pages
from the write queue when they are already picked up for write out?

 2. gcc does not use fsync, does it?

As Mike says any fsync on the same filesystem generaly will force write
the files in /tmp too.

 3. gcc with -pipe option does not use /tmp
 4. if you manually build something, you can add -pipe option to CFLAGS
 5. if you build a package, you can add it to global build options

Not the default and you were talking about inexperienced users.

 6. this doesn't matter, since pretty much nobody builds apps on SSD disks
 So this is not even a corner case. :)

I think more than nobody has an SSD disk nowadays and they will only
become more popular. At best ignoring SSDs is short sighted.

 Yes because writing that on disk will only block the thread performing the
 write, not every thread that tries to allocate memory.

 Wrong.
 Not that much.
 The thread doing the write will just write to cache and not block
 at all. That is until you run out of cache.
 Until you run out of dirty_ratio, which is usually less than entire cache. :)

Unfortunately that limit seems to simply not work AT ALL. Writing to a
slow filesystem like NFS or a USB stick just keeps writing and writing
and writing till there is no more ram. With the obvious result of stuff
blocking.

Also shouldn't/couldn't tmpfs fall under the same ratio (or equivalent
setting). No more than dirty_ratio pages should be dirty in tmpfs and
then it could start swapping them out even without memory pressure?

 No, tmpfs will be swapped out if you don't use a file for a while but
 something else uses memory, including IO caching.

 It won't, I tried. I put a few hundreds MB on tmpfs and started reading
 and copying gigabytes of files, tar/untar archives. I was still getting
 no swap usage. As long as there's enough RAM they don't get swapped.

Well, worked here. I know swap usage/behaviour widely varries between
kernel versions. I've seen kernels that didn't use swap even after a
week but also kernels that used swap after an hour all with the pretty
much the same usage pattern on my desktop.

 I'm asking for *popular* apps, that create files in /tmp, *never put
 large files* there, and become *noticeably* faster with /tmp on tmpfs?

 gcc, ocamlopt, mc, lintian

 Which of them becomes faster with /tmp on tmpfs? Can you suggest a use
 case, that I can test with /tmp on disk and on tmpfs myself and see them
 becoming faster?

All of them. In mc use the feature to look into tar/rpm/deb files.
And try running apt-get upgrade in parallel for extra fsync()s.

MfG
Goswin


-- 
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/87txyqcgp8.fsf@frosties.localnet



Re: Idea: mount /tmp to tmpfs depending on free space and RAM

2012-06-05 Thread Goswin von Brederlow
Stephan Seitz stse+deb...@fsing.rootsland.net writes:

 On Fri, Jun 01, 2012 at 02:19:53PM +0200, Goswin von Brederlow wrote:
In general your option assumes that you need the maximum amount of free
space in /tmp. That is simply not true. In most cases a small /tmp is
just peachy. Because of this it is hard to set a minimum size where
tmpfs would be too small to be usefull. For some user that would be
100MB, for others it is 100GB.

 /tmp is for temporary files, so I expect my /tmp to hold all these
 files, in my case DVD ISO images (downloaded or localy generated) that
 I will burn and then delete. So my /tmp is at least 20GB. BluRay users
 may need more.

So you are one of the 100GB users.

Personally I thing DVD ISO images (downloaded) belong in your $HOME
somewhere. And locally generated should just pipe the image to the
burner unless you want to upload the image somewhere, in which case
$HOME again. Just imagine a power failure after you painstackingly
uploaded 99.9% of the iso and then you have to start from scratch again
because a reboot cleans /tmp.

 If this is not the meaning of /tmp, then rename it.

 Diskspace is cheap and easier to spare than my RAM. So, yes, if
 someone has one 3TB partition which is writeable, then /tmp belongs to
 disk not to RAM.

 Shade and sweet water!

   Stephan

Just out of interest: Do you have /tmp on /? Because if you do already
have a seperate /tmp partition then that obviously stays used.

MfG
Goswin


-- 
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/87pq9ecg52.fsf@frosties.localnet



Re: Target path variables in debian/rules

2012-06-05 Thread Goswin von Brederlow
Ole Wolf o...@naturloven.dk writes:

 I am building a package where I'm overriding the man page generation to
 include man pages that are generated at build time. A simplified version
 of the override in my debian/rules is:

 override_dh_installman:
 dh_installman --
 /somepath/create-a-man-page  ${mandir}/man1/packagename.1

 However, I don't know how to specify the target path for the man pages,
 which I've tentatively indicated by ${mandir} in the above snippet. I'm
 not using autoconf, which seems to set some path variables.

 What should I write instead of ${mandir} to get the proper path (so that
 the entire path on my particular system becomes
 debian/packagename/usr/share/man/man1/packagename.1)?

Why not reverse the two commands:

override_dh_installman:
/somepath/create-a-man-page  debian/packagename.1
dh_installman --

You then need to delete debian/packagename.1 in clean but you don't have
to muck around with the install part. Let dh_installman install the
generated manpage.

MfG
Goswin


-- 
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/87lik2cfy2.fsf@frosties.localnet



Re: Upgrade path for packages that dropped ia32-libs for wheezy

2012-06-05 Thread Goswin von Brederlow
Scott Howard showard...@gmail.com writes:

 Hello,

 I have a non-free package that is distributable but comes precompiled
 for i386. Squeeze (and previous) released an amd64 package that
 depended on ia32-libs. For wheezy we've been able to use multiarched
 libraries to drop the dependency. Is there a mechanism that will make
 the upgrade to wheezy work for the package? Right now dpkg uninstalls
 the package (because it sees the data package, which is all but

Side note: Is the data package of any use other than for your binary?
Why have it arch:all if it is only usefull for the :i386 binary.

 can't find the corresponding binary package in amd64), users are
 confused, find a bug report on the BTS or the changelog on a debian
 site telling them to enable i386 in dpkg, then they install the :i386
 package and it works.

 This may just be a non-free issue people have to deal with, I just
 wanted to see if there was a better way or plan in place to handle
 this.

 Regards,
 Scott

I'm afraid there isn't a good solution. Users will need to enable
multiarch to upgrade those packages. And that needs apt/dpkg upgraded
first.

What I will do for ia32-libs is to use 2 packages something like this:

Package: ia32-libs
Depends: ia32-libs-i386
Architecture: amd64
Description: ia32-libs transitional package
 This package transitions the runtime libraries for the ia32/i386
 architecture, configured for use on an amd64 running a 64-bit kernel to
 use the new multiarch feature. It can be safely removed once nothing
 depends on it anymore.
 .
 To install/upgrade you need to enable multiarch first by running:
 + dpkg --add-architecture i386
 + apt-get update

Package: ia32-libs-i386
Architecture: i386
Depends: libfoo, libbar, libbaz
Description: ia32-libs transitional package
 This package transitions the runtime libraries for the ia32/i386
 architecture, configured for use on an amd64 running a 64-bit kernel to
 use the new multiarch feature. It can be safely removed once nothing
 depends on it anymore.
 .
 For use on amd64 systems with multiarch only.


By having 2 packages, one for amd64 and one for i386, I can have a
cross-architecture dependency. Using Depends: foo:i386 is not allowed in
wheezy and this is the next best thing.

I'm not sure wether such a dummy/transitional package would help in
your case. Prior to enabling multiarch the package will be uninstallable
so might be removed on upgrades the same as you have now. But that's the
best solution I've seen so far.

MfG
Goswin


-- 
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/87hauqcfej.fsf@frosties.localnet



Re: Moving /tmp to tmpfs makes it useful

2012-06-05 Thread Serge
2012/6/5 Goswin von Brederlow wrote:

 You keep claiming tmpfs compromises system stability. Can you show a
 kernel oops of a crash caused by tmpfs?

No crashes, system just becomes slow and hard/impossible to use. See the
Stefan Lippers-Hollmann email about tmpfs vs disk writes. System that
does not respond to mouse clicks I called less stable. I don't mind if
you suggest a better name for it.

 A short-livd file goes to cache, as dirty pages. dirty pages are then
 written to disk in the background. Are you claiming that filesystem do
 un-dirty pages when a file is deleted before it was actually written to
 disk?

Yes, I tested that. It's easy to test, run:
  dd if=/dev/zero of=testfile bs=1M count=20; rm -f testfile
then check /proc/diskstats or `iostat -k` for actually written bytes.

 As Mike says any fsync on the same filesystem generaly will force write
 the files in /tmp too.

It does not (Mike, are you sure?). I wrote a small test to check fsync
speed. Certainly fsync becomes slower on a heavily loaded disk. But it
becomes about same slower when I READ from disk instead of writing to it.
Fsync also does not cause the data to be flushed (there was about 50MB
of data in cache, but fsync usually took 0.1s, my disk is not that fast).
Can you actually reproduce that on your system?

 5. if you build a package, you can add it to global build options

 Not the default and you were talking about inexperienced users.

If the user is experienced enough to build a package, he can write:
  APPEND CFLAGS -pipe
  APPEND CXXFLAGS -pipe
to the /etc/dpkg/buildflags.conf as well. :)
(maybe it should be there by default, btw?)

 I think more than nobody has an SSD disk nowadays and they will only
 become more popular. At best ignoring SSDs is short sighted.

Ehm... I don't understand you. There're a lot of blind people there, and
ignoring them is also not the best idea. But how is that related to /tmp
on tmpfs? It does almost no help for SSD disks, because most writes are
not done to /tmp.

I don't know any people, who care about disk writes AND build packages
on SSD disks. But I think you're right, that they will become more and
more popular. At the same time they become more reliable, so if we're
talking about future — we don't have to worry about SSD at all, because
even modern SSD disks are supposed to live for 50+ years. :) [1]

 Unfortunately that limit seems to simply not work AT ALL. Writing to a
 slow filesystem like NFS or a USB stick just keeps writing and writing
 and writing till there is no more ram. With the obvious result of stuff
 blocking.

I don't have NFS to check, but I often write to USB disks, that are much
slower than my HDD, and get no swapping/blocking.

 Also shouldn't/couldn't tmpfs fall under the same ratio (or equivalent
 setting). No more than dirty_ratio pages should be dirty in tmpfs and
 then it could start swapping them out even without memory pressure?

IMHO, tmpfs is a filesystem in RAM, not a cache for swap filesystem, so
dirty pages should be flushed to RAM, not to swap.

 It won't, I tried. As long as there's enough RAM they don't get swapped.

 Well, worked here.

Maybe you have some unusual sysctl settings, e.g. vm.swappiness?

 Which of them becomes faster with /tmp on tmpfs? Can you suggest a use
 case, that I can test with /tmp on disk and on tmpfs myself and see them
 becoming faster?

 All of them. In mc use the feature to look into tar/rpm/deb files.
 And try running apt-get upgrade in parallel for extra fsync()s.

I can't reproduce the fsync() problem, see above. Can you?
(also, mc does not unpack rpm/deb to /tmp when looking into it :))

[1] http://www.storagesearch.com/ssdmyths-endurance.html
-- 
  Serge


--
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/caoveneo8cqm9p3cksqi6xpg05cczpgt-qzmb56+kmh761xg...@mail.gmail.com



Re: Idea: mount /tmp to tmpfs depending on free space and RAM

2012-06-05 Thread Stephan Seitz

On Tue, Jun 05, 2012 at 10:33:13AM +0200, Goswin von Brederlow wrote:

Personally I thing DVD ISO images (downloaded) belong in your $HOME


Don’t you think this is getting quite ridiculous? Big temporary files 
belong in your $HOME, but small temporary files in /tmp? Only to switch 
/tmp from disk to RAM?



somewhere. And locally generated should just pipe the image to the
burner unless you want to upload the image somewhere, in which case


Or you want to keep it safe, until you are sure the burned DVD is 
working.


Of course, if I want to keep the ISO it will be stored in $HOME, but then 
it isn’t a *temporary* file anymore. And /tmp *is* for temporary files.



$HOME again. Just imagine a power failure after you painstackingly
uploaded 99.9% of the iso and then you have to start from scratch again
because a reboot cleans /tmp.


TMPTIME exists and can be set according to your needs and your safety 
concern.



Just out of interest: Do you have /tmp on /? Because if you do already
have a seperate /tmp partition then that obviously stays used.


I always have separate partitions for /, /usr, /var, /tmp, /usr/local and 
/home (allright, with crappy software like udev and Co. which starts 
wanting files in /usr needlessy at the early boot stages, I will merge 
/ and /usr in time). It isn’t a problem for me.


But we are talking about defaults. You wish to tell new users that there 
two TB disk can’t really be used as they wish because Debian has 
a strange distinction between temporary files belonging in /tmp and 
temporary files don’t belonging in /tmp?


According to the discussion the installer will create one partition for 
swap and one for /. If this is true then the standard user has far more 
space on disk than he has RAM.


Shade and sweet water!

Stephan

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


smime.p7s
Description: S/MIME cryptographic signature


Re: Starting services automatically after install

2012-06-05 Thread Vincent Lefevre
On 2012-06-03 08:21:34 +0200, Bernhard R. Link wrote:
 Try to see it from the other side: I don't understand why you would a
 like a service not started by default. The daemon is there to be run,
 so running it is the most sensible approach in almost all cases[1].

Well, a mail server daemon must not be run until it is completely
configured, in particular when manual configuration is needed,
e.g. to set up aliases and/or to check if some disk is mounted.
Otherwise this means that mail will be rejected. Because of that,
I potentially lost mail on an Ubuntu machine. But I think that
Debian has/had the same problem.

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
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/20120605115705.ga3...@xvii.vinc17.org



Bug#676212: ITP: yubikey-personalization-gui -- GUI configuration tool for YubiKey tokens

2012-06-05 Thread Klas Lindfors
Package: wnpp
Severity: wishlist
Owner: Klas Lindfors k...@yubico.com


* Package name: yubikey-personalization-gui
  Version : 3.0.5
  Upstream Author : Yubico Open Source Maintainers ossma...@yubico.com
* URL : https://github.com/Yubico/yubikey-personalization-gui
* License : BSD-2-clause
  Programming Lang: C++
  Description : GUI configuration tool for YubiKey tokens

YubiKeys are USB tokens that act like keyboards and generate one-time
passwords, static passwords or work in challenge-response mode.

This is a graphical tool to customize the token with your own
cryptographic key and options.



-- 
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/20120605115310.6108.7756.report...@debian.lan



Re: Moving /tmp to tmpfs makes it useless

2012-06-05 Thread Uoti Urpala
Goswin von Brederlow wrote:
 Uoti Urpala uoti.urp...@pp1.inet.fi writes:
  I haven't read the relevant kernel code, but that doesn't match the
  behavior I see. Reading a large file from tmpfs and then allocating
  memory results in large swap writes every time, even if the newly
  allocated memory is not itself immediately swapped out and the file
  should already be in swap from before.
 
 But does it rewrite the pages it has just read back? Or does it swap out
 some other pages it didn't have swapped out before?
 
 It might consider a page it just had to swap in to be more valuable than
 a page it had lying around for a long time and rather swap out the old
 page than forget the just read page. So this doesn't proof that data in
 tmpfs is rewritten again and again.

There shouldn't be gigabytes of other pages to write. The set of
changing pages in memory that would always differ from what has already
been written to swap shouldn't be that large.


  The script below can be used to test the behavior. It creates a file,
  then loops alternatively reading the file and allocating+freeing memory.
  It's noteworthy that sometimes the read performance also drops over
  iterations (maybe the swap layout becomes more fragmented?). I used the
  given sizes for testing on a machine with 8 GiB memory. This load does
  run faster on ext4 than tmpfs.
 
 What kernel?

I initially tested it on some older kernel; retried on 3.3.

Did you not try the script yourself if you expected different results?
If you did test, what results did you get?



-- 
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/1338900090.21597.60.camel@glyph.nonexistent.invalid



this bug .. bugs me

2012-06-05 Thread Joey Hess
10 Jun 2010  a bug was filed wanting wine 1.2 packaged in time for squeeze.
12 Aug 2010  packages of 1.2 were available .. but not in Debian.
 6 Feb 2011  squeeze shipped with the same wine version that shipped in lenny.
 7 Mar 2012  wine 1.4 was released as the new upstream stable release
25 May 2012  wine 1.2 was finally made available in unstable

I've read over this entire bug, and while there are clearly some hard
problems and a lot of good work shown here, I'm seeing a concerning
trend throughout it.

We seem to have a problem with being willing to trade off simple
solutions that will greatly benefit users, for doing things right,
even when doing things right benefits users *less*.

Examples of that seen in this bug include:

* An idea that every old release of wine needs to be packaged in sequence,
  so it'll be available in snapshots, so users can pull down an old
  version as needed for maximal ability to find one that works. That's
  the theory, the actual end result is that users had no modern
  wine version at all to use, for many years.
  
  This is a simple tradeoff of benefits to sets of users,
  and the set of users who know how to use snapshot.debian.org, need
  a two year old version of wine there, and can find the right version is
  clearly much smaller than the set of users who would like the latest
  wine to see if it runs some program.

* Wanting to support multiarch coinstallability, plus wine and
  wine-unstable coinstallability. Nice goal, but again it prioritises
  some small set of users who need 2 or even 4 versions of wine
  coinstalled over the larger set of users who just want the newest wine
  version.

* Not using existing Ubuntu packages of wine despite them being
  available for a long time at newer versions.

* People doing work allowing themselves to be blocked for a long time on
  some minor procedural point, like whether they have commit access to a
  particular git repository, or are not being added as a member of some
  particular team, or whether infrequent and apologetic posts by a package
  maintainer are enough to keep them from being considered MIA.

This bug is a textbook example of making the perfect the enemy of the good.
It's disconcerting that we, or our users, are willing to put up with this.

-- 
see shy jo


signature.asc
Description: Digital signature


Re: Packaging on GitHub ?

2012-06-05 Thread Thorsten Glaser
Bernd Zeimetz bernd at bzed.de writes:

 On 05/29/2012 08:07 AM, Yao Wei (魏銘廷) wrote:
  I am thinking about a more general topic like:
  Managing packaging on VCS services other than Alioth
 
 The other way rounds works well, too - package wherever you like to and
 mirror it on Alioth, for example in your personal git folder in your home.

The idea, in principle, is nice, but I’ve seen packages where
I suspect the primary maintainer (don’t want to write names
here) maintains it in his DVCS copy and pushes to the official
mirror listed in the VCS-* headers only rarely, so they are
out of date and not suitable for e.g. submitting patches. (Even
saw one where he had the VCS-* headers pointed to the previous
upstream major version branch, and while the branch for the
current upstream major version existed, it was out of date.)

Okay, this is a general problem with DVCSes, but mirroring, if
not done reliably-automatically, might (possibly even will) make
it worse.

People seem to dislike Alioth, mostly due to issues in the past
and load issues. Not sure whether anything can be done about that.
(Count me in for some of my packages though, where I’m developing
them in my own (but published) CVS repository… others I’ve put up
on Alioth though. But that’s mostly nostalgy. And dogfooding, since
I maintain that beast. Nothing against Alioth in its current in-
carnation, as long as the load issues don’t remain/come back. I’m
actually considering putting future packages of mine up there.)

bye,
//mirabilos
-- 
13:37⎜«Natureshadow» Deep inside, I hate mirabilos. I mean, he's a good
guy. But he's always right! In every fsckin' situation, he's right. Even
with his deeply perverted taste in software and borked ambition towards
broken OSes - in the end, he's damn right about it :(! […] works in mksh



-- 
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/loom.20120605t181356-...@post.gmane.org



Re: this bug .. bugs me

2012-06-05 Thread Michael Gilbert
On Tue, Jun 5, 2012 at 11:52 AM, Joey Hess wrote:
 10 Jun 2010  a bug was filed wanting wine 1.2 packaged in time for squeeze.
 12 Aug 2010  packages of 1.2 were available .. but not in Debian.
  6 Feb 2011  squeeze shipped with the same wine version that shipped in lenny.
  7 Mar 2012  wine 1.4 was released as the new upstream stable release
 25 May 2012  wine 1.2 was finally made available in unstable

 I've read over this entire bug, and while there are clearly some hard
 problems and a lot of good work shown here, I'm seeing a concerning
 trend throughout it.

 We seem to have a problem with being willing to trade off simple
 solutions that will greatly benefit users, for doing things right,
 even when doing things right benefits users *less*.

 Examples of that seen in this bug include:

 * An idea that every old release of wine needs to be packaged in sequence,
  so it'll be available in snapshots, so users can pull down an old
  version as needed for maximal ability to find one that works. That's
  the theory, the actual end result is that users had no modern
  wine version at all to use, for many years.

  This is a simple tradeoff of benefits to sets of users,
  and the set of users who know how to use snapshot.debian.org, need
  a two year old version of wine there, and can find the right version is
  clearly much smaller than the set of users who would like the latest
  wine to see if it runs some program.

 * Wanting to support multiarch coinstallability, plus wine and
  wine-unstable coinstallability. Nice goal, but again it prioritises
  some small set of users who need 2 or even 4 versions of wine
  coinstalled over the larger set of users who just want the newest wine
  version.

 * Not using existing Ubuntu packages of wine despite them being
  available for a long time at newer versions.

 * People doing work allowing themselves to be blocked for a long time on
  some minor procedural point, like whether they have commit access to a
  particular git repository, or are not being added as a member of some
  particular team, or whether infrequent and apologetic posts by a package
  maintainer are enough to keep them from being considered MIA.

 This bug is a textbook example of making the perfect the enemy of the good.
 It's disconcerting that we, or our users, are willing to put up with this.

Not sure what to say other than when I became a DD and gained the
power to NMU, I started fixing this.  Before that, Ove's contributor
rejections blocked myself and many other non-DDs from effectively
helping.

Anyway, we've had recent threads on the continuing issues with strong
package maintenance, and from what I can tell, there is no clear
direction.  The solution I'm pursuing is a liberal application of
NMUs, and it seems to be working (albeit a bit slowly).  Do you have
ideas on other more effective solutions?

Best wishes,
Mike


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



unsubscibe

2012-06-05 Thread JT

Am 01.06.2012 12:17, schrieb Goswin von Brederlow:

m...@linux.it (Marco d'Itri) writes:


On May 18, Russ Allberyr...@debian.org  wrote:


I do this work in cases where keeping the patches separate is useful for
some reason, but mostly it's not.

Some of my packages have 30-60 patches (mature software...), and
merging them would make them impossibile to understand.
Is there a VCS workflow which would make such packages easier to manage
than with quilt? (I like quilt, BTW.)

--
ciao,
Marco

Check out gitpkg. It has hooks to create the quilt patches from a set of
feature branches in some form.

Also note that in this scheme where you produce a single debian patch
you would not be working on the single debian patch. You would still
work on your 30-60 feature branches (or whatever else you use instead of
a patch queue). The single debian patch would just be the fallback for
people that can't access your VCS.

The single patch would be hard to understand but it would be unfair to
compare it to 30-60 patches in a patch queue. What you have to compare
the single patch with is a single debian diff.gz. Obviously if you can
make a meaningfull patch queue with seperate patches that is
preferable. The single patch method is for situations where you can't.

MfG
 Goswin





--
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/4fce3c46.3000...@dresden-pieschen.de



Re: this bug .. bugs me

2012-06-05 Thread Andreas Barth
* Joey Hess (jo...@debian.org) [120605 17:53]:
 I've read over this entire bug, and while there are clearly some hard
 problems and a lot of good work shown here, I'm seeing a concerning
 trend throughout it.

I think the issues are now getting way better, with e.g. hillu
uploading new wine versions to unstable. So while it bugs me as well,
I don't think we need to discuss much about it for this package
anymore as of now, as the right actions now take place. It might have
taken too long to arrive there, but now we are there.


Andi


-- 
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/20120605170933.gv2...@mails.so.argh.org



Re: this bug .. bugs me

2012-06-05 Thread Andrey Rahmatullin
On Tue, Jun 05, 2012 at 12:46:46PM -0400, Michael Gilbert wrote:
 Not sure what to say other than when I became a DD and gained the
 power to NMU, I started fixing this.  Before that, Ove's contributor
 rejections blocked myself and many other non-DDs from effectively
 helping.
I would also be glad to hear opinions on whether regularly NMUing a
package with a formally active maintainer is acceptable and whether it can
be called a takeover.
Not that I'm against a recent wine in the repos, quite the opposite.

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Re: this bug .. bugs me

2012-06-05 Thread Michael Gilbert
On Tue, Jun 5, 2012 at 1:25 PM, Andrey Rahmatullin wrote:
 On Tue, Jun 05, 2012 at 12:46:46PM -0400, Michael Gilbert wrote:
 Not sure what to say other than when I became a DD and gained the
 power to NMU, I started fixing this.  Before that, Ove's contributor
 rejections blocked myself and many other non-DDs from effectively
 helping.
 I would also be glad to hear opinions on whether regularly NMUing a
 package with a formally active maintainer is acceptable and whether it can
 be called a takeover.

We are announcing our deferred uploads at least 10 days in advance
(unless RC) with git commit references, so Ove can review and/or
cancel/reject our work at any point.  Thus, we haven't taken any of
his power away and it really can't be viewed as a takeover.  A few
of us are choosing to do the necessary work and review while Ove
doesn't have the time to do either himself.

Best wishes,
Mike


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CANTw=mo+kfpk9756z7qoe+cjvw+_kp176wqfb28yhctu0qq...@mail.gmail.com



Re: this bug .. bugs me

2012-06-05 Thread Christian PERRIER
(No CC, please, I'm subscribed to -devel)

Quoting Michael Gilbert (mgilb...@debian.org):

 Anyway, we've had recent threads on the continuing issues with strong
 package maintenance, and from what I can tell, there is no clear
 direction.  The solution I'm pursuing is a liberal application of
 NMUs, and it seems to be working (albeit a bit slowly).  Do you have
 ideas on other more effective solutions?


You mean, besides completely hijacking the package? 

The last maintainer upload is dated 2010/05/23. 

So, from my POV, you (Michael) and Hilko Bengen seem to be the real
package maintainers for wine.

My suggestion: do a maintainer upload of 1.4 in unstable, unless it
would affect some transition. And do it now.

PS: I have no particular interest in wine, but, really, from what I
see, this seems to be the only solution to bring  more life to the
package.  And, of course, I have no authority (except my ignorance)
for suggesting this. Just giving my advice..:)





signature.asc
Description: Digital signature


Re: this bug .. bugs me

2012-06-05 Thread Michael Gilbert
On Tue, Jun 5, 2012 at 1:17 PM, Christian PERRIER wrote:
 You mean, besides completely hijacking the package?

 The last maintainer upload is dated 2010/05/23.

 So, from my POV, you (Michael) and Hilko Bengen seem to be the real
 package maintainers for wine.

 My suggestion: do a maintainer upload of 1.4 in unstable, unless it
 would affect some transition. And do it now.

I prefer cordiality.  I would rather give Ove a fairly significant
amount of time before pursuing any such change. And even then, I plan
to defer the matter to the tech committee because I believe initiating
a takeover on my own is a conflict of interest, and again I am one for
cordiality.

Best wishes,
Mike


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



Re: Bug#171208: ITP: tlpr -- a Trivial LPR client

2012-06-05 Thread Kurt Johnson
Quick fix:

in the option section for i - interface.
Change:
ip=malloc(sizeof(optarg)+1);
to
ip=malloc(strlen(optarg)+1);

Kurt

-- 
- 

Kurt Johnson
The KD Consulting Group Inc.
Voice: (513) 795-0901
Fax:   (740) 201-6437
http://www.kdconsulting.com 
gpg public key:  http://www.kdconsulting.com/KurtJohnson.asc


-- 
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/4fce4418.6010...@kdconsulting.com



Re: this bug .. bugs me

2012-06-05 Thread Joey Hess
Andreas Barth wrote:
 * Joey Hess (jo...@debian.org) [120605 17:53]:
  I've read over this entire bug, and while there are clearly some hard
  problems and a lot of good work shown here, I'm seeing a concerning
  trend throughout it.
 
 I think the issues are now getting way better, with e.g. hillu
 uploading new wine versions to unstable. So while it bugs me as well,
 I don't think we need to discuss much about it for this package
 anymore as of now, as the right actions now take place. It might have
 taken too long to arrive there, but now we are there.

I'm less concerned about wine specifically (though there's still some
potential to release wheezy without the current 1.4 stable release, it
seems). This bug seems to illustrate some general problems with
prioritisation, which is why I brought it up on -devel.

-- 
see shy jo


signature.asc
Description: Digital signature


Re: this bug .. bugs me

2012-06-05 Thread Andrey Rahmatullin
On Tue, Jun 05, 2012 at 01:41:42PM -0400, Michael Gilbert wrote:
  You mean, besides completely hijacking the package?
 
  The last maintainer upload is dated 2010/05/23.
 
  So, from my POV, you (Michael) and Hilko Bengen seem to be the real
  package maintainers for wine.
 
  My suggestion: do a maintainer upload of 1.4 in unstable, unless it
  would affect some transition. And do it now.
 
 I prefer cordiality.  I would rather give Ove a fairly significant
 amount of time before pursuing any such change. And even then, I plan
 to defer the matter to the tech committee because I believe initiating
 a takeover on my own is a conflict of interest, and again I am one for
 cordiality.
Please don't forget that the freeze is near.

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Bug#676257: ITP: libseccomp -- High level interface to the Linux Kernel's seccomp filter

2012-06-05 Thread Kees Cook
Package: wnpp
Severity: wishlist
Owner: Kees Cook k...@debian.org

* Package name: libseccomp
  Version : 0.1.0
  Upstream Author : Paul Moore pmo...@redhat.com
* URL : https://sourceforge.net/projects/libseccomp/
* License : LGPLv2
  Programming Lang: C
  Description : High level interface to the Linux Kernel's seccomp filter

This library provides a high level interface to constructing, analyzing
and installing seccomp filters via a BPF passed to the Linux Kernel's
prctl() syscall.



-- 
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/20120605180741.17371.60183.reportbug@localhost6.localdomain6



Re: this bug .. bugs me

2012-06-05 Thread Simon McVittie
On 05/06/12 16:52, Joey Hess wrote:
 This bug is a textbook example of making the perfect the enemy of
 the good.

Yes, pretty much. On the bright side, multiarch and a modern Wine
version have both arrived (Wine 1.4 is admittedly only in experimental
right now, but I hope it'll reach testing before we freeze), meaning
this can finally work:

archetype% dpkg --print-architecture
amd64
archetype% wine --version
wine-1.4
archetype% dpkg -s wine|grep Arch
Architecture: i386
archetype% dpkg -s ia32-libs
Package `ia32-libs' is not installed and no info is available.

... so, thanks to everyone whose work and perseverance made that possible!

S


-- 
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/4fce4e72.10...@debian.org



Re: [pkg-wine-party] Bug#585409: this bug .. bugs me

2012-06-05 Thread Stephen Kitt
Hi Mike,

On Tue, Jun 05, 2012 at 01:41:42PM -0400, Michael Gilbert wrote:
 On Tue, Jun 5, 2012 at 1:17 PM, Christian PERRIER wrote:
  You mean, besides completely hijacking the package?
 
  The last maintainer upload is dated 2010/05/23.
 
  So, from my POV, you (Michael) and Hilko Bengen seem to be the real
  package maintainers for wine.
 
  My suggestion: do a maintainer upload of 1.4 in unstable, unless it
  would affect some transition. And do it now.
 
 I prefer cordiality.  I would rather give Ove a fairly significant
 amount of time before pursuing any such change. And even then, I plan
 to defer the matter to the tech committee because I believe initiating
 a takeover on my own is a conflict of interest, and again I am one for
 cordiality.

I don't know whether you'd noticed - you and I have been added to the
Wine packaging team on Alioth, so technically our uploads now are no
longer NMUs but team uploads!

Regards,

Stephen


-- 
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/20120605181751.gc14...@sk2.org



Re: this bug .. bugs me

2012-06-05 Thread Thomas Goirand
On 06/06/2012 01:41 AM, Michael Gilbert wrote:
 And even then, I plan
 to defer the matter to the tech committee
Please do this *now*. We've already discussed about Wine in this
list few months ago, and the situation is still the same. At some
point, we need to get things moving...

Thomas


-- 
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/4fce6488.4050...@debian.org



Re: this bug .. bugs me

2012-06-05 Thread Aron Xu
On Wed, Jun 6, 2012 at 3:56 AM, Thomas Goirand z...@debian.org wrote:
 On 06/06/2012 01:41 AM, Michael Gilbert wrote:
 And even then, I plan
 to defer the matter to the tech committee
 Please do this *now*. We've already discussed about Wine in this
 list few months ago, and the situation is still the same. At some
 point, we need to get things moving...

 Thomas


They are members of pkg-wine already, so I think they can make changes
that can improve the status but not limited to minimal changes for
NMU. If Mike don't want to hijack at least for now, team upload is
good enough.


-- 
Regards,
Aron Xu


-- 
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/CAMr=8w4j29og50jacldhwidg1be8lvozf5ukkcna0xkxkrf...@mail.gmail.com



Re: this bug .. bugs me

2012-06-05 Thread Michael Gilbert
 They are members of pkg-wine already, so I think they can make changes
 that can improve the status but not limited to minimal changes for
 NMU. If Mike don't want to hijack at least for now, team upload is
 good enough.

Hopefully this will make some people happy: I pushed the first team
upload of the 1.4 series to unstable about a half-an-hour ago :)

Best wishes,
Mike


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CANTw=MPow3FdboOcfm7okJVz7eM3fZu-rOX16_ZZ--XBP=z...@mail.gmail.com



Re: this bug .. bugs me

2012-06-05 Thread Stefano Zacchiroli
On Wed, Jun 06, 2012 at 03:56:56AM +0800, Thomas Goirand wrote:
 Please do this *now*. We've already discussed about Wine in this
 list few months ago, and the situation is still the same. At some
 point, we need to get things moving...

Please don't spread incorrect information.  The situation is by far not
the same (as in: it's *much* better now), and that is also thanks to the
discussion back then.  -devel FTW, ... sometimes :-)

Cheers.
-- 
Stefano Zacchiroli zack@{upsilon.cc,pps.jussieu.fr,debian.org} . o .
Maître de conférences   ..   http://upsilon.cc/zack   ..   . . o
Debian Project Leader...   @zack on identi.ca   ...o o o
« the first rule of tautology club is the first rule of tautology club »


signature.asc
Description: Digital signature


Bug#676285: ITP: bsod -- curses Blue Screen of Death Simulator.

2012-06-05 Thread Marcel Partap
Package: wnpp
Severity: wishlist
Owner: Marcel Partap mpar...@gmx.net

* Package name: bsod
  Version : 0.1
  Upstream Author : Folkert van Heusden folk...@vanheusden.com
* URL : http://www.vanheusden.com/bsod/
* License : GPL-2.0+
  Programming Lang: C
  Description : curses Blue Screen of Death Simulator.

package is done already - changelog needs a valid ITP number though ;-)



-- 
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/20120605210003.19884.84669.reportbug@localhost



Re: this bug .. bugs me

2012-06-05 Thread Lisandro Damián Nicanor Pérez Meyer
On Mar 05 Jun 2012 17:12:31 Michael Gilbert escribió:
  They are members of pkg-wine already, so I think they can make changes
  that can improve the status but not limited to minimal changes for
  NMU. If Mike don't want to hijack at least for now, team upload is
  good enough.
 
 Hopefully this will make some people happy: I pushed the first team
 upload of the 1.4 series to unstable about a half-an-hour ago :)

\o/

And the same goes for team-maintained packages in general :)

-- 
9: Que es el Explorador de Windows
* El tipo que le roba las ideas a MacOs
Damian Nadales
http://mx.grulic.org.ar/lurker/message/20080307.141449.a70fb2fc.es.html

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Bug#676292: ITP: libperlx-maybe-perl -- return a pair only if they are both defined

2012-06-05 Thread Jonas Smedegaard
Package: wnpp
Severity: wishlist
Owner: Jonas Smedegaard d...@jones.dk

* Package name: libperlx-maybe-perl
  Version : 0.002
  Upstream Author : Toby Inkster toby...@cpan.org
* URL : http://search.cpan.org/dist/PerlX-Maybe/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : return a pair only if they are both defined

 Moose classes (and some other classes) distinguish between an attribute
 being unset and the attribute being set to undef. Supplying a
 constructor arguments like this:
 .
 my $bob = Person-new(
name = $name,
age = $age,
);
 .
 Will result in the name and age attributes possibly being set to
 undef (if the corresponding $name and $age variables are not defined),
 which may violate the Person class' type constraints.
 .
 PerlX::Maybe checks that $x and $y are both defined. If they are, it
 returns them both as a list; otherwise it returns the empty list.



-- 
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/20120605225830.13135.44065.report...@auryn.jones.dk



Bug#676295: ITP: cellml-api -- The CellML API Reference Implementation lets you manipulate and simulate mathematical models in the CellML modelling language

2012-06-05 Thread Andrew Miller
Package: wnpp
Severity: wishlist
Owner: Andrew Miller ak.mil...@auckland.ac.nz

* Package name: cellml-api
  Version : 1.11
  Upstream Author : Andrew Miller ak.mil...@auckland.ac.nz
* URL : http://cellml-api.sf.net/
* License : LGPL / GPL / MPL tri-licensed
  Programming Lang: C++ with Java and Python bindings
  Description : The CellML API Reference Implementation lets you manipulate
and simulate mathematical models in the CellML modelling language



-- 
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/20120605234028.5601.35011.report...@bioeng44a.bioeng.auckland.ac.nz



Accepted openbox 3.5.0-4 (source amd64)

2012-06-05 Thread Nico Golde
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 07:18:19 +0200
Source: openbox
Binary: openbox gnome-panel-control libobt0 libobrender27 openbox-dev
Architecture: source amd64
Version: 3.5.0-4
Distribution: unstable
Urgency: low
Maintainer: Nico Golde n...@debian.org
Changed-By: Nico Golde n...@debian.org
Description: 
 gnome-panel-control - command line utility to invoke GNOME panel run 
dialog/menu
 libobrender27 - rendering library for openbox themes
 libobt0- parsing library for openbox
 openbox- standards compliant, fast, light-weight, extensible window manage
 openbox-dev - development files for the openbox window manager
Closes: 76 675991
Changes: 
 openbox (3.5.0-4) unstable; urgency=low
 .
   * Fix crash on unexpected NET_WM_MOVERESIZE_CANCEL messages
 (675991_fix_crash_from_gtk3_apps.patch; Closes: #675991).
   * Make undecorated windows place according to their undecorated
 state (76_wrong_undecorated_window_placement.patch; Closes: #76)
Checksums-Sha1: 
 9494c6cdabd4cc60f7ea3e5de320c51163a35244 1642 openbox_3.5.0-4.dsc
 909246950eb75b3ac4521e0e89e909e5919ecaad 38244 openbox_3.5.0-4.debian.tar.gz
 0306e8578ae8d601fbb66152288a47999f91f296 339434 openbox_3.5.0-4_amd64.deb
 cc8943aba2f5fe5e00354dbfd81f85ab0eab8a89 41078 
gnome-panel-control_3.5.0-4_amd64.deb
 9ff4d5927c921e0907c071c1b4fe09a00d6a721c 66318 libobt0_3.5.0-4_amd64.deb
 cbe646a0b3534e0d74e6970b689aea88d8f72f86 77842 libobrender27_3.5.0-4_amd64.deb
 e202225f11e5a479badd02470cf3148d06ec0fb2 123596 openbox-dev_3.5.0-4_amd64.deb
Checksums-Sha256: 
 5e12ba2f069cff6d5133fd5aa3d2dfd1acf58fe79dfd55d180e021c009c3 1642 
openbox_3.5.0-4.dsc
 ef26db37efea68f418b61d25ff0bd6efb3cf7593f6cebadc04f72ecf2f4788b3 38244 
openbox_3.5.0-4.debian.tar.gz
 41c4753ad332f73f8852d52cff841a10c21bab2ba73302c8e45a7811f62ec319 339434 
openbox_3.5.0-4_amd64.deb
 499c4e9881be2f7a397a8667963760b0b02eb4f7f4508a7091b5300040980b91 41078 
gnome-panel-control_3.5.0-4_amd64.deb
 8adf21924b3509dc853e10d1e0f67a8cdefd489c0abee238b72260f7d73f8e28 66318 
libobt0_3.5.0-4_amd64.deb
 addcaa34efdda1b117cc6b2f3f6444fdc12c4b878c4a54a821c4a8dcda1080e2 77842 
libobrender27_3.5.0-4_amd64.deb
 7b9633e92daae4d23f38aa2b2cbfe88f1b6c028f1f9d3b203081f5066f790775 123596 
openbox-dev_3.5.0-4_amd64.deb
Files: 
 914e48480d3609ff9f61a85f8a28e1b7 1642 x11 optional openbox_3.5.0-4.dsc
 be7b83057b712bd12ccc3a16562430f8 38244 x11 optional 
openbox_3.5.0-4.debian.tar.gz
 f9ccf00bc47995e52153565a1eba04d2 339434 x11 optional openbox_3.5.0-4_amd64.deb
 22855f69198078c676b31b9dec0bd67d 41078 x11 optional 
gnome-panel-control_3.5.0-4_amd64.deb
 5f247c97af6e0541597aa42265502e60 66318 libs optional libobt0_3.5.0-4_amd64.deb
 254c97b19bb713351dc885bfd7974541 77842 libs optional 
libobrender27_3.5.0-4_amd64.deb
 97a9959b1ea469bc2027e1747de07f89 123596 libdevel optional 
openbox-dev_3.5.0-4_amd64.deb

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

iEYEARECAAYFAk/Nn6YACgkQHYflSXNkfP8vDQCgrQ8egLyAoYnqTwSI41oVHqFX
nvMAnj+xQeqbT6lqH0G8o2hR1qkCvWUs
=BYRs
-END PGP SIGNATURE-


Accepted:
gnome-panel-control_3.5.0-4_amd64.deb
  to main/o/openbox/gnome-panel-control_3.5.0-4_amd64.deb
libobrender27_3.5.0-4_amd64.deb
  to main/o/openbox/libobrender27_3.5.0-4_amd64.deb
libobt0_3.5.0-4_amd64.deb
  to main/o/openbox/libobt0_3.5.0-4_amd64.deb
openbox-dev_3.5.0-4_amd64.deb
  to main/o/openbox/openbox-dev_3.5.0-4_amd64.deb
openbox_3.5.0-4.debian.tar.gz
  to main/o/openbox/openbox_3.5.0-4.debian.tar.gz
openbox_3.5.0-4.dsc
  to main/o/openbox/openbox_3.5.0-4.dsc
openbox_3.5.0-4_amd64.deb
  to main/o/openbox/openbox_3.5.0-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/e1sbmqx-00062t...@franck.debian.org



Accepted uruk 20120605-1 (source all)

2012-06-05 Thread Joost van Baal-Ilić
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Jun 2012 07:50:23 +0200
Source: uruk
Binary: uruk
Architecture: source all
Version: 20120605-1
Distribution: unstable
Urgency: low
Maintainer: Joost van Baal-Ilić joos...@debian.org
Changed-By: Joost van Baal-Ilić joos...@debian.org
Description: 
 uruk   - Very small firewall script, for configuring iptables
Closes: 676067
Changes: 
 uruk (20120605-1) unstable; urgency=low
 .
   * New upstream release:
 - no longer die if programs zoem, col and/or groff are not found.  (Thanks
   Lucas Nussbaum for reporting the issue.)  Closes: #676067
Checksums-Sha1: 
 79b4056bd8c4aa27bd45bd15c1a802c24dcbd93c 1303 uruk_20120605-1.dsc
 2e56ebff49a63631690268bdba1972baaa4617d6 166950 uruk_20120605.orig.tar.gz
 5439494e3534c6790005ae54378b8e954c47bde1 9020 uruk_20120605-1.debian.tar.gz
 41b52409d6e1dc87243a60d13df47fe9fc747582 75462 uruk_20120605-1_all.deb
Checksums-Sha256: 
 5c8b7e00eb8adb0288fc57c0b73624203a4caaea114ebd724a3a393152b640ba 1303 
uruk_20120605-1.dsc
 cb1394ac4d35e8d4ea4beb5d5ed4cad62329e89344eaac729258280561c8c051 166950 
uruk_20120605.orig.tar.gz
 a961361c57f75601a52f081b0a604e947881ff3ed3bbc46b2f5031f8b6fc9610 9020 
uruk_20120605-1.debian.tar.gz
 ed1050a9192aaa7600d8f9e457b528665a66fbcf6d26a4b832c3ccf8f75c5b52 75462 
uruk_20120605-1_all.deb
Files: 
 9ae4222a79818af61ce8ac62267a0b7d 1303 net optional uruk_20120605-1.dsc
 5dd91b19f88f4310566c275593189e25 166950 net optional uruk_20120605.orig.tar.gz
 049218a579d47b291ec87f7064f5cffa 9020 net optional 
uruk_20120605-1.debian.tar.gz
 d8c1dd1407d431d7e9533c667de84418 75462 net optional uruk_20120605-1_all.deb

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

iQEcBAEBCAAGBQJPzZ7LAAoJEDNRenKl5rDImxAH/j6a5aLDdbDawg00NPQ/ggrz
WUtLwOda20z3ztn5X5mVJcg8q94Sb7uFtAVoToSXPJCXC6qvRBlE5c7Ji6ZdL1s7
p65y5JCjltMnVbbZcVuXnog2RMpaJ2E6Qdj1PhQiJ79uxOD0c4KtQOMupZolNWq4
+GhvqDpp74cuz6+u1l5SJwXLZWjY/p8Sx236anQ3hGyVOVLwDVPtBv7PpBVzeYWd
Iqf9MxUQfuEovBkR91zqQZeWktqxuqjoYPEN7s/tsGajJU4d/DFZ7gZCRJ8avNHz
ep0TERrhQEfg7jE/kniTIrvWj7dgMmebPtDkfE7DxDQUN1wIW7ITc9JaKP4Wm4w=
=Qugo
-END PGP SIGNATURE-


Accepted:
uruk_20120605-1.debian.tar.gz
  to main/u/uruk/uruk_20120605-1.debian.tar.gz
uruk_20120605-1.dsc
  to main/u/uruk/uruk_20120605-1.dsc
uruk_20120605-1_all.deb
  to main/u/uruk/uruk_20120605-1_all.deb
uruk_20120605.orig.tar.gz
  to main/u/uruk/uruk_20120605.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/e1sbmrb-000649...@franck.debian.org



Accepted viewpdf.app 1:0.2dfsg1-4 (source amd64)

2012-06-05 Thread Yavor Doganov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 31 May 2012 23:31:20 +0300
Source: viewpdf.app
Binary: viewpdf.app
Architecture: source amd64
Version: 1:0.2dfsg1-4
Distribution: unstable
Urgency: low
Maintainer: Debian GNUstep maintainers 
pkg-gnustep-maintain...@lists.alioth.debian.org
Changed-By: Yavor Doganov ya...@gnu.org
Description: 
 viewpdf.app - Portable Document Format (PDF) viewer for GNUstep
Closes: 453437 615353 619258 675222
Changes: 
 viewpdf.app (1:0.2dfsg1-4) unstable; urgency=low
 .
   * debian/control (Maintainer, Uploaders): Adopt package, make the
 GNUstep team maintainer (Closes: #453437).  Move Gürkan to Uploaders
 and change his email address (Closes: #675222).  Add myself.
 (Build-Depends): Require debhelper = 8, add dpkg-dev (= 1.16.1~) for
 hardening support.  Remove version requirements for libgnustep-gui-dev
 and libpopplerkit-dev.  Drop gnustep-make.
 (Section): Change to `gnustep'.
 (Depends): Add ${misc:Depends}.
 (Vcs-Git, Vcs-Browser): New fields.
 (Homepage): New field, move from Description (Closes: #615353).
 (Replaces, Conflicts): Remove, obsolete.
 (Standards-Version): Claim compliance with 3.9.3 as of this release.
   * debian/patches/rename.patch: Move local modifications here.
   * debian/patches/series:
   * debian/source/format:
   * debian/preinst: New file.
   * debian/compat: Set to 8.
   * debian/dirs:
   * debian/lintian-override: Delete.
   * debian/ViewPDF.desktop: Remove Version and full stop from Comment
 (Closes: #619258).
   * debian/rules: Include /usr/share/dpkg/buildflags.mk.  Avoid gs_make as
 it tends to swallow $(MAKE) arguments.  Misc cleanups.
 (GNUSTEP_MAKEFILES): Export for the reason stated above.
 (d_app, optim, LDFLAGS): Define.
 (build-stamp): Pass all relevant flags to enable hardening.
 (install): Use dh_prep isntead of dh_clean -k.
 (binary-indep): Don't install the lintian override, move
 arch-independent Resources to /usr/share instead.
   * debian/watch: New (dummy) file.
Checksums-Sha1: 
 e4f20818bda7715d6b630fec87fbe2ac25b2270e 1434 viewpdf.app_0.2dfsg1-4.dsc
 27fe58200fdbf72a3d38855bc6a1212472910202 5017 
viewpdf.app_0.2dfsg1-4.debian.tar.gz
 0714a144ffd005d2dee9f888ad189ff24f5c90f8 55354 viewpdf.app_0.2dfsg1-4_amd64.deb
Checksums-Sha256: 
 d865a2a6a7e6325ea9c85e32250e88268462c5cc00797373b2b03181236d65bd 1434 
viewpdf.app_0.2dfsg1-4.dsc
 2eb594c690a110b084b3aef0273a3a28e1e98588987226dc0f617e598489193e 5017 
viewpdf.app_0.2dfsg1-4.debian.tar.gz
 5a39d7c64546b7a0b995cd8e5da80c787e31a56c8675b9306f41ef5aea7fc1c7 55354 
viewpdf.app_0.2dfsg1-4_amd64.deb
Files: 
 3b389f227a6985c358913b279aefca42 1434 gnustep optional 
viewpdf.app_0.2dfsg1-4.dsc
 6ed1bdef339370da6712e9e6eb6e5ab6 5017 gnustep optional 
viewpdf.app_0.2dfsg1-4.debian.tar.gz
 5a869c386f40107b505aa0b562d5e8fa 55354 gnustep optional 
viewpdf.app_0.2dfsg1-4_amd64.deb

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

iEYEARECAAYFAk/NnS8ACgkQfNdgYxVXvBAWqQCfS4WzWHTMYo0znLoMmmiQ8m61
aQoAoJJfdJVGP4cKyZBdAzF3vhcuIA+N
=CL+Z
-END PGP SIGNATURE-


Accepted:
viewpdf.app_0.2dfsg1-4.debian.tar.gz
  to main/v/viewpdf.app/viewpdf.app_0.2dfsg1-4.debian.tar.gz
viewpdf.app_0.2dfsg1-4.dsc
  to main/v/viewpdf.app/viewpdf.app_0.2dfsg1-4.dsc
viewpdf.app_0.2dfsg1-4_amd64.deb
  to main/v/viewpdf.app/viewpdf.app_0.2dfsg1-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/e1sbmrs-00064p...@franck.debian.org



Accepted bootcd 3.28 (source all)

2012-06-05 Thread Bernd Schumacher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 08:15:07 +0200
Source: bootcd
Binary: bootcd bootcd-i386 bootcd-ia64 bootcd-mkinitramfs bootcd-backup
Architecture: source all
Version: 3.28
Distribution: unstable
Urgency: low
Maintainer: Bernd Schumacher bernd.schumac...@hp.com
Changed-By: Bernd Schumacher bernd.schumac...@hp.com
Description: 
 bootcd - run your system from cd without need for disks
 bootcd-backup - tools to backup a Debian or alien Linux installation
 bootcd-i386 - bootcd extension to create images that can boot on i386
 bootcd-ia64 - bootcd extension to create images that can boot on ia64
 bootcd-mkinitramfs - initramfs extension for bootcd
Changes: 
 bootcd (3.28) unstable; urgency=low
 .
   * Tested bootcd with tmpfs.
Checksums-Sha1: 
 dcc9ad29f7eefc71733b3e5d219fb08d96bfdde3 770 bootcd_3.28.dsc
 c5ef3de85b1dcddc2ce81fb5d6d60ad9ef1afd54 116831 bootcd_3.28.tar.gz
 f339136c86e51eac72caa7c31707671c94464e2a 84906 bootcd_3.28_all.deb
 62c637b90d389269aaf78ebbb67ab37d84392066 16302 bootcd-i386_3.28_all.deb
 f1abb2443b687d5b660dc7ea5c83901a31cff1d5 16988 bootcd-ia64_3.28_all.deb
 68cd0758001b8124472fb9cda025262604040fc4 19424 bootcd-mkinitramfs_3.28_all.deb
 fe73bfc9f0029d034f76ed27e82fe5f0a4618104 58434 bootcd-backup_3.28_all.deb
Checksums-Sha256: 
 e511b0ba3d2a8b798cef922e78dfd348d73cc594f5a390f8dac5d0385dc09253 770 
bootcd_3.28.dsc
 4a9883da474f97fae3bbaac7cb589078827bdc2f477b8272c9aef3cb91a8398b 116831 
bootcd_3.28.tar.gz
 899e9347be884352d975eafd1e7a7306572c70e0cca8d1982f2b68cad3f342ff 84906 
bootcd_3.28_all.deb
 0482e8f27fe72146d6ef9bfbff6184a9591a0b9b877444096a287c59a27107ff 16302 
bootcd-i386_3.28_all.deb
 06b58096c5011e1ce10b391e87863ed33715eb628cb6709065cc6741f133e4fb 16988 
bootcd-ia64_3.28_all.deb
 cf5b4e919fc6a4cac4bd7b0ef7fa683aea4088e3e3790310e8b8830bb6a15184 19424 
bootcd-mkinitramfs_3.28_all.deb
 842d0cd10a0734528578c17e873b4c4f91603388ca5d379f7c6ffe85245bec8f 58434 
bootcd-backup_3.28_all.deb
Files: 
 a7f96c6f25c21e2f52383ea6522a90c8 770 utils extra bootcd_3.28.dsc
 403d062ee1c0f5abd0f02f51f5ca 116831 utils extra bootcd_3.28.tar.gz
 7c2624482e7b1c79b60f0b3c9199abad 84906 utils extra bootcd_3.28_all.deb
 a0491e9c9ca46e83063043391989beb4 16302 utils extra bootcd-i386_3.28_all.deb
 994a3e33779e453b7b34a4cd6fd36520 16988 utils extra bootcd-ia64_3.28_all.deb
 0adcb0b613e9af913bf2dfb90772925a 19424 utils extra 
bootcd-mkinitramfs_3.28_all.deb
 b32fed44c6126496a85ede9e0350af61 58434 utils extra bootcd-backup_3.28_all.deb

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

iEYEARECAAYFAk/NpXcACgkQINZoglnvXbxryQCgv7IiIFXfMvlaadc1dvCJGqyZ
INUAnRTIOtn1wp5HgjgyssHqmB6GwDOM
=FcB8
-END PGP SIGNATURE-


Accepted:
bootcd-backup_3.28_all.deb
  to main/b/bootcd/bootcd-backup_3.28_all.deb
bootcd-i386_3.28_all.deb
  to main/b/bootcd/bootcd-i386_3.28_all.deb
bootcd-ia64_3.28_all.deb
  to main/b/bootcd/bootcd-ia64_3.28_all.deb
bootcd-mkinitramfs_3.28_all.deb
  to main/b/bootcd/bootcd-mkinitramfs_3.28_all.deb
bootcd_3.28.dsc
  to main/b/bootcd/bootcd_3.28.dsc
bootcd_3.28.tar.gz
  to main/b/bootcd/bootcd_3.28.tar.gz
bootcd_3.28_all.deb
  to main/b/bootcd/bootcd_3.28_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/e1sbnjq-0007o0...@franck.debian.org



Accepted glance 2012.1-2 (source all)

2012-06-05 Thread Ghe Rivero
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 08:29:57 +0200
Source: glance
Binary: python-glance glance-common glance-api glance-registry glance 
python-glance-doc
Architecture: source all
Version: 2012.1-2
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Ghe Rivero ghe.riv...@stackops.com
Description: 
 glance - OpenStack Image Service - metapackage
 glance-api - OpenStack Image Service - API server
 glance-common - OpenStack Image Service - common files
 glance-registry - OpenStack Image Service - registry server
 python-glance - OpenStack Image Service - Python client library
 python-glance-doc - OpenStack Image Service - Python library documentation
Closes: 659277 661895 661945 661965 661982 662872 663061 663987 664133 664274 
664458
Changes: 
 glance (2012.1-2) unstable; urgency=low
 .
   * Debconf templates and debian/control reviewed by the debian-l10n-
 english team as part of the Smith review project. Closes: #659277
   * [Debconf translation updates]
   * Polish (Michał Kułach).  Closes: #661895
   * Danish (Joe Hansen).  Closes: #661945
   * Swedish (Martin Bagge / brother).  Closes: #661965
   * Russian (Yuri Kozlov).  Closes: #661982
   * German (Chris Leick).  Closes: #662872
   * French (Julien Patriarca).  Closes: #663061
   * Dutch; (Jeroen Schot).  Closes: #663987
   * Italian (Beatrice Torracca).  Closes: #664133
   * Portuguese (Pedro Ribeiro).  Closes: #664274
   * Czech (Michal Simunek).  Closes: #664458
Checksums-Sha1: 
 f14a6e892c96e87df0b58c5c49dbd07922cde070 1949 glance_2012.1-2.dsc
 fa688d74c46e255b34c07eb3864dad25f9556469 17280 glance_2012.1-2.debian.tar.gz
 6afa3623c2d22ac10ad4e0ada07244190d612296 231624 python-glance_2012.1-2_all.deb
 2f2972fccc0a177f4c04337a5207fefbf6eb13c2 25382 glance-common_2012.1-2_all.deb
 b45537fbc8e00a512821c95d9771cf4077def0c7 24392 glance-api_2012.1-2_all.deb
 7e3e918918a06d51357f8ee987d050b591e6bb57 9756 glance-registry_2012.1-2_all.deb
 3d3265dda95ea838092e97ba57d8c461b02d85b6 4046 glance_2012.1-2_all.deb
 53d52461f6de3cde7cbefe4db22e12ef3ba3868a 135958 
python-glance-doc_2012.1-2_all.deb
Checksums-Sha256: 
 3669557b824d7e9dc5dba440be5ef0811ca93e11ab64d5ca345a3e61a38640fa 1949 
glance_2012.1-2.dsc
 56e1773dc19ff53285a38ce98fcbc73fe7156212942be2a4fa1f18c18d170286 17280 
glance_2012.1-2.debian.tar.gz
 7fac6005f9baf7eab8a8ee40cbab49c4c67697f51744b7d3d5a7ee96859f555a 231624 
python-glance_2012.1-2_all.deb
 9a4f3dcf5246e20cb7e877aaab497ef6f45a2229eb9a47c405e298cf038ae418 25382 
glance-common_2012.1-2_all.deb
 29e424713f5b9dce0ea7f494dc02572ec309d1f7fef164d6b73dd5aa823b 24392 
glance-api_2012.1-2_all.deb
 0930a72fde5a6270b07de543c5a9f4e6c85a8026e6769169acaa394d17ffb113 9756 
glance-registry_2012.1-2_all.deb
 2fcf5f3a42285b77e07b9a3441d88435fb1396e319b023b17f3fe6350aa929f8 4046 
glance_2012.1-2_all.deb
 915cc973dac70a6d2028ac5a9303694a5935812f5bdd13b4a9a9207089c45ab0 135958 
python-glance-doc_2012.1-2_all.deb
Files: 
 ddc99ee01f126b69d572d5fcc7800574 1949 net extra glance_2012.1-2.dsc
 be416146fa3f1e08644ba48277fbd2d6 17280 net extra glance_2012.1-2.debian.tar.gz
 7f7dcb602846b76c32b2948852e3db99 231624 python extra 
python-glance_2012.1-2_all.deb
 429e9d160b080e93e577e04adef0b62b 25382 python extra 
glance-common_2012.1-2_all.deb
 c0f262e9e2f6a940e158eb227dd593ec 24392 python extra glance-api_2012.1-2_all.deb
 acce05dc0e14db1cb54d817675ec9509 9756 python extra 
glance-registry_2012.1-2_all.deb
 4a6ca08f6b40ebc44c618f194007869e 4046 python extra glance_2012.1-2_all.deb
 6d728f346a10b8761eb89ab2b389f1e3 135958 doc extra 
python-glance-doc_2012.1-2_all.deb

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

iEYEARECAAYFAk/NqkEACgkQZttaNibwIPezRQCfT/gFsSza2bqvbQQDTx5ZRALp
kCoAn2rur6+Isdk+NLshNALQrILjLJzb
=BxzH
-END PGP SIGNATURE-


Accepted:
glance-api_2012.1-2_all.deb
  to main/g/glance/glance-api_2012.1-2_all.deb
glance-common_2012.1-2_all.deb
  to main/g/glance/glance-common_2012.1-2_all.deb
glance-registry_2012.1-2_all.deb
  to main/g/glance/glance-registry_2012.1-2_all.deb
glance_2012.1-2.debian.tar.gz
  to main/g/glance/glance_2012.1-2.debian.tar.gz
glance_2012.1-2.dsc
  to main/g/glance/glance_2012.1-2.dsc
glance_2012.1-2_all.deb
  to main/g/glance/glance_2012.1-2_all.deb
python-glance-doc_2012.1-2_all.deb
  to main/g/glance/python-glance-doc_2012.1-2_all.deb
python-glance_2012.1-2_all.deb
  to main/g/glance/python-glance_2012.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/e1sbnyq-0008ei...@franck.debian.org



Accepted projectcenter.app 0.6.0-2 (source amd64)

2012-06-05 Thread Yavor Doganov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 04 Jun 2012 19:47:30 +0300
Source: projectcenter.app
Binary: projectcenter.app
Architecture: source amd64
Version: 0.6.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian GNUstep maintainers 
pkg-gnustep-maintain...@lists.alioth.debian.org
Changed-By: Yavor Doganov ya...@gnu.org
Description: 
 projectcenter.app - IDE for GNUstep Development
Closes: 674920
Changes: 
 projectcenter.app (0.6.0-2) unstable; urgency=low
 .
   * debian/patches/05_link-libs.dpatch: Rename as...
   * debian/patches/link-libs.patch: ...and remove dpatch header.
   * debian/patches/gui-0.22.patch: New; fixes FTBFS with gnustep-gui/0.22
 (Closes: #674920).
   * debian/patches/00list: Rename as...
   * debian/patches/series: ...and update.
   * debian/source/format: Switch to 3.0 (quilt).
   * debian/README.source: Delete; redundant.
   * debian/control (Build-Depends): Remove dpatch.  Add dpkg-dev (=
 1.16.1~), for hardening support.
 (Recommends): Add gdb.
 (Vcs-Arch): Replace with...
 (Vcs-Git): Since the package is now maintained with Git.
 (Vcs-Browser): New field.
 (Standards-Version): Bump to 3.9.3; no changes needed.
   * debian/rules: Don't include /usr/share/dpatch/dpatch.make.  Remove
 patch/unpatch dependencies.  Enable hardening.
 (binary-arch): Remove GS_USE_FHS conditional.
   * debian/preinst: Delete; no longer needed.
Checksums-Sha1: 
 35ee9d92b30787fb604bc6565372af1df270895d 2128 projectcenter.app_0.6.0-2.dsc
 0ebbc5e7614ff7c68071ee368f9d1de96977e7d2 7569 
projectcenter.app_0.6.0-2.debian.tar.gz
 f1b0a6aef7ff61b050667a9f72e6f7262f322247 779640 
projectcenter.app_0.6.0-2_amd64.deb
Checksums-Sha256: 
 69d3403dde3888943d040a0496e317963c167603b3f56ee6ad6c4dc9615ad668 2128 
projectcenter.app_0.6.0-2.dsc
 39a55e60e6f25699950a44e9484622b8e6b23e02c3501ecefda20182e27910f7 7569 
projectcenter.app_0.6.0-2.debian.tar.gz
 ac462a4f0e2a5229ee41075161877f8166fc263f2ef8d88bd99e933e896a812d 779640 
projectcenter.app_0.6.0-2_amd64.deb
Files: 
 cb6ec237799b2266602cc16a69d0e2bd 2128 gnustep optional 
projectcenter.app_0.6.0-2.dsc
 41768bd53816d458a2a06fbbf6e572ca 7569 gnustep optional 
projectcenter.app_0.6.0-2.debian.tar.gz
 4d252c3ebddb56fd0b5199b25584 779640 gnustep optional 
projectcenter.app_0.6.0-2_amd64.deb

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

iQIcBAEBCAAGBQJPzag3AAoJEDNV9NY7WCHM6SsQAIr7XwJA1V+IaNfLGczaIgQf
sV1+pf9hNvacWO9J3XNjTzPIyEn7Wlbat3zqgEhk5Pz47HuPzlKe8P4eGeW9J2Q7
vkxsNizs1304s22X1kLnz4sOSydZ8bdbmbLHk+rrwZhQIAX4q2CLPck6Ae9LKd38
fARNuoz4d2098ltKLpl7qCNYzP13fbfKZ9UzrXxSUVLuznKMYyBVztiOfVCsKzsr
mN1JaUV1Co9cTnmgzpcDlvRsWAxNv3uhS7cqXOzV5AlPT5rue/k99N0zezQbNhAl
3pDXLtn4GgdJ+SKK078OkRk5lfso4u4naS+23AshGqG/VUsZyDggeQ9Xt0ebd/i4
vZ+0MYY32qOm3IRtWMF+5bYZ/MLDm2J2MBDBOnrJc0Rhc6Xna7aLArrYcakIh591
qSq9dfwC0qIcbfri2yaKnxqgpohn20i2YFby9OAQq5DaU/S5G8akF0JMKhLvfWd6
6bE7cCx6VjIek4fFbuZ7JnSjbRKwPPXSgOM01ChIEAYg5cw9101F3o4oO/23tfFJ
Enx1WkRH5OflrVfKNVkx/dn2rPHvKDG5YI91QtX7+z7GqlOXkzZgSub+Gxlt34eL
eBlt2Ms07/wCkmYmzVfSKPZ51dy8JblIFg9jrW39YMrioMimg4pIuYt7J+D6obkr
n+JSlqm69k//4R6PRTSb
=XeFg
-END PGP SIGNATURE-


Accepted:
projectcenter.app_0.6.0-2.debian.tar.gz
  to main/p/projectcenter.app/projectcenter.app_0.6.0-2.debian.tar.gz
projectcenter.app_0.6.0-2.dsc
  to main/p/projectcenter.app/projectcenter.app_0.6.0-2.dsc
projectcenter.app_0.6.0-2_amd64.deb
  to main/p/projectcenter.app/projectcenter.app_0.6.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/e1sbnzz-0008it...@franck.debian.org



Accepted blas 1.2.20110419-3 (source all amd64)

2012-06-05 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 02 Jun 2012 17:32:35 +0200
Source: blas
Binary: libblas3 libblas3gf libblas-dev libblas-test libblas-doc
Architecture: source all amd64
Version: 1.2.20110419-3
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 libblas-dev - Basic Linear Algebra Subroutines 3, static library
 libblas-doc - Basic Linear Algebra Subroutines 3, documentation
 libblas-test - Basic Linear Algebra Subroutines 3, testing programs
 libblas3   - Basic Linear Algebra Reference implementations, shared library
 libblas3gf - Transitional package for libblas
Changes: 
 blas (1.2.20110419-3) unstable; urgency=low
 .
   * Upload in unstable
Checksums-Sha1: 
 350408ec7886c9f5ffadb65bb7ca6571999c1b22 1542 blas_1.2.20110419-3.dsc
 26b8f7e1fad8561db095f23c0547ce258f3fbbc7 345927 
blas_1.2.20110419-3.debian.tar.gz
 28cbf0328b684282d1fd254b09969bdb4e7a7995 395472 
libblas-doc_1.2.20110419-3_all.deb
 f661fca4d5687d237aedcfa08fa522fda030d274 293144 
libblas3_1.2.20110419-3_amd64.deb
 5e8283f8c284b03083463e96ae4c7a7ad3a8050e 7804 
libblas3gf_1.2.20110419-3_amd64.deb
 7c788c0182d9a7e2902b2b9fe46c2086ebbb43b7 312342 
libblas-dev_1.2.20110419-3_amd64.deb
 2b6b106485de8f32dcb63b11058cd6f336a26d4f 683328 
libblas-test_1.2.20110419-3_amd64.deb
Checksums-Sha256: 
 6ef32d487c924f20edefedd9cca103308e1d3e583b36ef2315558ce00326ac94 1542 
blas_1.2.20110419-3.dsc
 ac8a48ea0f67ce45f8d27bec8b81553e868c6029e446e785b2801b7d5e2b2f6e 345927 
blas_1.2.20110419-3.debian.tar.gz
 525ef6bcfc5c12da7a99e710af3b4e3d1d2f0c3e17a9dab2f2cee98cc479923f 395472 
libblas-doc_1.2.20110419-3_all.deb
 a97c1c7e050db6c672b2487b09d9724ff5ace296a87d84410b42c767a7f70f4f 293144 
libblas3_1.2.20110419-3_amd64.deb
 6b508adebcaf94b4c4c10e74adcae843ce75b9559e55a7a6331c84653a0cdbea 7804 
libblas3gf_1.2.20110419-3_amd64.deb
 52949c1d26d8352201893b8d15c4154c9a9b1549a3b32530a5c4c1fd58184c2e 312342 
libblas-dev_1.2.20110419-3_amd64.deb
 bf3b4c3dc12093b43c418b18db3f07a033ec7d955eacdfb1fe87766c57ed29b0 683328 
libblas-test_1.2.20110419-3_amd64.deb
Files: 
 429deebb5dcaff9d6a207b141205ac40 1542 libs optional blas_1.2.20110419-3.dsc
 e67349b8794a40669549c6bdc51f2783 345927 libs optional 
blas_1.2.20110419-3.debian.tar.gz
 bf3c61d7f2a80cb17d4f1fd6e4cd4dea 395472 doc optional 
libblas-doc_1.2.20110419-3_all.deb
 50851d31d7e5f2efc3a46a6c37bb7d18 293144 libs optional 
libblas3_1.2.20110419-3_amd64.deb
 6593c80d504e48f5d1205cc1ee3321df 7804 libs optional 
libblas3gf_1.2.20110419-3_amd64.deb
 2b30cc5fc0baeaa0ac9438d3704f4701 312342 libdevel optional 
libblas-dev_1.2.20110419-3_amd64.deb
 fc1f5e3562623b7391f97c5ab301649f 683328 libs optional 
libblas-test_1.2.20110419-3_amd64.deb

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

iEYEARECAAYFAk/NnTwACgkQiOXXM92JlhAjowCfcpL6jD4eJLtERaK+9UlFdowG
cuoAn1EvohD7ealbTVegXX9+Vn0/LbpF
=oMLb
-END PGP SIGNATURE-


Accepted:
blas_1.2.20110419-3.debian.tar.gz
  to main/b/blas/blas_1.2.20110419-3.debian.tar.gz
blas_1.2.20110419-3.dsc
  to main/b/blas/blas_1.2.20110419-3.dsc
libblas-dev_1.2.20110419-3_amd64.deb
  to main/b/blas/libblas-dev_1.2.20110419-3_amd64.deb
libblas-doc_1.2.20110419-3_all.deb
  to main/b/blas/libblas-doc_1.2.20110419-3_all.deb
libblas-test_1.2.20110419-3_amd64.deb
  to main/b/blas/libblas-test_1.2.20110419-3_amd64.deb
libblas3_1.2.20110419-3_amd64.deb
  to main/b/blas/libblas3_1.2.20110419-3_amd64.deb
libblas3gf_1.2.20110419-3_amd64.deb
  to main/b/blas/libblas3gf_1.2.20110419-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/e1sbo1d-0001jz...@franck.debian.org



Accepted gst-plugins-bad0.10 0.10.23-6 (source all amd64)

2012-06-05 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 08:49:55 +0200
Source: gst-plugins-bad0.10
Binary: gstreamer0.10-plugins-bad-doc gstreamer0.10-plugins-bad 
gstreamer0.10-plugins-bad-dbg libgstreamer-plugins-bad0.10-0 
libgstreamer-plugins-bad0.10-dev
Architecture: source all amd64
Version: 0.10.23-6
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-plugins-bad - GStreamer plugins from the bad set
 gstreamer0.10-plugins-bad-dbg - GStreamer plugins from the bad set (debug 
symbols)
 gstreamer0.10-plugins-bad-doc - GStreamer documentation for plugins from the 
bad set
 libgstreamer-plugins-bad0.10-0 - GStreamer development files for libraries 
from the bad set
 libgstreamer-plugins-bad0.10-dev - GStreamer development files for libraries 
from the bad set
Closes: 675973
Changes: 
 gst-plugins-bad0.10 (0.10.23-6) unstable; urgency=low
 .
   * debian/rules,
 debian/gstreamer-plugins-bad.install:
 + Build the cdaudio plugin on kfreebsd too (Closes: #675973).
Checksums-Sha1: 
 6ac6c04ee99f1ebfcd9ff7b3c1ab86a570faa40f 3269 gst-plugins-bad0.10_0.10.23-6.dsc
 1a471d12e7e5d55aa1e5afecd601b244401be317 22200 
gst-plugins-bad0.10_0.10.23-6.debian.tar.gz
 ea491f7a82f730cb3d22aaff144e1591f2a56f3b 938810 
gstreamer0.10-plugins-bad-doc_0.10.23-6_all.deb
 1bc8e6ab0d8d983923815d9082ac5720e69cdc8a 2638724 
gstreamer0.10-plugins-bad_0.10.23-6_amd64.deb
 8ec20e4f1d207f895482f994793c4dbdc31c4494 7534500 
gstreamer0.10-plugins-bad-dbg_0.10.23-6_amd64.deb
 11a0f464a4fa1c9609d4099ea0eabb8eeb00fe3b 792484 
libgstreamer-plugins-bad0.10-0_0.10.23-6_amd64.deb
 33af776ccc9edd454a6dd33f73c9698bf1cd488e 832534 
libgstreamer-plugins-bad0.10-dev_0.10.23-6_amd64.deb
Checksums-Sha256: 
 3ae996ef71d449e55a92a3210bf87fcda529cb26a50932e7b53452d176f640cd 3269 
gst-plugins-bad0.10_0.10.23-6.dsc
 51e79c9adf1df4d8eb2a4e860de41942d3b9523521d164e6cb452456565bf51a 22200 
gst-plugins-bad0.10_0.10.23-6.debian.tar.gz
 2b19aefc5b33f29b251ad5603d8fa827055a3782a4c9ce1c16321393ec98afa4 938810 
gstreamer0.10-plugins-bad-doc_0.10.23-6_all.deb
 b11c85345313c9d3ce2b12bcd704399a58c40b54369b02e034b70795f071e93f 2638724 
gstreamer0.10-plugins-bad_0.10.23-6_amd64.deb
 f46fc31d8092f43fefc3466239ab1e2c437904cba6e26bad3b1fcc96ee425bca 7534500 
gstreamer0.10-plugins-bad-dbg_0.10.23-6_amd64.deb
 99c201f1b4c500026ec7ed567d51741bb0d5ab57cef318b5cfb050096c6e2147 792484 
libgstreamer-plugins-bad0.10-0_0.10.23-6_amd64.deb
 2d677c8bf88393a0a388871578e4d488a85678511288773c57c44b914f324902 832534 
libgstreamer-plugins-bad0.10-dev_0.10.23-6_amd64.deb
Files: 
 99de9afb3cbbc8338ff6f7313d3004a7 3269 libs extra 
gst-plugins-bad0.10_0.10.23-6.dsc
 ba5bc38592297fcd7f27104f739e3b53 22200 libs extra 
gst-plugins-bad0.10_0.10.23-6.debian.tar.gz
 016a3f4ac125376b0c19be6d1793aa85 938810 doc extra 
gstreamer0.10-plugins-bad-doc_0.10.23-6_all.deb
 d34e24a65993218a918bc12dd91398f2 2638724 libs extra 
gstreamer0.10-plugins-bad_0.10.23-6_amd64.deb
 d34cdc46a8aaa51405df5d2882e435b1 7534500 debug extra 
gstreamer0.10-plugins-bad-dbg_0.10.23-6_amd64.deb
 0e2dea9fe7321327f4a9e5f4a924fea5 792484 libs extra 
libgstreamer-plugins-bad0.10-0_0.10.23-6_amd64.deb
 83f8fa8bce1daa9f5f897b1808da0890 832534 libdevel extra 
libgstreamer-plugins-bad0.10-dev_0.10.23-6_amd64.deb

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

iEYEARECAAYFAk/NrcYACgkQBsBdh1vkHyEZNwCdE2EdhhyhhTW0B98e0Jv8VhGL
rmIAn3oZAlOv3ZHqMYL40M+G1A3ojNay
=op3c
-END PGP SIGNATURE-


Accepted:
gst-plugins-bad0.10_0.10.23-6.debian.tar.gz
  to main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.23-6.debian.tar.gz
gst-plugins-bad0.10_0.10.23-6.dsc
  to main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.23-6.dsc
gstreamer0.10-plugins-bad-dbg_0.10.23-6_amd64.deb
  to 
main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad-dbg_0.10.23-6_amd64.deb
gstreamer0.10-plugins-bad-doc_0.10.23-6_all.deb
  to main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad-doc_0.10.23-6_all.deb
gstreamer0.10-plugins-bad_0.10.23-6_amd64.deb
  to main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad_0.10.23-6_amd64.deb
libgstreamer-plugins-bad0.10-0_0.10.23-6_amd64.deb
  to 
main/g/gst-plugins-bad0.10/libgstreamer-plugins-bad0.10-0_0.10.23-6_amd64.deb
libgstreamer-plugins-bad0.10-dev_0.10.23-6_amd64.deb
  to 
main/g/gst-plugins-bad0.10/libgstreamer-plugins-bad0.10-dev_0.10.23-6_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/e1sbo1q-0001kr...@franck.debian.org



Accepted libcorona-perl 0.1004-3 (source amd64)

2012-06-05 Thread Dmitry E. Oboukhov
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Tue, 05 Jun 2012 10:59:40 +0400
Source: libcorona-perl
Binary: libcorona-perl
Architecture: source amd64
Version: 0.1004-3
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov un...@debian.org
Changed-By: Dmitry E. Oboukhov un...@debian.org
Description: 
 libcorona-perl - Coro based PSGI web server
Closes: 676049
Changes: 
 libcorona-perl (0.1004-3) unstable; urgency=low
 .
   * FTBFS (closes: #676049): add libnet-server-perl into B-D list.
Checksums-Sha1: 
 3c61fb0590e2ea5931fbd1a28bc47cb35300a501 1263 libcorona-perl_0.1004-3.dsc
 2aeb104b89881f00d1a81d9deddba5a80b418261 2160 
libcorona-perl_0.1004-3.debian.tar.gz
 60cbe9e7d57fdf0f1a1ed19dbf82f21e30f31055 12036 
libcorona-perl_0.1004-3_amd64.deb
Checksums-Sha256: 
 e8803955e8c25cd9c9b21308ba7daacdb90b5e48c54c9ce024767cdf0c917c5f 1263 
libcorona-perl_0.1004-3.dsc
 937e84072977fdc9dff2ba8394c962dd29aa7be81e3590d94ea33e2db3f4af47 2160 
libcorona-perl_0.1004-3.debian.tar.gz
 e11221ac8f360d9ff71ae9b1535495d5bf9b917ee2c0d8e333c717709dc7d87c 12036 
libcorona-perl_0.1004-3_amd64.deb
Files: 
 41bb9a7947973cb2d0c7425da4aeab69 1263 perl extra libcorona-perl_0.1004-3.dsc
 424ea7f24edf2b38555b4c9de46dcc2f 2160 perl extra 
libcorona-perl_0.1004-3.debian.tar.gz
 e69dadf3449a42c024982ceb00872272 12036 perl extra 
libcorona-perl_0.1004-3_amd64.deb

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

iEYEAREDAAYFAk/Nr3UACgkQq4wAz/jiZTcZEQCgjrAp5/GP7L0szAyE9YaIxPYk
0S8AoOLgNEPME4As5Sm2Rna7Xve36DMY
=OwcH
-END PGP SIGNATURE-


Accepted:
libcorona-perl_0.1004-3.debian.tar.gz
  to main/libc/libcorona-perl/libcorona-perl_0.1004-3.debian.tar.gz
libcorona-perl_0.1004-3.dsc
  to main/libc/libcorona-perl/libcorona-perl_0.1004-3.dsc
libcorona-perl_0.1004-3_amd64.deb
  to main/libc/libcorona-perl/libcorona-perl_0.1004-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/e1sbo23-0001ld...@franck.debian.org



Accepted openblas 0.1.1-3 (source amd64)

2012-06-05 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 02 Jun 2012 17:33:58 +0200
Source: openblas
Binary: libopenblas-base libopenblas-dev
Architecture: source amd64
Version: 0.1.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 libopenblas-base - Optimized BLAS (linear algebra) library based on GotoBLAS2
 libopenblas-dev - Optimized BLAS (linear algebra) library based on GotoBLAS2
Changes: 
 openblas (0.1.1-3) unstable; urgency=low
 .
   * Upload in unstable
Checksums-Sha1: 
 22669a09f3a2cb4117364c697a2dd904a8b4eb95 1478 openblas_0.1.1-3.dsc
 623fa592415daa252bcfc212cd612a5a65ee6839 8570 openblas_0.1.1-3.debian.tar.gz
 52f0cbb17fe34c826b931086c4939a057196bdf7 3431668 
libopenblas-base_0.1.1-3_amd64.deb
 ed9038b343aa4087a29660f946dea1d1708771cc 3960436 
libopenblas-dev_0.1.1-3_amd64.deb
Checksums-Sha256: 
 b5e63c52e116bd26ea9c2e7021c3c46d3afa9a155f35c01173dad34eefff450b 1478 
openblas_0.1.1-3.dsc
 164599943761dbd021b8ef25de7a774f3336969a946269031c454b21e11b5a38 8570 
openblas_0.1.1-3.debian.tar.gz
 e06766007edae0dbfd3a6d2fb227855b9d47c58a03a2335e219ba9b8bcda0028 3431668 
libopenblas-base_0.1.1-3_amd64.deb
 cabbadb74c511df72efc02242d48407211def72db0e42a5cc58b6c3f76e048c3 3960436 
libopenblas-dev_0.1.1-3_amd64.deb
Files: 
 f9465fcb53ef00ac687295b7b68a203b 1478 devel optional openblas_0.1.1-3.dsc
 e57004f36a42346691ce3412018d7f2a 8570 devel optional 
openblas_0.1.1-3.debian.tar.gz
 0ff90ca95591641be1a66771352edd64 3431668 libs optional 
libopenblas-base_0.1.1-3_amd64.deb
 0a6143fc156130be6051035ff655e6c8 3960436 libdevel optional 
libopenblas-dev_0.1.1-3_amd64.deb

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

iEYEARECAAYFAk/NnUsACgkQiOXXM92JlhCW0gCfdwhfgUWaVy8swLCh05mSc3Ri
ujYAoNp8NvPOzbdtvBbmKn4QfUNvtJ2B
=KFWV
-END PGP SIGNATURE-


Accepted:
libopenblas-base_0.1.1-3_amd64.deb
  to main/o/openblas/libopenblas-base_0.1.1-3_amd64.deb
libopenblas-dev_0.1.1-3_amd64.deb
  to main/o/openblas/libopenblas-dev_0.1.1-3_amd64.deb
openblas_0.1.1-3.debian.tar.gz
  to main/o/openblas/openblas_0.1.1-3.debian.tar.gz
openblas_0.1.1-3.dsc
  to main/o/openblas/openblas_0.1.1-3.dsc


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



Accepted zeromq3 3.1.0~beta+dfsg-2 (source amd64)

2012-06-05 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 09:29:58 +0200
Source: zeromq3
Binary: libzmq3 libzmq3-dev libzmq3-dbg
Architecture: source amd64
Version: 3.1.0~beta+dfsg-2
Distribution: experimental
Urgency: low
Maintainer: Alessandro Ghedini gh...@debian.org
Changed-By: Alessandro Ghedini gh...@debian.org
Description: 
 libzmq3- lightweight messaging kernel (shared library)
 libzmq3-dbg - lightweight messaging kernel (debugging symbols)
 libzmq3-dev - lightweight messaging kernel (development files)
Closes: 676160
Changes: 
 zeromq3 (3.1.0~beta+dfsg-2) experimental; urgency=low
 .
   * libzmq3-dev Conflicts with libzmq-dev (Closes: #676160)
Checksums-Sha1: 
 22fc27aaa1980679a0a75bad382f7795b5dfda2c 2012 zeromq3_3.1.0~beta+dfsg-2.dsc
 832368e6cdcb7a7dd5586264f6eb3d4edb150e13 4292 
zeromq3_3.1.0~beta+dfsg-2.debian.tar.gz
 93e4ef6bfc0fe541ba71a84f2e7efc9a4edfd113 249310 
libzmq3_3.1.0~beta+dfsg-2_amd64.deb
 d24d7941c34905ef3b80eefc61d6f28403f08f6f 372900 
libzmq3-dev_3.1.0~beta+dfsg-2_amd64.deb
 7e4c9ac3f0bbf9ca991c7d0e12dc8885e0bb54fc 791984 
libzmq3-dbg_3.1.0~beta+dfsg-2_amd64.deb
Checksums-Sha256: 
 5b6a8cba6ac1d92df3b5ee8d64ccc6b030bf7c00fa6b29c753f2092ee80dd094 2012 
zeromq3_3.1.0~beta+dfsg-2.dsc
 728afa9a220304eda393e2f9cb745bdd13be960a60db60e29389bc946bd7c346 4292 
zeromq3_3.1.0~beta+dfsg-2.debian.tar.gz
 405bef74a9c031184ef2d541ba9e6d201cbbb0e5aed148d29bc5682f49cd1857 249310 
libzmq3_3.1.0~beta+dfsg-2_amd64.deb
 b857588dd85b42cfbf91f3d15929104eeec6d199203f4a532045b77097651079 372900 
libzmq3-dev_3.1.0~beta+dfsg-2_amd64.deb
 4727ee166e5031053b8e23609f1cefc34c53c8fd213359044d06f464e2f56dc1 791984 
libzmq3-dbg_3.1.0~beta+dfsg-2_amd64.deb
Files: 
 98b3b297b772775a11cfa80202ed0b62 2012 libs optional 
zeromq3_3.1.0~beta+dfsg-2.dsc
 6c5fd3093cd124a8378bff13f5693be5 4292 libs optional 
zeromq3_3.1.0~beta+dfsg-2.debian.tar.gz
 bdefecb8af802a2bb25b5ae780ea1f9f 249310 libs optional 
libzmq3_3.1.0~beta+dfsg-2_amd64.deb
 b001abc583dd62f757b06a68ebadb8be 372900 libdevel optional 
libzmq3-dev_3.1.0~beta+dfsg-2_amd64.deb
 e0e10b9262a9661e28c4caaaef0f2be8 791984 debug extra 
libzmq3-dbg_3.1.0~beta+dfsg-2_amd64.deb

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

iQIbBAEBAgAGBQJPzbbIAAoJEK+lG9bN5XPLU/gP91FTQBFMeTsF1EwNdT7CyyRt
RlSnlu+bogodC1R7R5Zrcc/fMXgnE9jKEauP1FdG2xqlfS4JeHdwriJ+acvO0dkH
IJ3O+ZnCqSiF7iGl0k/fD3OOnpMV+5tFSPC4acZalH91uWH+AKl8zwVCGK3lmn1B
FA4XPJXOUhW+kNPuFQer4YZDxBmITq/2tx5kW1nxJDayur123Wc+D5/Oh4RhMgJf
mEpbeLgu/J7DPVM9yylrYfK7uKEf7L8z2Y0uJk7v9qL3isej739gyOMO/IedQQyt
O6t3K9/Igq0i3NWxYI/gDH8mkbv8jw0NlWuBVIIJXyxVsleDDs6X8LYKGtGhH/8a
8N4TGA+CDYkPmfvaEcGhjmSybhSAvtK+v/XU+TZB8ew0Z5Po6iouwkjoZ4llDbpb
hmVitQ5KS8P555/eLmHoUJ1fcvmi+krvvDgrdax0M3VtlhkVEnUChmuwntQPmXQO
/QbPFTGkqXzPsiPqTgW4loOPLUId0cKWKkCawtIRKkGqaPGRlQrpogQ9tn6GBxTi
ObqD2LnL+KjK1n5St0DwEPAm90voB7258UOycgl90b/0/TbBNeMeD+XurFnvmfCF
v4SdUmrRtkY+e2kDcTPMhWeuZUoADuMMnb1XiNC9nGV0lR05tCOtnA5ZV2pSH0b0
AkMLuwoPWt1PJqCa1aY=
=3U+A
-END PGP SIGNATURE-


Accepted:
libzmq3-dbg_3.1.0~beta+dfsg-2_amd64.deb
  to main/z/zeromq3/libzmq3-dbg_3.1.0~beta+dfsg-2_amd64.deb
libzmq3-dev_3.1.0~beta+dfsg-2_amd64.deb
  to main/z/zeromq3/libzmq3-dev_3.1.0~beta+dfsg-2_amd64.deb
libzmq3_3.1.0~beta+dfsg-2_amd64.deb
  to main/z/zeromq3/libzmq3_3.1.0~beta+dfsg-2_amd64.deb
zeromq3_3.1.0~beta+dfsg-2.debian.tar.gz
  to main/z/zeromq3/zeromq3_3.1.0~beta+dfsg-2.debian.tar.gz
zeromq3_3.1.0~beta+dfsg-2.dsc
  to main/z/zeromq3/zeromq3_3.1.0~beta+dfsg-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/e1sbow8-0004sp...@franck.debian.org



Accepted camlp5 6.06-1 (source amd64)

2012-06-05 Thread Stéphane Glondu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 05 Jun 2012 10:15:02 +0200
Source: camlp5
Binary: camlp5
Architecture: source amd64
Version: 6.06-1
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Stéphane Glondu glo...@debian.org
Description: 
 camlp5 - Pre Processor Pretty Printer for OCaml - classical version
Changes: 
 camlp5 (6.06-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 58389994ca19068091dee80764d315cd8a3304e4 2046 camlp5_6.06-1.dsc
 d3d56748de424afc3f878e650254b9d3e5fae6c2 681614 camlp5_6.06.orig.tar.gz
 4eecacbe6a13efc82d1a9cd75e6ac5635d602793 7774 camlp5_6.06-1.debian.tar.gz
 30452dcca48f6d99832b4a6f33724138ddcfeb29 4354020 camlp5_6.06-1_amd64.deb
Checksums-Sha256: 
 ada437fab97403ee8cbfffc2b2de768d6a9cf2ba6e962edecf681ffeee1c37b1 2046 
camlp5_6.06-1.dsc
 763f89ee6cde4ca063a50708c3fe252d55ea9f8037e3ae9801690411ea6180c5 681614 
camlp5_6.06.orig.tar.gz
 c8415f1820d380b730581e81fe826203542c0bf86011c9e9e0963fb30396ba8a 7774 
camlp5_6.06-1.debian.tar.gz
 d4dbf74639bdf1e9a2f8223015d6827245fad43b67d7c7540677ed4d27ed7cfb 4354020 
camlp5_6.06-1_amd64.deb
Files: 
 20a17be2e116d2c30b9a3a12e1e92925 2046 ocaml extra camlp5_6.06-1.dsc
 8de69094d73d24768844a5017a2bd04b 681614 ocaml extra camlp5_6.06.orig.tar.gz
 1c1c7bdf90cd60bf430c2d66b84e2a84 7774 ocaml extra camlp5_6.06-1.debian.tar.gz
 051692fd38e2bbf840b35c7795b41258 4354020 ocaml extra camlp5_6.06-1_amd64.deb

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

iQIcBAEBCgAGBQJPzcmLAAoJEHhT2k1JiBrTyg4P/A5i0L2bLeufTAEij72weufX
D1QW6wegUBkXh8tJvLMjoNAXcneGHuhDfqKiI2RkucEN6QDBk5Ze/gxZZATx4HE6
fnlN52pU4aYBERhMVwPpIWmDLAmgzgoJqr08Wytnz0g86VBOf1u1NxEjscAwdoHz
bkJzgCtQ9U8nfCgSqxI4BeUydtuceJuBdX97aT3yI7tK1n7i0Vw8BQDbBUTkCJgF
KyQSelS877tjX6mAiDyVS6XbBnGWIl2ti1MowxFQloiQwVcV4kex71RFL/5T83+d
W0HZbI/mY7siZj7s4veTqYObo+FCrusioqifGjbXaE/urpmWWIF2J5KO1gfHpKMd
ZwN7UwHF9ckRaKWv1IIQl3IdqldBgp2PPiGlx6Js9G6wb6y2KPABfpIt7OhiiOF+
s9natcDU8OSOjgZxnHnXBWcHZ3DGv38erQRNP8YT74HGb9fg32ARFqi5bqaGfXYU
T70t1Kb5dDQAY3v8sq3CqQT4Hq4c8gu4ARxxgtGE6Ie5ZAU8TZj0KtSgE1iFO2A3
lRUGblE9pyjCwbM+PMue/wR6kSXM4abYcoAnQGL+vW/8tst5JK2khMHed8CWCQFX
Dn5oxZ43zgfa7DxX+g0d3Fh6iDe9Dac3yt8zHUHLSNOYCiq/p/HDxni5xj4ObNWl
3afJYBKteDeUBO7MsufO
=2PDe
-END PGP SIGNATURE-


Accepted:
camlp5_6.06-1.debian.tar.gz
  to main/c/camlp5/camlp5_6.06-1.debian.tar.gz
camlp5_6.06-1.dsc
  to main/c/camlp5/camlp5_6.06-1.dsc
camlp5_6.06-1_amd64.deb
  to main/c/camlp5/camlp5_6.06-1_amd64.deb
camlp5_6.06.orig.tar.gz
  to main/c/camlp5/camlp5_6.06.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/e1sbpge-0007p8...@franck.debian.org



Accepted haskell-bindings-libzip 0.10-2 (source all amd64)

2012-06-05 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 10:13:49 +0200
Source: haskell-bindings-libzip
Binary: libghc-bindings-libzip-dev libghc-bindings-libzip-prof 
libghc-bindings-libzip-doc
Architecture: source all amd64
Version: 0.10-2
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-bindings-libzip-dev - low-level Haskell bindings to libzip
 libghc-bindings-libzip-doc - low-level Haskell bindings to libzip; 
documentation
 libghc-bindings-libzip-prof - low-level Haskell bindings to libzip; profiling 
libraries
Closes: 676053
Changes: 
 haskell-bindings-libzip (0.10-2) unstable; urgency=low
 .
   * Extend libzip dependency (Closes: #676053)
Checksums-Sha1: 
 0fb36d83186b68b3b8fdcb1084c546aa169fe45f 1748 
haskell-bindings-libzip_0.10-2.dsc
 6ac23483d6e0ba99450ee1108656588209152ef1 2572 
haskell-bindings-libzip_0.10-2.debian.tar.gz
 1b304bd403c8f4b4ad43927a28cd38a0b43bb03e 50504 
libghc-bindings-libzip-doc_0.10-2_all.deb
 035dd360eea1749f0fb3a75248b5c8156132b26b 79656 
libghc-bindings-libzip-dev_0.10-2_amd64.deb
 4b39defb448f03b1e67b9a65cb991c2e33a64716 71630 
libghc-bindings-libzip-prof_0.10-2_amd64.deb
Checksums-Sha256: 
 f7c24ba5d3f8d2072f5b1f9af39fc71ef96b2f7ef2b8e9db1e0fcc45ad23881c 1748 
haskell-bindings-libzip_0.10-2.dsc
 9eb8531a232d3d8ba9ab571c8ae05d214e1b1b39d3a382da59d7eee12d391612 2572 
haskell-bindings-libzip_0.10-2.debian.tar.gz
 4efa9e211ee6351639eb48358cb943bfe49b3fb33bf83d8ae69986c092db0023 50504 
libghc-bindings-libzip-doc_0.10-2_all.deb
 2e8e1cd0b7edf84937073eaac1b4b4f9edc72f8a9dc1bad6711089e79939e8fd 79656 
libghc-bindings-libzip-dev_0.10-2_amd64.deb
 1b328042c07678f47e3458e25e72a9504fab33682413a3ce9d13c9307dc25c9c 71630 
libghc-bindings-libzip-prof_0.10-2_amd64.deb
Files: 
 714f45d3534e682acae1475e605840e8 1748 haskell extra 
haskell-bindings-libzip_0.10-2.dsc
 ead968d91f2355e1c42b8d5382f97521 2572 haskell extra 
haskell-bindings-libzip_0.10-2.debian.tar.gz
 a5795a72d1af8f20969f83e581e99eb4 50504 doc extra 
libghc-bindings-libzip-doc_0.10-2_all.deb
 950627ebf2f5d48266a641a83551dd3c 79656 haskell extra 
libghc-bindings-libzip-dev_0.10-2_amd64.deb
 0087aed79581ed0d99412319e3d0830e 71630 haskell extra 
libghc-bindings-libzip-prof_0.10-2_amd64.deb

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

iEYEARECAAYFAk/NwAwACgkQ9ijrk0dDIGz6ogCfbzej3vohWekSC9NkUUD5x/Vy
XTMAoM2z7S2jEeU4mv5NPxntbmiiAjcV
=41Lo
-END PGP SIGNATURE-


Accepted:
haskell-bindings-libzip_0.10-2.debian.tar.gz
  to main/h/haskell-bindings-libzip/haskell-bindings-libzip_0.10-2.debian.tar.gz
haskell-bindings-libzip_0.10-2.dsc
  to main/h/haskell-bindings-libzip/haskell-bindings-libzip_0.10-2.dsc
libghc-bindings-libzip-dev_0.10-2_amd64.deb
  to main/h/haskell-bindings-libzip/libghc-bindings-libzip-dev_0.10-2_amd64.deb
libghc-bindings-libzip-doc_0.10-2_all.deb
  to main/h/haskell-bindings-libzip/libghc-bindings-libzip-doc_0.10-2_all.deb
libghc-bindings-libzip-prof_0.10-2_amd64.deb
  to main/h/haskell-bindings-libzip/libghc-bindings-libzip-prof_0.10-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/e1sbpi0-00087d...@franck.debian.org



Accepted lapack 3.4.1-1 (source all amd64)

2012-06-05 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 02 Jun 2012 17:32:17 +0200
Source: lapack
Binary: liblapack3 liblapack3gf liblapacke liblapacke-dev liblapack-dev 
liblapack-pic liblapack-test liblapack-doc liblapack-doc-man
Architecture: source all amd64
Version: 3.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 liblapack-dev - Library of linear algebra routines 3 - static version
 liblapack-doc - Library of linear algebra routines 3 - documentation
 liblapack-doc-man - Library of linear algebra routines 3 - documentation 
(manual page
 liblapack-pic - Library of linear algebra routines 3 - static PIC version
 liblapack-test - Library of linear algebra routines 3 - testing programs
 liblapack3 - Library of linear algebra routines 3 - shared version
 liblapack3gf - Transitional package for liblapack3
 liblapacke - Library of linear algebra routines 3 - C lib shared version
 liblapacke-dev - Library of linear algebra routines 3 - Headers
Changes: 
 lapack (3.4.1-1) unstable; urgency=low
 .
   * Upload in unstable
Checksums-Sha1: 
 79262e1a5bebb29f204707886ff93459f2746868 1740 lapack_3.4.1-1.dsc
 e7ace2727900c42624d1217aff2e899b78c00bde 15894 lapack_3.4.1-1.debian.tar.gz
 04bdacc6407a9390da76c8ed2195751633621b28 121361634 
liblapack-doc_3.4.1-1_all.deb
 5f80a5e01de0c5014b51261bfb937154a7933cdd 3183408 
liblapack-doc-man_3.4.1-1_all.deb
 642d2434a28ac872e8e40be6e49ac09893467d94 5035278 liblapack3_3.4.1-1_amd64.deb
 fe3ab854146258044a7fc58e5e11e39ad40e4e99 10358 liblapack3gf_3.4.1-1_amd64.deb
 8174a2bed17c28bbaa06f77090e50fc5461bbd2d 9458 liblapacke_3.4.1-1_amd64.deb
 38026ea7372e13a2db76df4164d1733682e3e4fb 74766 liblapacke-dev_3.4.1-1_amd64.deb
 85958b64c3996b0bc7de3bed6def014f06a292b4 5549094 
liblapack-dev_3.4.1-1_amd64.deb
 106e4ddde465b6f23659bbe3fbfd520c6a3878d6 5549110 
liblapack-pic_3.4.1-1_amd64.deb
 ba0da42adae1779d95aca9843170605e5a8886c0 9363696 
liblapack-test_3.4.1-1_amd64.deb
Checksums-Sha256: 
 81557713fd9049330e5d9723e17fb3f6933e8fa898445921514f3fb3dc090463 1740 
lapack_3.4.1-1.dsc
 55a67ea67e6cd483b11e46ec4675568ab64755246fd5f624e501ef0ef3371331 15894 
lapack_3.4.1-1.debian.tar.gz
 7d221d49ce7bf70f92d64ae3d589f76954e95d68a3160acaf83c1da610a23ed4 121361634 
liblapack-doc_3.4.1-1_all.deb
 73f837478e140d667ad7f8555235bf127926f97088727f5a31d56474f5d16eae 3183408 
liblapack-doc-man_3.4.1-1_all.deb
 294bcdf76691952159bd4fc5b9dab826b68711123d8893cce393a0b2b1e3bbd7 5035278 
liblapack3_3.4.1-1_amd64.deb
 a30b75b14b787f9bdbfc902cb903863c7d2ce8c557f9f53f94a10d51d383152f 10358 
liblapack3gf_3.4.1-1_amd64.deb
 b0c014ce395c074df26d97fc43df82a8a569234ad1e6c107ed647e6dc2ae133e 9458 
liblapacke_3.4.1-1_amd64.deb
 6f84af38827b3bc992952f70c442e7ec4f7c3d0a008f3beb0a36f3ec44c7c534 74766 
liblapacke-dev_3.4.1-1_amd64.deb
 2cb055cc76c7aef843f6dbc5959686fc1070255195415c65f4c920ed6b9d160e 5549094 
liblapack-dev_3.4.1-1_amd64.deb
 dee312aa9bb462bcbdf1a148e24946ece2c4c984da2667f98be0bb2bf3bd0734 5549110 
liblapack-pic_3.4.1-1_amd64.deb
 98c42892024693807dcbc75d11e7a6e780b6cadc5b60ece96bf91de521bd887e 9363696 
liblapack-test_3.4.1-1_amd64.deb
Files: 
 48fa509c5b9fb5d2e9edc5ff1a1ab817 1740 libs optional lapack_3.4.1-1.dsc
 e6f0809ecfbf7933df3289d907e9c725 15894 libs optional 
lapack_3.4.1-1.debian.tar.gz
 fce00b44d308d7ad1261ec0e597de44f 121361634 doc optional 
liblapack-doc_3.4.1-1_all.deb
 a51cd5e369c04dbd40b4fc321ad64e8b 3183408 doc optional 
liblapack-doc-man_3.4.1-1_all.deb
 8f03107ff611543ac29d2f8bb81b68dd 5035278 libs optional 
liblapack3_3.4.1-1_amd64.deb
 2915921b676c3fe7f533981f315b67e0 10358 libs optional 
liblapack3gf_3.4.1-1_amd64.deb
 75e153ebf94abde92f0950ad650c234a 9458 libs optional 
liblapacke_3.4.1-1_amd64.deb
 b5a9ef71ebdff643200e1f2298209eeb 74766 libdevel optional 
liblapacke-dev_3.4.1-1_amd64.deb
 20a2c3102e8e03a3a4aab36c3c6ea603 5549094 libdevel optional 
liblapack-dev_3.4.1-1_amd64.deb
 a3f6ba3c81e7a5b7b5677a0c365ca03e 5549110 libdevel optional 
liblapack-pic_3.4.1-1_amd64.deb
 3903b03461e722db733232084e2a09a4 9363696 libdevel optional 
liblapack-test_3.4.1-1_amd64.deb

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

iEYEARECAAYFAk/NnSwACgkQiOXXM92JlhC7SgCeMD7nGH36Qz9g2UdtjpSK8CV1
cJUAoL+hSK289Z4+BcNGipwuEQIosdgz
=zzCX
-END PGP SIGNATURE-


Accepted:
lapack_3.4.1-1.debian.tar.gz
  to main/l/lapack/lapack_3.4.1-1.debian.tar.gz
lapack_3.4.1-1.dsc
  to main/l/lapack/lapack_3.4.1-1.dsc
liblapack-dev_3.4.1-1_amd64.deb
  to main/l/lapack/liblapack-dev_3.4.1-1_amd64.deb
liblapack-doc-man_3.4.1-1_all.deb
  to main/l/lapack/liblapack-doc-man_3.4.1-1_all.deb
liblapack-doc_3.4.1-1_all.deb
  to main/l/lapack/liblapack-doc_3.4.1-1_all.deb
liblapack-pic_3.4.1-1_amd64.deb
  to main/l/lapack/liblapack-pic_3.4.1-1_amd64.deb
liblapack-test_3.4.1-1_amd64.deb
  to main/l/lapack/liblapack-test_3.4.1-1_amd64.deb

Accepted pyppd 0.4.9-7 (source all)

2012-06-05 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Jun 2012 09:52:02 +0200
Source: pyppd
Binary: pyppd
Architecture: source all
Version: 0.4.9-7
Distribution: experimental
Urgency: low
Maintainer: Debian Printing Group debian-print...@lists.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 pyppd  - CUPS PostScript Printer Driver's compressor and generator
Changes: 
 pyppd (0.4.9-7) experimental; urgency=low
 .
   * Add 00git_improve_runtime_error_handling.patch: Improved runtime error
 handling. Patch taken from upstream git head.
   * Add 01_python3_compat.patch: Port code to also work with Python 3. It
 still works with Python2 as well.
   * Switch to Python 3:
 - Add 02_use_python3.patch: Use python3 in the program, template, and
   setup.py.
 - debian/control: Move to python3-all build dependency, and drop
   XS-Python-Version (as this works with all python 3 versions).
 - debian/rules: Build with python3, and override auto_build and
   auto_install command (until debhelper supports autobuilding python3
   modules, see Debian #597105).
 - debian/dh_pyppd: Generate python3 dependency.
Checksums-Sha1: 
 dacb454cd674ba1bcac652189eb0821d50e2caa9 1871 pyppd_0.4.9-7.dsc
 ea53901625ea110ad9582f080dd3b619d619b26a 7520 pyppd_0.4.9-7.debian.tar.gz
 f17993bb48ea2841c5d9f99a56ca3704ec0f7cea 14314 pyppd_0.4.9-7_all.deb
Checksums-Sha256: 
 d531062cd4c42b2a30976bdb8327fe776bc51ee3386b74545bf26e3769c6fdbf 1871 
pyppd_0.4.9-7.dsc
 605667804d86bcf62489351d6c0d32d567cdffbae188c91b06beed02795a28bf 7520 
pyppd_0.4.9-7.debian.tar.gz
 7187e49178c70780824a8b5e25d2082a777272ab14d615454408509ddeaabb50 14314 
pyppd_0.4.9-7_all.deb
Files: 
 074e40eee8771dbd5a4beab6d7e729ef 1871 python extra pyppd_0.4.9-7.dsc
 7edd7bbb240f80bd7a85c8718a05435e 7520 python extra pyppd_0.4.9-7.debian.tar.gz
 6dd8ac2d1bdbb5a4ef3e51b426f90b90 14314 python extra pyppd_0.4.9-7_all.deb

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

iQIcBAEBCAAGBQJPzbr1AAoJEPmIJawmtHuf2CcP/jKdYYN+L86ehR14HDrlPv6L
k7qdEir12dMvjhR/5IcaF2joXqdEuKW/u2oh7j0aI23Aor8pcJhA4scfxag6x9fl
nviNXxy1wQSqvAY6rCa5PJ7yLrz2vJSH9mvDfawllPpGYxvzxDM6w0mEfbUAaYno
XDIknsb2OQ7cCvJxc6ulqJR0V9nNUzPpSa8nWXfnIz6ioBqSM3kZkenuDiWt2g/I
wV3xcsam5cntNASHDne0ANS1zZq5UIh6SMuLFDnsbxYYgn8y4ENSG5vCJb03JiDR
ixWQJxPTtCTqF8WTpCWqwcep3mmqbcpTVQ+YqoHVROi5dzHMAi+PuQsil+oKNMx5
jUz6zpCDjYLgGwsKcaKLwQzaAry3D5wSSDl32yIFeOYBTPzmkqS5zk7/vA5rTLkE
vob5djVmlCjPRSQcO99Iv3Vydpbq0GJFThuetX8Mpk9hv2y7+qvpco9Ot50xPMVK
zWiaodxeGVEW2329pPcRz4x9e4J601JcwV+At+KpoFpUSYzR3gg+b5uJV2vLJdlz
27epiy8UPtgKz9BQUA/In7lNTGV8pAVo1M9471HQdXOBIXl3jWii6Y66ZkdqEiax
PLuxXcMHXaj1sSdhLM9zR87yafkqK5Vo2Vpth9QURP3jo3BEil6KRP5spYJ87BGW
uzn5QrnxHEa2tiKzSKPl
=DUmQ
-END PGP SIGNATURE-


Accepted:
pyppd_0.4.9-7.debian.tar.gz
  to main/p/pyppd/pyppd_0.4.9-7.debian.tar.gz
pyppd_0.4.9-7.dsc
  to main/p/pyppd/pyppd_0.4.9-7.dsc
pyppd_0.4.9-7_all.deb
  to main/p/pyppd/pyppd_0.4.9-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/e1sbpno-000123...@franck.debian.org



Accepted findlib 1.3.1-1 (source amd64)

2012-06-05 Thread Stéphane Glondu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 05 Jun 2012 11:24:23 +0200
Source: findlib
Binary: ocaml-findlib libfindlib-ocaml-dev libfindlib-ocaml ocaml-findlib-wizard
Architecture: source amd64
Version: 1.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Stéphane Glondu glo...@debian.org
Description: 
 libfindlib-ocaml - library for managing OCaml libraries (runtime)
 libfindlib-ocaml-dev - library for managing OCaml libraries (development files)
 ocaml-findlib - management tool for OCaml libraries
 ocaml-findlib-wizard - Makefile and META wizard for OCaml libraries
Changes: 
 findlib (1.3.1-1) unstable; urgency=low
 .
   * New upstream release
 - documentation sources are now included in the official upstream
   tarball, repackaging is no longer needed
   * Update debian/copyright
Checksums-Sha1: 
 39c4d5d23a0fb344cea1b3ac9a6e5c7c3e08f0c7 2293 findlib_1.3.1-1.dsc
 996d8ff4372e178a9fb18b690bb9746847763d82 229719 findlib_1.3.1.orig.tar.gz
 8b801054b86de574fbcac36776e09020e43998a6 14637 findlib_1.3.1-1.debian.tar.gz
 ad47ac09da85cf6742e40f160955fc3f91a2d3b2 270696 ocaml-findlib_1.3.1-1_amd64.deb
 e5e84acdc2a120f230c7932ed1f258657a934323 142296 
libfindlib-ocaml-dev_1.3.1-1_amd64.deb
 405bdaaf8b0e59b20222be17ac6f22f4fe23c7f2 108602 
libfindlib-ocaml_1.3.1-1_amd64.deb
 27050dbbcd8227d9c17832eb86e474e63df28c75 91828 
ocaml-findlib-wizard_1.3.1-1_amd64.deb
Checksums-Sha256: 
 e6c85e3c9ddc2f82c2757fc3e96c76311ec00f45b55797f0775880febbecde94 2293 
findlib_1.3.1-1.dsc
 9e4b063c3b10f36006521fb4ef457d87c2a0684a55e76c1776fbce707422b978 229719 
findlib_1.3.1.orig.tar.gz
 8493e0ac2817d6ff001a2a648d9e702d0c48a7ad04ff8b3d4b61586c23387176 14637 
findlib_1.3.1-1.debian.tar.gz
 8dbcd6c403567b9eea5a70de1969009cf2301642de992f7bfd769d535e4ab91e 270696 
ocaml-findlib_1.3.1-1_amd64.deb
 ac8fddc844422c7933e54805977a2bdc043c533e5178f83829edd8dd9c062a89 142296 
libfindlib-ocaml-dev_1.3.1-1_amd64.deb
 d31bb45186dab3d3893a97b1597f516b5b7604cbf7bc0ffcf3cde94a29957271 108602 
libfindlib-ocaml_1.3.1-1_amd64.deb
 71f81d7ff859175b35744b0c70b134ec9bc1215663de1d091ea126637e7e0360 91828 
ocaml-findlib-wizard_1.3.1-1_amd64.deb
Files: 
 3ffc07d2877de7047ebf2e6df792d2d0 2293 ocaml optional findlib_1.3.1-1.dsc
 e632bad87f1c7be9414a6b754232ba01 229719 ocaml optional 
findlib_1.3.1.orig.tar.gz
 4ac2efb7942829d33d58dbcc5700f22d 14637 ocaml optional 
findlib_1.3.1-1.debian.tar.gz
 9a7a8c813938ed24e69d333bb4cea5b6 270696 ocaml optional 
ocaml-findlib_1.3.1-1_amd64.deb
 57eeebdc5d6146cb9dd062c108e368ac 142296 ocaml optional 
libfindlib-ocaml-dev_1.3.1-1_amd64.deb
 7fba76d7a39d7a07119eed61f3470618 108602 ocaml optional 
libfindlib-ocaml_1.3.1-1_amd64.deb
 978f8372ec258c03b15bcb8f0257639e 91828 ocaml optional 
ocaml-findlib-wizard_1.3.1-1_amd64.deb

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

iQIcBAEBCgAGBQJPzdNaAAoJEHhT2k1JiBrTxmgP+wc42HXJMaICPK78fAdtXuaL
agdr8TPZXc7OMUQkSPEGzoqXubGAdKZPvInEzseltTqXzSv2v+MY7Zyryte4ISyO
5N7lUeyHd0SNEqmf0gDS56jUkWQDvVZMEdl9EC0MDWGFEJIyOT9J1BXWIgAfGUfM
ZnWVa2iCqTlrzPwXpbsUq2rBe9agML4hF8tjtJxgpPoVzOAMLfZDgPCMjwJCuGZM
NbOXCfbPZZ4sRm/CLAwJnVHph9KS+/KUEso/3kwN2bApWgElr8Yrt7XhHD3GLkYh
7/2F7F3N7uKnrRGWApbRNRQktxFdMuBcKegkmXS3hxSjbsqX6id2znpBhNsUJoo/
NwiSCuLvlpQiEsPal8VLiMxVunq7DRwdVMKEIRLq/b/Hvyo5l/xjQnnBkAV1hm2F
hsi1dVAHDAlz4DQaTYlUD59WLtKPUk/1Y5I7dsiSPDfJaqPRL3trP8hy7WGlc7te
5fSgmktOI2LynYpYo89dEsBF7K7f5dOIIuXYXv3DiQL7uDFTMm0FBNzMlT3fQPSS
yBeRgL7/QPT1y07klucYmWtxgRzytvPQKQopnIJEwDidXRp6nGmZZAJS//E3wBbA
jCQRsWEW7OsUOwdp4ipc4ZUG+7IfqmSBiAZyAGO4Dpr1VKnwouJJfilnsBW8fryA
vuEc2OF+jHcEuCpymcl9
=OR0H
-END PGP SIGNATURE-


Accepted:
findlib_1.3.1-1.debian.tar.gz
  to main/f/findlib/findlib_1.3.1-1.debian.tar.gz
findlib_1.3.1-1.dsc
  to main/f/findlib/findlib_1.3.1-1.dsc
findlib_1.3.1.orig.tar.gz
  to main/f/findlib/findlib_1.3.1.orig.tar.gz
libfindlib-ocaml-dev_1.3.1-1_amd64.deb
  to main/f/findlib/libfindlib-ocaml-dev_1.3.1-1_amd64.deb
libfindlib-ocaml_1.3.1-1_amd64.deb
  to main/f/findlib/libfindlib-ocaml_1.3.1-1_amd64.deb
ocaml-findlib-wizard_1.3.1-1_amd64.deb
  to main/f/findlib/ocaml-findlib-wizard_1.3.1-1_amd64.deb
ocaml-findlib_1.3.1-1_amd64.deb
  to main/f/findlib/ocaml-findlib_1.3.1-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/e1sbqmb-00029p...@franck.debian.org



Accepted libcitadel 8.11-2 (source amd64)

2012-06-05 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 11:30:24 +0200
Source: libcitadel
Binary: libcitadel2 libcitadel2-dbg libcitadel-dev
Architecture: source amd64
Version: 8.11-2
Distribution: unstable
Urgency: low
Maintainer: Debian Citadel Team pkg-citadel-de...@lists.alioth.debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 libcitadel-dev - Development files for libcitadel2
 libcitadel2 - Citadel toolbox
 libcitadel2-dbg - Debugging symbols for libcitadel2
Closes: 675841
Changes: 
 libcitadel (8.11-2) unstable; urgency=low
 .
   * Applied upstream's patch to fix compilation problem on kFreeBSD.
 (Closes: #675841)
Checksums-Sha1: 
 594dd17b8a901a58823ddfff64218f02c2eebc65 1431 libcitadel_8.11-2.dsc
 346a01138be71194b5536a28434c7682d3736262 7880 libcitadel_8.11-2.diff.gz
 ba60d58e34dde78ef850949c58064910d64db47f 72036 libcitadel2_8.11-2_amd64.deb
 4a59009cd8623d57cb986159c3ddcf37aa223900 137866 
libcitadel2-dbg_8.11-2_amd64.deb
 94ba644a805dc452b9280e855c07d66449b206c0 85458 libcitadel-dev_8.11-2_amd64.deb
Checksums-Sha256: 
 baf4f31fff235abe83e9d0134f29dbefa8b677a2852aa6fe22e20b1eaee6c099 1431 
libcitadel_8.11-2.dsc
 149adb55468cc2de6722a5c6074f0fa53f82265c8411cc84785fe81a0828e2a4 7880 
libcitadel_8.11-2.diff.gz
 c90fce898317cdbe7f9e75c90239e24912e46628c55ed559ffd029d34e559cb0 72036 
libcitadel2_8.11-2_amd64.deb
 9d981d6e0d22a74f28f87d8fa3bf08e9f32cde7042f01c8895e7c1c31e50cc8c 137866 
libcitadel2-dbg_8.11-2_amd64.deb
 e3b5ae508215e71842f27f5933f812828d8d20ec609665a9d438a252d279a8b4 85458 
libcitadel-dev_8.11-2_amd64.deb
Files: 
 1752f2ca684d85253199bd50cffe898c 1431 libs extra libcitadel_8.11-2.dsc
 2802ea3fd6f524f8399bede797359a9b 7880 libs extra libcitadel_8.11-2.diff.gz
 297746768d619ee6b849d93f3722292d 72036 libs extra libcitadel2_8.11-2_amd64.deb
 d0226ddc13908c51934a3ce768e0e50f 137866 debug extra 
libcitadel2-dbg_8.11-2_amd64.deb
 8b3c9b34efc036c3b12ec0afb99d9674 85458 libdevel extra 
libcitadel-dev_8.11-2_amd64.deb

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

iD8DBQFPzdJLVkEm8inxm9ERAsAOAJ0aQyPNY9kLOfkVk3bQL8XU4gl76ACfSKX4
s0e8bYuOuw3ks4Q/bmGETmc=
=ytgu
-END PGP SIGNATURE-


Accepted:
libcitadel-dev_8.11-2_amd64.deb
  to main/libc/libcitadel/libcitadel-dev_8.11-2_amd64.deb
libcitadel2-dbg_8.11-2_amd64.deb
  to main/libc/libcitadel/libcitadel2-dbg_8.11-2_amd64.deb
libcitadel2_8.11-2_amd64.deb
  to main/libc/libcitadel/libcitadel2_8.11-2_amd64.deb
libcitadel_8.11-2.diff.gz
  to main/libc/libcitadel/libcitadel_8.11-2.diff.gz
libcitadel_8.11-2.dsc
  to main/libc/libcitadel/libcitadel_8.11-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/e1sbqon-0002dc...@franck.debian.org



Accepted webcit 8.11-dfsg-2 (source all amd64)

2012-06-05 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 11:34:07 +0200
Source: webcit
Binary: citadel-webcit webcit-dbg citadel-suite
Architecture: source amd64 all
Version: 8.11-dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Debian Citadel Team pkg-citadel-de...@lists.alioth.debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 citadel-suite - complete and feature-rich groupware server; metapackage for 
full
 citadel-webcit - web-based frontend to Citadel groupware server
 webcit-dbg - web-based frontend to Citadel - debugging symbols
Closes: 676064
Changes: 
 webcit (8.11-dfsg-2) unstable; urgency=low
 .
   * Added build dependency on libexpat1-dev. (Closes: #676064)
Checksums-Sha1: 
 80ddf84717dde9dca70966334edda6e35ce270ea 1544 webcit_8.11-dfsg-2.dsc
 01fdf1265cada9a921819f5d1e61f274836f567d 25144 webcit_8.11-dfsg-2.diff.gz
 77256076f35efd0277c2c029179213a78019f8c7 826692 
citadel-webcit_8.11-dfsg-2_amd64.deb
 bd50e3cde4454664ad124bd9af04c051c98b4287 668026 
webcit-dbg_8.11-dfsg-2_amd64.deb
 97e03e1928db3f4ac3972c4a5034f98c10ddada2 7970 citadel-suite_8.11-dfsg-2_all.deb
Checksums-Sha256: 
 b5215089106442c031e0714ad8ab9c421417eb58df3eef4e1e43cd8533e4819a 1544 
webcit_8.11-dfsg-2.dsc
 658e09c8125f888640b88dd56866f50f61cc7a5688ce473fa0d9ff1c1b965aab 25144 
webcit_8.11-dfsg-2.diff.gz
 fc49f6bf485a47c503c80c098c5bc55346881ad19e120840bc0962ae4aa4d14a 826692 
citadel-webcit_8.11-dfsg-2_amd64.deb
 b678f5509dd0aef52a798909c132b0f66cd7c0ca7219eb9b88271b5e4febb5d7 668026 
webcit-dbg_8.11-dfsg-2_amd64.deb
 5ea4e9d41ff0cbe78255a2b9a40d08c0713446bced6de35ee6c0405b0dfe5dcb 7970 
citadel-suite_8.11-dfsg-2_all.deb
Files: 
 545d1f349a536da6548aa709cb0e07fb 1544 web extra webcit_8.11-dfsg-2.dsc
 950c631670837946f5cead84175b2f95 25144 web extra webcit_8.11-dfsg-2.diff.gz
 62c119400deaa69c9418055fbbcf2be1 826692 web extra 
citadel-webcit_8.11-dfsg-2_amd64.deb
 627d49ae4bac66ff5b547814494e418c 668026 debug extra 
webcit-dbg_8.11-dfsg-2_amd64.deb
 ba7ec279dc54f2898e1cb2f3343e47b1 7970 mail extra 
citadel-suite_8.11-dfsg-2_all.deb

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

iD8DBQFPzdLtVkEm8inxm9ERAgv5AJ9IXZhqCtmy43J1Xcstz+z5CWdC7ACfQn9T
tGwgX+Fv3ot9ND27w96Jlnc=
=BADd
-END PGP SIGNATURE-


Accepted:
citadel-suite_8.11-dfsg-2_all.deb
  to main/w/webcit/citadel-suite_8.11-dfsg-2_all.deb
citadel-webcit_8.11-dfsg-2_amd64.deb
  to main/w/webcit/citadel-webcit_8.11-dfsg-2_amd64.deb
webcit-dbg_8.11-dfsg-2_amd64.deb
  to main/w/webcit/webcit-dbg_8.11-dfsg-2_amd64.deb
webcit_8.11-dfsg-2.diff.gz
  to main/w/webcit/webcit_8.11-dfsg-2.diff.gz
webcit_8.11-dfsg-2.dsc
  to main/w/webcit/webcit_8.11-dfsg-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/e1sbqos-0002lf...@franck.debian.org



Accepted libgtk3-perl 0.006-1 (source all)

2012-06-05 Thread intrigeri
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 05 Jun 2012 11:45:24 +0200
Source: libgtk3-perl
Binary: libgtk3-perl
Architecture: source all
Version: 0.006-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: intrigeri intrig...@debian.org
Description: 
 libgtk3-perl - Perl bindings for the GTK+ graphical user interface library
Changes: 
 libgtk3-perl (0.006-1) unstable; urgency=low
 .
   * Imported Upstream version 0.006
   * Reflected dependencies updated upstream:
 require Glib (1.260) and Glib::Object::Introspection (0.009).
   * Drop 0001-Disable-test-that-needs-Glib-that-was-not-released-y.patch.
 We now ship a recent enough Glib to not need this workaround anymore.
Checksums-Sha1: 
 cf251153bd50167959ddd70552386d3edd5f25aa 2161 libgtk3-perl_0.006-1.dsc
 2572474e534bc77f6f585225a071bd40fc8f0329 21592 libgtk3-perl_0.006.orig.tar.gz
 7e0d1f8cd07a96e0d88f311ad5e21bbbfa5216c6 1834 
libgtk3-perl_0.006-1.debian.tar.gz
 c71b5a652d10e6261769971ceae704ad30f442a0 12574 libgtk3-perl_0.006-1_all.deb
Checksums-Sha256: 
 8e421f7327fb593a3100ed9cdfea9cb62f38867b9d138fb0787d1525f6df7953 2161 
libgtk3-perl_0.006-1.dsc
 282ab46883885c95d8e9ac8b026392c0bb0735a0075b705c403eb5a1e23b080c 21592 
libgtk3-perl_0.006.orig.tar.gz
 9f58f9392460ef769ba93b7601fc63f104e8c4e55bfde28e631946e3ad10785d 1834 
libgtk3-perl_0.006-1.debian.tar.gz
 a2eff90ed237e4dd365602a92267330c59307ccb23f10dd8be73a85011a830f7 12574 
libgtk3-perl_0.006-1_all.deb
Files: 
 b65e4a0594eff4057943d71f8f35fac8 2161 perl optional libgtk3-perl_0.006-1.dsc
 f0fdf9cc4c715ddc9548ba36be16d56e 21592 perl optional 
libgtk3-perl_0.006.orig.tar.gz
 31a2f595b60a9e89e2fc1633a28ff50d 1834 perl optional 
libgtk3-perl_0.006-1.debian.tar.gz
 271f9417e4523372f6c8cf52cf8fb865 12574 perl optional 
libgtk3-perl_0.006-1_all.deb

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

iQIcBAEBCgAGBQJPzdbDAAoJELrOFdKldJj/cCsQAKyPepYSTNvU6kxymGAhC1MG
oo9t+X0Ntj6QFPqAxZ4FUgIJo+hl50GnA2dF1UMulXsbsY6i4UkxIt9BURJuOVQw
ujkZwcrJLczvoqNqHjj+WUAJ/m5tVCeN5sl2CWH9/NbGcG8m5DaSTn2MNJQ34dLx
OU8lRHC18zI5tnmqk1jk8gn2bzPQcnlSGzctFkLa9+B/lnDbl331tLdDXYoDX7j7
YeWvS04xQdPNynUXo10lveRBJ7TlQXTa02qWQg5sD7FasL2PU4e/7HYdVLjMdNNL
wfd7Dcd92Jxv4Hi9n2zRZEsIvx2ajk09bil77NztjhvPTxQI+80+8xBWY1Po32pz
qvrqwVTfAqIsjps4dC9ML4uCt5HJosn7olHIBd/bKkjilHp9k+1Q1xSpQNzGm3Lq
N4RuEWj9Ln4B+PpgMIq6qehwZMmUnhoWBp0vx19oby4P9XCa2cc0Aj/RdvDbRoRZ
JQte+GDrjw76/SkrO6xXutiI/FFEVg/uLISeyavXvi1fhIh331XqLRial0TEwzOo
RgN0Sx26LSRdMKM4gqgHzsKiMqlp+WKrIs8G5WBbs1OmTGkh0AbVATr9jvOg/xgB
dPRf+s2jN7/5hcZIA/PuihMmvzRg9CV6JEqUix2NxVSjHPpPYFmcvWigH4aFXdoC
o1wjMvVk//KftinDbF8q
=0wOQ
-END PGP SIGNATURE-


Accepted:
libgtk3-perl_0.006-1.debian.tar.gz
  to main/libg/libgtk3-perl/libgtk3-perl_0.006-1.debian.tar.gz
libgtk3-perl_0.006-1.dsc
  to main/libg/libgtk3-perl/libgtk3-perl_0.006-1.dsc
libgtk3-perl_0.006-1_all.deb
  to main/libg/libgtk3-perl/libgtk3-perl_0.006-1_all.deb
libgtk3-perl_0.006.orig.tar.gz
  to main/libg/libgtk3-perl/libgtk3-perl_0.006.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/e1sbqb2-0006sw...@franck.debian.org



Accepted dune-istl 2.2.0-1 (source all)

2012-06-05 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 05 Jun 2012 10:31:10 +0200
Source: dune-istl
Binary: libdune-istl-dev libdune-istl-doc
Architecture: all source
Version: 2.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Description: 
 libdune-istl-dev - toolbox for solving PDEs -- iterative solvers (development 
files)
 libdune-istl-doc - toolbox for solving PDEs -- iterative solvers 
(documentation)
Changes: 
 dune-istl (2.2.0-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 ed49c051d4c4e4fd7b85cc5581a8c43b945bb0bc 2267 dune-istl_2.2.0-1.dsc
 f13081d3fa79beb7f4761bee4afb835946d15aff 258024 dune-istl_2.2.0.orig.tar.xz
 bb767f79d9a14ef9384dbda237a23f1440e6e934 2453 dune-istl_2.2.0-1.debian.tar.gz
 0c885aab43204ca78bb7ff331aae81b7ecb5ca51 150190 
libdune-istl-dev_2.2.0-1_all.deb
 b3dc27873d2a276f93a51575e953374d51870bd5 1058302 
libdune-istl-doc_2.2.0-1_all.deb
Checksums-Sha256: 
 3c864b196e9143c92910f1a372336fb761ec3e39de20fbed9a6faeaf657beb80 2267 
dune-istl_2.2.0-1.dsc
 7d6565cc0fd936d7e62872e877335a05770f7bec55589f444c15ec85ee3ca887 258024 
dune-istl_2.2.0.orig.tar.xz
 1f5767d560468985c3d2baf5c4807b0446cc065f9be5f7c90af1945d0175aea3 2453 
dune-istl_2.2.0-1.debian.tar.gz
 9d85c46f43fd2303676a2fbe482ad7e09b5db7967f6002da2d97d3812b6d7409 150190 
libdune-istl-dev_2.2.0-1_all.deb
 404063dae50caffd476f5edc3cb7d0642b4c828db607967ea8d2aa7655e764dd 1058302 
libdune-istl-doc_2.2.0-1_all.deb
Files: 
 7b1afc3cc42743c5c921c3123ef39fb3 2267 libs optional dune-istl_2.2.0-1.dsc
 2a28e58878a38a7e7773b547774106bd 258024 libs optional 
dune-istl_2.2.0.orig.tar.xz
 488836ce231553bdea20f83a21347919 2453 libs optional 
dune-istl_2.2.0-1.debian.tar.gz
 5de66038be2247ffdf4d3c5acd2cac68 150190 libdevel optional 
libdune-istl-dev_2.2.0-1_all.deb
 10890a54ef81e32abee48c4fb2ef2058 1058302 doc optional 
libdune-istl-doc_2.2.0-1_all.deb

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

iQIcBAEBCgAGBQJPzcWNAAoJEIATJTTdNH3IbYkQANY4XZy2UZVlUt86B06T5TZO
8iMPAN0CeCMXkprLP6FigjCM60UH7b78rKepN89R+XFVmBeMAEL1XjVb2KmLLblT
pp5gE4Q7F7rgdDGvu1TpH72DiWfJRRpV9BNmpGgjsMroUy61J8HHGgg7f036ELMA
J1offdEtIPvEXWYnRHo9Ch0dFc2SOJIJQM2o/sIqvUHuC9j+I+5qF7TbViH2ttGf
7XdXCe/tLPb7zS/qRhygnDmoRwTGKXMg0qP/HpUacN2hWQ7M2nfbT9THU2djp7B5
imT6MDIpbzB+YQwq71thoBfgXoJb0pAPz4dQIOPujaLCxh71AXoP4IYm4VexU8+a
Cri5Yt765m1nWSrmIaY24wALoyWLYwRXqzhiPs/vElRyQln4TaA3CV54qXYXGj+i
LRrWV1e+g0V5hLbdGG2jD3EnSwXRRWNDPg7o8htlZM9K1TSkSoIWg/x1BH+JvOds
ekAHCL4RecPOltMDYZWBUjTfz3lWstaW2yKQU1sUH9VZQUmF2veCijMmMiiux7e0
DXXYzF8liCM4tixjNl17+FYNaNE+WJ+Te49z87dn4UWl+gglZCIA1w/d4uUvzy0k
hNesMRBJvcaq21CUq06R4SK3V0D7PG31+cak6c9Qf6IXxGhF+Q8tZYvMFJbW5RsP
s3sKzcQgb6o5ZzGKxeR+
=WAd1
-END PGP SIGNATURE-


Accepted:
dune-istl_2.2.0-1.debian.tar.gz
  to main/d/dune-istl/dune-istl_2.2.0-1.debian.tar.gz
dune-istl_2.2.0-1.dsc
  to main/d/dune-istl/dune-istl_2.2.0-1.dsc
dune-istl_2.2.0.orig.tar.xz
  to main/d/dune-istl/dune-istl_2.2.0.orig.tar.xz
libdune-istl-dev_2.2.0-1_all.deb
  to main/d/dune-istl/libdune-istl-dev_2.2.0-1_all.deb
libdune-istl-doc_2.2.0-1_all.deb
  to main/d/dune-istl/libdune-istl-doc_2.2.0-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/e1sbqpa-hs...@franck.debian.org



Accepted dune-localfunctions 2.2.0-1 (source all)

2012-06-05 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 05 Jun 2012 10:34:45 +0200
Source: dune-localfunctions
Binary: libdune-localfunctions-dev libdune-localfunctions-doc
Architecture: all source
Version: 2.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Description: 
 libdune-localfunctions-dev - toolbox for solving PDEs -- local basis 
(development files)
 libdune-localfunctions-doc - toolbox for solving PDEs -- local basis 
(documentation)
Changes: 
 dune-localfunctions (2.2.0-1) unstable; urgency=low
 .
   * New upstream release.
   * Update debian/copyright.
Checksums-Sha1: 
 8a2d6f1a9e799aa547a9f53c20e12ba959ca0eb2 2430 dune-localfunctions_2.2.0-1.dsc
 48c48f2f3f5776e1de92073b1fa588973b6b8928 119956 
dune-localfunctions_2.2.0.orig.tar.xz
 fd7f910ee1b84fd24a70a6927f8ae1d20ca8e952 2443 
dune-localfunctions_2.2.0-1.debian.tar.gz
 8672c850f02250c4b1b96c5ae92e6053bf222014 87116 
libdune-localfunctions-dev_2.2.0-1_all.deb
 cbdc893897af26bf9551894f3da765f7ae12fba6 858552 
libdune-localfunctions-doc_2.2.0-1_all.deb
Checksums-Sha256: 
 57c8b913851077fa463f1f4542a3107889ab9a83a14c55da4f61e1b03d43afad 2430 
dune-localfunctions_2.2.0-1.dsc
 8836a2294cb62db7073c347b0cda7e61fb3c3773d966b9f726874e2b15db7e9b 119956 
dune-localfunctions_2.2.0.orig.tar.xz
 85ca693103606820b59c840b92673878cd0e47b2d00dcc8bc849f4797dc78d30 2443 
dune-localfunctions_2.2.0-1.debian.tar.gz
 2051745ad718cc2e0bd24a27d87f9bbd50b80234f643d19ec1719c8e4f2cbabc 87116 
libdune-localfunctions-dev_2.2.0-1_all.deb
 4c426b332c18517e2b9b58e73227423ad8a3c9cb37f77df0d32d3946add0c20e 858552 
libdune-localfunctions-doc_2.2.0-1_all.deb
Files: 
 8403f8ac576039fba6704271d1b9dba9 2430 libs optional 
dune-localfunctions_2.2.0-1.dsc
 0dc258c44dfceb71fe9010ff41ecc9bc 119956 libs optional 
dune-localfunctions_2.2.0.orig.tar.xz
 22cad7c0d3ef5f9eceb3eaa3a526d675 2443 libs optional 
dune-localfunctions_2.2.0-1.debian.tar.gz
 2267075fe9eb57b13ccb6cb64104ab24 87116 libdevel optional 
libdune-localfunctions-dev_2.2.0-1_all.deb
 7383f49bfa7eb77f9577965bf037fbb6 858552 doc optional 
libdune-localfunctions-doc_2.2.0-1_all.deb

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

iQIcBAEBCgAGBQJPzcclAAoJEIATJTTdNH3IBFkP/iRpBj4aPN2lNdA7UqMxXU5Z
BEw1HTc7hBZ/UebwLtJ71VbofycQX0K9I9FaB9u3j0EbP+284q03QanYmagGAI73
iB41jjW7gD65dOVIlfXU2nZ4hncFZE0OXbIL3mI9SxVe0EnybbhXlGEd58AbUn5b
831PKJ/AmmEIyE7OB6w3ADEZ5/5kG3GlHkjq4eUmV9l80fzMpvLqRHVyuk8a0ltV
8nBHV0ARz3JjK2M9kMmpitcZPMIIUrL4Z+0ySOIVOVCLy3TgjRrVRrcVKoqyiaXs
n0xC2D4J9XOBFWWmYl6EUCD2tq5ODUMCzxF5bWtoMg9P2pidaze8Py0jhDGvZMto
ZsJzivlv0QMMPtUbFw1b35lycu0UFsxmFEDpes37IWE+WIVdD6AjFaa9vhRDAkRM
WLymmcF/8dmZZSz8RyQOuAPBx3QsxeAXP74tmDGbGRbJRQz067zONEVRMbuSWhtK
aal/HoAnLt7/h7tHYdhuIx6I6oYEpx+7Ys/CnB1mZWGo91ndFia/fPkhUeLwBmTP
iamiZ8paz3o/2JVnEIdiPzeHDIAvnenhwP9ikRTeE48TGpj6thsyRfTnIJTIPqPP
9Xr50XByiqOxhVFKODp94QKcO94zcmF2IbmeNmjOgAALHHtBQGDd4AcRz6yn+gdZ
RbwVTe4nVyYsWCWp/OO3
=kXyE
-END PGP SIGNATURE-


Accepted:
dune-localfunctions_2.2.0-1.debian.tar.gz
  to main/d/dune-localfunctions/dune-localfunctions_2.2.0-1.debian.tar.gz
dune-localfunctions_2.2.0-1.dsc
  to main/d/dune-localfunctions/dune-localfunctions_2.2.0-1.dsc
dune-localfunctions_2.2.0.orig.tar.xz
  to main/d/dune-localfunctions/dune-localfunctions_2.2.0.orig.tar.xz
libdune-localfunctions-dev_2.2.0-1_all.deb
  to main/d/dune-localfunctions/libdune-localfunctions-dev_2.2.0-1_all.deb
libdune-localfunctions-doc_2.2.0-1_all.deb
  to main/d/dune-localfunctions/libdune-localfunctions-doc_2.2.0-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/e1sbqpp-k6...@franck.debian.org



Accepted iso-codes 3.36-1 (source all)

2012-06-05 Thread Tobias Quathamer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Jun 2012 12:02:57 +0200
Source: iso-codes
Binary: iso-codes
Architecture: source all
Version: 3.36-1
Distribution: unstable
Urgency: low
Maintainer: Tobias Quathamer to...@debian.org
Changed-By: Tobias Quathamer to...@debian.org
Description: 
 iso-codes  - ISO language, territory, currency, script codes and their transla
Closes: 671888 673956 675875
Changes: 
 iso-codes (3.36-1) unstable; urgency=low
 .
   * Imported Upstream version 3.36
 - ISO 3166: Finnish by Timo Jyrinki. Closes: #673956
 - ISO 3166: Basque by Piarres Beobide. Closes: #671888
 - ISO 3166: Lithuanian by Rimas Kudelis. Closes: #675875
Checksums-Sha1: 
 2d88897cae90400e1d6061613612311c81ef1681 1990 iso-codes_3.36-1.dsc
 25b478226d0a2bb5976cf6705deba7fe6e1fb422 6486964 iso-codes_3.36.orig.tar.bz2
 c05cfacefbdab31490bd2442e4349fda16d8a45a 20733 iso-codes_3.36-1.debian.tar.gz
 116752c0b158e2ac8c02c4cb9f9ed91541d3252b 3877652 iso-codes_3.36-1_all.deb
Checksums-Sha256: 
 5a7f66df3705250d118f0ce5f9eaefa002d448084a1ae7b9bb669bc019e8ad3c 1990 
iso-codes_3.36-1.dsc
 734e137eba604b795dccd31351ff5bda62217c4faccc0b3c3cd34706add862ac 6486964 
iso-codes_3.36.orig.tar.bz2
 4ef827eb6d73a09b4a3a44586cd19fc4e1ee066604617ee1e33e91c790b4af44 20733 
iso-codes_3.36-1.debian.tar.gz
 338189d1453bfc5eceddf4fa1d9ebf05277b372ba4b1842d71ad5d26e105f489 3877652 
iso-codes_3.36-1_all.deb
Files: 
 d9fb470dbcb394e84c13dd4f2bbc627d 1990 misc optional iso-codes_3.36-1.dsc
 a65c6ed35bb01793ba43ab21fa27161f 6486964 misc optional 
iso-codes_3.36.orig.tar.bz2
 75049f2887531a447e58069c9613592d 20733 misc optional 
iso-codes_3.36-1.debian.tar.gz
 9848f0f1ccb54971d13b52d06dc4df67 3877652 misc optional iso-codes_3.36-1_all.deb

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

iQIcBAEBCAAGBQJPzdomAAoJEIP9HEaC0TjgiYsP/1SqwRC48QWWmvU8NbVaFqh5
+bv9uwMgGIESjOUOLxChSlKLNzTWY90PyeiRkdTWsUzA8fkfb/VOp3LAI2bvvj0+
W74qpPasvgTrRAU8jH93/BlKAkKPxivy6S6ECPGE04U0pqrKvWG9J8tj5xm06h8a
yg6mMaQT8r/s2ZvRLbwskHoFroIwa2aAyBafqXageZxArifPnzuqgPZ/IUkWT/8h
7hsNOWHeHtnQ5Y310QZsQkc4ZMqzlnnsYpC+Dhjt2Rinl5GGm5U62Nkc38El9rJh
W0KVvqQDev/K/2ioPum1oKGTzeNOWfSK7WZ0RGSxiBsiO1TNDA/e/2Zw/GLnPrAL
lKOiVs+9H21TezZ5RXx9MduZ1dbRR3ehB2MRy4zIFhLJQO1O7lNP1lqOtPjfgGXg
9hJ+s7jkWGTWCZK32URL22RLtdAgdGxpJVIHXIO4RmTrDtTZYuWR33a66EE5JUrv
Sil4sJNke/kzd6Zlb+z3Q1b29YJtkGkVHLhLLmUQBo0sjTIV828GvzUNK+qNbpPi
/hk/N7f7dlnkCgn7AbScpvyHxONK0+lVqJIzs/OF09gAsMr8c8+uobSE7AuKu70v
HXoO+z/YiTxQsTkHaKiahDIGheg7ov6wXXrA2nXWj46mR1Ej+Rb9LDCWY/d8dhQg
M6rWSYOHEPmO/FiHe44G
=PGqW
-END PGP SIGNATURE-


Accepted:
iso-codes_3.36-1.debian.tar.gz
  to main/i/iso-codes/iso-codes_3.36-1.debian.tar.gz
iso-codes_3.36-1.dsc
  to main/i/iso-codes/iso-codes_3.36-1.dsc
iso-codes_3.36-1_all.deb
  to main/i/iso-codes/iso-codes_3.36-1_all.deb
iso-codes_3.36.orig.tar.bz2
  to main/i/iso-codes/iso-codes_3.36.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/e1sbqrw-00014y...@franck.debian.org



Accepted naspro-bridges 0.4.1-1 (source amd64)

2012-06-05 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 05 Jun 2012 12:01:01 +0200
Source: naspro-bridges
Binary: naspro-bridges
Architecture: source amd64
Version: 0.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 naspro-bridges - collection of bridges to LV2
Changes: 
 naspro-bridges (0.4.1-1) unstable; urgency=low
 .
   * New upstream release.
   * Replace lv2{core,-extensions-good} with lv2-dev in Build-Depends.
   * Update debian/copyright.
   * Bump Standards.
Checksums-Sha1: 
 8e0013c79827efc07bc4b0569fab3a371b71e957 2151 naspro-bridges_0.4.1-1.dsc
 f2f8a8b553a35e2da8bfab1abed026e2bcfd9d25 284921 
naspro-bridges_0.4.1.orig.tar.bz2
 458eb5cda96e3a1109d92f0f99bc71919e04bbe0 2515 
naspro-bridges_0.4.1-1.debian.tar.gz
 0f65b022998aa8c6956a173715bd40ec3a15c327 31846 naspro-bridges_0.4.1-1_amd64.deb
Checksums-Sha256: 
 60e7a8936ae1a9e543d5bc19a2ca7031e4840d5d148bd047069a8538a21df98c 2151 
naspro-bridges_0.4.1-1.dsc
 f61736509afc823caf4a424c4812a874e88e8dddfe2be7e7dfd4257259d62694 284921 
naspro-bridges_0.4.1.orig.tar.bz2
 3bb5fa1479bde49b4e78cb8b7edd5a3c40893c4f93be472814fbf6de29e71fef 2515 
naspro-bridges_0.4.1-1.debian.tar.gz
 6c05f6ec9e86fbcea6c4ee6c04d7acc4d609581f4a779cf1be1bf8b8cd11c850 31846 
naspro-bridges_0.4.1-1_amd64.deb
Files: 
 99b27c4683e14d80556e9e414c1437a1 2151 libs optional naspro-bridges_0.4.1-1.dsc
 e3fecc562df9cfb99e53633d826d7cff 284921 libs optional 
naspro-bridges_0.4.1.orig.tar.bz2
 88b7bd7b06d4629e0b466cde6f83dc44 2515 libs optional 
naspro-bridges_0.4.1-1.debian.tar.gz
 29a644cb4ebc073bd0b3e1a0f1bd3640 31846 libs optional 
naspro-bridges_0.4.1-1_amd64.deb

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

iQIcBAEBCgAGBQJPzdqTAAoJEOikiuUxHXZagRQP/0tR8e+LouCBOiIUNBSRp9Po
8hA4KKdBYcHdHpTbWFu129U4qB0mlyPy2tGnIqAIiw+12NalimBgZJJMRDR35MwX
hLSZveXzifsb0mugcsGe7N7G5zggk8cH/H3ydc1kXzZ04SVkCthVTYaIIMo9vAmd
04i2QALO3qGMxPz6s028Pa8KWJTZPP3DO9i1DE1S4CrLv787/3XG37EmJTDBHdBY
/GmebUzIKu2DTNU47lBYZmQldzBqfrPG9DYCW9qJ2UilU6aN6CTK9P3H4XmFkWIp
5lgBpgf6eoMLgeJdhnH2D8gvXDGTRx+DQivqrOEzQTVs6h49YPb1VdAdfNUC+Lsi
5v/tmSlJlykwH/bAuGMN2jyjL6HyJtreRAjBFvQtck37dmQY1v9c4XPSjqByVGc8
2or3LW05y+U8SZM9J/FPJI8cZnmS8M1BbACP1zGgefV1/+lC0Po1CamqLkEInVSg
wIPZC9W0A37rJzXqKicDCc/iJUwnIrWg8+XN1JNOUA9jkUfJIEYOVIiVd/4e3dpz
HmLGVd5ICXgHVsJqyDXO9g+Oais3IygtyGOR4f56N8iJiVzfwaYOb+SqShsgkKRH
UzgBWzOlpCoRwahcQQJwRYDT5EO9pVbzU1ttkt/ChaL0srHWUOG96mbG4cOLH9NK
JtLhTkjyhgFJrDI20QXA
=4hLo
-END PGP SIGNATURE-


Accepted:
naspro-bridges_0.4.1-1.debian.tar.gz
  to main/n/naspro-bridges/naspro-bridges_0.4.1-1.debian.tar.gz
naspro-bridges_0.4.1-1.dsc
  to main/n/naspro-bridges/naspro-bridges_0.4.1-1.dsc
naspro-bridges_0.4.1-1_amd64.deb
  to main/n/naspro-bridges/naspro-bridges_0.4.1-1_amd64.deb
naspro-bridges_0.4.1.orig.tar.bz2
  to main/n/naspro-bridges/naspro-bridges_0.4.1.orig.tar.bz2


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



Accepted libx86 1.1+ds1-8 (source i386)

2012-06-05 Thread Anibal Monsalve Salazar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Jun 2012 20:14:53 +1000
Source: libx86
Binary: libx86-dev libx86-1 libx86-dbg
Architecture: source i386
Version: 1.1+ds1-8
Distribution: unstable
Urgency: low
Maintainer: Anibal Monsalve Salazar ani...@debian.org
Changed-By: Anibal Monsalve Salazar ani...@debian.org
Description: 
 libx86-1   - x86 real-mode library
 libx86-dbg - x86 real-mode library - debugging symbols
 libx86-dev - x86 real-mode library - development files
Closes: 634832
Changes: 
 libx86 (1.1+ds1-8) unstable; urgency=low
 .
   * Debian source format is 3.0 (quilt)
   * Standards version is 3.9.3
   * DH compatibility level is 9
   * Add multiarch support
   * Use hardening options
   * Fix typo in Vcs-Browser
 Patch by Jakub Wilk
 Closes: #634832
Checksums-Sha1: 
 0e947187d0f354ef9d3679f47c033c458cf34509 1950 libx86_1.1+ds1-8.dsc
 9f24aa108ebf9870da23cbe634c9c3b8fcbbdbbe 5629 libx86_1.1+ds1-8.debian.tar.bz2
 b88ca4e81c66dfde116e04b97f708cae99ecddbb 10824 libx86-dev_1.1+ds1-8_i386.deb
 263315217b9b78cd9c89bfbac61140a86ef23c74 10312 libx86-1_1.1+ds1-8_i386.deb
 9063e18c48fd2e5964e95894e869bac97ac8db52 13784 libx86-dbg_1.1+ds1-8_i386.deb
 a4b093a29f972b57237fa1e2211a41352cd35b72 61969 libx86_1.1+ds1.orig.tar.bz2
Checksums-Sha256: 
 36cd6b15ce7e03493f0a6e7c25dae801b7c467c236318813a2dd5a2142c0e271 1950 
libx86_1.1+ds1-8.dsc
 86ae56643fb5164d739260a175d596568b694a33bceb8bcf76d4af556b01cdb4 5629 
libx86_1.1+ds1-8.debian.tar.bz2
 88036ba62465491b35cffa00dc6d9d07b6ee9610a41ae626779d264b418c8211 61969 
libx86_1.1+ds1.orig.tar.bz2
 3933c0eed916c15e55481217f23bc2c105facdaa671109cbd8236db2ffcea686 10824 
libx86-dev_1.1+ds1-8_i386.deb
 8998d98893e04dc9b68cb12dc59b745a2c2e4f9d777f1a71945b73e1ee8d4260 10312 
libx86-1_1.1+ds1-8_i386.deb
 88e33dc5249a929e3701387f8ea6a3962b786e5db35cc2084d563fa045242b0e 13784 
libx86-dbg_1.1+ds1-8_i386.deb
Files: 
 d8810ccfe024ad6f8ead1c37db8951d5 1950 libs optional libx86_1.1+ds1-8.dsc
 916435c38cf9c534592a3da25a6cf302 5629 libs optional 
libx86_1.1+ds1-8.debian.tar.bz2
 edbb9d096ead9a445295d13272f6b8ea 61969 libs optional 
libx86_1.1+ds1.orig.tar.bz2
 630602f81ab97a673c4dd0a645437eb7 10824 libdevel optional 
libx86-dev_1.1+ds1-8_i386.deb
 182ccca4b7244db2b800370848f451ac 10312 libs optional 
libx86-1_1.1+ds1-8_i386.deb
 2940221cfc43b4b6ccf3f05bcc2038d6 13784 debug extra 
libx86-dbg_1.1+ds1-8_i386.deb

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

iQIcBAEBCAAGBQJPzd2sAAoJEHxWrP6UeJfY4S8QAIiJ/lJsZcmQ0pA2aT96tp+C
y/O1aMvbxpo2CBhgJo5BC7vE5Df/Syya09WT3N8batTmOmMp0i6JJCxs5vlSBbRU
tbWwNtoKnTTkAvwNj2ZlFoYyIDFUQzQy8iEHuNci96NuYy06MKoJcAYZuJijGv3K
gBFg7SkbqqrGPD98vJ4qKuwPp8DNEZCljeqEJ19sGRcyJl6S45pHDzXAEKkjBFWX
/+BwAws/njD835n98ffrIvgN+0Rx1nkVm1oe+c1vbR4pQBquCoJA7tGeBXr+d0/d
DX8h4xwc1e51znh/MrOnmkieIxnjOwJS4Pu1NKduu31Mpzpz0xpyUGj3/vIAlLjK
Ch2Gf7NH9N+mgrm4E+xyaxqnJ/N8m5sm04UvkuinHoF//VjB0giqJ4XeM9lg3v5x
sbEJG+2JmNLxDNndEOP8m+afY5QC29y7e0WLhpXRln/T0VajctK3IM4kmtFvX3IV
gwJQpNc9BfZyOca3UOkTjY/QPBK5q898PDazvWJluMwRC1ayjri8gAUer8H4MnIp
gomob1qoqpOn/fapNknjJNC/lbUsvFHnmTBPPuhs6800HQ3bRFQeG5mK85NnIoqa
gi9Puvct1NRiTkycsT4sKI5pBjCkyS9n8B3tJKv1XTai/BO9M/51YAjDFQ0B5nUr
AMvt553jlI5Bo6g0otTG
=hqep
-END PGP SIGNATURE-


Accepted:
libx86-1_1.1+ds1-8_i386.deb
  to main/libx/libx86/libx86-1_1.1+ds1-8_i386.deb
libx86-dbg_1.1+ds1-8_i386.deb
  to main/libx/libx86/libx86-dbg_1.1+ds1-8_i386.deb
libx86-dev_1.1+ds1-8_i386.deb
  to main/libx/libx86/libx86-dev_1.1+ds1-8_i386.deb
libx86_1.1+ds1-8.debian.tar.bz2
  to main/libx/libx86/libx86_1.1+ds1-8.debian.tar.bz2
libx86_1.1+ds1-8.dsc
  to main/libx/libx86/libx86_1.1+ds1-8.dsc
libx86_1.1+ds1.orig.tar.bz2
  to main/libx/libx86/libx86_1.1+ds1.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/e1sbr67-0004ec...@franck.debian.org



Accepted status-4-evar 0.2012.04.21.13-1 (source all)

2012-06-05 Thread Ximin Luo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 03 Jun 2012 00:17:22 +0100
Source: status-4-evar
Binary: xul-ext-status4evar
Architecture: source all
Version: 0.2012.04.21.13-1
Distribution: unstable
Urgency: low
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: Ximin Luo infini...@gmx.com
Description: 
 xul-ext-status4evar - Status bar widgets and progress indicators for Firefox 4+
Changes: 
 status-4-evar (0.2012.04.21.13-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 61e27a390eb36a5a591f993ec233f2311c745262 2126 
status-4-evar_0.2012.04.21.13-1.dsc
 7517343ae291e4ede218becb1eb479e9abc7ca5e 66032 
status-4-evar_0.2012.04.21.13.orig.tar.bz2
 a35f2dc0975a593777c3b0cb08fddff27d2a8ec3 10060 
status-4-evar_0.2012.04.21.13-1.debian.tar.gz
 e608b900255097dd999ceb87176e4ff14c005362 94728 
xul-ext-status4evar_0.2012.04.21.13-1_all.deb
Checksums-Sha256: 
 f026b3022c4e565e42112da024898ee22032c86d314c7961e283d44186282b99 2126 
status-4-evar_0.2012.04.21.13-1.dsc
 10ff42e1a1cf081010d05d2c02d7ce35946bf16d6178111912f9d67c57d0c79d 66032 
status-4-evar_0.2012.04.21.13.orig.tar.bz2
 79225f30b6cd027342057fd01899da486dc3b39f953a42ebd7037d5b8acea456 10060 
status-4-evar_0.2012.04.21.13-1.debian.tar.gz
 198f05ac72d27450a95f74944574c1ad8d726314d70372f263b987d92069dc6a 94728 
xul-ext-status4evar_0.2012.04.21.13-1_all.deb
Files: 
 765e406b3a702b42f09388a8ccb3972d 2126 web optional 
status-4-evar_0.2012.04.21.13-1.dsc
 f278eb4841c253896081c399fc72ac2d 66032 web optional 
status-4-evar_0.2012.04.21.13.orig.tar.bz2
 485f84f9283d0e229fcdf27910f5bd2f 10060 web optional 
status-4-evar_0.2012.04.21.13-1.debian.tar.gz
 357c84c94c11636773d4d88bd9e747c8 94728 web optional 
xul-ext-status4evar_0.2012.04.21.13-1_all.deb

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

iQIcBAEBCAAGBQJPzeFVAAoJELCi8amz5hIsbRYP/1pSrxK2JL68V7qaEy3gD+0E
lQIdRehEXY+ODFC5BlGTSHWDhF5dX1aG1aS0SFXLedgjLCdNHb6PaeUoyFq/SHwu
xzy7XpYti537m2CUzIS9/PFiKcZjKeswxC7W+0iixm10Qsw1Y3KVQIJgkb9/feVN
wHLtPNHUOdc0uMAOu/HSf6+WLko8GZ/JGFErt6DApsWr5qOgEhobTDFz6FWEExK3
2WqCKqugKLZrITp1BHGPP+e1nrZAl10GF0S4+apPe+mxx3u2htxadLQK505N07ti
zLU5bIjs3BApAoLtpVGIU3hp8LPInZ6mo8A/tux1a2b+1SWuYmk60DXge6vHzP/h
KoWOBWB1U2ALWpHIO6o6MWqPgrlpV00SrDWD6IXux8ypNEYdj1lCwhC11rRFn+Ql
LIxMf6F1slPEaFKbt5HdxHmDZYPvAy7eb6eZ3lNXkA9h0Nyagt2almqwx03xoPWY
tz5G1GaMLhpNfpF/Z+6KO87epFVuKubvTCi9vKuwridCfRLdTgW5mWifuuFanc21
uo9Uj68mpKBIG8sUca+IeQKq+38GgdNk6c0iZh1AGv+MaxBhsEmp0YaXi4j6otA3
W42khZU/opAp8FiZcCqf47cz+5af82Fotue30DxYBrF2hIL7wE6ihZ3bNQvDrviZ
NmUferdccuBVmmf8GixQ
=HWIC
-END PGP SIGNATURE-


Accepted:
status-4-evar_0.2012.04.21.13-1.debian.tar.gz
  to main/s/status-4-evar/status-4-evar_0.2012.04.21.13-1.debian.tar.gz
status-4-evar_0.2012.04.21.13-1.dsc
  to main/s/status-4-evar/status-4-evar_0.2012.04.21.13-1.dsc
status-4-evar_0.2012.04.21.13.orig.tar.bz2
  to main/s/status-4-evar/status-4-evar_0.2012.04.21.13.orig.tar.bz2
xul-ext-status4evar_0.2012.04.21.13-1_all.deb
  to main/s/status-4-evar/xul-ext-status4evar_0.2012.04.21.13-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/e1sbrkn-0006b3...@franck.debian.org



Accepted tree-style-tab 0.14.2012050301-1 (source all)

2012-06-05 Thread Ximin Luo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 03 Jun 2012 00:11:50 +0100
Source: tree-style-tab
Binary: xul-ext-treestyletab
Architecture: source all
Version: 0.14.2012050301-1
Distribution: unstable
Urgency: low
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: Ximin Luo infini...@gmx.com
Description: 
 xul-ext-treestyletab - Show tabs like a tree
Changes: 
 tree-style-tab (0.14.2012050301-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 b46d79fb4a4d603ec9b00d0274d5b682ac88d551 2141 
tree-style-tab_0.14.2012050301-1.dsc
 21e6facd57b3905c668514240b87bb743874ff08 212922 
tree-style-tab_0.14.2012050301.orig.tar.bz2
 5bf8540806a8a532e98a224cfa7bc699bd479f15 10708 
tree-style-tab_0.14.2012050301-1.debian.tar.gz
 5ba279055a38456718b4c7d65133c997d6a4144d 303300 
xul-ext-treestyletab_0.14.2012050301-1_all.deb
Checksums-Sha256: 
 17b701a643176be542e6756d8d1b7a98612428a01950e5a55d7ae4e95ab9 2141 
tree-style-tab_0.14.2012050301-1.dsc
 a695c1fe00bc2266dfed1492617f23a7f406f98158eb509a6412bac4c038ebd3 212922 
tree-style-tab_0.14.2012050301.orig.tar.bz2
 2dd7631ef5854f15a63cf663f6c6abd26494dc5668fb5bb222f1d2ac9ad5ab83 10708 
tree-style-tab_0.14.2012050301-1.debian.tar.gz
 072364d19e476e444e448355d3e09ede5e949770a939f9239f07f4c54ae60c95 303300 
xul-ext-treestyletab_0.14.2012050301-1_all.deb
Files: 
 9509f38dfd2cff12416fee8d0bab6a3a 2141 web optional 
tree-style-tab_0.14.2012050301-1.dsc
 5a8169f10ed37cb41a2dac2c0c12bbc5 212922 web optional 
tree-style-tab_0.14.2012050301.orig.tar.bz2
 fb24a80d361f7dc796335d50dfa78296 10708 web optional 
tree-style-tab_0.14.2012050301-1.debian.tar.gz
 f69df3a269567b530a73c4985eff701c 303300 web optional 
xul-ext-treestyletab_0.14.2012050301-1_all.deb

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

iQIcBAEBCAAGBQJPzeEfAAoJELCi8amz5hIsinYP/23zrUFgweWZknygABXx1mB0
JvwcMt4CnIhgmZUJ3yknkN/6Ahxwv9fa8XQ6ii1LgeLsIQGCvv6RuAcxi35Gprk4
u+cgWfA6UnPuXdn6POTITK5hWv/vDC044YMnVH8/8PjLgVa2poNh6utS3btAnGaM
7WTlw6eQHeoc0+DCT+yNvf89kDnrlkNmxPwVJp5uRJo3ak68HOL4ZVb54XISQHSo
udj3dBqDNiz+4KFRg3A2BT9C26rWM45IGJ1vgj/T9yEsSckh3vdl2R2QwYdQFOOb
kWhi56KApZs3ywVk10hPmVTSsd/oUINbVqDH5wdQ/qCKzBlbTKK9OGYT9KX4eGqP
WwIciMVUzgu8NpgkwpBvimCxs5gvn1HttykS6uMS1PLr3C1ZG59RNKpg9lfeBETx
7M4VSU2FZ0Pyl9xekWMxGTNOnTkSU468bZ8n7nlaSAGOjiP08LcIA5XrMcDljXld
YyD9GrwTyYOsTW73pTAzdzbgcFS6tgxnRQwqMHdez88AM23Gi29QWp6Af1zmlfKf
twoYoOLgn9eJX49ahtmjeVym9H1+RmWmJuNz9Wt0N9AyJOj1QVl2Y3XHoTTsteAa
6FlvfssUvLHY6sQzIQZ9LufXV6VaLOn8dWz9Bti5u33oL49dEqClamT8DZziAtPs
+ptNSHsYtCOsf06zkPjr
=7gOo
-END PGP SIGNATURE-


Accepted:
tree-style-tab_0.14.2012050301-1.debian.tar.gz
  to main/t/tree-style-tab/tree-style-tab_0.14.2012050301-1.debian.tar.gz
tree-style-tab_0.14.2012050301-1.dsc
  to main/t/tree-style-tab/tree-style-tab_0.14.2012050301-1.dsc
tree-style-tab_0.14.2012050301.orig.tar.bz2
  to main/t/tree-style-tab/tree-style-tab_0.14.2012050301.orig.tar.bz2
xul-ext-treestyletab_0.14.2012050301-1_all.deb
  to main/t/tree-style-tab/xul-ext-treestyletab_0.14.2012050301-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/e1sbrl2-0006bz...@franck.debian.org



Accepted agg 2.5+dfsg1-8 (source amd64)

2012-06-05 Thread Andrea Veri
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Jun 2012 12:40:56 +0200
Source: agg
Binary: libagg-dev
Architecture: source amd64
Version: 2.5+dfsg1-8
Distribution: unstable
Urgency: low
Maintainer: Andrea Veri a...@debian.org
Changed-By: Andrea Veri a...@debian.org
Description: 
 libagg-dev - AntiGrain Geometry graphical toolkit (development files)
Closes: 676149
Changes: 
 agg (2.5+dfsg1-8) unstable; urgency=low
 .
   * debian/patches/09-fix-hurd-ftbfs.patch:
 - added to prevent a FTBFS on GNU/Hurd. Credits goes to
   Barry deFreese. (Closes: #676149)
Checksums-Sha1: 
 c0f9653dc7bd5a4e95fd53a8334bc3a694346bc6 1779 agg_2.5+dfsg1-8.dsc
 bde9218eabb5a1763af494e816c3371754049856 6599 agg_2.5+dfsg1-8.debian.tar.gz
 5cb1eb2312af008779b520701d9588770535eb10 522730 
libagg-dev_2.5+dfsg1-8_amd64.deb
Checksums-Sha256: 
 c7ed57584c44fa512b98b22babcef6e758ef4e0f2740b09d32f25bde124da680 1779 
agg_2.5+dfsg1-8.dsc
 a10c09df8d0f68377a7b9bd858e48e0390ae4439941bf03e634aa5d61191b592 6599 
agg_2.5+dfsg1-8.debian.tar.gz
 cda0cddbda85a48371127dd5749b0b010e8021d5eaff73b17791cf857f9d0fe4 522730 
libagg-dev_2.5+dfsg1-8_amd64.deb
Files: 
 1ec83982ab8c4adf9bccfa6023045384 1779 libs optional agg_2.5+dfsg1-8.dsc
 e0c54cf8e59917fe93d8b10fe2ed649b 6599 libs optional 
agg_2.5+dfsg1-8.debian.tar.gz
 6d1d1511aa55f5235eaa3eb5c6f24689 522730 libdevel optional 
libagg-dev_2.5+dfsg1-8_amd64.deb

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

iQIcBAEBCAAGBQJPzeTrAAoJELCi8amz5hIsZQoQAIY5+UUYfLaiWIbGgQpMNqU+
Qn/U1ppAY9/fMjFfyYA5Hp8oqRb4pjJCaSiAI0Szd6L/CfuoPteyX/0rbQZFF3/6
GMpUAGRdUTTWJ2nv62R53+kxizUob6P2aRxb2lzzDMVxAIkbzeaXaSakg2mkQjt8
bCOBLimWShpKlxVX40l7ujClevdkhnewQgnCzlbxcM5+LgHYzXnsCzqv/RFdYJfb
4oKUl+3UKINIwRfizz1oEfCZvnYft/pIoxG1NVf66X5fxABXCvOAd+ckWqcDNaHB
8fxkcfDzt828VURbbj6D9ECGW0pGfEcUFzXMnDF2mqpEtEgP3pVgG/zerfWa66J2
TEvunhb34M/iMQ1QgBiOWyIBdk7upjJZgFW8sLOLFHL8Y7T2s3IRL+14l6naontD
PtqHS2RExUcB+icEzRJZX8gTDJ4SiCqPk9vdRkebd7M9W5OrAZM7RZYewowxn3Kz
2LMy/sZ0R+fLU0I9uI1y9yDP/kR+yObErx8g+O/DXZoHtWwm9c0Vdr3Go5JrJr/O
SQoxOO1wpWJb7YfYiQ+xL5h3nWUHekdPxQwSMBJYqicFEFVgeHmGbDKs+KGEz8ik
P+WYa/d+YkjdzxzgbNbCj5cdJy7yG/7vQE1v83aumv7UvB4qK9yQe/Lsg78OmdJo
1XeTZKCltOM6jG/B9NiS
=ViP6
-END PGP SIGNATURE-


Accepted:
agg_2.5+dfsg1-8.debian.tar.gz
  to main/a/agg/agg_2.5+dfsg1-8.debian.tar.gz
agg_2.5+dfsg1-8.dsc
  to main/a/agg/agg_2.5+dfsg1-8.dsc
libagg-dev_2.5+dfsg1-8_amd64.deb
  to main/a/agg/libagg-dev_2.5+dfsg1-8_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/e1sbrwc-0007vx...@franck.debian.org



Accepted saods9 6.2+dfsg-2 (source i386 all)

2012-06-05 Thread Ole Streicher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 11:06:04 +0200
Source: saods9
Binary: saods9 saods9-blt saods9-doc saods9-data
Architecture: source i386 all
Version: 6.2+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Ole Streicher deb...@liska.ath.cx
Description: 
 saods9 - Image display tool for astronomy
 saods9-blt - BLT subpackage for saods9
 saods9-data - Image display tool for astronomy (shared data)
 saods9-doc - Image display tool for astronomy (documentation)
Closes: 675899
Changes: 
 saods9 (6.2+dfsg-2) unstable; urgency=low
 .
   * Fix FTBS for hurd and kfreebsd, closes: #675899
   * Set DM-Upload-Allowed
Checksums-Sha1: 
 0381fe03fd543c1a2e0a16795724344431effb0f 1643 saods9_6.2+dfsg-2.dsc
 74307c024b837c54ec63639ee8782f259a18e5a2 30417 saods9_6.2+dfsg-2.debian.tar.gz
 d1613fe5db1b6d8089e13a7b0d6c400d190bb97b 817938 saods9_6.2+dfsg-2_i386.deb
 8e17c3ab0c09efca268afe4790ee843f7ce406ce 842056 saods9-blt_6.2+dfsg-2_i386.deb
 94c624fe441e0f3a5247751e9a013ae4946d9f09 5478784 saods9-doc_6.2+dfsg-2_all.deb
 3163ac7d76ea9d67f83c3aeba5fd1ef3f648b927 393374 saods9-data_6.2+dfsg-2_all.deb
Checksums-Sha256: 
 c791decaf6da12e033acb40330ab853de8a10d47fef3756b8ca02838d1cb9e84 1643 
saods9_6.2+dfsg-2.dsc
 d74ba18ae044fac5bdc440c3775b28e85af44515680239fcaee1fcae3bc56633 30417 
saods9_6.2+dfsg-2.debian.tar.gz
 51d34f110f6778b55a7c2fc7bd8650151aae8236c8b0d7f85539a2e8c5930a75 817938 
saods9_6.2+dfsg-2_i386.deb
 f6738d6bf9b2d1a33e140cc8bf7e3f540f84866a4aa58cda119408a4d2ab 842056 
saods9-blt_6.2+dfsg-2_i386.deb
 4b3dcc7848198f86cf8dbab97a2dffd9bd170245e0b4e3195de335f5241b170b 5478784 
saods9-doc_6.2+dfsg-2_all.deb
 73c0180293cc41d2d8db514d84bb4353bb1e9764f733a02acd2bd7aa0be21766 393374 
saods9-data_6.2+dfsg-2_all.deb
Files: 
 a25456ad1af34d0491722efdcbf1694d 1643 science extra saods9_6.2+dfsg-2.dsc
 d9032dfdfc11d7a95ee49f6bcade7f32 30417 science extra 
saods9_6.2+dfsg-2.debian.tar.gz
 3bc0018783411af4855efb89ae4d7d0f 817938 science extra 
saods9_6.2+dfsg-2_i386.deb
 df31f6121a14df0ac35ce3974c030705 842056 science extra 
saods9-blt_6.2+dfsg-2_i386.deb
 47e707742031fafa997d149eea78c1a6 5478784 doc extra 
saods9-doc_6.2+dfsg-2_all.deb
 a44319fea876783bc502a28cde57288c 393374 science extra 
saods9-data_6.2+dfsg-2_all.deb

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

iEYEARECAAYFAk/N5YcACgkQiOXXM92JlhC/ggCg6115+aLMHJG6+CIzJaMdX8nQ
zyQAoNhLmE0FJj7p4bZpwOsnq2Mgtq5m
=zcTa
-END PGP SIGNATURE-


Accepted:
saods9-blt_6.2+dfsg-2_i386.deb
  to main/s/saods9/saods9-blt_6.2+dfsg-2_i386.deb
saods9-data_6.2+dfsg-2_all.deb
  to main/s/saods9/saods9-data_6.2+dfsg-2_all.deb
saods9-doc_6.2+dfsg-2_all.deb
  to main/s/saods9/saods9-doc_6.2+dfsg-2_all.deb
saods9_6.2+dfsg-2.debian.tar.gz
  to main/s/saods9/saods9_6.2+dfsg-2.debian.tar.gz
saods9_6.2+dfsg-2.dsc
  to main/s/saods9/saods9_6.2+dfsg-2.dsc
saods9_6.2+dfsg-2_i386.deb
  to main/s/saods9/saods9_6.2+dfsg-2_i386.deb


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



Accepted telepathy-qt 0.9.1-2 (source all amd64)

2012-06-05 Thread Laurent Bigonville
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Jun 2012 12:47:15 +0200
Source: telepathy-qt
Binary: libtelepathy-qt4-2 libtelepathy-qt4-farstream2 libtelepathy-qt4-dev 
libtelepathy-qt4-dbg libtelepathy-qt4-doc
Architecture: source amd64 all
Version: 0.9.1-2
Distribution: unstable
Urgency: low
Maintainer: Laurent Bigonville bi...@debian.org
Changed-By: Laurent Bigonville bi...@debian.org
Description: 
 libtelepathy-qt4-2 - Telepathy framework - Qt 4 library
 libtelepathy-qt4-dbg - Qt 4 Telepathy library (debug symbols)
 libtelepathy-qt4-dev - Qt 4 Telepathy library (headers and static library)
 libtelepathy-qt4-doc - Qt 4 Telepathy library (documentation)
 libtelepathy-qt4-farstream2 - Telepathy/Farsight integration - Qt 4 library
Changes: 
 telepathy-qt (0.9.1-2) unstable; urgency=low
 .
   * Team upload.
   * Fix FTBFS due to jquery symlink creation
Checksums-Sha1: 
 78bbc951e9814ecfe08dacd02f759e5ed5a383e0 2389 telepathy-qt_0.9.1-2.dsc
 605ca39ded2d96fbbe50088faa3d43f50a01b5c3 40647 
telepathy-qt_0.9.1-2.debian.tar.gz
 393ca428808cc679794af95f3474201217d7a1ad 2162166 
libtelepathy-qt4-2_0.9.1-2_amd64.deb
 cec396af7195975f399a180e25614ceec591e932 10440 
libtelepathy-qt4-farstream2_0.9.1-2_amd64.deb
 67271dae26a920bf8434a78a838c712a648818e0 308934 
libtelepathy-qt4-dev_0.9.1-2_amd64.deb
 d93285d9e4f7ef01c3c8a64703e2513b8e413fa7 16410310 
libtelepathy-qt4-dbg_0.9.1-2_amd64.deb
 1c24dd177df38a7c022b9428fff3702f61534128 3439812 
libtelepathy-qt4-doc_0.9.1-2_all.deb
Checksums-Sha256: 
 c35b947177dd9fca81a631e135e0e4be849afd4e6fe7eea23db1fce1532ae5cc 2389 
telepathy-qt_0.9.1-2.dsc
 efff51b9e5e1485dc1a4d67d1dd59776f040a93c60781f5e98ad38aa8f93dd59 40647 
telepathy-qt_0.9.1-2.debian.tar.gz
 b4bb284ba73d0990a98d57269ff5c908a14011c7c5814c1ef2905de0d1d3c937 2162166 
libtelepathy-qt4-2_0.9.1-2_amd64.deb
 1ef4a14b1d475f68ba1abc043413bfa199ea5ccd67a6508fd442ea5a4d8cd87e 10440 
libtelepathy-qt4-farstream2_0.9.1-2_amd64.deb
 4f11cc90f0ce1469c7360e370f1a9e2a00677220ed34628d1b1ced8edfcac9b5 308934 
libtelepathy-qt4-dev_0.9.1-2_amd64.deb
 f7d1b3052412aef2c0faefa596f79b7e44eb04c0e3b37a23a5309c7d2d8eb634 16410310 
libtelepathy-qt4-dbg_0.9.1-2_amd64.deb
 a92af6812e9abd63cf953d47ec1000c07a8e57260e7b1ea1f6631a5f87cfe154 3439812 
libtelepathy-qt4-doc_0.9.1-2_all.deb
Files: 
 5c05a130980b89911dc5c4c8064d9e2d 2389 libs optional telepathy-qt_0.9.1-2.dsc
 d24f0359f7c90cc45f012a644d7c6327 40647 libs optional 
telepathy-qt_0.9.1-2.debian.tar.gz
 38bdd7caac80b0d6cf826544c7cec9c7 2162166 libs optional 
libtelepathy-qt4-2_0.9.1-2_amd64.deb
 d9c226afd746a283341259fa06cf0d2a 10440 libs optional 
libtelepathy-qt4-farstream2_0.9.1-2_amd64.deb
 73ef762a530b178e046ff3d1b363fb01 308934 libdevel optional 
libtelepathy-qt4-dev_0.9.1-2_amd64.deb
 2eeff15d8797ba8b9d8f9e134c987de3 16410310 debug extra 
libtelepathy-qt4-dbg_0.9.1-2_amd64.deb
 0553c7a11cd22435eecebeeed6a12e3a 3439812 doc optional 
libtelepathy-qt4-doc_0.9.1-2_all.deb

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

iQEcBAEBCAAGBQJPzei+AAoJEB/FiR66sEPV5rQH+wYiBKfs5PJj4z7FI5LctnJO
YYr4Y+t4DOSq2WivrseWGCISN1auXjyp1CfyhSVM0PeYzlD1s5Mu3Jo20P8R5QFD
RMsFCQiw91MBHZHzLAvfjzsEWpHxbUOh5ki5zswalppiJjiXDmFa2oL2ETt2Vais
ShqztEQwNZ8FEjgdihbn5LT5uEb/Djc3OZQ46uC9EwoDpPZyzAHCpzsQpjzEzmlB
jEc82MbX3zKds9K0JQpMxZQieJFIGUVQmwaSk4Avvg43UrfdPyw5nxVoQKeEZqcH
3GRK5OC1IW0dljgg8/E+lkQvKuC+lAqv7lyBFziOHtTenUFcou1x1jGSsw5nGdo=
=AWmz
-END PGP SIGNATURE-


Accepted:
libtelepathy-qt4-2_0.9.1-2_amd64.deb
  to main/t/telepathy-qt/libtelepathy-qt4-2_0.9.1-2_amd64.deb
libtelepathy-qt4-dbg_0.9.1-2_amd64.deb
  to main/t/telepathy-qt/libtelepathy-qt4-dbg_0.9.1-2_amd64.deb
libtelepathy-qt4-dev_0.9.1-2_amd64.deb
  to main/t/telepathy-qt/libtelepathy-qt4-dev_0.9.1-2_amd64.deb
libtelepathy-qt4-doc_0.9.1-2_all.deb
  to main/t/telepathy-qt/libtelepathy-qt4-doc_0.9.1-2_all.deb
libtelepathy-qt4-farstream2_0.9.1-2_amd64.deb
  to main/t/telepathy-qt/libtelepathy-qt4-farstream2_0.9.1-2_amd64.deb
telepathy-qt_0.9.1-2.debian.tar.gz
  to main/t/telepathy-qt/telepathy-qt_0.9.1-2.debian.tar.gz
telepathy-qt_0.9.1-2.dsc
  to main/t/telepathy-qt/telepathy-qt_0.9.1-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/e1sbrok-bs...@franck.debian.org



Accepted torchat 0.9.9.550-2 (source all)

2012-06-05 Thread Ulises Vitulli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Jun 2012 07:52:10 -0300
Source: torchat
Binary: torchat
Architecture: source all
Version: 0.9.9.550-2
Distribution: unstable
Urgency: medium
Maintainer: Ulises Vitulli der...@debian.org
Changed-By: Ulises Vitulli der...@debian.org
Description: 
 torchat- decentralized instant messenger built on top of the Tor Network
Changes: 
 torchat (0.9.9.550-2) unstable; urgency=medium
 .
   * Remove fixed versioning handling. This introduced a bug showing back
 information to contacts about his/her local buddy name in your roaster.
 Everyone should upgrade.
Checksums-Sha1: 
 98252fbb7b7ac9772b11e964d162a377c5d75a36 1808 torchat_0.9.9.550-2.dsc
 ac64dc00af8c8f7135d1d55be559802c9a8f352b 10695 
torchat_0.9.9.550-2.debian.tar.gz
 579f1e6fb670d0cff876156f6335df212bc04df8 138844 torchat_0.9.9.550-2_all.deb
Checksums-Sha256: 
 0ff493be434b7d8cc9cb8dbff06a977ca329b759f4655621e82a9044db27be7f 1808 
torchat_0.9.9.550-2.dsc
 b1b28d6f951bd64efbca52bc3462809615120d61013bddd9eecd6de15a7e9dd9 10695 
torchat_0.9.9.550-2.debian.tar.gz
 d19c0707054133b6c49163a3c41998b29e11068528e010fa861eddccbb9f1e97 138844 
torchat_0.9.9.550-2_all.deb
Files: 
 30299e163c5b63e8966fdb7e8a705b2d 1808 web optional torchat_0.9.9.550-2.dsc
 40cf5c02a8a0a5ac99b9462753b6d7c9 10695 web optional 
torchat_0.9.9.550-2.debian.tar.gz
 b49396c932bb44dfcc67a79a1342bc9b 138844 web optional 
torchat_0.9.9.550-2_all.deb

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

iQIcBAEBCAAGBQJPzeq0AAoJEGin9OG0lUUKVCIQAL5y3NSD1uUKF555xJqY9pOo
8cK/o4ICdTFcrrUb48lPjrXUSpubtiuh+7EmOIrLRGUjz59NOVDJqNJV+32CShXC
Pq86AYpOj2Va2GVJnmVgGM8hzJSlb/6O0SrzKr0BKBpJ9wjWA2pETGWaMwZhjZ+8
Piij4BKoW4X+Sneqc2w72CcMP/xJxjzowiy/QMjhS5F+XKQHCipoIrJ8biRPJA1s
AmrsXBYxJhsGpuP7+a95UIrMLn8fx5+9FK4Brh9ECdu+hcH4Z17GHDFy+3SOhMNb
smOanXEhlGlbrKTyl0sKmYihficTTJ5kDSDNN8ITi0/zO3tH1WPEbGijVMM9zD+A
HHkX5haz8LmLfUH5m4zRDf7xndR4wVT/q8+E+8BG/OhEFXG618Bu85Qs6iLqw1Rp
choNAsdzr4VcepTbqsVvqIRr3sjBghciCKNbfLOdXZlFhXF7PxEDhI1SVgaJ+p1c
ExLnFPGnqQLNVLBjAwtbe9YvVFd0GvjdtTGpHLhf9wAcU2IXrNeh67x5lKcfvnrT
Zw5n2QQlTN+HMGiEDXrVHBsnbVPBl6zHrbHWlx1z6psHBTIPyoYxEW23s62/q5GT
sGzOWh6DvMtkTUbfFW7f9XATKGTj9fz8/lTavjZnHOoAEr0iBg81jISnU96RMdML
LWe9OZjTaQ3YAabQ4V91
=3NsU
-END PGP SIGNATURE-


Accepted:
torchat_0.9.9.550-2.debian.tar.gz
  to main/t/torchat/torchat_0.9.9.550-2.debian.tar.gz
torchat_0.9.9.550-2.dsc
  to main/t/torchat/torchat_0.9.9.550-2.dsc
torchat_0.9.9.550-2_all.deb
  to main/t/torchat/torchat_0.9.9.550-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/e1sbs39-00031u...@franck.debian.org



Accepted tripwire 2.4.2.2-2 (source i386)

2012-06-05 Thread Alberto Gonzalez Iniesta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 10:45:08 +0200
Source: tripwire
Binary: tripwire
Architecture: source i386
Version: 2.4.2.2-2
Distribution: unstable
Urgency: low
Maintainer: Alberto Gonzalez Iniesta a...@inittab.org
Changed-By: Alberto Gonzalez Iniesta a...@inittab.org
Description: 
 tripwire   - file and directory integrity checker
Closes: 657170 667399 672740
Changes: 
 tripwire (2.4.2.2-2) unstable; urgency=low
 .
   * Acknowledge Christian's NMU. Thank you!
   Closes: #667399, #657170, #672740
   * Do not delete upstream's files on dh_clean.
Checksums-Sha1: 
 7cd952728788781c8f3f1cc6861b82e62427cb74 1116 tripwire_2.4.2.2-2.dsc
 20a931342b6e50b5f98d16d0817a2ca5978f45fa 138576 
tripwire_2.4.2.2-2.debian.tar.gz
 6f449042fa953bab51ca0e9333b9bc87d934c529 3387210 tripwire_2.4.2.2-2_i386.deb
Checksums-Sha256: 
 c8b9bfd64f56b4de144bc290331250929c945ad1cfde3db56cc9c5d5eee1d5c9 1116 
tripwire_2.4.2.2-2.dsc
 b0b9f709c059e1322ab703447ca5f001f91f6b6d90e11953d0881dbe00c56a66 138576 
tripwire_2.4.2.2-2.debian.tar.gz
 9885a14b6823941e3b643d540ae52d5f70608076345dc4c874b054ec2de8c9c8 3387210 
tripwire_2.4.2.2-2_i386.deb
Files: 
 c0227f63d7f8e9e4f23ba01392131c35 1116 utils optional tripwire_2.4.2.2-2.dsc
 6a6344b5adbbdbc316b8ffdbf088ac1f 138576 utils optional 
tripwire_2.4.2.2-2.debian.tar.gz
 b24a5a1773790d3c35a974467ca674a0 3387210 utils optional 
tripwire_2.4.2.2-2_i386.deb

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

iEYEARECAAYFAk/N6jMACgkQxRSvjkukAcM9ogCghwk0zGsiWDvcGAFXdDIBH0Uu
3DAAoOpkO7i0aRZ3B3R72N6I9LKAndfY
=JFUm
-END PGP SIGNATURE-


Accepted:
tripwire_2.4.2.2-2.debian.tar.gz
  to main/t/tripwire/tripwire_2.4.2.2-2.debian.tar.gz
tripwire_2.4.2.2-2.dsc
  to main/t/tripwire/tripwire_2.4.2.2-2.dsc
tripwire_2.4.2.2-2_i386.deb
  to main/t/tripwire/tripwire_2.4.2.2-2_i386.deb


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



Accepted dwdiff 2.0.3-1 (source amd64)

2012-06-05 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 12:47:45 +0100
Source: dwdiff
Binary: dwdiff
Architecture: source amd64
Version: 2.0.3-1
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter b...@debian.org
Changed-By: Barak A. Pearlmutter b...@debian.org
Description: 
 dwdiff - diff program that operates word by word
Closes: 676046
Changes: 
 dwdiff (2.0.3-1) unstable; urgency=low
 .
   * New upstream release
 - remove quilt man slash dash hash patch, integrated upstream
   * policy 3.7.3 (no changes needed)
   * dh9
   * quilt patch to work around icu-config --ldflags issue (closes: #676046)
Checksums-Sha1: 
 c4d063f150bfd4efe8aedede3a4646c12ab4be88 1236 dwdiff_2.0.3-1.dsc
 c823ed2b0a72523d08e69fc371db3b58a71ff956 85869 dwdiff_2.0.3.orig.tar.gz
 d25a1801f55c7c337e1114967aa2fe04615021dc 3581 dwdiff_2.0.3-1.debian.tar.gz
 28f5c5e0c4e56e6a5b9301554635735f89b0ae46 61926 dwdiff_2.0.3-1_amd64.deb
Checksums-Sha256: 
 a96c700254232889b7f0769025b91741334153b140af6eed006cb03ec0c7e12a 1236 
dwdiff_2.0.3-1.dsc
 4cca57fde4e8ee08e5db4435104d890791aca5244ac2e9fd7515bb9958b5ff2c 85869 
dwdiff_2.0.3.orig.tar.gz
 deb6306b9a7cb0f21689e24956ff91fa7dbc504bb0f25a8359b764f2a3130384 3581 
dwdiff_2.0.3-1.debian.tar.gz
 c92b9be5516dbfdc3788cca24051a77a06978d8e67f15f621f1f5c218aba833d 61926 
dwdiff_2.0.3-1_amd64.deb
Files: 
 e51e0064c9ff97dc613727e5758b6f6e 1236 utils extra dwdiff_2.0.3-1.dsc
 9a61dbabacedf5c9c06710fe09f5af4d 85869 utils extra dwdiff_2.0.3.orig.tar.gz
 6315b7a566f532af71381540083cff67 3581 utils extra dwdiff_2.0.3-1.debian.tar.gz
 6be6600bb52b3d6ae33e7d9589b58c87 61926 utils extra dwdiff_2.0.3-1_amd64.deb

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

iEYEARECAAYFAk/N8lUACgkQLz4Gnv7CP7LyGgCcCbGIFYgFRiye2dnbXrAEHUFE
xLEAn2VWtIq5p7/kbtp9gjNrzVm3VDjr
=coLJ
-END PGP SIGNATURE-


Accepted:
dwdiff_2.0.3-1.debian.tar.gz
  to main/d/dwdiff/dwdiff_2.0.3-1.debian.tar.gz
dwdiff_2.0.3-1.dsc
  to main/d/dwdiff/dwdiff_2.0.3-1.dsc
dwdiff_2.0.3-1_amd64.deb
  to main/d/dwdiff/dwdiff_2.0.3-1_amd64.deb
dwdiff_2.0.3.orig.tar.gz
  to main/d/dwdiff/dwdiff_2.0.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/e1sbst4-0004ym...@franck.debian.org



Accepted live-tools 3.0.0-1 (source all)

2012-06-05 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 13:55:13 +0200
Source: live-tools
Binary: live-tools
Architecture: source all
Version: 3.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Live Project debian-l...@lists.debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 live-tools - Debian Live - System Support Scripts
Changes: 
 live-tools (3.0.0-1) unstable; urgency=low
 .
   * Making extraction of the manpage section in manpages/Makefile work
 with multiple dots in the filename.
   * Automatically translate date formats in po files.
Checksums-Sha1: 
 78528c23b03051800124998b50a80dd7731dc054 1259 live-tools_3.0.0-1.dsc
 fa24c022ce87e6f99ccff8d9aef0fda938ea1f05 18155 live-tools_3.0.0.orig.tar.gz
 3531a92bb3b1bfb8b575bae22926aaa125d53072 2933 live-tools_3.0.0-1.debian.tar.gz
 42ca89ce3595e9cb8235419292ffb44b713617c9 7146 live-tools_3.0.0-1_all.deb
Checksums-Sha256: 
 90991c01cd1f9e08849feed4029e83faed65fbcd61222f470c348c4bdd345f72 1259 
live-tools_3.0.0-1.dsc
 fb759c9005275aa2e38ef984b2419fa20dd9ddd85cec597ba13980bfc5a78002 18155 
live-tools_3.0.0.orig.tar.gz
 77beb55b7dd348ec77446a0c5df137131cda51cabeae8e31d0ac12a301706fdd 2933 
live-tools_3.0.0-1.debian.tar.gz
 7a32e3a9453858da6aac21c41a4de3b7a05dd712bc93766bf50c9d2126a516b0 7146 
live-tools_3.0.0-1_all.deb
Files: 
 eae75219d792a26583773846973755e3 1259 misc optional live-tools_3.0.0-1.dsc
 9fcc7de2fea2115726e56be35a23ff26 18155 misc optional 
live-tools_3.0.0.orig.tar.gz
 61f448f8a231e970748d9d0103684858 2933 misc optional 
live-tools_3.0.0-1.debian.tar.gz
 39b3613f1afb567e470975210ee0d20e 7146 misc optional live-tools_3.0.0-1_all.deb

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

iEYEARECAAYFAk/N9GkACgkQ+C5cwEsrK55ILgCghdL1WpRSqGI4AS9QenXmpCJm
dGMAoNzBbk/jmaYenUOXWlebBkIRVPR7
=/aIg
-END PGP SIGNATURE-


Accepted:
live-tools_3.0.0-1.debian.tar.gz
  to main/l/live-tools/live-tools_3.0.0-1.debian.tar.gz
live-tools_3.0.0-1.dsc
  to main/l/live-tools/live-tools_3.0.0-1.dsc
live-tools_3.0.0-1_all.deb
  to main/l/live-tools/live-tools_3.0.0-1_all.deb
live-tools_3.0.0.orig.tar.gz
  to main/l/live-tools/live-tools_3.0.0.orig.tar.gz


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



Accepted unetbootin 575-1 (source i386 all)

2012-06-05 Thread Muneeb Shaikh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 02:23:24 +0530
Source: unetbootin
Binary: unetbootin unetbootin-translations
Architecture: source i386 all
Version: 575-1
Distribution: unstable
Urgency: low
Maintainer: Muneeb Shaikh iammun...@gmail.com
Changed-By: Muneeb Shaikh iammun...@gmail.com
Description: 
 unetbootin - installer of Linux/BSD distributions to a partition or USB drive
 unetbootin-translations - translations for the unetbootin distribution 
installer
Changes: 
 unetbootin (575-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control
- Bumped Standards-Version 3.9.3, changes in copyright header
   * debian/copyright
- Added copyright headers according to new copyright-format
Checksums-Sha1: 
 3236218e20f1a63a9d33cb9a8be60ca3142a4db9 1310 unetbootin_575-1.dsc
 d9925d900c4c4795e18bfac5f531dc56aa061efd 731600 unetbootin_575.orig.tar.gz
 501c091de0775102af54328d4f21dde9652c1e9e 6568 unetbootin_575-1.debian.tar.gz
 53cac86be7f7d4de61e4bfd7174d907b452ecef0 289812 unetbootin_575-1_i386.deb
 5be5d1eb5c662708ff1bd811e565f83f20f64841 598608 
unetbootin-translations_575-1_all.deb
Checksums-Sha256: 
 66c11180e698d7233b1e8f2dac03089324d8d0fb1a78215a546070b01229e7bb 1310 
unetbootin_575-1.dsc
 a098a8683ee724a6dcc82027418d5bef15d1d88d81cafc7b98aa46f5d4b176ba 731600 
unetbootin_575.orig.tar.gz
 634f3dc458ae0e4666a1f2ea93200bc2134be4065eb540d5a82ca003e4b09887 6568 
unetbootin_575-1.debian.tar.gz
 ecb9a9f68fa3a5c8fb439653ed1980f842c67773ec6477bb3fd8f759ee0ef72d 289812 
unetbootin_575-1_i386.deb
 cf8c8bae963de877585cbb0ae9399128663fa25cb603af9f3008d0939fa64beb 598608 
unetbootin-translations_575-1_all.deb
Files: 
 ae92c2b975b6bea18ba254bc48125567 1310 utils optional unetbootin_575-1.dsc
 40311d948104d29031e9fa0baec1504c 731600 utils optional 
unetbootin_575.orig.tar.gz
 151eadfb58c3098dc391fe974cb87b31 6568 utils optional 
unetbootin_575-1.debian.tar.gz
 bb76d05a6fd0c1af31c75141bf7f6906 289812 utils optional 
unetbootin_575-1_i386.deb
 24f73694f54d926105db1a0e52170c29 598608 utils optional 
unetbootin-translations_575-1_all.deb

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

iEYEARECAAYFAk/N3csACgkQchorMMFUmYzPzgCgwPQvBzY8RHW/Mf3d8Df8PBqn
sx8An3xdwEvPm11RkRm6s7qUrdP9VvZw
=4B/y
-END PGP SIGNATURE-


Accepted:
unetbootin-translations_575-1_all.deb
  to main/u/unetbootin/unetbootin-translations_575-1_all.deb
unetbootin_575-1.debian.tar.gz
  to main/u/unetbootin/unetbootin_575-1.debian.tar.gz
unetbootin_575-1.dsc
  to main/u/unetbootin/unetbootin_575-1.dsc
unetbootin_575-1_i386.deb
  to main/u/unetbootin/unetbootin_575-1_i386.deb
unetbootin_575.orig.tar.gz
  to main/u/unetbootin/unetbootin_575.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/e1sbsvz-00056c...@franck.debian.org



Accepted ecasound 2.8.1-9 (source all amd64)

2012-06-05 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 10:54:29 +0200
Source: ecasound
Binary: ecasound ecatools libecasoundc1 libecasoundc-dev libecasoundc2.2-dev 
libkvutils4 libkvutils-dev libkvutils2.2-dev python-ecasound python-ecasound2.2 
ruby-ecasound libecasound-ruby1.8 ecasound-el ecasound-doc
Architecture: source amd64 all
Version: 2.8.1-9
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessandro Ghedini gh...@debian.org
Description: 
 ecasound   - multitrack-capable audio recorder and effect processor
 ecasound-doc - documentation files for Ecasound
 ecasound-el - multitrack-capable audio recorder and effect processor (emacs)
 ecatools   - multitrack-capable audio recorder and effect processor (tools)
 libecasound-ruby1.8 - transitional dummy package for ruby-ecasound
 libecasoundc-dev - multitrack-capable audio recorder and effect processor (C 
dev lib
 libecasoundc1 - multitrack-capable audio recorder and effect processor (C 
library
 libecasoundc2.2-dev - transitional dummy package for libecasoundc-dev
 libkvutils-dev - multitrack-capable audio recorder and effect processor 
(kvutils d
 libkvutils2.2-dev - transitional dummy package for libkvutils-dev
 libkvutils4 - multitrack-capable audio recorder and effect processor (kvutils l
 python-ecasound - multitrack-capable audio recorder and effect processor 
(python bi
 python-ecasound2.2 - transitional dummy package for python-ecasound
 ruby-ecasound - multitrack-capable audio recorder and effect processor (ruby 
bind
Closes: 676082
Changes: 
 ecasound (2.8.1-9) unstable; urgency=low
 .
   * Fix ruby-ecasound source install path (Closes: #676082)
Checksums-Sha1: 
 50097c417091cce41c0fd1a3a11221daae8a2c0a 2881 ecasound_2.8.1-9.dsc
 17de5dca2394bf97ad3349b9b02474e7038201e4 32518 ecasound_2.8.1-9.debian.tar.gz
 018ed80d9945c318e216459248dc3cb9b6a023ed 771218 ecasound_2.8.1-9_amd64.deb
 d4cff81a9de048d76a0283de57d064cd5bbe1b49 119710 ecatools_2.8.1-9_amd64.deb
 ce826dce4304a80e843878ae2ed34921336ed469 74818 libecasoundc1_2.8.1-9_amd64.deb
 ff183b99166bf74aaa37380d7aab8acfff19e779 76316 
libecasoundc-dev_2.8.1-9_amd64.deb
 667adb26f3bea5c4b0b86a872f5079cf504f68e6 61834 
libecasoundc2.2-dev_2.8.1-9_all.deb
 c2de06543eb9f2cad8904dd3982c9949b3bfda83 91322 libkvutils4_2.8.1-9_amd64.deb
 8d164f12ae774a1d11fd126d36a2dfc0c31328c5 105248 
libkvutils-dev_2.8.1-9_amd64.deb
 f820e5143697ab1863b7fd9f8b6742b6c7be5bd7 61840 
libkvutils2.2-dev_2.8.1-9_all.deb
 f2905e7d5bc2af6dd75322a66314b91544c12252 67640 python-ecasound_2.8.1-9_all.deb
 774eb8f171720e2e831facc1f74fe1409ce56a4f 61836 
python-ecasound2.2_2.8.1-9_all.deb
 47d8a5be4102d3e8635360b400febdce87d58f4e 64766 ruby-ecasound_2.8.1-9_all.deb
 e5717cf6c8b529da0ae64e51c6b5d5e5fa62ad9e 61840 
libecasound-ruby1.8_2.8.1-9_all.deb
 b0a98a92545dc5afe9e2e924015ccdd13ad73efe 86706 ecasound-el_2.8.1-9_all.deb
 c291dbeea13404a60e4f402db8db20305ed69361 716734 ecasound-doc_2.8.1-9_all.deb
Checksums-Sha256: 
 ffd48ba1fd58bd1861bb438866f743e4f1ac001c3176defc308c50418f0bed8b 2881 
ecasound_2.8.1-9.dsc
 27fe513130b1fb8d702e636bd816db228be4510019274273213fd1b5308f08af 32518 
ecasound_2.8.1-9.debian.tar.gz
 ec713901bfc12533c08d0b58625e265baa4c8c44c3b051fda61f1211640d9fcf 771218 
ecasound_2.8.1-9_amd64.deb
 43d65bddd41cc461c5128fd3aecedd1449004e3f86294b37745d1b9393449f84 119710 
ecatools_2.8.1-9_amd64.deb
 d80c3ece964dfa3b10b7c235a6c84b33b61e6f4ebc68e03762490904528db6b4 74818 
libecasoundc1_2.8.1-9_amd64.deb
 fb09a4e5b4fcf518b152a35f46502ac6f8b046fd69f201a0c90a5cf7e6c3764f 76316 
libecasoundc-dev_2.8.1-9_amd64.deb
 f572a720b505f50729230f496e20a8456d4c6ad00584e79bfe438267db37106f 61834 
libecasoundc2.2-dev_2.8.1-9_all.deb
 c5efc1ac34ea128263cf6b478e174be7ae848631d119e2edb7e6de406450bf93 91322 
libkvutils4_2.8.1-9_amd64.deb
 777d6d8024d091f9eea19fdc8b50963357532636981aa2a1cb605c9f758ae714 105248 
libkvutils-dev_2.8.1-9_amd64.deb
 70bc5934155702ee88e277da12005c6a7a5aaa5dc7ca33b86e5589847f03605a 61840 
libkvutils2.2-dev_2.8.1-9_all.deb
 9d07a2c1dd29653d39c7159f552fc8bba3dab2bf01ec354eb46274f9ec0940bf 67640 
python-ecasound_2.8.1-9_all.deb
 ebcb58a71d52a9d9392d6ea2e7e26d6f27aae6338ca3e9be18c322f6341d6b4d 61836 
python-ecasound2.2_2.8.1-9_all.deb
 61b454da56e4ad6693e03099f064857040613245671f7ee87dc0fb30855687c0 64766 
ruby-ecasound_2.8.1-9_all.deb
 947e6668463714c22957901c527a3c29d8c4c416579d8a50813454fed25850d3 61840 
libecasound-ruby1.8_2.8.1-9_all.deb
 442ce201c941e7f067c902d9490516e412725bdd34062662915a90dd8bd20b1e 86706 
ecasound-el_2.8.1-9_all.deb
 9f4f94ec7785498313ab9d9b80208a8d78be68df609c7266c95c219f2573a3dc 716734 
ecasound-doc_2.8.1-9_all.deb
Files: 
 eb158514d133fe557ba336cdbfa45d77 2881 sound extra ecasound_2.8.1-9.dsc
 2d2b3b54577c41a38748af94dd54d156 32518 sound extra 
ecasound_2.8.1-9.debian.tar.gz
 fbdeefe2c1c60a5e08e4098eddc61277 771218 sound extra ecasound_2.8.1-9_amd64.deb
 

Accepted valgrind 1:3.7.0-6 (source amd64)

2012-06-05 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 12:35:02 +0200
Source: valgrind
Binary: valgrind valgrind-dbg valgrind-mpi
Architecture: source amd64
Version: 1:3.7.0-6
Distribution: unstable
Urgency: low
Maintainer: Alessandro Ghedini gh...@debian.org
Changed-By: Alessandro Ghedini gh...@debian.org
Description: 
 valgrind   - instrumentation framework for building dynamic analysis tools
 valgrind-dbg - instrumentation framework for building dynamic analysis tools 
(de
 valgrind-mpi - instrumentation framework for building dynamic analysis tools 
(MP
Closes: 676029
Changes: 
 valgrind (1:3.7.0-6) unstable; urgency=low
 .
   * Explicitly pass -I/usr/include/$(DEB_HOST_GNU_TYPE) compiler flag
 (Closes: #676029)
   * Remove ${shlibs:Depends} from valgrind-dbg depends
Checksums-Sha1: 
 047c42127a96b3a82e9452b31e25daba5dcf8b8f 2168 valgrind_3.7.0-6.dsc
 3a05494475172ee423bb64af3630e5b91013a2cb 31601 valgrind_3.7.0-6.debian.tar.gz
 77317a20cb738fe18e3568739ef8bd6a56ff4743 28760384 valgrind_3.7.0-6_amd64.deb
 261857ca7bc0bf15f2560a3d7bc830d183b325a6 73569780 
valgrind-dbg_3.7.0-6_amd64.deb
 bea714ec4ec151c04ea913346a244662f4d0db6d 126422 valgrind-mpi_3.7.0-6_amd64.deb
Checksums-Sha256: 
 4cf7b7c207e18ebb01e447974178594afbb2e58ca11dba9f26e56eb28f5d5f63 2168 
valgrind_3.7.0-6.dsc
 8a5c797763434cb7500ba02337f0bad7648efedfbb959dc201ee677538e263d5 31601 
valgrind_3.7.0-6.debian.tar.gz
 f65c8d0dcd9419203b5e0565e85b6167e8a77ee82b1bc18f19bbda5f89340fe0 28760384 
valgrind_3.7.0-6_amd64.deb
 e14a0215c23df7e6d7eeebe9fa2ca480c217b4ab7fe91860902231cb6f78b20c 73569780 
valgrind-dbg_3.7.0-6_amd64.deb
 71877f2b0cc680317624b365be8c2d35b2580260fd506f2663803fdaa7897e8a 126422 
valgrind-mpi_3.7.0-6_amd64.deb
Files: 
 781d86cd8d2b0d7ea9ccd0a16542a75b 2168 devel optional valgrind_3.7.0-6.dsc
 5144b481b62ecb22e6f8fe0fe1a3aed0 31601 devel optional 
valgrind_3.7.0-6.debian.tar.gz
 167bb3f1f2637e6e4d0f928ac5bd1100 28760384 devel optional 
valgrind_3.7.0-6_amd64.deb
 f96d740c0e16a29f0c0a7210b097ddbd 73569780 debug extra 
valgrind-dbg_3.7.0-6_amd64.deb
 9901e752b4fc2b83a9800ed194b0e797 126422 devel optional 
valgrind-mpi_3.7.0-6_amd64.deb

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

iQIcBAEBAgAGBQJPzegJAAoJEK+lG9bN5XPLS0kP/36d1MmQFMuqLFcDAOdHaJsu
CXefUHzW9XvcQU+cftmGrbQo+Onj9EelrKqqESzcxPaFyPckSA5GicFbbLpHW4ln
CEzGv6u/K4eLwquP1pQ2auTqqsT9nVVAAGR+q4jO3O4CvFQSbQp1cCTwN9qk5wuK
DhTtKL6+UhMletYAUPbw+qOyBuX9SS+S32TfENCCdeOVAp0SN8dP2ie+HPMhzAOQ
oBiCZTFs7uikfeFsvs7pkqkOvyNk5bdIzfrXZJXaz6FUkRtWKciOckO6g+hJgGPj
D4PQtFoJPbR3xac/WAN5R2yw7HUOLAr7CltocNAXZ468CpkDu0qIgCv8SUFmw37l
RcRgfByZ/VBnvQkXcnjnQ3UEHVUUz5o85FZzHw2GmWln3RJFPr1rVlJTc1qwKlB+
T76o2ifzwKzebARsDp/XRAaXi2g7zpv0hrvWAZ51o2tuM2/SkBs0qXI6QCi6o473
I74r2ggPmS1PCTW3OHuTDY5T4hqwMw+Aml+h+UQh+SPcbYqecofO62Q+th4J2FxL
D1V+0ToBYUd62tipGzo5S5ZBY6D3Ms/Qv3svwzv9eFOtCe6sFPlT2bTrW5NFgoYe
995Hq2SLxM/F6olEUViem9hFaOv0lWAr0Krtqwz+f4xZf5sdxakG10vEDyGrbzOA
uehBzs+XmFvLsB5pY75Y
=Ld55
-END PGP SIGNATURE-


Accepted:
valgrind-dbg_3.7.0-6_amd64.deb
  to main/v/valgrind/valgrind-dbg_3.7.0-6_amd64.deb
valgrind-mpi_3.7.0-6_amd64.deb
  to main/v/valgrind/valgrind-mpi_3.7.0-6_amd64.deb
valgrind_3.7.0-6.debian.tar.gz
  to main/v/valgrind/valgrind_3.7.0-6.debian.tar.gz
valgrind_3.7.0-6.dsc
  to main/v/valgrind/valgrind_3.7.0-6.dsc
valgrind_3.7.0-6_amd64.deb
  to main/v/valgrind/valgrind_3.7.0-6_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/e1sbtce-0007xa...@franck.debian.org



Accepted libsvn-web-perl 0.53-3.1 (source all)

2012-06-05 Thread Hilko Bengen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 15:09:13 +0200
Source: libsvn-web-perl
Binary: libsvn-web-perl
Architecture: all source
Version: 0.53-3.1
Distribution: unstable
Urgency: low
Maintainer: Hilko Bengen ben...@debian.org
Changed-By: Hilko Bengen ben...@debian.org
Closes: 552468
Description: 
 libsvn-web-perl - Subversion repository web frontend
Changes: 
 libsvn-web-perl (0.53-3.1) unstable; urgency=low
 .
   * Non-maintainer upload
   * Added missing dependencies (Closes: #552468)
Checksums-Sha1: 
 e6cae5ebffabf22520ec65ebdbd1527e64e2953c 133496 
libsvn-web-perl_0.53-3.1_all.deb
 1ddd787644ccbdee5dc510f59075ecec353ca6c1 1280 libsvn-web-perl_0.53-3.1.dsc
 9f2e6b703f9068a44a5999e7a6f1d10f3596e82b 2869 libsvn-web-perl_0.53-3.1.diff.gz
Checksums-Sha256: 
 7c76214ca11d65dd8aef6113fa8dc8dea80f5ef9e1871b6dddc5d7791d04d8cf 133496 
libsvn-web-perl_0.53-3.1_all.deb
 5e8640590b3bbbc52a4a3d0b069dabba1e64d7cd216fc3d599249217c56af26c 1280 
libsvn-web-perl_0.53-3.1.dsc
 069ef679b40edd9f229d8531d6149bacabdb4658f92911a3f46e961cac0699cf 2869 
libsvn-web-perl_0.53-3.1.diff.gz
Files: 
 2d0ee448ee3872da2d9fc32abcd76884 133496 perl optional 
libsvn-web-perl_0.53-3.1_all.deb
 7bcfb05922d0d4284c4c69f6a2adda6e 1280 perl optional 
libsvn-web-perl_0.53-3.1.dsc
 153e009f410639d6b56077326771e064 2869 perl optional 
libsvn-web-perl_0.53-3.1.diff.gz

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

iEYEARECAAYFAk/OBt0ACgkQUCgnLz/SlGgdIgCg3jxZnn/8DZpxoclGG6ODalVI
T0EAn0shdFLD8sWDfFu2Vnusu7S8QyUi
=xjZ8
-END PGP SIGNATURE-


Accepted:
libsvn-web-perl_0.53-3.1.diff.gz
  to main/libs/libsvn-web-perl/libsvn-web-perl_0.53-3.1.diff.gz
libsvn-web-perl_0.53-3.1.dsc
  to main/libs/libsvn-web-perl/libsvn-web-perl_0.53-3.1.dsc
libsvn-web-perl_0.53-3.1_all.deb
  to main/libs/libsvn-web-perl/libsvn-web-perl_0.53-3.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/e1sbtsk-00044m...@franck.debian.org



Accepted gdal 1.9.0-3 (source i386 all)

2012-06-05 Thread Francesco Paolo Lovergine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 14:27:39 +0200
Source: gdal
Binary: libgdal1 libgdal1-dev libgdal-dev libgdal-doc gdal-bin python-gdal 
libgdal-perl libgdal-ruby1.8 libgdal-ruby
Architecture: source i386 all
Version: 1.9.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-de...@lists.alioth.debian.org
Changed-By: Francesco Paolo Lovergine fran...@debian.org
Description: 
 gdal-bin   - Geospatial Data Abstraction Library - Utility programs
 libgdal-dev - Geospatial Data Abstraction Library - Development files
 libgdal-doc - Documentation for the Geospatial Data Abstraction Library
 libgdal-perl - Perl bindings to the Geospatial Data Abstraction Library
 libgdal-ruby - Ruby bindings to the Geospatial Data Abstraction Library
 libgdal-ruby1.8 - Ruby 1.8 bindings to the Geospatial Data Abstraction Library
 libgdal1   - Geospatial Data Abstraction Library
 libgdal1-dev - Geospatial Data Abstraction Library - Development files
 python-gdal - Python bindings to the Geospatial Data Abstraction Library
Closes: 672405 675972
Changes: 
 gdal (1.9.0-3) unstable; urgency=low
 .
   * Now b-depending on Ruby 1.8 explicitly.
 (closes: #675972)
   * Now b-depending on poppler-private package.
 (closes: #672405)
Checksums-Sha1: 
 e271088662176318f714b2b54083d3be9d105c0e 2265 gdal_1.9.0-3.dsc
 a393933f6d9dd09d0a441f3c1e46af87915d5ee1 1250773 gdal_1.9.0-3.debian.tar.gz
 793c8a618afd9e7b1966a70220c46151dd29 4852690 libgdal1_1.9.0-3_i386.deb
 ad15dcab578eeaf5fff6bcc683d9f456e14f0851 5785252 libgdal-dev_1.9.0-3_i386.deb
 84ebdf44ea5af129a1bc4a333cc36ae8188b0191 327638 gdal-bin_1.9.0-3_i386.deb
 e33a143559b723f7af21b07b22636cb1d5b80e46 735696 python-gdal_1.9.0-3_i386.deb
 583fd1d92a8308c0ce6ebbed88d0c233f6126a4c 399892 libgdal-perl_1.9.0-3_i386.deb
 5fef275b2cc7b9da71027c2e017ac5726a53bf1a 265620 
libgdal-ruby1.8_1.9.0-3_i386.deb
 54cf6d64da5203944e7633b257d429241d436f2b 103206 libgdal-ruby_1.9.0-3_i386.deb
 7be66a5ef21b4adbed699e1567364c2fce1a9cad 103656 libgdal1-dev_1.9.0-3_all.deb
 a97a95a7ce5512a3097129d6d9b5e196a175f741 2864142 libgdal-doc_1.9.0-3_all.deb
Checksums-Sha256: 
 1918523a3762f45141adffe1ed6dc515c0334e0291423d8be584162c109c6deb 2265 
gdal_1.9.0-3.dsc
 9e4d807821533d0af8c65dce3db2b33414dbd412947ff102aa43cc5ac76a7888 1250773 
gdal_1.9.0-3.debian.tar.gz
 c29fd61637dfe9907bad44373d37e59826e97a155196814d1c778094e826617d 4852690 
libgdal1_1.9.0-3_i386.deb
 5ee8ea7cba0a0ac4db400597434381b306f6a14c8dbffa7cb8b0a8e278408ea5 5785252 
libgdal-dev_1.9.0-3_i386.deb
 66508326c38c648275b486dac5497ac8b4bfc8bff6f2f3b1e5aa3a4776adbc68 327638 
gdal-bin_1.9.0-3_i386.deb
 8bbc15409235a79da65f25f7e2628110f5ec34cde8f183f1f61f15590fd4ba60 735696 
python-gdal_1.9.0-3_i386.deb
 323c0bd2fc1592b67efcd0416469c0e0e7bb39ce99e215134a265217f4e38208 399892 
libgdal-perl_1.9.0-3_i386.deb
 e25a02aae892e7817ecfe43dbcc720dcfeb571fa8e49a584c8c233ff83c3702d 265620 
libgdal-ruby1.8_1.9.0-3_i386.deb
 10421e2abdda3adf20db94b93f868c531fb701044c19b2d5bb4fba1f5439980d 103206 
libgdal-ruby_1.9.0-3_i386.deb
 58d587f416020a3af1da3df5b88ebf5cf8042a5f13ece2fb119e2725f63af9fa 103656 
libgdal1-dev_1.9.0-3_all.deb
 40298c1d585f41b6afc91a8d9fcd2351450740d441ab051fffb179f630d08857 2864142 
libgdal-doc_1.9.0-3_all.deb
Files: 
 198c1a913afbc814515fa4bc76655e8e 2265 science extra gdal_1.9.0-3.dsc
 e7302ea63dd0f6da8460bcbcce6bb8a1 1250773 science extra 
gdal_1.9.0-3.debian.tar.gz
 e0e1642dd78a87c62b72eb54a36d15ab 4852690 libs extra libgdal1_1.9.0-3_i386.deb
 f0a7d1e2d17885a088f6cc9fd7e8d445 5785252 libdevel extra 
libgdal-dev_1.9.0-3_i386.deb
 276f8a1280b2000715130370a0e3e1a7 327638 science extra gdal-bin_1.9.0-3_i386.deb
 e502276315524a3e93c98928a5c36b33 735696 python extra 
python-gdal_1.9.0-3_i386.deb
 947d9c80433dc9ac6f2154c1f70890eb 399892 perl extra 
libgdal-perl_1.9.0-3_i386.deb
 6e3972600dbee14d03b742286eecdfaa 265620 ruby extra 
libgdal-ruby1.8_1.9.0-3_i386.deb
 907dc60e95d0a307653c38e47e09796b 103206 ruby extra 
libgdal-ruby_1.9.0-3_i386.deb
 f630fe1f9ff6975ff7de795c5de03a81 103656 libdevel extra 
libgdal1-dev_1.9.0-3_all.deb
 df636d6188f83cb0c1dcfe3e67ae153a 2864142 doc extra libgdal-doc_1.9.0-3_all.deb

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

iEYEARECAAYFAk/OCpUACgkQpFNRmenyx0cGWQCgox+5fDF6Lrupf7GB/na7+zU+
CNoAoPOglKnggpBkCVdn4HTmjq7zU0Z/
=EWEo
-END PGP SIGNATURE-


Accepted:
gdal-bin_1.9.0-3_i386.deb
  to main/g/gdal/gdal-bin_1.9.0-3_i386.deb
gdal_1.9.0-3.debian.tar.gz
  to main/g/gdal/gdal_1.9.0-3.debian.tar.gz
gdal_1.9.0-3.dsc
  to main/g/gdal/gdal_1.9.0-3.dsc
libgdal-dev_1.9.0-3_i386.deb
  to main/g/gdal/libgdal-dev_1.9.0-3_i386.deb
libgdal-doc_1.9.0-3_all.deb
  to main/g/gdal/libgdal-doc_1.9.0-3_all.deb
libgdal-perl_1.9.0-3_i386.deb
  to main/g/gdal/libgdal-perl_1.9.0-3_i386.deb
libgdal-ruby1.8_1.9.0-3_i386.deb
  to main/g/gdal/libgdal-ruby1.8_1.9.0-3_i386.deb
libgdal-ruby_1.9.0-3_i386.deb
  to 

Accepted dbus 1.6.0-1 (source all amd64)

2012-06-05 Thread Simon McVittie
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Jun 2012 14:23:46 +0100
Source: dbus
Binary: dbus dbus-x11 libdbus-1-3 dbus-1-doc libdbus-1-dev dbus-1-dbg
Architecture: source amd64 all
Version: 1.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Utopia Maintenance Team 
pkg-utopia-maintain...@lists.alioth.debian.org
Changed-By: Simon McVittie s...@debian.org
Description: 
 dbus   - simple interprocess messaging system (daemon and utilities)
 dbus-1-dbg - simple interprocess messaging system (debug symbols)
 dbus-1-doc - simple interprocess messaging system (documentation)
 dbus-x11   - simple interprocess messaging system (X11 deps)
 libdbus-1-3 - simple interprocess messaging system (library)
 libdbus-1-dev - simple interprocess messaging system (development headers)
Changes: 
 dbus (1.6.0-1) unstable; urgency=low
 .
   * Merge from experimental (1.5.12 was accidentally uploaded to unstable)
   * New upstream stable release
   * debian/watch: only match stable (0.even.x) releases
Checksums-Sha1: 
 e3c90d2d8396deee92f88d62d772fcefff76c958 2507 dbus_1.6.0-1.dsc
 9bfc971ff4cafa2741050d53a98cc7bfdc56880a 1925858 dbus_1.6.0.orig.tar.gz
 96dceb01c45d33f1eaacda484839f715e5e3de50 33989 dbus_1.6.0-1.debian.tar.gz
 a21ae1ec1efe8a72b5093aee0e9da3263920a0ae 396804 dbus_1.6.0-1_amd64.deb
 7769ba1dd201d5bb7013781d6f910c05c0a99ab1 58264 dbus-x11_1.6.0-1_amd64.deb
 ec945d94a79c70497ecc3a6a9dac42644de4a949 170752 libdbus-1-3_1.6.0-1_amd64.deb
 1e894fe4c7cea7a75440585593925ff35e4bd099 2374698 dbus-1-doc_1.6.0-1_all.deb
 ba01cda574128ffece23c1de0ba29c0b883d4482 245014 libdbus-1-dev_1.6.0-1_amd64.deb
 ed792ceb165d548a0d5a2a279dbff0e735bf23be 8272362 dbus-1-dbg_1.6.0-1_amd64.deb
Checksums-Sha256: 
 13feee2784ee8078fd029c0a5679c95855cd5de0c3e5abea17a14547207f17bd 2507 
dbus_1.6.0-1.dsc
 f0dda7e5f1c4a5bac4c690c602fbd7dce67907b967fa6986466e022c31e055ee 1925858 
dbus_1.6.0.orig.tar.gz
 92352cb593352aa2aca510da9484dde834bcdd1db4eebaf299f7de535d26190b 33989 
dbus_1.6.0-1.debian.tar.gz
 8faea9f819ffbde7a3472618ff6db69fc9e10a44725b3da1fe3ade1df13a944b 396804 
dbus_1.6.0-1_amd64.deb
 52333eb1aac395d92ded141df5a3b6c0505a0d9a81062a12f6868dc090aa3d94 58264 
dbus-x11_1.6.0-1_amd64.deb
 0990e2b04ff5a979ae6182b2002941d287aef5d5c445b88d54573a5d00646068 170752 
libdbus-1-3_1.6.0-1_amd64.deb
 405c59d51071c1be1450a9960bff8d771cc12a1c41b28e7a155039b7d274cb7d 2374698 
dbus-1-doc_1.6.0-1_all.deb
 56a778e09529ef6e2651639c29668c578f4e234897de5a4418540611571d8686 245014 
libdbus-1-dev_1.6.0-1_amd64.deb
 fafffd15c59ba1b6b9a860df428c03bdc5605a40c4311f1801986b5188c37bad 8272362 
dbus-1-dbg_1.6.0-1_amd64.deb
Files: 
 a3db00d1b727654c247f5479c9a00735 2507 admin optional dbus_1.6.0-1.dsc
 16dcae2dd0c76e398381601ac9acdec4 1925858 admin optional dbus_1.6.0.orig.tar.gz
 866a48f2fb0946fb7094e262a06a07c3 33989 admin optional 
dbus_1.6.0-1.debian.tar.gz
 387ca7e37672858517ce350d34de8010 396804 admin optional dbus_1.6.0-1_amd64.deb
 db4046102cacc37b39f2784eca842e9f 58264 x11 optional dbus-x11_1.6.0-1_amd64.deb
 d340c9cc8b307ab317416275e5b8aefd 170752 libs optional 
libdbus-1-3_1.6.0-1_amd64.deb
 f6154bc4edd7c71f6e706340af345d2e 2374698 doc optional 
dbus-1-doc_1.6.0-1_all.deb
 b2b65603f18f83e1fa3fdb596c281c2d 245014 libdevel optional 
libdbus-1-dev_1.6.0-1_amd64.deb
 b53de2e50e3155dcb2c95486e853d849 8272362 debug extra 
dbus-1-dbg_1.6.0-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIVAwUBT84TqE3o/ypjx8yQAQj8ZA/+Pw3BykIqV11LUD0aUn4gLOhge0ju7mMz
TBMRV53PDAScGCdzH1GxH8GHYxZeBcUs2bZqvftCADhx4wDTC7K9eUVxoOu4VlnE
kOPGLx1vQgUnbQpynAoPe4ccXWtXEcACO1UV1xlimscFVztMvPurlQK6gS6NqWk9
+bZxhYG6DZ79hG59m5MIU6Ggs18hxtKDe0EJuaqyvYU0ZhOTz6fpOFAYlMG+eLh3
5OeUzqB7sQ41DX8OOlBo6dCgbhXFnOT6E8A1lXnVGvP4nnVnCIJbOJb0udR2krZF
/DXUNlQQG9gzSmFyQtV+dZMyvGCOPYk8liaDbHPM3xN6eK51MmUzYueuAtQpnsSr
RF66+V2gxz5JJnqHP+HBHd2bEuIdwRelp65k2GxT95F+BUByMqDmqpKdyqn2dKph
VYhc7k2OTlkpf2ZiX9AbSgSwdGfWZsxnb5Cq+xEyL3QvmJM08aHeqsQxI5iTewWC
BcA00b0kP/HK21HUP+fFaktkfFZ5EgVY67FINChXKggT7Xl65V5UeBrMI5mx2vkH
3im93s3Q9bvxd8vB/L+PxPNZVbICBdkN/Im7zzj/7eh92gax/WNp8mY47qu4bhgJ
RcP7kc5kpECJ4GHg8WT5PyycVW45zlVNes3iiOpZF7yYtx2EGR+7cUrAfIv4nm9j
uPOJl8mD4WE=
=Q2/p
-END PGP SIGNATURE-


Accepted:
dbus-1-dbg_1.6.0-1_amd64.deb
  to main/d/dbus/dbus-1-dbg_1.6.0-1_amd64.deb
dbus-1-doc_1.6.0-1_all.deb
  to main/d/dbus/dbus-1-doc_1.6.0-1_all.deb
dbus-x11_1.6.0-1_amd64.deb
  to main/d/dbus/dbus-x11_1.6.0-1_amd64.deb
dbus_1.6.0-1.debian.tar.gz
  to main/d/dbus/dbus_1.6.0-1.debian.tar.gz
dbus_1.6.0-1.dsc
  to main/d/dbus/dbus_1.6.0-1.dsc
dbus_1.6.0-1_amd64.deb
  to main/d/dbus/dbus_1.6.0-1_amd64.deb
dbus_1.6.0.orig.tar.gz
  to main/d/dbus/dbus_1.6.0.orig.tar.gz
libdbus-1-3_1.6.0-1_amd64.deb
  to main/d/dbus/libdbus-1-3_1.6.0-1_amd64.deb
libdbus-1-dev_1.6.0-1_amd64.deb
  to main/d/dbus/libdbus-1-dev_1.6.0-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: 

Accepted deja-dup 20.2-2.1 (source amd64)

2012-06-05 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 03 Jun 2012 16:37:10 +0200
Source: deja-dup
Binary: deja-dup deja-dup-dbg
Architecture: source amd64
Version: 20.2-2.1
Distribution: unstable
Urgency: low
Maintainer: Jose Carlos Garcia Sogo js...@debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 deja-dup   - Backup utility
 deja-dup-dbg - Déjà Dup debugging symbols
Closes: 666225
Changes: 
 deja-dup (20.2-2.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix configure:3028: error: xmllint not found:
 change build dependency from itstool to yelp-tools; thanks, Michael Biebl.
 (Closes: #666225)
Checksums-Sha1: 
 1514e34cec10cc7a6152e91fa938f84bb9601766 2050 deja-dup_20.2-2.1.dsc
 85c74188b98ef150eb0f3eb95c1da74108120a3e 4417 deja-dup_20.2-2.1.debian.tar.gz
 7c8f2f5a8d485f6cfe63cf6fe4f5e59f8f6f8687 988662 deja-dup_20.2-2.1_amd64.deb
 e18380eaf517cfee056340342420e5a471e89154 1567512 
deja-dup-dbg_20.2-2.1_amd64.deb
Checksums-Sha256: 
 b756155a584b746ee8a153262040afe40f633b9142a4295d3e1df11bfbb4e346 2050 
deja-dup_20.2-2.1.dsc
 7f0dc9a3971a3d3fe0ebc31d6740355fba45d2be70c10875f11ef389fa322587 4417 
deja-dup_20.2-2.1.debian.tar.gz
 be0404e34e9c3d6f59b205fb0e183a65a70b89dc1602d9b9c71a6adb33924245 988662 
deja-dup_20.2-2.1_amd64.deb
 e8cd4d6b5c8d5e3d784c16aa3a8c7251a4346b3e967461bbacb39dae1ca11d9e 1567512 
deja-dup-dbg_20.2-2.1_amd64.deb
Files: 
 9df9c135c0a0dc19ba5c00f1ac649dcd 2050 utils optional deja-dup_20.2-2.1.dsc
 a9b1abcb6aa093b78b041e53deee6208 4417 utils optional 
deja-dup_20.2-2.1.debian.tar.gz
 45f3991905d179b1217a5fd2bebf664f 988662 utils optional 
deja-dup_20.2-2.1_amd64.deb
 8764031c20ffac5fe90293c13dbbe87c 1567512 debug extra 
deja-dup-dbg_20.2-2.1_amd64.deb

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

iQIcBAEBCAAGBQJPy3c3AAoJELs6aAGGSaoGsMgQAMLBm82yYau7GofyWR1pJl4R
BHgj4XxK5qjV17EUcpMFrdfqiR4kliT05qz5T//s4AjWHTshTIIOO5VQ9v3ucBco
PoNBFazv4RTEOqtEf+mfRkASdWGj5hZYtif9oBHUau3Kjn3f1uFjm2ch/RJCvNBR
oG3X1ldPkdRuuiA7Eblj4BPByeCNbFph9P6upDmhWLrClAGvoEDAjfyQswWHHqW8
6BJgm2tiknOE1nQhyuh/FUg84p7ykOQGLwnBzPnUEFZtbSmNJRVCmLetFpeCGN76
MS0gMrbX8YkM3Q54hGE9kpAE1JjcZKuUmT6Z8KI1Lv8wtWYytujupLaAP/dfzd4b
ObWeHfZpotnMh8rgkt4kzVCSkHMSMk3wUj7gy7ncwnBHjwA0OxEu5ppV9tJTSoLt
yyZCiOMtWZ5RDk7KayBjhtan4sEdepMoVJZqYYs9MEIHLI7VmhMho95FqKIW4uh+
frYK8g3XnCblgwrVT8odn9+bRq+wbY1mENaq1o3NXx5af61hvYscu+VvMKPWSkuj
wKmCZT6mwB//jnUw67JS7oNIiwYuLoCipbNCzz7oBIPGAclMvEdpsUtKioyCtT8L
QWobmsLeefiikELbdbrhIy1jXxWFrtJn2QP9AEnguQlnR6v/EPjG0ID0ZswHnYwl
0PVvZJm3h42kmJpx+fpc
=8yCA
-END PGP SIGNATURE-


Accepted:
deja-dup-dbg_20.2-2.1_amd64.deb
  to main/d/deja-dup/deja-dup-dbg_20.2-2.1_amd64.deb
deja-dup_20.2-2.1.debian.tar.gz
  to main/d/deja-dup/deja-dup_20.2-2.1.debian.tar.gz
deja-dup_20.2-2.1.dsc
  to main/d/deja-dup/deja-dup_20.2-2.1.dsc
deja-dup_20.2-2.1_amd64.deb
  to main/d/deja-dup/deja-dup_20.2-2.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/e1sbviq-yw...@franck.debian.org



Accepted grr.app 0.9.0-1 (source amd64)

2012-06-05 Thread Yavor Doganov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 12:19:58 +0300
Source: grr.app
Binary: grr.app
Architecture: source amd64
Version: 0.9.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNUstep maintainers 
pkg-gnustep-maintain...@lists.alioth.debian.org
Changed-By: Yavor Doganov ya...@gnu.org
Description: 
 grr.app- RSS reader for GNUstep
Closes: 633544
Changes: 
 grr.app (0.9.0-1) unstable; urgency=low
 .
   * New upstream release:
 + Builds with ld --as-needed (Closes: #633544).
   * debian/control (Build-Depends): Remove quilt.  Add librsskit-dev (=
 0.3-2) and dpkg-dev (= 1.16.1~) (for hardening support).
 (Homepage): Update, new upstream.
 (Vcs-Arch, Vcs-Gir, Vcs-Browser): Switch from Arch to Git.
 (rssreader.app): Remove package.
 (Conflicts, Replaces): Remove.
 (Standards-Version): Bump to 3.9.3; no changes needed.
   * debian/source/format: Switch to 3.0 (quilt).
   * debian/README.source: Delete; redundant.
   * debian/patches/link-libs.patch: Delete, not relevant anymore.
   * debian/patches/series: Update.
   * debian/rules: Don't include /usr/share/quilt/quilt.make, eliminate
 patch/unpatch dependencies.  Enable hardening.  Convert and install
 the new application icon.
 (LDFLAGS): Omit -Wl,-z,defs as the new plugins require methods defined
 in the app itself.
 (install): Don't handle RSSKit, it's in a separate package now.  Don't
 install /usr/lib/grr.app.
 (binary-arch): Remove GS_USE_FHS conditional.  Move only the images to
 /usr/share as Resources contains arch-dependent plugins.
   * debian/preinst: New file.
   * debian/Grr.desktop: Amend Icon.
   * debian/watch: Watch the new upstream location.
   * debian/copyright: Switch to format 1.0, change license to GPLv3+,
 remove information about RSSKit.  Add more copyright holders.
Checksums-Sha1: 
 39e8e8bd3b2223a25b407dc82ed93089492fdcbd 1389 grr.app_0.9.0-1.dsc
 d756e8356902eada7d1928c80cd76b2163dbf6e3 1105714 grr.app_0.9.0.orig.tar.gz
 9b1f9a635f2541dac0f767a9e4323312b0dc0f39 6809 grr.app_0.9.0-1.debian.tar.gz
 1c164607fe8a66bbd309fa2c091fa7a4b2510829 201760 grr.app_0.9.0-1_amd64.deb
Checksums-Sha256: 
 d9ccbd9a5b96d68c8cdee47f07d6d20a0386743d51f59eb0268fb6f87e43cea4 1389 
grr.app_0.9.0-1.dsc
 9e26e45b5b581e653df2e3fd3913baba30223b155fc9e3e44eec4e0d7e2198e1 1105714 
grr.app_0.9.0.orig.tar.gz
 ebb0cc2a154077c9c1e29f027d9da6847e67f1edc13f23ea302e9300193c5881 6809 
grr.app_0.9.0-1.debian.tar.gz
 75941ab69e1eb84f1d9e65493e454afedc49a23a5d36442bf492ef5197e9a2ca 201760 
grr.app_0.9.0-1_amd64.deb
Files: 
 96cf9e173fc00a75362cc3b91db9834c 1389 gnustep optional grr.app_0.9.0-1.dsc
 d1f8c6ef88ec808396d4d68a90544320 1105714 gnustep optional 
grr.app_0.9.0.orig.tar.gz
 7373da375e1dfdf91611ff3b30a21b2b 6809 gnustep optional 
grr.app_0.9.0-1.debian.tar.gz
 80afabe7b3672f301388e1a827bf66c7 201760 gnustep optional 
grr.app_0.9.0-1_amd64.deb

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

iEYEARECAAYFAk/ODw8ACgkQfNdgYxVXvBBengCgjMrEc0c2XCRERQqbL8CN2Mz2
jQgAoJoiKI7zOXFerMw5uFv0hC/WPhdu
=V3sk
-END PGP SIGNATURE-


Accepted:
grr.app_0.9.0-1.debian.tar.gz
  to main/g/grr.app/grr.app_0.9.0-1.debian.tar.gz
grr.app_0.9.0-1.dsc
  to main/g/grr.app/grr.app_0.9.0-1.dsc
grr.app_0.9.0-1_amd64.deb
  to main/g/grr.app/grr.app_0.9.0-1_amd64.deb
grr.app_0.9.0.orig.tar.gz
  to main/g/grr.app/grr.app_0.9.0.orig.tar.gz


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



Accepted hurd 20120605-1 (source all hurd-i386)

2012-06-05 Thread Samuel Thibault
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 22 May 2012 00:07:09 +
Source: hurd
Binary: hurd hurd-dev hurd-dbg hurd-doc hurd-udeb
Architecture: source all hurd-i386
Version: 20120605-1
Distribution: unstable
Urgency: low
Maintainer: GNU Hurd Maintainers debian-h...@lists.debian.org
Changed-By: Samuel Thibault sthiba...@debian.org
Description: 
 hurd   - GNU Hurd
 hurd-dbg   - GNU Hurd (debugging files)
 hurd-dev   - GNU Hurd (development files)
 hurd-doc   - GNU Hurd manual
 hurd-udeb  - GNU Hurd - udeb (udeb)
Changes: 
 hurd (20120605-1) unstable; urgency=low
 .
   * New upstream snapshot.
 - patches/ext2fs_large_stores.patch,libmachdev.patch: Refresh.
   * control:
 - Do not make hurd-udeb depend on netdde-udeb, it leads to configure
 recursion, and is not actually needed.
 - Depend on libpciaccess-dev for libddekit.
   * hurd.postinst: Drop error messages while fetching pfinet options.
   * local/setup-translators: Remove /dev/shm directory if any, to be replaced
 with symlink to /run/shm.
   * patches/balloc.patch: Fix parentheses.
   * patches/exec_filename_{exec,fs,use}.patch: Add support for passing
 filename through exec() call.
Checksums-Sha1: 
 37348f1e197ec956954409e0a9d2305610ae0fb0 1772 hurd_20120605-1.dsc
 5e28347a66d215191683a578217b2647cd46778f 6943264 hurd_20120605.orig.tar.gz
 0d3de94643b6542d39054042c7046be08f171a3c 119306 hurd_20120605-1.debian.tar.bz2
 fb723357c84a066e83c922b69b780bf6153a6570 199644 hurd-doc_20120605-1_all.deb
 9e24b93123ff5a03a715fbc9d1c2db2706bdbf6b 3682426 hurd_20120605-1_hurd-i386.deb
 16cfa7bc0760a5b16a8013577b5bef69c307d420 4393934 
hurd-dev_20120605-1_hurd-i386.deb
 8004988d3b1e517cccdba0b515d61fb4cefe4f07 7654878 
hurd-dbg_20120605-1_hurd-i386.deb
 477945bd025bb0eca6c54482f8a215c18e411dfc 1594288 
hurd-udeb_20120605-1_hurd-i386.udeb
Checksums-Sha256: 
 d262d1c49b8fb3376e869e2499ae06253b1b514ad008a9b4e2372b360d3654ad 1772 
hurd_20120605-1.dsc
 d4cb8493bbfcb403baea51d47cb8aa9d9de5d5ec2e1317d2fc54134cc65c662a 6943264 
hurd_20120605.orig.tar.gz
 b7194258ddc57d3c6326addf6b69a77a45317ebf0f0d66b5420e37c9318ef929 119306 
hurd_20120605-1.debian.tar.bz2
 fd138a05668820fcb9bfd11437065b2dfbaeebcb34a54fff88f0217db8655ef4 199644 
hurd-doc_20120605-1_all.deb
 106649601eca21669735547570e5769eacafe831d74d15f003b4f30c3aab82aa 3682426 
hurd_20120605-1_hurd-i386.deb
 4e3de17b7864eb91b6cbf02323d6f6f2a3b862f46da2357c82257abf505ad4fd 4393934 
hurd-dev_20120605-1_hurd-i386.deb
 e5f79a35d6ca3b0b084e5128fd5fbe64c8b605e6db5ec5e63b8ed9e40ca4168a 7654878 
hurd-dbg_20120605-1_hurd-i386.deb
 60c3d9f4abee7fe2e6c83d31d9015797520d2a44142e3806239e4df64390318d 1594288 
hurd-udeb_20120605-1_hurd-i386.udeb
Files: 
 e10df0dc0ab2f9e5f8fc0a5af775e7c9 1772 admin required hurd_20120605-1.dsc
 4f9693dacd2977a4ae4b939caa8300c9 6943264 admin required 
hurd_20120605.orig.tar.gz
 12458b51f907266ae94622e9029a38df 119306 admin required 
hurd_20120605-1.debian.tar.bz2
 b5e5c4ad8c28feea6d8ed5a7786620aa 199644 doc optional 
hurd-doc_20120605-1_all.deb
 8fc9551197ba262e99c1a0f1b84e96c4 3682426 admin required 
hurd_20120605-1_hurd-i386.deb
 11650fdf4ca97817fc8866fa1ebac22d 4393934 libdevel standard 
hurd-dev_20120605-1_hurd-i386.deb
 fef0fdd78e35afcbfd2e2dba12dd2221 7654878 debug extra 
hurd-dbg_20120605-1_hurd-i386.deb
 08ce9982e918e3d0abd72a0a0b3aba70 1594288 debian-installer optional 
hurd-udeb_20120605-1_hurd-i386.udeb
Package-Type: udeb

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

iF4EAREKAAYFAk/OFXgACgkQUesQhRznqyjHFgD/ai0xR2UJGSvzvKa75V8Peg1y
qp6goBpw+e2Wk2dPrp4A/0FU+QbUQxA2twO/jFmNqBVWWBtmDBqrpAz4lFCtxMMF
=5yxW
-END PGP SIGNATURE-


Accepted:
hurd-dbg_20120605-1_hurd-i386.deb
  to main/h/hurd/hurd-dbg_20120605-1_hurd-i386.deb
hurd-dev_20120605-1_hurd-i386.deb
  to main/h/hurd/hurd-dev_20120605-1_hurd-i386.deb
hurd-doc_20120605-1_all.deb
  to main/h/hurd/hurd-doc_20120605-1_all.deb
hurd-udeb_20120605-1_hurd-i386.udeb
  to main/h/hurd/hurd-udeb_20120605-1_hurd-i386.udeb
hurd_20120605-1.debian.tar.bz2
  to main/h/hurd/hurd_20120605-1.debian.tar.bz2
hurd_20120605-1.dsc
  to main/h/hurd/hurd_20120605-1.dsc
hurd_20120605-1_hurd-i386.deb
  to main/h/hurd/hurd_20120605-1_hurd-i386.deb
hurd_20120605.orig.tar.gz
  to main/h/hurd/hurd_20120605.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/e1sbvla-00019x...@franck.debian.org



Accepted ices2 2.0.1-12 (source amd64)

2012-06-05 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 05 Jun 2012 16:21:36 +0200
Source: ices2
Binary: ices2
Architecture: source amd64
Version: 2.0.1-12
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 ices2  - Ogg Vorbis streaming source for Icecast 2
Changes: 
 ices2 (2.0.1-12) unstable; urgency=low
 .
   * Use anonscm.debian.org for Vcs-Browser field.
   * Extend copyright of Debian packaging to cover recent years.
   * Stop build-depending on libroar-dev or suggesting roaraudio-server.
 Requested by Ron Lee.
   * Really build-depend unversioned on libogg-dev, libvorbis-dev and
 libshout3-dev, as intended for 2.0.1-11.
Checksums-Sha1: 
 b47ed285f26489792d80641bbbf4007c80a9a8ff 2174 ices2_2.0.1-12.dsc
 734e301cd44971211806e4beca5b29eb8adb8e0c 25490 ices2_2.0.1-12.debian.tar.gz
 6d5e5e1368740f976657b83f5ea071809b6c1c3a 65988 ices2_2.0.1-12_amd64.deb
Checksums-Sha256: 
 cdac07de822c284ff5f81aeb70369d1756af09da881cd56ab4db52ab57d8a858 2174 
ices2_2.0.1-12.dsc
 ffd42472870b315979de9e7f7db7e2ae29fd9a05a779dc814f0c85d8e76f0e5e 25490 
ices2_2.0.1-12.debian.tar.gz
 191d9e203faac997e083692838ea49237cb4b2c5d12b052700c68dca508ad96d 65988 
ices2_2.0.1-12_amd64.deb
Files: 
 277c8ff0c2bd5c3a2ad5cab9081480f9 2174 sound optional ices2_2.0.1-12.dsc
 c4d3727a62cf1b90c8dffb041cfab6b3 25490 sound optional 
ices2_2.0.1-12.debian.tar.gz
 88de8d9efdf3690bc00bdcdd39318163 65988 sound optional ices2_2.0.1-12_amd64.deb

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

iQIcBAEBCgAGBQJPzhdLAAoJECx8MUbBoAEhiXYP/2iZaDRQpqwAa2QRVQyP1pql
6Kz6pSTi8JDdUfSrZeLhzeImNxbd8G4i33DpJHHUa8YW64DDFKdukdJK9jvNOvYi
//rR4FcXj7CJ2CtgIoluHtGgyC3i50e7Pl6E1YWje+dhXEj7UUXjn6yUTMhk4yXN
/DUKbP1CfZUGJFYOKoA4njEn99kGd93LA6YoE0Nzq2JCILlyNe4XcFBdhMlz3u5u
V53vcRFXfXbT2Yx+UAQIZS3+aTa5PiG15waXiaMkkyTahOTbQYKVUmNf4yMP/wfN
Mq41atM16WqioSXmu4L36tyCg892nkBoNLfBfkK2lfrE+hefRjN5cFJCWHFAxxMe
hVnQ9buC1o6gCpCSono1IK2+Jke7Y3GYLb0Z/9ujCANU/r1LoEqwwAU3fzUKx0qa
ex2uF8Ca8v8sNDCYNvB+dRZU0C1kqytampleEwQzXVsX9Oe7pMW2guF7fs2ZyDrv
lRMe35PEqoCfXg7/dFB7NiiOLiSEDiAg9HU5RFwIHQbwhzY0RRlSloRvrWT4RVpZ
8NuwbvhIFr/9akP5sP0F+84lpRu1dmA7VtsS/e6ZrYyjSCK1h8/JqWySBr381muJ
bvuixQ6j4rInh5InRkCdofVpfGHxVL+DJcPNGYLBofdONWJQwFc5EO4hXoBZRHym
rOFy4/pWg5OZiUOQlKYh
=qp7n
-END PGP SIGNATURE-


Accepted:
ices2_2.0.1-12.debian.tar.gz
  to main/i/ices2/ices2_2.0.1-12.debian.tar.gz
ices2_2.0.1-12.dsc
  to main/i/ices2/ices2_2.0.1-12.dsc
ices2_2.0.1-12_amd64.deb
  to main/i/ices2/ices2_2.0.1-12_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/e1sbvln-0001ac...@franck.debian.org



Accepted libshout 2.3.1-1 (source amd64)

2012-06-05 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 05 Jun 2012 16:37:38 +0200
Source: libshout
Binary: libshout3-dev libshout3
Architecture: source amd64
Version: 2.3.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 libshout3  - MP3/Ogg Vorbis broadcast streaming library
 libshout3-dev - MP3/Ogg Vorbis broadcast streaming library (development)
Changes: 
 libshout (2.3.1-1) experimental; urgency=low
 .
   * New upstream release.
 + Opus support.
 .
   * Build-depend on libopus-dev.
   * Thanks to Ron Lee for coordinating this release.
Checksums-Sha1: 
 ce6fab49958794c246134f2f6cb52cd4474c944c 2240 libshout_2.3.1-1.dsc
 147c5670939727420d0e2ad6a20468e2c2db1e20 464229 libshout_2.3.1.orig.tar.gz
 b792ee048057f9616594c042f104b3df1da20da8 14222 libshout_2.3.1-1.debian.tar.gz
 af46a10aa5f6aae639d6461048cc673f59cf1d8a 48522 libshout3-dev_2.3.1-1_amd64.deb
 dbccc45a0e9f0a4841b971490e4635b587788d34 43318 libshout3_2.3.1-1_amd64.deb
Checksums-Sha256: 
 415fe489fe359dd3f29b7aa5181b85cf1cef80b594f41ccec028f4798a913ca0 2240 
libshout_2.3.1-1.dsc
 cf3c5f6b4a5e3fcfbe09fb7024aa88ad4099a9945f7cb037ec06bcee7a23926e 464229 
libshout_2.3.1.orig.tar.gz
 18ae88db534e5fe9b5f48ad040d043ec51438c2a9fdf804d6ed5d1c5360cfc41 14222 
libshout_2.3.1-1.debian.tar.gz
 8c6ca8c8f04c498ef54e880fe79fc6b1c81d74099e70ac7644709931266ae48a 48522 
libshout3-dev_2.3.1-1_amd64.deb
 35523e2a874579aed4c2dd56d0f85363ad4adfafaf8aa3355d8c1a66e314295f 43318 
libshout3_2.3.1-1_amd64.deb
Files: 
 b2ee33126a0b1ec18fe65f91c63f928d 2240 libs optional libshout_2.3.1-1.dsc
 11765b2592e7ea623ccd93d3f8df172c 464229 libs optional 
libshout_2.3.1.orig.tar.gz
 30f091f9c9dfb13908fa0a1ae42dd825 14222 libs optional 
libshout_2.3.1-1.debian.tar.gz
 dfda5ea1072c51d51b8efe61d34ad53b 48522 libdevel optional 
libshout3-dev_2.3.1-1_amd64.deb
 dbb0f110277d1eb2770066a1cf1319b1 43318 libs optional 
libshout3_2.3.1-1_amd64.deb

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

iQIcBAEBCgAGBQJPzhvLAAoJECx8MUbBoAEh0G8P/3ZDUwGGdRvofqdz3Ce4hq0J
L4lFpoD6AXTfbmR8PEIxnZpstZvD0djiu27IE8LuY6+G2a3Ux7lUDA8oJewprwH2
h97zfZQFNU0Q+OH29S4uEpyo0xg2jBfNaSfffXclL+pxNgKByPSa7CYPofm11i05
nhLd5MI/VtNRDM+DDrSC4pPCuGPwHTLiWxGGxs6MxCyafl2ku1owTX2PT8AcJzrw
rWgkA27CPIEtjNGjS3RbMNlnJ0HrY9tIJiyG4JxmYLhRpFBGvblQZYAWoC5QcrZ2
60foI3Bxt06J7cRmYUATHjdShjY+WzooPnUmwWK5Glluq2gdakMnqcnHqqWuQFfa
102wA/aFVYBXN81INsqmWXNqUfAZsOOtGqEoOksboRW2eCyvWjLvke7TCHYnRUbS
ihdGLwan3rfSZLDgAeCbGzKhhU5cPzzyIy2PsQiRkcGW/t8t7oQrAlg4uxe2LVz6
srlTA2zrC9ZGD9PTIpArHTOhzMvc6HVj1JLwJRUpcEIg2cUD4M+i9mVpWadZv+em
KANd+MaRYFkWKccaLCNqyXw8Ey6ncDM96g9Wfy84pzy3pRfkKcoPGHbBSbZvwqBR
kR0cQt5JAmJzEloa+e7LUlaE8xfNUCg225gND3/k364xx/fcsK5cYCv7UjiMvoPZ
dBDe8nVifoSzt/3cOZls
=x/3n
-END PGP SIGNATURE-


Accepted:
libshout3-dev_2.3.1-1_amd64.deb
  to main/libs/libshout/libshout3-dev_2.3.1-1_amd64.deb
libshout3_2.3.1-1_amd64.deb
  to main/libs/libshout/libshout3_2.3.1-1_amd64.deb
libshout_2.3.1-1.debian.tar.gz
  to main/libs/libshout/libshout_2.3.1-1.debian.tar.gz
libshout_2.3.1-1.dsc
  to main/libs/libshout/libshout_2.3.1-1.dsc
libshout_2.3.1.orig.tar.gz
  to main/libs/libshout/libshout_2.3.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/e1sbvnb-0001du...@franck.debian.org



Accepted live-boot 3.0~a29-1 (source all)

2012-06-05 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 16:00:59 +0200
Source: live-boot
Binary: live-boot live-boot-doc live-boot-initramfs-tools
Architecture: source all
Version: 3.0~a29-1
Distribution: experimental
Urgency: low
Maintainer: Debian Live Project debian-l...@lists.debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 live-boot  - Debian Live - System Boot Scripts
 live-boot-doc - Debian Live - System Boot Scripts (documentation)
 live-boot-initramfs-tools - Debian Live - System Boot Scripts (initramfs-tools 
backend)
Changes: 
 live-boot (3.0~a29-1) experimental; urgency=low
 .
   * Automatically translate date formats in po files.
   * Starting initramfs-tools specific subdirectory within the source-
 tree.
   * Replacing live initramfs-tools script with empty stub that calls the
 real, in future being initramfs-tools independent, script from
 /lib/live.
   * Splitting out a first bunch of functions out to /live/live/boot/.
   * Moving out live-helpers from initramfs-tools specifics.
   * Adding commented 'set -e' explicitly in all subscripts to avoid
 running it with 'set -e' until we've made sure it's properly
 working.
   * Moving out live-functions from initramfs-tools specifics.
   * Removing live-premount modules script, not needed anymore.
   * Converting read-only initramfs-tools pre-mount script into regular
 live-boot script.
Checksums-Sha1: 
 089028846f35bb8da329827bf3e28a2c8bf498be 1386 live-boot_3.0~a29-1.dsc
 e045a6a312ea555e29af4bcb3d6c36d47b0da774 116914 live-boot_3.0~a29.orig.tar.gz
 605e9f35311718f7e7b120bc78117785c8e0a660 21268 
live-boot_3.0~a29-1.debian.tar.gz
 713a9285af3c91525b4f0fdd1012fefc9554ce02 56908 live-boot_3.0~a29-1_all.deb
 0cf349aa51926591e90a4b32cfa617770b22b8c4 57526 live-boot-doc_3.0~a29-1_all.deb
 86164e701c9de4c1d91524cf6e4514c3412d96c0 26788 
live-boot-initramfs-tools_3.0~a29-1_all.deb
Checksums-Sha256: 
 981937c519b1d35d7a1c675c65bc1164996b7fb376d9995addfb7b259d0c6802 1386 
live-boot_3.0~a29-1.dsc
 cea36973e6c0ee8ddba9d70acd8fa4f33f8a33b0380a77e021aa038d7bc21a3d 116914 
live-boot_3.0~a29.orig.tar.gz
 86df7f5c96b22b1c8d5ffa487d924342b6d2112bb620a7548bb1879a8ccde0dc 21268 
live-boot_3.0~a29-1.debian.tar.gz
 e12c9b10f3a4c3e6630e6cd2343f547d03f03a359fdf9382395521712a770809 56908 
live-boot_3.0~a29-1_all.deb
 b9df83c204de63e318f26ba27c5f996f6dcea35a3597e211c8baee0d4685dc41 57526 
live-boot-doc_3.0~a29-1_all.deb
 7fe626a8e90908526044b877d24191b225c085a2948f340730b4dd232e366b0e 26788 
live-boot-initramfs-tools_3.0~a29-1_all.deb
Files: 
 ed3b88236c9b4377faaf7711fe799c05 1386 misc optional live-boot_3.0~a29-1.dsc
 3372eeeff94be2dc13fd8c080d62f88f 116914 misc optional 
live-boot_3.0~a29.orig.tar.gz
 c8fd6a48a006bb6531f62975660e028b 21268 misc optional 
live-boot_3.0~a29-1.debian.tar.gz
 c9fbc18286980d969fc56d1bd65485d9 56908 misc optional 
live-boot_3.0~a29-1_all.deb
 a7ae0799dbae7dd570d68a41adefb0f5 57526 doc optional 
live-boot-doc_3.0~a29-1_all.deb
 4ecf4b52f92f9fa9076cbf5c7131ccf7 26788 misc optional 
live-boot-initramfs-tools_3.0~a29-1_all.deb

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

iEYEARECAAYFAk/OFIMACgkQ+C5cwEsrK546vgCgu6OB2vbA2q7OcG4FEZkzwm0p
qgAAn0fwfyTCr+zOe4vR9k8gWt1pn4Hy
=dB+j
-END PGP SIGNATURE-


Accepted:
live-boot-doc_3.0~a29-1_all.deb
  to main/l/live-boot/live-boot-doc_3.0~a29-1_all.deb
live-boot-initramfs-tools_3.0~a29-1_all.deb
  to main/l/live-boot/live-boot-initramfs-tools_3.0~a29-1_all.deb
live-boot_3.0~a29-1.debian.tar.gz
  to main/l/live-boot/live-boot_3.0~a29-1.debian.tar.gz
live-boot_3.0~a29-1.dsc
  to main/l/live-boot/live-boot_3.0~a29-1.dsc
live-boot_3.0~a29-1_all.deb
  to main/l/live-boot/live-boot_3.0~a29-1_all.deb
live-boot_3.0~a29.orig.tar.gz
  to main/l/live-boot/live-boot_3.0~a29.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/e1sbvnc-0001ew...@franck.debian.org



Accepted openvpn-auth-ldap 2.0.3-3 (source i386)

2012-06-05 Thread Alberto Gonzalez Iniesta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 13:39:01 +0200
Source: openvpn-auth-ldap
Binary: openvpn-auth-ldap
Architecture: source i386
Version: 2.0.3-3
Distribution: unstable
Urgency: low
Maintainer: Alberto Gonzalez Iniesta a...@inittab.org
Changed-By: Alberto Gonzalez Iniesta a...@inittab.org
Description: 
 openvpn-auth-ldap - OpenVPN LDAP authentication module
Closes: 667316
Changes: 
 openvpn-auth-ldap (2.0.3-3) unstable; urgency=low
 .
   * Acknowledge Matthias Klose's NMU. Thanks!
 (Closes: #667316)
   * Bumped Standards-Version to 3.9.3
Checksums-Sha1: 
 f1082ff6ee5929c0ddce1eaec1772d8efd58b2c4 1217 openvpn-auth-ldap_2.0.3-3.dsc
 7c3fca5cbfd721c0d693a74e518873f44154888d 5055 
openvpn-auth-ldap_2.0.3-3.debian.tar.gz
 ccc2c1101258160391ef457121eca9fd0eec66e7 41762 
openvpn-auth-ldap_2.0.3-3_i386.deb
Checksums-Sha256: 
 8006322bf852611e16c45745e2bcf3b1df02e84e23d763d8ff8addb6b098b41c 1217 
openvpn-auth-ldap_2.0.3-3.dsc
 b03a0f0768d1ace6fa21b932105056fc833ace98d39b90f35eeb0f018e4c9821 5055 
openvpn-auth-ldap_2.0.3-3.debian.tar.gz
 63d1f5f974b91ee29f7b034e2a2e5e979d2078ee71187e2c90520a72df8e5918 41762 
openvpn-auth-ldap_2.0.3-3_i386.deb
Files: 
 5f818c51a3347f63d83588442d335d6e 1217 net extra openvpn-auth-ldap_2.0.3-3.dsc
 2b62435f496f7e1f7ceb3c98e09c4181 5055 net extra 
openvpn-auth-ldap_2.0.3-3.debian.tar.gz
 7a6f94d36b18830bef6f4190434c6661 41762 net extra 
openvpn-auth-ldap_2.0.3-3_i386.deb

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

iEYEARECAAYFAk/OEPkACgkQxRSvjkukAcOWWACgihrSRg0Qgjm9esI5/mANJxDJ
7IcAoI6yPxZIHZGqYpDh6ZCUOfyziGjh
=fCd/
-END PGP SIGNATURE-


Accepted:
openvpn-auth-ldap_2.0.3-3.debian.tar.gz
  to main/o/openvpn-auth-ldap/openvpn-auth-ldap_2.0.3-3.debian.tar.gz
openvpn-auth-ldap_2.0.3-3.dsc
  to main/o/openvpn-auth-ldap/openvpn-auth-ldap_2.0.3-3.dsc
openvpn-auth-ldap_2.0.3-3_i386.deb
  to main/o/openvpn-auth-ldap/openvpn-auth-ldap_2.0.3-3_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/e1sbvqh-0001lc...@franck.debian.org



Accepted qsstv 7.1.7-3 (source amd64)

2012-06-05 Thread Steve Kostecke
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 08:52:35 -0500
Source: qsstv
Binary: qsstv
Architecture: source amd64
Version: 7.1.7-3
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers debian-h...@lists.debian.org
Changed-By: Steve Kostecke st...@debian.org
Description: 
 qsstv  - Qt-based slow-scan TV and fax
Closes: 260892 261168 261169 261170 261172 261728 262374 265392 266097 267106 
267303
Changes: 
 qsstv (7.1.7-3) unstable; urgency=low
 .
   * Lintian fixes
   * qsstv completely rewritten for 7.1.*
 Closes: #261170, #265392, #266097, #260892, #261172, #261169,
 #262374, #267106, #267303, #261728, #261168
   * Include sample templates in qsstv/examples
   * Converted debian/copyright to machine-readable format (version 1.0)
Checksums-Sha1: 
 3fa6ae3b7ba0d855697ec2ee82f25390fac07bf8 1298 qsstv_7.1.7-3.dsc
 cc3edfb0ac724cfb465ed8f329bf74177e6c68a8 11727 qsstv_7.1.7-3.debian.tar.gz
 e28b282f7596bd9ca87bdf0a76756f7b23ea9748 1906586 qsstv_7.1.7-3_amd64.deb
Checksums-Sha256: 
 11afd84adfbc84b1c7bd08eae28e371a7f32c932d2180fa714baee77e1991b5d 1298 
qsstv_7.1.7-3.dsc
 2d7884f19719d53a4a104426a0a0ad3072040dfb65bef2a05fa4158c37cd729e 11727 
qsstv_7.1.7-3.debian.tar.gz
 c129239cc5f3e756432cef7614f4ac93a6c4de7bfdb1a383282e3d4ef98af25c 1906586 
qsstv_7.1.7-3_amd64.deb
Files: 
 a254a3a9050ea3a68462a2b38d10ffc8 1298 hamradio optional qsstv_7.1.7-3.dsc
 56998164124a0cc64e4cdf440dbf6a8a 11727 hamradio optional 
qsstv_7.1.7-3.debian.tar.gz
 f44937548c9a73d9e328163104955691 1906586 hamradio optional 
qsstv_7.1.7-3_amd64.deb

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

iEYEARECAAYFAk/OGLUACgkQElhTTDfsemlzMQCffs1eoe4vUm7SWpuDVZDeBCOj
CxQAnjiQzpCArQUuqp9LUvM5xBkSXYwV
=yD5m
-END PGP SIGNATURE-


Accepted:
qsstv_7.1.7-3.debian.tar.gz
  to main/q/qsstv/qsstv_7.1.7-3.debian.tar.gz
qsstv_7.1.7-3.dsc
  to main/q/qsstv/qsstv_7.1.7-3.dsc
qsstv_7.1.7-3_amd64.deb
  to main/q/qsstv/qsstv_7.1.7-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/e1sbvrc-0001m7...@franck.debian.org



Accepted tomboy 1.11.2-1 (source amd64)

2012-06-05 Thread Iain Lane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Jun 2012 14:28:12 +0100
Source: tomboy
Binary: tomboy
Architecture: source amd64
Version: 1.11.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian CLI Applications Team 
pkg-cli-apps-t...@lists.alioth.debian.org
Changed-By: Iain Lane la...@debian.org
Description: 
 tomboy - desktop note taking program using Wiki style links
Changes: 
 tomboy (1.11.2-1) experimental; urgency=low
 .
   * [9be0acb] Imported Upstream version 1.11.2
 - Performance fix for note deletion
 - Bump Mono profile to 4.0
 - Ignore acronyms in spell-check
 - Update documentation, command-line usage
   * [b8da4f4] Drop obsolete 30_fix_manpage_syntax patch
   * [aea1cb8] Refresh other patches
Checksums-Sha1: 
 e39194cc299a741fe017ef857fe942aef28e5ec1 2438 tomboy_1.11.2-1.dsc
 f1e37d4fc4cc3921bcc6757b109f0810a2edbe81 6625788 tomboy_1.11.2.orig.tar.xz
 da6ee9391f076ca751b191cca0bf4702f2807dfb 18977 tomboy_1.11.2-1.debian.tar.gz
 f504e8c1895a7bd0c327cafc48aa9d81ccfb51dd 4856300 tomboy_1.11.2-1_amd64.deb
Checksums-Sha256: 
 c4e3e3767d011080c3566771e4f33e856cf14e6fc8f220bc3b9b7403fc9b8fd4 2438 
tomboy_1.11.2-1.dsc
 3c3a0c522278de4ff3e43f642bd77686f734a904894b2d4d260a70e4d20366c9 6625788 
tomboy_1.11.2.orig.tar.xz
 8fa80334f031f784614897831ada3ea6b34b5c5f974f8c1f19e4dfb461a05f14 18977 
tomboy_1.11.2-1.debian.tar.gz
 a30b4f808d2d42272c9455abbf37eaed48c893e79444302cf35e802dc278251f 4856300 
tomboy_1.11.2-1_amd64.deb
Files: 
 8f7be03965d70b9bab2dbb4ae459c7d4 2438 gnome optional tomboy_1.11.2-1.dsc
 879f0cc83bccd7a11a345dd857de5290 6625788 gnome optional 
tomboy_1.11.2.orig.tar.xz
 9c62bbc175d2bbfc3a581e6aef39461e 18977 gnome optional 
tomboy_1.11.2-1.debian.tar.gz
 25698f2a1dad1c1ce35a8d991e99cb0d 4856300 gnome optional 
tomboy_1.11.2-1_amd64.deb

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

iQIcBAEBCAAGBQJPzg8vAAoJEONS1cUcUEHUBmwQAI/omzITkioPvFCS8R4MMr8t
kglH09HQk5QePAnHddZUu7m+dabyci50MgkKUm4tdyl6lAiUeUUuS9uXLFCl4NU8
StWPy/HeDSJnhAN9gmdQyM+Fv7e6yeP5mr7oDxPnf/aJkn6Q9ZLDRt0xymwOUUAC
7EG7/teUXVmE2M4q/oRqCohX19vWCewCTF4Ijlle3IiVc5oJZgjV19QQrJ1rHyXA
0IEfsuIJOsegjgkw7sdRRDekIY0Anj93upFxoMqhbLywxWBcT0cj7KnHQfKp9Mwm
5GvQdzs0zWUb0I2z0bWEdu+OBfd97DNzWECbFVxOCnMz6u7oMFEoibLOVOZj4691
ZGQCuohr/USOK4ZSuUe22ruzRMXuIEDyTC1f42C5gbMmsL3eo1iyDcEWAAqabJW4
C+7R3tV902DN3PCYytBtr2w8C6jDfWzULcEQSOiydG2mlr22bqossDaYu8n4L5co
ub/14Vk2gLocwTPf6jFDFOiA/rqYodTL9AST0cQtQ4ioGo8oeaLBHaIhEpFJ1o0q
wWzg6q2TMXQap4XQtC8k/6vLLzdjJ2olGGH5bdWSkilRKYoxy1GLr3OkyWI7UFvz
sb/a3/+kjyxKnfFO9KXpvlpMBwKv+Xa2EvWkzQ+uX9Xb1BGHnB98mH4E/sAiV+/Q
565dByJtY6QMLO74Pa75
=M7Ns
-END PGP SIGNATURE-


Accepted:
tomboy_1.11.2-1.debian.tar.gz
  to main/t/tomboy/tomboy_1.11.2-1.debian.tar.gz
tomboy_1.11.2-1.dsc
  to main/t/tomboy/tomboy_1.11.2-1.dsc
tomboy_1.11.2-1_amd64.deb
  to main/t/tomboy/tomboy_1.11.2-1_amd64.deb
tomboy_1.11.2.orig.tar.xz
  to main/t/tomboy/tomboy_1.11.2.orig.tar.xz


-- 
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/e1sbvsb-0001si...@franck.debian.org



Accepted libdist-zilla-perl 4.300017-2 (source all)

2012-06-05 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Jun 2012 17:33:02 +0200
Source: libdist-zilla-perl
Binary: libdist-zilla-perl
Architecture: source all
Version: 4.300017-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libdist-zilla-perl - Perl distribution builder
Closes: 676047
Changes: 
 libdist-zilla-perl (4.300017-2) unstable; urgency=low
 .
   * Team upload.
   * Use writable $HOME during build to fix FTBFS (Closes: #676047)
Checksums-Sha1: 
 377981d72daff8131767580e770908116dbffa05 3576 libdist-zilla-perl_4.300017-2.dsc
 ab9844645817bd52774cbb24b071f17987452edd 5568 
libdist-zilla-perl_4.300017-2.debian.tar.gz
 1292f88c15aba1365ebb58fdc5788060e623f822 387490 
libdist-zilla-perl_4.300017-2_all.deb
Checksums-Sha256: 
 9f488fe636d3868f670145ec52943aac9de7ed20db27da5841654fe4dda282ee 3576 
libdist-zilla-perl_4.300017-2.dsc
 8f1aadc78cfbc781d01b8a4ba6da69a4a354e7606117b86cd70b555022da187b 5568 
libdist-zilla-perl_4.300017-2.debian.tar.gz
 555075e460b1f315321ef85ca49f9702b29ff48f05b88a382dd6fcfec1677331 387490 
libdist-zilla-perl_4.300017-2_all.deb
Files: 
 7c0214af69c04e91e306c85f2d70323b 3576 perl optional 
libdist-zilla-perl_4.300017-2.dsc
 8dd61e39fe08c9d0277ee5c327269e7c 5568 perl optional 
libdist-zilla-perl_4.300017-2.debian.tar.gz
 baebed0d723c32a57000a5fda2d47e33 387490 perl optional 
libdist-zilla-perl_4.300017-2_all.deb

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

iQIcBAEBCAAGBQJPziitAAoJEHidbwV/2GP+M4QQAM0Mg/UXi1fHpJAP3+59QFje
7NmcSX7WM1+senW337xIcBI/ikm/chs1h8cRHlG2mhNXIUtJGpwekVcicWUH9P9W
mIL74U6koKi6X1vBPFQyDjah4PY8D/VM8JBIrW4LnEp6O41oFNlHIYE+excyXIN5
EazxJQlp0GgqSfENkqCuQpXgLgvqHM+JOEWtRbOpegDYLESW1DTr/YFKVLutuu+2
9IcVHycyd8FvVZ+ACWTfypnd1qRJJpnREb//CHgxheDE4jlb2DxNPdwfO5OvSj7k
yVRNQAl4ouRJ5wEcr0a6Ka+ztFvV3CLa0hDsotKxKPUdH1cOxf7od5okf21De3cT
HpuW6TqCatXcG0Iba4W6dBSa8gtxgjYtMdDkHf4bPVquPhL9PQ0NB6S2/sa9QsHf
Ud+qPVQbm1pjZB8BhJ9QCiUHewl88+vxFliiifQ7WCR/GuL2j7o40tNYznkp7ns5
drhBA/K6L0t4nXDGK9Tm5+8Q/D+rC2tkzU2dm+lUVAEOoQyJs8yyhvs5C6jGsFBj
K0VkEb9n9LkZqKIsshc633j/zz5xmPTbhy59hBGJb58ZDzhPODXM+BAUA20/iupC
FrCwN2HIEEdzqNrqLLlS3NeKVt5xe0J1I/lLz3hd+N/+ASu9Yc+Q9bTgQuEXe5D+
MMPAz2Dg0vKv6+6i971m
=gPGG
-END PGP SIGNATURE-


Accepted:
libdist-zilla-perl_4.300017-2.debian.tar.gz
  to main/libd/libdist-zilla-perl/libdist-zilla-perl_4.300017-2.debian.tar.gz
libdist-zilla-perl_4.300017-2.dsc
  to main/libd/libdist-zilla-perl/libdist-zilla-perl_4.300017-2.dsc
libdist-zilla-perl_4.300017-2_all.deb
  to main/libd/libdist-zilla-perl/libdist-zilla-perl_4.300017-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/e1sbw08-0004pn...@franck.debian.org



Accepted aqsis 1.8.1-2 (source all amd64)

2012-06-05 Thread Manuel A. Fernandez Montecelo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 16:32:39 +0100
Source: aqsis
Binary: aqsis aqsis-examples libaqsis1 libaqsis-dev
Architecture: source amd64 all
Version: 1.8.1-2
Distribution: unstable
Urgency: low
Maintainer: Manuel A. Fernandez Montecelo manuel.montez...@gmail.com
Changed-By: Manuel A. Fernandez Montecelo manuel.montez...@gmail.com
Description: 
 aqsis  - 3D rendering solution adhering to the RenderMan(R) standard, bina
 aqsis-examples - 3D rendering solution adhering to the RenderMan(R) standard, 
exam
 libaqsis-dev - 3D rendering solution adhering to the RenderMan(R) standard, 
deve
 libaqsis1  - 3D rendering solution adhering to the RenderMan(R) standard, shar
Changes: 
 aqsis (1.8.1-2) unstable; urgency=low
 .
   * Build-Depend on libtiff5-dev (instead of libtiff4-dev)
   * Add VCS fields to debian/control
   * lintian:
 - Update override package-name-doesnt-match-sonames for 1.8 series
 - Create override for no-symbols-control-file
Checksums-Sha1: 
 15d0b558e1f5f141064daa2f6caaf83e929fd1c1 2479 aqsis_1.8.1-2.dsc
 33630aa2657182b0206aa5b7a36bc624cb4c88f2 13537 aqsis_1.8.1-2.debian.tar.gz
 28b49d76e2dced3b47d104e304f5fed2832bdc9e 684912 aqsis_1.8.1-2_amd64.deb
 384e512f0a68c1a299da9d1ca34d12cd3faade8b 373360 aqsis-examples_1.8.1-2_all.deb
 2b1328f90f753f34e0139700b0dea9456f6e68ff 2683350 libaqsis1_1.8.1-2_amd64.deb
 1e6a6589289666c21a0108cc62224b37bfae5825 28210 libaqsis-dev_1.8.1-2_amd64.deb
Checksums-Sha256: 
 7252f5fa5e8c90db0e470ca323303ebc762cbd6b21d2d76988d9e85b80dbf39c 2479 
aqsis_1.8.1-2.dsc
 e83d260c6150b76761a595743e2782e2d0954cc60a4c110a7511d783b3475911 13537 
aqsis_1.8.1-2.debian.tar.gz
 fe5ad517d2f8609e7f27507f81d8be69125d5c63162439c694631fd73adeaaa5 684912 
aqsis_1.8.1-2_amd64.deb
 0fd6f6ac51952c0e51c4a7eecf1f35e517369db5367bbf92bf50049c329fc9f9 373360 
aqsis-examples_1.8.1-2_all.deb
 1a57b6205fe264136f4f9321e031d5f8c23c7d4f371233197dad4c7004bbd36c 2683350 
libaqsis1_1.8.1-2_amd64.deb
 21a324b8c02dd5dcd9c6a7619b1862408fa576f023b5b0c08b958c9b2bd8bf35 28210 
libaqsis-dev_1.8.1-2_amd64.deb
Files: 
 5e3c7895f6bf0dac7236fb9f001f10d1 2479 graphics optional aqsis_1.8.1-2.dsc
 1735b865306d69c18a3c8db093483a58 13537 graphics optional 
aqsis_1.8.1-2.debian.tar.gz
 18f53937f84e1ece8039714955608b33 684912 graphics optional 
aqsis_1.8.1-2_amd64.deb
 785b40c0e32324014cecf109646b8bfc 373360 graphics optional 
aqsis-examples_1.8.1-2_all.deb
 ed86f7b9ef6e917f35143d723260c898 2683350 libs optional 
libaqsis1_1.8.1-2_amd64.deb
 7a252400142acbea517c8b8c1e045d4a 28210 libdevel optional 
libaqsis-dev_1.8.1-2_amd64.deb

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

iQIcBAEBAgAGBQJPzi37AAoJEH92BqRF3KgOsyAQAIqm24B4/LBEcwQU1l+BP4cy
/LT8attuI29AGqtkRYmfU4I32iGDlH2xQAeEXAXDDhYi7W4mAJWCMXZhRdTGAI09
tFQsA+3GMWsYE6G7YvOoQRyVl7Bd6V4xJmtxebuow0Bw7SFyBRHxce5eCXlaE+yC
VGyX+koipF++P6Wz2zC8sW0LHAOb5y/rkDA1DE3xXZG6ZlHG/uHjs+fbd3I3J1y7
SHaG4k38US6pmTCD1qas4T7ABVd69j4du0aqpCyEX888Un5Oth6XkH3Vn1hFpYEY
dFet4VZUqh5/fIHDRNNoqTXeVzg9TbQ2NkHjF1jL4ZtAUPWMNn6KiEIIYmt0ZUS5
UioqdXLRmIG46/FQlmywkyPZT7STaEagYuv54RRPrGLjj/VjTf31e9fW4jrwHFs+
NzPTaHHmtJuPOCIOKnFTFpJjs8zbrjRqybtc3H7yN2BEbQV7NcFOZiRChxe5i01l
ccFY0nRhyZSdC09ruXuxprFwYI3HBN5MSwsgYuO/h7Asex6RV9klSB8wjG//wJSe
r7iQIhkWxHIStnsiDNPZIXw4E5Fz4hXIO30wTmNP1Kf2xfoOdKEfEY7hOeo4W+fh
GGzDL1Y+fYet9FTR4t1uIw1qYpvQWwggMJm0xjOvoZmzJrOs2efJL5aZbr6JiK6r
2rsRBvBJ/LcVMNgkczFs
=sPiN
-END PGP SIGNATURE-


Accepted:
aqsis-examples_1.8.1-2_all.deb
  to main/a/aqsis/aqsis-examples_1.8.1-2_all.deb
aqsis_1.8.1-2.debian.tar.gz
  to main/a/aqsis/aqsis_1.8.1-2.debian.tar.gz
aqsis_1.8.1-2.dsc
  to main/a/aqsis/aqsis_1.8.1-2.dsc
aqsis_1.8.1-2_amd64.deb
  to main/a/aqsis/aqsis_1.8.1-2_amd64.deb
libaqsis-dev_1.8.1-2_amd64.deb
  to main/a/aqsis/libaqsis-dev_1.8.1-2_amd64.deb
libaqsis1_1.8.1-2_amd64.deb
  to main/a/aqsis/libaqsis1_1.8.1-2_amd64.deb


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



Accepted ocaml-extunix 0.0.4-1 (source amd64)

2012-06-05 Thread Mehdi Dogguy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 17:37:13 +0200
Source: ocaml-extunix
Binary: libextunix-ocaml-dev libextunix-ocaml
Architecture: source amd64
Version: 0.0.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Mehdi Dogguy me...@debian.org
Description: 
 libextunix-ocaml - Extended functions for OCaml Unix module
 libextunix-ocaml-dev - Extended functions for OCaml Unix module
Closes: 675505
Changes: 
 ocaml-extunix (0.0.4-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release (Closes: #675505)
 - Rebase patches
   * Install extunix.cmxs, when available
   * Bump Standards-Version to 3.9.3, no changes needed.
Checksums-Sha1: 
 d1392978d520a237302be84916b9b08ad7b0c2f1 1826 ocaml-extunix_0.0.4-1.dsc
 72a6df1d16b73001098cfe36974558496677f2e1 80005 ocaml-extunix_0.0.4.orig.tar.gz
 a686be92177cf2f8cb03e9ba7538916c33f88b8e 3502 
ocaml-extunix_0.0.4-1.debian.tar.gz
 dc6c4be64bf7fe7e79d45442e3e585404c0066a1 297228 
libextunix-ocaml-dev_0.0.4-1_amd64.deb
 d6be6ef14cbe6450d959d68a0e2a5cb748144141 229712 
libextunix-ocaml_0.0.4-1_amd64.deb
Checksums-Sha256: 
 53cd22b021f5cb42a6cc40c40a985667daacad7b02e7a40b7c9da6be870c0f5f 1826 
ocaml-extunix_0.0.4-1.dsc
 7ee29febc413718c8728c57179aba454fb1e9be5d4586ddc4af3c73e0ec52db7 80005 
ocaml-extunix_0.0.4.orig.tar.gz
 9f3c5f0021f51265a326476ffa5348d99553f14d73baaa14780619797f3daf58 3502 
ocaml-extunix_0.0.4-1.debian.tar.gz
 b12ba6a4cb06e5b16f7637407565ede41f83bb940d2e9435da089e2ec9588306 297228 
libextunix-ocaml-dev_0.0.4-1_amd64.deb
 9f02f92b7932b3349575e60a2d7aff2960dc5a7a344394ffce27f133bc8b6f9f 229712 
libextunix-ocaml_0.0.4-1_amd64.deb
Files: 
 234e2d208a5197db33b1cb0e7d0eb7b1 1826 ocaml optional ocaml-extunix_0.0.4-1.dsc
 e39517d74e74be000896c2ffe3172267 80005 ocaml optional 
ocaml-extunix_0.0.4.orig.tar.gz
 4c68557c71c73b844c77b4f80be246da 3502 ocaml optional 
ocaml-extunix_0.0.4-1.debian.tar.gz
 1da229303580ebd9c0c85a1894adc9c1 297228 ocaml optional 
libextunix-ocaml-dev_0.0.4-1_amd64.deb
 4a54fa660623eccc3b3ede3fb3d2befd 229712 ocaml optional 
libextunix-ocaml_0.0.4-1_amd64.deb

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

iQEcBAEBAgAGBQJPzjQ9AAoJEDe1GR0FRlJoFUsH/3kB4Q6xg0bD2DmZIlCBqbA4
9H4Jb+LEh1NItybmoLpV9dmH+IEc1rlBbScNBvusLWlKeG09ZP8qVmctOOnyM9k2
3Um+XsThQEKi3PmJ/uDDvN8IzJ6iMckLU45jzDYt5rsPFp39vCRpwQ1gs7wb6+Fs
essIr68mz1etYhH1ak2NW5h0uNnv9iwf2yw0DUH8txtnrlAYLYAH+WfZMBvbIyOX
SQCjdxTfo0RnO1ASBBdagAbOvcrlfDa0wU4pYLyqFLG4GEN9xTuJyf/KEpFhoNuU
J+aU5TGELMvDajBJR1TXGCPT4IKIo3o8pVlc8KEcAh7s7GE9UMpQYQXBkDPUH0E=
=mQCo
-END PGP SIGNATURE-


Accepted:
libextunix-ocaml-dev_0.0.4-1_amd64.deb
  to main/o/ocaml-extunix/libextunix-ocaml-dev_0.0.4-1_amd64.deb
libextunix-ocaml_0.0.4-1_amd64.deb
  to main/o/ocaml-extunix/libextunix-ocaml_0.0.4-1_amd64.deb
ocaml-extunix_0.0.4-1.debian.tar.gz
  to main/o/ocaml-extunix/ocaml-extunix_0.0.4-1.debian.tar.gz
ocaml-extunix_0.0.4-1.dsc
  to main/o/ocaml-extunix/ocaml-extunix_0.0.4-1.dsc
ocaml-extunix_0.0.4.orig.tar.gz
  to main/o/ocaml-extunix/ocaml-extunix_0.0.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/e1sbwxp-0008me...@franck.debian.org



Accepted execnet 1.0.9-0.1 (source all)

2012-06-05 Thread Simon Chopin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 26 May 2012 16:28:24 +0200
Source: execnet
Binary: python-execnet
Architecture: source all
Version: 1.0.9-0.1
Distribution: unstable
Urgency: low
Maintainer: Adam Schmalhofer adam.schmalho...@gmx.de
Changed-By: Simon Chopin chopin.si...@gmail.com
Description: 
 python-execnet - rapid multi-Python deployment
Closes: 673686
Changes: 
 execnet (1.0.9-0.1) unstable; urgency=low
 .
   * Non-maintainer upload
   * New upstream release (Closes: #673686)
Checksums-Sha1: 
 59dfe84597cf5da884b1c6f85213aa597d35332f 1784 execnet_1.0.9-0.1.dsc
 1251c364149a8d9d9417c785e8fafc488a324cbb 272324 execnet_1.0.9.orig.tar.gz
 d4c59d10fdb25a314dea82b6d682b1b54f5bfee7 3693 execnet_1.0.9-0.1.debian.tar.gz
 768da83f770996d8a61f0076378ac63005fc9d8e 248710 
python-execnet_1.0.9-0.1_all.deb
Checksums-Sha256: 
 02eafd366e6ce26617e67af06f667c9825762b0ff802b09f56a71e77230da629 1784 
execnet_1.0.9-0.1.dsc
 eafcf0b249630ae9810644ad8c9352f55fa8e0f748163bd884768ee99c2c1e79 272324 
execnet_1.0.9.orig.tar.gz
 07bd64ee6817426df9d163a308ec7eaf3a3af617e10841c9d216259cb95b6129 3693 
execnet_1.0.9-0.1.debian.tar.gz
 55586d1e9d814619b4f9866eb996825ce1e4a685e549b2825ecd877531e1ec81 248710 
python-execnet_1.0.9-0.1_all.deb
Files: 
 3f811bbf997f4f321c6a917b4f173b5b 1784 python optional execnet_1.0.9-0.1.dsc
 5af5b21cdb497078d30de323563af420 272324 python optional 
execnet_1.0.9.orig.tar.gz
 8ed8881bdfdc38e2ad99a8e9bc46d041 3693 python optional 
execnet_1.0.9-0.1.debian.tar.gz
 7dec14b0e895a81b9ade04b434724cfd 248710 python optional 
python-execnet_1.0.9-0.1_all.deb

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

iQIcBAEBCgAGBQJPwQRlAAoJEACQ/CG1zRrMiuMP/RgTkau37gMPS7aq2BxkRzjB
lZC+U+0NZpnUBTSULiLiSJ0iHVNdbIQmGJLKX1pSslLFR12lcXNCbFy0RPIZgwjs
SnDO+7IuTjYiy+X7k+vjPndN4gvluH2X7rRpzwXryt95bk8hnxvjUsM1lqiAU8+a
UmapYIv3otUWoKW8rud6+xSSuZQfIM5jLCDmR8s3EToEBXkPiVilTeNnChgmgBlf
2KuZBKghtp8eTq9/Bv8/9SvO/HgiaIhiz+eMUsy9f0qPezbvEeeaXokgTp5lQoNp
KxyVj9nW1oKPyqaMBjWwxee/5Ui++jxw+bN2fdF1sOCyM2RbmtcuBhJGpTXxaHiY
eBu737u9gUi+LPkHNwerPctrgCPg3ZEib7X5umWzI6iUSD4fm/0fHUSMPtJS7qwy
w1TbnYwFP1cdjYMi7yFo3iFMyr2NKtmrHBMfXeq59ggu2v+WOai2+RTh3fCpF+iS
8VldTsfJ9EysheDPlP+aRbdHxiCOk3ksCSpQkgQlsEfYasiCdLXRr4G1enkGrofk
2uicFXJHLKdzGUB83qh/G/GPzDFHelGzoqDsutBq2izarpjO5K6pJz3/efcJE1Qw
19S0h4LmKPWdWbDB2GdQRKoS5sBxUD32NWEvEW9ISWu5jMVVUUfpDu62145cUk5C
iSMI8QafJ0q4e5FthjXO
=9L6N
-END PGP SIGNATURE-


Accepted:
execnet_1.0.9-0.1.debian.tar.gz
  to main/e/execnet/execnet_1.0.9-0.1.debian.tar.gz
execnet_1.0.9-0.1.dsc
  to main/e/execnet/execnet_1.0.9-0.1.dsc
execnet_1.0.9.orig.tar.gz
  to main/e/execnet/execnet_1.0.9.orig.tar.gz
python-execnet_1.0.9-0.1_all.deb
  to main/e/execnet/python-execnet_1.0.9-0.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/e1sbxah-00011b...@franck.debian.org



Accepted mysql-ocaml 1.1.1-1 (source amd64)

2012-06-05 Thread Mehdi Dogguy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 18:44:32 +0200
Source: mysql-ocaml
Binary: libmysql-ocaml libmysql-ocaml-dev
Architecture: source amd64
Version: 1.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Mehdi Dogguy me...@debian.org
Description: 
 libmysql-ocaml - OCaml bindings for MySql (runtime package)
 libmysql-ocaml-dev - OCaml bindings for MySql (development package)
Changes: 
 mysql-ocaml (1.1.1-1) unstable; urgency=low
 .
   * New upstream release
   * Add a Homepage field in debian/control.
   * Update debian/watch file.
   * Remove local patches, integrated by upstream.
   * Bump standards version to 3.9.3
   * Switch source package format to 3.0 (quilt)
   * Fix lintian's duplicate-short-description libmysql-ocaml{,-dev}
Checksums-Sha1: 
 192f67fb9f11bccb7eb6a8ebbafc0516b92b27cf 1829 mysql-ocaml_1.1.1-1.dsc
 387f43df423287a04ce945c65007737982668019 119676 mysql-ocaml_1.1.1.orig.tar.gz
 6decf427a202fe5da0d448433df649ad7c0e9ddb 3658 mysql-ocaml_1.1.1-1.debian.tar.gz
 abed812dc9f25b024affe3c008080453646a0b12 17190 libmysql-ocaml_1.1.1-1_amd64.deb
 783b5eb1fc8a45f59e3cb1f3ae4657ec5a0705a3 66682 
libmysql-ocaml-dev_1.1.1-1_amd64.deb
Checksums-Sha256: 
 2a8b10abcaca5e93c2c381ab20bf10cf72ab1543c724fef09dbcdfda8688ffe6 1829 
mysql-ocaml_1.1.1-1.dsc
 f896fa101a05d81b85af8122fe1c2809008a5e5fdca00f9ceeb7eec356369e3a 119676 
mysql-ocaml_1.1.1.orig.tar.gz
 d4406d9fa1920225f3ed776fb81ee49754f2a5399824f67e5d6b981b1f2ee670 3658 
mysql-ocaml_1.1.1-1.debian.tar.gz
 c7a34e511f8d9a928d1c1f1713a0a99b94b679a36cb3637292d0ffc433b8d03d 17190 
libmysql-ocaml_1.1.1-1_amd64.deb
 6e554c6a6b061dacf506792cc89522f132ab8b2b1084cb50047a3e6045586d46 66682 
libmysql-ocaml-dev_1.1.1-1_amd64.deb
Files: 
 6d026a2de8f5b4e6c65a4c3c25990fad 1829 ocaml optional mysql-ocaml_1.1.1-1.dsc
 ee051266aa521527f5d49f514811555f 119676 ocaml optional 
mysql-ocaml_1.1.1.orig.tar.gz
 f48bbfad8e241db9c41de588d35801dd 3658 ocaml optional 
mysql-ocaml_1.1.1-1.debian.tar.gz
 f0645e374f5dc3ddb2af699a0af6803a 17190 ocaml optional 
libmysql-ocaml_1.1.1-1_amd64.deb
 32dd809fc8a341cd1c21109b24656dfe 66682 ocaml optional 
libmysql-ocaml-dev_1.1.1-1_amd64.deb

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

iQEcBAEBAgAGBQJPzjkGAAoJEDe1GR0FRlJosY4H/082VslVtcbfIIYgiWncmJ+K
RwT/xIkrhmTaJY5INHm1g5xLCEZB685MFqjQosnCOq3kLyMKBvTVurjIsPmhtzlq
Oq9f55Ts/SJq5OgMlZ0XIvoatYSluFa1Umk3f6TRBxIGP8q2Sfg3Bjr3Qq0pIQwS
oJ4SRSC680zxo49xm5PA5psVjKlsMGxvt0clWY26HlldPCojkb5wpkDeHnpbBR1g
PNMtRNL+Ivxoozc5Fuv1R5pOAcWYqsdsFPnILBtIA5Dp4GR4ftpmKdj4tH9ihveK
vGUwLPIDKQSDgqfF6N0TYx4dXDwAyLxtDrlQpULBvZPHv+wjBzc0sheMrFFwT08=
=zxD2
-END PGP SIGNATURE-


Accepted:
libmysql-ocaml-dev_1.1.1-1_amd64.deb
  to main/m/mysql-ocaml/libmysql-ocaml-dev_1.1.1-1_amd64.deb
libmysql-ocaml_1.1.1-1_amd64.deb
  to main/m/mysql-ocaml/libmysql-ocaml_1.1.1-1_amd64.deb
mysql-ocaml_1.1.1-1.debian.tar.gz
  to main/m/mysql-ocaml/mysql-ocaml_1.1.1-1.debian.tar.gz
mysql-ocaml_1.1.1-1.dsc
  to main/m/mysql-ocaml/mysql-ocaml_1.1.1-1.dsc
mysql-ocaml_1.1.1.orig.tar.gz
  to main/m/mysql-ocaml/mysql-ocaml_1.1.1.orig.tar.gz


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



Accepted openimageio 1.0.5+dfsg0-1 (source i386)

2012-06-05 Thread Matteo F. Vescovi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 10:50:52 +0200
Source: openimageio
Binary: libopenimageio1.0 libopenimageio-dev openimageio-tools
Architecture: source i386
Version: 1.0.5+dfsg0-1
Distribution: unstable
Urgency: low
Maintainer: Debian PhotoTools Maintainers 
pkg-phototools-de...@lists.alioth.debian.org
Changed-By: Matteo F. Vescovi mfv.deb...@gmail.com
Description: 
 libopenimageio-dev - Library for reading and writing images - development
 libopenimageio1.0 - Library for reading and writing images - runtime
 openimageio-tools - Library for reading and writing images - command line tools
Closes: 673504
Changes: 
 openimageio (1.0.5+dfsg0-1) unstable; urgency=low
 .
   * New upstream release
 + debian/: symbols files added
   * debian/: updated manpages moved to manpages sub-dir.
 Thanks to IRIE Shinsuke for the updated manpages (Closes: #673504)
   * debian/patches/: #0002 added to fix FTBFS on Hurd.
 Thanks to Pino Toscano (pino) for the hint
Checksums-Sha1: 
 dc3c01345477f88dcf8a1326de2a6af3ebec2782 1722 openimageio_1.0.5+dfsg0-1.dsc
 77d64bfaacf0f494d57d74d0cf42f7f85b8cad7b 3643920 
openimageio_1.0.5+dfsg0.orig.tar.gz
 dd8a4f9e6f172642e298db413a6a5d6a5db3de54 187652 
openimageio_1.0.5+dfsg0-1.debian.tar.gz
 72a3c38de86f24779cb9e065cae38716ce695dc4 1076612 
libopenimageio1.0_1.0.5+dfsg0-1_i386.deb
 2a9e00df5da6110a10f59c771ffa2fba26d89a56 659090 
libopenimageio-dev_1.0.5+dfsg0-1_i386.deb
 d6534b10be93ea2cab6cd5dafca50de7e8ecf15a 427694 
openimageio-tools_1.0.5+dfsg0-1_i386.deb
Checksums-Sha256: 
 366b7d42e0b8eda9498a3f37680632988ca926f1a7b5b9704fce49b1222b9028 1722 
openimageio_1.0.5+dfsg0-1.dsc
 fb7b0b5c1edb2b865da1961c1ebd2a2043cd1ce5121c3c21ed0a82864f5ad12e 3643920 
openimageio_1.0.5+dfsg0.orig.tar.gz
 02714cf1ac3a9ff9317f3608d173bb97696208a03bf49768b3d7ae5f7704869f 187652 
openimageio_1.0.5+dfsg0-1.debian.tar.gz
 1d5ee256e66b39a1c0e6aa85372f3e8dc8493495d3bbd50c23320ce4d8095d79 1076612 
libopenimageio1.0_1.0.5+dfsg0-1_i386.deb
 92b9a5be97279797a1ab087f99a5968490c7201dfe7364a4e644b8f35ea6caa5 659090 
libopenimageio-dev_1.0.5+dfsg0-1_i386.deb
 db3a450f087fddea62bcf1e153d4a256890c5cd48df5234365b532b9e5f5e711 427694 
openimageio-tools_1.0.5+dfsg0-1_i386.deb
Files: 
 0aad237e8a696aa5bc733e41ac508b74 1722 libs extra openimageio_1.0.5+dfsg0-1.dsc
 517cf0c0916b4af7b83295f6c1f78287 3643920 libs extra 
openimageio_1.0.5+dfsg0.orig.tar.gz
 b01fab3fce8c4bcd1fbcbaec99089001 187652 libs extra 
openimageio_1.0.5+dfsg0-1.debian.tar.gz
 b31682859112d28d8f173a514ac4bd90 1076612 libs extra 
libopenimageio1.0_1.0.5+dfsg0-1_i386.deb
 eeab2c1a69242e5ad9e7fe23ed4b546d 659090 libdevel extra 
libopenimageio-dev_1.0.5+dfsg0-1_i386.deb
 28ec6ba458bd1355c92f13716cff7e59 427694 graphics extra 
openimageio-tools_1.0.5+dfsg0-1_i386.deb

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

iEUEARECAAYFAk/OOBoACgkQ5qqQFxOSsXQxUQCY4UU4sTtWMZVcuwUsbJXgzn3e
WwCgyhqW1JbFF+dWo8VFtNYDcgil8Vk=
=tVib
-END PGP SIGNATURE-


Accepted:
libopenimageio-dev_1.0.5+dfsg0-1_i386.deb
  to main/o/openimageio/libopenimageio-dev_1.0.5+dfsg0-1_i386.deb
libopenimageio1.0_1.0.5+dfsg0-1_i386.deb
  to main/o/openimageio/libopenimageio1.0_1.0.5+dfsg0-1_i386.deb
openimageio-tools_1.0.5+dfsg0-1_i386.deb
  to main/o/openimageio/openimageio-tools_1.0.5+dfsg0-1_i386.deb
openimageio_1.0.5+dfsg0-1.debian.tar.gz
  to main/o/openimageio/openimageio_1.0.5+dfsg0-1.debian.tar.gz
openimageio_1.0.5+dfsg0-1.dsc
  to main/o/openimageio/openimageio_1.0.5+dfsg0-1.dsc
openimageio_1.0.5+dfsg0.orig.tar.gz
  to main/o/openimageio/openimageio_1.0.5+dfsg0.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/e1sbxcp-00019l...@franck.debian.org



Accepted pytest-xdist 1.8-0.1 (source all)

2012-06-05 Thread Simon Chopin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 26 May 2012 16:42:16 +0200
Source: pytest-xdist
Binary: python-pytest-xdist
Architecture: source all
Version: 1.8-0.1
Distribution: unstable
Urgency: low
Maintainer: Adam Schmalhofer adam.schmalho...@gmx.de
Changed-By: Simon Chopin chopin.si...@gmail.com
Description: 
 python-pytest-xdist - xdist plugin for py.test
Closes: 668104
Changes: 
 pytest-xdist (1.8-0.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * New upstream release (Closes: #668104)
   * Add python-pytest to the dependencies.
   * Version the python-execnet dependency to = 1.0.9
Checksums-Sha1: 
 e12ed35935017ccc16b0589322bb3883663f4b6a 1811 pytest-xdist_1.8-0.1.dsc
 58cc0df5305707f0ba288ed63a2c78d3b14e046f 25553 pytest-xdist_1.8.orig.tar.gz
 c384da8391d1646f49e1d114282f30fcb24cd765 2902 
pytest-xdist_1.8-0.1.debian.tar.gz
 312d222b361a9d4da55b78b0a20b8b5442e80be4 21984 
python-pytest-xdist_1.8-0.1_all.deb
Checksums-Sha256: 
 73968d9ba43d4de6e9b1692672b05e69ccfa7903046b9e6185706d4a2cc38fff 1811 
pytest-xdist_1.8-0.1.dsc
 bce20a148f12f6990b51f54ddde768f53bf901fc172370394838be1c9918def2 25553 
pytest-xdist_1.8.orig.tar.gz
 a452dac6fe694de9dc0cf968a83145c51e250d207af74f12f5c6139bbc6a2d48 2902 
pytest-xdist_1.8-0.1.debian.tar.gz
 812675396ab1e9d7263335249f6db33586631c31aacceeecb37852d5d1e66e2e 21984 
python-pytest-xdist_1.8-0.1_all.deb
Files: 
 b62315e682a914dccd69467640b001ae 1811 python optional pytest-xdist_1.8-0.1.dsc
 1160bc6953c5be781f77de30db71867f 25553 python optional 
pytest-xdist_1.8.orig.tar.gz
 933d67af7ad61079d5ce9f1a3443c078 2902 python optional 
pytest-xdist_1.8-0.1.debian.tar.gz
 a6d66a825c9790fe1a3840d94bbc8d77 21984 python optional 
python-pytest-xdist_1.8-0.1_all.deb

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

iQIcBAEBCgAGBQJPwQRlAAoJEACQ/CG1zRrMLm4QAONIGpF20KkjflVFAu0lKkVr
O6fGtTvQm+yVXG+oq7lfynNHQTOHpncCoq0515YOgwHTZnxpvwce8KYqkhr79qFr
g4TeoIPilfKiKLcK+LuNx9SIrJVbYGXRlGDKybVxHWTTPdIW6+SBKBYOSbUKQxAG
XRkNlqqXbR4NtAuQRrhm85JuallecNZZoi+vgL6eI32Lat9uZ4fVTDoQo52QVxYy
ieUjmo3soig69oVcdiXQ2MmEfRNxcFUgUqNZifDpd1oTL/mgbsNQf54196motknQ
AkJk+aV+lN7YDo9156xfIzjhr/qHhgLnNzr/DZ/Z3qgJfiRnPIxS3WTEoVpF7wbG
e5JTTH2cV25Ne/iHcqMByEn7AHVzY2mq8N3IvZ/lPDKamUYhR2oEOB8Q6SXpP38y
UzLwGjFzSUnAIXOxUG1gAFUl4xUVyKT6Y3fyWItBJFj0iUn4hjEuc8+68sxiOdcI
h3MI3ca/elaHyN9u4CTYa35bUnuo9aRo47XQecTsWpSeUnJPKe6Isrn94PYb0Coi
TRk9Sxk6ib15gPzPZarQN5ke+/sx43idISv9FqU5mz8XEIu0g697C++2de3Fal5F
Z3fYcyjVcplNi2Xbi6biUJXgYZTGNfqQ3XAbV0T1ktY1uamIT1h4r+Vhgk5xYh9Z
HGrtdPVJq7WVJKaorazd
=S9UB
-END PGP SIGNATURE-


Accepted:
pytest-xdist_1.8-0.1.debian.tar.gz
  to main/p/pytest-xdist/pytest-xdist_1.8-0.1.debian.tar.gz
pytest-xdist_1.8-0.1.dsc
  to main/p/pytest-xdist/pytest-xdist_1.8-0.1.dsc
pytest-xdist_1.8.orig.tar.gz
  to main/p/pytest-xdist/pytest-xdist_1.8.orig.tar.gz
python-pytest-xdist_1.8-0.1_all.deb
  to main/p/pytest-xdist/python-pytest-xdist_1.8-0.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/e1sbxd7-0001ba...@franck.debian.org



Accepted wmnut 0.64-1 (source i386)

2012-06-05 Thread Arnaud Quette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 18:34:30 +0200
Source: wmnut
Binary: wmnut
Architecture: source i386
Version: 0.64-1
Distribution: unstable
Urgency: low
Maintainer: Arnaud Quette aque...@debian.org
Changed-By: Arnaud Quette aque...@debian.org
Description: 
 wmnut  - WindowMaker dock app that displays UPS statistics from NUT's upsd
Closes: 565751 586956 671308
Changes: 
 wmnut (0.64-1) unstable; urgency=low
 .
   * New upstream release (Closes: #586956, #671308, #565751)
   * debian/control:
 - update Standards-Version to 3.9.3
 - update debhelper to 9
 - remove dpatch, autoconf and automake Build-Depends
   * debian/rules:
 - fix Lintian warning debian-rules-missing-recommended-target
 - remove dpatch targets
   * debian/copyright: update GPL-2 reference
   * debian/patches/*: removed
   * debian/source.lintian-overrides: remove, since it's no longer needed
 with format 3.0
   * debian/compat: update to 9
   * debian/source/format: created, for 3.0 (quilt)
   * debian/copyright: update Copyright and download location
   * debian/watch: update URL
Checksums-Sha1: 
 9a76ca6e3d5fe9cf7731eb94dbda7361a8ae1c95 1118 wmnut_0.64-1.dsc
 45c6a54f58fa022f505942a14019a870494999b3 175292 wmnut_0.64.orig.tar.gz
 e115f19ded07324ae1707a05bfd9820dc0475789 3621 wmnut_0.64-1.debian.tar.gz
 bd600846727d2d2a870a91c287722ff44022dd4a 40284 wmnut_0.64-1_i386.deb
Checksums-Sha256: 
 93f988ba4e69886a19625cfab57a6f9deb5a995840348e8472d3ec06571a610d 1118 
wmnut_0.64-1.dsc
 dfc2c4bfd501692ddee1b280f78bc518541f9f781d39f035cfbcfd07f01f3445 175292 
wmnut_0.64.orig.tar.gz
 20007df848dd6f4dbd3dbb26a25c16d1d95ed4364df60c52dbc8e652d0524156 3621 
wmnut_0.64-1.debian.tar.gz
 00aa374c9ecb1b9af4af9b0b8edb858a95ba5e011df4d4feff781309919f5a5a 40284 
wmnut_0.64-1_i386.deb
Files: 
 9c8df3c816aaf5c14d092163056c8b0b 1118 x11 optional wmnut_0.64-1.dsc
 898a2f48d426fc6368efaac9418111a3 175292 x11 optional wmnut_0.64.orig.tar.gz
 d94238e006c954d35a2b3abb2aa36737 3621 x11 optional wmnut_0.64-1.debian.tar.gz
 2d03f518b0a8d72c82a8904a92c94d4f 40284 x11 optional wmnut_0.64-1_i386.deb

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

iEYEARECAAYFAk/OOCwACgkQ22QUyiBN3xt4UwCePIzPwNz7eebUH+mCf3KxH7wG
bU8AnRs6qpQ0KXJYof3fatqVrD+hpWAw
=BZZN
-END PGP SIGNATURE-


Accepted:
wmnut_0.64-1.debian.tar.gz
  to main/w/wmnut/wmnut_0.64-1.debian.tar.gz
wmnut_0.64-1.dsc
  to main/w/wmnut/wmnut_0.64-1.dsc
wmnut_0.64-1_i386.deb
  to main/w/wmnut/wmnut_0.64-1_i386.deb
wmnut_0.64.orig.tar.gz
  to main/w/wmnut/wmnut_0.64.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/e1sbxdq-0001cm...@franck.debian.org



Accepted ampache 3.6-git408e713+dfsg-1 (source all)

2012-06-05 Thread Charlie Smotherman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 31 May 2012 15:25:52 -0500
Source: ampache
Binary: ampache ampache-common
Architecture: source all
Version: 3.6-git408e713+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Charlie Smotherman cj...@cableone.net
Changed-By: Charlie Smotherman cj...@cableone.net
Description: 
 ampache- web-based audio file management system
 ampache-common - web-based audio file management system common files
Closes: 656553 666005 668639 668932 668936
Changes: 
 ampache (3.6-git408e713+dfsg-1) unstable; urgency=low
 .
   * New upstream git snapshot, using commit
 408e71344ade84685c181cd326e2ec5e79c9157b Closes: #668932, #668936
   * Prep for apache2.4 transition.
   * Removed files ApacheAmpache, lighttpd_ampache.conf, mythbuntu.ampache.conf
 and vhost, they are no longer needed.
   * Added debain/conf/ampache.conf to be more inline with the apache2.4
 transition.  This required a rewrite of the postinst, postrm, and preinst.
 Closes: #668639, #656553 LP: #996507
   * Split package into ampache and ampache-common.  Ampache behaves the same
 and installs the apache2 web server, as where ampache-common will not.
 This will allow users to deploy ampache on other web servers if they wish.
 Removed support for lighttpd and mythbuntu as I do not feel comfortable
 supporting web servers I no longer use.  Closes: #666005
   * Removed debconf question from ampache.config and ampache.templates,
 updated po files with debconf-updatepo.
   * Updated README.Debian to mention the package split.
   * Removed cruft from debian/rules and updated get-orig-source to retrieve
 source files from upstreams git repo.  Added additional rules to remove
 embedded copies of code and nonfree fonts.  Disabled debian/watch.
   * debian/control added ampache-common binary stanza and adjusted
 dependencies to remove mythbuntu and lighttpd support.  Added php-gettext
 to dependencies as upstream now uses it.
   * Update debian/copyright with the fresh theme copyright info, udated
 header information. Added missing CC-BY-3.0 license field.  Corrected
 typo's.
Checksums-Sha1: 
 b234e89bacb47f1d5bdedcb37e40679ffb207dd1 1858 ampache_3.6-git408e713+dfsg-1.dsc
 b17248fa86f6d00936de32253a0874d287daa5cb 1942375 
ampache_3.6-git408e713+dfsg.orig.tar.gz
 382e551aeaf2ebdda16f89bbdede4b9d51695ecf 39071 
ampache_3.6-git408e713+dfsg-1.debian.tar.gz
 e82fe9e17728ee4bd010d5cfd95b0324d97053bd 73646 
ampache_3.6-git408e713+dfsg-1_all.deb
 730a3e624b39bb9905ee4286cde005a4ff36e23a 1968180 
ampache-common_3.6-git408e713+dfsg-1_all.deb
Checksums-Sha256: 
 d6225159613b13de09ba4e90056fe18398d3267678f4ffcca74dd908115ab008 1858 
ampache_3.6-git408e713+dfsg-1.dsc
 5e04aef53449695e2c1dffa0f5b266be93630d434391c22cbf9a8d11246dd0eb 1942375 
ampache_3.6-git408e713+dfsg.orig.tar.gz
 79255025ddd4b4a07eed452aa4933d1fa7144506cd9e37956ca621a8e41ce8d5 39071 
ampache_3.6-git408e713+dfsg-1.debian.tar.gz
 b1875ecafe0102e065bbe75584e36a272ba38b81fc4eb04291e6bb0f902e6ea9 73646 
ampache_3.6-git408e713+dfsg-1_all.deb
 e7629df1b59dadfa82eb5feb73818ecdb05a906470effeca067c427ee994383b 1968180 
ampache-common_3.6-git408e713+dfsg-1_all.deb
Files: 
 720951d5cabae0457fc63214eaabd7f6 1858 web optional 
ampache_3.6-git408e713+dfsg-1.dsc
 4538705c2673d432baf8235e6a596cad 1942375 web optional 
ampache_3.6-git408e713+dfsg.orig.tar.gz
 fa84ab8baa4e27715aa2ade5bfdcae0f 39071 web optional 
ampache_3.6-git408e713+dfsg-1.debian.tar.gz
 55d22444a5595cf759b023a24fc157af 73646 web optional 
ampache_3.6-git408e713+dfsg-1_all.deb
 478679db14e584921133ef6abc14d0b8 1968180 web optional 
ampache-common_3.6-git408e713+dfsg-1_all.deb

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

iQIcBAEBCAAGBQJPyzZbAAoJEEkIatPr4vMf3q0P/0USRh7vxhAtZbPPrCeWW6DY
vuFNemImZhE90/RrkRaXPsdnehoHEtlw17kUuQi+kqC9j7W+IHcp0Y6IDgx2ZMAJ
4L1qfBIlRYNHkZ/geYzAJO59gjcjbS+FWA2T7TIq8Jpz8gIdX5bPUvK8T9aakfJP
9rY1sufoWC12hKwFYGTB6TMyaP9F9/X8H/JbJfSXU59IlSeIlQXfuTrDUPVBBr+N
YBrKer2l846e2wo+Un3panekXt4x+1U0llI/Z+KzgWeN//UYTNJbc0SJwYzhlo8a
bBeqXB/1UKpHtvVcidjXK2mzk8nIOhQ4p6w2igDynFdK1ew5UyWSbPK7obMWRnjI
3JKdGvXOqQ8i1qNWnIiCNLnLP0MAi9+LcqRv3CD9lC1CivwDHL1VBoVbuJrYnTcC
Kc0HBRb1Y2dFzNzhZl+tbKf1Md0BFXc7iOa+3rTnhx10VXuCJoaJFu2BFV6G/n7h
TOTxEYTZZfbHOvVxUhK7RCUbi59ysoRNuIwuUxbioTNjhsWucdGHNzQerAotpCKO
yb9Htqv7vxvV8xVXHL2eiE8sNZtl1OXmrPz5UfmowrRJZyANP1uXf7fVShNL1gKT
hFLY7ZqHtAKLViQo4861phmJEuspvrVSBKun02/wRL8rtdtlqaOtteUxAQUu4PD+
DoOhRxxyqCXg4zzCDU+p
=Jr/9
-END PGP SIGNATURE-


Accepted:
ampache-common_3.6-git408e713+dfsg-1_all.deb
  to main/a/ampache/ampache-common_3.6-git408e713+dfsg-1_all.deb
ampache_3.6-git408e713+dfsg-1.debian.tar.gz
  to main/a/ampache/ampache_3.6-git408e713+dfsg-1.debian.tar.gz
ampache_3.6-git408e713+dfsg-1.dsc
  to main/a/ampache/ampache_3.6-git408e713+dfsg-1.dsc
ampache_3.6-git408e713+dfsg-1_all.deb
  to main/a/ampache/ampache_3.6-git408e713+dfsg-1_all.deb

Accepted libmatchbox 1.9-osso8-3 (source all amd64)

2012-06-05 Thread Moray Allan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 10:29:48 +0100
Source: libmatchbox
Binary: libmatchbox-dev libmatchbox-doc libmatchbox1
Architecture: source amd64 all
Version: 1.9-osso8-3
Distribution: unstable
Urgency: low
Maintainer: Moray Allan mo...@debian.org
Changed-By: Moray Allan mo...@debian.org
Description: 
 libmatchbox-dev - shared library for Matchbox Project applications 
[development]
 libmatchbox-doc - shared library for Matchbox Project applications 
[documentation]
 libmatchbox1 - shared library for Matchbox Project applications [runtime]
Closes: 670009
Changes: 
 libmatchbox (1.9-osso8-3) unstable; urgency=low
 .
   * Split out documentation into -doc package.  Closes: #670009.
Checksums-Sha1: 
 1fe6b1c050a988c185de40cbb38a097b2b2c3b3b 1474 libmatchbox_1.9-osso8-3.dsc
 20c749cb95d432cabf72e5e61491f7413fcc2e39 5252 
libmatchbox_1.9-osso8-3.debian.tar.gz
 7e0b9be094ed4a06c9667e88f28df2e56bf61f94 25052 
libmatchbox-dev_1.9-osso8-3_amd64.deb
 cf8a71e7d96a05f76180f45d84d882578ed060d2 96976 
libmatchbox-doc_1.9-osso8-3_all.deb
 153febfe7398ed8add2c0316b2d0c2a75fd46d11 56498 
libmatchbox1_1.9-osso8-3_amd64.deb
Checksums-Sha256: 
 b7dce9be4621f5eea190d1a6acc364ef06ddcd72772c2b3455cec4003a9f22ee 1474 
libmatchbox_1.9-osso8-3.dsc
 73fb812ed185e968cf5205f7413d5332acf660eb099c0b25fc4e688a252b4ea8 5252 
libmatchbox_1.9-osso8-3.debian.tar.gz
 6f2219179384e9c873706fd9a91e196e90f8ef90f63305477ce08600ca522f27 25052 
libmatchbox-dev_1.9-osso8-3_amd64.deb
 d0fc34b3a7f5d6cb295170b14a938b2e8fe0e6aa350bfde134fe01887e84d228 96976 
libmatchbox-doc_1.9-osso8-3_all.deb
 b77e3a87c308e73ad6684d26202df6dd067ed6d2dff2f206b82b8e6735076517 56498 
libmatchbox1_1.9-osso8-3_amd64.deb
Files: 
 f8bfdc6e7707b4a6138d92d022370f14 1474 libs optional libmatchbox_1.9-osso8-3.dsc
 402664ff79bc81003884568ac4d5d6ea 5252 libs optional 
libmatchbox_1.9-osso8-3.debian.tar.gz
 06ccb84388e6f8c417e5be1bd5af6066 25052 libdevel optional 
libmatchbox-dev_1.9-osso8-3_amd64.deb
 7c8e7d79c2c0d8b2c8c147c4b5957eea 96976 doc optional 
libmatchbox-doc_1.9-osso8-3_all.deb
 cc1f2b474200a391c55a29d51ef0f2b7 56498 libs optional 
libmatchbox1_1.9-osso8-3_amd64.deb

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

iEYEARECAAYFAk/N1IoACgkQ500puCvhbQE0fACfSqD0OrYqzH8Ztu5aFPjoA8hx
t3AAoK73MwRaiGObJypEtFaIz0svQ4Fp
=nvKt
-END PGP SIGNATURE-


Accepted:
libmatchbox-dev_1.9-osso8-3_amd64.deb
  to main/libm/libmatchbox/libmatchbox-dev_1.9-osso8-3_amd64.deb
libmatchbox-doc_1.9-osso8-3_all.deb
  to main/libm/libmatchbox/libmatchbox-doc_1.9-osso8-3_all.deb
libmatchbox1_1.9-osso8-3_amd64.deb
  to main/libm/libmatchbox/libmatchbox1_1.9-osso8-3_amd64.deb
libmatchbox_1.9-osso8-3.debian.tar.gz
  to main/libm/libmatchbox/libmatchbox_1.9-osso8-3.debian.tar.gz
libmatchbox_1.9-osso8-3.dsc
  to main/libm/libmatchbox/libmatchbox_1.9-osso8-3.dsc


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



Accepted perl 5.16.0-1 (source all i386)

2012-06-05 Thread Dominic Hargreaves
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jun 2012 13:34:00 +0100
Source: perl
Binary: perl-base libcgi-fast-perl perl-doc perl-modules perl-debug libperl5.16 
libperl-dev perl
Architecture: source all i386
Version: 5.16.0-1
Distribution: experimental
Urgency: low
Maintainer: Niko Tyni nt...@debian.org
Changed-By: Dominic Hargreaves d...@earth.li
Description: 
 libcgi-fast-perl - CGI::Fast Perl module
 libperl-dev - Perl library: development files
 libperl5.16 - shared Perl library
 perl   - Larry Wall's Practical Extraction and Report Language
 perl-base  - minimal Perl system
 perl-debug - debug-enabled Perl interpreter
 perl-doc   - Perl documentation
 perl-modules - Core Perl modules
Closes: 659075
Changes: 
 perl (5.16.0-1) experimental; urgency=low
 .
   * New upstream release
 - update debian/copyright
 - update Breaks versions in debian/control for dual-lived modules
 - remove Provides/Replaces/Breaks for removed modules
   libdevel-dprof-perl, libperl4-corelibs-perl, libshell-perl
 - add Provides/Replaces/Breaks for new libcpan-meta-requirements-perl
 - add new files to perl-base to keep it self-contained
   * Add patch from Daniel Kahn Gillmor fixing propagation of socket
 type information (Closes: #659075)
   * Fix test failure with t/op/getpid.t on kFreeBSD by including a
 linuxthreads version check
Checksums-Sha1: 
 4bcde4d6a41361f713ad20db46d61b18c4789fce 1717 perl_5.16.0-1.dsc
 56fb8097ff3e472f7a057848b37cb9ede7662b74 13568573 perl_5.16.0.orig.tar.bz2
 fe181df73328613a51f3dedfd9ebfea1c449a976 119726 perl_5.16.0-1.debian.tar.gz
 901091aa908ed29f99944ba526b4fb704798d85f 73860 
libcgi-fast-perl_5.16.0-1_all.deb
 31a4779bef0ecc56d996339d7a6650cfbcf7fd4f 7980084 perl-doc_5.16.0-1_all.deb
 f92aa50bbea24d15d6f6f5f32ab16c6552733af7 3865906 perl-modules_5.16.0-1_all.deb
 0e40ed500fe9b56fd1aba75863a8c9c97f32dc31 1526412 perl-base_5.16.0-1_i386.deb
 cd21b280c607d74d0356d28e35c2976365a093e6 9260848 perl-debug_5.16.0-1_i386.deb
 b9cfb55d94abc3dd04fd8fe9346d047b391e05a5 764084 libperl5.16_5.16.0-1_i386.deb
 9c7a2f56a7f8b74a4f4d09c559ecba9a39a8048b 3160316 libperl-dev_5.16.0-1_i386.deb
 b5ca557c389a8c0ee2f1eb21f754e77aa259303d 3710244 perl_5.16.0-1_i386.deb
Checksums-Sha256: 
 9d73c1883f876bd7ffdb944ec72a4cab0e560a49b39e10b65f4a55b584b9d7df 1717 
perl_5.16.0-1.dsc
 8c1d25e92a5760e84f77baa57fde5606fd6e95ec992408d36fa53c47162721d1 13568573 
perl_5.16.0.orig.tar.bz2
 ffefa881b0e9b1ca817d29d8e00bb0ee4b059dae8a969ba9c38b30b9b986c7a3 119726 
perl_5.16.0-1.debian.tar.gz
 9af5fbe15b69b62faf9ad2bb4a11b468093dd7c4f06378b86db94cca526dfec5 73860 
libcgi-fast-perl_5.16.0-1_all.deb
 2827fe0602ba203227dce62488f0d915cbad6e8fe138b123b0862d30d8435629 7980084 
perl-doc_5.16.0-1_all.deb
 6c993e8e60df426715b9643220bed9ba276475f67fa2c50eca74f9e6b9e01e50 3865906 
perl-modules_5.16.0-1_all.deb
 f8aca5a84e8b3cae82f83a0cd122ff80c22fd7d9e1b927d78c1c50658243c635 1526412 
perl-base_5.16.0-1_i386.deb
 7755e553d878e2cdc85c11fe9bb61bc755f57c672e372fa1c289c4a477178526 9260848 
perl-debug_5.16.0-1_i386.deb
 5298d1c4da35bf90e346fd8a8e8ed17d22a2fd8c8d1d7da5af5d76a5605bfc76 764084 
libperl5.16_5.16.0-1_i386.deb
 4a5977d90cb64c8b963e75444c5dbf70f48bb8c364965a64f96dc9adbd95e7fb 3160316 
libperl-dev_5.16.0-1_i386.deb
 431b0804d9d61ef25582c3a55d74dade3b901ed0a154f252631e0798fe566f39 3710244 
perl_5.16.0-1_i386.deb
Files: 
 adce62471aa7bd179bd28f7e6faada78 1717 perl standard perl_5.16.0-1.dsc
 15a2f95fb27231e10998240f13acf961 13568573 perl standard 
perl_5.16.0.orig.tar.bz2
 11c8257b8602b692b7f4eff241ee05af 119726 perl standard 
perl_5.16.0-1.debian.tar.gz
 23b461735e22857582f557c6260a1bbc 73860 perl optional 
libcgi-fast-perl_5.16.0-1_all.deb
 94477a66fdf225f97a89ce11a6ac7934 7980084 doc optional perl-doc_5.16.0-1_all.deb
 edfc21a145cc65d2842a0e3aa4f7b488 3865906 perl standard 
perl-modules_5.16.0-1_all.deb
 8ea4ed071b6fd86538c2a195ab922f92 1526412 perl required 
perl-base_5.16.0-1_i386.deb
 7cdd52d1c4e01fce1af473d97bff3b56 9260848 debug extra 
perl-debug_5.16.0-1_i386.deb
 54f42f652814aa89e3724bfc275593f1 764084 libs optional 
libperl5.16_5.16.0-1_i386.deb
 40b1443022a8d73e8247c61318a96303 3160316 libdevel optional 
libperl-dev_5.16.0-1_i386.deb
 ed19e4d8db080b7ada51090296d79e96 3710244 perl standard perl_5.16.0-1_i386.deb

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

iD8DBQFPzgpBYzuFKFF44qURAuuHAKDAdg3gBbtZDmPSayq7Y8N977SQnQCfUj5e
Xlqr9Xfrygm+bHZfY6pMYZU=
=OnWE
-END PGP SIGNATURE-


Accepted:
libcgi-fast-perl_5.16.0-1_all.deb
  to main/p/perl/libcgi-fast-perl_5.16.0-1_all.deb
libperl-dev_5.16.0-1_i386.deb
  to main/p/perl/libperl-dev_5.16.0-1_i386.deb
libperl5.16_5.16.0-1_i386.deb
  to main/p/perl/libperl5.16_5.16.0-1_i386.deb
perl-base_5.16.0-1_i386.deb
  to main/p/perl/perl-base_5.16.0-1_i386.deb
perl-debug_5.16.0-1_i386.deb
  to main/p/perl/perl-debug_5.16.0-1_i386.deb
perl-doc_5.16.0-1_all.deb
  to main/p/perl/perl-doc_5.16.0-1_all.deb

  1   2   >