Re: Gentoo guys starting a fork of udev

2012-11-15 Thread Guillem Jover
On Wed, 2012-11-14 at 15:23:51 -0800, Steve Langasek wrote:
 On Wed, Nov 14, 2012 at 04:05:12PM +, Roger Leigh wrote:
  If you want a reliable system, you need a reliable PID 1.  Putting
  additional complexity into PID1 increases the likelihood that a
  bug will bring down your *entire system*.  PID 1 is a single point
  of failure.  It *must* be absolutely dependable and reliable.
  Upstart is also AFAIK at fault here.
 
 [Citation needed]
 
 Upstart provides a PID 1 that is absolutely rock solid.  It's true that it's
 more complex than sysvinit, because it's more featureful; but great care has
 been taken to only pull the features into PID 1 that absolutely have to be
 there, and the implementation of those features is very elegant and
 maintainable.[1]
 
 Aside from libc, upstart has only two external library dependencies (three
 in trunk), dbus and nih:
 
 $ objdump -p /sbin/init | grep NEEDED
...
   NEEDED   libnih-dbus.so.1
   NEEDED   libdbus-1.so.3
...
 $
 
 And upstart is rigorously unit-tested at build time.
 
 That's a far cry from systemd's 8 external dependencies:
 
 $ objdump -p /lib/systemd/systemd | grep NEEDED
...
   NEEDED   libdbus-1.so.3
...
 $

TBH, I'd not trust my system to *any* critical service that uses dbus,
AFAIK it still asserts on error conditions (including non-programmer
errors). Whenever I've had to code a critical service that needed to
use dbus, I've confined its execution to a subprocess.

regards,
guillem


-- 
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/20121115081103.ga8...@gaara.hadrons.org



Re: Gentoo guys starting a fork of udev

2012-11-15 Thread Wouter Verhelst
On Wed, Nov 14, 2012 at 03:37:21PM +0100, John Paul Adrian Glaubitz wrote:
 On Wed, Nov 14, 2012 at 09:20:05AM -0500, The Wanderer wrote:
  But why is a 30-year-old concept necessarily worse than a new one? Or to 
  put it
  another way, why is it necessary to bring Linux forward, in cases where 
  what
  is already present is good and works well? (And, taken further: in cases 
  where
  what is already there *isn't* good and/or *doesn't* work well, why is it
  necessary to accept change *in a particular direction*, if that direction 
  has
  problems of its own?)
 
 Because System V Init isn't a good concept.

This I disagree with.

It has problems, yes. But it's been able to boot billions of machines
for several decades. That can't mean it's not good. Things that aren't
good can't manage to do such things.

There are problems with systemd too, and they're not limited to the
developers are obnoxious.

-- 
Copyshops should do vouchers. So that next time some bureaucracy requires you
to mail a form in triplicate, you can mail it just once, add a voucher, and
save on postage.


-- 
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/20121115081408.ge29...@grep.be



Re: Dell Latitude Nvidia problems Re: Re: Re: Re: major linux problems summary 2012

2012-11-15 Thread Vincent Lefevre
On 2012-11-14 08:44:58 +0100, Karol Szkudlarek wrote:
 I have the same card and I can tell you that the nouveau driver is
 broken with it. See the bug mentioned above:
 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=640464
 
 According to point 6 of http://nouveau.freedesktop.org/wiki/TroubleShooting
 
 do you tried building nouveau from the latest sources?

Is there a way to do that under Debian without breakiing the system?

Anyway, it seems that Debian is quite up-to-date (based on June 2012
upstream snapshot, according to the ChangeLog), while the bug
I reported is very old.

-- 
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/20121115082841.ge1...@xvii.vinc17.org



Re: Gentoo guys starting a fork of udev

2012-11-15 Thread Chow Loong Jin
On 15/11/2012 16:14, Wouter Verhelst wrote:
 It has problems, yes. But it's been able to boot billions of machines
 for several decades. That can't mean it's not good. Things that aren't
 good can't manage to do such things.

Oh sure, it isn't bad, it just isn't good enough. I don't think machines several
decades back booted particularly quickly, supported hotplug, or had any of the
bells and whistles we have today. While we're at it let's go back and use SCO
Unix, shall we?

-- 
Kind regards,
Loong Jin



signature.asc
Description: OpenPGP digital signature


Re: Gentoo guys starting a fork of udev

2012-11-15 Thread Chow Loong Jin
On 15/11/2012 16:11, Guillem Jover wrote:
 On Wed, 2012-11-14 at 15:23:51 -0800, Steve Langasek wrote:
 On Wed, Nov 14, 2012 at 04:05:12PM +, Roger Leigh wrote:
 If you want a reliable system, you need a reliable PID 1.  Putting
 additional complexity into PID1 increases the likelihood that a
 bug will bring down your *entire system*.  PID 1 is a single point
 of failure.  It *must* be absolutely dependable and reliable.
 Upstart is also AFAIK at fault here.

 [Citation needed]

 Upstart provides a PID 1 that is absolutely rock solid.  It's true that it's
 more complex than sysvinit, because it's more featureful; but great care has
 been taken to only pull the features into PID 1 that absolutely have to be
 there, and the implementation of those features is very elegant and
 maintainable.[1]

 Aside from libc, upstart has only two external library dependencies (three
 in trunk), dbus and nih:

 $ objdump -p /sbin/init | grep NEEDED
 ...
   NEEDED   libnih-dbus.so.1
   NEEDED   libdbus-1.so.3
 ...
 $

 And upstart is rigorously unit-tested at build time.

 That's a far cry from systemd's 8 external dependencies:

 $ objdump -p /lib/systemd/systemd | grep NEEDED
 ...
   NEEDED   libdbus-1.so.3
 ...
 $
 
 TBH, I'd not trust my system to *any* critical service that uses dbus,
 AFAIK it still asserts on error conditions (including non-programmer
 errors). Whenever I've had to code a critical service that needed to
 use dbus, I've confined its execution to a subprocess.

AFAIK g_assert() and assert() get compiled into nothing when debugging is turned
off, which is what's done for release builds.

-- 
Kind regards,
Loong Jin



signature.asc
Description: OpenPGP digital signature


Re: Gentoo guys starting a fork of udev

2012-11-15 Thread Tollef Fog Heen
]] Roger Leigh 

 So if the init process receives a signal like a SIGSEGV due to
 tripping over a bad pointer, your system will die immediately.

No, it does not.  With init, you can catch it and continue.  In the case
of systemd, it dumps core (if possible) and then freezes itself so it
stops doing anything such as reaping zombies and you need to reboot
quite quickly, but the system continues to mostly work.

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87zk2jb6sb@qurzaw.varnish-software.com



Re: A common configuration format, anyone?

2012-11-15 Thread Vincent Lefevre
On 2012-11-15 00:15:06 +, Dmitrijs Ledkovs wrote:
 Also XML is not diff-able easily, which is usual for tree-like structures.

If you mean diff-able for the human, then it depends on the complexity
of the data. I have no problems with mine. wdiff can help.

But what I really like with XML is the validation (in some standard
way) via schemas (for config files, where an error can be critical,
this is quite important), and the fact that there's no ambiguity on
the charset.

-- 
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/20121115083802.gf1...@xvii.vinc17.org



Bug#693296: RFH: worldwind

2012-11-15 Thread Sylvestre Ledru
Package: wnpp
Severity: normal

Hello,

Here is a new upstream version. There are some binary jars included into the
source upstream tarball.
I am not using the software anymore, it is still non-free
and I am just doing classical maintenance on this software.
So, if you are using worldwind and would like to see a new upstream release
in Debian, please step in. It is managed within the Debian Science Umbrella.

Cheers,
Sylvestre


-- 
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/20121115090130.31912.16199.reportbug@kornati.scihome



Re: Gentoo guys starting a fork of udev

2012-11-15 Thread Guillem Jover
On Thu, 2012-11-15 at 16:32:41 +0800, Chow Loong Jin wrote:
 On 15/11/2012 16:11, Guillem Jover wrote:
  TBH, I'd not trust my system to *any* critical service that uses dbus,
  AFAIK it still asserts on error conditions (including non-programmer
  errors). Whenever I've had to code a critical service that needed to
  use dbus, I've confined its execution to a subprocess.
 
 AFAIK g_assert() and assert() get compiled into nothing when debugging
 is turned off, which is what's done for release builds.

dbus uses its own assert function (_dbus_real_assert(), not based on
either assert() or g_assert()), when DBUS_DISABLE_ASSERT is undefined.

In any case, you are right, its use seems to be only enabled on debug
builds in Debian (--enable-asserts used on debian/rules), which is
good, AFAIR this did not use to be the case in the past.

thanks,
guillem


-- 
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/20121115092104.ga10...@gaara.hadrons.org



Re: Candidates for removal from testing (2012-11-14)

2012-11-15 Thread Niels Thykier
On 2012-11-15 00:15, Emmanuel Bouthenot wrote:
 Hi,
 
 On Wed, Nov 14, 2012 at 10:02:10PM +0100, Niels Thykier wrote:
 [...]
 
 Should you need a bit more time than given, please do not hesitate to
 contact us.  It is also easier for us if we can avoid having to
 reintroduce a removed package.
 [...]
 
 Debian Sympa team pkg-sympa-de...@lists.alioth.debian.org
sympa

 Emmanuel Bouthenot kol...@debian.org
sympa (U)
 
 As said in the bug report[1], I'm currently working on fixing this bug
 but I might need more time to finish writing some tests to be sure that
 the fix is correct.
 
 Is it possible to relax the deadline?
 
 
 [1] http://bugs.debian.org/686846
 
 Regards,
 

Certainly, do you have a rough idea of how long you will need?

~Niels


-- 
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/50a4b91e.6030...@thykier.net



Re: Bug#656858: libimage-exiftool-perl: new upstream version available

2012-11-15 Thread Mari Wang
Dominique Dumont d...@debian.org writes:

 On Tuesday 13 November 2012 12:12:14 random.numb...@gmx.com wrote:
 libimage-exiftool-perl got its last update in July 2011.
 ...
 Mari's last reaction to this bug was five months ago.

 This package could be also maintained by Debian-perl team.

 Mari, do you have any objection if Debian-perl team adopt
 libimage-exif-perl ?

 Note that you are more than welcome to join the team if you want to
 participate in maintaining this package when you have more free
 time.

No, I have no objection to the Debian-perl team taking over this
package.  Please do so.  I really wanted to keep up the maintenance
myself, but it is past time I realized there is no time for it right
now, and won't be for quite a while yet. As to joining the debian-perl
team, I'll remember that and come back to it if (when?) free time
becomes available again.

Do I need to do anything more for this to happen, or can you take care
of the rest? (Yes, I realize I could read up on that and find the
answer myself, but, see comment about time constraints above)

All the best

Mari

(And thanks to upstream for being unusually patient)

-- 

Mari Wang


-- 
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/5eimwyjp4fl@safir.ifi.uio.no



Re: A common configuration format, anyone?

2012-11-15 Thread Dmitrijs Ledkovs
On 15 November 2012 08:38, Vincent Lefevre vinc...@vinc17.net wrote:
 On 2012-11-15 00:15:06 +, Dmitrijs Ledkovs wrote:
 Also XML is not diff-able easily, which is usual for tree-like structures.

 If you mean diff-able for the human, then it depends on the complexity
 of the data. I have no problems with mine. wdiff can help.

 But what I really like with XML is the validation (in some standard
 way) via schemas (for config files, where an error can be critical,
 this is quite important), and the fact that there's no ambiguity on
 the charset.

How about YAML?!

Regards,

Dmitrijs.


-- 
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/CANBHLUhZx=Bxt=yzxzjtxuexxmmh+wdmodtjtfalvk0rtre...@mail.gmail.com



Re: Question: Packages.xz and Contents-arch.xz

2012-11-15 Thread Neil Williams
On Thu, 15 Nov 2012 11:10:13 +0900
Hideki Yamane henr...@debian.or.jp wrote:

  Just a question, is there any reason not provide Packages.xz and
  Contents-arch.xz in package repository? I cannot find any information
  about it, so please tell me.
 
A stable release freeze is not the time to go changing stuff like
this ... all the tools which use and generate the Packages.gz and
Contents-arch.gz files would need support for .xz in place *in
current stable* before this could be changed permanently.

Does apt have support already? If it doesn't, then it's too late to
consider this for Wheezy which means that the stable release into which
this support could be implemented is Jessie which means that the
change couldn't be made until after the Jessie release.

The AptToSid derivative is already using .xz, so maybe there is
support in apt, I haven't checked (but a quick run through the
apt-cache manpage doesn't mention it):

http://ftp.heanet.ie/mirrors/aptosid/debian/dists/sid/main/binary-amd64/

A bit of testing using that mirror could provide real data for this
question.

  I think provide Packages.xz rather than bzip2 is better choice (if we can).

It's worth exploring but the first steps are to test with existing
repositories using .xz and to generate a second repository with
only .xz files and see what breaks...

e.g. it looks from a cursory glance at the manpage that reprepro can
update from repositories which use .xz compression but whether it can
then produce .xz instead of .gz would need testing / input from
Bernhard

-- 


Neil Williams
=
http://www.linux.codehelp.co.uk/



pgpuNkei5wDdL.pgp
Description: PGP signature


Bug#693310: ITP: spiped -- create secure pipes between socket addresses

2012-11-15 Thread Peter Pentchev
Package: wnpp
Severity: wishlist
Owner: Peter Pentchev r...@ringlet.net

* Package name: spiped
  Version : 1.2.2
  Upstream Author : Colin Percival cperc...@tarsnap.com
* URL : http://www.tarsnap.com/spiped.html
* License : BSD-2
  Programming Lang: C
  Description : create secure pipes between socket addresses

spiped (pronounced ess-pipe-dee) is a utility for creating symmetrically
encrypted and authenticated pipes between socket addresses, so that one may
connect to one address (e.g., a UNIX socket on localhost) and transparently
have a connection established to another address (e.g., a UNIX socket on a
different system).  This is similar to 'ssh -L' functionality, but does not
use SSH and requires a pre-shared symmetric key.

spipe (pronounced ess-pipe) is a utility which acts as an spiped protocol
client (i.e., connects to an spiped daemon), taking input from the standard
input and writing data read back to the standard output.

-- 
Peter Pentchev  r...@ringlet.net r...@freebsd.org pe...@packetscale.com
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint 2EE7 A7A5 17FC 124C F115  C354 651E EFB0 2527 DF13
If I were you, who would be reading this sentence?


signature.asc
Description: Digital signature


Re: Candidates for removal from testing (2012-11-14)

2012-11-15 Thread Emmanuel Bouthenot
On Thu, Nov 15, 2012 at 10:42:54AM +0100, Niels Thykier wrote:
[...]

 Certainly, do you have a rough idea of how long you will need?
Before the end of the month, probably earlier but I will be glad to not
have to work under time pressure.


Regards,

M.

-- 
Emmanuel Bouthenot
  mail: kolter@{openics,debian}.orggpg: 4096R/0x929D42C3
  xmpp: kol...@im.openics.org  irc: kolter@{freenode,oftc}


-- 
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/20121115124330.gd6...@openics.org



Re: Bug#693310: ITP: spiped -- create secure pipes between socket addresses

2012-11-15 Thread Paul Wise
On Thu, Nov 15, 2012 at 8:18 PM, Peter Pentchev wrote:

   Description : create secure pipes between socket addresses

 spiped (pronounced ess-pipe-dee) is a utility for creating symmetrically
 encrypted and authenticated pipes between socket addresses, so that one may
 connect to one address (e.g., a UNIX socket on localhost) and transparently
 have a connection established to another address (e.g., a UNIX socket on a
 different system).  This is similar to 'ssh -L' functionality, but does not
 use SSH and requires a pre-shared symmetric key.

 spipe (pronounced ess-pipe) is a utility which acts as an spiped protocol
 client (i.e., connects to an spiped daemon), taking input from the standard
 input and writing data read back to the standard output.

Sounds similar to socat, which can connect endpoints (including SSL ones).

stunnel is similar too.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: Bug#693310: ITP: spiped -- create secure pipes between socket addresses

2012-11-15 Thread Peter Pentchev
On Thu, Nov 15, 2012 at 09:12:53PM +0800, Paul Wise wrote:
 On Thu, Nov 15, 2012 at 8:18 PM, Peter Pentchev wrote:
 
Description : create secure pipes between socket addresses
 
  spiped (pronounced ess-pipe-dee) is a utility for creating symmetrically
  encrypted and authenticated pipes between socket addresses, so that one may
  connect to one address (e.g., a UNIX socket on localhost) and transparently
  have a connection established to another address (e.g., a UNIX socket on a
  different system).  This is similar to 'ssh -L' functionality, but does not
  use SSH and requires a pre-shared symmetric key.
 
  spipe (pronounced ess-pipe) is a utility which acts as an spiped protocol
  client (i.e., connects to an spiped daemon), taking input from the standard
  input and writing data read back to the standard output.
 
 Sounds similar to socat, which can connect endpoints (including SSL ones).
 
 stunnel is similar too.

Thanks for your comments!

I am familiar with Stunnel (I maintained the FreeBSD port for several
years), and I have indeed examined the Swiss army knife that is socat,
too.  IMHO the advantages of spiped lie in its simplicity, its lean and
mean design for doing just one thing and doing it well (and yes, I am
quite aware that this is pretty much exactly how socat started Way Back
When :)) and its speed.  It does not attempt to start a full-blown
OpenSSL session, it uses just symmetric cryptography with a preshared
key (and an optional, on by default, Diffie-Hellman session key
exchange) for robust, high-load client-server connections (as witnessed
by its origin in the Tarsnap project).

I personally think that it would be a useful alternative to have in
Debian; of course, if people's opinion leans the other way, I would be
prepared to withdraw the ITP.

G'luck,
Peter


-- 
Peter Pentchev  r...@ringlet.net r...@freebsd.org pe...@packetscale.com
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint 2EE7 A7A5 17FC 124C F115  C354 651E EFB0 2527 DF13
If you think this sentence is confusing, then change one pig.


signature.asc
Description: Digital signature


Bug#693342: ITP: dhrystone -- a popular benchmark for CPU/compiler performance measurement

2012-11-15 Thread Chris Wilson
Package: wnpp
Severity: wishlist
Owner: Chris Wilson chris+deb...@aptivate.org

* Package name: dhrystone
  Version : 2.1
  Upstream Author : Reinhold P. Weicker
* URL : www.netlib.org/benchmark/dhry-c
* License : Public Domain
  Programming Lang: C
  Description : a popular benchmark for CPU/compiler performance measurement

The Dhrystone benchmark program has become a popular benchmark for
CPU/compiler performance measurement, in particular in the area of
minicomputers, workstations, PC's and microprocesors. It apparently satisfies
a need for an easy-to-use integer benchmark; it gives a first performance
indication which is more meaningful than MIPS numbers which, in their literal
meaning (million instructions per second), cannot be used across different
instruction sets (e.g. RISC vs. CISC). With the increasing use of the
benchmark, it seems necessary to reconsider the benchmark and to check whether
it can still fulfill this function. Version 2 of Dhrystone is the result of
such a re-evaluation.


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



Re: Gentoo guys starting a fork of udev

2012-11-15 Thread Nikolaus Rath
Steve Langasek vor...@debian.org writes:
 Aside from libc, upstart has only two external library dependencies (three
 in trunk), dbus and nih:

 $ objdump -p /sbin/init | grep NEEDED
   NEEDED   libnih.so.1
   NEEDED   libnih-dbus.so.1
   NEEDED   libdbus-1.so.3
   NEEDED   librt.so.1
   NEEDED   libc.so.6
 $

 And upstart is rigorously unit-tested at build time.

 That's a far cry from systemd's 8 external dependencies:

 $ objdump -p /lib/systemd/systemd | grep NEEDED
   NEEDED   libselinux.so.1
   NEEDED   libdbus-1.so.3
   NEEDED   libudev.so.0
   NEEDED   libwrap.so.0
   NEEDED   libpam.so.0
   NEEDED   libaudit.so.0
   NEEDED   libcap.so.2
   NEEDED   libkmod.so.2
   NEEDED   librt.so.1
   NEEDED   libc.so.6
   NEEDED   ld-linux.so.2
 $


Hmm. Without further information, that could just as well be interpreted
as upstart containing 5 less tested reimplementations of existing
libraries.



Best,

   -Nikolaus

-- 
 »Time flies like an arrow, fruit flies like a Banana.«

  PGP fingerprint: 5B93 61F8 4EA2 E279 ABF6  02CF A9AD B7F8 AE4E 425C


--
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/87txsqg5hs@inspiron.ap.columbia.edu



Re: Really, about udev, not init sytsems (was: Gentoo guys starting a fork of udev)

2012-11-15 Thread Thomas Goirand
On 11/14/2012 11:12 AM, Thomas Goirand wrote:
 Hi,

 I think this is an interesting read:
 http://article.gmane.org/gmane.linux.gentoo.project/2262

 The full thread is here:
 http://thread.gmane.org/gmane.linux.gentoo.project/2262

 As Gentoo guys and some major kernel people are protesting about the
 insanity Kay and Lennart have done to udev, probably this is a window of
 opportunity to stop being annoyed in Debian, by brutal RedHat decisions
 which we don't necessarily (have to) agree on (eg: move to /usr, merge
 with systemd, etc.).

 Thoughts anyone? Would anyone have time to work with Gentoo? What is the
 view of the kernel team and the udev (marco?) maintainers?

 Cheers,

 Thomas
This thread was originally about udev, yet everyone is starting again the
systemd / upstart / sysv-rc war. I think we can agree that we don't about
the init system, and it wasn't my intention to restart this debate.

However, how should Debian see this udev fork? Could it be beneficial to
Debian somehow? Is there the will to maintain it? Are the udev (or kernel)
maintainers opposing this (future) fork to enter Debian? If yes, on what
ground? Is it even realistic to think Debian could use such a fork, which
probably the upstream kernel maintainers wont support? What is the view
of kernel.org people on this btw?

I still have no answer to these... Yet udev is a crucial piece of software,
and I've been told in this list that mdev is a toy that isn't fit for
the job.

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/50a52fef.4070...@debian.org



Re: Really, about udev, not init sytsems

2012-11-15 Thread Russ Allbery
Thomas Goirand z...@debian.org writes:

 This thread was originally about udev, yet everyone is starting again
 the systemd / upstart / sysv-rc war. I think we can agree that we don't
 about the init system, and it wasn't my intention to restart this
 debate.

 However, how should Debian see this udev fork? Could it be beneficial to
 Debian somehow? Is there the will to maintain it? Are the udev (or
 kernel) maintainers opposing this (future) fork to enter Debian? If yes,
 on what ground? Is it even realistic to think Debian could use such a
 fork, which probably the upstream kernel maintainers wont support? What
 is the view of kernel.org people on this btw?

I think part of the reason why the conversation hasn't been very
productive is that this is somewhat premature.  At this point, I think the
only reason to know about the fork (still a significant reason, don't get
me wrong!) is so that anyone in Debian who feels motivated to help out
with the fork can join the upstream development team.

In terms of it being a viable choice for integration into Debian, it's way
too early to know one way or the other, and there's really no point in
speculating (which is why the speculation goes off into unproductive
corners like the long-standing init system argument).  There are things
that could happen that would make it clearly a bad choice (the fork
doesn't stay viable enough to produce releases) or clearly a good choice
(most of the existing udev developers end up contributing to the fork and
then it becomes the official udev, similar to what happened to gcc in the
egcs days).  The debate is mostly over the likelihood of those and other
intermediate possibilities, and rather than arguing about it, we could
just wait and see.  :)

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/


-- 
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/87y5i23de2@windlord.stanford.edu



Re: Question: Packages.xz and Contents-arch.xz

2012-11-15 Thread Joerg Jaspert
On 13031 March 1977, David Kalnischkies wrote:

 Note also that it is unlikely that ftpmaster will add another compression
 file to the archive and mirror folks will be happy about that. So its not
 just a lets add xz but a lets replace bz2 with xz and this might be
 a bit more complicated as indexes like Translation files are only available
 in bz2 and this used to be hardcoded everywhere.

Correct, we will NOT add another compression (nor another checksum)
algorithm. Not until we get rid of the existing stuff (and ideally end
up with just one compressor).

But sure as hell NOT during a freeze, anyways.

-- 
bye, Joerg
[Es geht doch nichts ueber deutsche Uebersetzungen]
hurd:/# updatedb
hurd:/# /servers/socket/2: Der Übersetzer ist gestorben
-- Message-ID: 86d7f2d2xe@woodstock.huemmer.net


-- 
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/87y5i28vxt@gkar.ganneff.de



Re: Question: Packages.xz and Contents-arch.xz

2012-11-15 Thread Guillem Jover
On Thu, 2012-11-15 at 17:11:02 +0100, David Kalnischkies wrote:
 0.8.10.3+squeeze1 does as its changelog tells us.
 Note through that it needs the 'xz' binary for that (as it did for bzip2,
  that changed just yet with the usage of libbz2 now for wheezy and as
  usual people complain about it …). xz is priority required though so
 this is most likely not that much of an issue as it was for bzip2.

Although xz-utils is currently priority required, it should really go
back to optional, as dpkg stopped Pre-Depending on it some time ago.

thanks,
guillem


-- 
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/20121115203145.ga28...@gaara.hadrons.org



Naming Debian Versions on debian.org web site.

2012-11-15 Thread RalfGesellensetter
Hi there,

I've been using Debian since 2.x, but recently I 
was confused by (missing) namings on the
debian web site:

1. Main Page http://www.debian.org/ (German):

[10. Nov 2012] Helfen Sie uns bei der Wheezy-Veröffentlichung: Nehmen Sie an 
unserem BSP-Marathon teil
[29. Sep 2012] Debian 6.0 aktualisiert: 6.0.6 veröffentlicht

Last message speaks of wheezy (rhyming to squeeze, confusingly) which is 7.0
Below, Debian 6.0 is mentioned, but neither here nor in the

2. Download area http://www.debian.org/distrib/ 
the code name Squeeze is not used. There, not
even the version number is printed. 

I think, as we don't want to loose interested users
on the very first step, it should be discussed to 
mention always both version number and code name.

What is your impression?

Thanks
Ralf


--
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/201211152152.08746@gmx.de



Re: Question: Packages.xz and Contents-arch.xz

2012-11-15 Thread Henrique de Moraes Holschuh
On Thu, 15 Nov 2012, Guillem Jover wrote:
 On Thu, 2012-11-15 at 17:11:02 +0100, David Kalnischkies wrote:
  0.8.10.3+squeeze1 does as its changelog tells us.
  Note through that it needs the 'xz' binary for that (as it did for bzip2,
   that changed just yet with the usage of libbz2 now for wheezy and as
   usual people complain about it …). xz is priority required though so
  this is most likely not that much of an issue as it was for bzip2.
 
 Although xz-utils is currently priority required, it should really go
 back to optional, as dpkg stopped Pre-Depending on it some time ago.

More like it should be in standard nowadays, along with bzip2.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
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/20121115205609.gc18...@khazad-dum.debian.net



Re: Question: Packages.xz and Contents-arch.xz

2012-11-15 Thread Adam Borowski
On Thu, Nov 15, 2012 at 06:56:10PM -0200, Henrique de Moraes Holschuh wrote:
 On Thu, 15 Nov 2012, Guillem Jover wrote:
  
  Although xz-utils is currently priority required, it should really go
  back to optional, as dpkg stopped Pre-Depending on it some time ago.
 
 More like it should be in standard nowadays, along with bzip2.

What about deprecatianizing bzip2?  There are no real reasons to keep it
afloat, there are no areas where it shines compared to the rest.  It's only
claim for relevancy is that it was the only decent compressor popular in the
Unix world for a period of time in the past.

xz on the other hand is the current best, and it covers a big range of uses:
it can be both fast and good (-0) or slow-to-compress fast-to-decompress
with a great compression ratio (-6, or -9e if compression speed is totally
irrelevant).  The only niches it doesn't win are frequently flushed streams
(ie, interactive) and faster-than-disk-IO compression (lzop/newcomers).
That deserves promotion.

Obviously, abusing priority just to artificially promote a compressor would
be, well, abuse, but it's worth noting that xz has been priority:required on
all Linux distributions for a while.  This sounds like at least
priority:important would be reasonable.


-- 
How to squander your resources: those silly Swedes have a sauce named
hovmästarsås, the best thing ever to put on cheese, yet they waste it
solely on mere salmon.


-- 
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/20121115211851.ga18...@angband.pl



Pronunciation (was: Re: Naming Debian Versions on debian.org web site.)

2012-11-15 Thread Adam D. Barratt

On 15.11.2012 20:52, RalfGesellensetter wrote:

Last message speaks of wheezy (rhyming to squeeze, confusingly)


They don't rhyme, at least in English; the final sound of squeeze is 
closer to z. (As opposed to squeezy, which would indeed rhyme, but 
isn't a Debian release... :-) )


Regards,

Adam


--
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/b9df31f620236fbf05458393d0ce3...@mail.adsl.funky-badger.org



Re: Bug#656858: libimage-exiftool-perl: new upstream version available

2012-11-15 Thread gregor herrmann
On Thu, 15 Nov 2012 11:05:02 +0100, Mari Wang wrote:

  libimage-exiftool-perl got its last update in July 2011.
  This package could be also maintained by Debian-perl team.
  Mari, do you have any objection if Debian-perl team adopt
  libimage-exif-perl ?
  Note that you are more than welcome to join the team if you want to
  participate in maintaining this package when you have more free
  time.
 No, I have no objection to the Debian-perl team taking over this
 package.  Please do so.  

Thank you!
I'm moving it to a gi repo under pkg-perl right now.

 As to joining the debian-perl
 team, I'll remember that and come back to it if (when?) free time
 becomes available again.

You are (and everone else is) always welcome.
 
 Do I need to do anything more for this to happen, or can you take care
 of the rest?

That's fine, we take care about the rest :)

Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Flying Pickets: You've Lost That Lovin' Feelin


signature.asc
Description: Digital signature


Re: A common configuration format, anyone?

2012-11-15 Thread Philip Ashmore

On 15/11/12 10:18, Dmitrijs Ledkovs wrote:

On 15 November 2012 08:38, Vincent Lefevrevinc...@vinc17.net  wrote:

On 2012-11-15 00:15:06 +, Dmitrijs Ledkovs wrote:

Also XML is not diff-able easily, which is usual for tree-like structures.


If you mean diff-able for the human, then it depends on the complexity
of the data. I have no problems with mine. wdiff can help.

But what I really like with XML is the validation (in some standard
way) via schemas (for config files, where an error can be critical,
this is quite important), and the fact that there's no ambiguity on
the charset.


How about YAML?!
Yeah, I took a look at that and it's got some neat ideas, but it targets 
modelling, where mine targets content.
The v3c-storyboard test/examples show how you can overlay semantic 
validation - test2 even allows you to specify a bison grammar for this.


Where sbd wins over YAML in terms of format is that it's a binary 
representation that can be walked any way you like and is in-place-editable.
You can generate sbd (the binary format) from sbt files (the text 
format), and sometimes I still find a text editor handier for some 
things, then drag-drop the result into sb-designer to insert it into an sbd.



Regards,

Dmitrijs.



Philip


--
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/50a56f83.5080...@philipashmore.com



Re: Naming Debian Versions on debian.org web site.

2012-11-15 Thread Simon Paillard
Hi,

On Thu, Nov 15, 2012 at 09:52:07PM +0100, RalfGesellensetter wrote:
 I've been using Debian since 2.x, but recently I was confused by (missing)
 namings on the debian web site:
 
 1. Main Page http://www.debian.org/ (German):
 
 [10. Nov 2012] Helfen Sie uns bei der Wheezy-Veröffentlichung: Nehmen Sie 
 an unserem BSP-Marathon teil
 [29. Sep 2012] Debian 6.0 aktualisiert: 6.0.6 veröffentlicht
 
 Last message speaks of wheezy (rhyming to squeeze, confusingly) which is 7.0
 Below, Debian 6.0 is mentioned, but neither here nor in the

 2. Download area http://www.debian.org/distrib/ 
 the code name Squeeze is not used. There, not
 even the version number is printed. 
 
 I think, as we don't want to loose interested users
 on the very first step, it should be discussed to 
 mention always both version number and code name.

I quite agree, but I wonder whether users may be lost if we both display
squeeze 6.0.2 and squeeze 6.0.5 (for example).
 
 What is your impression?

That such interesting remark should be sent to the relevant -www list (the one
indicated in the website footer).

-- 
Simon Paillard


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121115235354.gc31...@glenfiddich.mraw.org



Work-needing packages report for Nov 16, 2012

2012-11-15 Thread wnpp
The following is a listing of packages for which help has been requested
through the WNPP (Work-Needing and Prospective Packages) system in the
last week.

Total number of orphaned packages: 489 (new: 5)
Total number of packages offered up for adoption: 139 (new: 2)
Total number of packages requested help for: 64 (new: 2)

Please refer to http://www.debian.org/devel/wnpp/ for more information.



The following packages have been orphaned:

   arpwatch (#693374), orphaned today
 Description: Ethernet/FDDI station activity monitor
 Installations reported by Popcon: 1092

   crashmail (#693229), orphaned yesterday
 Installations reported by Popcon: 9

   dconf (#693308), orphaned today
 Description: collect system information
 Installations reported by Popcon: 156

   postnews (#693232), orphaned yesterday
 Description: Post Usenet articles via NNTP from the command line
 Installations reported by Popcon: 23

   uqwk (#693231), orphaned yesterday
 Description: Offline mail and news package creator (NNTP version)
 Installations reported by Popcon: 8

484 older packages have been omitted from this listing, see
http://www.debian.org/devel/wnpp/orphaned for a complete list.



The following packages have been given up for adoption:

   multimail (#693230), offered yesterday
 Description: Offline reader for Blue Wave, QWK, OMEN and SOUP
 Installations reported by Popcon: 9

   ulatencyd (#692907), offered 5 days ago
 Description: Daemon to minimize latency on a linux system using
   cgroups
 Installations reported by Popcon: 65

137 older packages have been omitted from this listing, see
http://www.debian.org/devel/wnpp/rfa_bypackage for a complete list.



For the following packages help is requested:

[NEW] cloud-init (#693094), requested 3 days ago
 Description: configuration and customization of cloud instances
 Installations reported by Popcon: 5

[NEW] worldwind (#693296), requested today (non-free)
 Installations reported by Popcon: 264

   apt-xapian-index (#567955), requested 1018 days ago
 Description: maintenance tools for a Xapian index of Debian packages
 Installations reported by Popcon: 59340

   asymptote (#517342), requested 1357 days ago
 Description: script-based vector graphics language inspired by
   MetaPost
 Installations reported by Popcon: 3348

   athcool (#278442), requested 2942 days ago
 Description: Enable powersaving mode for Athlon/Duron processors
 Installations reported by Popcon: 70

   balsa (#642906), requested 417 days ago
 Description: An e-mail client for GNOME
 Installations reported by Popcon: 265

   bastille (#592137), requested 831 days ago
 Description: Security hardening tool
 Installations reported by Popcon: 192

   cardstories (#624100), requested 570 days ago
 Description: Find out a card using a sentence made up by another
   player
 Installations reported by Popcon: 9

   chromium-browser (#583826), requested 900 days ago
 Description: Chromium browser
 Installations reported by Popcon: 10905

   debtags (#567954), requested 1018 days ago
 Description: Enables support for package tags
 Installations reported by Popcon: 2466

   doc-central (#566364), requested 1027 days ago
 Description: web-based documentation browser
 Installations reported by Popcon: 209

   fbcat (#565156), requested 1037 days ago
 Description: framebuffer grabber
 Installations reported by Popcon: 152

   flightgear (#487388), requested 1608 days ago
 Description: Flight Gear Flight Simulator
 Installations reported by Popcon: 840

   freeipmi (#628062), requested 539 days ago
 Description: GNU implementation of the IPMI protocol
 Installations reported by Popcon: 2007

   gnat-4.4 (#539633), requested 1675 days ago
 Description: backport bug fixes from trunk (GCC 4.5)
 Installations reported by Popcon: 1630

   gnat-gps (#496905), requested 1540 days ago
 Description: co-maintainer needed
 Installations reported by Popcon: 433

   gnokii (#677750), requested 152 days ago
 Description: Datasuite for mobile phone management
 Installations reported by Popcon: 2321

   gnupg (#660685), requested 269 days ago
 Description: GNU privacy guard - a free PGP replacement
 Installations reported by Popcon: 128792

   golang (#668870), requested 214 days ago
 Description: Go programming language compiler - metapackage
 Installations reported by Popcon: 374

   gpa (#663405), requested 250 days ago
 Description: GNU Privacy Assistant (GPA)
 Installations reported by Popcon: 510

   gradle (#683666), requested 105 days ago
 Description: Groovy based build system
 

Re: Question: Packages.xz and Contents-arch.xz

2012-11-15 Thread Peter Samuelson

[Hideki Yamane]
  henrich@hp:/tmp$ du -k Packages.*
  6052Packages.bz2
  5812Packages.xz
  henrich@hp:/tmp$ time bzip2 -d Packages.bz2 
  
  real0m0.999s
  user0m0.956s
  sys 0m0.020s
  
  henrich@hp:/tmp$ rm Packages
  henrich@hp:/tmp$ time xz -d Packages.xz 
  
  real0m0.565s
  user0m0.532s
  sys 0m0.032s
 
  henrich@hp:/tmp$ time gzip -d Packages.gz 
  gzip: Packages already exists; do you wish to overwrite (y or n)? y
  
  real0m1.932s
  user0m0.272s
  sys 0m0.012s

While your post has good points, we need to notice that because of the
interactive prompt, the 'real' time value for gzip -d is misleading.

  decompression speed is 
   best  : xz
   second: bz2
   third : gz

If you ignore the time gzip spent waiting for you to type 'y', it is
the fastest, not the slowest.

Peter


-- 
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/20121116012454.gk4...@p12n.org



Bug#693406: ITP: ceilometer -- openstack efficient metering counters system

2012-11-15 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand z...@debian.org

* Package name: ceilometer
  Version : 0.1
  Upstream Author : Julien Danjou a...@debian.org
* URL : http://github.com/openstack/ceilometer
* License : Apache-2
  Programming Lang: Python
  Description : openstack efficient metering counters system

 Ceilometer aims to deliver a unique point of contact for billing systems to
 aquire all counters they need to establish customer billing, accross all
 current and future OpenStack components. The delivery of counters must be
 tracable and auditable, the counters must be easily extensible to support new
 projects, and agents doing data collections should be independent of the
 overall system.
 .
 (A ceilometer is an instrument that measures cloud coverage.)


-- 
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/20121116073817.17656.9613.report...@buzig.gplhost.com



Accepted erlang-jiffy 0.5.2+dfsg-2 (source amd64)

2012-11-15 Thread Nobuhiro Iwamatsu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 Nov 2012 17:15:19 +0900
Source: erlang-jiffy
Binary: erlang-jiffy
Architecture: source amd64
Version: 0.5.2+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: LeoFS maintainers team pkg-leofs-de...@lists.alioth.debian.org
Changed-By: Nobuhiro Iwamatsu iwama...@debian.org
Description: 
 erlang-jiffy - JSON NIFs (Native Implemented Functions) for Erlang
Changes: 
 erlang-jiffy (0.5.2+dfsg-2) unstable; urgency=low
 .
   * Update debian/rules.
 - Add -fsigned-char to CFLAGS.
   Fix FTBFS on armel, armhf, powerpc, s390 and s390x.
Checksums-Sha1: 
 1d0d92897781e4ce699c0827412db611b0e78448 2122 erlang-jiffy_0.5.2+dfsg-2.dsc
 46d5ef3c4e0c3c435276c67fbb6e6cd060875538 3739 
erlang-jiffy_0.5.2+dfsg-2.debian.tar.gz
 092fbe101ab4a019d1009622b96a9ee98f67e2f1 24834 
erlang-jiffy_0.5.2+dfsg-2_amd64.deb
Checksums-Sha256: 
 665b8276527b9b645c5f986316cee9068023b11604463851657af6972b59eb32 2122 
erlang-jiffy_0.5.2+dfsg-2.dsc
 d4b82d801b1b7267c429aef36ed79b02d7ad237788aa02c00c2cdea8f053b759 3739 
erlang-jiffy_0.5.2+dfsg-2.debian.tar.gz
 2831c9b090dd742284eac03f6998b402d71bd8fcf6fa37816ead6f2bf46d060d 24834 
erlang-jiffy_0.5.2+dfsg-2_amd64.deb
Files: 
 86e4204a77c4cdb52245760098555bba 2122 devel optional 
erlang-jiffy_0.5.2+dfsg-2.dsc
 308bc7e4b6d05c9da7d5b2030d8a3faa 3739 devel optional 
erlang-jiffy_0.5.2+dfsg-2.debian.tar.gz
 b1299f854874c26c23f1c2f534b3c00f 24834 devel optional 
erlang-jiffy_0.5.2+dfsg-2_amd64.deb

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

iQIcBAEBCAAGBQJQpKY/AAoJEDIkf7tArR+maWAQAJb+VPfpe0l4tIIsdQXqHD2r
ajOjTVxhOCLTGv36jkI1mcSg19ua23q8b1RG90EOQckt/Nf2nzPiNcUM+lOcFfuz
P550sqsEzhLLhN1qMrnIrX/FWbBgAuYmAy8FxbEnxfDKEiptShQvhmBIz3LRX0EK
/A1r/uScV+i91LKEP3pA639rxgywNi0sdK6NxeZQ2jCFSbGk80sgQA6gOADcW9Ov
9n3h25gaEDHE2HJAcHmVu7MI20hvBWK7zbmcXIs/zy7YTeETDJ85XauZPKBjMMyX
/7t+qxXxJIiSMI22Hu+mz7WV8jOzIbb12XApms8cF5KKqJRa6WiNW8MBkbUFU02d
rPE+sOUQSfrwucaH2bgnmX6z3ojbasi4Bmzm3MtOxsWeMGj5ORJWPMmzDWoBeeLV
Fv7Ya0tmrq1p8ipyp1eTDeaWCyVO5iV59CBrDY/+Lx3iF0+ZESEMMwC8kzXqUDRE
T32frJmMnKH5Hafos2CZyCx/+3/8DHDpF/GYw/usyupciPwWoctztD+VAWtL9ht+
XqwSDwri/c2LtqciPqQG2Zmx+d62JLOkj1qlPQ7KO9eTusT+bJbetoxbnWbJs20F
ol+9UzbahDjl0qmvEEZ6PwLNBDFzTRBapvOCCaKw7UeFLLtHMCCKLM3KNLu52H0O
D1bzlcIK4eeSn6is1WVU
=Kwmi
-END PGP SIGNATURE-


-- 
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/e1tyuse-ps...@franck.debian.org



Accepted horizon 2012.1.1-7 (source all)

2012-11-15 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 08:47:18 +
Source: horizon
Binary: python-django-horizon openstack-dashboard openstack-dashboard-apache
Architecture: source all
Version: 2012.1.1-7
Distribution: unstable
Urgency: high
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 openstack-dashboard - OpenStack Dashboard
 openstack-dashboard-apache - OpenStack Dashboard - Apache support
 python-django-horizon - Django module providing web interaction with OpenStack
Closes: 693287
Changes: 
 horizon (2012.1.1-7) unstable; urgency=high
 .
   * CVE-2012-5474: The file /etc/openstack-dashboard/local_settings is not
   world readable anymore (Closes: #693287).
Checksums-Sha1: 
 f835a31a07a1e4c95b22d54a31b5e1d46f9f0039 1935 horizon_2012.1.1-7.dsc
 8fd89513f483234df4777334eb1e69c39a35 7665 horizon_2012.1.1-7.debian.tar.gz
 af407f57ab1ff10d838fa7c64132ff34798f6c7d 391714 
python-django-horizon_2012.1.1-7_all.deb
 273c1dd70b6f872fd803e1197ff39bddae867ac5 195952 
openstack-dashboard_2012.1.1-7_all.deb
 0dc1b19bab038d93004dd1193cc1c9c3e6f70b7a 4128 
openstack-dashboard-apache_2012.1.1-7_all.deb
Checksums-Sha256: 
 ce4575747403bdc07b36d876c566ecb4485c8b58f5c2ee2b07937e1bcd5f317b 1935 
horizon_2012.1.1-7.dsc
 4a73bbcc4299b2bdd13d79d29abf8acff036435c6adcdb5ce3c337abdc19eba4 7665 
horizon_2012.1.1-7.debian.tar.gz
 a030e0909cd67b3ada1f580059f03137c7f30492a1d24812731ef68a6739f1f1 391714 
python-django-horizon_2012.1.1-7_all.deb
 ced22961bd60fbdb7a18edabb6350e1fd8b9aa3b8f49b73350ddd1ad98494a15 195952 
openstack-dashboard_2012.1.1-7_all.deb
 f7197037eacafcc0515c59abdeeecd415b67b89bbeaa435b65588f569cbfc061 4128 
openstack-dashboard-apache_2012.1.1-7_all.deb
Files: 
 705e7634f1f363d67949187b80bc2a06 1935 net extra horizon_2012.1.1-7.dsc
 a15edc577f3300d779c47444e03e1165 7665 net extra 
horizon_2012.1.1-7.debian.tar.gz
 c0f16dc41f4692cfc984f53f337199c3 391714 python extra 
python-django-horizon_2012.1.1-7_all.deb
 1c58e96069c592e6e10f266c7242bad9 195952 net extra 
openstack-dashboard_2012.1.1-7_all.deb
 04d8018862614c9a9b0f2fa6b4f01001 4128 net extra 
openstack-dashboard-apache_2012.1.1-7_all.deb

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

iEYEARECAAYFAlCkrPIACgkQl4M9yZjvmknccQCfUNZiT7kPy8BlJuWg1KYdp5Ye
z+sAn1ErbvPstbzVuWp1OhYl/taeCTnu
=Mja8
-END PGP SIGNATURE-


-- 
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/e1tyusq-wg...@franck.debian.org



Accepted msmtp 1.4.30-1 (source amd64 all)

2012-11-15 Thread Emmanuel Bouthenot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 10 Nov 2012 08:08:24 +
Source: msmtp
Binary: msmtp msmtp-gnome msmtp-mta
Architecture: source amd64 all
Version: 1.4.30-1
Distribution: unstable
Urgency: low
Maintainer: Emmanuel Bouthenot kol...@debian.org
Changed-By: Emmanuel Bouthenot kol...@debian.org
Description: 
 msmtp  - light SMTP client with support for server profiles
 msmtp-gnome - light SMTP client with support for server profiles - with GNOME k
 msmtp-mta  - light SMTP client with support for server profiles - the regular
Closes: 689236
Changes: 
 msmtp (1.4.30-1) unstable; urgency=low
 .
   * New upstream release
 - fix the msmtp: no recipients found error (Closes: #689236)
   * Fix Vcs-Browser field
Checksums-Sha1: 
 0030544905e551ec3ff087c5e55bb0216688a8e0 2008 msmtp_1.4.30-1.dsc
 fd469bae0c3394b30b771780e62bbd41c4d5d175 303226 msmtp_1.4.30.orig.tar.bz2
 0ea99bbe431e58b3a2a2de5ec5d071515ff0416d 16592 msmtp_1.4.30-1.debian.tar.gz
 77227dea38355fc4d6992943a5168dcc14d1c355 140084 msmtp_1.4.30-1_amd64.deb
 83ae16de8915cb4a07652f6474624c324bc3d214 48122 msmtp-gnome_1.4.30-1_amd64.deb
 0e538e6ec60eab14db2587dd1bb504f24306ed21 29832 msmtp-mta_1.4.30-1_all.deb
Checksums-Sha256: 
 bb89806b7251afdaf662417b1cdf26877220279740cb8a4d2a2076ff301fefdf 2008 
msmtp_1.4.30-1.dsc
 f152b9296e36e340eb049c7ee4d6980fcdb29d948e654bdc74bea7ee97409886 303226 
msmtp_1.4.30.orig.tar.bz2
 76a5284125a70db213dfd2761752a6b30549a334b50589ef07e8757fba25b911 16592 
msmtp_1.4.30-1.debian.tar.gz
 3388d8b4376a22641af2d3ac6cc9f9126107dc7f12c9c9f8528ec7bc7401fd7b 140084 
msmtp_1.4.30-1_amd64.deb
 ff07f7fd9c4237fcb4d671f5b3e28c0ead3a74a1327ddaed3a9e152de5f585df 48122 
msmtp-gnome_1.4.30-1_amd64.deb
 71705010ce9e3d586edac87b29d213125c81ffad0dceeab8275c778b25195e54 29832 
msmtp-mta_1.4.30-1_all.deb
Files: 
 987431a79d25e76ca2079ec15ab7d695 2008 mail extra msmtp_1.4.30-1.dsc
 4d32724a2b03f07aa6d4ea9d49367ad3 303226 mail extra msmtp_1.4.30.orig.tar.bz2
 a30c3c2842808149039d73c987c488d2 16592 mail extra msmtp_1.4.30-1.debian.tar.gz
 9f2aeb2cafdf3a0f1ca316c9b6cd42ed 140084 mail extra msmtp_1.4.30-1_amd64.deb
 45bfb0d95ff850970ed3607f3c5e610b 48122 mail extra 
msmtp-gnome_1.4.30-1_amd64.deb
 177b48300224af3eccd358fa27d474e6 29832 mail extra msmtp-mta_1.4.30-1_all.deb

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

iQIcBAEBCgAGBQJQpJ6fAAoJEEsHdyOSnULDAmoQAIRiTUlw4qL9TYt1iD0Vmpay
J9d2tMNUMz7gLIEpESdUJ+zirt6vu9AkPjXzBUDbulfjWGFZPPU6OmWlx9wMpAUR
XmtWH2ZXiZheAJmz22X4e8Y7jsx6PrcpMKmpGx3tiSiqTFa8v2Kr81U10SXLDofC
+b3fsB6B7onoge+IMDuR+oHm9ieSBj33LdkPz9QJZRauhifjhgNaMIp5rKbcFnbk
W9Aj7UJ6kFIL/RwW+LWlc3YPZR6uSU8Iy5unZaXSX20m88jN0mMrXTq4z/fetNcG
TsIbqyjdZGtUwhVwe/Nlw83NMgq5UovrdA+UNBSUJ5N6tRrrs5Iw/Y0L01pjOgUq
ddB7tbC3eR5cR45nwKGRV2RNbTTxI3UMIJUnD33PMAoJMUvumBTNlB2uHh1DvzIe
/kTOqcMOvqVXraA7v/DAB9etR5aMSDSgBemVb6SAGDfWWJV/oOtN2EKWPZvgq3TV
yVqFqIZbXGXDQH7Zkh8GxZh3fFcjvKusifDyYFp95Oag6/U2BgP3K4ziT/Z3yN/Z
aHBOIzFm/PBjbCP8HK0XreweDXSriwyTgFErVtBMc/VXvKgJQ1BNfzOeFOiEoi5S
+qq2DBBxAgUKJnMTCeMBAO32LrF+sOYLuaT2dyTktZdQmP8Dx+FV+jmDhePpH2qg
WDsSR5VmRJEpoTnutBbh
=y8fW
-END PGP SIGNATURE-


-- 
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/e1tyuuy-0001ve...@franck.debian.org



Accepted lyskom-server 2.1.2-13 (source amd64)

2012-11-15 Thread Magnus Holmgren
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 Nov 2012 09:26:58 +0100
Source: lyskom-server
Binary: lyskom-server
Architecture: source amd64
Version: 2.1.2-13
Distribution: unstable
Urgency: low
Maintainer: Magnus Holmgren holmg...@debian.org
Changed-By: Magnus Holmgren holmg...@debian.org
Description: 
 lyskom-server - Server for the LysKOM conference system
Closes: 689898
Changes: 
 lyskom-server (2.1.2-13) unstable; urgency=low
 .
   * New maintainer.
   * Rename debian/lyskom-server.copyright debian/copyright as a source
 package should have a debian/copyright file.
   * Create /var/run/lyskom-server in the init script instead of shipping
 it with the package (Closes: #689898). Thanks Thomas Goirand.
   * Drop the $startonboot variable, which is rather pointless since
 lyskomd is actually started via cron, is disabled there by default,
 and will start regardless of $startonboot because the status file
 won't exist.
   * Fix LSB header in the init script: add $remote_fs and move $local_fs
 to Required-Start/Required-Stop; delete commas.
   * Add dependency on rsyslog | system-log-daemon, since the LSB header
 indicates that lyskomd requires a syslog facility.
   * Rework and simplify lyskom-server.postinst:
 * Use dpkg-statoverride to set ownership of data and log directories.
 * Don't nullify errors; the package should be left in an unconfigured
   state in such cases. Remove sanity checks.
 * Simply call adduser with --quiet instead of checking whether the
   lyskom user already exists.
 * Set stricter modes on the directories.
   * Don't delete /var/run/lyskom-server/status in the init script. It is
 created by komrunning when shutting down lyskomd to keep updateLysKOM
 from starting lyskomd again.
   * lyskom-server.postrm: As recommended by policy, don't delete log files
 until on purge. Also, simply rm -rf /var/lib/lyskom-server
 /var/log/lyskom-server.
   * Add dependendy on cron | cron-daemon, since that's how lyskomd is
 started.
   * debian/rules: Add build-indep and build-arch targets.
Checksums-Sha1: 
 7c6a1c4c441574a862cc1522b46c2c2b1f6d98d4 1280 lyskom-server_2.1.2-13.dsc
 8dadcfe1f46c5f0e3ff047e77dd3c987b2738620 62669 lyskom-server_2.1.2-13.diff.gz
 c084e5b23b227c13a5a6aff95bf1b5d6f1b394b5 647948 
lyskom-server_2.1.2-13_amd64.deb
Checksums-Sha256: 
 fd9628bdd65bf7786f6585cec101ac7dc4bac76c15c4419d4d48545a4ac20bbe 1280 
lyskom-server_2.1.2-13.dsc
 af01b4e8fbebf8883471391e6807dcc93785ed4add83dadc514c1dc562cc6396 62669 
lyskom-server_2.1.2-13.diff.gz
 882f09741a5cf9c629b538adfd2e2c1f2a70e6938d0e047c7efa8e5330537f27 647948 
lyskom-server_2.1.2-13_amd64.deb
Files: 
 1fece314f4803dfe45d36e2ac8807f9a 1280 net extra lyskom-server_2.1.2-13.dsc
 05b7a0c157a4f8f203b69cc954330534 62669 net extra lyskom-server_2.1.2-13.diff.gz
 596765d230abdef75ad3b7a98858f807 647948 net extra 
lyskom-server_2.1.2-13_amd64.deb

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

iEYEAREIAAYFAlCkqI8ACgkQk7mRNn1h4+birQCggaXT3jXWiMZUgFT+YjfiPMji
pQgAnRxYi1clnvrRDGHEjFg+40SS8Y9k
=iIRw
-END PGP SIGNATURE-


-- 
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/e1tyv6h-00058p...@franck.debian.org



Accepted guitarix 0.24.3-1 (source amd64)

2012-11-15 Thread Roland Stigge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 10:18:29 +0100
Source: guitarix
Binary: guitarix
Architecture: source amd64
Version: 0.24.3-1
Distribution: experimental
Urgency: low
Maintainer: Roland Stigge sti...@antcom.de
Changed-By: Roland Stigge sti...@antcom.de
Description: 
 guitarix   - Rock guitar amplifier for Jack
Changes: 
 guitarix (0.24.3-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 08e95a20d3aef83d37ae1ccf3b954b40f5f7 1250 guitarix_0.24.3-1.dsc
 65073d37671962025ca6fe355bc399cb3426329c 4475340 guitarix_0.24.3.orig.tar.bz2
 4ec3a3df6b108f90cbb011a31c9beeb38b4adb52 4424 guitarix_0.24.3-1.debian.tar.gz
 bff7d77ae12806c1602bc4c6bf18eaaeb95f2662 4189694 guitarix_0.24.3-1_amd64.deb
Checksums-Sha256: 
 92b5d7b321feefdc8afa7b20f4ba0a13c25d76166efa3f71dfdd832da949f34d 1250 
guitarix_0.24.3-1.dsc
 9af1486d72caa62582b2119dbe7c0f2d72d538395c30d440e56e2e87c00a2d82 4475340 
guitarix_0.24.3.orig.tar.bz2
 065fa3c2caff804992e7f22c67225ac7ba950c5bf02eca690421f935766a001a 4424 
guitarix_0.24.3-1.debian.tar.gz
 83878061efc483b22b362388d4736efede9241f273e6963a10cbb41a2bbc7b0a 4189694 
guitarix_0.24.3-1_amd64.deb
Files: 
 9d94093dc5768074b43b4938b1ff74b8 1250 sound extra guitarix_0.24.3-1.dsc
 29cbb9676ddc12cb2653bbef5164441c 4475340 sound extra 
guitarix_0.24.3.orig.tar.bz2
 4731fdb98430dc09bf7d6d6312885da6 4424 sound extra 
guitarix_0.24.3-1.debian.tar.gz
 8cee52712de49ff97a887d93bd773ff7 4189694 sound extra 
guitarix_0.24.3-1_amd64.deb

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

iD8DBQFQpLSccaH/YBv43g8RAg3WAJ9LNm8lixWBk1yH+1p30nrW89LVUQCcDtr7
FT+NIfF+8vGt1iTpJiSYPM4=
=k0jq
-END PGP SIGNATURE-


-- 
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/e1tyvoh-0001zx...@franck.debian.org



Accepted hgsubversion 1.5-1~exp1 (source all)

2012-11-15 Thread Qijiang Fan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 17:11:37 +0800
Source: hgsubversion
Binary: hgsubversion
Architecture: source all
Version: 1.5-1~exp1
Distribution: experimental
Urgency: low
Maintainer: Qijiang Fan fqj1...@gmail.com
Changed-By: Qijiang Fan fqj1...@gmail.com
Description: 
 hgsubversion - Subversion client as Mercurial extension
Changes: 
 hgsubversion (1.5-1~exp1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 9355e6f031fc9f3dccd82eb194395210de1d0201 1284 hgsubversion_1.5-1~exp1.dsc
 e0d76bb7b9c13964e97626930124e23434afc584 269364 hgsubversion_1.5.orig.tar.gz
 a6d60929f5411c23ba4e899c2d17461c6ad7ac90 2568 
hgsubversion_1.5-1~exp1.debian.tar.gz
 8a315153cfef38c989903033391c5e9db7994a9e 76032 hgsubversion_1.5-1~exp1_all.deb
Checksums-Sha256: 
 3f63e38ea2b2cf68cfb2ea5ac6431e4e9f4bbd027adffa29d7e4449929a0a13a 1284 
hgsubversion_1.5-1~exp1.dsc
 61c8c8f9a0669538a0e4eeb11c98a9b42777076004abaee4544dda3298566d80 269364 
hgsubversion_1.5.orig.tar.gz
 76466992d1357ed1078e1b7b53314265595cc7efb09b9817f430ca032527b43e 2568 
hgsubversion_1.5-1~exp1.debian.tar.gz
 f6ba3ec112c1bd35bd18312d4cce8e5cd026ad8689590631f54e771cebed2880 76032 
hgsubversion_1.5-1~exp1_all.deb
Files: 
 fab7ffa961be8656236ce75d67a1a48b 1284 vcs extra hgsubversion_1.5-1~exp1.dsc
 7f50d0e2acdb814e5c038e766179881f 269364 vcs extra hgsubversion_1.5.orig.tar.gz
 a4004154199a5345c524eaed35068159 2568 vcs extra 
hgsubversion_1.5-1~exp1.debian.tar.gz
 3ec4fcba6a86721808dda9ab3658183b 76032 vcs extra 
hgsubversion_1.5-1~exp1_all.deb

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

iEYEARECAAYFAlCktSUACgkQiOXXM92JlhBMnQCgu1rbxdkgr2Hva2O3GYfLw/rO
swwAoK+4Od7ZJBVrivHfQLzONOQ50QiV
=C2eH
-END PGP SIGNATURE-


-- 
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/e1tyvom-00022k...@franck.debian.org



Accepted mlt 0.8.6-1 (source amd64 all)

2012-11-15 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 Nov 2012 13:08:00 +0100
Source: mlt
Binary: libmlt-dev libmlt5 libmlt-data libmlt++-dev libmlt++3 libmlt-dbg melt 
python-mlt5
Architecture: source amd64 all
Version: 0.8.6-1
Distribution: experimental
Urgency: low
Maintainer: Fathi Boudra f...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 libmlt++-dev - MLT multimedia framework C++ wrapper (development)
 libmlt++3  - MLT multimedia framework C++ wrapper (runtime)
 libmlt-data - multimedia framework (data)
 libmlt-dbg - multimedia framework (debugging symbols)
 libmlt-dev - multimedia framework (development)
 libmlt5- multimedia framework (runtime)
 melt   - command line media player and video editor
 python-mlt5 - multimedia framework (python bindings)
Changes: 
 mlt (0.8.6-1) experimental; urgency=low
 .
   * New upstream release.
 - Adjust libmlt++3 lintian override.
   * Bump Standards-Version to 3.9.4 (no changes needed).
   * Switch to xz compression and add a Pre-Depends on dpkg.
Checksums-Sha1: 
 9265bae540ebd02e813744288864bf0f40c357df 2359 mlt_0.8.6-1.dsc
 616e807ba9f8fd8d6c9f87cb04416885c471596c 1104163 mlt_0.8.6.orig.tar.gz
 b969d17d5877d76ae2e197e622cf58b7ef7055bc 9399 mlt_0.8.6-1.debian.tar.gz
 b780b36fd10bd0e89167ac90fdb1c05f02445d47 113618 libmlt-dev_0.8.6-1_amd64.deb
 ece13cb7116a4d4224a0e8d176ee2bab4eb0b1c2 478788 libmlt5_0.8.6-1_amd64.deb
 9a8e4342493721d2f6d1abce2424d7b587f3abdb 1259542 libmlt-data_0.8.6-1_all.deb
 da2d5bee79228722293e48cf34d74204b0fdeaea 85780 libmlt++-dev_0.8.6-1_amd64.deb
 d946578e719451f591e5171e2b478ac78d7450c2 107440 libmlt++3_0.8.6-1_amd64.deb
 3b57832b64087359e7fd62ed9b03695cb536b765 1372124 libmlt-dbg_0.8.6-1_amd64.deb
 2d43ab2677409e6994115d44c5d31a03d8e18a59 89166 melt_0.8.6-1_amd64.deb
 d201c633c7d691e827503f25552782ea1a00de1d 160828 python-mlt5_0.8.6-1_amd64.deb
Checksums-Sha256: 
 57daae25ad5e8d635a7b12bac8255a7cd189f201e1257f4713938e48029e8c21 2359 
mlt_0.8.6-1.dsc
 8323e546a661942c5bb880886a949e8243f9b53082cb3464a54009280c5bbb3f 1104163 
mlt_0.8.6.orig.tar.gz
 b1289566636a66534f9bdf906b099930de9a38edee4c0514d190bab9123f9eed 9399 
mlt_0.8.6-1.debian.tar.gz
 da6244f1fddb9fd706a667486325d695969114b86ffb9571568402eb38e832c8 113618 
libmlt-dev_0.8.6-1_amd64.deb
 cc415607c9ad9e0171fe10e918f811009ca6312402b2871330b8436ea35b2ca6 478788 
libmlt5_0.8.6-1_amd64.deb
 238ea05f95fc0eb0fd2e810c585820f4c73f0f42fcce5b4ba4607aa90e94beb7 1259542 
libmlt-data_0.8.6-1_all.deb
 2f065b5b3ef6c8bc68a0ea792b08deee8c65372f1a57dbebfaa73a2eab5944e1 85780 
libmlt++-dev_0.8.6-1_amd64.deb
 5955c4870d75d8848d4f263ccd31877052552a90ea49061f2de741b59d812ad3 107440 
libmlt++3_0.8.6-1_amd64.deb
 fdd5605c37c56d20e030c64c491c366b0db3a587962359d51917128770e9210e 1372124 
libmlt-dbg_0.8.6-1_amd64.deb
 8bf13bf1f86fefa46d3c41b080b8decaa769d868ea6b3eccdd9a60d01c17 89166 
melt_0.8.6-1_amd64.deb
 cb79671cbd675b84afe15235d5dbec3a16e4b4ce0cf18751981990c8ef322097 160828 
python-mlt5_0.8.6-1_amd64.deb
Files: 
 025f8e391e13bbfa0e1511264644020a 2359 libs optional mlt_0.8.6-1.dsc
 8d2c5b0f24a8b90fb44961920e3770ff 1104163 libs optional mlt_0.8.6.orig.tar.gz
 a29078062142969ec9474ca9f17e6ac7 9399 libs optional mlt_0.8.6-1.debian.tar.gz
 139de8da7d30d108461410124efb797f 113618 libdevel optional 
libmlt-dev_0.8.6-1_amd64.deb
 0070d939b56125a7c33ca35456081efc 478788 libs optional libmlt5_0.8.6-1_amd64.deb
 f555c0743d38bd8e44ae09ce42e87904 1259542 libs optional 
libmlt-data_0.8.6-1_all.deb
 abae0f9331b3f796d66d8cf41bc8d589 85780 libdevel optional 
libmlt++-dev_0.8.6-1_amd64.deb
 c0d5a3af6e33445b6bb9f66917e25404 107440 libs optional 
libmlt++3_0.8.6-1_amd64.deb
 8520a5383412ed49661bed4b3f4941be 1372124 debug extra 
libmlt-dbg_0.8.6-1_amd64.deb
 af8c00d1a89ee655032138b16b8b69e6 89166 utils optional melt_0.8.6-1_amd64.deb
 f09066e4fffeb49e730a9bf18be2b337 160828 python optional 
python-mlt5_0.8.6-1_amd64.deb

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

iQIcBAEBCAAGBQJQpNy8AAoJEBLZsEqQy9jknJwP/jDnyZi3ca6oIIftFo9NKdSd
t/g3z3WH0cjunra1Zv5+IygUU5Sll+lRbayuWUNHFNL9Zj3KAKHkgZmsNZdTZ0Qz
nf37O4BF6ERTUyYlhSUeEkXFfV0YWOZ8megQmK4K9RJvx8hKUw5Pu2JUE4MXnixO
sKEnJZ9B4MqsRK6lwFNu4fZeuy6HBQpJby21sywDb4tFlAR1vRoHMtPmH+ZFIZFV
U6uoP80eIU76nfFDlh6rV+o/9zyCl5q1OWnHIgGzHao279N8rdNKYpF8fpprq+9i
vFE9vwxb6aMuAStM1bJyd5oCLXhtXikz65+/wCjsDpsx6Ve77xH0d31WEU3M+h+A
YB61jw1fm/MBDNCmFkLfWN9ie8jyHy3WNgFvtcwgsAYLENw+h2fYxqLnV23d+zio
UlHaUYULruIJ53Srw0rqcMl6ilGPlL+9GBFL0pOKxt6Xzxamgy9kMI4LVn5s6NUS
fmqE0FPLEJUiFG7ib30kIDEfkdCsw/c+IwNVnFboq7nbQXQi9VQZbUPGGC9bjF/n
eVQo8Gw8+y5Mz+N6sS2fk10DmdzDDyWMZ8XDnQXKd6fV0ffvwOymN/XSCXB3vgSN
m0W2Q94QQwGF/+6HdyC/3AP/Ipz5DHD1y+GClqblZex73QLubLv9xTcUAJ0ysLyv
3otWqLXhxiTF1NxdGKT4
=vulx
-END PGP SIGNATURE-


-- 
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/e1tyyoo-0006pu...@franck.debian.org


Accepted binutils 2.23.1-1~exp1 (source all amd64)

2012-11-15 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 13:50:55 +0100
Source: binutils
Binary: binutils binutils-dev binutils-multiarch binutils-gold binutils-hppa64 
binutils-spu binutils-doc binutils-source
Architecture: source all amd64
Version: 2.23.1-1~exp1
Distribution: experimental
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 binutils   - GNU assembler, linker and binary utilities
 binutils-dev - GNU binary utilities (BFD development files)
 binutils-doc - Documentation for the GNU assembler, linker and binary utilities
 binutils-gold - GNU gold linker utility
 binutils-hppa64 - GNU assembler, linker and binary utilities targeted for 
hppa64-li
 binutils-multiarch - Binary utilities that support multi-arch targets
 binutils-source - GNU assembler, linker and binary utilities (source)
 binutils-spu - GNU assembler, linker and binary utilities targeted for spu-elf
Changes: 
 binutils (2.23.1-1~exp1) experimental; urgency=low
 .
   * binutils 2.23.1 release.
Checksums-Sha1: 
 f1567f6ea58a094bbe2525d52954ccbce6618232 1721 binutils_2.23.1-1~exp1.dsc
 6d5e6047fe8cb6456453aa193fd46017d1e78e14 29848969 binutils_2.23.1.orig.tar.gz
 1551869757523789247ab202366853c9ad7f0d7d 80436 binutils_2.23.1-1~exp1.diff.gz
 b052b432fe21bf8b83ff183413dc2d9deaa2d847 477440 
binutils-doc_2.23.1-1~exp1_all.deb
 8d650164f939d179c511b3dd85714af288d1efa9 15498752 
binutils-source_2.23.1-1~exp1_all.deb
 481d6de7aa8e8ae6fc207d3d08016d5820a93e97 4969942 
binutils_2.23.1-1~exp1_amd64.deb
 d29408aa148ac21fb102ab5589ec58a9017ca6c3 4780510 
binutils-dev_2.23.1-1~exp1_amd64.deb
 3ecb5fb35da45aa3ca9da2294a2a20c78322208a 2390202 
binutils-multiarch_2.23.1-1~exp1_amd64.deb
 9387daefbb95f2b3917897c3f2d06962b6b5ffec 1454 
binutils-gold_2.23.1-1~exp1_amd64.deb
Checksums-Sha256: 
 4c0e2d3e560fe35bc1e6c5d78f53f44eb9187e04c6d0143b424f69f6ca56 1721 
binutils_2.23.1-1~exp1.dsc
 459b63839add3a6e9be6234fd62180d1a179ddcece21cd282c44c8fb25aa177d 29848969 
binutils_2.23.1.orig.tar.gz
 740e90415c49d22341e7d09e543a08afbeb24754cb74953e18c4a98e6ef55440 80436 
binutils_2.23.1-1~exp1.diff.gz
 d91a341015e07dbc8a4e81d5b80f72b706ed7657782264940d31f44288264d59 477440 
binutils-doc_2.23.1-1~exp1_all.deb
 d7023a554aadbb61f4214e1ca29e421c9a46d069b88111e1664ef8ca22aaa5a6 15498752 
binutils-source_2.23.1-1~exp1_all.deb
 acb9618c39ee8293bfe01e0881de4a30a0603968e8d4960e27c02359986ef405 4969942 
binutils_2.23.1-1~exp1_amd64.deb
 d7bbd4f078367215c905c038c2f485e0393347dc7e590fec1900e5028b0f4e65 4780510 
binutils-dev_2.23.1-1~exp1_amd64.deb
 83909ba9939aaced64b411a0adc2d8102e4be31a467b0adc65967b6aa5cf7f69 2390202 
binutils-multiarch_2.23.1-1~exp1_amd64.deb
 cf17d0d59ee8654e36113469ccd4c2baca4aed060820e6d0727b191c2a9e0cbe 1454 
binutils-gold_2.23.1-1~exp1_amd64.deb
Files: 
 e186a26dde79a51a91e422d838d28718 1721 devel optional binutils_2.23.1-1~exp1.dsc
 afdf525ab0ecad971cd716904178ae49 29848969 devel optional 
binutils_2.23.1.orig.tar.gz
 21754d154ba4fcd9dc9b4d5edc7f3a86 80436 devel optional 
binutils_2.23.1-1~exp1.diff.gz
 2e2ed43880257498de4b2f6a0d76600c 477440 doc optional 
binutils-doc_2.23.1-1~exp1_all.deb
 82ca10f34e3d666c9ed328c724b21c4f 15498752 devel optional 
binutils-source_2.23.1-1~exp1_all.deb
 13f06017d08abb006473fa50beb08779 4969942 devel optional 
binutils_2.23.1-1~exp1_amd64.deb
 4e3e5c5e7e59dccdf492c7a1788712e5 4780510 devel extra 
binutils-dev_2.23.1-1~exp1_amd64.deb
 9614b2b7dd875c5a4c23829fa8b431f4 2390202 devel extra 
binutils-multiarch_2.23.1-1~exp1_amd64.deb
 5c53e7dedc41292413ce21ea02b935d0 1454 devel extra 
binutils-gold_2.23.1-1~exp1_amd64.deb

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

iEYEARECAAYFAlCk7W4ACgkQStlRaw+TLJwuSQCgyBxETub6qtakE40EVkZKtn55
6ywAn2Fq42epJhGe0H5bASTQ5OZdT62W
=Rc++
-END PGP SIGNATURE-


-- 
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/e1tyzyw-0004nq...@franck.debian.org



Accepted freemedforms-project 0.8.0-1 (source all amd64)

2012-11-15 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 07 Nov 2012 09:00:00 +0200
Source: freemedforms-project
Binary: freemedforms-project freemedforms-theme freemedforms-i18n 
freemedforms-common-resources freemedforms-emr-resources freemedforms-freedata 
freemedforms-emr-doc-en freemedforms-emr-doc-fr freediams-doc-en 
freediams-doc-fr freemedforms-libs freemedforms-emr freediams freeaccount
Architecture: source all amd64
Version: 0.8.0-1
Distribution: experimental
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 freeaccount - medical accountancy manager
 freediams  - pharmaceutical drug prescription and interaction manager
 freediams-doc-en - FreeDiams english documentation
 freediams-doc-fr - FreeDiams french documentation
 freemedforms-common-resources - common data for the FreeMedForms project 
applications
 freemedforms-emr - electronic medical record manager
 freemedforms-emr-doc-en - FreeMedForms EMR english documentation
 freemedforms-emr-doc-fr - FreeMedForms EMR french documentation
 freemedforms-emr-resources - data for the FreeMedForms EMR
 freemedforms-freedata - free extra-data for the FreeMedForms project
 freemedforms-i18n - translations of the FreeMedForms project
 freemedforms-libs - common libs for the FreeMedForms project
 freemedforms-project - FreeMedForms project
 freemedforms-theme - theme for the FreeMedForms project
Changes: 
 freemedforms-project (0.8.0-1) experimental; urgency=low
 .
   [ Eric Maeker ]
   * New upstream (new stable release)
   * debian/control
 * adding opencv dependencies
   * debian/patches
 * renaming patches
 * removing upstream integrated patches
   * debian/rules:
 * adding extra-plugins for the FreeMedForms EMR
 * removing unused params for the qmake
 * reformatting dh_auto_configure/dh_auto_build/dh_auto_install step
Checksums-Sha1: 
 dbd13cd5271616f40ae0a0d863c2a63968b8c97f 2435 freemedforms-project_0.8.0-1.dsc
 c94414616446ec1c2067e0de37cf20a40abe73ba 26806234 
freemedforms-project_0.8.0.orig.tar.gz
 1841800a9950fe6644becbf534ea8eed39dfff08 12896 
freemedforms-project_0.8.0-1.debian.tar.gz
 d968c013f0a43f213f9881a5cb48ae45a751bf52 6962 
freemedforms-project_0.8.0-1_all.deb
 d0be328d3e899ac43a59df4e32fbad787fd40af4 1500824 
freemedforms-theme_0.8.0-1_all.deb
 685912ee51d4df94d0561a3fe55647ee59823460 589170 
freemedforms-i18n_0.8.0-1_all.deb
 f410bdd370053bbc282a3608a131c0471dcf2ca5 694926 
freemedforms-common-resources_0.8.0-1_all.deb
 e7cf45ba7c24b2033afe422370b9c1fd0fff5cf7 1294870 
freemedforms-emr-resources_0.8.0-1_all.deb
 6209118fd75082550bf99ea7b533df7372f0f815 4355198 
freemedforms-freedata_0.8.0-1_all.deb
 75596e8e31160b1994deff053753291f31101a61 1622060 
freemedforms-emr-doc-en_0.8.0-1_all.deb
 787c824f31b5a0d40c7628211f5889ae47687978 3964020 
freemedforms-emr-doc-fr_0.8.0-1_all.deb
 9ddacf70b99238d36e56724058f82a7851233b96 3075238 
freediams-doc-en_0.8.0-1_all.deb
 f3909722885eb636a17f2aa038d4fb681674c052 4348494 
freediams-doc-fr_0.8.0-1_all.deb
 2c33dff1926221acb3dfb6bf4f1f1317e3679d06 994302 
freemedforms-libs_0.8.0-1_amd64.deb
 db5a833d8a111482b5364d4da3886a27cae162d2 4452410 
freemedforms-emr_0.8.0-1_amd64.deb
 e4e3b4770b8ba6d91a4efb45125e07ecc4b5847d 1683092 freediams_0.8.0-1_amd64.deb
 6be70f4ed2463645fe165f2258070ba1582cc9ea 1514202 freeaccount_0.8.0-1_amd64.deb
Checksums-Sha256: 
 2b42341b05051539b408d4f2870c85fd91c21d3d62d42f679c956742c0c4a9af 2435 
freemedforms-project_0.8.0-1.dsc
 21a83a14bb7bba3127bff77f0c7ca8c65f6a2136468eb955701a69d66739a996 26806234 
freemedforms-project_0.8.0.orig.tar.gz
 d49e5c4e1e8e1b1fe1ad5c616010ac27f86bbd5942ba53e2566c99923f833e1e 12896 
freemedforms-project_0.8.0-1.debian.tar.gz
 6412fb3074145e071ff9d7d0aee4bf2bcd25af6830f8f1b0f2d7d0e2758e60d5 6962 
freemedforms-project_0.8.0-1_all.deb
 6229e650d52698ca538bde75f9df29dc01269f0b15b81a2ffb71c06b70a76a95 1500824 
freemedforms-theme_0.8.0-1_all.deb
 ed513b5d3c29770f69710c63b215fbbc1b777c8b116d068e02bf76f3ffcbcdad 589170 
freemedforms-i18n_0.8.0-1_all.deb
 7247d59e5133aae4fd1a457a9eab6e2f8e0250433ae45a560a1ef9d7f6a1229a 694926 
freemedforms-common-resources_0.8.0-1_all.deb
 aef338583a460e3e0ebb118a43a59a89292863bb284f0d3e4a5d49908133d569 1294870 
freemedforms-emr-resources_0.8.0-1_all.deb
 7565712d7f56c028929a7396120222a0c32673ccfa3af5a684ec1a49b9fe101b 4355198 
freemedforms-freedata_0.8.0-1_all.deb
 d459d525b2d738a21776549257c415380b4adbcc9c95947c49a92daa1cb58e45 1622060 
freemedforms-emr-doc-en_0.8.0-1_all.deb
 3aa4eab25cdb23579da8e76b107dfea5953eed06a3fea4cff592f67dfc8280dc 3964020 
freemedforms-emr-doc-fr_0.8.0-1_all.deb
 6dfe5af497758af1fc1ea021b70a2fd58bcd037a9432a44bf72df0e21fe53403 3075238 
freediams-doc-en_0.8.0-1_all.deb
 e6f2fd725fb0afbc0ad9626cb497c786ceb9f3731e7a0544302eb4605aef533a 4348494 
freediams-doc-fr_0.8.0-1_all.deb
 ee8876303c3dd5bed3e83f88553cbc760fd0a0e7f5a207d5cfba83fb589fcde3 994302 

Accepted python-apt 0.8.8.1 (source amd64 all)

2012-11-15 Thread Michael Vogt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 09:55:24 +0100
Source: python-apt
Binary: python-apt python-apt-doc python-apt-dbg python-apt-dev 
python-apt-common python3-apt python3-apt-dbg
Architecture: source amd64 all
Version: 0.8.8.1
Distribution: unstable
Urgency: low
Maintainer: APT Development Team de...@lists.debian.org
Changed-By: Michael Vogt m...@debian.org
Description: 
 python-apt - Python interface to libapt-pkg
 python-apt-common - Python interface to libapt-pkg (locales)
 python-apt-dbg - Python interface to libapt-pkg (debug extension)
 python-apt-dev - Python interface to libapt-pkg (development files)
 python-apt-doc - Python interface to libapt-pkg (API documentation)
 python3-apt - Python 3 interface to libapt-pkg
 python3-apt-dbg - Python 3 interface to libapt-pkg (debug extension)
Changes: 
 python-apt (0.8.8.1) unstable; urgency=low
 .
   * python/tag.cc:
 - make TagSecString_FromStringAndSize, TagSecString_FromString
   static, thanks to jcristau
   * tests/test_lp659438.py:
 - fix missing architecture to make the tests pass again during
   build with the latest apt
Checksums-Sha1: 
 2d815c88f37cf1a75fd406b9151bc88337263846 1601 python-apt_0.8.8.1.dsc
 e0e7baf413ffa65cf8d46dd6be2da8388d7a5e2c 402346 python-apt_0.8.8.1.tar.gz
 365e459134acec7f25b0aa17f83b5a3570086cb9 319646 python-apt_0.8.8.1_amd64.deb
 f31f022951c607703a1df433a28b36f781961342 250076 python-apt-doc_0.8.8.1_all.deb
 d6937fbd189831280f416c66f5fa228ebe14fe72 4283542 
python-apt-dbg_0.8.8.1_amd64.deb
 d5d8e210e26b091d61bd51573a76974d5754ec18 7630 python-apt-dev_0.8.8.1_all.deb
 c30ab8146961969e628f478c8677b5e71bd605b7 113482 
python-apt-common_0.8.8.1_all.deb
 23f73cf41d1f5ea0c1a1a7452851b4c9eed614a3 198820 python3-apt_0.8.8.1_amd64.deb
 589938bafdc85312bfedc6f55fc2e6db5526153d 2139480 
python3-apt-dbg_0.8.8.1_amd64.deb
Checksums-Sha256: 
 62085c7e2feaf6cf0ed691e4a0788e8ec3a750084680ff8a1ffeb1fc8a8f090f 1601 
python-apt_0.8.8.1.dsc
 521d009c3c58b765a7ada96c7d1d6ed30e16501f25075018635d576eb79b195f 402346 
python-apt_0.8.8.1.tar.gz
 3a13173563623cafd15a0acc6c45d07580e75a898adce815f6c31728f47f22d6 319646 
python-apt_0.8.8.1_amd64.deb
 5696c4115ddbe700329d65a6d3d7610077c9037d3b2d0d35c6ba6649bd92805e 250076 
python-apt-doc_0.8.8.1_all.deb
 f57513709d685831bc28e642594810f758742684fac9536ea1afc72d84d5f44d 4283542 
python-apt-dbg_0.8.8.1_amd64.deb
 da95be2e3696cf726c9c991b5a52d42e04a27024c599301f6f1a315ad3076726 7630 
python-apt-dev_0.8.8.1_all.deb
 3e27e047fffd13492ef057834929b22825977492d6db14e184b4f6728ed79f93 113482 
python-apt-common_0.8.8.1_all.deb
 44e85a9f848ddc0b6547e54bdb12bcf7deaaca7182dfd3705b58102b39b0bb6e 198820 
python3-apt_0.8.8.1_amd64.deb
 3be47d5933787cb8c5dbcd65a1b2feb7c586dff13fbaef6b29f3f03a1b916e36 2139480 
python3-apt-dbg_0.8.8.1_amd64.deb
Files: 
 b67050544e85716961fd0b82caf9874b 1601 python standard python-apt_0.8.8.1.dsc
 d4c54189b2d1082dc68276864178dc9d 402346 python standard 
python-apt_0.8.8.1.tar.gz
 118e0ddae1e2dbf2e987eed509be3a6c 319646 python standard 
python-apt_0.8.8.1_amd64.deb
 2effe57304300af99cd48c40afc6fb50 250076 doc optional 
python-apt-doc_0.8.8.1_all.deb
 e35b94fc3f8b911058200aeaa49a513a 4283542 debug extra 
python-apt-dbg_0.8.8.1_amd64.deb
 414403766a3dfd3dbf7c244ac9314424 7630 python optional 
python-apt-dev_0.8.8.1_all.deb
 3d6ff1533a2c004fecec560b8d2c54a4 113482 python optional 
python-apt-common_0.8.8.1_all.deb
 2383a23c70071dcb0efa09964e81819f 198820 python optional 
python3-apt_0.8.8.1_amd64.deb
 211f9b691bbcb36f86b75b15b334ca40 2139480 debug extra 
python3-apt-dbg_0.8.8.1_amd64.deb

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

iEYEARECAAYFAlCk7FcACgkQliSD4VZixzRu5QCffyEJ3xurLmxVeW4ThG5lww7+
FeQAoJL8jP/BZzz5UeUkE2iXXkNFdH+5
=oBoY
-END PGP SIGNATURE-


-- 
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/e1tyzbd-0005p4...@franck.debian.org



Accepted orthanc 0.2.3-1 (source amd64)

2012-11-15 Thread Sebastien Jodogne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 26 Oct 2012 16:35:11 +0200
Source: orthanc
Binary: orthanc
Architecture: source amd64
Version: 0.2.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Sebastien Jodogne s.jodo...@gmail.com
Description: 
 orthanc- RESTful DICOM server for healthcare and medical research
Changes: 
 orthanc (0.2.3-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 c480643a7d5ebfafade1a3479db12e707e4bf356 2194 orthanc_0.2.3-1.dsc
 9f35b61495485a82b81dedfa55062c743c25d1dc 347866 orthanc_0.2.3.orig.tar.gz
 10559c7cb0591fa85a74cd280128a430d380e5d9 116821 orthanc_0.2.3-1.debian.tar.gz
 ee6dd3e3112f1e8502b63fb82b5d4b9e6d2f73e2 405842 orthanc_0.2.3-1_amd64.deb
Checksums-Sha256: 
 31c1b2ba27727ded7bf3eacc434e9610c2bdee3f43b74746fd17b4fd538a8f4c 2194 
orthanc_0.2.3-1.dsc
 7129cb0dcc28e9cf98eeb9ce23f6932cb900ff48cac3986ed2e6ea027d475fd9 347866 
orthanc_0.2.3.orig.tar.gz
 9fb604c60f4ba23cc6456c7d471b35fc8fb0c6a7439c7a26552907f1cf3dd620 116821 
orthanc_0.2.3-1.debian.tar.gz
 1ff26113ffdec9609a46c0ef1478f2a954d5d0db4aac90f424919e5cfb85b366 405842 
orthanc_0.2.3-1_amd64.deb
Files: 
 008b768f2cd803726708c866dcfcbfa3 2194 science optional orthanc_0.2.3-1.dsc
 735b18fe91e8e86b2f32b55b4b15dc58 347866 science optional 
orthanc_0.2.3.orig.tar.gz
 b764277139af8eaf64058249e88cc98a 116821 science optional 
orthanc_0.2.3-1.debian.tar.gz
 ddf0fb5b373b3921d7fe06ba57617564 405842 science optional 
orthanc_0.2.3-1_amd64.deb

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

iQIcBAEBAgAGBQJQpO9oAAoJEAFx4YKK4JNFlwwP/jYqhFWYL+IYbo4tWvK2uz8c
mLKQUldJ7XVoxtc+3TMKD/Kf5YUdPA20c8MmeOyCZAjQqJSrOIufvoxAxw858qh8
vw9FLdclJHt4D06tTVYCAGZ1HFTGaLMhGC9HdMXb+6iyBMlSUzY0+BOs5DhXYxV1
sUl5uFT+qe3KjQNAUJVTyJIa/WhxWHfTEpOIurN0/Qje592dOWoOceucCVYAipT4
dDPmSuSWchvDSKSqlDPimUg48pY4SaeGjsSzU9k+IkiBYLTy/9zpEc5J2emA7Ame
maAClODxrdx/wgssZeqEpFVL1s973/81cI6zh99s9zUdOjcgZW6XApPulX7P0ESQ
sfalWYcvFdss5gXr3YXv1Phcj7+zxewdni38pa27XCmsolfpZZUBG8Mu45gPrVY3
YB40NkGorNqw/x0f611IyI6j5eACAGC4vBStbgkpGBPS30yycQ7rBAGe4fwYtMg+
Kx4xZgCa4QpBR74i+HXKuKWM/d8DKNzDN7MDtEDMexH9RRpCajudBhqQqxNywBQs
7l/TIDZYKFGs+cmi5H/eYfnwypwjA/AM3myDrVn3XcWqVH/KaLi4WFZR8xMsEygu
EZ1/p0D7teIsLL2L8HU7sKWDPclb9JJTHQY51V99o2iOBRoPLTRH8dhkr4J+hSby
jrbluZEAfW1MxalQ66v2
=4Dn1
-END PGP SIGNATURE-


-- 
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/e1tyzny-kz...@franck.debian.org



Accepted sweethome3d-furniture 1.2.1-1 (source all)

2012-11-15 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 14:01:08 +0100
Source: sweethome3d-furniture
Binary: sweethome3d-furniture
Architecture: source all
Version: 1.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Gabriele Giacone 1o5g4...@gmail.com
Description: 
 sweethome3d-furniture - Interior 2D design application with 3D preview 
(additional furnit
Changes: 
 sweethome3d-furniture (1.2.1-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 223c69284b67c6d027068bc03f3d795ab943f753 1433 sweethome3d-furniture_1.2.1-1.dsc
 2d785044ee6c0a9ca18736aa6921c73b14d02768 18609348 
sweethome3d-furniture_1.2.1.orig.tar.xz
 34f16713422cde09e5eabf5feb974e2faf9348b2 10140 
sweethome3d-furniture_1.2.1-1.debian.tar.xz
 d018f8d7741cc41165ac3d5789a16daec87a1105 26261146 
sweethome3d-furniture_1.2.1-1_all.deb
Checksums-Sha256: 
 f3377e3b2618531d7b310c00923db314ed006381f4854284db980d43dfa11417 1433 
sweethome3d-furniture_1.2.1-1.dsc
 9f2f27983d50e95202ae44f2ce8dc7175908cbfe810e37c803b44b69675f657b 18609348 
sweethome3d-furniture_1.2.1.orig.tar.xz
 64471a529efc5ccd766464146a166bd8692b1b994aac05531ba9f15b33406418 10140 
sweethome3d-furniture_1.2.1-1.debian.tar.xz
 7d188200f8617bce167a78f73626b40c9f699f4cc7c3e29498f776ae1dd0d153 26261146 
sweethome3d-furniture_1.2.1-1_all.deb
Files: 
 bdf71cf7811e45ed1c64609ace9de2a1 1433 graphics optional 
sweethome3d-furniture_1.2.1-1.dsc
 84431b1d4a0efa26f02a38dfe932913b 18609348 graphics optional 
sweethome3d-furniture_1.2.1.orig.tar.xz
 2a514d892a29df55f501ed34139dd453 10140 graphics optional 
sweethome3d-furniture_1.2.1-1.debian.tar.xz
 3ea6fd154b108b8c6fe0e2beaaab6430 26261146 graphics optional 
sweethome3d-furniture_1.2.1-1_all.deb

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

iEYEARECAAYFAlCk7VEACgkQp3cdCbVcnCvsxACgqB3D7DYK9lNjT8qz2kMjCwb+
Lw8An0medGMnkAZoItmHM/YDV1H8WzvV
=Wa69
-END PGP SIGNATURE-


-- 
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/e1tz0ku-0001fb...@franck.debian.org



Accepted sweethome3d-furniture-nonfree 1.2.1-1 (source all)

2012-11-15 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 14:05:34 +0100
Source: sweethome3d-furniture-nonfree
Binary: sweethome3d-furniture-nonfree
Architecture: source all
Version: 1.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Gabriele Giacone 1o5g4...@gmail.com
Description: 
 sweethome3d-furniture-nonfree - Interior 2D design application with 3D preview 
(additional non-fr
Changes: 
 sweethome3d-furniture-nonfree (1.2.1-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 62c8703ff22039c8f47dba0379bdd89e9e652312 1527 
sweethome3d-furniture-nonfree_1.2.1-1.dsc
 948e18e554c6b2323791712996d99702b1a5b124 23653968 
sweethome3d-furniture-nonfree_1.2.1.orig.tar.xz
 79cc5a95f5d0092941ba5381d6a95625370d252c 5696 
sweethome3d-furniture-nonfree_1.2.1-1.debian.tar.xz
 6154ee76336698077d95de03984ceb9bbe6f657e 32161352 
sweethome3d-furniture-nonfree_1.2.1-1_all.deb
Checksums-Sha256: 
 28e21188c21fc62be7f7c1f3a69528644ea437dde79bdb2eefcc0d69078828de 1527 
sweethome3d-furniture-nonfree_1.2.1-1.dsc
 11ad8d806f1082cd49bf0cdb02a9c3c7b2adaccf4918eff8042c7b88e992e1cc 23653968 
sweethome3d-furniture-nonfree_1.2.1.orig.tar.xz
 2e1e4f4dcc4bfe0c82d9837e8492bc574607adeeea78539cd789a45849e3856e 5696 
sweethome3d-furniture-nonfree_1.2.1-1.debian.tar.xz
 79633aed2ce649a7229c58c31f257cc35dfca98fb0604b9a1fe7abe24b7b6609 32161352 
sweethome3d-furniture-nonfree_1.2.1-1_all.deb
Files: 
 2cc6c4513d7c0fc65ec9eed2703d3ada 1527 non-free/graphics optional 
sweethome3d-furniture-nonfree_1.2.1-1.dsc
 fed15125a8d44066b49308905b9a74ef 23653968 non-free/graphics optional 
sweethome3d-furniture-nonfree_1.2.1.orig.tar.xz
 921a55e276e5bf472a4d390b0222b369 5696 non-free/graphics optional 
sweethome3d-furniture-nonfree_1.2.1-1.debian.tar.xz
 12c780635bee552a6e8132fc963d3c54 32161352 non-free/graphics optional 
sweethome3d-furniture-nonfree_1.2.1-1_all.deb

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

iEYEARECAAYFAlCk7AcACgkQp3cdCbVcnCtwCQCfW8vn4DvtR7uFGMHm1u34G+oV
+LYAn3UOJExHkhlcbLi99kYIbnYUdKHz
=kpIf
-END PGP SIGNATURE-


-- 
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/e1tz0km-0001j1...@franck.debian.org



Accepted pandas 0.9.1-1 (source all amd64)

2012-11-15 Thread Yaroslav Halchenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 Nov 2012 09:44:14 -0500
Source: pandas
Binary: python-pandas python-pandas-lib
Architecture: source all amd64
Version: 0.9.1-1
Distribution: experimental
Urgency: low
Maintainer: NeuroDebian Team t...@neuro.debian.net
Changed-By: Yaroslav Halchenko deb...@onerussian.com
Description: 
 python-pandas - data structures for relational or labeled data
 python-pandas-lib - low-level implementations and bindings for pandas
Changes: 
 pandas (0.9.1-1) experimental; urgency=low
 .
   * New upstream release
   * Boosted policy to 3.9.3 (no due changes)
   * debian/rules
 - Fixed up cleaning up of cythonized files
Checksums-Sha1: 
 5fb420cd50886844524e5b958cceca4731a24004 1616 pandas_0.9.1-1.dsc
 419280a10757cd889f64703fe8e246cc273b388f 1010322 pandas_0.9.1.orig.tar.gz
 53a633f167a17d0b579563e2ad2fb403d91f6257 874476 pandas_0.9.1-1.debian.tar.gz
 d6b8dac21344f22ed2a6591bde151dee4fd0d096 690758 python-pandas_0.9.1-1_all.deb
 a984fb2b34d1f628567fcec992ed9b21fe884e1f 2152568 
python-pandas-lib_0.9.1-1_amd64.deb
Checksums-Sha256: 
 e424586f4942f2d3b66d0228320f22aa576cd8cb26ff6fda2ab3b05a18d568fd 1616 
pandas_0.9.1-1.dsc
 44c596c666182d543518fa39a4cfc0d120007f8fd291a4a3bb1dfaaa1dd4f776 1010322 
pandas_0.9.1.orig.tar.gz
 275b7e4b76cbeacb89981a2d6f4f8f3145e71a7959865f8a1569ae05ca80c139 874476 
pandas_0.9.1-1.debian.tar.gz
 697eeec6611ed243664f3efc299ec8c7cc76ae19062fab0a3e324c92959d5b36 690758 
python-pandas_0.9.1-1_all.deb
 227874bd211adf58edd708ccfc87190a0434ac7312c86b6b6eb2a1f6c559187d 2152568 
python-pandas-lib_0.9.1-1_amd64.deb
Files: 
 cecc45ca99c3292c3816b6d31e9a4b08 1616 python optional pandas_0.9.1-1.dsc
 9dd4b3d655269a966e267a3d43dcc294 1010322 python optional 
pandas_0.9.1.orig.tar.gz
 fe233d262fd3664ec2be8b2996e63029 874476 python optional 
pandas_0.9.1-1.debian.tar.gz
 dbda1e689ba42a45ac4fd86e2fc848e5 690758 python optional 
python-pandas_0.9.1-1_all.deb
 39e8ed19d74e9a5d672c4920b0f6d38d 2152568 python optional 
python-pandas-lib_0.9.1-1_amd64.deb

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

iEYEARECAAYFAlClAxIACgkQjRFFY3XAJMgU3wCfTErn7SjzLoctGw9GRnqeUSVi
1QYAoJuCfjEiLhUucZ14gkKcqzbuLHep
=hS6z
-END PGP SIGNATURE-


-- 
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/e1tz1cc-0007ud...@franck.debian.org



Accepted sauerbraten-wake6 1.0-2 (source all)

2012-11-15 Thread Markus Koschany
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 03 Nov 2012 13:20:40 +0100
Source: sauerbraten-wake6
Binary: sauerbraten-wake6
Architecture: source all
Version: 1.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Markus Koschany a...@gambaru.de
Description: 
 sauerbraten-wake6 - small but dodgy deathmatch/instagib map for the 
Sauerbraten game
Closes: 691833
Changes: 
 sauerbraten-wake6 (1.0-2) unstable; urgency=low
 .
   * New Maintainer. (Closes: #691833)
   * Switch to package format 3.0 (quilt).
   * Update debian/copyright to copyright format 1.0.
   * Add Vcs-fields to debian/control.
   * Simplify debian/rules by using dh.
   * Add debian/watch file.
Checksums-Sha1: 
 f67029c83ba04f7f45bca16bd9693b451974982c 2009 sauerbraten-wake6_1.0-2.dsc
 4f20e8729033d85fa5a69563397cc4a39ab87300 2032 
sauerbraten-wake6_1.0-2.debian.tar.gz
 44745442cc5d0bcd507d9eba34f1bbc56032ed92 269472 sauerbraten-wake6_1.0-2_all.deb
Checksums-Sha256: 
 cb408b5a50a23b549f03080f89c30661c8f44db9dff8e4390120498d4b0a55c6 2009 
sauerbraten-wake6_1.0-2.dsc
 2d85375ca6411b3ffb29f6f90f161b1b18365b970820bc8b67a567db3c204bc4 2032 
sauerbraten-wake6_1.0-2.debian.tar.gz
 a04e1ab63844c53bb2342988984d5a6fa64499d338c43c9e232e8aaf677d8f1c 269472 
sauerbraten-wake6_1.0-2_all.deb
Files: 
 c539e15a6656ca7fecb9596d4ad2aaea 2009 contrib/games optional 
sauerbraten-wake6_1.0-2.dsc
 c91b1d7ee804dbbe2452b724dc7a70e4 2032 contrib/games optional 
sauerbraten-wake6_1.0-2.debian.tar.gz
 6439fd0ac4347bcea8ec4b97ed4a4ed5 269472 contrib/games optional 
sauerbraten-wake6_1.0-2_all.deb

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

iQIcBAEBCAAGBQJQpQwpAAoJEAkHQJYG8ykP/0eTwmxn9FXHhr7VpHA9ee16
yWC5/CMyPN1X0i/t075YcJq+YvvHtejSNc+smbMRbQeeihkKz8jksj7H8zyWvGrM
7WjyOp9gv5jOPL4JZmzSWBRgrKPcYzfOf1WEJ2UxD+B5EZe2z4X93B/tyzgKCCsO
b9INSKY3K56u2FU0g2Ib+IU3iKw25CBv8FUq30ZdXU9ogEjdvLBy0KNyT6809AaQ
o7Y4H1LbuH1CqoDArmTElZBM0c//OvsYp/GMWgA2sbvOXsPoEbUHfOOU9wPZ/TOX
r5aQUO4HPo8Wl5NkJtUs1MSG2O7jiaxju3lNSWiwsvpZkFasx7TN7DwiEaHbR9hW
WelokohgjXJ0hAIN3awHCCa87KDi5Tg3R3Ai0/7V0bXMPdInQHTC+OiygYchp5m+
TEMC0RRl3pgPm5W3lxKhPi/7Va2FSNC+GEopf1sP/udpwxW6Zjs40Sx8ykW9B7dA
v8w9R3CG4gsAUlOMAn1IlqXbZ+bzmh7RFtdjeQauK2ymxkXmbMV+v4w7PaXdSWvS
5OFtqLo5rLdn2LPkVMTWkycv1SxfG6UdmxFIcnM9Qbe9dW5O55TPxQtoNak0B5D6
7pQIVI+kNStxLcAdJhLhqqhEuwI+iiUDIx1xcgrNC792n96FeffJuSVwI80lkl/k
yVRWNgYVmIOw9VGglS6n
=0n9G
-END PGP SIGNATURE-


-- 
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/e1tz1f9-0003qn...@franck.debian.org



Accepted crawl 2:0.10.3-3 (source all amd64)

2012-11-15 Thread Adam Borowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 13:54:14 +0100
Source: crawl
Binary: crawl-common crawl crawl-tiles
Architecture: source all amd64
Version: 2:0.10.3-3
Distribution: unstable
Urgency: low
Maintainer: Guus Sliepen g...@debian.org
Changed-By: Adam Borowski kilob...@angband.pl
Description: 
 crawl  - Dungeon Crawl, a text-based roguelike game
 crawl-common - Dungeon Crawl, a text-based roguelike game (data files)
 crawl-tiles - Dungeon Crawl, a roguelike game, tiles version
Closes: 692947
Changes: 
 crawl (2:0.10.3-3) unstable; urgency=low
 .
   * Work around dpkg failing to replace a directory with a symlink.
 Closes: #692947
Checksums-Sha1: 
 2c7c01d0e61fbb91f435f8407904b27b51634d21 1398 crawl_0.10.3-3.dsc
 8397ee3a74bf1724b50380a414bd30b75f9d7c63 11982 crawl_0.10.3-3.debian.tar.gz
 0aff643fde490292d3a6f0cb393de092ff6ea095 1200230 crawl-common_0.10.3-3_all.deb
 6971ea8337139e92dc2e39ee8abc03b9cc961f5d 3429832 crawl_0.10.3-3_amd64.deb
 704f952d3e9d02491796703385b4fc7afdce5ab3 5769278 crawl-tiles_0.10.3-3_amd64.deb
Checksums-Sha256: 
 9e2e6bde3609e489cf33f268cd3ee2c3146d9cc08f436cb39a65f3d553737011 1398 
crawl_0.10.3-3.dsc
 2df2158671801a386fd4eaa61d2726bab0b391e774cd6aa88228cbcd405b1ca5 11982 
crawl_0.10.3-3.debian.tar.gz
 d331b1cae73baf667f6bb785a9e2063048e0cac8a52219e792be09a7ccdccf94 1200230 
crawl-common_0.10.3-3_all.deb
 f1dbf6443d99bb6084fdcd4f02b6dc4eddd90310d8223c0e3761c0af33703d6b 3429832 
crawl_0.10.3-3_amd64.deb
 0420aa9457e2c68ec44585b5f226090011f14cf27b3e1859506bd682cadb1d86 5769278 
crawl-tiles_0.10.3-3_amd64.deb
Files: 
 3836b52e18065cf7f0f299b202059f0a 1398 games optional crawl_0.10.3-3.dsc
 80bb70287961ea01383624a6e9761437 11982 games optional 
crawl_0.10.3-3.debian.tar.gz
 4f8f134a3417702f4cc776de701607a0 1200230 games optional 
crawl-common_0.10.3-3_all.deb
 9ae1c87487e703c29e6d79f535710ba1 3429832 games optional 
crawl_0.10.3-3_amd64.deb
 eb2ee90495ca9e215051ba28fb566145 5769278 games optional 
crawl-tiles_0.10.3-3_amd64.deb

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

iEYEARECAAYFAlClErAACgkQAxLow12M2nvv+QCff9KOBWOZPEOKkaoyVOlX+5Yz
riQAnjBEoFY8B49qEt5XbQpIEg7cx7Ht
=XKBJ
-END PGP SIGNATURE-


-- 
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/e1tz28o-0001km...@franck.debian.org



Accepted libcapture-tiny-perl 0.21-1 (source all)

2012-11-15 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 15 Nov 2012 17:13:47 +0100
Source: libcapture-tiny-perl
Binary: libcapture-tiny-perl
Architecture: source all
Version: 0.21-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libcapture-tiny-perl - module to capture STDOUT and STDERR
Changes: 
 libcapture-tiny-perl (0.21-1) unstable; urgency=low
 .
   * Imported Upstream version 0.21
Checksums-Sha1: 
 bcf445315103f8c4d76cab4b4661c7a3c9a1039a 2247 libcapture-tiny-perl_0.21-1.dsc
 22e5ad606baaac243f69c7f3c01d0ed5c6968cc2 30456 
libcapture-tiny-perl_0.21.orig.tar.gz
 abc377b619b7af64d1bd83cb074e5db0d60b 2888 
libcapture-tiny-perl_0.21-1.debian.tar.gz
 0fe4e44c121380559220d8eb7ec5860ff12dc718 23248 
libcapture-tiny-perl_0.21-1_all.deb
Checksums-Sha256: 
 26d5f28ad9c19561c8125c576647fc5f61c0253735da0458c3160aeefcf22708 2247 
libcapture-tiny-perl_0.21-1.dsc
 8f27b21afd1c89542f506abb42e96393346d5bf45dac00c0c857ea9f86117fd3 30456 
libcapture-tiny-perl_0.21.orig.tar.gz
 12626947311a60d48bb5410ed8e9f38944d3b7f7995e08953e6a4efd1fdb7a36 2888 
libcapture-tiny-perl_0.21-1.debian.tar.gz
 c3ec79a8e9a238f083bd32144648a26dbdf22b4e2833dbd3ab9d15558b48158b 23248 
libcapture-tiny-perl_0.21-1_all.deb
Files: 
 11a8d30d4a006822a85c5b074746d49b 2247 perl optional 
libcapture-tiny-perl_0.21-1.dsc
 74b5df944da1502ad919513967e6ab68 30456 perl optional 
libcapture-tiny-perl_0.21.orig.tar.gz
 44468367c9bb941124c776c606752d2a 2888 perl optional 
libcapture-tiny-perl_0.21-1.debian.tar.gz
 c164b3b22463f85e124c05c49ea61004 23248 perl optional 
libcapture-tiny-perl_0.21-1_all.deb

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

iQIcBAEBCgAGBQJQpRXEAAoJEHidbwV/2GP+7X4QANIvgETz9zSQVuVOb/C7MLmA
pV6S8xCLSGZoWiIDghoyejZc4Lif7OPo07MnrU4qWsfYUtDtR676Zsc96uTzXEoM
K8jAcks4sVxoBFheK8lB7ASWvl0nWoNJGcG27vLe3azGfX+Z36GIfgZuZY6+FurU
vqYC1O4D14l0TrVif+lz1cvbN8dkY4PCRjBkQko2V41x2GK+Uf2c/BjJI3MeYuMt
XMYz7mk1Ri3pXHlqgUCal89N/T+OTynNlQl9uX9isnewOABG7yyo0FT3aHY83WX/
wGbS4UChqx4roJ0rPwhkZOda2tuJzTutPSMDAQtgw/tohFNNzZffr3Kahm5sJbU5
lynSQdJ/zixpXMm0QVMy98Gl3PgOb5ind+4YyM696+CdSwcQFd4i54J3e/z5gGDo
qAhiDw7sFifxpWkSIwjl5zGOOY3nlXY6bGL1ZHrVXrE8TBAQwFhWt8VXb73XLDlp
CcyzLbuMM+Uw1vTyee4p2sZOpAMu7ZWO4CO6IPnaN9k7dwjBSzSl+tKmjRcqY/bL
ERkhlJsr/6o0D/N9JwMi2uRQtDguXwCk8gUtOsg/kjbNkr0ds6PSeL2ZYcTEPCQd
tEDqfoBEdNEuPYc1BwwmURADn8pMnC3tTQ2GcokskqeSdO0HgPJ1ZB0gBhz/jikJ
1YkOLN/Dq1lRG0JmIvwh
=+6m7
-END PGP SIGNATURE-


-- 
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/e1tz2my-0004st...@franck.debian.org



Accepted hexter 1.0.2-1 (source amd64)

2012-11-15 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 16:14:10 +
Source: hexter
Binary: hexter
Architecture: source amd64
Version: 1.0.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 hexter - Yamaha DX7 modeling DSSI plugin
Changes: 
 hexter (1.0.2-1) experimental; urgency=low
 .
   * New upstream release:
 - Fixed: starting the GUI on a session with unsaved edits would
   leave the patch editor insensitive.
   * Bump Standards.
   * Small fix to debian/copyright.
Checksums-Sha1: 
 c3e436459caabc8be83389b592cc6607345e7742 2105 hexter_1.0.2-1.dsc
 4dddc4ef82071210035074d48855bb85d62deede 517532 hexter_1.0.2.orig.tar.gz
 efde7ebbe1a6490c6745eaf5837eac0515bb3ec1 37251 hexter_1.0.2-1.debian.tar.gz
 2d667927940d345f6dd0fc4e1305de7aebf7f51a 219182 hexter_1.0.2-1_amd64.deb
Checksums-Sha256: 
 daf83f16f6f228c40fb4b92f3cdc20dfa0ba301b01429e7a8a68492831eb346d 2105 
hexter_1.0.2-1.dsc
 afc576177e3acaf1e1d55c6778792d6b3e401c2d03c56a1c5c0d94f4411b0dc9 517532 
hexter_1.0.2.orig.tar.gz
 5aa7df2d6841f99855a1902e2f99168a0c300f28cabe3646060af92a4392cd76 37251 
hexter_1.0.2-1.debian.tar.gz
 d784e8b9eac6f7fcb32bf5abfbc8869baa687884763bb1bdcb5d1d725654b757 219182 
hexter_1.0.2-1_amd64.deb
Files: 
 a53b470ccee967562333eda6d16863bf 2105 sound optional hexter_1.0.2-1.dsc
 a61765a649fcab05811c226fb5c9415b 517532 sound optional hexter_1.0.2.orig.tar.gz
 613e64a4d8da4e615c5abb81cd63ef40 37251 sound optional 
hexter_1.0.2-1.debian.tar.gz
 162bda03ac1979a6fff28db484ff66ed 219182 sound optional hexter_1.0.2-1_amd64.deb

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

iQIcBAEBAgAGBQJQpRkiAAoJEOikiuUxHXZaKcUP/jbURCRT8H0wJSHo4fDJrVAJ
1qUhXkyFgOSOunPVf+EbF6lOkuA7RMDh9FBbGgEY6vFzOrYjxSaszRxYI5jkHo3n
4oGwaaHgwuDCyJ2ri+wOsGonXbeDlS8rcL4X6QKsR987X44kPRR0OSTQblm1e0pM
bGv3Uh8knetbBOuUajyOZPfNhiEmBJn4Pb3x88+12Qj0svDYb4IHP57jAyDDPMJT
8/bY3i9MLzYO6H/MJaYdtu+q7PqRfuxV4Fr777e9qbCThbh17nvzpiIzzdYw+tkp
lrZgwOEHL0nNGMsdU+TEH5wy7Uaw4tmjecSVEpWrLjhgdOq1SbrcHWLEGrSKreZq
vqxFu2vzTfDNbLCj+Tr0epvSAUww1vdd8LoTQy1uSfepRioJ1lNlvS5TtE+cFgfs
JjaTkqdc1u58N6ZIrYckelNSC44J37nCqCgvnS8YnOe1brwlxqEwsW+o7U9lze1g
Soem43ZpxsrLRN4lze5mwxoRYY6DKifAXVnxqfhaukMNepg5p7AYpPB2YGuytthN
rbm0Sg1gNXScVUpJMeiTIi1/M/3kvsqSxfd3iq0PMSTf98gz0U0W6pPgoGJYN1wo
dRx2Lh+uDXfm1oHqkR0grpOzx1skqoRUtOjd11k5g79ClCWgm4kBE9coKNl6K/4X
P6obT6oGxCVGjh8sW26l
=91U3
-END PGP SIGNATURE-


-- 
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/e1tz2bh-8b...@franck.debian.org



Accepted haskell-dav 0.1-2 (source all i386)

2012-11-15 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 Nov 2012 11:17:08 -0400
Source: haskell-dav
Binary: hdav libghc-dav-dev libghc-dav-prof libghc-dav-doc
Architecture: source all i386
Version: 0.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joey Hess jo...@debian.org
Description: 
 hdav   - command-line WebDAV client
 libghc-dav-dev - RFC 4918 WebDAV support
 libghc-dav-doc - RFC 4918 WebDAV support; documentation
 libghc-dav-prof - RFC 4918 WebDAV support; profiling libraries
Changes: 
 haskell-dav (0.1-2) unstable; urgency=low
 .
   * Patches to use the oldver versions of lens, http-conduit, and http-types
 in unstable.
Checksums-Sha1: 
 e9e5a8ee10116d520527c47ff4dbb5167cc66a25 3145 haskell-dav_0.1-2.dsc
 e396703415bf9dbd71241eba413bb63607933f83 4131 haskell-dav_0.1-2.debian.tar.gz
 323feb6a896a41b644be6d74fabbfaea9819b9ad 36222 libghc-dav-doc_0.1-2_all.deb
 bc4e5bd75627d0a68357a8032fb1f58a9fa0ebf1 2449122 hdav_0.1-2_i386.deb
 443a3f6c2f1d1ef210f3eddc78a045fcc3968a08 79212 libghc-dav-dev_0.1-2_i386.deb
 6e577f3660a3698935b91f589a190e34862339e3 74682 libghc-dav-prof_0.1-2_i386.deb
Checksums-Sha256: 
 2559c99a0d3096fc859673e83912186c40d2ab94ad0db5bb1456dbbeee143039 3145 
haskell-dav_0.1-2.dsc
 f8ffcd6da8c63b9ef967d4d6f4bede49cfb74f71ba96b5c78a2b3526fb841692 4131 
haskell-dav_0.1-2.debian.tar.gz
 95cf15e58b09763aed4fe6222777b1b258771bce793245d4ed289d086b4f92f9 36222 
libghc-dav-doc_0.1-2_all.deb
 4177049125e2accad5e5f961c93b7b0da7c23df9f043034e0964f5024b503641 2449122 
hdav_0.1-2_i386.deb
 07b6395894e524c7f807dd4ab039e1fc162540499bc1881beaff98b54c9bcf70 79212 
libghc-dav-dev_0.1-2_i386.deb
 8186d073f04c8de1479706b808353c88665f99f557d54146cd5ebde7ce1fc264 74682 
libghc-dav-prof_0.1-2_i386.deb
Files: 
 3a29613fb2da7e42f3a6fc2b348ff485 3145 haskell extra haskell-dav_0.1-2.dsc
 9bb95451c9f8b3e61bc1b08afed2f9cc 4131 haskell extra 
haskell-dav_0.1-2.debian.tar.gz
 49e5ebab7004a95a4d5493f5943820eb 36222 doc extra libghc-dav-doc_0.1-2_all.deb
 1dbbe76af63200683d5bfa3be7653e67 2449122 web extra hdav_0.1-2_i386.deb
 fcf286c5e29e0c4e602f111867a86718 79212 haskell extra 
libghc-dav-dev_0.1-2_i386.deb
 1622bb560fbc77d70e77a2c67f5a19f4 74682 haskell extra 
libghc-dav-prof_0.1-2_i386.deb

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

iQIVAwUBUKUdfMkQ2SIlEuPHAQhF2A//biAElz6kMWRZnR0JTmDRf/K+tV2CVUOS
lDaGCXqqsQY9//9/H4/OCgFKJBkjfwRGgH+mtZDOcTwbnzuxy72ngAVGisZgasZk
74/YPa+C2P5V7Raa903kDbon4Np0kmocJdTjHEvimz+lb6qk8lu+HmpQfdzoL56/
v35hvLJV8WBs/RCej9Rxa1/C10HsHJa8b1WNB1tptlCkgyNjtVgDrmvP4SFOE85f
fh9875bxNSsk+8AA+9+420A2IRYbPKlBuIUDLSVpKufV26gQUVnMM0GtPYVwsYcP
XSApLGmHpjqzUkJ97v1k6fN4MAVcPD6WySJj10kpCKLrps6sEHnXlG4/5avUXzQK
FWZo77UdgL80TgcmanjUKiiRVxzUPp/XaDQiZMPCM1pfrt4A2Ao9l5KTHFxiiX0X
KLgDEhChSjrG+FpmlnDoiKCRqWbEAlvIthiI6UifAyemoNOFigxL2IJ1etDsG31B
wsCYCZ/a1acMxEeHiHf1/MNvtXv2EwPhtzXt8a8PmDWSmqu6Bz7DuJYP9SjqY4Nj
4EaSBVfXuxyfNLjDwSWU2QY0sekvrDOGo0idZP5xv6+L1O2plOIWZd1SOnJgjy/I
y1qk1zGcTv9qz49vyyu8/XQFy9Brq7Ux8Lo1J6LT96YWs60Mz6RaWA8vtYrUCZer
dDUdtcPJ0/w=
=VMel
-END PGP SIGNATURE-


-- 
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/e1tz2pl-0003av...@franck.debian.org



Accepted plasma-widget-cwp 1.6.8-1 (source i386)

2012-11-15 Thread Boris Pek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 19:24:20 +0200
Source: plasma-widget-cwp
Binary: plasma-widget-cwp
Architecture: source i386
Version: 1.6.8-1
Distribution: unstable
Urgency: low
Maintainer: Boris Pek tehnic...@mail.ru
Changed-By: Boris Pek tehnic...@mail.ru
Description: 
 plasma-widget-cwp - Customizable Weather Plasmoid (CWP)
Changes: 
 plasma-widget-cwp (1.6.8-1) unstable; urgency=low
 .
   * Update to stable release 1.6.8.
Checksums-Sha1: 
 b7fda5b077e85cc99a9c33bddbb849503cac6a0e 2033 plasma-widget-cwp_1.6.8-1.dsc
 cfa5f857f1da69c006c44c551dbf9c134a5019d0 199034 
plasma-widget-cwp_1.6.8.orig.tar.bz2
 791377b2acdeb53ddbbe3a547db5d876c1b44433 3437 
plasma-widget-cwp_1.6.8-1.debian.tar.gz
 8d58597244674d7344282b9f29b633f4e96aee10 366002 
plasma-widget-cwp_1.6.8-1_i386.deb
Checksums-Sha256: 
 d2d026a9a5f95886bfb6c9cac063085b64e0fb12f3fd6f1c2b855e6f22d03407 2033 
plasma-widget-cwp_1.6.8-1.dsc
 3ed63065e6b51734e7b052ad3fd872506ae734e55f6d30a213fc7fab654e9be6 199034 
plasma-widget-cwp_1.6.8.orig.tar.bz2
 e20b85b9f2d98eb284ec7bf3527f0694ab9cd1acc9652af6f27d929fe981227c 3437 
plasma-widget-cwp_1.6.8-1.debian.tar.gz
 0b8dfff3b3c8cc56e01d596200e9ada3092613ee1d8eb99cb181ac331dac346f 366002 
plasma-widget-cwp_1.6.8-1_i386.deb
Files: 
 32aeaec6ef21d055d4d5b022806891ac 2033 kde extra plasma-widget-cwp_1.6.8-1.dsc
 19c5739d395734f94d236a4906344d2f 199034 kde extra 
plasma-widget-cwp_1.6.8.orig.tar.bz2
 d18e7f2c2ac5c1a218621a247a41f225 3437 kde extra 
plasma-widget-cwp_1.6.8-1.debian.tar.gz
 df963b49b7500cd56df16ef1667b1eb5 366002 kde extra 
plasma-widget-cwp_1.6.8-1_i386.deb

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

iQIcBAEBAgAGBQJQpSWOAAoJENABW9Eo85J4paUQAISLh3Ih74PtgQUyBMzufJjd
tOZvJl7zyQj7DmKDfiZzX6v9QJ3AbVjmTp2qxMyQjQ27yvkIx2k+RATeEpSlZQc8
ddIec5qeddT/dZ2PfTlXHQAR+MXvBx+J7Sxkk3nicfsFWSmVYBoWAYlVgEIv0PzJ
X8nsDNCayw2CQtuvXv4dt+GV+Yfpx85rF89Pv59PG6wpWAq2u+XFUzPQjmmjPzxr
LrMlo3kMzCcZp+ywLa+/utqVI5HE0QmffLHHUqg4qSosTHlYXU/OV9t5AzQr1WqE
PZ6Khu5GprpaDXEbeBaQN4E9NMQOtKVPFFc8XXuqSuCVaFwPIa4sOWVqZxjOvOg/
0FHxRraPfbQOvXgv+gh4NGj8QOytHh6QGSnq3zklOREr/r9+yu5SKNT8/pij1xC4
zJJtboq3qfuzKRRJUXf4zihMyLY8SI3uZjpid3Z5TBERrvay3MpXuF3r2spl06a0
IzyRTup6i2rdNjNYOlK8Tnzuh4XdjUYNtvZnXzfEa9xni4a6TEQfI8CXOgwdl3Tx
lh5RH7U409CAodtWOIZkqKyZr0qQKN0gEMxvZp3NPUgaXaVup2DF7KsHM9qDT+HX
W8QwD6+RGvM3Gr6ccgOgUiZGGc0kBwOCx+ttyTAGtDLgj71V96BolfvUIc5jREFr
Qc1URrPmm07arJs4qual
=pQZy
-END PGP SIGNATURE-


-- 
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/e1tz3xj-0003sp...@franck.debian.org



Accepted libhx 3.14-1 (source amd64 all)

2012-11-15 Thread Bastian Kleineidam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 12:46:15 +0100
Source: libhx
Binary: libhx28 libhx-dev libhx-doc
Architecture: source amd64 all
Version: 3.14-1
Distribution: unstable
Urgency: low
Maintainer: Bastian Kleineidam cal...@debian.org
Changed-By: Bastian Kleineidam cal...@debian.org
Description: 
 libhx-dev  - Development files for libhx
 libhx-doc  - Documentation files for libhx
 libhx28- C library providing queue, tree, I/O and utility functions
Changes: 
 libhx (3.14-1) unstable; urgency=low
 .
   * New upstream release.
   * Use debhelper compatibility level 9, adding multiarch support.
Checksums-Sha1: 
 0c306bacfb52c3d36213eb2315cc0533f9a3f628 1131 libhx_3.14-1.dsc
 17c601d3c3e28836352f302990672e1ec6f53e64 860044 libhx_3.14.orig.tar.xz
 81c62f1f7ea66f948d92314d320e4c3fbd5c595c 4434 libhx_3.14-1.debian.tar.gz
 29ad3688dda5696da84900399497188c3d9c7a7b 36922 libhx28_3.14-1_amd64.deb
 480033510c8af4c4624f02d8e7b24951ced253c2 58038 libhx-dev_3.14-1_amd64.deb
 eadc91232dafd6dc59caa20227bc9383b508fc2a 525722 libhx-doc_3.14-1_all.deb
Checksums-Sha256: 
 270119ddcbbe8738b2c284763ed945ee18f783190a7bd492129ac567530f02bd 1131 
libhx_3.14-1.dsc
 19d9dfbf997add2458fa4b4db85989b3658688c8147e7533805ea417ec4aa1a9 860044 
libhx_3.14.orig.tar.xz
 3a9e74bb011feece1723fc889dcc51571657e6b307ccd5edf2315db72d4ca79d 4434 
libhx_3.14-1.debian.tar.gz
 fede8cc97bf2400e0fb9430bd054a8cce9b97fa37b76517532f9c7a0b88387e2 36922 
libhx28_3.14-1_amd64.deb
 0d52631d7b64a37b779067c57445cac709286c1bbf2ab5c05439d1d92a741b6c 58038 
libhx-dev_3.14-1_amd64.deb
 ab8b0db6e0bfd65bdd269d1b41d1cc2e65b18ab8aa499827a9ee0b65589d3263 525722 
libhx-doc_3.14-1_all.deb
Files: 
 d143d1a00a4267c85939e485803ac4b7 1131 libs extra libhx_3.14-1.dsc
 a2a2dd32aaff33234e53517c6afd694a 860044 libs extra libhx_3.14.orig.tar.xz
 8fcae26bdc2890cfd1a502193c1f4ddb 4434 libs extra libhx_3.14-1.debian.tar.gz
 fcdf67acd73141e5b483dc688e29e2f7 36922 libs extra libhx28_3.14-1_amd64.deb
 a19e566a3f9a31d9c622e8321ac106de 58038 libdevel extra 
libhx-dev_3.14-1_amd64.deb
 297b519056a7799b37990faeb5eb348d 525722 doc extra libhx-doc_3.14-1_all.deb

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

iEYEARECAAYFAlClHsYACgkQeBwlBDLsbz5SnACgriesEwO3ENwyXegwry/RVV53
+iEAoKb6Uwp8q84SKMrRNunnP0gAo8mt
=PEMO
-END PGP SIGNATURE-


-- 
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/e1tz3lk-0006pp...@franck.debian.org



Accepted rtirq 20121105-1 (source all)

2012-11-15 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 17:40:34 +
Source: rtirq
Binary: rtirq-init
Architecture: source all
Version: 20121105-1
Distribution: experimental
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 rtirq-init - startup script for realtime-preempt enabled kernels
Changes: 
 rtirq (20121105-1) experimental; urgency=low
 .
   * Imported Upstream version 20121105.
   * Update debian/copyright.
   * Update Standards-Version.
Checksums-Sha1: 
 26f8073fa837b223efe3702d360aca40c63c4853 1961 rtirq_20121105-1.dsc
 005b884addc703b17bf22189782a9cc9400a1648 11762 rtirq_20121105.orig.tar.gz
 ab4feb7b9870d41060f17bf59b5e22eb56204b08 2486 rtirq_20121105-1.debian.tar.gz
 566f4713c42057423c1e164873d6242bf35397dd 5806 rtirq-init_20121105-1_all.deb
Checksums-Sha256: 
 34866ca20f8cc90215b26f4138c2344489a288487caefddc7f6758934acaefd6 1961 
rtirq_20121105-1.dsc
 d862f3f7bcdc6c146f32c66a0f409bd7a6476a90201c2bda1d2848bb8cba689c 11762 
rtirq_20121105.orig.tar.gz
 f227595809c939094196d211b39efb9c621d9442c60e9f7b689bd983511820ab 2486 
rtirq_20121105-1.debian.tar.gz
 4c4bf6bffad324eeccc035f57138f94a91164f9045bdd509ee9e23089d1c4cc3 5806 
rtirq-init_20121105-1_all.deb
Files: 
 9cea03801411f332b2a68a2be039b226 1961 misc optional rtirq_20121105-1.dsc
 439c0815c0f55148321325ad79293266 11762 misc optional rtirq_20121105.orig.tar.gz
 60f862f35b604ba8bf308f4707888eb4 2486 misc optional 
rtirq_20121105-1.debian.tar.gz
 7053e9fcb32f63ac277de55570db915b 5806 misc optional 
rtirq-init_20121105-1_all.deb

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

iQIcBAEBAgAGBQJQpSnJAAoJEOikiuUxHXZaReYQAJ3bsYGEeWreLt9o6Ncr+hgh
0WDNVa+PbcEgBNHwA3TfTvFLtf5aM/okes8Q1Qspi5sDws3PZhu65XBpqswTv5kf
8+cheiTcMu/X8TZWJMKLJlBAzkNOx3pN9PcNBToKEQZNJvZl0aBz6wzWtD4Y4qW8
2rh6qJlYPPjPv1p/saCmwmFOifl9xtiUJELGpmkgSLyRVvisttXFBop7bbpsu67+
brawwgTaswgovOhiVpLTEjiqbrcz9G8GOPVnyq85XJIf3taqLkISczlUGxRauinZ
8uvp1HQn/CEnFxTCi0M5+LDuxGSDEGBtSawUAkgqqVSIvdZAJAsq6bDl7VxMsHSy
TAsL4RkOPlwAaAXq+5pWwkQAv8NYkGP5bzcRU2c0rhoMOK2nJT64J0LfHazv0tSv
BRUsg50wpxJMAXIUvpdnpRQwcYhD2yatEN17YzZx5nb6em0wabBOVNKQMWbvwsf7
Ed6Rm0qryq0lg1JPUtKCR51rYY3HGY8ttlqAwnudF1TsHhRY4JfXyBXBPN1zGxv8
rqi0IfHQ/RdTBc+qoJ6cT7a1vV4xFnMF3WYle8PN19bD6vockR1fezen40xwhjMg
HB4I4cn19tAVPjl0DrgpwnpnuKWc4iy+h6ulVJB8xZyuIQOmvE7A+O+V4Vr3UaJN
5UE18EDvk+mufKAATrqa
=o1LB
-END PGP SIGNATURE-


-- 
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/e1tz3lp-0006sm...@franck.debian.org



Accepted jsxgraph 0.94~dfsg1-1 (source all)

2012-11-15 Thread Georges Khaznadar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 18:52:55 +0100
Source: jsxgraph
Binary: jsxgraph
Architecture: source all
Version: 0.94~dfsg1-1
Distribution: experimental
Urgency: low
Maintainer: Georges Khaznadar georg...@ofset.org
Changed-By: Georges Khaznadar georg...@ofset.org
Description: 
 jsxgraph   - Interactive Geometry with JavaScript
Changes: 
 jsxgraph (0.94~dfsg1-1) experimental; urgency=low
 .
   * upgraded to the latest tagged revision
Checksums-Sha1: 
 15c51de42cb4b3990c4c3bb462ddbc9cdc9222a5 1196 jsxgraph_0.94~dfsg1-1.dsc
 e54345167618c3dc19b652933a98d73b78a3f94b 14631102 
jsxgraph_0.94~dfsg1.orig.tar.gz
 577640f600b90a7dea874d2851c416fe6a4c2893 10140 
jsxgraph_0.94~dfsg1-1.debian.tar.gz
 2790a14618dd6a0507774c8ead5277429900f89f 3376740 jsxgraph_0.94~dfsg1-1_all.deb
Checksums-Sha256: 
 0c93e9bd2565db143574d57fea52f851df06d2f05e53c921fe20acd19daa6b85 1196 
jsxgraph_0.94~dfsg1-1.dsc
 2cb97a02ea3493c4ea4f83e50724811c2acbd93c554ef4141c6ff372c1d838d2 14631102 
jsxgraph_0.94~dfsg1.orig.tar.gz
 910b35e7b75e54a0f715b3701124c3968e6e78b50f6867696de43bf0d674f48e 10140 
jsxgraph_0.94~dfsg1-1.debian.tar.gz
 871bb8272bf2e757c60a70c90590d56528633095ac16a524faf034426fa824bb 3376740 
jsxgraph_0.94~dfsg1-1_all.deb
Files: 
 45a83c746075d8cdbb8f9f5113740cfb 1196 devel extra jsxgraph_0.94~dfsg1-1.dsc
 4e021ce69ac8ea6039555c11ae1bcc43 14631102 devel extra 
jsxgraph_0.94~dfsg1.orig.tar.gz
 c2402323d77c515199f199444387b335 10140 devel extra 
jsxgraph_0.94~dfsg1-1.debian.tar.gz
 19b121cd90f6ce3558bfe1860642da17 3376740 devel extra 
jsxgraph_0.94~dfsg1-1_all.deb

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

iD8DBQFQpS0wnfmb2hFpETARApGeAJ0ZpEVYFp4gBa+DqGXHcZtgYRG9zQCffeIt
A5D9YPrA5/5LigK4H21vdno=
=Lt6S
-END PGP SIGNATURE-


-- 
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/e1tz40i-ou...@franck.debian.org



Accepted debian-keyring 2012.11.15 (source all)

2012-11-15 Thread Jonathan McDowell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 11 Nov 2012 15:24:25 -0800
Source: debian-keyring
Binary: debian-keyring
Architecture: source all
Version: 2012.11.15
Distribution: unstable
Urgency: low
Maintainer: Debian Keyring Maintainers keyring-ma...@debian.org
Changed-By: Jonathan McDowell nood...@earth.li
Description: 
 debian-keyring - GnuPG keys of Debian Developers
Changes: 
 debian-keyring (2012.11.15) unstable; urgency=low
 .
   [ Jonathan McDowell ]
   * Add new DD key 0x69F2FC516EA71993 (Sebastian Ramacher) (RT #4086)
   * Add new DD key 0x3B56E2BBD53FDCB1 (Andrew Starr-Bochicchio)  (RT #4091)
   * Add new DD key 0x6C6580E77BD756C4 (Daniel Pocock) (RT #4097)
 .
   [ Gunnar Wolf ]
   * Add new DD key 0xDFC671EEB333FA25 (Jonathan Nieder) (RT #4087)
   * Add new DD key 0xF6B09645B24BF200 (Alejandro Garrido Mota) (RT
 #4088)
   * Add new DD key 0x74263B37F5B5F913 (John Paul Adrian Glaubitz) (RT
 #4089)
   * Add new DD key 0x397F3DB1C97A628E (Julien Patriarca) (RT #4094)
   * Add new DD key 0xCAFB3BAD0A75C877 (Nathan Harrison Handler) (RT
 #4096)
   * Import changes sent to keyring.debian.org HKP interface:
 * 0x00018C22381A7594 Sébastien Villemot sebastien sig:8
 * 0x0064F9FFBB845E97 Joel Rosdahl joel sig:2
 * 0x00806F2BD729A457 Jelmer Vernooij jelmer sig:23
 * 0x00B45EBD4CA7BABE NIIBE Yutaka gniibe sig:6
 * 0x0312E8C35D8CDA7B Guus Sliepen guus sig:45
 * 0x04AAE5B397F1AAAC Ulrich Dangel uli sig:11
 * 0x04D147A595E0A1A1 Ross Peachey rcp sig:1
 * 0x054BBB9F7D806442 Niels Thykier nthykier sig:4
 * 0x060C4E63B071C40A Hwei Sheng Teoh hsteoh sig:6
 * 0x06C05D875BE41F21 Sebastian Dröge slomo sig:1
 * 0x07DC563D1F41B907 Christian Marillat marillat sig:2
 * 0x091AB856069AAA1C Holger Levsen holger sig:7
 * 0x0953ED7BAD69A1CB Philipp Hug hug sig:3
 * 0x095E77C579CC6586 Christoph Haas haas sig:11
 * 0x099491F791B0D3B7 Dirk Eddelbuettel edd sig:1
 * 0x0A62E53437A79149 Stuart R. Anderson anderson sig:5
 * 0x0B0F2929DF81EE83 Rob Bradford robster sig:1
 * 0x0CFF30E126257B68 Christian Surchi csurchi sig:1
 * 0x0D46FE7CD21DF495 Brian Ristuccia brianr sub:1 sig:4
 * 0x0DE8799EA7D6AE79 David Watson dwatson sig:1
 * 0x100952B5F801A743 Nicolas Duboc nduboc sub:1 sig:1
 * 0x10510A738501C7FC Sebastian Harl tokkee sig:9
 * 0x141138DDA3E45D66 Alexander Neumann alexander sig:7
 * 0x152865FB627CCF95 Bas Wijnen wijnen sig:1
 * 0x159EB5C4EFC8774C Benjamin Drung bdrung sig:3
 * 0x15E002BA5D8C12EA Ganesan Rajagopal rganesan sig:1
 * 0x16AD84C0641323B1 Jérémie Corbier jcorbier sig:1
 * 0x16E2F4F5FC81E159 Tim Cutts tjrc1 sig:4
 * 0x18147B073BAD2B07 Olly Betts olly sig:12
 * 0x18A0CC8D5706A4B4 Simon Richter sjr sig:218
 * 0x18A1B1CF0FE53DD9 Ola Lundqvist opal sig:41
 * 0x1B0006256FB29164 Wouter Verhelst wouter sig:36
 * 0x1B132E01CEC6AD46 Kan-Ru Chen koster sig:6
 * 0x1BD0E4A5D047CDE1 Francisco Moya paco sig:1
 * 0x1BF83C5E54FC8640 Dann Frazier dannf sig:4
 * 0x1C570C890E4BD0AB George Danchev danchev sig:2
 * 0x1CFA3E8CD7145E30 Martin Loschwitz madkiss sig:5
 * 0x1CFC22F3363DEAE3 Siegfried-Angel Gevatter Pujals sgevatter sig:10
 * 0x1D87E54973647CFF Nico Golde nion sig:236
 * 0x1DA8DA33DDCD686A Scott Kitterman kitterman sig:1
 * 0x1DBF071150973B91 Phil Brooke pjb sig:12
 * 0x1EC237D9534584E8 Antti-Juhani Kaijanaho ajk sig:4
 * 0x1EFEB1801A49C0D2 Mònica Ramírez Arceda monica sig:19
 * 0x21D20589974B3E96 Tony Mancill tmancill sig:9
 * 0x21EC4FDC84AD676C Scott James Remnant keybuk sig:50
 * 0x24A01418AC15B50C Evgeni Golov evgeni uid:1 sig:91
 * 0x258494BA917A225E Jordi Mallach jordi sig:3
 * 0x26E3C875A74420EF Christoph Göhre gris sig:11
 * 0x29BE5D2268FD549F Martin Michlmayr tbm sig:6
 * 0x2AE901E5C70218D2 Frederic Peters fpeters sig:8
 * 0x2DCE3F2836D4E4F5 Javi Merino vicho sig:1
 * 0x30550F7871EF0BA8 Yves-Alexis Perez corsac sub:3 sig:5
 * 0x3056F0EF4C2D3EFA Cesar Mendoza mendoza sig:1
 * 0x31036EC736B861C1 Ben Burton bab sig:6
 * 0x31FCE7E7DD079461 Gerfried Fuchs rhonda sig:2
 * 0x32175C0DC1027A0E Gregory Colpart reg sig:10
 * 0x32247FBB40AD1FA6 Nobuhiro Iwamatsu iwamatsu sig:1
 * 0x329465A24F1FC85D Carsten Hey carsten sig:2
 * 0x3355F4D63B5821CC Bart Martens bartm sig:4
 * 0x33961588E1C21845 Thijs Kinkhorst thijs sig:36
 * 0x38A0AD5BCACAB118 Jose Luis Rivas Contreras ghostbar sig:12
 * 0x394DC5910ED704EA Mohammed Adnène Trojette adn sig:6
 * 0x39A237CB2809E61A Jose M. Moya josem sig:1
 * 0x3A936196C095D941 Bdale Garbee bdale sig:9
 * 0x3BBFCF77BD8B050D Roland Rosenfeld roland sig:1
 * 0x3CCEBABE206C3B69 Daniel Silverstone dsilvers sig:4
 * 0x3F4A8A8FE07F1CF9 Ludovic Rousseau rousseau sig:3
 * 0x416F061063FEE659 Erinn Clark erinn sig:6
 * 0x461F3C17C3DC59FA Brice Goglin bgoglin sig:8
 * 0x46801517A1696D2B Laurent Fousse 

Accepted structure-synth 1.5.0-2 (source amd64)

2012-11-15 Thread Miriam Ruiz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 08:33:08 +0100
Source: structure-synth
Binary: structure-synth structure-synth-dbg
Architecture: source amd64
Version: 1.5.0-2
Distribution: unstable
Urgency: low
Maintainer: Miriam Ruiz mir...@debian.org
Changed-By: Miriam Ruiz mir...@debian.org
Description: 
 structure-synth - application for creating 3D structures
 structure-synth-dbg - application for creating 3D structures
Closes: 606474
Changes: 
 structure-synth (1.5.0-2) unstable; urgency=low
 .
   * Switched application category to 'Graphics' in desktop. Closes: #606474
   * Upgraded Standards-Version from 3.9.1 to 3.9.3
   * Added build-arch and build-indep targets to debian/rules
   * Removed changelog.txt from debian/docs
   * Modified debian/rules to use fortified libc functions.
 See: http://wiki.debian.org/Hardening
   * Upgraded debian/compat from 7 to 9.
   * Change email address to mir...@debian.org
Checksums-Sha1: 
 14aea1a85d47a70bfa19f27a17b15a0cb6c0d62f 1358 structure-synth_1.5.0-2.dsc
 b285b05e575de0ea9c91892fc1ccb7a438ca971c 21001 
structure-synth_1.5.0-2.debian.tar.bz2
 71a2e243d14dfa9c4453148a4e5bfd42464bd31f 478958 
structure-synth_1.5.0-2_amd64.deb
 b96534e8900fe27e11729cf1d0c5b8d3fad41116 6519620 
structure-synth-dbg_1.5.0-2_amd64.deb
Checksums-Sha256: 
 13fcd4b5b30b9394ef4510d263f9345021daac2172bde9a6292ab3be721fce62 1358 
structure-synth_1.5.0-2.dsc
 d58d611d27efbe992e053cd2d30cfcebe31d28772d35bf465253f2d3bd63c888 21001 
structure-synth_1.5.0-2.debian.tar.bz2
 3973d8051af76a13e6c534e9c8007e3853bc9207fafa5b408088022b8462baee 478958 
structure-synth_1.5.0-2_amd64.deb
 23d1782eb09020ddce696e1f4cf25c814a5e18c1f2e5c8078e388b8f5a354417 6519620 
structure-synth-dbg_1.5.0-2_amd64.deb
Files: 
 af7b3e44435358635664670c1087841d 1358 graphics optional 
structure-synth_1.5.0-2.dsc
 f4836aae522da81e08a6d80b04bb7f13 21001 graphics optional 
structure-synth_1.5.0-2.debian.tar.bz2
 b968ac2c30cbd1c7282bdb6cf447ceab 478958 graphics optional 
structure-synth_1.5.0-2_amd64.deb
 499505624764b809768674c03365c5e6 6519620 debug extra 
structure-synth-dbg_1.5.0-2_amd64.deb

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

iEYEARECAAYFAlClQSQACgkQfbltLjbuCGFa4wCfYgAglQ8P4S6cDrDX3qrs2Ugf
2D4An00YKSMoJxBLxyEezzvGxyOa49hQ
=Tfc2
-END PGP SIGNATURE-


-- 
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/e1tz5as-zs...@franck.debian.org



Accepted chrpath 0.14-1 (source amd64)

2012-11-15 Thread Tollef Fog Heen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 18:39:00 +0100
Source: chrpath
Binary: chrpath
Architecture: source amd64
Version: 0.14-1
Distribution: experimental
Urgency: low
Maintainer: Tollef Fog Heen tfh...@debian.org
Changed-By: Tollef Fog Heen tfh...@debian.org
Description: 
 chrpath- Tool to edit the rpath in ELF binaries
Changes: 
 chrpath (0.14-1) experimental; urgency=low
 .
   * Upload targeted at experimental, since wheezy is frozen.
   * New upstream release.  Close: #578502
   * Drop ChangeLog.usermap from docs.
   * Update to dh packaging and update compat level to 9.
   * Mark the package as Multi-Arch: foreign
   * Add watch file, thanks to Wookey for patch.
   * Update upstream URL in copyright file.
   * Update to current Standards-Version.
   * Fix up copyright file somewhat.
   * Add ${misc:Depends} to Depends line.
   * Drop docs file and remove doubly-installed changelog.
   * Drop INSTALL file.
Checksums-Sha1: 
 bde5706756d2c9afee918fd97432b8d9b31992bf 1618 chrpath_0.14-1.dsc
 8a8a4f9282cbb8c12205040c915b25db06daf408 133096 chrpath_0.14.orig.tar.gz
 939649e5a800c7fe728bd963c5529dd038f166cb 1940 chrpath_0.14-1.diff.gz
 ae2693fe3671f2cea319f39a885018edbb8fd93a 17166 chrpath_0.14-1_amd64.deb
Checksums-Sha256: 
 5ae46ae6f571fe856167d5e65b9cbe2052370101793b2ec074518b457e1c22e1 1618 
chrpath_0.14-1.dsc
 a1bc9abc42d2b97efc3a0ced7c5dbed37d5debff600386193750315fa5823eaa 133096 
chrpath_0.14.orig.tar.gz
 0b8038743d89f05dce287a0c0bf4059396de148741359b96b0b80d79f0f5e93f 1940 
chrpath_0.14-1.diff.gz
 93e182ea5e439e2ee95e7ebc0192f18a00d56419158bdf605222cfa0a428de7a 17166 
chrpath_0.14-1_amd64.deb
Files: 
 1aa7545f93d8cce281260037218d2ad9 1618 utils optional chrpath_0.14-1.dsc
 ea6b212b23393bf58b0ef9bcf6491b86 133096 utils optional chrpath_0.14.orig.tar.gz
 7c35b5b38b4cbea2f7497667fa7bad3c 1940 utils optional chrpath_0.14-1.diff.gz
 2c41f272d0f4e5687cf5af3c1dd36e9b 17166 utils optional chrpath_0.14-1_amd64.deb

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

iQIcBAEBAgAGBQJQpUBmAAoJELZaSHHKGdcXhG0P/AoXz17zXAtDOcY+ao0Swfnn
iAramWMn/XiHC5XngT2OMl53chJTNaYM/bWSDcf301sMQOnnKEI5Nc+R+y9/8XqL
cE40Y32WrKR/9hv8H3tgnKdgJAd3WDLR4iW4a+zDKHBNW4hWzPleKTeY8Dm0fCAX
ecw1sC++yX5EFfMS4VHo9YJksWAbuDMCit64nQDrRr5VCA9YxIrFW4uRLITaMQ/i
QC0uHx/pqbqBvkmKOes3HMfNmZOkiKF5pVKEBt1SvDDrVI7MpihENrrM7D8hPDVD
Sx9Y8/Yy5uOkbISJOzB3RwNgYU6QPuIfJo4dHw61ZtjuMrLwqB2IpWhuKtm2vqhV
8k29actKsTTxisM8SkClOmQll3K5LMeRyvNJEZcQtAi5mIn/COEOTyKkfElEMMeP
ysmQZg85I5Cboh6FizDxTgkEoMBct3+bj3e2WKeWRNrgtjnjDUf+FGA/Bvppy0m+
tQ+HPcQHR422nQadnlBvYX34YLMz/0A988lDnlUIOUA2kGF/RM+BmCzjawCAHzJt
iCGkWjTAeTIMZGhxiTf2uVJkdQ8X907dhalC2nNy4B+pLq50inlAMY/dllPi36at
DInBA3GF8sFPhPcY2b32dstgQI0c84NAOWLrzMJOwvzg2mpyfHFaq4PTmk5i6xh1
8iGQNXDUsKG59veg6zYD
=9+z+
-END PGP SIGNATURE-


-- 
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/e1tz5pk-0004pe...@franck.debian.org



Accepted evince 3.4.0-3.1 (source all amd64)

2012-11-15 Thread Don Armstrong
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 08 Nov 2012 10:32:12 -0800
Source: evince
Binary: evince evince-dbg evince-gtk evince-common libevdocument3-4 
libevview3-3 libevince-dev gir1.2-evince-3.0
Architecture: source all amd64
Version: 3.4.0-3.1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Don Armstrong d...@debian.org
Description: 
 evince - Document (PostScript, PDF) viewer
 evince-common - Document (PostScript, PDF) viewer - common files
 evince-dbg - Document (PostScript, PDF) viewer - debugging symbols
 evince-gtk - Document (PostScript, PDF) viewer (GTK+ version)
 gir1.2-evince-3.0 - GObject introspection data for the evince libraries
 libevdocument3-4 - Document (PostScript, PDF) rendering library
 libevince-dev - Document (PostScript, PDF) rendering library - development 
files
 libevview3-3 - Document (PostScript, PDF) rendering library - Gtk+ widgets
Closes: 658139
Changes: 
 evince (3.4.0-3.1) unstable; urgency=low
 .
   * Non-maintainer Upload
   * Support the rest of the mime types that evince used to support in
 evince-gtk.mime and evince.mime. Closes: #658139. This also fixes
 #619564, #627027, and #551734 which were related to evince.mime and
 evince-gtk.mime. #581441 was fixed in shared-mime-info/1.0.
Checksums-Sha1: 
 9a953d5ad3e24acf5952284cee81f27b7348f2f9 2998 evince_3.4.0-3.1.dsc
 b9675739e0b86d9c2802b8df4fc334e1188d6839 27486 evince_3.4.0-3.1.debian.tar.gz
 d7457d02bd5f122986d5e73d714a46369123ba18 5157034 
evince-common_3.4.0-3.1_all.deb
 761abe8b9e2bb74b2b241b6c37523321416bbb63 634916 evince_3.4.0-3.1_amd64.deb
 21e6739748817993423426798136479942318c16 1627098 evince-dbg_3.4.0-3.1_amd64.deb
 a8cf43fbee83d013f7fa042970051992e5c916bd 630684 evince-gtk_3.4.0-3.1_amd64.deb
 5f35e666c480ed25606b278c1504ae6af879cd96 652414 
libevdocument3-4_3.4.0-3.1_amd64.deb
 427c804cc062eefba5df51da0ba7beefa2ebc452 568612 
libevview3-3_3.4.0-3.1_amd64.deb
 71152b66aee6716d198a761bef2e1b1f09b7221f 714384 
libevince-dev_3.4.0-3.1_amd64.deb
 2384a16e9d635b086ef75224c8e59d64e92a3fda 498748 
gir1.2-evince-3.0_3.4.0-3.1_amd64.deb
Checksums-Sha256: 
 e426208b9f9fba01b0e8c79edb129e3c8e0f311c3972abe7d66df8139568889a 2998 
evince_3.4.0-3.1.dsc
 9694bf713ff7581abab34ed02d08392bb7f38b639a381ef035f54f446002fe1b 27486 
evince_3.4.0-3.1.debian.tar.gz
 0237b435af5959172243155137703c5d9ef13edaef2d4e3cdf2f168acde6efdb 5157034 
evince-common_3.4.0-3.1_all.deb
 6d11a0fd5c7be0cdc564f2b05fc9b49ee92524d77b415007a3c3a003ed8ce32e 634916 
evince_3.4.0-3.1_amd64.deb
 f4852d497186fc07766a563c27a8e643f4f62e27966c99a606120d368d7dd98a 1627098 
evince-dbg_3.4.0-3.1_amd64.deb
 a6dd56e3c2f7616fb33590c0602b850f4eb479303473be0ca75c70c2353c57a7 630684 
evince-gtk_3.4.0-3.1_amd64.deb
 42dd9bc112cbd719096351b6f5fcdba71f725fa7d9f22ead4ff43600236ec8a4 652414 
libevdocument3-4_3.4.0-3.1_amd64.deb
 e719e3ef9f6503e7096b1bacbb81a4296ccb03f6ea38599bb56f11c2a48273fd 568612 
libevview3-3_3.4.0-3.1_amd64.deb
 febcb78358e1f347e8ed2ffe41b860a59874b76db66c0667d32d088a3395df60 714384 
libevince-dev_3.4.0-3.1_amd64.deb
 1b0981ac7a81ea4029f37b16184be15868338d5edc2759b7f3f6041b54f42979 498748 
gir1.2-evince-3.0_3.4.0-3.1_amd64.deb
Files: 
 b0996cc88ea86d11402aad9224cd038e 2998 gnome optional evince_3.4.0-3.1.dsc
 003fec873260b859eee9e97115271139 27486 gnome optional 
evince_3.4.0-3.1.debian.tar.gz
 b02e2b042902fb1da346c7b7f539b349 5157034 gnome optional 
evince-common_3.4.0-3.1_all.deb
 e0b6638d6f284d484f48a5fe9db3c38a 634916 gnome optional 
evince_3.4.0-3.1_amd64.deb
 9febee4592d56190702854bbc4be040b 1627098 debug extra 
evince-dbg_3.4.0-3.1_amd64.deb
 cf351a619dceb66580e972d5f4340558 630684 x11 optional 
evince-gtk_3.4.0-3.1_amd64.deb
 9a90d08218dfcd06f7e3e745f990bfb6 652414 libs optional 
libevdocument3-4_3.4.0-3.1_amd64.deb
 6a99bcf9e20def670bda267dcfce674a 568612 libs optional 
libevview3-3_3.4.0-3.1_amd64.deb
 2dec34f3de7e3d078ffa6cf9c115b05e 714384 libdevel optional 
libevince-dev_3.4.0-3.1_amd64.deb
 e6d2961b5ea4ed3ed3003638a421ff39 498748 introspection optional 
gir1.2-evince-3.0_3.4.0-3.1_amd64.deb

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

iQIVAwUBUJwI3qLRMAHZjA+6AQq8uQ//V8PfwI+Pd8si2MCzNnG/hSwngpagHvbb
fHFA6yy8Y9+Cu3goljwkNCVGVwgz4VgFfKMHybosL3s8HCcZdjcfy0kEBUVxqlU3
mzmx1rOXf6jmhT4ORtQ0fKMlMatnIodk7jqfmNUR7RdSxLA+BmyOyrxP27QfrCFa
gF66Siz4tJH9ZskxhYVGRp9TGdnCfpUxOFlI/osH0S9H2uPEOcjlaN1UpFhJUPZM
je6GuryqAZMMLf1dgstEKoUGCS9hV1zg1I0OChmPBQ37+I7zRAQo8bQs4LymquKj
yaRf4b3CExoIEO+jVGVlxtL8JYM7Yu0VtC19sbPu2hpT0JoRzlv2z/ZkEh/MxX9z
cVu9jRiK7+CHkHhnggBTEraI6dC4rMtQKn+98BBJ84CEk9kbRCfLwE24CJCh237m
ejHzEbORBY0sPnWkbItSo40xyGk8nAS/8IR2Lz2K07gq59hSmKiuMhXl0ZerLTgN
gFrT6GDK1eTkrAwdh+7OIWaZayQquQQTNwURmvvivlCZjC2+MaOhMebX8usM9aoZ
PQkqGyhCVgMqNsbr+vtfR8I8t4yoLPW2555TGC6SGMk0WbSz97kreamN+s2F4lGJ
hJr7oNRvMSvWUnUzOOebIcT2lEDnasCc3Gi9B//DTlJ9IJTToxbNAoDgYOMV5JrM
umTRBIu1044=
=UI6E
-END PGP SIGNATURE-



Accepted jquery 1.7.2+dfsg-1 (source all)

2012-11-15 Thread metal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 Nov 2012 13:11:00 -0200
Source: jquery
Binary: libjs-jquery
Architecture: source all
Version: 1.7.2+dfsg-1
Distribution: unstable
Urgency: high
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Marcelo Jorge Vieira (metal) me...@debian.org
Description: 
 libjs-jquery - JavaScript library for dynamic web applications
Closes: 692618
Changes: 
 jquery (1.7.2+dfsg-1) unstable; urgency=high
 .
   * Removed non-free files in upstream tarball (Closes: #692618)
Checksums-Sha1: 
 62ab67d1eb520b235ad0490a9f5504d0e0b234a3 1977 jquery_1.7.2+dfsg-1.dsc
 1c17c0b49b4a37af469fb63a5c56cfdf919f769e 147053 jquery_1.7.2+dfsg.orig.tar.gz
 d2e62ae389124390c5170eb92dbc41911ba93c58 5965 jquery_1.7.2+dfsg-1.debian.tar.gz
 8b71602d402b50a7cb2e997df7cb9386c5025c29 80070 
libjs-jquery_1.7.2+dfsg-1_all.deb
Checksums-Sha256: 
 cbf85639eae141a8fd1df0c80fcab090d997714fd290755eadb13d221ac8893c 1977 
jquery_1.7.2+dfsg-1.dsc
 43384d8c975c723a3b7d6f46e7ff1518d161760e0781a37675eeda1a05a503fe 147053 
jquery_1.7.2+dfsg.orig.tar.gz
 edddc5720631a07118445453424cd05e20ea7c0163a99a718f12dbe9eeceb2cf 5965 
jquery_1.7.2+dfsg-1.debian.tar.gz
 2363a8b700645439e184560bf679c110e07af5004433b2cea9d24e986a40c64d 80070 
libjs-jquery_1.7.2+dfsg-1_all.deb
Files: 
 aa2d3d20a8a47ef3a1ecf3b7314f8686 1977 web optional jquery_1.7.2+dfsg-1.dsc
 c75b2e33e0d769bedfea8f4e7ca45d4c 147053 web optional 
jquery_1.7.2+dfsg.orig.tar.gz
 b3d996072c5d102ac37f7b4ea2a0ab89 5965 web optional 
jquery_1.7.2+dfsg-1.debian.tar.gz
 d6a0dd22a0402c609a6ba5f956703a8b 80070 web optional 
libjs-jquery_1.7.2+dfsg-1_all.deb

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

iQIcBAEBCAAGBQJQpVBxAAoJEAGffgcyZKXEOxEP/jTmn+faOeMAxMlhCnzx0pHc
NE9YkVNokcCpCN44ErQjqX0g9aPafnrRtEFB2bu1cVobRjQHKaTbYGYkaocJMp5Q
2ybD/6VNIDtSBeXwzS2sfZJC6Tw8Sb2UmwcdmsoPjiDQHV4zjuKEENN00rljLnNE
HI6ifzSE2SNkA68peNOb+wDF9MDyAsLI9RtotF9civt03ktU8v3QXrCaPXqTFmmc
Le7Z6Bf7087Xs8JARQidy91A4X0zEyWevBU7Zj3RTjAEMa7PHLWztNq8BNBrkT5t
IGU8n+GFWH3bY8ckx4KE4WL0DDRVUjP5UFa+GqKdTyIJYnyGt4e1+0uao+/DNBwY
IaXhysktKsvsllU4Vf5u77vIGNoQlMOVUuqVR9n71atMcuwYsBBiKxHlJhIbC13F
VvlcaBHFDPeRuTiJcGC3juZdOpyE9QKkIEtEZpCyhsHgESRt1NCC3hU3u4lJNG4R
lYbAr3VE7A5oalx4I9N9YNh+tF4p66Vh0mAxhnktG6Dw0YJNzxBdtuDet/E3OWDa
zhLltSsCV+E5sWxTw8yXNGLQek2n6/mhSIeftDJacvnHQEn64+BIU2NH03mVPYY4
c/+1b2p0eS6FMXT503RLeQ13wPosu4FZ5KZG1F6s23McfUrBki7jiCmkm16m5Pf2
gCBL+JpEqsG+dOUedbte
=IDGP
-END PGP SIGNATURE-


-- 
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/e1tz6lw-0006bq...@franck.debian.org



Accepted numactl 2.0.8-1 (source amd64)

2012-11-15 Thread Ian Wienand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 12:20:29 -0800
Source: numactl
Binary: numactl libnuma1 libnuma-dev libnuma-dbg
Architecture: source amd64
Version: 2.0.8-1
Distribution: unstable
Urgency: low
Maintainer: Ian Wienand i...@debian.org
Changed-By: Ian Wienand i...@debian.org
Description: 
 libnuma-dbg - Debug package for libnuma
 libnuma-dev - Development files for libnuma
 libnuma1   - Libraries for controlling NUMA policy
 numactl- NUMA scheduling and memory placement tool
Changes: 
 numactl (2.0.8-1) unstable; urgency=low
 .
   * New upstream
Checksums-Sha1: 
 b07bd9d70563dadacf557ba42b85ad1643f7387e 1189 numactl_2.0.8-1.dsc
 f7bf06caea29669992fd3540a4c864a32615b5a1 339373 numactl_2.0.8.orig.tar.gz
 c77e9f3bd1518e1536ba3f73243642ffb4115350 5481 numactl_2.0.8-1.diff.gz
 70f3fc65d674006740a4e70890ea4794a80b5b04 48146 numactl_2.0.8-1_amd64.deb
 8ec3fe86b15fd4c2bdd5f59a40e9944afe765fb9 34682 libnuma1_2.0.8-1_amd64.deb
 12b4f1959000bc46316b3e5e9268a527e1979754 49530 libnuma-dev_2.0.8-1_amd64.deb
 a9c1c4853434197cdf8d38b16d518b917308e226 122438 libnuma-dbg_2.0.8-1_amd64.deb
Checksums-Sha256: 
 74207696ee77be5cf71b58959d4925487d8d64ae281f66d91536c8bb42c2db47 1189 
numactl_2.0.8-1.dsc
 2f5bb6d1d5556235ec3b1ed40094d5bc2502e5bacc213d324088d63fa531c9ea 339373 
numactl_2.0.8.orig.tar.gz
 afde6fd0ee6966a976795704e736d00f2149a69a07eb7593bc6d898072e80926 5481 
numactl_2.0.8-1.diff.gz
 38a837e47ab13724cdac35ea932f70e6a6c6738942ba3d0cb6fd789f765d117d 48146 
numactl_2.0.8-1_amd64.deb
 003d21b3fa6f349899ffa1dcdd4100fe37aa4e2b62f89985fb05a7b47c342baf 34682 
libnuma1_2.0.8-1_amd64.deb
 e295f8e5974a499d59aa57f47963bc097fa19d7e32aad01d54cf05fd7219ac89 49530 
libnuma-dev_2.0.8-1_amd64.deb
 f2671a13bc6791b6fedfd9169ad08a0ec52bbe407a2cb1d4e52230cfc3d3bf10 122438 
libnuma-dbg_2.0.8-1_amd64.deb
Files: 
 ff8231c09042f78ec10ca7153da29848 1189 admin optional numactl_2.0.8-1.dsc
 157def35edcc0ab94144398000b01d18 339373 admin optional 
numactl_2.0.8.orig.tar.gz
 df7f6471c1d5aa7b9a0f5360e4aeb9ea 5481 admin optional numactl_2.0.8-1.diff.gz
 50d985a1438e379b782a14a5300869c1 48146 admin optional numactl_2.0.8-1_amd64.deb
 9c78624e4b1c8bcf9fcf2c90b0ca2f09 34682 libs optional libnuma1_2.0.8-1_amd64.deb
 150655e58e95d48ab13175bab0df 49530 libdevel extra 
libnuma-dev_2.0.8-1_amd64.deb
 c81fc9c687fa3aa728d944527cadac0c 122438 debug extra 
libnuma-dbg_2.0.8-1_amd64.deb

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

iEYEARECAAYFAlClT3cACgkQWDlSU/gp6ed/NgCg34WBoMIwdFBWEZW5V5ftg/0a
oPYAnjDsACg/dpNmzKr3UqgMeUD/rJ34
=QrRg
-END PGP SIGNATURE-


-- 
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/e1tz6mj-0006t7...@franck.debian.org



Accepted suckless-tools 39-1 (source i386)

2012-11-15 Thread Vasudev Kamath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 Nov 2012 12:28:34 +0530
Source: suckless-tools
Binary: suckless-tools
Architecture: source i386
Version: 39-1
Distribution: experimental
Urgency: low
Maintainer: Vasudev Kamath kamathvasu...@gmail.com
Changed-By: Vasudev Kamath kamathvasu...@gmail.com
Description: 
 suckless-tools - simple commands for minimalistic window managers
Closes: 378175 610478 627662 636030 642307 650573 650574 658386 665884 667796 
692737
Changes: 
 suckless-tools (39-1) experimental; urgency=low
 .
   [ Michael Stummvoll ]
   * Added manpage for dmenu_run (Closes: #610478)
   * Updated manpages for slock, ssid, swarp and wmname (Closes: #636030)
   * Updated manpage for sselp (Closes: #378175)
   * Removed st from the package. Suggests stterm now. Since st is
 no longer part of this package it doesn't install st.256color.
 (Closes: #642307,#665884)
   * Fixed a typo in the wmname manpage
   * Added some docs
 .
   [ Vasudev Kamath ]
   * debian/control:
 + Increased minimum debhelper required to 9
 + Bumped Standards-Version to 3.9.4. This did not require any change
   to package.
 + Added Michael Stummvoll as Uploader
 + Added dependency on dpkg-dev = 1.16.1.1 to introduce hardening flags
   using dpkg-buildflags.
   * Set debian/compat to 9
   * Created new version 39
 + Imported new version of lsw (Closes: #650573)
 + Updated dmenu (Closes: #650574, #658386)
 + Added sprop and lsx (Closes: #627662)
 + Imported new version of slock. This resolves CVE-2012-1620
   (Closes: #667796, #692737)
 + Imported new version of tabbed
   * debian/rules:
 + Added get-orig-source target to get upstream source tarball for included
   package
   * debian/patches:
 + Added patch to do setgid shadow instead of setuid root on slock Makefile
  (01_fix_setuid_slock.patch).
 + Added patch to introduce hardening flags and allow 
DEB_BUILD_OPTIONS=noopt
  (02_dpkg-buildflags.patch).
 + Added patch to make command execution visible in Makefiles
  (03_transparent-makefiles.patch).
 + Added patch to escape '-' symbol in manpage for tabbed and use temp files
   in secure way (04_tabbed-manpage-hyphen-fix.patch).
   * debian/README.source:
 + Updated this file with proper instruction on how to recreate the original
   source tarballs required for package building.
   * debian/create_orig_source shell script is added which will be invoked when
 get-orig-source target in debian/rules is invoked
   * debian/watch:
 + Empty watch file added with only version=3 string in it to avoid lintian
   warning
   * debian/README.slock.Debian:
 + This file is added giving instruction on how to use the slock command.
   * debian/copyright:
 + Fixed the Copyright fields for lsw, dmenu, tabbed.
 + Changed short license name from MIT to Expat.
   * Switched to source format 3.0 (quilt)
Checksums-Sha1: 
 afc13dceb1d911bd994718570e74e80113c9bc64 4657 suckless-tools_39-1.dsc
 70c1a13b950b7b0cb1bc35e30c6e861a78359953 11543 
suckless-tools_39.orig-dmenu.tar.gz
 ae32c246216094b748cb2c3edd5ec1a4612a5434 2946 suckless-tools_39.orig-lsw.tar.gz
 7a9f311873b0b1bd9d5f2b0772f64a2f15c68a9a 2130 suckless-tools_39.orig-lsx.tar.gz
 3eb71d2ddabdfc9d7d6d4d6fbd39d2f83fad351e 4604 
suckless-tools_39.orig-slock.tar.gz
 aef9f869c9760152c745b8405a751460842394ac 2750 
suckless-tools_39.orig-sprop.tar.gz
 8a89cb11388f09458d7e9c549cdf394c8abada04 2562 
suckless-tools_39.orig-sselp.tar.gz
 f73e203aa6105b1288376758b7ced16f1cad4306 2072 
suckless-tools_39.orig-ssid.tar.gz
 0d602b971f3d9fe0197143a9106a5c2e5044fd01 2277 
suckless-tools_39.orig-swarp.tar.gz
 7529360b088df30b66f05aa960712f1feda46e91 9868 
suckless-tools_39.orig-tabbed.tar.gz
 7bce60306ccc9c9a5fc60d9874e81a013efa8871 2512 
suckless-tools_39.orig-wmname.tar.gz
 e1b9c9fbf43afc7ba3b7177dd25bf33cc7a25108 119 suckless-tools_39.orig.tar.gz
 871f961b3750a5347eff0bc2b0c7a4080d70de8d 12268 
suckless-tools_39-1.debian.tar.gz
 e29d64e5aa936e01a57d0f7ad5babe97af0faec1 47914 suckless-tools_39-1_i386.deb
Checksums-Sha256: 
 b879864b776a37566caf9ceb5c6e2478d999272e6cf3118c2c2101a86554e871 4657 
suckless-tools_39-1.dsc
 082cd698d82125ca0b3989006fb84ac4675c2a5585bf5bb8af0ea09cfb95a850 11543 
suckless-tools_39.orig-dmenu.tar.gz
 307dcb49d5fd814ca58e3c7cae06008a0c68343b69847e59ddf0e34a555d5f60 2946 
suckless-tools_39.orig-lsw.tar.gz
 b30f8282f2de25bd59edb2dfdc033320539adf56199351a6b5d80e05965add94 2130 
suckless-tools_39.orig-lsx.tar.gz
 e04ae5070c646c78251780d386e14d16fd100367e877dd5cf616dc7aedd0e0e4 4604 
suckless-tools_39.orig-slock.tar.gz
 c1b786d9fbd81a57addd7e21a34c5a121543cbf9f38fe309e7b452ba94b69ab5 2750 
suckless-tools_39.orig-sprop.tar.gz
 cd0f95ec0eb571a6dd3c48ba3aa931080eb33bc81805bd72832cc04c01b8b822 2562 
suckless-tools_39.orig-sselp.tar.gz
 a4c477e58743ed04a7a68a76cd5863bf1919545d5a0fc5db6c6ccfa15134d1e6 2072 
suckless-tools_39.orig-ssid.tar.gz
 

Accepted trac-includemacro 3.0.0~r12030-1 (source all)

2012-11-15 Thread Ross Glover
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 01 Nov 2012 23:20:11 -0400
Source: trac-includemacro
Binary: trac-includemacro
Architecture: source all
Version: 3.0.0~r12030-1
Distribution: unstable
Urgency: low
Maintainer: Ross Glover r...@mayfirst.org
Changed-By: Ross Glover r...@mayfirst.org
Description: 
 trac-includemacro - Include external resources in a Trac wiki page
Closes: 692084
Changes: 
 trac-includemacro (3.0.0~r12030-1) unstable; urgency=low
 .
   * Initial upload into debian (Closes: #692084)
Checksums-Sha1: 
 9f9948d5b67688e4eee4917d5ff5cdfe65b2a4ed 2062 
trac-includemacro_3.0.0~r12030-1.dsc
 e95bf67abc6a4372a175cb9c14c2bb6cf4b0b175 4752 
trac-includemacro_3.0.0~r12030.orig.tar.gz
 25c01d16572aea33bd78f249b7cbc00add9fd41d 1981 
trac-includemacro_3.0.0~r12030-1.debian.tar.gz
 6a621743040d3eabb93bd756f71cc807bff56a97 7400 
trac-includemacro_3.0.0~r12030-1_all.deb
Checksums-Sha256: 
 81d1417aa87c4a1f7e4d80aaf73572641c4db45c3db90daa19837e0a1da17ea1 2062 
trac-includemacro_3.0.0~r12030-1.dsc
 9b686e49578d9acd4e3bb92526d9422af52e31368fc7895b42d400e20571bd9a 4752 
trac-includemacro_3.0.0~r12030.orig.tar.gz
 e3ef15b0f93cfc5f4c1facf9682303e764f88f09b0c6e7d27f6cbf96e6aec4da 1981 
trac-includemacro_3.0.0~r12030-1.debian.tar.gz
 06c126ce85939ff7e7afdbc58fdcd7be108d3a9c8e05c300858ad513d9154041 7400 
trac-includemacro_3.0.0~r12030-1_all.deb
Files: 
 76ead54da14b3c07bd20a8c27d8b87a2 2062 web extra 
trac-includemacro_3.0.0~r12030-1.dsc
 efe23c3c58ce76089ddc3a74d6095873 4752 web extra 
trac-includemacro_3.0.0~r12030.orig.tar.gz
 b9deee8ae318b5459e675ed5f2689362 1981 web extra 
trac-includemacro_3.0.0~r12030-1.debian.tar.gz
 9536691752088f826789b3c8b286a10a 7400 web extra 
trac-includemacro_3.0.0~r12030-1_all.deb

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

iQJ8BAEBCgBmBQJQluU6XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwRUU1QkU5NzkyODJEODBCOUY3NTQwRjFD
Q0QyRUQ5NEQyMTczOUU5AAoJEMzS7ZTSFznpLBsP/idikHwQIhgMQUsmmAr7ywUU
B40SUAZNkDLcVspsozRENwuIr4cmYDSJTKlNQQavrjqow1+71xSprzhV2IZBHLRI
JlEc8zu3ARBS1dWN1QgPCOYa1c67Zhkuqe3w7S8eNOxF+wexT51fwmP24hs873kr
Spm9k8cGREttKum3d3m4YSSUKUY4B8FSpTVQuPASMAZvt4BVxYb8SA7CzKcE2Zx9
jslKk6mwutB7FhMuY1T40qYz/t4jCHGr2O3tsar/SmERqoi3SWEIGQACbc8e27oh
RqPK0N1r2gxGdXA1TZSNTAVefFfVXxD99advjGj0GvIx4+QWaSFOVChm4T4bYuY4
inHjvjbchAe2U75vlL49XZZrt49gJ3ONlIbpCToLLm3eb/ZUXg1pZqBKB8gZrNCT
KVcB+ml/TEXTlNidRuz0JfMsZ9qMQ9rrf/sONNjzCkF0QUpFlpsT8kcU9ChwwyGh
HgK0YFlzqyZAzq5I4ZI7+GfOKcQ8XD+EkW6Bwcd5OEGq55EXbqXt69yiPlQh5xTj
VQYu0MmfcS7nX1sc7wezs0fuuhdIcV9dEnhRx4KGFLk6ax0gXnbmggobt+2ejFLS
nzhjJ4yvMyNRxMQFT1zBmaeW+evRKXEgDLAvb/p/lSN1HvZBMz4GuPblyHzU6UDG
J2iGTU969eqgwkTIZope
=C7n5
-END PGP SIGNATURE-


-- 
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/e1tz6xe-xx...@franck.debian.org



Accepted double-conversion 1.1.1-1 (source amd64)

2012-11-15 Thread Sébastien Villemot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 02 Nov 2012 14:57:08 +0100
Source: double-conversion
Binary: libdouble-conversion0 libdouble-conversion-dev libdouble-conversion-dbg
Architecture: source amd64
Version: 1.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sébastien Villemot sebast...@debian.org
Description: 
 libdouble-conversion-dbg - routines to convert IEEE floats to and from strings 
(debugging sy
 libdouble-conversion-dev - routines to convert IEEE floats to and from strings 
(development
 libdouble-conversion0 - routines to convert IEEE floats to and from strings
Closes: 692264
Changes: 
 double-conversion (1.1.1-1) unstable; urgency=low
 .
   * Initial release. (Closes: #692264)
Checksums-Sha1: 
 b465948913839667f0806d82192c1dfaa3adc0bf 2226 double-conversion_1.1.1-1.dsc
 de238c7f0ec2d28bd7c54cff05504478a7a72124 7012946 
double-conversion_1.1.1.orig.tar.gz
 aebfd81625918aa50600ff1fa1ef75be4087b4a7 3105 
double-conversion_1.1.1-1.debian.tar.gz
 861e3ad1c55379ecdaed2aa2d064bca5aeb20fb8 33964 
libdouble-conversion0_1.1.1-1_amd64.deb
 3d477cbfbadad1fe4820930b37aeefb4f7ecbf48 54790 
libdouble-conversion-dev_1.1.1-1_amd64.deb
 f652fb89c50206b3a7141f76ecd5a2c6d2697eca 97860 
libdouble-conversion-dbg_1.1.1-1_amd64.deb
Checksums-Sha256: 
 3a51ac872c1a72a8a0d87819c560dcbeef936f610c8230c7c19c14247bd56954 2226 
double-conversion_1.1.1-1.dsc
 e1cabb73fd69e74f145aea91100cde483aef8b79dc730fcda0a34466730d4d1d 7012946 
double-conversion_1.1.1.orig.tar.gz
 73ee70c4c8bd25d38df7bc91078978b681f2f022bef9e81d213b710736655ce7 3105 
double-conversion_1.1.1-1.debian.tar.gz
 98005d0fc1b0604a353edc9204abf63944b2268f5579ff42f7f7f7cdd686a529 33964 
libdouble-conversion0_1.1.1-1_amd64.deb
 7223961a68ad924558cc3b2e06e512aa46773430295aaff771214022150c1b1b 54790 
libdouble-conversion-dev_1.1.1-1_amd64.deb
 87142d8341543f662e386b6ead623ccb149f8b01261a339b6ad69f5cadf9642e 97860 
libdouble-conversion-dbg_1.1.1-1_amd64.deb
Files: 
 6d0d604209d6c71cc2c94be3962e65f1 2226 libs extra double-conversion_1.1.1-1.dsc
 29b533ed4311161267bff1a9a97e2953 7012946 libs extra 
double-conversion_1.1.1.orig.tar.gz
 6331f667789e946a60a186840e9db087 3105 libs extra 
double-conversion_1.1.1-1.debian.tar.gz
 fbd37e1d5baf58e0c37cb22bd5942165 33964 libs extra 
libdouble-conversion0_1.1.1-1_amd64.deb
 0c34746764401b0980332119bbfca7a8 54790 libdevel extra 
libdouble-conversion-dev_1.1.1-1_amd64.deb
 adb9abeef1cc2a114f3e3e56e1d2adb2 97860 debug extra 
libdouble-conversion-dbg_1.1.1-1_amd64.deb

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

iQIcBAEBCAAGBQJQloAXAAoJECzs6TUOzr5Ka9cP/12/pHgwQSJT9TXpiEisdsbh
5RNkB+i6x/A+xBrFZF/steIzGku+w8xOTv+4lunBu3jVSHZ80MXyA7yTCxdeBXA2
wkM+BePlPL3+Yft43mCXxDp4nYhJyBKU8iPW7wrO4WA6kdZbvJZs8vJUnwKyRSnu
0PtZZI3CqcF1Yo2HDkhdFHHeZcl5VWRtJFwX1b97AYWp1pNHSf2lzLUdRJDEde2x
MMsNT3mR5O3wDejQXrDFAkv7/o+0QuJduH1NHzxODAuLkL64Gn9ejsNDBnqvzxK8
BcSew5/M7FrIsZQRQO71tCV23NSjB5F/Ul+WnooPlnC5tK0dwk477BHVNC2RUoA7
dP9iyCmqj+xI+I+qk7RG/j+oR3AIYUwlTiJnAgZICQHUTuqLco8cb3XlgX6F1hNC
fiOLrSRzVZa1h6XuDgmhMwXpf1l3QRp50LhK51qV+Id6BarEP96cLbx3RnnaPmna
mqpeVAiVCZyG5506QaSUhWLzPviWnNYLfUbyCCxfUvY6BQCRGPuafV5iI+ZAvHKE
6SHza8T7VPa07nZ3p2ybdzKMqUEukiaaNLu5xMO+FxTS+95GEn7Gox8DpiZMaaUj
73EZlG65e8GXehd5V58nP6S2ki7fyhcPbShzbtx5uqo9Syz+E/pJKiqK1hMl0Fz/
/G3PZ+XMtCnkgQRCSDY9
=+aBj
-END PGP SIGNATURE-


-- 
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/e1tz6xe-xv...@franck.debian.org



Accepted ruby-http-accept-language 1.0.2-1 (source all)

2012-11-15 Thread Anish A
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 24 Oct 2012 02:32:27 +0400
Source: ruby-http-accept-language
Binary: ruby-http-accept-language
Architecture: source all
Version: 1.0.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Anish A aneesh...@gmail.com
Description: 
 ruby-http-accept-language - Ruby library that finds out which locale the user 
prefers
Closes: 691291
Changes: 
 ruby-http-accept-language (1.0.2-1) unstable; urgency=low
 .
   * Initial release (Closes: #691291)
Checksums-Sha1: 
 cea384a6a31b047a6710b051567fddafc8b12a9f 2192 
ruby-http-accept-language_1.0.2-1.dsc
 e0f509c0aaf078a4f65294b9109b26d7b3a94571 3126 
ruby-http-accept-language_1.0.2.orig.tar.gz
 e757ce178e18f6352886c0c6d8ede2250969ecec 2185 
ruby-http-accept-language_1.0.2-1.debian.tar.gz
 2763870ab564ab1a35c7e73d49dea4173a691674 4294 
ruby-http-accept-language_1.0.2-1_all.deb
Checksums-Sha256: 
 78fde89d8a8d03ce543743bc7ffcc379adbbcd5beb516ccf48baecc75fe8c45c 2192 
ruby-http-accept-language_1.0.2-1.dsc
 ba86590cdd128649120808cee862564e9206043e3ae51c74b8c3fff32d929299 3126 
ruby-http-accept-language_1.0.2.orig.tar.gz
 5e640d5e61b0eebb2b88b888ece8c197846421c30949a6de19adf157da584935 2185 
ruby-http-accept-language_1.0.2-1.debian.tar.gz
 11619e0eb5ab646c62bfe1d43a4b6b8eee83574fdc79d90475968c6039c939d0 4294 
ruby-http-accept-language_1.0.2-1_all.deb
Files: 
 2a43f6442e033c745215fb2de33cf292 2192 ruby optional 
ruby-http-accept-language_1.0.2-1.dsc
 a1f0884b8d6001d626cd9e46eb127e0c 3126 ruby optional 
ruby-http-accept-language_1.0.2.orig.tar.gz
 36f4608c00673ead234eadbd53308511 2185 ruby optional 
ruby-http-accept-language_1.0.2-1.debian.tar.gz
 e6c4719cd67c692914fb738ab0135736 4294 ruby optional 
ruby-http-accept-language_1.0.2-1_all.deb

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

iQIcBAEBCAAGBQJQlQMCAAoJEM4fnGdFEsIqW5MQAIc0GQG9GxRJDQgMJqJ+gfaN
H4jNEGpGhrucpUAQD15uKAM7nbfdkrHJrHqFzb56QYoCVJbvWJfBrxWEgTO+eYwj
zrzztlt1sUxaEtCdzEsQXcV8G7YUy2ngDeHnbgq/e+6vtgTkDRoq0jqYOqyz68iy
UrHrDym3b0VQhFeUn2ith3+K6n2USreF1z9e+xhNy/nvHG5yKjGx3196R6Y4ts47
ViTrNCAbJxeTW+jTWv1CT/u2rZXIkYTai9ZdSsChXA7vhtuv7Sn1G7w4aSUJtwPQ
L9NbdVvH2MWAGqDjbH7ZtM0jv8IaHKF6SNdfrF3jIhpn/L01fhIh1Qph3WK4MbGx
O86Pyp1Y1xi1iH6ypxqNyqCMEnJdP/rB2A77kiXvxrnrT6ARNu+Ayh0czdh228pH
eWlU2cva+h9Z+46rAaW40CyBBXIqKoD7Di1zf2/Y/rR39zU6y/aTy165f8PDzFFN
Rd+693j9pfMUEaHn2CdacTybnm81IvM1KoRo5ZnKSdcYni/ffp8t+9ygm8lS5GlF
TgnRi6amfQ5LR8wHtgS6bIyCWZhz3uO9uoHI7pcwjvjp6X3vDeuEiMiJbVPTz5b4
j+bvcKot1VdE3MfkMh3OWALYZvDTVvHT1MnBonoczhDJoXjTGPcleobBDUXQs0bS
HXTktWMecBxfljNX/RCQ
=apID
-END PGP SIGNATURE-


-- 
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/e1tz6xf-yg...@franck.debian.org



Accepted libltc 1.0.1-1 (source amd64 all)

2012-11-15 Thread Jaromír Mikeš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 03 Nov 2012 12:20:55 +0100
Source: libltc
Binary: libltc-dev libltc-doc libltc8
Architecture: source amd64 all
Version: 1.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description: 
 libltc-dev - Development files for libltc
 libltc-doc - Documentation for libltc
 libltc8- linear timecode library
Closes: 692102
Changes: 
 libltc (1.0.1-1) unstable; urgency=low
 .
   * Initial release. (Closes: #692102).
Checksums-Sha1: 
 a638b5fac850e93ac0feb34618030a783d22cdab 2097 libltc_1.0.1-1.dsc
 62096d7715abe8cc53d2a4defdb651ffb5d3d4ba 404878 libltc_1.0.1.orig.tar.gz
 190cda5effa02953a734ae79eb0f90221302a3ae 3069 libltc_1.0.1-1.debian.tar.gz
 fe2a08f1d2d3a1cdee1a7f845e89ae91e7c18551 10212 libltc-dev_1.0.1-1_amd64.deb
 82cbc21bf8b0a3eac3c84f12d2092f8d6180ee89 10536 libltc-doc_1.0.1-1_all.deb
 3ff157753671e8ded47948a7362986d103616d62 12566 libltc8_1.0.1-1_amd64.deb
Checksums-Sha256: 
 cacaafe85c762bc74739a28e6be591f976ad2271cd4f8a3d432cd283c75bcebb 2097 
libltc_1.0.1-1.dsc
 774d75c06ee29de7698b84ad8bafce911a36a0e9b159b652a0ebc2a8b997726e 404878 
libltc_1.0.1.orig.tar.gz
 4c91d61c636063e84a653e363bf76c589c147cb5d93655c1d6e5682128332ab3 3069 
libltc_1.0.1-1.debian.tar.gz
 7f3f4eaa21fbff8b99d939dca8ffb4c894a7e5a97681adb507b760724e9a9d19 10212 
libltc-dev_1.0.1-1_amd64.deb
 24d83fd523722506ac13bfbd14adf43dc5e3626f401a6106b56059028235e263 10536 
libltc-doc_1.0.1-1_all.deb
 8a47a614ebe6c90a2855febeb2ceed95d46632c4c6de217cdd12d5b6988c87ba 12566 
libltc8_1.0.1-1_amd64.deb
Files: 
 2676267898466fb3a32fff4e423b7b8f 2097 libs optional libltc_1.0.1-1.dsc
 38dd44f051a6a0843233814fb5598cbb 404878 libs optional libltc_1.0.1.orig.tar.gz
 cfa39474ea3fb779a4e0a8fd9b14812b 3069 libs optional 
libltc_1.0.1-1.debian.tar.gz
 2c06b308c888db13dc96e6c9ef97c3ec 10212 libdevel optional 
libltc-dev_1.0.1-1_amd64.deb
 9a3a304ffba6a70cd1595ccee7599ccf 10536 doc optional libltc-doc_1.0.1-1_all.deb
 ed022609e61a69b6b521a851b5398e26 12566 libs optional libltc8_1.0.1-1_amd64.deb

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

iQIcBAEBAgAGBQJQlYSpAAoJEOikiuUxHXZaEi8P/1q90r6SJGpG8n4laPbq3cty
9Q+/wkeGSg5xXUvPOeRrWlzazwxIt/QX5cQ+wCqJ92z4v7RRbsizNSf8c2uWTKcH
V0M0bIRE/ZzdQB6ErLiE7Jc8/qv7cGJD/Dm72uELVDeDc+yqvaVtLwDkNjf20J+j
sQJYvd5dxT1NcRRPlyY32L2Hr4rbJ6Aw/utcbw/4S5ZfKkCsDCQ24iDX9WgLRUH2
gtHgUzfcA/2O/X1mlF7RMSiedLuXK3a8/m/0tsvJ9Z4ucwr3Sn0/miXyNY7XXuMo
1iVUDE16UrAfrCB7HrN9XmhevTWR04nuAjbzeLbWvpdDIDo/irBIsVtzt+BPR0ry
F5B211bu+Qa1iHwKacXpyxo/y+DyYHBmKABDdzq2/sBOzrQFo8hxu7soQd1ea+nI
rtpdrhIjXqsCRWBln8tlyCLhLawAsEwcrOLF6inV8+vjzNVVd4L+OldjZW10YcRM
b7npyDhw8JA5eroFEFtpfF9raIe2dTEYQV6vxDzRKk8DlXXWJuNsEL64qx19BRa6
Zv8NJkJKL3J3zYA7Mp7HdxPELOLLQiXaSBzBaNTORLWEdTzu3HWTpR3+JUCSbhxg
kXECx+rvlj9AwEUqhJvVxkHJY1qoBArDXUvC1hYdK1T99ySKQKi70Ml00Hr1Oj67
cyA9b9wED5tpeImAgEG1
=JzuT
-END PGP SIGNATURE-


-- 
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/e1tz6xg-yg...@franck.debian.org



Accepted ruby-cutest 1.2.0-1 (source all)

2012-11-15 Thread Praveen Arimbrathodiyil
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 22 Aug 2011 18:29:19 +0530
Source: ruby-cutest
Binary: ruby-cutest
Architecture: source all
Version: 1.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Praveen Arimbrathodiyil prav...@debian.org
Description: 
 ruby-cutest - Run ruby tests independantly
Closes: 638829
Changes: 
 ruby-cutest (1.2.0-1) unstable; urgency=low
 .
   * Initial release. (Closes: #638829)
   * fix failing tests, patch by srihari
   * add manpage for cutest.
Checksums-Sha1: 
 0ece25b837cfe3c9f7c91fc5a1f080fd43cd6c6a 2049 ruby-cutest_1.2.0-1.dsc
 4df231d1a3bb2752b959d6d297ffe0639cc4e4b9 6708 ruby-cutest_1.2.0.orig.tar.gz
 d9235d1ebf38d25f8f7cd62af6fd4dac3673d4f8 3476 ruby-cutest_1.2.0-1.debian.tar.gz
 d7dd798a69ba57ae1d506218b08724021fb7bfd0 10350 ruby-cutest_1.2.0-1_all.deb
Checksums-Sha256: 
 09be5505b43d5fad719ddae388dcd82860823bff3d9ef586ac2a111089ba9477 2049 
ruby-cutest_1.2.0-1.dsc
 f791ebc6fa363c92203a05a8986e9f2cac978a58134b4de3ac8d462cd3178033 6708 
ruby-cutest_1.2.0.orig.tar.gz
 d1acbe275fd3f073ca94246b42c113103f2696593e47b7c3edec5c49cbe9481f 3476 
ruby-cutest_1.2.0-1.debian.tar.gz
 c1838500e23f0621d6c1933104005f3dc54e5c1f316cc630e1b317f7c5649943 10350 
ruby-cutest_1.2.0-1_all.deb
Files: 
 71a6c007991113e7c18e27653c2a9b88 2049 ruby optional ruby-cutest_1.2.0-1.dsc
 290c1796ad7686defbe05d975a4ae3f3 6708 ruby optional 
ruby-cutest_1.2.0.orig.tar.gz
 c34969750895c1e60639d56e9b69abfe 3476 ruby optional 
ruby-cutest_1.2.0-1.debian.tar.gz
 24acfa100738a53f1485030a6d775848 10350 ruby optional 
ruby-cutest_1.2.0-1_all.deb

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

iQIcBAEBCAAGBQJQlAIVAAoJEM4fnGdFEsIqMAUQAJEFmTBZIa/9MZL+7eg3idNr
6uW7oLxAFMlN9NgO2j8CrfTDHskn+Ah3PlFJLoHgL3q927jB63fB9GktBbJW1nqm
soIycf/JUmv74Ms1ggwXkPOhW3ke3YMnanxvgTzaZdjvpmqfdNnh7zqSoxn5fclY
rFCCBR5MxywpA1k7ODhnsKDzvQDNHZWjgQ5vTPdILp+ni5pDSLFT9i9SUMHKytuV
NI0pfcS9mzSpRFsKrP6fcYjVCR2UqiTyo1zU1voHQrpNna7tc4Hie7SBhVsA1hpW
PkNuxxwIFFgdDG+mXR84nf/LXHmpHd5aXuQ80Sw5x2Z/6XYsPMavcY4W6sclmD/3
cqgCPhhdi1G5wgWvuLavUP2SlbAwp9CAf3yWFfDSxj2/79GlMvFQTmmL11TEprkp
wQYzCaVs9wSg7iV95mU0LyhL1bkjoh6nrw+fUVclg5eFGQ4VmmToLlZ8Mhe4IIhz
Z6vYfSQbK49hGe9D0Oqb7GaYEPNAYHxgZOcLFrKZ4jkwmIDiXQOOZU63xYQ5r0s2
/6rDyo+p0qJQfYKoRQyYPfkFv6b6rf2UqwW51XvjF46f/wq7/sTkHnftTQ6pAUV4
09S0YMztS2BBwc2kKsMko2nFI6W3C3xJv1CtlMhQcbl0ReQUQGhpLyxqnKcZe0BK
T1uOi5HafFFAgfTohBKM
=ty2G
-END PGP SIGNATURE-


-- 
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/e1tz6xd-wq...@franck.debian.org



Accepted fomp 1.0.0~dfsg0-1 (source amd64)

2012-11-15 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Nov 2012 10:49:59 +
Source: fomp
Binary: fomp
Architecture: source amd64
Version: 1.0.0~dfsg0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 fomp   - collection of LV2 audio plugins
Closes: 692354
Changes: 
 fomp (1.0.0~dfsg0-1) unstable; urgency=low
 .
   * Initial release. (Closes: #692354)
Checksums-Sha1: 
 e5d7e8107191ea4db8ecda2d09f8dd9e15104978 1955 fomp_1.0.0~dfsg0-1.dsc
 dab704d2a3819d338352c04729580ac37c379211 90888 fomp_1.0.0~dfsg0.orig.tar.xz
 12cd64964c385f5447a5bd3c3101be97258c98b6 3023 fomp_1.0.0~dfsg0-1.debian.tar.gz
 eec8291eeb909f1144dd724e36f5f1479fd16fcb 40934 fomp_1.0.0~dfsg0-1_amd64.deb
Checksums-Sha256: 
 ab35dd7720dabbf381bba3d48d9a1a8721ad93eed24dcc0987857201308d863d 1955 
fomp_1.0.0~dfsg0-1.dsc
 3b6541b1be64d1d804452eb867acfb14dadcbcfb6e542e5ebd8897b11621e011 90888 
fomp_1.0.0~dfsg0.orig.tar.xz
 c1867c267982b9008290391a3d1b3a9dd226df1411aca0584eaf699403023b87 3023 
fomp_1.0.0~dfsg0-1.debian.tar.gz
 57aa331b5a43cbda591f0f16a79dce59b52569b8485c14bdaf21ae8b4cd436de 40934 
fomp_1.0.0~dfsg0-1_amd64.deb
Files: 
 417acaa410a18c7e9d77d0de2d795e5f 1955 sound optional fomp_1.0.0~dfsg0-1.dsc
 0cad915f9c316e1674213d29f976d382 90888 sound optional 
fomp_1.0.0~dfsg0.orig.tar.xz
 80fb8f20eb19a0d0b874ca2dfef88d4a 3023 sound optional 
fomp_1.0.0~dfsg0-1.debian.tar.gz
 c42de919d0e1713dbfa873d14cc161bf 40934 sound optional 
fomp_1.0.0~dfsg0-1_amd64.deb

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

iQIcBAEBAgAGBQJQl5toAAoJEOikiuUxHXZapeQQAKwySXqugcyqCCDYk+G70frd
R10hjIsM065Fv55QNfQIuTfzrEwKLOEbuCWPzSrDjEJc8gLg1afyuwwMdDYBPpri
AiErW3L5QD9BTb0QYPnXzJdyRNoyMS3zIF7Fe30n1XX5FV5LFpMaVfZGfbYE+0mQ
xBAP/rsvdxBUXQz+WuiBVdG8QU8jBbEBZ3ffwG4DpGHU+1ovv0uWWuSPKJwCnhEb
vuAXTEQ2+JM/p7scdDk1ndwiinZEFw1jHrB+e2ot8+cFutSwQg5ZVBLAe+4GEdz+
HtDv+XgwZihy6D1DAs3K3gIGzi09bASPQRkDB32sDXbLcMsCVqtvV3ZW4oGmlTPi
xA0nksrcBcwR6DWQm2jp12PeYlYYe7eEPN+5wTPOLXJyxOEB6pg/sVUfKCZjiiAm
LrboR3KENZ++QknLYYyUoZbaAye9IYK4yvksBFuG8JbA9oSTSiXopBoP3ECTYbIZ
YWaCDfMGyS2waL4Jji+JPgvi713H8DamdKZjvzK+n2x7Cm4KBQms9jrURwPIl554
oYClDnJn76om3R1cRy/cjSClFwKi4ZstmiRmXDRErvxtp4TvGtb+435gQXifrHlq
vvLpVqgxQUDs9y8jzh2lUyOLfr+FHl5wEmTppJUbf4XK5h9H+U7+DFj/RuXgfeTs
9vjZoeer5FCKMLcIv61o
=MB8p
-END PGP SIGNATURE-


-- 
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/e1tz6xd-xc...@franck.debian.org



Accepted concavity 0.1-2 (source amd64)

2012-11-15 Thread Laszlo Kajan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 10 Oct 2012 18:05:08 +0200
Source: concavity
Binary: concavity concavity-dbg
Architecture: source amd64
Version: 0.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Laszlo Kajan lka...@rostlab.org
Description: 
 concavity  - predictor of protein ligand binding sites from structure and cons
 concavity-dbg - predictor of protein ligand binding sites (debug)
Closes: 693017
Changes: 
 concavity (0.1-2) unstable; urgency=low
 .
   * Added cmd line argument for limiting cavity threshold search steps.
   * Use a wildcard to account for all architectures (Closes: #693017).
Checksums-Sha1: 
 2861de1f74ff5dd0b0ea12301c35e60bf4d0e1f3 2021 concavity_0.1-2.dsc
 cd927ef046169767b3c5d3b547dcf80429e0a2b4 10918 concavity_0.1-2.debian.tar.gz
 0e02ec83d9e1bb257dacf93427e57e2bfbc8b8c0 314588 concavity_0.1-2_amd64.deb
 6914df7b60500df5074aeff914e54eb16d40226e 930866 concavity-dbg_0.1-2_amd64.deb
Checksums-Sha256: 
 3ba0cd089d337b08d300651e8edd1097607b9c771675b789bc85d6a7243fd344 2021 
concavity_0.1-2.dsc
 91788777e598f8c93fb57f8fed5fefeee717f6fbe2335208d934cc07b9050235 10918 
concavity_0.1-2.debian.tar.gz
 1256c6466b2f508dedf37a0b2826bf065d673011dc86defe6f90e6c7a038fc67 314588 
concavity_0.1-2_amd64.deb
 a75cae4b53f0f922530e5d5e63f76c282d98bad8ba781ecc2a0fed0f856302aa 930866 
concavity-dbg_0.1-2_amd64.deb
Files: 
 81beb777d8d1a94e60faaad181d23265 2021 science extra concavity_0.1-2.dsc
 fdb84379b138c989ec481103039e0110 10918 science extra 
concavity_0.1-2.debian.tar.gz
 cd83cbb7a6303f54dd970b826724030e 314588 science extra concavity_0.1-2_amd64.deb
 8f78d59162d5e8e11a4b388ac68e1e9e 930866 debug extra 
concavity-dbg_0.1-2_amd64.deb

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

iQIcBAEBAgAGBQJQpVrvAAoJEJvS1kCaDFL6avEQALvwk1C6Fz1ThYLohanoBEod
Y4RfjUeIc49Dx6LjoeBG8uaDA4QTzsLh52LokX4GhDzqqOxGnMp3u5Rosv4be966
5qjLlHv8wQQzUZGDsXr0NID1Kra17qlY6obkkoSYdtdRBTRU7hUywb1Sr+GFUdwr
WD9R+XPfvenxUkObH16VfJ7RSB23zOqTwmC69Cd5sfOQhT+GrQVdxvSYPT+1ed/l
sebZNUv0bbJbZJRmCj5reledViLjcU94UUpRFHYHf/PaVjFCg1NqeT0+R36x0doV
iBrkaG6uzEbYXPByH0pZ+fiKmt5JrMHdEm0V5+f1vbvBP2n0UVdmJBrfrj04W1fX
VRXxjP+TkdIxIcnafN9QSkWN/YClJtuTAz2b6fI2f4A8qGeuaZt/S3AtmfqKASBh
znIJKHu/tWsPq8KNw1DPKyGjXJcOHtr4o3yOYhtsEnrc+aLgYkcOaZeKGaTGKaNG
6k0CmgfLbZ74Vai32O+7qQo0d9K5ymPRnSY3hWGOAWpdg5Op90MoxiHep/Bovh1L
2WeyOI+3hfi9Qla/nPcAH8iNQ8oL/9H9GPUPA+M5+ocs06y0AYKaFPIMYAynAGdv
6K2vlbe9hKamAHlPO3B5UYwWWEGZvAhZpIRhd/ONJa5LLiGPJMCGYH1gXHPzEiEz
lY3/J8OykVu1KGzoQNWp
=RVgd
-END PGP SIGNATURE-


-- 
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/e1tz72y-0006o6...@franck.debian.org



Accepted libpostproc 6:0.git20120821-2 (source amd64)

2012-11-15 Thread Reinhard Tartler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 22:38:40 CET
Source: libpostproc
Binary: libpostproc-dev libpostproc52
Architecture: source amd64
Version: 6:0.git20120821-2
Distribution: experimental
Urgency: low
Maintainer: Reinhard Tartler siret...@debian.org
Changed-By: Reinhard Tartler siret...@tauware.de
Description:
 libpostproc-dev - FFmpeg derived postprocessing library - development headers
 libpostproc52 - FFmpeg derived postprocessing library
Changes:
 libpostproc (6:0.git20120821-2) experimental; urgency=low
 .
   * Add lintian override. This package does not duplicate, but rather
 externalizes it.
Checksums-Sha256: 
 73dab4cc56a4c8f8e46215504bacd439f0b03521e0f1aa83b12ce3682193e667 1550 
libpostproc_0.git20120821-2.dsc
 36ee51275ca80ff5cdef13e1b133b6066107884679a56a5b6c41749f37ffddc3 2524 
libpostproc_0.git20120821-2.debian.tar.gz
 4f12763b81779ac7d2ef8f479c8139578926ac6603716be992750e24a893cdf8 42238 
libpostproc-dev_0.git20120821-2_amd64.deb
 3b59945e198a58654e0d215882e3f2299d051af98722f204c3646d76e293007b 41720 
libpostproc52_0.git20120821-2_amd64.deb
 73e59fa1946ad1a425e9cd09de64c5bb8fb1d80eefc4fad86b95cf0e772d4a76 82197 
libpostproc_0.git20120821.orig.tar.gz
Checksums-Sha1: 
 336056c77e17f630ba23309188e8c161b1e2904a 1550 libpostproc_0.git20120821-2.dsc
 df8bcc8510371a3bba99f2550fb249f27ca7c166 2524 
libpostproc_0.git20120821-2.debian.tar.gz
 510396d6ad983ad8259235a2c9a0765279c801cd 42238 
libpostproc-dev_0.git20120821-2_amd64.deb
 905071b70199d9f919100f0dd497baa5391b4c28 41720 
libpostproc52_0.git20120821-2_amd64.deb
 5bf91b64ccc0a903d6dc5dc4beed514ee5618c50 82197 
libpostproc_0.git20120821.orig.tar.gz
Files: 
 11a56de4c4d773673568b484d7f5749f 1550 libs optional 
libpostproc_0.git20120821-2.dsc
 5ad1494a6ba3f13e68ac38ff7fee8634 2524 libs optional 
libpostproc_0.git20120821-2.debian.tar.gz
 4e9f9b6b4cafe733a9d85390fb5dd5d0 42238 libdevel optional 
libpostproc-dev_0.git20120821-2_amd64.deb
 df81e9474fa1653463f4e7a28d34dcd8 41720 libs optional 
libpostproc52_0.git20120821-2_amd64.deb
 d30ea2cc49286caaede1b566fe81bb92 82197 libs optional 
libpostproc_0.git20120821.orig.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (GNU/Linux)
Comment: Debian Powered!

iEYEARECAAYFAlClYPUACgkQmAg1RJRTSKSa/gCaAhEiPCX6zMJdnuRNDofsu9SS
O6wAn36FOTproKMvOXxC9xgaGPCc7sQU
=2bwl
-END PGP SIGNATURE-


-- 
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/e1tz7ij-0001du...@franck.debian.org



Accepted libav 6:9~beta2-3 (source amd64 all)

2012-11-15 Thread Reinhard Tartler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 21:29:50 +0100
Source: libav
Binary: libav-tools libav-dbg libav-doc libavutil52 libavcodec54 libavdevice53 
libavformat54 libavfilter3 libswscale2 libavutil-dev libavcodec-dev 
libavdevice-dev libavformat-dev libavfilter-dev libswscale-dev 
libavresample-dev libavresample1 libavutil-extra-52 libavcodec-extra-54 
libavdevice-extra-53 libavfilter-extra-3 libavformat-extra-54 libswscale-extra-2
Architecture: source amd64 all
Version: 6:9~beta2-3
Distribution: experimental
Urgency: low
Maintainer: Reinhard Tartler siret...@debian.org
Changed-By: Reinhard Tartler siret...@tauware.de
Description: 
 libav-dbg  - Debug symbols for Libav related packages
 libav-doc  - Documentation of the Libav API
 libav-tools - Multimedia player, server, encoder and transcoder
 libavcodec-dev - Development files for libavcodec
 libavcodec-extra-54 - Libav codec library (additional codecs)
 libavcodec54 - Libav codec library
 libavdevice-dev - Development files for libavdevice
 libavdevice-extra-53 - Libav device handling library (transitional package)
 libavdevice53 - Libav device handling library
 libavfilter-dev - Development files for libavfilter
 libavfilter-extra-3 - Libav filter library (transitional package)
 libavfilter3 - Libav video filtering library
 libavformat-dev - Development files for libavformat
 libavformat-extra-54 - Libav file format library (transitional package)
 libavformat54 - Libav file format library
 libavresample-dev - Development files for libavresample
 libavresample1 - Libav audo resampling library
 libavutil-dev - Development files for libavutil
 libavutil-extra-52 - Libav utility library (transitional package)
 libavutil52 - Libav utility library
 libswscale-dev - Development files for libswscale
 libswscale-extra-2 - Libav video software scaling library (transitional 
package)
 libswscale2 - Libav video scaling library
Closes: 693040 693327
Changes: 
 libav (6:9~beta2-3) experimental; urgency=low
 .
   * Include all post 9beta2 patches
 - Fixes linking with libavfilter/libavutil, Closes: #693040
   * libavresample1: Unbreak partial updates by adding Replaces
 relationship with libavresample0, Closes: #693327
   * Fix installation of doxygen HTML pages.
   * add lintian override for libavcodec-extra-54
Checksums-Sha1: 
 46a4ab8af9579b40436c72e59142ee74fa1197d4 3457 libav_9~beta2-3.dsc
 2a1fed5ccebd4d2485b0a742f4193109782f3cd2 351272 libav_9~beta2-3.debian.tar.gz
 2190ad619cb4ec64e20aed1a865b3d492f4fb8cd 3385966 
libav-tools_9~beta2-3_amd64.deb
 74a955549b3a1f93a890fefac9577990db83b999 33401830 libav-dbg_9~beta2-3_amd64.deb
 56e1725a0ae197a92fe5479aaff87688646a706d 13940344 libav-doc_9~beta2-3_all.deb
 23280391ff4dd7b2b9b6609c2c06c70e6d65ee80 98148 libavutil52_9~beta2-3_amd64.deb
 07c0b4a657314ba0441dbbcce81254f58f45ead0 2463450 
libavcodec54_9~beta2-3_amd64.deb
 9c7be0226234f24419a6aaa5b7330680dcd37e26 66722 
libavdevice53_9~beta2-3_amd64.deb
 84959682fbfd354d92c6594adb48d932271dbbad 505372 
libavformat54_9~beta2-3_amd64.deb
 6d5b0f92461d01364c4aad563e8354999737ec6d 132818 
libavfilter3_9~beta2-3_amd64.deb
 af046a8af8b933f9ccaad62ba0045aea8fac24b6 118882 libswscale2_9~beta2-3_amd64.deb
 65100036badaffb8f6131cbfad91c94d6f368453 143434 
libavutil-dev_9~beta2-3_amd64.deb
 b44b35664e58c2a9783ae6176b09024874e9b0b7 2721352 
libavcodec-dev_9~beta2-3_amd64.deb
 9c192ea3b950d98a5f6c6f1604f6f704f4f899b6 68788 
libavdevice-dev_9~beta2-3_amd64.deb
 53aa78fea66b2b9990a9d70a8b17b2791e88abb5 594750 
libavformat-dev_9~beta2-3_amd64.deb
 1a0ebfe8bfc85055f33cb4a93a1ec9c4c6f4ec0d 156506 
libavfilter-dev_9~beta2-3_amd64.deb
 da951190427f868b658a0a9e73348e15a67a91d7 130272 
libswscale-dev_9~beta2-3_amd64.deb
 4bfbe45128dfd06b5388e326736afd33ebda7063 78418 
libavresample-dev_9~beta2-3_amd64.deb
 b93c5bcac084da95780c950f0613d34760ed06d6 70872 
libavresample1_9~beta2-3_amd64.deb
 2539ae1753530a75352c387ec2efbb99c7c72137 41670 
libavutil-extra-52_9~beta2-3_all.deb
 e9978ef6e9d59ff398a835b9c2089ba902e9bd92 2467084 
libavcodec-extra-54_9~beta2-3_amd64.deb
 dd4eaaf43c24ff85bfdbeaa0fc8bbcc9b31761fa 41678 
libavdevice-extra-53_9~beta2-3_all.deb
 538573284b52cd957826a7cddeb840dc0043412e 41668 
libavfilter-extra-3_9~beta2-3_all.deb
 5ec84abe4db62e90a0e642bfd5fac924cc84c3f7 41672 
libavformat-extra-54_9~beta2-3_all.deb
 6a04eaa7d42c9cbca6bf3e23ce5506da4e2389a8 41678 
libswscale-extra-2_9~beta2-3_all.deb
Checksums-Sha256: 
 e470cdb1c4706c58cda344255c17aa84ff68f9717b4af6440f9488d0a2090110 3457 
libav_9~beta2-3.dsc
 27a487d4627653371ad95748d0d0f3150a947b02aab7f3ad1c6560e58c8ad03e 351272 
libav_9~beta2-3.debian.tar.gz
 23787181c7fe13964863810b4225ff0f6016eddd5b4a5bd70ca361a1085ac999 3385966 
libav-tools_9~beta2-3_amd64.deb
 a51d66d379c328616f042485b0ea9aaa010e3bbdea54f80a9f4418a8d8543558 33401830 
libav-dbg_9~beta2-3_amd64.deb
 3f9d1a531fbfbabb2ce35f142b48e2d4f1c36f5dbe7aff658b83618a853aca9a 13940344 
libav-doc_9~beta2-3_all.deb
 

Accepted moodle 2.2.6.dfsg-1 (source all)

2012-11-15 Thread Tomasz Muras
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 21:50:13 +0100
Source: moodle
Binary: moodle
Architecture: source all
Version: 2.2.6.dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Moodle Packaging Team 
pkg-moodle-maintain...@lists.alioth.debian.org
Changed-By: Tomasz Muras nexor1...@gmail.com
Description: 
 moodle - course management system for online learning
Changes: 
 moodle (2.2.6.dfsg-1) unstable; urgency=low
 .
   * New upstream version: 2.2.6 (Build: 20121112)
Checksums-Sha1: 
 114b51e94eebb45a9ef0af8e8b3ad9e53468912a 1690 moodle_2.2.6.dfsg-1.dsc
 edce694b593cb46efa35d19d0a5790d6a10947d5 23494486 moodle_2.2.6.dfsg.orig.tar.gz
 50a18d64d46b7173097c9cc79c89a3285f217934 24228 
moodle_2.2.6.dfsg-1.debian.tar.gz
 a539e173eacfcbfedd727118d1c4ceed3eb9 16499310 moodle_2.2.6.dfsg-1_all.deb
Checksums-Sha256: 
 5fa3b157289c8b44cf43a925c4fbee76763c052043548dfa1284e52ffbe3 1690 
moodle_2.2.6.dfsg-1.dsc
 5b44fdd47e848522404ee54c95153773a65191e74107526604814f78de757c9d 23494486 
moodle_2.2.6.dfsg.orig.tar.gz
 a67de4a40c71c5d037d39667f3181a542e94b853e834dffec14141850ff99e53 24228 
moodle_2.2.6.dfsg-1.debian.tar.gz
 6887642c0671d0ab97c4660eaacf21b66b4c2312ce7a62b2bef10893f6bfaa37 16499310 
moodle_2.2.6.dfsg-1_all.deb
Files: 
 4c74b2f84c3598168770c2733bd8c142 1690 web optional moodle_2.2.6.dfsg-1.dsc
 4278fe16b4c6eb6957d58d62c53114d3 23494486 web optional 
moodle_2.2.6.dfsg.orig.tar.gz
 35e3c501f78eed90b41d68d6b9a8b08e 24228 web optional 
moodle_2.2.6.dfsg-1.debian.tar.gz
 ba3aef57ee7030ba6fb7645460803093 16499310 web optional 
moodle_2.2.6.dfsg-1_all.deb

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

iQEcBAEBAgAGBQJQpVdCAAoJEIfMiettfca2rQEH+wSDEctVVp18JIxT1AxOeuV4
X9DKNgImnsrLUEeb9srSbJuKuCcPp4Cu4apleKEqVaxW7qo1NV9u8wn2UII9Yt9n
T0bUQ0gwiGnQY7Mt+t0aG5XmcbraQ9scVdZB2NbPmAFLXuiJSxshRJNFZf/45NsZ
MHCS/yaFeADIY4geLuKGEXNhZzTEu5BLyT/W5k6Yvp5xq9zjb6ftBNocaZ8lXwBK
VI8Pc0q6djCoWcbTRuL3zO1d5xeCvCcRJ5SXYT+u4mBKSPcp0KZexfSBcjXH0Ptn
qK3FJ4cXNjDChBWig/uf5iYAhnK7hX4He2JCWinOTI/4gTTi3DfOavimNk5paxE=
=voss
-END PGP SIGNATURE-


-- 
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/e1tz7xq-0005h8...@franck.debian.org



Accepted haskell-dav 0.2-1 (source all i386)

2012-11-15 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 Nov 2012 17:55:16 -0400
Source: haskell-dav
Binary: hdav libghc-dav-dev libghc-dav-prof libghc-dav-doc
Architecture: source all i386
Version: 0.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joey Hess jo...@debian.org
Description: 
 hdav   - command-line WebDAV client
 libghc-dav-dev - RFC 4918 WebDAV support
 libghc-dav-doc - RFC 4918 WebDAV support; documentation
 libghc-dav-prof - RFC 4918 WebDAV support; profiling libraries
Changes: 
 haskell-dav (0.2-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 4213f5f225cd6dc1ae54426310e0d51eef1150d6 3145 haskell-dav_0.2-1.dsc
 498fd14bb4e9c0974af7d55ccdc4c582b1cae2fd 18009 haskell-dav_0.2.orig.tar.gz
 88243f270baf8375e6cde69ec455d66e4ca7ab13 4187 haskell-dav_0.2-1.debian.tar.gz
 7760745fb7e14e1a3bc15005ed5c90052d876ec4 38318 libghc-dav-doc_0.2-1_all.deb
 f34d3665d79f9f3250258b6099868b6e57b4a194 2552312 hdav_0.2-1_i386.deb
 20c737c0ff9ab13cc4270bba232b092fe41e0327 90256 libghc-dav-dev_0.2-1_i386.deb
 3f48a3dd17e5facfe96313bdc6dbcd67494ae983 84950 libghc-dav-prof_0.2-1_i386.deb
Checksums-Sha256: 
 b275bb67e8d15983b22d61459488af68ffd82d371f13ee6092cfd48723b3bd65 3145 
haskell-dav_0.2-1.dsc
 84f75952de29a5ee4d42a1eee69274280887181f209867d7f40541a2a2382b3d 18009 
haskell-dav_0.2.orig.tar.gz
 b7be20a24eb0484a254032debba6e719c1e822b7cc2167027e45881fe3893380 4187 
haskell-dav_0.2-1.debian.tar.gz
 441e0c74de8ea733204781ed18db0c782e6de1c15614dc218550b1c7097d04f9 38318 
libghc-dav-doc_0.2-1_all.deb
 184ffb0fa36b85d9f7e295b102749cd0cfb515b398acf54f39122ed5aaf55029 2552312 
hdav_0.2-1_i386.deb
 62eb62cd25b79a906a05600f7dee570d88742e0f4b7e542e9fb631e504925f2d 90256 
libghc-dav-dev_0.2-1_i386.deb
 15306804cbcc35000fb131d8305a28a0e1e3bcf852dc042a31ceeafb3e8e6551 84950 
libghc-dav-prof_0.2-1_i386.deb
Files: 
 870d9ec58d8ffde703c564fc66c4f985 3145 haskell extra haskell-dav_0.2-1.dsc
 be98801218312597d129c1e6bc568371 18009 haskell extra 
haskell-dav_0.2.orig.tar.gz
 3ef7c5d2430e3293b104d87c1c1d0681 4187 haskell extra 
haskell-dav_0.2-1.debian.tar.gz
 27ab782704563d88aaa293e701346abb 38318 doc extra libghc-dav-doc_0.2-1_all.deb
 db112ea2a15d1039eb08fdbad5fddef2 2552312 web extra hdav_0.2-1_i386.deb
 8d8f0ffa5faa796c822b84525afd35b5 90256 haskell extra 
libghc-dav-dev_0.2-1_i386.deb
 550df9afeebd3bb5cc2ae1efd99d4856 84950 haskell extra 
libghc-dav-prof_0.2-1_i386.deb

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

iQIVAwUBUKVnuskQ2SIlEuPHAQjWtBAAr5CFm4wc3Quy3m2c357hajP9ySgukT6a
vlgjrHo+KNH3Q0DVrISjywNLO9uHLZJa/UN07uPUlJ0l15I9ymTx/AW7oqMKhhmm
0Rdhub5/d5WOd6yi/8T9kftVhhKNECUjYtsptYHxfFV565RHLbpiqUadDgRD5rVX
4VI1DA6Wlh90LQsM4rqF3AztOCi2F11SDMM91GM7tV3Au4r2p/O9s7vWvgnLmeW+
H09bF2SsgmgH0U+n2Pt4y6BH4zsSA20fWZbIZhpAoxKSoIqvTGiKivcdQbt+3V/3
e5hNjc+zZPnvZVdyggGcYrv7j2tb/kpmyI9ezSuN6DsZTpp/r2ILzP811c6T8A/4
RV8qHEWLJtZkQh6hm937BE3ZTt9/aIR80sWPTROvN2PpU2mOz5u0H2+FxdUlae/h
d5cAtNhoAnSXrt6zsFaWSlXMW/FJ94Gby5mKYcdw2RgUFw8VS4WucjTCMUtQ+uQ6
utLU5JzQ1267f8E9EG1wlcvFnCw9mOxsnaKowqw69p/Jp4FmWpQIY6ta+KIL3gvg
Ql6ihrvjdlJO9L1lwGreq4lGW678bZhhDDymE8rJOXFWbtSfR4dY3qJDZ4vWylS4
xJuRiWjZvduelB9aDBJHbuyUZxDRa/3msUw+EHKTl/k4I7XXcIWDTdZMH1WWli0A
XBLZMW63b7o=
=qonX
-END PGP SIGNATURE-


-- 
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/e1tz7z3-0005qu...@franck.debian.org



Accepted libltc 1.0.3-1 (source amd64 all)

2012-11-15 Thread Jaromír Mikeš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 22:21:53 +0100
Source: libltc
Binary: libltc-dev libltc-doc libltc8
Architecture: source amd64 all
Version: 1.0.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description: 
 libltc-dev - Development files for libltc
 libltc-doc - Documentation for libltc
 libltc8- linear timecode library
Changes: 
 libltc (1.0.3-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 c9de47fc3d174701fd92a9bad55a67d1516e9d50 2097 libltc_1.0.3-1.dsc
 f37004a78638e24abcdafc909b9bbefbea7c6774 406151 libltc_1.0.3.orig.tar.gz
 36efab41bfa714982884271533abc04d27359378 2102 libltc_1.0.3-1.debian.tar.gz
 f7a3a8eb2df0872cb5ace24d228ee294744c135f 10912 libltc-dev_1.0.3-1_amd64.deb
 711d14dceeabff3f39de43dd90f1c615a60c49e5 11192 libltc-doc_1.0.3-1_all.deb
 cf49a8f17d57ac15c9fcfda0f189b149c5995656 13138 libltc8_1.0.3-1_amd64.deb
Checksums-Sha256: 
 57a9c17a8607d91d0f9d14bca0ed6ec041860712c269d8bef272120cc1cffdf7 2097 
libltc_1.0.3-1.dsc
 5a41314dda5262e122530eef50ecf443faab98a230de654f63906ae79aad9334 406151 
libltc_1.0.3.orig.tar.gz
 588b5401ec0cc00560bfca2d4412f586b6b0ade948589c57269801d3d28efd7b 2102 
libltc_1.0.3-1.debian.tar.gz
 213ac1282dbc38973a7f911d22311fa1b0a72f49ed8ef85041f7ce9a36cfbc63 10912 
libltc-dev_1.0.3-1_amd64.deb
 d248554204fa379e21c90ef0c98f511f71d73423344f7c22890a4d42013ca89d 11192 
libltc-doc_1.0.3-1_all.deb
 7bb9cc1ed10cabe030b0267e530ae96e5fcde648c4c9a6f068aea3e217a1d8f8 13138 
libltc8_1.0.3-1_amd64.deb
Files: 
 59f5951858b9c2a145a877cd7e1c49ae 2097 libs optional libltc_1.0.3-1.dsc
 072cb69b0183c41679776bfce00c2a5e 406151 libs optional libltc_1.0.3.orig.tar.gz
 e08514179418f42b12cfabad7a4c05fd 2102 libs optional 
libltc_1.0.3-1.debian.tar.gz
 fb73ada6bdafc589ba30707db49e16b6 10912 libdevel optional 
libltc-dev_1.0.3-1_amd64.deb
 56c24a6162db27bd51318327cbf050a4 11192 doc optional libltc-doc_1.0.3-1_all.deb
 e21cf579774d5f38a14ecff87bbb4773 13138 libs optional libltc8_1.0.3-1_amd64.deb

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

iQIcBAEBAgAGBQJQpW4nAAoJEFsBlFXiuE+lB2cQALYROd4o4dLbTi3WyNiDuPvQ
d5mZ3xuC/miFwSlp7dBRomM/fgx8FaVXYyokCKz8EVqrOBxiS52tOaUHHnnBSYpJ
hmgNyt1+LWrCfjVSqJyKH6rJIxkdoehfk4bsNnDzw4VS6mnpy+P6C4m05VoqNcPk
X5uKm1MtTwy9AZPyX6YkLZswi0QdlQXv55m5KKnItEaM1I3gPazGqQ8KayfeaWHQ
Up+crIFag8R6AsfEO8FWvv86Bbul+Ahb8bZouMe+umLiHGM3t6ET8og3NPbjle9V
y4ih7RGaE8+8WeeJdTWyy6AnF42ERhQYCa4D2+Zhi+I3EnV+TyPjrd+wgzJPowxS
Cr876ooaT9We+zLXDZjoZHlV5/IXfbvoNq4pu8yOeJyQdz5SyIbLGabMIwPRwybb
KHLNduPvh0Mk5jQhXuCg3uNVTQjW2Dx71BJVe0M5uVMKJfE8HrrFZnCrzpdfYefL
Sn77Kfdwd0nYAJbYZ8Mosrxn7XAg6LZBHQqjNXOpbY6mA73uwe4e5mPwF0Nl0dnj
wjzEU3bXvdqYnjFtG2aen6EIaLRp2t/JerdV5dRXouyLYyXwOozizf4MbIVNiYL2
Y82KjA37BehivI+rDWFe5jdLiRqWzWaY0TT5hN+YpGk/VbIPE8a7kJqxh8Kt2F2w
a5HJ/m/NzN59FRA9BdJH
=ZvHy
-END PGP SIGNATURE-


-- 
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/e1tz8dx-0001yr...@franck.debian.org



Accepted libimage-exiftool-perl 9.04-1 (source all)

2012-11-15 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 16 Nov 2012 00:32:41 +0100
Source: libimage-exiftool-perl
Binary: libimage-exiftool-perl
Architecture: source all
Version: 9.04-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libimage-exiftool-perl - library and program to read and write meta 
information in multime
Closes: 617858 656858
Changes: 
 libimage-exiftool-perl (9.04-1) unstable; urgency=low
 .
   * Take over for the Debian Perl Group with maintainer's approval
 (https://lists.debian.org/debian-perl/2012/11/msg00040.html)
   * debian/control: Added: Vcs-Git field (source stanza); Vcs-Browser
 field (source stanza). Changed: Maintainer set to Debian Perl Group
 pkg-perl-maintain...@lists.alioth.debian.org (was: Mari Wang
 mari...@ifi.uio.no); Mari Wang mari...@ifi.uio.no moved to
 Uploaders.
   * debian/watch: use dist-based URL.
 .
   * Switch to 3.0 (quilt) source format.
   * debian/copyright: update to Copyright-Format 1.0.
   * Update years of upstream copyright.
   * Bump debhelper compatibility level to 8.
   * debian/control:
 - remove duplicate section
 - remove Recommends that is satified in perl core
 - lowercase short description
 - add Provides: exiftool (Closes: #617858)
 - add /me to Uploaders
   * Bump Standards-Version to 3.9.4 (no changes).
 .
   * Imported Upstream version 9.04. (Closes: #656858)
   * Install new exif2iptc.args file.
   * Add Recommends on libarchive-zip-perl.
   * Add a patch to fix some minor spelling errors in the documentation.
   * debian/copyright: add additional copyright holders.
Checksums-Sha1: 
 1e7ddf1623351329b450fc7e85e6a44bb28d9266 2155 libimage-exiftool-perl_9.04-1.dsc
 5788da1e21d8f2430f14f55711e4e492e0211297 3520448 
libimage-exiftool-perl_9.04.orig.tar.gz
 145f013a069d06df008eebf8bef1489d69883cab 5510 
libimage-exiftool-perl_9.04-1.debian.tar.gz
 062a28c47367d1644d7968d882ae19fc7e1b12ca 2904514 
libimage-exiftool-perl_9.04-1_all.deb
Checksums-Sha256: 
 078561e373a436acf585be0eff836d5fe7bf9a144b47b1488a29efd0a3b0f43c 2155 
libimage-exiftool-perl_9.04-1.dsc
 439fc77125456d899dcdbb64eeb69d88c0645e6c59f67a3df289beb6f053df31 3520448 
libimage-exiftool-perl_9.04.orig.tar.gz
 be97e44e09d4d8fb4b21105ddbde52a9cc17f08e0f400070c2c7d4a5e549110f 5510 
libimage-exiftool-perl_9.04-1.debian.tar.gz
 24c440aaef441447978bea23511b1763c70309fbc0b6ffe8dae92072b5b296ee 2904514 
libimage-exiftool-perl_9.04-1_all.deb
Files: 
 a9803b5b956f04d3ed2af1486de884e0 2155 perl optional 
libimage-exiftool-perl_9.04-1.dsc
 7f62eae65b6ca1ac140268df98de192b 3520448 perl optional 
libimage-exiftool-perl_9.04.orig.tar.gz
 aaf1e1e3997928e8e76cd773c512b2d6 5510 perl optional 
libimage-exiftool-perl_9.04-1.debian.tar.gz
 deee4b5ba40872e624bbf123728d7f12 2904514 perl optional 
libimage-exiftool-perl_9.04-1_all.deb

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

iQIcBAEBCAAGBQJQpXzwAAoJELs6aAGGSaoGWmoP+QEe73S2G9itP7rBPrfcsOHE
Booj23K9T4b1d3l2g4ByiySU9JUIRMzzk3UfYlSK2HrtYn7oVTf6AUc6DEAQwcxw
zc3X05xrftYEM+k1jfCs3bY84cK7F4ozd5uNu9wpxZ4OIdbhWKJMM8UAOcNHLPqE
1HTErX0neuedJPrtkTT/v3FqIe4uWhSV4TBp3CdoXGK4VXeV2nm/BFOxeln0LSb9
6LHrtLxKE9a5RvBcz2kco9CiOID62xDOZEOBtWmo0O+5cGpxSkUvxO8zJas9CQJd
D8yyIdmeRc1ayEkqYmP26RDtuHguIv2PZAd7HxhUFszRzkH3liyvGeZ6oylkGEvn
b8VGfm2F6Itq0P5a9TmmoFyI8VSOMCiX64Ter/2Qy21R/aJTGAeTG4eju/cdqq2b
83RGQYI6BQGWHKUCp15FxKyrtlqCqcvu75+0Y8x3wlgs0RVB7LRVrmImSIdkMoe6
Xh2dzmBferwYi/L+BhSgCJ3cq2P/AK8Qgl509XRWIJJsOYTu3UF1YvF7xe3SIede
D69MjYWjDWcKNZHaZqLp21CQ0OcWK90wPx/3O9tiN1ipbRSLNPdUEfVElzcJfOtX
WUaD8TUBLfTTFIz1xf/7THMeRr1iZdjZIAz61r5c57WJIC00a7deu8qaC5hTYuwK
lOO/T0xownh7/AnnIxAh
=Vpzr
-END PGP SIGNATURE-


-- 
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/e1tz99q-0004tn...@franck.debian.org



Accepted libphp-jpgraph 1.5.2-12.1 (source all)

2012-11-15 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 13 Nov 2012 19:29:03 -0400
Source: libphp-jpgraph
Binary: libphp-jpgraph libphp-jpgraph-examples
Architecture: source all
Version: 1.5.2-12.1
Distribution: unstable
Urgency: low
Maintainer: Christian Bayle ba...@debian.org
Changed-By: David Prévot taf...@debian.org
Description: 
 libphp-jpgraph - Object oriented graph library for php5
 libphp-jpgraph-examples - Object oriented graph library for php5 (examples)
Closes: 691933
Changes: 
 libphp-jpgraph (1.5.2-12.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/control:
 - Drop ttf-mscorefonts-installer from dependencies. (Closes: #691933)
 - Depends on fonts-liberation instead of dummy ttf-liberation
   transitional package.
   * src/jpgraph_dir.php: adjust to fonts-liberation path.
Checksums-Sha1: 
 3e4b2b8ee4544f5b6e7ad73a5df8700bc5c8ace7 1768 libphp-jpgraph_1.5.2-12.1.dsc
 bbd0d124eb5e678b86ff72144ccaec459b7b5e3f 8881 libphp-jpgraph_1.5.2-12.1.diff.gz
 1e2133461487407d800d97afdb3d8a6304ae7eba 92696 
libphp-jpgraph_1.5.2-12.1_all.deb
 c126425bfb66a56fffac040b840fd5eae8749169 98140 
libphp-jpgraph-examples_1.5.2-12.1_all.deb
Checksums-Sha256: 
 53672583beeb4c94f4152d4878f96d196283b596c6cb950de70cc15d8579c745 1768 
libphp-jpgraph_1.5.2-12.1.dsc
 32570ef0cd63bb51988301bca676b93039b5aab6499259a0b76406c0e0b6ec94 8881 
libphp-jpgraph_1.5.2-12.1.diff.gz
 93602c1d464aafd0f9fc34e4e855c0acd3b6e3bb49d9fb25be6701fba5422f46 92696 
libphp-jpgraph_1.5.2-12.1_all.deb
 df99c8e2436d8eaadde40bbd1e055c0c85d207c3cea59cb45caa8a8757a09aab 98140 
libphp-jpgraph-examples_1.5.2-12.1_all.deb
Files: 
 a01db7b18fcf05683fe2794f2f1b0f57 1768 php optional 
libphp-jpgraph_1.5.2-12.1.dsc
 142982ab9cf07b453e0ecc7598eea578 8881 php optional 
libphp-jpgraph_1.5.2-12.1.diff.gz
 15f08c83dcdb9fcc18a73af7e58e7b2e 92696 php optional 
libphp-jpgraph_1.5.2-12.1_all.deb
 1a64179fedd04e37bd2b60bacd097e6e 98140 php optional 
libphp-jpgraph-examples_1.5.2-12.1_all.deb

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

iQIcBAEBCAAGBQJQotj7AAoJELgqIXr9/gnylwIP/0c3YhXsJQMKaqRrQYSs57/M
MQCOOfH6aXYudq0YKe2SFsz7OKocUsw5hvcIYimyy7jcdzI7kCLHd25tnhhq7yGd
V5yUY/718V7cEk1Fg9bxFyVRZOgCynfkPTAtop8/6HeiPmrym20V9IoHQEr/jciZ
ZiUkV3Rm8bmgQVUSgoqHgIGq4rjsROUm2nSnMh262tvL4JDJUP3MR48jkjCyabTO
lY2bUiPiokRVF1gv3JMV5fc0cqEVqsrjAU89ZySpj/e9evblVcq0E9/mp0HAU4cc
7jo8agDE96z6BvSX5MFjmZwDbglOkgc7gltBw0/O33hAg1jWLDq98yP5WrnY5NiH
xX1TlIxfY8TzyLURXaHp4ir61A1UHfiG3QnsflspEO7XPq0q2PH0RiAdrwFNTqHL
sPzzNOUse22NgpkBhnKifhDiPAsIDtMCFdk75jjbvlFUndDVpdf6fWgA5RJkMJfI
FQYS6Kv4gahtE+7bOL7Umcrrfy1L5HvmY4G84FTpQVcEiWYiA02IZ0rCt3nJHWe1
MlOEiBIqB6NtcRuIhmpam0GeQjVBfXA04NkXgtBwi9w0tYvvRYL0buymh96JzY6B
TXVcG93AP36cq5Vlgxg1RSfPEjc9EFYe2NbN6FppZnAzCAdwJj8f7nr1QROOXdUu
SqTwkf8V84jmtr1oL3Ex
=cb3Y
-END PGP SIGNATURE-


-- 
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/e1tz9oc-00088j...@franck.debian.org



Accepted exaile 3.3.1-1 (source all)

2012-11-15 Thread Vincent Cheng
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 Nov 2012 16:01:08 -0800
Source: exaile
Binary: exaile exaile-plugin-contextinfo exaile-plugin-ipod 
exaile-plugin-moodbar
Architecture: source all
Version: 3.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Vincent Cheng vincentc1...@gmail.com
Changed-By: Vincent Cheng vincentc1...@gmail.com
Description: 
 exaile - flexible, full-featured audio player
 exaile-plugin-contextinfo - Exaile plugin for contextual information
 exaile-plugin-ipod - Exaile plugin for iPod support
 exaile-plugin-moodbar - Exaile plugin for moodbar
Changes: 
 exaile (3.3.1-1) unstable; urgency=low
 .
   * New upstream release.
   * Remove unused lintian overrides.
Checksums-Sha1: 
 e9c5c9aaaec4e2a7773f86cfcbde09d736a4d6b2 2107 exaile_3.3.1-1.dsc
 d989ead5a81ae110b59aa42270576f46d8bb08d2 2799284 exaile_3.3.1.orig.tar.gz
 0010db3dba038d50ec0f5aaa490daead299abf58 9759 exaile_3.3.1-1.debian.tar.gz
 547462922d1df83e46bd1ebbfeba5850b49e 1589990 exaile_3.3.1-1_all.deb
 dda260f54d97f053cd99e0b299ee24cccbdf06b4 58476 
exaile-plugin-contextinfo_3.3.1-1_all.deb
 895cfe4064038d50e382eeb0db7da53ee4476d3b 11078 
exaile-plugin-ipod_3.3.1-1_all.deb
 a53b44e8b121be49cc9abe158e681229cba92191 15556 
exaile-plugin-moodbar_3.3.1-1_all.deb
Checksums-Sha256: 
 120eef783ca950ebf576f5837d6384c2f1d2ca906551d06a6b66d0c56e6d8b7a 2107 
exaile_3.3.1-1.dsc
 263b819bc00d37c616c709090034d02eefb7206c87c1a04bf9f3b4b66e991c24 2799284 
exaile_3.3.1.orig.tar.gz
 1215a8f5dd5e14adf478c8c178321f65ebf82b59190cab8e2c027b4a96dcb3ba 9759 
exaile_3.3.1-1.debian.tar.gz
 7b9d2a27f088ee9f46fbb31addb1b342e44d3eb4abbfa621cac979cb4207eee8 1589990 
exaile_3.3.1-1_all.deb
 c4753f5aeba87d58ec14a8774e3070057f31b8f219b391cf14c646cd79fcfc20 58476 
exaile-plugin-contextinfo_3.3.1-1_all.deb
 ab71bac291538d0ccc85581d533a961ce7609f726e0a11f93bfdf33b05889620 11078 
exaile-plugin-ipod_3.3.1-1_all.deb
 011399ddd9bb2345034ed566fefe5db3dc91f424cf7fb9f552d3602b6d9f95cd 15556 
exaile-plugin-moodbar_3.3.1-1_all.deb
Files: 
 52d522c37ebe2ef9cced8ce715817632 2107 sound optional exaile_3.3.1-1.dsc
 cd7ea267a9d53cdd5231912f19ae03f8 2799284 sound optional 
exaile_3.3.1.orig.tar.gz
 a75ee3909ebf348ea5265e4fc8a81e72 9759 sound optional 
exaile_3.3.1-1.debian.tar.gz
 436f20a16c04daad2a8fa9175ffe4c19 1589990 sound optional exaile_3.3.1-1_all.deb
 890f0fa52ca9a50efd5bc95d4bd76316 58476 sound optional 
exaile-plugin-contextinfo_3.3.1-1_all.deb
 6b88f1716e9ace6259c20e0cdeed3de9 11078 sound optional 
exaile-plugin-ipod_3.3.1-1_all.deb
 df7cb7d8e7abedc91dafab5d6d0ddb91 15556 sound optional 
exaile-plugin-moodbar_3.3.1-1_all.deb

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

iQIcBAEBCAAGBQJQpYa/AAoJEI7tzBuqHzL/R5IP/3sbgAMbPBgU8ts4BOI9bm+h
ti42dVbTzrCUaEIJps9B2H5gSiyt0QMKgXh4cZ9qpMUso+nok4sF9zC4R1VszCy+
VT2dRDGggCP21D1iL8fG3/v0MvxIAEfuf1TzDHvSknHsVIn6sxuzD9OY9w5Xe02/
78hsl+JTKBdMBgykTtdsLWBZu/KI83uRIdOMjy3S1mlvf3HQxGKEb90jDOUU6+/R
lMC1omOHdUvOtBebGjuJ6MZy/Zrweeuek3bedbPuYEUjMW3uSVt2CNKM/dsROWkC
yCUDdGMQjSlp+JoQkUkZhovrKhrL0kHZFwcMi1Ak8PcuuiEGh+iG03NrddA1y441
pr07JQNaQxvCBtMlsmVYwgjw8psjZgX0JJdyXeTwEIi/xDc2gPhoj8ez14AO74Fl
s7BzB5coMhwqciUchg5d90eM38cucFC4/H6MPNyxtU9KP0jsX6xcmAKALZZEPSDu
f/uVYYEam+NWALlu+imFASWtCn+aztfaLkIGnA8EZVycvvH+5QIpiy/ubUN7euvu
AlNocEh5XmhirUlLFdKFym/aoJyydeWx5HFbwp41hFfVlrmpZnPFqkFYZcy7zHQO
eyw2jV0QlBjM0Fy/Nk2qt2xp1cdU54a9Js+zYz26a61E8JW3VsLwsT4MX83330fZ
jfysxUCjMXgR7AYNrbiq
=EwgS
-END PGP SIGNATURE-


-- 
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/e1tz9rf-0005dr...@franck.debian.org



Accepted qbzr 0.23.0-1 (source all)

2012-11-15 Thread Andrew Starr-Bochicchio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 Nov 2012 18:58:24 -0500
Source: qbzr
Binary: qbzr
Architecture: source all
Version: 0.23.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Andrew Starr-Bochicchio a...@debian.org
Description: 
 qbzr   - Graphical interface for Bazaar using the Qt toolkit
Changes: 
 qbzr (0.23.0-1) unstable; urgency=low
 .
   [ Andrew Starr-Bochicchio ]
   * New upstream release.
   * debian/copyright: Use machine-readable format.
   * Fix debian/watch file to correctly find releases again.
   * debian/control: Bump Standards Version to 3.9.3,
 no changes needed.
   * debian/control: Use my new @debian.org address.
   * Add autopkgtests running the upstream testsuite.
 .
   [ Jelmer Vernooij ]
   * Remove myself from uploaders.
Checksums-Sha1: 
 1a25405f8d6baffdb58588c053424517bf1424ae 2201 qbzr_0.23.0-1.dsc
 21b4d6b70f6a2bfafa6c2bf6d616fd9062a512e0 808036 qbzr_0.23.0.orig.tar.gz
 af0f747ff11fd0c3a875b853366fc6ded619d2b5 5969 qbzr_0.23.0-1.debian.tar.gz
 fa58f3f6189d254220d2a8f039ae07e8f29343a4 476772 qbzr_0.23.0-1_all.deb
Checksums-Sha256: 
 f5f702c442444ade6a6a5aa7dd16b8323348b37b71fbaf756379344f0a7037de 2201 
qbzr_0.23.0-1.dsc
 7e66f2cdb3b38e83ecb99ae2934fe42e9c137273a06d54f66aa76da8a06bef58 808036 
qbzr_0.23.0.orig.tar.gz
 9dd72e5e58ba4ab330922283766d0fac475a992bb9a1fd40ed1a47219495f4c9 5969 
qbzr_0.23.0-1.debian.tar.gz
 0b11abfd4a1807df948de96cf9b1d5cb986272562bef7809c1397a854b944d29 476772 
qbzr_0.23.0-1_all.deb
Files: 
 79ae46d0b0946aded42dcfef98321367 2201 vcs optional qbzr_0.23.0-1.dsc
 bd000c87e9cfeb78ea6629a4bee65ee5 808036 vcs optional qbzr_0.23.0.orig.tar.gz
 c80e02d70e8a1632a0b2ceee5ac5f28e 5969 vcs optional qbzr_0.23.0-1.debian.tar.gz
 96d413b021a8cf56c50befb6e61f0bc3 476772 vcs optional qbzr_0.23.0-1_all.deb

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

iQIcBAEBCAAGBQJQpYUuAAoJEDtW4rvVP9yx1vsQAI6FV0hPbrJ60zDCD+jTllqy
GLeiNIfPdJR7yeRCVOoR1h5GTZH4JwlWYCgD/z+qo5tvNWohKLoTmtp4rdu7bMS3
pQXy/XI7dMMAw1yttprVeisDXDKOFYv4jpwJwh6fcX7ERV3ne8NKI871SFeYUb24
aqLmY2j9njxqlJq30d8oHIznNA3n8uj4b/a+/BfvsBzoQ/RmiwJMZTuxaphsbNs2
fvEN+mFucz4CIrQrhLtmUdnLVp2VltfItWWYd6CAoqITrLMOBYa3mk2Q4xiNfadc
a5pNMUG6jJiPZ96Yte4JXh9qeCjfqlvEL7ZgJEzUbLrSbeUnZT4D7JaBneXZJcOb
BqjmuHSmCnOeYRIP3IjK73jGK1SYntALsMHRS8f5H68L0BKCT++U8YqIt3wR5wWL
O1IOq6RhpMtKeWfK/8dRzGfDmothhHxmv3HKtLbR34QBy0R+x8hWMklam1bFa4GO
KfT+sOu3M4lomXzVw4guLsb0oOT/MuoS4eMIB5TxDYmHD6ZTXlwrhWX2menjOUEC
OmOrAEl6FZSBeuBgOGSWbJS+M2RXl3qNtNWlu7CofIY8phVpnp1oeUYc/DgTwCAN
vRadxb9G421ZKVhHyDoeiNMWGpWgoUFuWDqPEjXtuwwenpzisUnARyCKJst+RoYH
/DlGOzrE+czPsqJFHXwL
=Op2c
-END PGP SIGNATURE-


-- 
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/e1tz9rn-0005gg...@franck.debian.org



Accepted ffmpeg2theora 0.29-1 (source amd64)

2012-11-15 Thread Tiago Bortoletto Vaz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 Nov 2012 15:05:50 -0500
Source: ffmpeg2theora
Binary: ffmpeg2theora
Architecture: source amd64
Version: 0.29-1
Distribution: experimental
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Tiago Bortoletto Vaz ti...@debian.org
Description: 
 ffmpeg2theora - Theora video encoder using ffmpeg
Closes: 652705 692914
Changes: 
 ffmpeg2theora (0.29-1) experimental; urgency=low
 .
   * Migrate source to pkg-multimedia git repository tree.
   * Add pkg-multimedia as maintainer
   * New upstream version. (Closes: #692914, #652705)
Checksums-Sha1: 
 b789d5a96cfc271fd703ccc953a4714c480f153f 1668 ffmpeg2theora_0.29-1.dsc
 7e78c5ddb8740b33a6ae4c9da76047bd8e662791 90143 ffmpeg2theora_0.29.orig.tar.bz2
 bef26e713dbdacc6c0d9ef49d5d6e22ab68c3065 6403 
ffmpeg2theora_0.29-1.debian.tar.gz
 cc7f1d590436b2b59fbde8351f7a7776b7fa8c76 55568 ffmpeg2theora_0.29-1_amd64.deb
Checksums-Sha256: 
 90b57c5dd58116c3e055600672f0839808f286fdf4a348db74d003405192628c 1668 
ffmpeg2theora_0.29-1.dsc
 214110e2a5afdd8ff8e0be18152e893dbff5dabc1ae1d1124e64d9f93eae946d 90143 
ffmpeg2theora_0.29.orig.tar.bz2
 0b662c270a6c10c64ae9519044533e3a9a8ff7bc562150019fdfc342eb136f08 6403 
ffmpeg2theora_0.29-1.debian.tar.gz
 1fc350a414aed8fcda9664dec1de45e9774ce28d57af4a7a86bb99185a8165bb 55568 
ffmpeg2theora_0.29-1_amd64.deb
Files: 
 ecb73a5ea8ad8a763dbf94e2da8899b5 1668 video optional ffmpeg2theora_0.29-1.dsc
 90855361d16d1d225fde094a5bae99f5 90143 video optional 
ffmpeg2theora_0.29.orig.tar.bz2
 e0509fa800ae07aa0294005c73875a8b 6403 video optional 
ffmpeg2theora_0.29-1.debian.tar.gz
 5be603b47d7d565fa23adbd59583497e 55568 video optional 
ffmpeg2theora_0.29-1_amd64.deb

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

iEYEARECAAYFAlCll5IACgkQaQ1iFKUE/srXRwCfYZDdv9aiC6L9kZV36Mhc5iYa
F1AAnilY0nfePy6Bgoz6nLOkO36b2FQD
=lztG
-END PGP SIGNATURE-


-- 
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/e1tzb1j-0001lv...@franck.debian.org



Accepted mountall 2.44 (source i386)

2012-11-15 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 16 Nov 2012 01:05:31 +
Source: mountall
Binary: mountall
Architecture: source i386
Version: 2.44
Distribution: unstable
Urgency: low
Maintainer: Steve Langasek vor...@debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 mountall   - filesystem mounting tool
Changes: 
 mountall (2.44) unstable; urgency=low
 .
   * conf/{checkfs,checkroot-bootclean,checkroot,mountall-bootclean}.sh.conf,
 conf/{mountnfs-bootclean,mtab,bootmisc}.sh.conf: additional null jobs
 for compatibility with pre-existing sysvinit script names, so that the
 sysvinit scripts aren't run.  This speeds up the boot, improves
 compatibility with insserv, and guards against e.g.,
 mountall-bootclean.sh running after /run is already in use by ifupdown.
Checksums-Sha1: 
 54f1c4318e0f217b4f0b3b3c410210ba39b4ee0e 1737 mountall_2.44.dsc
 64c17e24342d294ad6b74a4473e80b40c7191132 634304 mountall_2.44.tar.gz
 2bfa613924dfdce3740dea23e44801fb9dc31195 77256 mountall_2.44_i386.deb
Checksums-Sha256: 
 caaa542e0605232c672190e55b7f938cf7cff495130beb155057660742b5e351 1737 
mountall_2.44.dsc
 44ad54bd9feef2e147e074ce8eabbd0a3196ef98ed2c9fee01e39b806b69bfca 634304 
mountall_2.44.tar.gz
 3027b73d19fcc8b12f1035d6645b1fc1e65fa6b5acbfbe2cdd6354570a59f6a6 77256 
mountall_2.44_i386.deb
Files: 
 5960267313d80156f177977b2ba50675 1737 admin required mountall_2.44.dsc
 6d047587ea7752178b7843c76f0d0751 634304 admin required mountall_2.44.tar.gz
 63dcf9aebba3ff5b4e7640d9b8bad4df 77256 admin required mountall_2.44_i386.deb

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

iQIcBAEBCAAGBQJQpZhHAAoJEFaNMPMhshM9VPIQAI653tuWfwes+sfXV8O1v3T6
wurtanULsEM7rh4erLq/FcjulqV6IUN2s3E8uWCfC2umx+J0SEvNoiq/ZkfzhLW2
hX4c08QcwmuQBxevPIWovhjdzx1dWhEdh2hkD4KPzbpO3PFE+OcDkHoSr//248z6
+tSxXCtZ2tTywKXuaLlPZHy++ap2wqVQmirNSeLFZsA1IyrIHQoJZ6Y+A0epyvnt
LKYy6sxgPnVjrTMLMbyoQImkgF/mX+UP+Y3km/LECsu2bE4xbUJuNLrhrc+6Zkg5
xYdld3VOXOF71c+6QosH6iq7eX5FSmSZmMXk9fI1So68kW0yYnGXNO1PyVUxAaSx
upt2NXxdFG7KcdbhYAdR+OQ7a+IVovTfOuVgZc87I8te/IWN2KkcQgFxgLWQU6U/
jXSxrh62zfMv2pXxQotpyGV7L/5CIqshGlerYEiJbuefgU1ToxqbBdqFGQAg1ldn
4If1JjzDnlJrZKwjZxAvm6wA5e0bza5qrZGyYcK5TFV5z0iCplieI8lWLkCCbSmW
QWSlcT5mPOtPnbrr+7+S7jsG8Yw+0NhgpSP5mMK54UDtukQ+ILNaLj2GZfyUeL6K
OjC0bvv1v8MF5XMyjmhElFMh4hpXhG7kd61mKi7GQuIpkdX22M34HtWhvwYCgbGT
2az7fpp1WbegCK90/Bq8
=8auu
-END PGP SIGNATURE-


-- 
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/e1tzb1o-0001om...@franck.debian.org



Accepted pymilter 0.9.7-1 (source i386 all)

2012-11-15 Thread Scott Kitterman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 16 Nov 2012 01:44:53 -0500
Source: pymilter
Binary: python-milter python-milter-doc python-milter-docs
Architecture: source i386 all
Version: 0.9.7-1
Distribution: experimental
Urgency: low
Maintainer: Scott Kitterman sc...@kitterman.com
Changed-By: Scott Kitterman sc...@kitterman.com
Description: 
 python-milter - Python extension for Sendmail Milter Protocol
 python-milter-doc - Documentation for the Python Milter extension
 python-milter-docs - Documentation for the Python Milter extension 
(transitional packa
Changes: 
 pymilter (0.9.7-1) experimental; urgency=low
 .
   * New upstream release
 - Drop debian/patches/BSD-have-ipv6.diff, incorporated upstream
 - Remove debian/patches (no patches)
 - Drop quilt from build-depends and debian/rules
   * Bump debian/compat and debhelper version to 9
Checksums-Sha1: 
 f8be5de193671182a164fee1aaa129d3f05b786c 1469 pymilter_0.9.7-1.dsc
 2e291eff81ff8e5e2ff9802d13cdb1be0b4995d2 119829 pymilter_0.9.7.orig.tar.gz
 a431a22d2175307aa497ab71f58f6ccc54f7118e 3788 pymilter_0.9.7-1.diff.gz
 27b13659a8fb0c6dec05a39a89ecc697f10abba3 66560 python-milter_0.9.7-1_i386.deb
 39a805494dbbc92936376550077149cb6c50b360 145016 
python-milter-doc_0.9.7-1_all.deb
 c12d67d8ad4695f8a51e8a8ce103f42e20406ab4 6884 
python-milter-docs_0.9.7-1_all.deb
Checksums-Sha256: 
 21cecd9ee36b823c192d9d60ae55604ed123fbfdca3a45457cd1530062c89a36 1469 
pymilter_0.9.7-1.dsc
 4fa5ae49de545785c84d427b1bf5b5985547febcdbc9fe205b987a7b459b45f3 119829 
pymilter_0.9.7.orig.tar.gz
 ee507cd4bf9c6fcd96750d9b9ee856424079c041acfec96b2af6d681020986a0 3788 
pymilter_0.9.7-1.diff.gz
 ec4e884ef96f63e6b9f13784223c8e0b04f25e12c924796fbd68b2b737601910 66560 
python-milter_0.9.7-1_i386.deb
 0e16feef8d5da7d82586a07e6a4dba10d6ff6832cc502d73c7fd53ab79078761 145016 
python-milter-doc_0.9.7-1_all.deb
 e4a627eb07ec0ffb951550758b1a9bfa74aa3cf47cd346bc6a1a9946b50030c4 6884 
python-milter-docs_0.9.7-1_all.deb
Files: 
 233afe3456c6e9a9aa0a70d38a8ef950 1469 python optional pymilter_0.9.7-1.dsc
 15991e6c71e3d77a319f5bb7e7aad304 119829 python optional 
pymilter_0.9.7.orig.tar.gz
 90654e4c7f46678b6f1cbf3d867591c9 3788 python optional pymilter_0.9.7-1.diff.gz
 6ffb214d42a909d653ffed63ddb8ef10 66560 python optional 
python-milter_0.9.7-1_i386.deb
 38272c2074d4e8763c8b5ca09cb07cd4 145016 doc optional 
python-milter-doc_0.9.7-1_all.deb
 b0d68322b9a9da9e3c60fc6446c8dc51 6884 oldlibs extra 
python-milter-docs_0.9.7-1_all.deb

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

iEYEARECAAYFAlCl5r0ACgkQHajaM93NaGrY4wCdG39vPZZrg+jYMWdmQD5QzhNc
66sAn2l3DBSPYnCIdPvtcsUY34IVlBeM
=lWuG
-END PGP SIGNATURE-


-- 
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/e1tzgpd-0008es...@franck.debian.org



Accepted libav 6:9~beta2-4 (source amd64 all)

2012-11-15 Thread Reinhard Tartler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 16 Nov 2012 07:56:59 +0100
Source: libav
Binary: libav-tools libav-dbg libav-doc libavutil52 libavcodec54 libavdevice53 
libavformat54 libavfilter3 libswscale2 libavutil-dev libavcodec-dev 
libavdevice-dev libavformat-dev libavfilter-dev libswscale-dev 
libavresample-dev libavresample1 libavutil-extra-52 libavcodec-extra-54 
libavdevice-extra-53 libavfilter-extra-3 libavformat-extra-54 libswscale-extra-2
Architecture: source amd64 all
Version: 6:9~beta2-4
Distribution: experimental
Urgency: low
Maintainer: Reinhard Tartler siret...@debian.org
Changed-By: Reinhard Tartler siret...@tauware.de
Description: 
 libav-dbg  - Debug symbols for Libav related packages
 libav-doc  - Documentation of the Libav API
 libav-tools - Multimedia player, server, encoder and transcoder
 libavcodec-dev - Development files for libavcodec
 libavcodec-extra-54 - Libav codec library (additional codecs)
 libavcodec54 - Libav codec library
 libavdevice-dev - Development files for libavdevice
 libavdevice-extra-53 - Libav device handling library (transitional package)
 libavdevice53 - Libav device handling library
 libavfilter-dev - Development files for libavfilter
 libavfilter-extra-3 - Libav filter library (transitional package)
 libavfilter3 - Libav video filtering library
 libavformat-dev - Development files for libavformat
 libavformat-extra-54 - Libav file format library (transitional package)
 libavformat54 - Libav file format library
 libavresample-dev - Development files for libavresample
 libavresample1 - Libav audo resampling library
 libavutil-dev - Development files for libavutil
 libavutil-extra-52 - Libav utility library (transitional package)
 libavutil52 - Libav utility library
 libswscale-dev - Development files for libswscale
 libswscale-extra-2 - Libav video software scaling library (transitional 
package)
 libswscale2 - Libav video scaling library
Changes: 
 libav (6:9~beta2-4) experimental; urgency=low
 .
   * Fix compilation on the buildds
Checksums-Sha1: 
 c03b55a2a0d872623ba0c61632d700a1767f931a 3457 libav_9~beta2-4.dsc
 be76fa59cac223be5967f7f840bbdceb2517683a 351390 libav_9~beta2-4.debian.tar.gz
 772ed0ac44e82fe5a25427f426a8ac4e24465aaf 3386098 
libav-tools_9~beta2-4_amd64.deb
 48fe7ceecb6f05285a5b9ded01a31096eb1073c0 33421220 libav-dbg_9~beta2-4_amd64.deb
 794e5569f72d71fc65f306a0418394c725a31d1b 13939120 libav-doc_9~beta2-4_all.deb
 6dc343cef5fabd57ddd0cba491a661a04dc4f6bd 98026 libavutil52_9~beta2-4_amd64.deb
 2f2c75b50b9ee3b4e48541b98c46c7c98398cf24 2464166 
libavcodec54_9~beta2-4_amd64.deb
 cc52102ac4c60812a6e7fb6298aa5e6fb604f4bb 66784 
libavdevice53_9~beta2-4_amd64.deb
 72f03a65fa7af40d08c81ea699ab444a6084435d 505674 
libavformat54_9~beta2-4_amd64.deb
 17abb6b3143210f059a79ceef069ad245c356550 132788 
libavfilter3_9~beta2-4_amd64.deb
 51f0009c8ae24c61aac620dd41f3cb420b5b80f2 118876 libswscale2_9~beta2-4_amd64.deb
 d260fa1cb36b91e56747c35d3c001a0c360cf950 143490 
libavutil-dev_9~beta2-4_amd64.deb
 3bcedfb8a13e5564c7f5143acf51d187257d22e1 2722240 
libavcodec-dev_9~beta2-4_amd64.deb
 1f67bf45d402ab1482bfcb14b46ae5bc4bcf66f1 68810 
libavdevice-dev_9~beta2-4_amd64.deb
 e885de93683f17774d553270182dde963bae6559 594880 
libavformat-dev_9~beta2-4_amd64.deb
 1857a0139937085ea5f600272d8ab401a16162b5 156562 
libavfilter-dev_9~beta2-4_amd64.deb
 8694505baad95c4b9b0be0ee64862ea5318bcc7a 130252 
libswscale-dev_9~beta2-4_amd64.deb
 4e11da9240be32bd61c6d77b037607629f568342 78426 
libavresample-dev_9~beta2-4_amd64.deb
 f0e5168f9ae2d163ba2f8d2bd7b8e524a4ed3693 70908 
libavresample1_9~beta2-4_amd64.deb
 627708a888e95535ebf5e99cd1ea750537985d8d 41688 
libavutil-extra-52_9~beta2-4_all.deb
 75b5c02e3f83641184a16c707a963969ff771601 2468814 
libavcodec-extra-54_9~beta2-4_amd64.deb
 28172de401a5cbf643033c0d1a980f7a147b7bdc 41704 
libavdevice-extra-53_9~beta2-4_all.deb
 354a51f0913b09edd1abea5e0b3f5c12db4a3e88 41694 
libavfilter-extra-3_9~beta2-4_all.deb
 d86ed057bdc8e0338cb8c35f2e56f8d3af0da89e 41700 
libavformat-extra-54_9~beta2-4_all.deb
 2e47309d54369cbb3795d9f354c264f10f14a685 41704 
libswscale-extra-2_9~beta2-4_all.deb
Checksums-Sha256: 
 5760d6e38c335b7364a9aeb38197e48cd8b797afcf0d8061ccb1cd1c70c92024 3457 
libav_9~beta2-4.dsc
 523f114ee048886f35d94bc3d7c0626b74e376a4ea469f415dda7c0ccb6673f4 351390 
libav_9~beta2-4.debian.tar.gz
 368377fb1b84a6b4ad5f8e0cb86e485207a05ff6043f90e4fc4d1fde2d8f3994 3386098 
libav-tools_9~beta2-4_amd64.deb
 56a752ad6c9ce7d58c395561bcabed5453668fd4ab44e6034d7e1b31b9db2170 33421220 
libav-dbg_9~beta2-4_amd64.deb
 a937801955aeda273b34be84a00396a6c2367ba62813b1af6f4342ac44bb9126 13939120 
libav-doc_9~beta2-4_all.deb
 086929c72f78bc71f87cd051149625c3f6b9d64e639238cda3e4c755891c4c2e 98026 
libavutil52_9~beta2-4_amd64.deb
 7b189e0ef131f3a493fbb6345f8c0a082cb731115587f04533b7fe18e9d76702 2464166 
libavcodec54_9~beta2-4_amd64.deb
 d17e941ee28fea09fe5933fbdf3017d87dd7c987b9c1a10fc8429a51bb63d964 66784