Re: Contributor agreements and copyright assignment

2012-12-02 Thread Wouter Verhelst
On Sat, Dec 01, 2012 at 10:24:53AM +0100, Tollef Fog Heen wrote:
 ]] Wouter Verhelst 
 
 [...]
 
  Personally, I'm not comfortable signing off my copyright to the FSF, for
  the very same reason I'm not comfortable signing off copyright to
  Canonical: while both are led by a person whom so far hasn't show much
  reason for me to distrust them, it is also true that both leaders have
  an agenda that I don't completely trust or agree with.
 
 The FSF is bound by its bylaws.

So are most corporations.

  Yes, one of the groups makes a profit, and the other doesn't. I don't
  think money is dirty, however, so that doesn't even remotely factor into
  my decision.
 
 This isn't about whether money is dirty or not, it's about whether you
 give your copyright to somebody who are able to do whatever they want
 with it or not.  The FSF's is a lot more tied than a private corporation
 is.

Only in that they promise to keep your contributions free software.
While that is okay in and of itself, the FSF bylaws don't specify what
their idea of freedom entails, and indeed has on occasion proven that
their idea of freedom is less strict than ours.

Note that I'm not saying that the FSF is evil, only that I have no
particular reason to trust them more than I trust Canonical.

 You might not consider this a problem, but it is a fairly significant
 difference.

Perhaps.

-- 
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/20121202002022.gb30...@grep.be



Re: Canonical pushes upstart into user session - systemd developer complains

2012-12-02 Thread Vincent Lefevre
On 2012-12-01 10:16:54 +0100, Wouter Verhelst wrote:
 On Fri, Nov 30, 2012 at 02:18:04AM +0100, Vincent Lefevre wrote:
  At least for Perl, I can't see anything related to validation.
 
 That's because validating an ini file is trivially easy:
 
 the line is a comment line, which must start with a # after optional
 whitespace,
 or it is a section header, where all data must be surrounded by [],
 or it is a key-value pair, where the key must be one word and be
 separated by the value by a =
 
 or it is invalid.

No, that's not sufficient. You may want relations between key-value
pair. For instance, if you have a line with a key foo, then a line
with a key bar must also exist. Or a line with a key number must
have a value that is a number (more generally matching some regexp).

 There, validation.
 
 To validate an XML file, much more is involved, including checks of
 nested tags and escaped characters.

That's well-formedness (which also corresponds to validation with
an empty schema).

  BTW, how do you do nested blocks in .ini files?
 
 You can't, and that's a feature. Instead, you have keys where the value
 is the name of another section (or possibly another ini file) containing
 the nested data.

So, there is a good reason to use XML (or some other format with
similar features) instead of ini: if one needs nested blocks or
may need them in the future.

-- 
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/20121202113059.gq5...@xvii.vinc17.org



wheezy and gcc 4.3 (and maybe 4.5)

2012-12-02 Thread dAgeCKo


Hello,

I have some kernel regressions with my hardware (usb and network). In 
fact it is the first time I am doing stuffs for the linux kernel team.


The thing is that the last known working kernel is a 2.6.32-46 and the 
last known unworking kernel is a 3.2 (could be prior to this but 
unsure). I am using git bisect to try to find where the problems are.


Anyway, my problem is that I need some gcc versions that are no more 
supported on wheezy. Indeed, the first kernel version I have to compile 
is a 2.6.37, which, as far as I know, requires gcc 4.3.


I tried to compile this kernel with gcc 4.4 but if failed. So I am 
looking to install gcc 4.3 into my debian wheezy. Unfortunately, all my 
attempts failed (too many broken dependencies).


Maybe someone here can help me ?

Thanks in advance.

PS: I hope I subscribed to the good mailing list, if not, please point 
me to the good one.



--
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/50bb42df.8010...@free.fr



Re: Packaging MATE for Debian

2012-12-02 Thread John Paul Adrian Glaubitz
Hey,

On Wed, Nov 21, 2012 at 11:22:52AM +0100, John Paul Adrian Glaubitz wrote:
 I'd therefore like to ask if anyone here would be willing to help me
 to get MATE into Debian for Jessie.

I'd like to ping back and see if there's anyone here who'd be
interested in joining me to package MATE for Debian.

Cheers,

Adrian

-- 
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913


-- 
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/20121202122650.ga17...@physik.fu-berlin.de



Re: wheezy and gcc 4.3 (and maybe 4.5)

2012-12-02 Thread Ben Hutchings
[Moving this to the debian-kernel list.]

On Sun, 2012-12-02 at 13:00 +0100, dAgeCKo wrote:
 Hello,
 
 I have some kernel regressions with my hardware (usb and network). In 
 fact it is the first time I am doing stuffs for the linux kernel team.
 
 The thing is that the last known working kernel is a 2.6.32-46 and the 
 last known unworking kernel is a 3.2 (could be prior to this but 
 unsure). I am using git bisect to try to find where the problems are.
 
 Anyway, my problem is that I need some gcc versions that are no more 
 supported on wheezy. Indeed, the first kernel version I have to compile 
 is a 2.6.37, which, as far as I know, requires gcc 4.3.
 
 I tried to compile this kernel with gcc 4.4 but if failed. So I am 
 looking to install gcc 4.3 into my debian wheezy. Unfortunately, all my 
 attempts failed (too many broken dependencies).

Well, we have used gcc 4.4 for the official kernel packages since Linux
2.6.34.  So it should work.

 Maybe someone here can help me ?

You would have to install gcc-4.3 in a 'squeeze' environment, perhaps
using schroot or pbuilder or a virtual machine.

But you can also save some time by bisecting through the old packages at
http://snapshot.debian.org/package/linux/ and
http://snapshot.debian.org/package/linux-2.6/.

 Thanks in advance.
 
 PS: I hope I subscribed to the good mailing list, if not, please point 
 me to the good one.

debian-kernel is the specific list for our Linux kernel packages.

Ben.

-- 
Ben Hutchings
It is easier to change the specification to fit the program than vice versa.


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


Re: Canonical pushes upstart into user session - systemd developer complains

2012-12-02 Thread Игорь Пашев
2012/12/2 Vincent Lefevre vinc...@vinc17.net:
 No, that's not sufficient. You may want relations between key-value
 pair. For instance, if you have a line with a key foo, then a line
 with a key bar must also exist. Or a line with a key number must
 have a value that is a number (more generally matching some regexp).

For such configs general programming languages are good.

E. g. perl:

$foo = wtf;

if ($foo  !$bar) {
ohshit(...);
}

...


-- 
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/CALL-Q8zGhKjGBgp=i9BX5KVdQGrUce4Y0UAZzYuo3pYWb=u...@mail.gmail.com



Re: wheezy and gcc 4.3 (and maybe 4.5)

2012-12-02 Thread dAgeCKo




Well, we have used gcc 4.4 for the official kernel packages since Linux
2.6.34.  So it should work.


Unfortunately, whether I use gcc 4.4 or another version, here is the 
error I have when compiling the kernel:


  CHK include/linux/version.h
  CHK include/generated/utsrelease.h
  CALLscripts/checksyscalls.sh
  CHK include/generated/compile.h
  AS  arch/x86/kernel/entry_64.o
/tmp/cc8aexwo.s: Assembler messages:
/tmp/cc8aexwo.s: Error: .size expression for do_hypervisor_callback does 
not evaluate to a constant

make[3]: *** [arch/x86/kernel/entry_64.o] Erreur 1

From what I could have understood on various internet pages, this is 
most certainly due to a wrong gcc version.
So whether I don't set the correct gcc version correctly (which can be 
possible), whether the error is somewhere else.

Here is what I do to set the correct gcc version:
export CC=gcc-4.4

Then I compile the kernel with this:

fakeroot make-kpkg --initrd --revision=1.0 kernel_image




Maybe someone here can help me ?


You would have to install gcc-4.3 in a 'squeeze' environment, perhaps
using schroot or pbuilder or a virtual machine.

But you can also save some time by bisecting through the old packages at
http://snapshot.debian.org/package/linux/  and
http://snapshot.debian.org/package/linux-2.6/.


I will have a look about these. It looks interesting.




Thanks in advance.

PS: I hope I subscribed to the good mailing list, if not, please point
me to the good one.


debian-kernel is the specific list for our Linux kernel packages.

Ben.




--
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/50bb5186.5010...@free.fr



Debian package browser

2012-12-02 Thread Игорь Пашев
Hi, all.

For obvious reasons I cannot find [in the Net] a way how to setup a
package browser
similar to one used at http://packages.debian.org or at
http://packages.ubuntu.com

Could anybody point me in the right direction?

Once again: I'd like to have debian package browser on my site.


-- 
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/call-q8zo+4fy8yq4cx8zxo5wt6bwuwdqxeqvhbx93hq_ecb...@mail.gmail.com



Re: Debian package browser

2012-12-02 Thread Vincent Bernat
 ❦  2 décembre 2012 17:27 CET, Игорь Пашев pashev.i...@gmail.com :

 For obvious reasons I cannot find [in the Net] a way how to setup a
 package browser
 similar to one used at http://packages.debian.org or at
 http://packages.ubuntu.com

 Could anybody point me in the right direction?

Hi!

The source code for packages.debian.org is available in this git
repository:
 http://anonscm.debian.org/gitweb/?p=webwml/packages.git;a=summary
-- 
panic(mother...);
2.2.16 /usr/src/linux/drivers/block/cpqarray.c


pgpB8ZEkBmNGA.pgp
Description: PGP signature


Re: Debian package browser

2012-12-02 Thread Игорь Пашев
 Hi!

 The source code for packages.debian.org is available in this git
 repository:
  http://anonscm.debian.org/gitweb/?p=webwml/packages.git;a=summary

Thanks!


-- 
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/CALL-Q8ywBH_+8PoVCcSxF6_7DdOfLETptne2Uu=txrv-m4l...@mail.gmail.com



[OT] config file formats

2012-12-02 Thread Ivan Shmakov
 Игорь Пашев pashev.i...@gmail.com writes:
 2012/12/2 Vincent Lefevre vinc...@vinc17.net:

  No, that's not sufficient. You may want relations between key-value
  pair. For instance, if you have a line with a key foo, then a line
  with a key bar must also exist. Or a line with a key number must
  have a value that is a number (more generally matching some regexp).

  For such configs general programming languages are good.

  E. g. perl:

  $foo = wtf;

  if ($foo  !$bar) {

[…]

If and only if such “configuration files” will only /ever/ be
read by Perl-enabled tools.  Which may pose a problem, e. g.,
should a port of the software in question to a resource-limited,
embedded system be considered at some point.

The problem with programming languages is that one can't merely
read a file in such a language, and extract some kind of result
warranted to be sensible.  One has to /execute/ it instead.

(Some extra care is likely to be required for the “privileges'
gate” case as well.)

The same applies to *roff and TeX, BTW.

-- 
FSF associate member #7257


-- 
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/86hao4xod6.fsf...@gray.siamics.net



Re: Contributor agreements and copyright assignment

2012-12-02 Thread Russ Allbery
Wouter Verhelst wou...@debian.org writes:
 On Sat, Dec 01, 2012 at 10:24:53AM +0100, Tollef Fog Heen wrote:
 ]] Wouter Verhelst 
 
 [...]

 Personally, I'm not comfortable signing off my copyright to the FSF,
 for the very same reason I'm not comfortable signing off copyright to
 Canonical: while both are led by a person whom so far hasn't show much
 reason for me to distrust them, it is also true that both leaders have
 an agenda that I don't completely trust or agree with.

 The FSF is bound by its bylaws.

 So are most corporations.

Depending on how much you trust US law (and depending on the state in
which the non-profit is formed), there is a fairly substantial difference.
Board members of non-profits can be held personally legally liable to the
public for running the non-profit in the public interest, and there is
some oversight by the state attorney general that the non-profit is really
being run according to its mission and bylaws.

This oversight essentially does not exist for even publicly-traded
corporations in the US, even though it's theoretically possible.  Short of
illegal activity or similar levels of active malfeasance, corporate
charters and bylaws are essentially meaningless.  And privately held
companies have even less oversight than that (they are, for example, not
even required to have any sort of bylaws).  I don't recall if Canonical is
publicly traded or not.

I'm mostly familiar with non-profit law in New York and I assume the FSF
is chartered in Massachusetts, so I'm not sure how much it carries over,
but the oversight in New York is actually quite substantial.

 Only in that they promise to keep your contributions free software.
 While that is okay in and of itself, the FSF bylaws don't specify what
 their idea of freedom entails, and indeed has on occasion proven that
 their idea of freedom is less strict than ours.

Certainly, no state attorney general is likely to get involved in this
sort of dispute.  The oversight would only happen with more egregious
violations.

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



Re: Really, ...

2012-12-02 Thread Michael Biebl
On 01.12.2012 21:11, Steve Langasek wrote:
 On Sat, Dec 01, 2012 at 10:39:35PM +0800, Thomas Goirand wrote:
 
 More over, most of the sleep calls you will find in init scripts (and I
 believe that is what your grep shows, because that's the case on my own
 laptop...) are because of:
 
 case ${1} in
 restart|reload|force-reload)
 ${0} stop
 sleep 1
 ${0} start
 ;;
 
 which I don't think is (so much of) a problem in itself. Unless you
 also consider the above as a race condition (which, really, could
 be a real one...).
 
 Those are also race conditions, and bugs.  If the stop and start commands
 return control before the action is completed, the results cannot be relied
 on.  The 'restart' command is not the only way that an admin may
 programmatically stop and start a service; you might do this with something
 based on puppet, for instance, with the intent of having the service fully
 stopped before you edit its state, then restart it afterwards, so a race
 here can even lead to corruption.
 

I did a test with all 1194 sysv init scripts we currently have in Debian:
# grep \sleep\ * | wc -l
1101

This is just sad :-/
-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Re: Canonical pushes upstart into user session - systemd developer complains

2012-12-02 Thread Wouter Verhelst
On Sun, Dec 02, 2012 at 12:31:00PM +0100, Vincent Lefevre wrote:
 On 2012-12-01 10:16:54 +0100, Wouter Verhelst wrote:
  On Fri, Nov 30, 2012 at 02:18:04AM +0100, Vincent Lefevre wrote:
   At least for Perl, I can't see anything related to validation.
  
  That's because validating an ini file is trivially easy:
  
  the line is a comment line, which must start with a # after optional
  whitespace,
  or it is a section header, where all data must be surrounded by [],
  or it is a key-value pair, where the key must be one word and be
  separated by the value by a =
  
  or it is invalid.
 
 No, that's not sufficient.

Of course it is.

 You may want relations between key-value pair. For instance, if you
 have a line with a key foo, then a line with a key bar must also
 exist. Or a line with a key number must have a value that is a
 number (more generally matching some regexp).

That's not validation of the format, that's validation of the data.
Something like that is done by the actual code, not by a data format. A
library may be able to help, but that's all (and yes, there are plenty
of libraries that can do such thing for ini files).

  There, validation.
  
  To validate an XML file, much more is involved, including checks of
  nested tags and escaped characters.
 
 That's well-formedness (which also corresponds to validation with an
 empty schema).
 
   BTW, how do you do nested blocks in .ini files?
  
  You can't, and that's a feature. Instead, you have keys where the
  value is the name of another section (or possibly another ini file)
  containing the nested data.
 
 So, there is a good reason to use XML (or some other format with
 similar features) instead of ini: if one needs nested blocks or
 may need them in the future.

I've never seen any config file with nested config blocks that didn't
make the file more complex and less easy to understand.

Like I said, that's a feature.

-- 
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/20121202210452.go9...@grep.be



Re: Really, ...

2012-12-02 Thread Salvo Tomaselli

 Those are also race conditions, and bugs.  If the stop and start commands
 return control before the action is completed, the results cannot be relied
 on.  The 'restart' command is not the only way that an admin may
 programmatically stop and start a service; you might do this with something
 based on puppet, for instance, with the intent of having the service fully
 stopped before you edit its state, then restart it afterwards, so a race
 here can even lead to corruption.

Just opened a bug[1] about the issue, since many daemons use start-stop-
daemon, fixing it there would solve many race conditions.

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694980

-- 
Salvo Tomaselli


-- 
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/201212022254.36278.tipos...@tiscali.it



Re: Really, ...

2012-12-02 Thread Russ Allbery
Salvo Tomaselli tipos...@tiscali.it writes:

 Just opened a bug[1] about the issue, since many daemons use start-stop-
 daemon, fixing it there would solve many race conditions.

 [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694980

You can't call waitpid on processes that aren't your children.

start-stop-daemon already supports waiting for processes to exit when
stopping them.  See the --retry option.

-- 
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/878v9gqfj0@windlord.stanford.edu



Re: Packaging MATE for Debian

2012-12-02 Thread Jon Dowland
On Sun, Dec 02, 2012 at 01:26:50PM +0100, John Paul Adrian Glaubitz wrote:
 Hey,
 
 On Wed, Nov 21, 2012 at 11:22:52AM +0100, John Paul Adrian Glaubitz wrote:
  I'd therefore like to ask if anyone here would be willing to help me
  to get MATE into Debian for Jessie.
 
 I'd like to ping back and see if there's anyone here who'd be
 interested in joining me to package MATE for Debian.

If there was a git repo to check out I'd be happy to test packages and do
some mild work, but not as a main commitment.


-- 
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/2012120143.GA24863@debian



Re: wheezy and gcc 4.3 (and maybe 4.5)

2012-12-02 Thread Jon Dowland
I feel your pain. I've tried to do much the same thing to diagnose old
kernel bugs. I recommend installing squeeze on a small root partition
entirely separately. (or older than squeeze if necessary)

-- 
I pledge not to post to any systemd-related thread on -devel until
(at least) 2013.


-- 
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/2012120258.GB24863@debian



Re: Really, ...

2012-12-02 Thread Salvo Tomaselli


 start-stop-daemon already supports waiting for processes to exit when
 stopping them.  See the --retry option.
Isn't that open to race conditions, as new processes could be spawn with the 
same pid in the meanwhile?


 You can't call waitpid on processes that aren't your children.
True sorry, i didn't know that. There is still ptrace()

-- 
Salvo Tomaselli


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


Re: Packaging MATE for Debian

2012-12-02 Thread John Paul Adrian Glaubitz
On Sun, Dec 02, 2012 at 10:21:43PM +, Jon Dowland wrote:
 On Sun, Dec 02, 2012 at 01:26:50PM +0100, John Paul Adrian Glaubitz wrote:
  Hey,
  
  On Wed, Nov 21, 2012 at 11:22:52AM +0100, John Paul Adrian Glaubitz wrote:
   I'd therefore like to ask if anyone here would be willing to help me
   to get MATE into Debian for Jessie.
  
  I'd like to ping back and see if there's anyone here who'd be
  interested in joining me to package MATE for Debian.
 
 If there was a git repo to check out I'd be happy to test packages and do
 some mild work, but not as a main commitment.

There is: https://github.com/mate-desktop/debian-packages

Cheers,

Adrian

-- 
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913


-- 
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/20121202230337.ga21...@physik.fu-berlin.de



Re: Canonical pushes upstart into user session - systemd developer complains

2012-12-02 Thread Vincent Lefevre
On 2012-12-02 22:04:52 +0100, Wouter Verhelst wrote:
 On Sun, Dec 02, 2012 at 12:31:00PM +0100, Vincent Lefevre wrote:
  On 2012-12-01 10:16:54 +0100, Wouter Verhelst wrote:
   On Fri, Nov 30, 2012 at 02:18:04AM +0100, Vincent Lefevre wrote:
At least for Perl, I can't see anything related to validation.
   
   That's because validating an ini file is trivially easy:
   
   the line is a comment line, which must start with a # after optional
   whitespace,
   or it is a section header, where all data must be surrounded by [],
   or it is a key-value pair, where the key must be one word and be
   separated by the value by a =
   
   or it is invalid.
  
  No, that's not sufficient.
 
 Of course it is.

Perhaps for you. Not for me. Not for users who care about checking
errors in their files.

  You may want relations between key-value pair. For instance, if you
  have a line with a key foo, then a line with a key bar must also
  exist. Or a line with a key number must have a value that is a
  number (more generally matching some regexp).
 
 That's not validation of the format, that's validation of the data.

That's validation of the config file. This is what XML validation
does: it checks whether the file is valid according to some schema.

 I've never seen any config file with nested config blocks that didn't
 make the file more complex and less easy to understand.

Wrong. Nested blocks make config files easier to understand. Otherwise
for the same feature (e.g. conditionals), one would need things like
horrible state variables. For instance, think about redesigning a
procmailrc with the ini format...

-- 
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/20121202225800.ga14...@xvii.vinc17.org



Re: Packaging MATE for Debian

2012-12-02 Thread Adam Borowski
On Sun, Dec 02, 2012 at 10:21:43PM +, Jon Dowland wrote:
 On Sun, Dec 02, 2012 at 01:26:50PM +0100, John Paul Adrian Glaubitz wrote:
  On Wed, Nov 21, 2012 at 11:22:52AM +0100, John Paul Adrian Glaubitz wrote:
   I'd therefore like to ask if anyone here would be willing to help me
   to get MATE into Debian for Jessie.

 If there was a git repo to check out I'd be happy to test packages and do
 some mild work, but not as a main commitment.

You can use the upstream packaging, available at:
deb http://packages.mate-desktop.org/repo/debian wheezy main

I'm testing this at work for several months already (since the freeze;
unlike home, I have no time for unnecessary transitions).  And I'm very
positively surprised: usually when you have unofficial apt sources, the
quality is typically low -- or worse.  Problems I noticed so far are:

* no migration of Gnome2 settings
* wheezy's remmina interacts really badly with screen locking (both
  mate-screensaver and gnome[3]-screensaver): the screen will fail to lock,
  yet the moment you switch out of remmina, there is a fade out and lock
  that can't be aborted
* by default you have two evinces, which tends to confuse people who don't
  know what's going on.  (evince and atril are both pulled in, and use
  the same user-visible names).

And that's basically it.  I did not notice other regressions: remaining
badness was already there in squeeze's Gnome2, and some annoying bugs have
been fixed by MATE guys since then.

So from an _user_'s point of view, John Paul could just upload everything
as-is and it'd be in a better shape than Gnome3 or XFCE already.  I don't
know about packaging internals here so I can't offer this kind of help,
though.

-- 
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.


signature.asc
Description: Digital signature


Re: Contributor agreements and copyright assignment

2012-12-02 Thread Steve Langasek
On Sun, Dec 02, 2012 at 11:58:55AM -0800, Russ Allbery wrote:
  The FSF is bound by its bylaws.

  So are most corporations.

 Depending on how much you trust US law (and depending on the state in
 which the non-profit is formed), there is a fairly substantial difference.
 Board members of non-profits can be held personally legally liable to the
 public for running the non-profit in the public interest, and there is
 some oversight by the state attorney general that the non-profit is really
 being run according to its mission and bylaws.

One of the things that bothers me whenever this discussion comes up is that
people seem to assume that non-profits are not only ultimately trustworthy,
but also inviolable.

Even if you have complete confidence in the (present and future) governance
of the FSF, non-profits are not immune from lawsuits.  And the FSF happens
to be engaged in an activity that exposes it to certain liability:
distribution of software, which may infringe any number of patents in the
US.

If $evilcorp decides to sue the FSF for patent infringement, and secures a
judgement against the FSF that's worth more than all the FSF's assets, what
prevents the bankruptcy court from assigning all copyrights to $evilcorp and
thus giving them full control over future licensing of the work?

The answer, as it happens, is the very terms of the FSF's copyright
assignment, which ensures the work remains available under a copyleft
license.  *That* is the gold standard for copyright assignment, by which
other copyright assignments should be measured, not by whether the
counterparty is a for-profit or non-profit corporation.  It's this which
protects us against the threat of EvilRMSBot replacing the genuine article,
or EvilCorp taking the FSF's assets and leaving the bylaws.

Canonical's CLA terms are not identical to the FSF's copyright assignment,
but they attempt to strike a similar balance.  I think the CLA ought to be
judged on that basis.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org


signature.asc
Description: Digital signature


[OT] config file formats

2012-12-02 Thread Ivan Shmakov
 Vincent Lefevre vinc...@vinc17.net writes:
 On 2012-12-02 22:04:52 +0100, Wouter Verhelst wrote:
 On Sun, Dec 02, 2012 at 12:31:00PM +0100, Vincent Lefevre wrote:

[…]

  You may want relations between key-value pair.  For instance, if
  you have a line with a key foo, then a line with a key bar must
  also exist.  Or a line with a key number must have a value that
  is a number (more generally matching some regexp).

  That's not validation of the format, that's validation of the data.

  That's validation of the config file.  This is what XML validation
  does: it checks whether the file is valid according to some schema.

That being said, I believe that the reason XML became so
widespread (and, conversely, it's ancestor SGML fell into
disuse) is precisely because the former decoupled the format
(representation, and its inherent semantics) itself from the
validation.  That way, we were able to forgo DTD and develop
such (arguably, much better) XML schema representations such as
XML Schema and RELAX NG.  (The latter is the one used by Emacs.)

I'm not aware of any “standard” schema representations for the
(sectioned) key-value file formats, however.

  I've never seen any config file with nested config blocks that
  didn't make the file more complex and less easy to understand.

  Wrong.  Nested blocks make config files easier to understand.
  Otherwise for the same feature (e. g. conditionals), one would need
  things like horrible state variables.  For instance, think about
  redesigning a procmailrc with the ini format...

On the second sight, the difference between, e. g.:

a
  b
cd/c
ef/e
  /b
  g
hi/h
  /g
/a

and, e. g.:

[a.b]
c = d
e = f
[a.g]
h = i

is mostly superficial.

-- 
!DOCTYPE thethe tensible ribbon=campaign /pAdvocating the
judicious use of XML applications on the Internet at large./p/the


-- 
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/868v9fy5rm.fsf...@gray.siamics.net



Bug#695000: ITP: ostinato -- Packet/Traffic Generator and Analyzer

2012-12-02 Thread Kartik Mistry
Package: wnpp
Severity: wishlist
Owner: Kartik Mistry kar...@debian.org

* Package name: ostinato
  Version : 0.5.1
  Upstream Author : Srivats P.
* URL : https://code.google.com/p/ostinato
* License : GPL3+
  Programming Lang: C++
  Description : Packet/Traffic Generator and Analyzer

Ostinato is an open-source, cross-platform network packet
crafter/traffic generator and analyzer with a friendly GUI.
Craft and send packets of several streams with different
protocols at different rates.
.
Ostinato aims to be Wireshark in Reverse and become
complementary to Wireshark.

--
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


signature.asc
Description: Digital signature


Accepted libshell-command-perl 0.06-3 (source all)

2012-12-02 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 09:07:50 +0100
Source: libshell-command-perl
Binary: libshell-command-perl
Architecture: source all
Version: 0.06-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libshell-command-perl - cross-platform functions emulating common shell 
commands
Closes: 694395
Changes: 
 libshell-command-perl (0.06-3) unstable; urgency=low
 .
   * Team upload.
   * Make Breaks and Replaces on libextutils-command-perl versioned.
 Need to make Breaks and Replaces on libextutils-command-perl versioned,
 as libextutils-command-perl is also a virtual package provided by
 perl-modules. If we do not add a versioned Breaks and Replaces on
 libextutils-command-perl (= 0), libshell-command-perl is uninstallable.
 Thanks to Andreas Beckmann deb...@abeckmann.de for the analysis.
 (Closes: #694395)
Checksums-Sha1: 
 943cef003228427010a2b853ad7dff9d8578aac9 2104 libshell-command-perl_0.06-3.dsc
 58c7e7690cb7e565060e9cbceb21e47683bf15fc 1748 
libshell-command-perl_0.06-3.debian.tar.gz
 0d5520f8503ca45b8a14b8f71f45bd63930bf05a 5780 
libshell-command-perl_0.06-3_all.deb
Checksums-Sha256: 
 52ae9deae91e0b153b660c82c3395ba60b099baef63437801e376db59c5e115e 2104 
libshell-command-perl_0.06-3.dsc
 37c5d3b34eb92ff28616b1871c5564a65ab9ee9915e53ddfd9865ee51b8cd146 1748 
libshell-command-perl_0.06-3.debian.tar.gz
 f25eaa1afa02c65125c76b62d07ce9b71e956a0fe175b9c9d11356f472d68b7d 5780 
libshell-command-perl_0.06-3_all.deb
Files: 
 bfdd7a5d8b4ee193287cadd4bc6cf458 2104 perl optional 
libshell-command-perl_0.06-3.dsc
 f42b0d3acad70824409a1d3c41cc04b9 1748 perl optional 
libshell-command-perl_0.06-3.debian.tar.gz
 4d7ee071ca93143ef117e3dc21d18915 5780 perl optional 
libshell-command-perl_0.06-3_all.deb

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

iQIcBAEBCgAGBQJQuw4KAAoJEHidbwV/2GP+7S8QAMx1VYgKIJgPiS+Y27LH//8A
+i/BVffOf+5D55GSs7gDIFbORPJMtevim+Fm7sp2BiAPuk+HA+GNBmPyWQ+1Ul+G
Egqb8/VTDeZ+0vJnUk6YDZLnZoRMkXl+Z8OyYbBCkdnPFJLzfPy1jntdGyFwbBuR
d3OHKknI0MWZM4Wq3sZDIgDK49Ng8e4rUP6oiUgRlo+Wyw6z1NBZW5fNbHjxE2jd
2MZ/mSJtmIDTqkq+PMoII2Br09iSaqtxovfifK2gSC+GTAmWF7uEVEpODv+TjyRN
WnmytIkZ055d7RIISzhEIrnCuDoioXwuD5QRnhyKyytN+giKOtBvfkPd0BPnzuex
69a0rEVIgerTkcvAdwtTAG1QbMrtdT8eAova3w9buSIIhfvDNGHOxTvfFGPPJJbt
+EeSd+qHhBM/ujJjPFMyY35An8GLY52hQY6g98fsyFa8+16dh8rOVW4nJt/OGcqI
4+cHo+Wv09ECkm73W6bG3Vzu7tDAzZlN21G5PizXVjOTuLQ2cbIMc0VY4wkSTOY/
V49q2mWREZ9bSmB3lS+MSJUXfJ+56WWlg06Hg28IGnoV7V/k+xv/wtpxnYyvP8xV
+wnnY+RlU/dXtAnpgsgqZXUtk6+++UmapRPgeKbQmkOvrmP2w/tnbS5xEXp5hAMq
Ryf5Ibg0+3e8K1LbkCuh
=OVM5
-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/e1tf4yu-0004uf...@franck.debian.org



Accepted libconfig-model-itself-perl 1.235-1 (source all)

2012-12-02 Thread Dominique Dumont
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 10:10:47 +0100
Source: libconfig-model-itself-perl
Binary: libconfig-model-itself-perl
Architecture: source all
Version: 1.235-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Dominique Dumont d...@debian.org
Description: 
 libconfig-model-itself-perl - graphical model editor for Config::Model
Changes: 
 libconfig-model-itself-perl (1.235-1) unstable; urgency=low
 .
   [ gregor herrmann ]
   * debian/control: update {versioned,alternative} (build) dependencies.
 .
   [ Dominique Dumont ]
   * new upstream release:
 * Fix quit bug in model test widget
   * control:
 * depends on libconfig-model-perl 2.029
 * bumped std-version to 3.9.4
 + build dep on lib-test-memory-cycle-perl
Checksums-Sha1: 
 4533a9410bc13864e1a2fac9052882e0ab04108e 2519 
libconfig-model-itself-perl_1.235-1.dsc
 4614b2b0c6decc26b5203614e7e9864d0d5d4424 48572 
libconfig-model-itself-perl_1.235.orig.tar.gz
 8b9c64d6af49b8acf59c49407b2ee601584f6369 4742 
libconfig-model-itself-perl_1.235-1.debian.tar.gz
 366f2c9d30479d84f429ececfdbf18b2311e1246 73526 
libconfig-model-itself-perl_1.235-1_all.deb
Checksums-Sha256: 
 e6598e64945f0fdfc9991fa4813978c4904f1c1ff127890f2fd5b7c1aa3a14b1 2519 
libconfig-model-itself-perl_1.235-1.dsc
 4e789d7a77bb7e2f111ebbdceda6717fe72f0884dc9b3aa314c6dfa6bb6e4ee6 48572 
libconfig-model-itself-perl_1.235.orig.tar.gz
 683e234caeb56527ad4d6ed032741f1e1381ebb722a1f56936143eba8cb27576 4742 
libconfig-model-itself-perl_1.235-1.debian.tar.gz
 9e86d12d391ae203f03713fc2c879e168795349bbd35a5155cbb0aab169487df 73526 
libconfig-model-itself-perl_1.235-1_all.deb
Files: 
 4d3e2d5b863c95a314b03f0c8045271f 2519 perl optional 
libconfig-model-itself-perl_1.235-1.dsc
 a73beb58c4590a7904c663cd484d2086 48572 perl optional 
libconfig-model-itself-perl_1.235.orig.tar.gz
 a2bcc3de851338badf502d798b0a4fe7 4742 perl optional 
libconfig-model-itself-perl_1.235-1.debian.tar.gz
 97938bac22b55ec86ca1845e74474439 73526 perl optional 
libconfig-model-itself-perl_1.235-1_all.deb

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

iQIcBAEBAgAGBQJQuxxJAAoJEMMfT9lJqytsR5UP/2ilVZHZ6GwTMfWd1NZaBrSD
27lfHf7bGOQAQ/qc6OXtaXq2oclBXfqTYjqZ8SY+6SxwloWRpBg/kX+C6WGlLieS
06DuF3+GC5HpizTXbAG4jDtvVLrPljxmrknvqtmg9HGjhBN3VWxsdC+qNIA1pwFy
Io1F0rXKZNtZKwdbur7kaeBQZtpPnHl+AHLluxD4voarTXzUIxWovokL+tSMU4dm
52uv4QISFkUDU6hBcZT3odgvhoVSCGnv/+QhUOV971k8A5vQ2KfW/SvIvj+BBu8k
RF0zJHIrA5jJnT97j4WDBSTot/ILfQXi0xr/oe9+XXkItxrlocIB0sTR4Ou9vRIl
bOsJ9fgiD/n/e8SBNi/OlFYUGUOz3mPGVDdPKZ3eJuwwIKoeIfifF+BHt2BQSNsM
7tV/Th3XKCfXltlc9yo5q9AvtG0HOR46ZwIdF5Vu7HG+ENxBkxEvyfVA+R+3k2Lz
SXCr22YsE8UkWGY7j8dCczK339Kw+7OV3/3rY2Ufi/bm/3KdCy3GmDbxhY8qoeXs
IjTnCIz8n8EW/jE1m0cqAzUjG3FKTbNAi4DmlmpFD6OQVGYzQB3evz6/8ErDBwDl
U7MAWInRkTI0eAuo0pwLHkP57zKqHfuLs6u5PTBzLPY1szHMQgSJXdex3jHkl2DX
d29yHRRoKWby/I7yQMnM
=2Aaj
-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/e1tf6qd-0005wa...@franck.debian.org



Accepted haskell-debian 3.69.1-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Dec 2012 23:52:25 +0100
Source: haskell-debian
Binary: libghc-debian-dev libghc-debian-prof libghc-debian-doc 
haskell-debian-utils
Architecture: source all amd64
Version: 3.69.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 haskell-debian-utils - Various helpers to work with Debian packages
 libghc-debian-dev - Haskell library for working with the Debian package system
 libghc-debian-doc - Documentation for Debian package system library
 libghc-debian-prof - Profiling library for working with the Debian package 
system
Changes: 
 haskell-debian (3.69.1-1) experimental; urgency=low
 .
   * Depend on haskell-devscripts 0.8.13 to ensure this packages is built
 against experimental
   * Bump standards version, no change
   * New upstream release
Checksums-Sha1: 
 861c20f7c6cf0994da947b8a5793cdbddf567483 2580 haskell-debian_3.69.1-1.dsc
 2febb1dd79f8f4aedc85e3e7e3a27a360f686463 54629 
haskell-debian_3.69.1.orig.tar.gz
 3b78740413322dc98d2382bcb4513e4f3486e96a 4792 
haskell-debian_3.69.1-1.debian.tar.gz
 430453e6db3b236ed6c42fc7b9a7f203429bc071 188550 
libghc-debian-doc_3.69.1-1_all.deb
 0e01acf37adc275d975d2073a9b7760a56a04d87 861372 
libghc-debian-dev_3.69.1-1_amd64.deb
 efb44058a1707daa662ac1ee2f4bd37fd2046caf 828312 
libghc-debian-prof_3.69.1-1_amd64.deb
 4397beef47ce6908cd3d13d276c2b80aae7aaafc 3187938 
haskell-debian-utils_3.69.1-1_amd64.deb
Checksums-Sha256: 
 b99b2cfb64ce6ffa523b43531cc72c9fab46586d5f9ad2610870abe7cec1a3ad 2580 
haskell-debian_3.69.1-1.dsc
 a7e4c3235c6087ab2711922e89e90a1b7055af72e715bc1558b5c3510432ca27 54629 
haskell-debian_3.69.1.orig.tar.gz
 a58c44292dd0bb02f8ae3a885e199b15b093a97f7679fb24a420da1a68bc38b3 4792 
haskell-debian_3.69.1-1.debian.tar.gz
 c4f18155a65af7dbd2e6a615b1eb93e44a4b6b44402d1bc472ec1671dc8ab1f1 188550 
libghc-debian-doc_3.69.1-1_all.deb
 e0494ee07eaa9f64d9965b25b75ac16bf9a977e5f91e7bcebe03a35e34c24b31 861372 
libghc-debian-dev_3.69.1-1_amd64.deb
 5fceb3a29612bb8c28904ef654878f4244d781b4fe93eb95a6366286d5fd8703 828312 
libghc-debian-prof_3.69.1-1_amd64.deb
 76b52002b609724a9786c3b05807248d40f18b9fe1a38182b91089021f6b4a85 3187938 
haskell-debian-utils_3.69.1-1_amd64.deb
Files: 
 777bcec04c30d7bf06a11f83e90fd2f6 2580 haskell extra haskell-debian_3.69.1-1.dsc
 0f21ff69f2b74895e7a562fb537e15df 54629 haskell extra 
haskell-debian_3.69.1.orig.tar.gz
 09476e52db6a64bd58c875e2bfb3aaa3 4792 haskell extra 
haskell-debian_3.69.1-1.debian.tar.gz
 fda4aa6a6b64459cd32a90efffd7a084 188550 doc extra 
libghc-debian-doc_3.69.1-1_all.deb
 9bab54d7cecf51bbcfc09e594b93bd47 861372 haskell extra 
libghc-debian-dev_3.69.1-1_amd64.deb
 049cb5c01d6c6fcf42ff8bc1446c0148 828312 haskell extra 
libghc-debian-prof_3.69.1-1_amd64.deb
 9b3b96355a21a59d6f3d65b51d5d2173 3187938 devel extra 
haskell-debian-utils_3.69.1-1_amd64.deb

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

iEYEARECAAYFAlC7MTMACgkQ9ijrk0dDIGy/MwCffABcRdKZyxf554J4DeR2GKbw
lRMAoLTiVFyRxjgQT9MwcBO4vEYekS0j
=5nT0
-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/e1tf7jg-000423...@franck.debian.org



Accepted blcr 0.8.4-3 (source amd64)

2012-12-02 Thread Alan Woodland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 2 Dec 2012 12:17:58 +
Source: blcr
Binary: blcr-util blcr-testsuite libcr0 libcr-dbg lib32cr0 libcr-dev
Architecture: source amd64
Version: 0.8.4-3
Distribution: unstable
Urgency: high
Maintainer: Alan Woodland awoodl...@debian.org
Changed-By: Alan Woodland awoodl...@debian.org
Description: 
 blcr-testsuite - Userspace tools to Checkpoint and Restart Linux processes
 blcr-util  - Userspace tools to Checkpoint and Restart Linux processes
 lib32cr0   - (32bit) Libraries to Checkpoint and Restart Linux processes
 libcr-dbg  - Libraries to Checkpoint and Restart Linux processes
 libcr-dev  - Development files for BLCR
 libcr0 - Libraries to Checkpoint and Restart Linux processes
Closes: 638339 690072
Changes: 
 blcr (0.8.4-3) unstable; urgency=high
 .
   * Preparing for Wheezy release
   * Drop -dkms package entirely since no kernel support anyway,
  userspace library will behave sanely still (Closes: #638339)
   * High urgency because of RC bug fixes
   * Conflicts with older -dkms package to force removal on upgraded systems
   * Drop recommends to suggets (Closes: #690072)
Checksums-Sha1: 
 72063b01dba9ce18b67e314e9d9882518057daaa 2038 blcr_0.8.4-3.dsc
 d4e6fddeca3083da21951899cf5fcd74ee8f627d 691828 blcr_0.8.4-3.debian.tar.gz
 e3610a0ac9778b19718a639540cc4ef722edd36b 43076 blcr-util_0.8.4-3_amd64.deb
 722b672c523d90d51082d8599171cbc0ae74e4d4 350012 
blcr-testsuite_0.8.4-3_amd64.deb
 851b8ea211167b3e549f3cf01a170bdc97c5eba0 37140 libcr0_0.8.4-3_amd64.deb
 a3ed961f9645589738fa710dfc76e7495f912653 1133304 libcr-dbg_0.8.4-3_amd64.deb
 af7acb6cbc91fd2d2dc1206c6d9e1e7c5e619d7e 36678 lib32cr0_0.8.4-3_amd64.deb
 b68e211e20cfc2ff71d263dc062e6bd68806eaa6 43008 libcr-dev_0.8.4-3_amd64.deb
Checksums-Sha256: 
 0d15518e6a407319fab4b42a66c22146efcf4f2c728fd4708679f3290f1d6cdf 2038 
blcr_0.8.4-3.dsc
 e174df3b31159b5ef203530dd7d075b9bc6325a287e528edb0816fcc0f837689 691828 
blcr_0.8.4-3.debian.tar.gz
 4ec0142091e13ae297768bc44a426877261713a2ad705d5c60ecdc49d3bca2bc 43076 
blcr-util_0.8.4-3_amd64.deb
 808a903f2c8f3451a4a4893eb3aa8cb2b1b7873f6ecc4f19a58301ee913d7853 350012 
blcr-testsuite_0.8.4-3_amd64.deb
 a4bc2932689efdbfadee5ad38ab7969309400614342509593c255c2432b541fc 37140 
libcr0_0.8.4-3_amd64.deb
 366ca9b99d198e5049ffe85470c5a33255953884c1dcb5bf20b89b85a42e196f 1133304 
libcr-dbg_0.8.4-3_amd64.deb
 228d7fb4a49fcf7480711a1e8f82e1276f4fed6195f1196b42f6d487943c43fe 36678 
lib32cr0_0.8.4-3_amd64.deb
 37718d976ca03964798fda3d10a2455b6e85b803052de60e64e796ed778b9135 43008 
libcr-dev_0.8.4-3_amd64.deb
Files: 
 da5bca0eb026f4bacca1e54f6733b9da 2038 misc optional blcr_0.8.4-3.dsc
 c4028b435c635bc53b9242ff9649750b 691828 misc optional 
blcr_0.8.4-3.debian.tar.gz
 7b134e5a482fbc1ddd6a475ab6c2ba13 43076 misc optional 
blcr-util_0.8.4-3_amd64.deb
 67a371a879d6bba7736dd964032e4575 350012 misc optional 
blcr-testsuite_0.8.4-3_amd64.deb
 86e174f14690309ba85edd2a7877efdf 37140 libs optional libcr0_0.8.4-3_amd64.deb
 c9290e87cb07cbd251437e7c0b42fdb5 1133304 debug extra 
libcr-dbg_0.8.4-3_amd64.deb
 f394686657355e46d4cb50e235862646 36678 libs optional lib32cr0_0.8.4-3_amd64.deb
 df31bcd95415d5930719a4de4ae1595e 43008 libdevel optional 
libcr-dev_0.8.4-3_amd64.deb

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

iQIcBAEBCAAGBQJQuzaDAAoJEFCYAhxwUYB4MkAQAK7cUMp5ldIZub8ZQV4pGrnK
USQ6B/7ZJe6pKvmtpMNp2MqOgMjGYpElwzhpRyO51FQW1mrU/zCGTINCxQoanJ6e
NEhL19PMSV5QfBpTV5AiFYeh2CD5d6R5xT4GJEbwG1xK7DBINKYKxUaewkPHczjn
GYhGNJ5ATmZKMIUeAs5zKn4Vh8Dl2BDANGgbSBoFFtJcr8XK3oX4xVQCuKHZRvtf
dkv5bEhlXK+4rFPXFs1rZUK1D97n5+VE78v0WLp6wQsxQf2agjVc7kItfDdMKh4N
OEP7q7QmX4gGnVIuOuSU2udoMwYGHrH0b5BJkxf3hetGiUn6oSRLhxg4hDBXjvDb
EgU28RfRad1QnjiCKYCaePF5jGqGmxQ/tUwCZa0FGp4NAKMgGpoNIU0NSehyJgLi
jlHd4uD+oQn6ry4wbM26n/KU42I1YHc6qWiDw4MAXaSR57dy2oOeYGlHeI3Pbi53
xZovGVKszOhLcDOu3qgtdQ+TFH6jdm/OiWHTMEdems5ovEWmtJjASkilMIJWNYmo
9q/PTBPN1JVl17rQ6daJXWBR6jVGs7bLJE/xRse0IXPpakWy3uQ6/DBbOjcir6aF
uRA8ExUtjwQ/3AzrqMr4IiNAQumFP5duKBtlmnPfGHUQ+mHBfeQm6YZSdx8lnMMT
/Ga9zz3EYGrpFFpc+kmC
=Pe+O
-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/e1tf7yg-0007cw...@franck.debian.org



Accepted haskell-haddock 2.13.1-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 12:04:01 +0100
Source: haskell-haddock
Binary: libghc-haddock-dev libghc-haddock-prof libghc-haddock-doc
Architecture: source all amd64
Version: 2.13.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-haddock-dev - documentation-generation library for haskell
 libghc-haddock-doc - documentation-generation library for haskell; 
documentation
 libghc-haddock-prof - documentation-generation library for haskell; profiling 
libraries
Changes: 
 haskell-haddock (2.13.1-1) experimental; urgency=low
 .
   * Depend on haskell-devscripts 0.8.13 to ensure this packages is built
 against experimental
   * Bump standards version, no change
   * New upstream release
Checksums-Sha1: 
 f54f8c6850874ff08dfd2674ce619d3eeae1f661 1817 haskell-haddock_2.13.1-1.dsc
 1df877f81412b6f910f362767e01286da9337236 176831 
haskell-haddock_2.13.1.orig.tar.gz
 ae26992f27ec018e55480617640e003cecd974dc 5477 
haskell-haddock_2.13.1-1.debian.tar.gz
 5c9cf552c2152b6e939b7f7b7e9330cc7761d1a9 269766 
libghc-haddock-doc_2.13.1-1_all.deb
 45760c99baae3d669fd980b25c8a26cc89c381f9 1408634 
libghc-haddock-dev_2.13.1-1_amd64.deb
 c0cc55fa8f40b592aed2b4369af2fc01d15d9ca1 1330760 
libghc-haddock-prof_2.13.1-1_amd64.deb
Checksums-Sha256: 
 2b8a7e743a139568adc8a0338ad02ea9f8bf01a63297851e29bd942fe571c7e3 1817 
haskell-haddock_2.13.1-1.dsc
 6e5e2295cd191e43a046c12544f2f4e8b4260cfda8282d48b15a7a35d8a24e7f 176831 
haskell-haddock_2.13.1.orig.tar.gz
 6bd063ec1237ac526ff314822a2d715df44f4c772669ab40b4d55bdf44e864f4 5477 
haskell-haddock_2.13.1-1.debian.tar.gz
 44c4596e0c999d1252bb3dd903e6350dd39840348371187243e82914fa508d49 269766 
libghc-haddock-doc_2.13.1-1_all.deb
 96836ed2a9b233119d3d3029a25339e785ed4c56d0e8777a326d07ca8022e404 1408634 
libghc-haddock-dev_2.13.1-1_amd64.deb
 289748051cc9ce740d22cd61f51adb84adf8e5f40aebe4fd9e5708c7409a85ff 1330760 
libghc-haddock-prof_2.13.1-1_amd64.deb
Files: 
 69c16edac26dc637a643d60ddf4e4554 1817 haskell extra 
haskell-haddock_2.13.1-1.dsc
 331973cb8e33edf79e2f3c3c95a73a5f 176831 haskell extra 
haskell-haddock_2.13.1.orig.tar.gz
 312d72b3ce5af80dbb458002d6768988 5477 haskell extra 
haskell-haddock_2.13.1-1.debian.tar.gz
 2404fe96a8edca27b471b9e4501c8de7 269766 doc extra 
libghc-haddock-doc_2.13.1-1_all.deb
 2f0694ae2b60fddf2ca4a67dd3842453 1408634 haskell extra 
libghc-haddock-dev_2.13.1-1_amd64.deb
 d37df97763cecfa4ea3b709b3fa84122 1330760 haskell extra 
libghc-haddock-prof_2.13.1-1_amd64.deb

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

iEYEARECAAYFAlC7NvwACgkQ9ijrk0dDIGwdLwCfZ5Lw3zGl3WeRwCXpFUULz8gB
qlUAniye5usx0CLwjIN9hut2vsIJS4ut
=PwoX
-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/e1tf7yn-0007jy...@franck.debian.org



Accepted haskell-smtpclient 1.0.4-5 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 11:51:12 +0100
Source: haskell-smtpclient
Binary: libghc-smtpclient-dev libghc-smtpclient-prof libghc-smtpclient-doc
Architecture: source all amd64
Version: 1.0.4-5
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-smtpclient-dev - Simple Haskell SMTP client library - GHC libraries
 libghc-smtpclient-doc - Simple Haskell SMTP client library - documentation
 libghc-smtpclient-prof - Simple Haskell SMTP client library - GHC profiling 
libraries
Changes: 
 haskell-smtpclient (1.0.4-5) experimental; urgency=low
 .
   * Depend on haskell-devscripts 0.8.13 to ensure this packages is built
 against experimental
   * Add extensible-exceptions build-dependency
Checksums-Sha1: 
 dfd1e8504c8f0f82e7add94630abf37753870a77 1968 haskell-smtpclient_1.0.4-5.dsc
 f87bc9222bac4c9f312a75ce386f7d83946e4c33 2773 
haskell-smtpclient_1.0.4-5.debian.tar.gz
 e21ab851ccb70f18dda1bb1d41a93974f0b61d67 59076 
libghc-smtpclient-doc_1.0.4-5_all.deb
 5d4ac2a5983d9ea23df99abf4612f6a5ac09b50a 83478 
libghc-smtpclient-dev_1.0.4-5_amd64.deb
 b114a8af498f19285bc4ff261f894184dbd5b608 82006 
libghc-smtpclient-prof_1.0.4-5_amd64.deb
Checksums-Sha256: 
 b7edec2f268979e4bf50a2ab302d9b179cf620377dbfbc259c3b12a40487d49d 1968 
haskell-smtpclient_1.0.4-5.dsc
 dd91230113f95dd0d7968e4f29f4e7b3a9bab6df0fa0fe06c900e35b50acd9e7 2773 
haskell-smtpclient_1.0.4-5.debian.tar.gz
 42136fc7284b3fa1a7cb859797568484e865b0629491bc1c80d560569d099578 59076 
libghc-smtpclient-doc_1.0.4-5_all.deb
 687a85693c20a55d051e1836044ddac548517b6f6a66eac2a51da2f255ddd0bc 83478 
libghc-smtpclient-dev_1.0.4-5_amd64.deb
 3de4d3ccc82505b544657eb9b813330dec8a1fcf45aca24e1ff25d9e858ee6c7 82006 
libghc-smtpclient-prof_1.0.4-5_amd64.deb
Files: 
 6810657798d09471eaea16c9dac6d773 1968 haskell extra 
haskell-smtpclient_1.0.4-5.dsc
 5142962437bec116451d7fe3f62f8188 2773 haskell extra 
haskell-smtpclient_1.0.4-5.debian.tar.gz
 421912964917870ec0f4ed3fdb1bdf16 59076 doc extra 
libghc-smtpclient-doc_1.0.4-5_all.deb
 6a67366a8ffedad35ad3f7bb01aeb500 83478 haskell extra 
libghc-smtpclient-dev_1.0.4-5_amd64.deb
 a33fe52a1b31f90c57d9299d282dce11 82006 haskell extra 
libghc-smtpclient-prof_1.0.4-5_amd64.deb

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

iEYEARECAAYFAlC7NzMACgkQ9ijrk0dDIGwliwCeIugaauQ1/TUXwoNCCJgA1Ube
+nAAoJ2h6GXHXL7/20ZCbn6QZWru98IN
=XusQ
-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/e1tf7yt-0007qc...@franck.debian.org



Accepted debian-edu-config 1.702 (source all)

2012-12-02 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 12:20:39 +0100
Source: debian-edu-config
Binary: debian-edu-config
Architecture: source all
Version: 1.702
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: Petter Reinholdtsen p...@debian.org
Description: 
 debian-edu-config - Configuration files for Skolelinux systems
Changes: 
 debian-edu-config (1.702) unstable; urgency=low
 .
   [ Mike Gabriel ]
   * In gosa-create script: Invalidate libnss cache before applying chown
 on new home directories. Fixes multiple failures during mass user
 import into GOsa².
   * password-fix-squeeze-r0: allow home[0-9] as home directory.
   * Fix smbaddclient.sh, use ,,set +e'' instead of non-bash-syntax
 ,,unset -e''.
Checksums-Sha1: 
 a208c435c0b43c33852c48ebb492b301d491aed6 1274 debian-edu-config_1.702.dsc
 c47e2bcd278fec4e521cad51740b504c114c 474598 debian-edu-config_1.702.tar.gz
 b7b38ae6d3019dca45f8712c220260252fefeb7f 392410 debian-edu-config_1.702_all.deb
Checksums-Sha256: 
 5aa55ccc935abf193e6dee699f1199bd5c3815b5890bb8ca7898ac1bb4ed46ec 1274 
debian-edu-config_1.702.dsc
 788a9d9a5db3cacb1b66e5d5812e8baf4d5943ae32bf831d8ae4ec4c031bede2 474598 
debian-edu-config_1.702.tar.gz
 c3a9f65e722be0f817d36ccf3f03d3a8d03dac3d3c3e696c0782d404f08e2f4d 392410 
debian-edu-config_1.702_all.deb
Files: 
 381216f677c9c95ad6c00beba395ceb7 1274 misc extra debian-edu-config_1.702.dsc
 dfc43ac72c83d0d3ebe6dbcfa561ae54 474598 misc extra 
debian-edu-config_1.702.tar.gz
 6401fc09291ddb6622dacf95b795e2bc 392410 misc extra 
debian-edu-config_1.702_all.deb

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

iD8DBQFQuzo/20zMSyow1ykRAie5AJ9lqm7J2BfdSgbQp+UnVucgCSkzEQCg00Yi
jqGMQlbPTFtScYAZNFI9Ujo=
=c0lj
-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/e1tf7mi-0001ur...@franck.debian.org



Accepted xflr5 6.08+svn531-1~exp1 (source amd64 all)

2012-12-02 Thread Koichi Akabe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 25 Oct 2012 21:48:12 +0900
Source: xflr5
Binary: xflr5 xflr5-doc
Architecture: source amd64 all
Version: 6.08+svn531-1~exp1
Distribution: experimental
Urgency: low
Maintainer: Koichi Akabe vbkaise...@gmail.com
Changed-By: Koichi Akabe vbkaise...@gmail.com
Description: 
 xflr5  - analysis tool for airfoils
 xflr5-doc  - xflr5 documentation
Changes: 
 xflr5 (6.08+svn531-1~exp1) experimental; urgency=low
 .
   * New upstream release
   * debian/control
- remove DM-Upload-Allowed
- update Standard-Version to 3.9.4
   * debian/patches/01_set_targetpath.patch
- update the file path
   * debian/xflr5.docs
- remove because the upstream ReadMe was removed
   * debian/watch
- move comments from debian/source/lintian-overrides
Checksums-Sha1: 
 cd213b6f4d94373ddb94bebe0d2bf116bed919d5 1889 xflr5_6.08+svn531-1~exp1.dsc
 642d93c2366fd41ab78d7cee6557626eb9d0fb49 1628348 xflr5_6.08+svn531.orig.tar.gz
 c6c5c4860d719dedc41917029349164b1fbf34c5 779777 
xflr5_6.08+svn531-1~exp1.debian.tar.gz
 480baf4ec7251cc8e67ef84a2b685271e83997cd 1527892 
xflr5_6.08+svn531-1~exp1_amd64.deb
 4cf0dd109a456ed8f9acc8da4284be8a6468cbc3 777436 
xflr5-doc_6.08+svn531-1~exp1_all.deb
Checksums-Sha256: 
 cf51e0828152cf2a564bf215e6d3631042a1de95cb31894041b2d7e23831e967 1889 
xflr5_6.08+svn531-1~exp1.dsc
 501dc73243d58025f8b9f2ca8e0ba0969f8f4cea5bc9676909b37f4239755fd7 1628348 
xflr5_6.08+svn531.orig.tar.gz
 56372413cc7f923968e5ba86576e8cf98535289b6973daf06cf421b0af213d6d 779777 
xflr5_6.08+svn531-1~exp1.debian.tar.gz
 9577a3d0fdedb1afe61745c01fd4492b685f14bc44468d9f1640c5b0b196f8c1 1527892 
xflr5_6.08+svn531-1~exp1_amd64.deb
 fe1c2be52a8c922a1ac762e56722c627400a8d3b0827ac040455625b9b7d49cd 777436 
xflr5-doc_6.08+svn531-1~exp1_all.deb
Files: 
 42ea6fce420a91c5d3de9821621062d4 1889 science extra 
xflr5_6.08+svn531-1~exp1.dsc
 9a56e66b44ef0a2dba506d279d0b6a51 1628348 science extra 
xflr5_6.08+svn531.orig.tar.gz
 1f71a969168dafe01671774508f6e0d9 779777 science extra 
xflr5_6.08+svn531-1~exp1.debian.tar.gz
 71055631189178acfdba5e7b513094fb 1527892 science extra 
xflr5_6.08+svn531-1~exp1_amd64.deb
 755379b9cf86c2afb8a1601d084b8e9d 777436 doc extra 
xflr5-doc_6.08+svn531-1~exp1_all.deb

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

iQIcBAEBCAAGBQJQuz4JAAoJEOQCFSmchA6BoPsP/RUwYv4GWf5jE3JshKAVkcdf
UPLLoMOz9K5KQcO9fjLQhxlm0gnZApGjhjS4vnpgh0mnt5nWTo6lEtZfLBU86mIm
QC37/ejeavpPTVT93XGCcQqon4IXxUhzPCPNp8O8zudJ2zvgnOa5GehsOcbf68sF
XwSpP478xRL7xY9QxdAONFfBIvF/eongV/0FhDrzzD4MvUf4u0fPLyQUppMx6KCk
YHVNWM5A3LS9P6in4bp3ZFyGOSVjVO0BE9MdnTdKy5uqDhK6oDMKvHWCSC9rAQ4Q
4ykP83zQM3EG0kRpLNa2jXXSG75Gad34VzU+OSQ8z/pNO8EYs8mVJia5IzNs1E5L
VtVGpye01fcEHq8EDcihhgr+0acgK95tKe4nchwiTaS046m4JKfPIGL5oJwxaXf9
jcNqvTEnMWCSZRXB1t4mdS5kgmcLNq8zxG+ZWtHNhj99MLORTiVdj0CnSDNbTS9M
iuKuSLctPM3xl3/R0iO5Cfew5b+jS51d68jSMpUDFgMSQMG/qm6EBI5nAa5BpCx1
FspzML1BOEgfxIWnnvg4pLOrGuDQsjzexZ7Xml6ytTuFQMDP1DNOum/c+XUNpkDr
BGWNVpIw7UkGa71hn0kNtXePyB6PXHGArknAYZUf+pGXBcvhYnZQ0mMKHro67FP+
LNMk2r2NuLjiTJFrLU+H
=9Vr9
-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/e1tf81a-00052o...@franck.debian.org



Accepted picosat 953-1 (source i386)

2012-12-02 Thread Michael Tautschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 11:32:09 +
Source: picosat
Binary: picosat
Architecture: source i386
Version: 953-1
Distribution: unstable
Urgency: low
Maintainer: Michael Tautschnig m...@debian.org
Changed-By: Michael Tautschnig m...@debian.org
Description: 
 picosat- SAT solver with proof and core support
Closes: 694592
Changes: 
 picosat (953-1) unstable; urgency=low
 .
   * Bumped standards version to 3.9.4 (no changes)
   * New upstream version (closes: #694592)
   * Converted debian/copyright to DEP-5
Checksums-Sha1: 
 3d109cc61074d4170a213744f6fbb7029f58b2da 1037 picosat_953-1.dsc
 6040155c929e50cdaaf95c76e37624c41cc9bf0f 62810 picosat_953.orig.tar.gz
 3eeb47acad9e3f37be679c4d01a4d85a4e72495b 5818 picosat_953-1.debian.tar.gz
 09f5e5ea7d3d7def762882857cb0ca3a4b931a7b 333436 picosat_953-1_i386.deb
Checksums-Sha256: 
 ff6c2e23a68c1990ce2a635285a506f418644c895369544b331802cc714c1a09 1037 
picosat_953-1.dsc
 bf26f7f3b10ef196ebd9b4a8c944c58fa9d76fd937b3b2cf1468c365231a02bb 62810 
picosat_953.orig.tar.gz
 f240e58a17c0874af14bc98cf35d81b1df6414ec0ca904acc6f83da7104266aa 5818 
picosat_953-1.debian.tar.gz
 0d02e176b9ca99e62bf2a45b9d58f0e643b343b2cb50de396a29d8a0d5ddff85 333436 
picosat_953-1_i386.deb
Files: 
 1e5bbd0a7a00af19db8073aab6d3ae87 1037 science extra picosat_953-1.dsc
 490d75626689621559b868c3ce76f7b2 62810 science extra picosat_953.orig.tar.gz
 5c8a1ff131eff18aa2738c6c73a0acb6 5818 science extra picosat_953-1.debian.tar.gz
 2551d8b3b1ed8aef01b765064c7bd28b 333436 science extra picosat_953-1_i386.deb

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

iEYEARECAAYFAlC7QUcACgkQvx6dH3bVKsR/YACg5UaH9P5hbVx8m1JysMWygSPd
xcwAnRBxPtuVv1sW/PwWGUFNIMoBHkEE
=5XO7
-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/e1tf8fo-00082p...@franck.debian.org



Accepted picosat 953-2 (source i386)

2012-12-02 Thread Michael Tautschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 13:18:49 +
Source: picosat
Binary: picosat
Architecture: source i386
Version: 953-2
Distribution: unstable
Urgency: low
Maintainer: Michael Tautschnig m...@debian.org
Changed-By: Michael Tautschnig m...@debian.org
Description: 
 picosat- SAT solver with proof and core support
Changes: 
 picosat (953-2) unstable; urgency=low
 .
   * Actually bump standards version to 3.9.4
   * Added symbol files
Checksums-Sha1: 
 4bca3d3d9b5b17a68dbe45305101d91bf5b58fd1 1037 picosat_953-2.dsc
 ac36a919bdda75da28b5a9e04bf480d29bf0e81d 6462 picosat_953-2.debian.tar.gz
 1e5c0ab28860a0cef154328fdf9a71d7d8130767 334222 picosat_953-2_i386.deb
Checksums-Sha256: 
 723e6955e687f6ede78f842f29dee7b9406c78b70f0b5c7665d7b27991cab12c 1037 
picosat_953-2.dsc
 5ef5a9e3ddf16d185d2b425c917525c61edfd54b2de1f64e1ab94398575a320b 6462 
picosat_953-2.debian.tar.gz
 a0a394ff3cfae4d5427ee7da370b9bf7b7a3d71566bfa2708de3b8da9a657f2a 334222 
picosat_953-2_i386.deb
Files: 
 c0ff84e051c90d8d84d587bfdce6b8e9 1037 science extra picosat_953-2.dsc
 091285877fd41811f63d611154255eae 6462 science extra picosat_953-2.debian.tar.gz
 b1bf79fd31b58861a9c459e9970205ac 334222 science extra picosat_953-2_i386.deb

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

iEYEARECAAYFAlC7WAgACgkQvx6dH3bVKsSqwACg6s7nI87s7NLdcwiWSUAUj5Na
0EQAoNh4W6LHo5V59aJE9PO2rucXHVpF
=BMoZ
-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/e1tf9tk-00023i...@franck.debian.org



Accepted clasp 2.1.1-1 (source amd64)

2012-12-02 Thread Thomas Krennwallner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 28 Nov 2012 10:35:53 +0100
Source: clasp
Binary: clasp
Architecture: source amd64
Version: 2.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Thomas Krennwallner tk...@kr.tuwien.ac.at
Description: 
 clasp  - conflict-driven nogood learning answer set solver
Changes: 
 clasp (2.1.1-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control: Bump Standards-Version to 3.9.4 and Build-Depends on
 libtbb-dev = 4.0+r233.
   * debian/copyright: Update copyright years.
Checksums-Sha1: 
 e4712f8a6c977ba3df65113182daf42ebe8f3f68 2015 clasp_2.1.1-1.dsc
 4c2bc5fc4b7c9ccfc461dc86a1d449a337602dfe 396360 clasp_2.1.1.orig.tar.gz
 ae5d4561e74ed5dc149e1be8cc6fbc2259c0f217 6467 clasp_2.1.1-1.debian.tar.gz
 6368727ecc45f148993eb2a674caaaefe27a6fe0 433800 clasp_2.1.1-1_amd64.deb
Checksums-Sha256: 
 6fd8e0f69406be89351bfd7d21b8502ce2524bfb452813840d4b9c8b29881d0a 2015 
clasp_2.1.1-1.dsc
 b597465f3d4de8475e5751408edd00384d0f5c46b05c1fe23bef1b4b06d7d6a2 396360 
clasp_2.1.1.orig.tar.gz
 dc03a72f996ededde19d8bf1554a236289bca336b9081817a7864e977035237e 6467 
clasp_2.1.1-1.debian.tar.gz
 222bd2da9405576fc18d954ede42d8b28a37dd2941cf21c2c6653c9e51d6b517 433800 
clasp_2.1.1-1_amd64.deb
Files: 
 f8d5c03997f6b033840d194f21d8b216 2015 interpreters extra clasp_2.1.1-1.dsc
 2de90b696b581f398c1772e80e9e8c71 396360 interpreters extra 
clasp_2.1.1.orig.tar.gz
 1ed599a157be5c34805b692230294a95 6467 interpreters extra 
clasp_2.1.1-1.debian.tar.gz
 ac1115e6b7de7a317d9b06cabdb9553f 433800 interpreters extra 
clasp_2.1.1-1_amd64.deb

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

iQIcBAEBCAAGBQJQtdudAAoJECeX33SmZpqpYL4P/R15qmx3X7Ea+q0YTC6tKJP6
C7CTuEiLT2P0tb9Miz7hEMmw+MZM7JKm8i4SS+A88cHKwFLhMLlrqInf7fgH5He7
dRwFasKSTGqplQd/IyoT1yvc7QzySzVZCgY5psz+gIbMwPJDM/M9hHz9oSMA45DM
/cZXTMx0PE8FDSJV7zC5SFsc5DlkEKWeipHGCsJ6Qa4p9YwJN2C8sPlgOjoA8Cgm
f8xRIS/+R6DdEhjoIyTCHiQp3XsEA99OguBarcAY9LmuZXF9HcvPS/CtRRRCFZK/
iW+imlffWXXMU8kTFiQziLkS+63495YmNWOyw/t6zUjohLotjdyZ7FncNw144dWu
v9ya9eCas2PYB4/Oc1Wu34FBHeryDRFzL/SROZq5fPdUJzydGnua56BvEVgMQhG6
ZieN+d7ur7enllkFCr9xc1Grz0k7KaOwM3/moOmJkWrRqtYEJjGmwb9/kwp5Td71
h18epqmmKO2cHkVREMAwpeLfLqhjT4OApcmTQ+WLACSbwe58uosOVlo4LAMyQhgw
4aaFsEsRJpRsQ+Umyj29MVcYfkSUt6qdt3JKAnZL2Y7Ovkqe2j0tgLUGdNjihIYK
nAwb2a3S6iHVVh2o0qUKeIRvnEQ7b8EylxOBbjh1Y73LfwCTV4oP4HvV7mEQSI3d
Xz4ff5CbMpAj/JF5IBWB
=9i9H
-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/e1tfapq-00024a...@franck.debian.org



Accepted diagnostics 0.3.3-2 (source i386)

2012-12-02 Thread Michael Tautschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 13:10:32 +
Source: diagnostics
Binary: libdiagnostics-dev libdiagnostics0
Architecture: source i386
Version: 0.3.3-2
Distribution: unstable
Urgency: low
Maintainer: Michael Tautschnig m...@debian.org
Changed-By: Michael Tautschnig m...@debian.org
Description: 
 libdiagnostics-dev - Logging, unittesting, and runtime diagnostics for C++ - 
developme
 libdiagnostics0 - Logging, unittesting, and runtime diagnostics for C++ - 
library
Closes: 621225 638470 652201 667150 687559
Changes: 
 diagnostics (0.3.3-2) unstable; urgency=low
 .
   * Acknowledge NMU (closes: #667150, #652201, #638470, #621225)
   * Update watch file (thanks Bart Martens)
   * Disable stacktrace for arm-linux-gnueabihf (closes: #687559)
   * Bump Standards Version to 3.9.4 (no changes)
   * Properly pass buildflags
   * Updated upstream URL (and removed VCS)
Checksums-Sha1: 
 b8b84e38e477b2ea56385ac8397a7bdc8006548a 1272 diagnostics_0.3.3-2.dsc
 03aeb4decef66aa4fa191c07abc7d5642f03ccfe 12184 
diagnostics_0.3.3-2.debian.tar.gz
 a5a6fd125f0565477f4bfd5c4c805c556b81fab4 286568 
libdiagnostics-dev_0.3.3-2_i386.deb
 5a297b1f77938491b7ca49ab6056a10662e5a3b2 118178 
libdiagnostics0_0.3.3-2_i386.deb
Checksums-Sha256: 
 9f0cf0d9ed033842789ae521c396b8214ab2201a9d377fadbe442f520196d300 1272 
diagnostics_0.3.3-2.dsc
 b982edd63b2a6d9b2ba09076f270618d51653da72a8d135e1cf3568b8faf 12184 
diagnostics_0.3.3-2.debian.tar.gz
 d884762b1b1ee4b854390675b27ca03aec40e300da04739ddccc294f316ef11c 286568 
libdiagnostics-dev_0.3.3-2_i386.deb
 d14d732ab42d4c57dea175af86957509457c8cdcd7296aa948a3877334d9a729 118178 
libdiagnostics0_0.3.3-2_i386.deb
Files: 
 7f87742bce774b15e8f02cfd225f2a54 1272 libs extra diagnostics_0.3.3-2.dsc
 4326f725a6f1abedaad574f0c98c6aa8 12184 libs extra 
diagnostics_0.3.3-2.debian.tar.gz
 2f6529e0af2dfa46a9afa735673b8b8a 286568 libdevel extra 
libdiagnostics-dev_0.3.3-2_i386.deb
 9f2f2ff1a05c8027009c839a323d3415 118178 libs extra 
libdiagnostics0_0.3.3-2_i386.deb

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

iEYEARECAAYFAlC7XEYACgkQvx6dH3bVKsT25QCg7wDW6VgM/rZuVGKyILskmKyJ
ah8An32Xj/ksmPNfRSMXfmpM5x7wc+xM
=m786
-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/e1tfapx-00028i...@franck.debian.org



Accepted jpnevulator 2.1.1-1 (source amd64)

2012-12-02 Thread Freddy Spierenburg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Aug 2012 21:20:35 +0200
Source: jpnevulator
Binary: jpnevulator
Architecture: source amd64
Version: 2.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Freddy Spierenburg fre...@snarl.nl
Changed-By: Freddy Spierenburg fre...@snarl.nl
Description: 
 jpnevulator - Serial sniffer
Changes: 
 jpnevulator (2.1.1-1) unstable; urgency=low
 .
   * New release.
Checksums-Sha1: 
 adc0e9246085c78709e326fa965102f2cc598513 1077 jpnevulator_2.1.1-1.dsc
 ab83805b8db9f8354cfcfd540738b636da09d311 33576 jpnevulator_2.1.1.orig.tar.gz
 74a8fcd002fabf8c4e3f3a06d1bfd320ec3b051f 2371 jpnevulator_2.1.1-1.debian.tar.gz
 cc54a4aced19f1768e3b06086cf53f89c9a800fe 22852 jpnevulator_2.1.1-1_amd64.deb
Checksums-Sha256: 
 42d05d5bcbca7a24571471fb4ef5f30ef85ef95e7d8e63f74f0222904a00da01 1077 
jpnevulator_2.1.1-1.dsc
 61001e1921f99e5d9101eafe1df87060aca3de8ce7b27bcc1b1e59da4c9c3013 33576 
jpnevulator_2.1.1.orig.tar.gz
 6a6e4d5ed770e3b56a4dd2d5011db1d4d8aec565af4289dad22d5aa5171e377c 2371 
jpnevulator_2.1.1-1.debian.tar.gz
 436b691918ccdfcbfeffa238ef8e7f0ca6842ed0666e5ac65183b7254569ed68 22852 
jpnevulator_2.1.1-1_amd64.deb
Files: 
 9bc04d5bdbd6f04f507b1e26ff1df128 1077 comm optional jpnevulator_2.1.1-1.dsc
 db12d10f23f84aed74e98e79206819b5 33576 comm optional 
jpnevulator_2.1.1.orig.tar.gz
 a45c1cf762c000c1189f47153fe7975b 2371 comm optional 
jpnevulator_2.1.1-1.debian.tar.gz
 30ad01f61e4bac9297129ee8bbca94e5 22852 comm optional 
jpnevulator_2.1.1-1_amd64.deb

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

iD8DBQFQu2K/utvvqbTW3hMRAlDvAKCKcb548XrddOdfDnBVH+Mt8ZMQ4wCeMeMQ
2pYqpLaUDtaw56qn7taqUoc=
=N/6v
-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/e1tfapk-0002j9...@franck.debian.org



Accepted libanyevent-http-perl 2.15-1 (source all)

2012-12-02 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 02 Dec 2012 08:32:14 +0100
Source: libanyevent-http-perl
Binary: libanyevent-http-perl
Architecture: source all
Version: 2.15-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libanyevent-http-perl - simple non-blocking HTTP/HTTPS client
Changes: 
 libanyevent-http-perl (2.15-1) unstable; urgency=low
 .
   * Imported Upstream version 2.15
   * Use debhelper 8
   * Bump Standards-Version to 3.9.4
   * Update debian/copyright
Checksums-Sha1: 
 34dd8d34fc678bf1e187bc82f9cc51e899adf7a2 2213 libanyevent-http-perl_2.15-1.dsc
 3517ee3d592c364a123899abd1472c2a4e8a69ca 27311 
libanyevent-http-perl_2.15.orig.tar.gz
 34fffc9ebb6f4d4f8fc08227d9597ab4b3cd206d 2166 
libanyevent-http-perl_2.15-1.debian.tar.gz
 d3716ea0166f1d1338034f35684299acde534c7e 36118 
libanyevent-http-perl_2.15-1_all.deb
Checksums-Sha256: 
 48f018636b22e607c68f96d080b9ae762708845cc24b65b1d3cbb644bca2d92f 2213 
libanyevent-http-perl_2.15-1.dsc
 7e1467ad76a6d77bb93426e4db375b2f550e39452ce4ed9173e586987a911f30 27311 
libanyevent-http-perl_2.15.orig.tar.gz
 6117b63655946a282920e3a170df45235f20fa6a511574073d28bfcbb5daa930 2166 
libanyevent-http-perl_2.15-1.debian.tar.gz
 eb08007603d9598df4f85f99b026ed1dfd0e045bc10bc36b7ab5395be4881933 36118 
libanyevent-http-perl_2.15-1_all.deb
Files: 
 5c9c823666ff9571627e039b00047903 2213 perl optional 
libanyevent-http-perl_2.15-1.dsc
 30393cc1419bbc33c9aeaafc8d1309db 27311 perl optional 
libanyevent-http-perl_2.15.orig.tar.gz
 2fc6dc9821e2e125cb3a48b8a41ec708 2166 perl optional 
libanyevent-http-perl_2.15-1.debian.tar.gz
 b762eee1125c5648f342f5eec9f55ff5 36118 perl optional 
libanyevent-http-perl_2.15-1_all.deb

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

iQIcBAEBCAAGBQJQu2OjAAoJELs6aAGGSaoGRBgQALFNSYYgqjFPZmQ0gssPnFcH
C3vtY9aS/C4XyPm4xfQd3en408CqMaBvkyOOAzW8FtVH6/hzJCjxJQ9b2Iw2H5Qc
25tPsalQU4UINmV3oYfxvK8FRq2W+tlVjAd1gqLKvP25+tIngdWr733o3n/3NwPd
AIzpyqWKjXL7MNvP8iECx6POTdB4ZrMB5eK0HHobbR7G6lzcMJkLSezw+BsX4kBJ
d9U3pukzcPxnfs6X8YV9LD1c1MQVHi7dGKwQT6lfEfpuJibo0KermfOpoz+ht6xa
sCj+K/yMLd/eK7iee/lnVIhVTX7XUdj0ii27EdBrOUTOzUirDhlip6GkbrJvtXZl
D+4dYIfD4K145hsEJZjlvrBg5vmovBI0FmlHTbaICo6hf4WIt8uBswdrS9Luqp2y
NHc0dsZB/7HwikyZ+z35iyx84sSE0zJdVWrFiegu5v3rR3NaJhdiI6AZdr/a7wWF
zTP+LG67Fp6RXsw4n5jSbL9HU4VMVkSeTBmjLKuVhDtwwmW6RisQFgX2mEa1Xt93
dLpMaks2JlCgemV43Agps4GpAUt4mXEddSB0dkMz/OcBoO8j0aKHXFiR/1rLrVnU
Qnfw+oCV5s2N6qwIaLjve+rdcGRuhGKKpA+D/lI44DGRjNOTXAH0wPGHsnk4oGoc
6U+eyyPvYWPz7lGf9PPP
=c6ti
-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/e1tfapp-0002mv...@franck.debian.org



Accepted libanyevent-perl 7.040-1 (source all)

2012-12-02 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 02 Dec 2012 09:03:32 +0100
Source: libanyevent-perl
Binary: libanyevent-perl
Architecture: source all
Version: 7.040-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libanyevent-perl - event loop framework with multiple implementations
Changes: 
 libanyevent-perl (7.040-1) unstable; urgency=low
 .
   * Imported Upstream version 7.040
   * Bump Standards-Version to 3.9.4
   * Use debhelper 8 instead of 9 (non binary)
   * Update copyright years
Checksums-Sha1: 
 0954139b9015e6cf20d02a653c9c6b009d2cfc0c 2415 libanyevent-perl_7.040-1.dsc
 305f7c1de2a30b549782721615828f8a8ab15986 286523 
libanyevent-perl_7.040.orig.tar.gz
 a772227e992c47d9e3eb9bb46d40b0bf6d9e37c9 7357 
libanyevent-perl_7.040-1.debian.tar.gz
 e054b70d5ba481799d9d277594064f14cbabccf4 441658 
libanyevent-perl_7.040-1_all.deb
Checksums-Sha256: 
 01c94bd86e165a0116bbb31d8ca6f2703bf2783c8ac4db3f2c0e30b174fd4b60 2415 
libanyevent-perl_7.040-1.dsc
 6a9d94fa61c7f5dc515c834eb224dbc6ce4123da8fd5bfa0cf3815f3f3e908b2 286523 
libanyevent-perl_7.040.orig.tar.gz
 b590c750a417540d81844ba787bb8053bc8a1a61e5ce664b061bc94bb4047a05 7357 
libanyevent-perl_7.040-1.debian.tar.gz
 33f9c5a1575185d971674bbd56f80a0122b5299b884709c6918e04b1f6bce447 441658 
libanyevent-perl_7.040-1_all.deb
Files: 
 6f7e1968a5ae5587e77e4dd986cad212 2415 perl optional 
libanyevent-perl_7.040-1.dsc
 89c74c94f5b145b5330236708c5b0083 286523 perl optional 
libanyevent-perl_7.040.orig.tar.gz
 a5db2c40ea9136a4251c002285b2bb56 7357 perl optional 
libanyevent-perl_7.040-1.debian.tar.gz
 7e8d51b531cb6fff1e15ff776714d7ce 441658 perl optional 
libanyevent-perl_7.040-1_all.deb

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

iQIcBAEBCAAGBQJQu2ViAAoJELs6aAGGSaoGJrEQAKZ2WCwKrooj6D3XZiGYQnEf
zCzDvg5LzS0AtAMIKXjZb0loCBJ8A+99HMKW5QVEhsue99sifyVrHQzIPufeziW2
jG9l0WuFrSQ5oMOS9wiah1p6Bwf9KSqYdlGT2HW61acmrESywJwBWd7oWn/X8q6d
lCOQ86sjohCBUQrnfWluhkSBLbn6uE2HyMmmVSkREM7KbXBPPTONNrXgtVVLR0dx
lGzKXH0EzxfkC1rPzndVlDiJVVjLtXJim7RnNZ+22rK9sC2jcEma0USY13ywHL8z
2bE5XCJZ1IhnY7I3YRHbgazRlj6O3ojIGpiBiOCLRTZc7ZylZxjb+Jpu6UixbgoD
v/y0XC5dQi82YTa+T7k7YZYAnEVcq8IMmh5seKySceTEYJMHo3ul5oHQTEoGsz0r
fb0yD/SFB62paapUkSBK5/8NN3q+FTu7aHyjKHoDN7/X53L8QlEsOcEVynnsWDy3
+DR2NyZkY3CEc1SYm+n8tT4/AaTz4smkfqQ39+FfHck98DrPx+0dWoKCOR+4NIoG
lY26Ml51YQvQokgfvVmOPlYFSXiDrYKRs3JfWCNMajW8vEomJP/+FH9saUtw4+tl
6+1SZuoUtUCE5wz8O0EkDeA9UDYDZgz+u1iDR6G/y3Zwdf5mnwGbJjNKYe655VHE
Xz5Ry/MOuWXY+DPQJeeh
=QKt5
-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/e1tfapu-0002pi...@franck.debian.org



Accepted libdatetime-timezone-perl 1:1.56-1+2012j (source all)

2012-12-02 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 02 Dec 2012 15:11:59 +0100
Source: libdatetime-timezone-perl
Binary: libdatetime-timezone-perl
Architecture: source all
Version: 1:1.56-1+2012j
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libdatetime-timezone-perl - framework exposing the Olson time zone database to 
Perl
Changes: 
 libdatetime-timezone-perl (1:1.56-1+2012j) unstable; urgency=low
 .
   * New upstream release, based on version 2012j of the Olson database.
Checksums-Sha1: 
 dd526eac7ab7db3f709a7b26c8d75faa3c9e7699 2414 
libdatetime-timezone-perl_1.56-1+2012j.dsc
 3fd5f96731328bd7805022834d955c71658a1fff 833599 
libdatetime-timezone-perl_1.56.orig.tar.gz
 c12e8bb0f9810b414e68ad0ec2eb839a35954c06 6840 
libdatetime-timezone-perl_1.56-1+2012j.debian.tar.xz
 8fbd8c3031435b77938d245e457d1fb46ac3c395 268058 
libdatetime-timezone-perl_1.56-1+2012j_all.deb
Checksums-Sha256: 
 67f77fbc27b5a1c36fe5913b349d6ad0075cb728d6fc3a723f13d674f4a82316 2414 
libdatetime-timezone-perl_1.56-1+2012j.dsc
 dbe0e06d804f7eaa0c54d9cdd1f6320716b6a76ceaabef6cd69005eeb72bb17a 833599 
libdatetime-timezone-perl_1.56.orig.tar.gz
 feff5d04979dd7f4e02926f6a1b3bdf191cbf52036a9ee4f1bd359b68fec5684 6840 
libdatetime-timezone-perl_1.56-1+2012j.debian.tar.xz
 027ade096fee4f19ac17e7caf4331565be6d35edfc43e3be6ad416e9459b1e51 268058 
libdatetime-timezone-perl_1.56-1+2012j_all.deb
Files: 
 c361eb6ecc88cad62d20ff429d9fdf6e 2414 perl optional 
libdatetime-timezone-perl_1.56-1+2012j.dsc
 cb1b51137568520f6b4f248ab2b7b818 833599 perl optional 
libdatetime-timezone-perl_1.56.orig.tar.gz
 eb4b66ea143da074f81098471644a82b 6840 perl optional 
libdatetime-timezone-perl_1.56-1+2012j.debian.tar.xz
 ead6fdd8b51cae7fd2dd338ac04c9b54 268058 perl optional 
libdatetime-timezone-perl_1.56-1+2012j_all.deb

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

iQIcBAEBCAAGBQJQu2H1AAoJELs6aAGGSaoG3d4P/RHBuP7VYe+C1kq96vEVhfj0
dZk+PNPREUsAKTFciwGxACXshCyTNYUeZLMePlSnqpA4GpOp6jnvK6J890CIRClu
Y29M3SWso1RQpTJaZ0+ZZu/kZI3eOhLErPcmbWirJDFFoCfHa2+b2RTNeP/Lb1I9
azBb1Gt/cjgK1etOK4EvX4d6+rCLg6n3RyUwPKsTZJ+Kx78nD8cKMHeLU65eqJB5
mGwUtTcqILVxnxCgEOlqj2ciLcHGwrPCBi0f5A2aHObQ4goPjvXQGVMiwXhnPdNa
ecbQlOh0yyGC35uCDBUWe5OINYTr9Qcq1BdxVDSZmtfsAPC0xdNJDKbf34Xr2Gl7
Qm+/lBzxN/jYkDFzPCCj/gHYIIME9mBMpf/IjVCzcXbuNSmzGYJAanJo6aTWKLx8
TBoyEo5yx5/bd7Nm3bbjGC4I9rNnl3jv4PsJfnl9OjhTArZj/fRiM7l51A80tPHF
D17F+lhm9mDSpscovU6rfxUclGPQOKqei7Oc2CkfVC/VqaybCzUuKGJ84YzWH0LB
A0bxisZtCJY6RUbncE1FXV1do1t2xLeN/YYVSoF7tdWQUxGDL93AwNdOkhfG3ZET
VKoEJTwErKyUt9AcbBR9G2xlIfsZLgw5QHX7x5L/S1RpA3CrtO133vfsze4KB/qu
l+2ovoIKwOwATJe74/Un
=MAYo
-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/e1tfaq0-0002sw...@franck.debian.org



Accepted rsync 3.0.9-4 (source amd64)

2012-12-02 Thread Paul Slootman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 16:02:36 +0100
Source: rsync
Binary: rsync
Architecture: source amd64
Version: 3.0.9-4
Distribution: unstable
Urgency: low
Maintainer: Paul Slootman p...@debian.org
Changed-By: Paul Slootman p...@debian.org
Description: 
 rsync  - fast, versatile, remote (and local) file-copying tool
Closes: 688940 693991
Changes: 
 rsync (3.0.9-4) unstable; urgency=low
 .
   * mark rsync package as Multi-Arch: foreign.
 closes:#688940
   * fixed cross-builds, thanks to patches from Colin Watson.
 closes:#693991
   * Fixed some lintian messages:
 - call strip with --remove-section=.comment --remove-section=.note
 - added watch file
 - change conflicts with duplicity  0.6.11 to breaks
   See changelog for 3.0.9-1 for more detail
 - properly state GNU General Public License in the manpages
   * Added some overrides for lintian:
 - init.d-script-does-not-provide-itself
   (historically the daemon is referred to as rsyncd)
 - spelling-error-in-binary usr/bin/rsync dont don't
   dont compress is a config option. Adding an apostrophe would
   make things quite complicated!
Checksums-Sha1: 
 b2fbc32847707d0e974bb9629b82239e77fae5c3 1014 rsync_3.0.9-4.dsc
 d45550b7f170811fd6f7da11c7700a123537a8b6 21527 rsync_3.0.9-4.diff.gz
 00434b7b797fe33dfb4ed988c8cc887f426a91c1 368624 rsync_3.0.9-4_amd64.deb
Checksums-Sha256: 
 7ad4706716f96882c5cffdf2b6f2e0908fd99e5ad01c484f3725c08ec7c2a7b3 1014 
rsync_3.0.9-4.dsc
 690492111a40cbe1a0d930773c427dd6edbd5efbff8ef444ed63250a07c33e6b 21527 
rsync_3.0.9-4.diff.gz
 3ac11621082cd55499f36e5a9f3524331729845067a9f0b8df08c5aeaf83e4ea 368624 
rsync_3.0.9-4_amd64.deb
Files: 
 23411adc42b0a6e901f4e8497f8d7b71 1014 net optional rsync_3.0.9-4.dsc
 b14387d385cd0e74b06867b9512a9dfe 21527 net optional rsync_3.0.9-4.diff.gz
 1c78c2b0731e2175693971ce1084cc60 368624 net optional rsync_3.0.9-4_amd64.deb

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

iD8DBQFQu2+2utvvqbTW3hMRApkDAJ9r53kfsRx2EPHqDUr4uxAawf01DgCbB6Zu
5Il4DGzPBWR9VZi0x3TUs18=
=1o1N
-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/e1tfbiy-up...@franck.debian.org



Accepted vifm 0.7.4a-1~exp2 (source i386)

2012-12-02 Thread Hendrik Jaeger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 26 Nov 2012 23:14:45 +0100
Source: vifm
Binary: vifm
Architecture: source i386
Version: 0.7.4a-1~exp2
Distribution: experimental
Urgency: low
Maintainer: Hendrik Jaeger d...@henk.geekmail.org
Changed-By: Hendrik Jaeger d...@henk.geekmail.org
Description: 
 vifm   - flexible vi-like file manager using ncurses
Changes: 
 vifm (0.7.4a-1~exp2) experimental; urgency=low
 .
   * Removed unnecessary build-dependency on 'quilt'
   * Added options to configure call to avoid extra dependencies:
 - --without-X11
 - --without-gtk
Checksums-Sha1: 
 63513e2451bfc16767892fd403033a68e29bf6f1 1730 vifm_0.7.4a-1~exp2.dsc
 b20d1522b5e2b9e5f2dec9a4d94c9137f91d947d 4919 vifm_0.7.4a-1~exp2.debian.tar.gz
 c9aa4abf6194cd439dfcef1e8d1050085fb51a23 344970 vifm_0.7.4a-1~exp2_i386.deb
Checksums-Sha256: 
 4a8dc9326a10cf0fbe3f1ae9a713fc0d1b6ba1ddae9b1865fbfc1b07af4a57ba 1730 
vifm_0.7.4a-1~exp2.dsc
 7aee46ef20dfbff8c9517b69341b136c0bebcac88fd43b79b0399500193012bc 4919 
vifm_0.7.4a-1~exp2.debian.tar.gz
 40e873d0094933640993606febf8ec91715dbfe129eab60e11cbca89c97c876d 344970 
vifm_0.7.4a-1~exp2_i386.deb
Files: 
 5c5365162b89e34afda320b5ed6c7ea0 1730 utils optional vifm_0.7.4a-1~exp2.dsc
 0d278970ed17ad866cf24eb22c4f7fe5 4919 utils optional 
vifm_0.7.4a-1~exp2.debian.tar.gz
 123040b1ac9fdf55915b03a47859c1d7 344970 utils optional 
vifm_0.7.4a-1~exp2_i386.deb

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

iQIcBAEBCAAGBQJQu3D+AAoJEHtYWzCAfCqHYGUP/2kITpjX2GuI2IFAxIsVLgW+
tNKS7nYFB9GdnYwgGVlJBfjoWycKbyRj4iWS4v/WBvrkxDws1Saf97HQZYxMG7Cl
E1cli1bXgjnpF/w80rj/1d+kZEoPEgiltKg53gV5v4Yq8p/ppwnDCOQI/ZgL8hbp
Rzc/Vj4tu/o0tUntnlEf2z1q+dGkurKvdfkPXnAl/KeH+zj9XHiauUpBzjx/Y3Sh
sanolIzs9Qs+pLV5d44sGGE92f0Tbino9i+9Z86w/Dqea1zKRfLU2x6UPBNONlJS
FHFrDO3nchmCqpR2jsUBml/nViKRc4BjAbuxqYkIUWZM1Wk7wXxr2ObYthEdfLxb
RrRMNL1k4UMe19fbYmIB/1UUmF7XXa995ty5XHHYF6F8KQZfUj+rN7iVWpTBmgt4
qi7+btdf6F4JId9OW1E6U8eJjfOO+2C0FejWKtfyRJBPYHn0t/hQAmpzxl64Zg23
36x2gEcB3KG2GePbO1Izdtqg+2WkJBoX68rgzV8wL4oIjH+Wya0Ljh1tkmEpNmGi
Rzl+iaYF+/1+is99QvDAjfaXBmUTJsDq6WXvLpjgxzOKZry+ogt2XJDfbBIMrAkD
8jcVBszCRkikSwX5Z9NgbFDZjmg+OyNGU4pcOdf6IbEM0fxgQClpQBeRPLtx+tQo
Ww2HCpS3VJ7tTpAvsx3x
=Nq5f
-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/e1tfbxj-0003q2...@franck.debian.org



Accepted cityhash 1.1.0.really1.0.3-1 (source amd64)

2012-12-02 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 16:35:45 +0100
Source: cityhash
Binary: libcityhash0 libcityhash-dev libcityhash-dbg
Architecture: source amd64
Version: 1.1.0.really1.0.3-1
Distribution: unstable
Urgency: low
Maintainer: Alessandro Ghedini gh...@debian.org
Changed-By: Alessandro Ghedini gh...@debian.org
Description: 
 libcityhash-dbg - debugging symbols for cityhash
 libcityhash-dev - development files and static library for cityhash
 libcityhash0 - family of non-cryptographic hash functions for strings
Closes: 694916
Changes: 
 cityhash (1.1.0.really1.0.3-1) unstable; urgency=low
 .
   * Revert back to upstream version 1.0.3 (Closes: #694916)
 - Update symbols files
Checksums-Sha1: 
 1ebe9805ce298ec5b41e99c29168fa63f5449e22 2049 cityhash_1.1.0.really1.0.3-1.dsc
 855c1aa88267fb30a8a9ecd849bb2838638e2248 352237 
cityhash_1.1.0.really1.0.3.orig.tar.gz
 679e893432a6cdb7d328624b50bb365968a0f3d6 2889 
cityhash_1.1.0.really1.0.3-1.debian.tar.gz
 6fa7c2e1968e7ce6859ed1a7b2249819556d8a29 11232 
libcityhash0_1.1.0.really1.0.3-1_amd64.deb
 7fd4ea15e324cd3d85d0d4c164cc3a7947672aa6 8160 
libcityhash-dev_1.1.0.really1.0.3-1_amd64.deb
 15263c893a1170748bc693d6b69194bd09970c69 16628 
libcityhash-dbg_1.1.0.really1.0.3-1_amd64.deb
Checksums-Sha256: 
 3b1e7f79b5c13e53f4e2a6c68627c3327ba317738d9b7c41e6c5cbe4002c76b3 2049 
cityhash_1.1.0.really1.0.3-1.dsc
 a03178d7c73a2d40d9e9e6ab036e607bc97cf3ea0c0eda9e5736ed07608b 352237 
cityhash_1.1.0.really1.0.3.orig.tar.gz
 fde411870914cff789fcefed945eaaf2bfaecdf0ced28434768281fa230bb42f 2889 
cityhash_1.1.0.really1.0.3-1.debian.tar.gz
 fd3a59a75a9bb8e4e406809aa26faa8061bcaefa380035f0eb8b810962216cef 11232 
libcityhash0_1.1.0.really1.0.3-1_amd64.deb
 f4b9810c890b2b5955f3c6adbc5d1fce76a028749dc46882db5296382aa7fedf 8160 
libcityhash-dev_1.1.0.really1.0.3-1_amd64.deb
 341db826cb35a5f1aa98dd23a35c55068972a89fbac9ea7b96de300f469bf3a1 16628 
libcityhash-dbg_1.1.0.really1.0.3-1_amd64.deb
Files: 
 9defc3727c642a9feee4c9437e513f74 2049 libs optional 
cityhash_1.1.0.really1.0.3-1.dsc
 4d1a1102e696e699613c93ca8aeddd00 352237 libs optional 
cityhash_1.1.0.really1.0.3.orig.tar.gz
 f6107ccffe3cf834b46640df5dc1d875 2889 libs optional 
cityhash_1.1.0.really1.0.3-1.debian.tar.gz
 34511aad6bdbbc036451f7f6dc602581 11232 libs optional 
libcityhash0_1.1.0.really1.0.3-1_amd64.deb
 6049160655de7a3a3a9c54f000f886da 8160 libdevel optional 
libcityhash-dev_1.1.0.really1.0.3-1_amd64.deb
 9822cec23ac77cbea100e8307df58760 16628 debug extra 
libcityhash-dbg_1.1.0.really1.0.3-1_amd64.deb

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

iQIcBAEBAgAGBQJQu3WnAAoJEK+lG9bN5XPLEkgQAI+u0KtnA6eURDed3Kcs7mpr
Am9fvvJKf3XE32r+9MRZim/aFxm4xGcaYWFdERyUIsP5ohk5aFPK+bVo8g6KXlfn
vs94gxwAtvw5iZIS2XeYma+oXvrtsgKfnr9Gci7pkCmf1GlFhlS0tcfqzb1OdPrb
ugThT4nI8NanFc7icDkHSaTBQ+vwMIcrNFAiWyDgUczZgvQNLjIV+XDrS9CcF6Np
WSZCuYO1qNicDIkSR0Qca8YtyruOasIv6a3Ky/9dBpO8IJGlSyRyUYiU6DCJ6nL4
e1tgkvM4RHtXFwr2mRvsALJGIaVptOMqGmxRxSMgqQ4/lJ55f5+hDwKarCMqYSNl
uKJwakoZPWFLQO2xTsssVRjKb0HuVmsVRVgs4QSCRLpxneXt9EZCRG7Lt0fxJ6mL
1m86zFUoDeBClq20rn+p3/LRVkuK0GJdPmyHpnqETsIsGM11VfG/vG3+/z/PsKT8
W8fZhFAKY2XPxLv712ebd0e6DXJrGdgbQvGRXNx6GPUBLAJOvSnC3f3horb808Ie
2+Mg7WZ7rlUMrCSneJh8WvumKe63IuQI/9mPsMmMMZOCO90HRXaAgxWTF9fNa7tj
64qef0BYJ9KzxbULhw0q+LmqHUvLh+dYEI35lQoZLFCIUxGYaHeabaKPYdUVeOop
zbJBqLbty/yhTM/Akr3O
=6tkM
-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/e1tfbls-0006wq...@franck.debian.org



Accepted libclass-dbi-plugin-pager-perl 0.566-1 (source all)

2012-12-02 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 02 Dec 2012 16:54:38 +0100
Source: libclass-dbi-plugin-pager-perl
Binary: libclass-dbi-plugin-pager-perl
Architecture: source all
Version: 0.566-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libclass-dbi-plugin-pager-perl - Perl extension for paging SQL results
Changes: 
 libclass-dbi-plugin-pager-perl (0.566-1) unstable; urgency=low
 .
   [ Tim Retout ]
   * Email change: Tim Retout - dioc...@debian.org
 .
   [ Ansgar Burchardt ]
   * Email change: Ansgar Burchardt - ans...@debian.org
   * debian/control: Convert Vcs-* fields to Git.
 .
   [ gregor herrmann ]
   * debian/control: update {versioned,alternative} (build) dependencies.
 .
   [ Xavier Guimard ]
   * Imported Upstream version 0.566
   * Remove fix-tests-new-sql-abstract.patch included now in upstream
   * Use debhelper 8
   * Bump Standards-Version to 3.9.4
   * Add libuniversal-require-perl in dependencies
   * Update debian/copyright (years and format)
   * Add libmodule-build-perl (= 0.40) | perl (= 5.17.1) in
 Build-Depends
   * Clean description
Checksums-Sha1: 
 4bb398d3131809006ea3d47d7ee63fecbf626927 2675 
libclass-dbi-plugin-pager-perl_0.566-1.dsc
 127c98e7d374b28d9d607ff9f99d2702a43d2ca8 13222 
libclass-dbi-plugin-pager-perl_0.566.orig.tar.gz
 78c24acf4d5b3fc4c6cb04719bbb49cbe85386bc 2746 
libclass-dbi-plugin-pager-perl_0.566-1.debian.tar.gz
 c9cdc1f7d8f6937eca682487aff30e67f62a98a7 17252 
libclass-dbi-plugin-pager-perl_0.566-1_all.deb
Checksums-Sha256: 
 0b6b7e4d1248b416c0d3b7d61fb4ab88cca6d7079b0e1ebfbc81a97120ebc6e1 2675 
libclass-dbi-plugin-pager-perl_0.566-1.dsc
 13629f4159e5e3dd28ce5522cce50310ba41d1c36c4f9610a04a031077ed5b5b 13222 
libclass-dbi-plugin-pager-perl_0.566.orig.tar.gz
 d848d9eaad66ca83bc150533bc2f9f6bd364ae248eaba76507ad7b2198eac99e 2746 
libclass-dbi-plugin-pager-perl_0.566-1.debian.tar.gz
 666f2c2eff3935e1911179cf72c2648bf6fc964abd3ebd71abc7abaa773d8b97 17252 
libclass-dbi-plugin-pager-perl_0.566-1_all.deb
Files: 
 b6203dabc920389d381248748dca2522 2675 perl extra 
libclass-dbi-plugin-pager-perl_0.566-1.dsc
 dca1f3f756d1c5d6a1c11006c05f42fb 13222 perl extra 
libclass-dbi-plugin-pager-perl_0.566.orig.tar.gz
 12ab8d49628f4e6cb8364a503a6dc49d 2746 perl extra 
libclass-dbi-plugin-pager-perl_0.566-1.debian.tar.gz
 1697cb1d09967dee679613af4709b2ed 17252 perl extra 
libclass-dbi-plugin-pager-perl_0.566-1_all.deb

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

iQIcBAEBCAAGBQJQu3tZAAoJELs6aAGGSaoGxXgQALgL9Yq/oH3T81YagekOag4V
22w5UIyx6pSM8ZEdrZmVe/HqLmpwb2PsE7/kIgaZB364EI4FSvjVLeJuMkTzw7x1
HkxWUy2Kjxub3Y3XF38qduNfVR0/LdS6jn7lh5RQrf/KqgJwKD32cqz3MH5S4CJi
NkLBR249BWhZ7flxhINKw9580KdvMYEPii4YmdxdcoUKG6rxzP0hQfBvpN0NIyf5
bMIAhWR8ShebdGi27vVmmJGYvJdCP4RszfGCLwx7CrnJjZFMxP0rgKMQzpNcIJJY
ouxOKKqMNcozn++RmgNxNpPRbIRkn2EdBJQfztwo5RdJ/moWMesWoDKnTcF3MKkX
n3j/1njZR5+ifFQveUGnhJSUML4HazWA4GHeEFpMwcSin4ZKVXKJhZIEevc5H6Yf
JHAx2XEmxldBRZVuHfRAHYL2EXga63V7gJ109AJqp9oJeDYbcAtCcp/k6gh7u5Fu
9Zzcj55VJQRuG2gXBpfKRRxpk3yoWPv9u3Q/AeG+znmqy8LNBLqfBhm94kx1fT90
Uljqau64t7D1hHWVX/grL0PG3oURngF5EgsMyFbOGkZ54Co8CeFJKkCU9sY/9Q7w
UTw2uPACCLwCcJapiIIsUZEDndAZhFw+GweLnKKckbiWKhGSOwxAcQssJ83GqQca
r3FP6vr+dwS/xR4YeBz2
=eBNn
-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/e1tfcel-0003wv...@franck.debian.org



Accepted bcrypt 1.1-7 (source amd64)

2012-12-02 Thread Kevin Coyner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 02 Dec 2012 14:53:40 +
Source: bcrypt
Binary: bcrypt
Architecture: source amd64
Version: 1.1-7
Distribution: unstable
Urgency: low
Maintainer: Kevin Coyner kcoy...@debian.org
Changed-By: Kevin Coyner kcoy...@debian.org
Description: 
 bcrypt - Cross platform file encryption utility using blowfish
Closes: 694091
Changes: 
 bcrypt (1.1-7) unstable; urgency=low
 .
   * Added new patch to deal with bcrypt trying to load entire file into memory
 regardless of size. Thanks to Michael Stapelberg. Closes: #694091.
   * Removed unneeded amd_memory patch.
Checksums-Sha1: 
 b530af856d88d32c00a678d6dfc735c5408ccc7f 1315 bcrypt_1.1-7.dsc
 47b763595b73c8ed97383690dd895f7423cfa318 7134 bcrypt_1.1-7.diff.gz
 588dcee3f6cbc81a78d0dccf2c40ac5e6c9c7c4d 20132 bcrypt_1.1-7_amd64.deb
Checksums-Sha256: 
 02b37941fcc776263baeedcdc9f8da4b92b8f23d242e0686c7373af47385ef79 1315 
bcrypt_1.1-7.dsc
 5879d21b9cec1d4c723cd88303cf3dde3c310ec25ecb8c01b1e99010ab9a3402 7134 
bcrypt_1.1-7.diff.gz
 e1e21274948bd23af39ec93050608469cba279a362937acd404601147b80bebe 20132 
bcrypt_1.1-7_amd64.deb
Files: 
 3fe988c2ae554f015a2e8477216a9f9b 1315 utils optional bcrypt_1.1-7.dsc
 0a6ffda97851a6eedba768b2da2dee5c 7134 utils optional bcrypt_1.1-7.diff.gz
 771413d79d56fd0037258ca2e2aaee83 20132 utils optional bcrypt_1.1-7_amd64.deb

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

iQEcBAEBCAAGBQJQu4FoAAoJEOuzGmLIXY9xeSQH/jFqwLy62Q6MrD76TzLAVu9x
BwhC1/Q852lvlaQcL91fhrmZdMN+pZFUmB8y+xFwvKcWfAxre3NLgpjMpZ0V7eiW
9HkShomLjMIJps0vPkXMWg/CYps5u8TNUHK7YlbxDDW716Wij7yLi43cGBJW7Wuz
p7g7C6+KELraNHBpY8y26jCKrcFH5GMoszIW3HRc71oN1sNglhH9fed8K+8Wq2Jb
z9Ut+aYWgVVzExFk7Byf+7gcH6jWwRsBqGul4Unmd0DLPSsY8K0odqz0QpCv5nht
GyGatQvdbpQiJdZAS8mw4YSfYpwyvlPMHhVZWURZTzH4cpzBYOCKe/RwSq7BpfI=
=LW9D
-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/e1tfcsz-0006ez...@franck.debian.org



Accepted kcov 11-1 (source i386)

2012-12-02 Thread Michael Tautschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 15:43:07 +
Source: kcov
Binary: kcov
Architecture: source i386
Version: 11-1
Distribution: unstable
Urgency: low
Maintainer: Michael Tautschnig m...@debian.org
Changed-By: Michael Tautschnig m...@debian.org
Description: 
 kcov   - Code coverage analysis using DWARF debugging information
Closes: 643174 650738
Changes: 
 kcov (11-1) unstable; urgency=low
 .
   * New upstream version
   * Proper packaging (closes: #643174)
   * Make it architecture i386 and amd64 only, others are not supported
 (closes: #650738)
   * Bump Standards Version to 3.9.4 (no changes)
Checksums-Sha1: 
 e1e46c4c0197c08eb522a7ce31b26a566e57a1d3 1134 kcov_11-1.dsc
 239583d01f87ebc13d74c0ca864be02a9c3ea549 53056 kcov_11.orig.tar.gz
 d5d01b5ce8b18c4448d7904f9500723732178aee 3319 kcov_11-1.debian.tar.gz
 7759e5ec435cfe5801250923d2026261082c95aa 75178 kcov_11-1_i386.deb
Checksums-Sha256: 
 4e5568fc91803674203d3c004934bf773f6e7480f6b15d692bf1c3327be7e26e 1134 
kcov_11-1.dsc
 c5166c4dd5e5de75e0a6a0ef512d17159b8d1e3f1beb504fd564291152b19b85 53056 
kcov_11.orig.tar.gz
 799c12a11e031b4f05c3f78245eab8f5beb30fce2e50c25d30c8290c4dfd001b 3319 
kcov_11-1.debian.tar.gz
 4abf66cc8395852b10385eb0f73d7249519e4bc6c38ab2ea873ada1baa9ce77e 75178 
kcov_11-1_i386.deb
Files: 
 da0f7d7b49c9d6b2592234623c9bb475 1134 devel extra kcov_11-1.dsc
 dcf269be01a19e3b2024188c5e3f4eab 53056 devel extra kcov_11.orig.tar.gz
 af83a8a4feb2865f8635878c8effef0a 3319 devel extra kcov_11-1.debian.tar.gz
 32ce53a42204db6d3932d2a669ddcf21 75178 devel extra kcov_11-1_i386.deb

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

iEYEARECAAYFAlC7jFoACgkQvx6dH3bVKsRV1QCguoE3GujcX2wQ0OiTRCg1yils
7VIAoK586Yp6F4oyvWIgriP6Cm++n+UH
=XRjc
-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/e1tfday-0007ns...@franck.debian.org



Accepted bcrypt 1.1-8 (source amd64)

2012-12-02 Thread Kevin Coyner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 02 Dec 2012 17:15:26 +
Source: bcrypt
Binary: bcrypt
Architecture: source amd64
Version: 1.1-8
Distribution: unstable
Urgency: low
Maintainer: Kevin Coyner kcoy...@debian.org
Changed-By: Kevin Coyner kcoy...@debian.org
Description: 
 bcrypt - Cross platform file encryption utility using blowfish
Closes: 693460
Changes: 
 bcrypt (1.1-8) unstable; urgency=low
 .
   * Additional RC bug closed with patch added version 1.1-7. Closes: #693460.
Checksums-Sha1: 
 9a5934f3fc7c22e5900ee1b4eeb8dfbfb072553b 1315 bcrypt_1.1-8.dsc
 b9a1cbbb213d58c0af46cfec726eb90921efc16a 7164 bcrypt_1.1-8.diff.gz
 afdd36c6bba57dedf967c2adf9c722510342270d 20184 bcrypt_1.1-8_amd64.deb
Checksums-Sha256: 
 bd845c8396cab86c0517c2e43d343221f8e548556608d8d388fc685d6e2bebce 1315 
bcrypt_1.1-8.dsc
 3e568d9d9fa5f37e4e2d5ceb3e04ef5a6bf99aa66e7594edcf76c95da1ba7aae 7164 
bcrypt_1.1-8.diff.gz
 52f6be6560991b972614773628c70a3732e8c65fa05ce3d20b9ef2479e0432ac 20184 
bcrypt_1.1-8_amd64.deb
Files: 
 0df13ea75235fa0058f1115a3fe9d1af 1315 utils optional bcrypt_1.1-8.dsc
 f003599b766ed03a97a3de5fc2c7380b 7164 utils optional bcrypt_1.1-8.diff.gz
 9bdf63267718f64e727242ccbec27c7b 20184 utils optional bcrypt_1.1-8_amd64.deb

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

iQEcBAEBCAAGBQJQu406AAoJEOuzGmLIXY9xYeIIAKAfXXY/wV6HBIYSl2UhKt85
Y0H2kM0ja+SKd+rGeE8strEqyRQVcTU+Etw4LnmKN6oS02hkwiA1a7zUpHt7zBPY
BGT/FvUEUOIo7b/SNUsdiWAIs60mjKfnPhRfazhLY5Q7T8UT8o0tsPH9gfkBI+WW
Uc/PCfy3wqUsInYjhuwzyeI4j7aNqx8ujIxpLJYF9yVItQVcnX6L0Gxc2gdwnNZu
PY6U9atJ0kVSXrbd/G45D3BNOBpm9l2ElAr5bYnZJZmp6BDh8WYMPrIH+HPMZxb1
XND/Juh2QNWsUZvVfRzsjo7Re5rhcdQ9pTlM2Nog14remzN7O1pRd2O5VvilwoA=
=MGAf
-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/e1tfdp2-0001zr...@franck.debian.org



Accepted lockfile-progs 0.1.17 (source amd64)

2012-12-02 Thread Rob Browning
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Dec 2012 12:16:09 -0600
Source: lockfile-progs
Binary: lockfile-progs
Architecture: source amd64
Version: 0.1.17
Distribution: unstable
Urgency: low
Maintainer: Rob Browning r...@defaultvalue.org
Changed-By: Rob Browning r...@defaultvalue.org
Description: 
 lockfile-progs - Programs for locking and unlocking files and mailboxes
Closes: 686057 694842
Changes: 
 lockfile-progs (0.1.17) unstable; urgency=low
 .
   * Add p to getopt_long()'s short options so the -p arg will actually 
work.
 As the manpage states, -p was intended to be the short argument for
 --use-pid, but since p wasn't added to the getopt_long()
 optstring, it didn't actually work.  Fix it.
 Thanks to Michael Deegan b...@wibble.darktech.org for the report.
 (Closes: #686057)
 .
   * Fix cross-builds; use the cross-compiler when cross-building.
 Thanks to Colin Watson cjwat...@ubuntu.com for the report and the
 patch. (Closes: #694842)
Checksums-Sha1: 
 1f71465e5617be206b13268815def734fd4b8990 1440 lockfile-progs_0.1.17.dsc
 38879f93c5600dc285102bd815b755925060 14833 lockfile-progs_0.1.17.tar.gz
 d257fb6f8ff8d5cf99da78fc1c8c250c9a555d4c 10982 lockfile-progs_0.1.17_amd64.deb
Checksums-Sha256: 
 a65cfe4e56a15558ad7fa4b5ac00d89ad5a0c69b39e9a799f7770cf8913db89a 1440 
lockfile-progs_0.1.17.dsc
 03fb05d25499532f497775b1747b61fa6beebf12d3bcc951e125349ae166c511 14833 
lockfile-progs_0.1.17.tar.gz
 582e22ef7b025632b7f1c2f51692aa471900da2b4f0a9bd7fd6de8a82fc1cb31 10982 
lockfile-progs_0.1.17_amd64.deb
Files: 
 099458f2f3eacfa6ccee65fad4ddea4c 1440 misc optional lockfile-progs_0.1.17.dsc
 64424a766fbc8cf6d613fcc14a096e14 14833 misc optional 
lockfile-progs_0.1.17.tar.gz
 57715684df4d8b5388733460b29fd541 10982 misc optional 
lockfile-progs_0.1.17_amd64.deb

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

iQIcBAEBCAAGBQJQu4WcAAoJEMDwOentG1l673gQAK5kqaT4gPQ8RkolSrQEG4av
5l+AGzegX6Ukl6uj8DAQbCV598dvPlI2IxUSCyFsh7HT8nUh8ZdXkLQV0OACpsRD
qD92XDomaFf+GwsjJzOzH08P84Ob4UHXeayL2pV+DzUgsUS0TFvhA75hXC/Erj8i
8tGEyyJx6gmGYIbGgrIBBgmVu5IGjU1uvk476h3EshJQN1mU2H6e4+ZtWL3OgpTl
5oSItNxBKwA8zmd7CPvOghcJozGC1AL0rPFUaHo5wWCPboI1AvS4UcAmI89qz0RQ
hGVv7uIGj0zYF0EKzN2aerMHCOtL0ykZvdxkjxsMaIjIeCAhWwdVR8NKy77IJ+ax
sdVokayrAGJxiy8YuQhK/OKVv3d/NqRn5tg7x8XDzAdfUiUqV1ZkQcuB3rLrb/i4
YutI1HPJ4q6qC2lowbB3fR2tYw97AFQ+llX+CwCNpGAqMQrTcF5ca5cPFzImOrDR
K/hAl0NTOvwGhOj3nWdRq9hQRxFOcDofGkzMf+jc0Y1UHoAbMUjNC65iB0VGG3Ef
x1Y6jBraOXl3gTwXoGQgzh3zM7eyZ7C6kj0hbkG94lX66EiNJweod5uLndTVeghy
7rwR4CxXP3lGIVA+iXKg3MpM7OOE9Q/xGmqiuCnCyzWmuV4gexdXjNfyP8FmTTHv
E6oMdPs5n4AZ4j/h9er7
=0ar5
-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/e1tfddb-0004de...@franck.debian.org



Accepted diagnostics 0.3.3-3 (source i386)

2012-12-02 Thread Michael Tautschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 17:44:20 +
Source: diagnostics
Binary: libdiagnostics-dev libdiagnostics0
Architecture: source i386
Version: 0.3.3-3
Distribution: unstable
Urgency: low
Maintainer: Michael Tautschnig m...@debian.org
Changed-By: Michael Tautschnig m...@debian.org
Description: 
 libdiagnostics-dev - Logging, unittesting, and runtime diagnostics for C++ - 
developme
 libdiagnostics0 - Logging, unittesting, and runtime diagnostics for C++ - 
library
Changes: 
 diagnostics (0.3.3-3) unstable; urgency=low
 .
   * Fix symbols file for armhf
Checksums-Sha1: 
 77feb15f135bd6c66ce4d07143d07e6f295e31e7 1272 diagnostics_0.3.3-3.dsc
 bbc47da1724f04181509ee020ecd244665381e72 89692 
diagnostics_0.3.3-3.debian.tar.gz
 87d7fa4c37adfc36bb5ae6413bbda21c68026c28 286660 
libdiagnostics-dev_0.3.3-3_i386.deb
 e655122cfe37f4ef2639d277b10b21712cc9f6b3 118194 
libdiagnostics0_0.3.3-3_i386.deb
Checksums-Sha256: 
 efd9903923f200211ddac09c4324fbff0fa03828c4977fcf6a8a927b1f0c6766 1272 
diagnostics_0.3.3-3.dsc
 94e14838062147b12917fafdc2b796ce9840bb625dd279f4a3463f1d787be325 89692 
diagnostics_0.3.3-3.debian.tar.gz
 02d90fcd46578df8f86b8c7792c4449a969beb56b597c57884ad195d0d01e459 286660 
libdiagnostics-dev_0.3.3-3_i386.deb
 4570d78a4cc4561343430fbf06bbda49fa632171bf513fbc01d3ca5e7706 118194 
libdiagnostics0_0.3.3-3_i386.deb
Files: 
 ba561952b1cfe9144ed89bd9c5915b55 1272 libs extra diagnostics_0.3.3-3.dsc
 f9d102f329a5b8394dc4952b74890456 89692 libs extra 
diagnostics_0.3.3-3.debian.tar.gz
 8446a2c9e837bc621789632ad0d56860 286660 libdevel extra 
libdiagnostics-dev_0.3.3-3_i386.deb
 6c7854321902d810b305a961b8413c9e 118194 libs extra 
libdiagnostics0_0.3.3-3_i386.deb

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

iEYEARECAAYFAlC7la8ACgkQvx6dH3bVKsRiawCgzUQiLR/VsS13CsHAq+ZICzQV
YokAoNVHW4mi9sGhcSSdSK+0/gQ2Kxqi
=aHCS
-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/e1tfdsg-0007qv...@franck.debian.org



Accepted libprelude 1.0.0-10 (source amd64)

2012-12-02 Thread Pierre Chifflier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 02 Dec 2012 19:01:59 +0100
Source: libprelude
Binary: libprelude-dev libprelude2 libprelude2-dbg libprelude-perl 
python-prelude
Architecture: source amd64
Version: 1.0.0-10
Distribution: experimental
Urgency: low
Maintainer: Pierre Chifflier pol...@debian.org
Changed-By: Pierre Chifflier pol...@debian.org
Description: 
 libprelude-dev - Security Information Management System [ Development files ]
 libprelude-perl - Security Information Management System [ Base library ]
 libprelude2 - Security Information Management System [ Base library ]
 libprelude2-dbg - Security Information Management System [ Debug symbols ]
 python-prelude - Security Information Management System [ Base library ]
Closes: 558522 693892
Changes: 
 libprelude (1.0.0-10) experimental; urgency=low
 .
   * Upload to experimental
   * Switch to DH 9
 - rewrite most of the packaging files
 - enable multiarch
 - enable autoreconf during build (Closes: #558522)
   * Merge patch from Colin Watson to fix FTBFS with glibc 2.16
 (Closes: #693892)
Checksums-Sha1: 
 1e029404b805b50f9969aa931e7e49772cbfc8de 2077 libprelude_1.0.0-10.dsc
 b23ef7bfe1595888de34db070d59beca044d0459 7500 libprelude_1.0.0-10.debian.tar.gz
 497e1fc576371f760f4ae732fd9dd60edb8ad5af 358604 
libprelude-dev_1.0.0-10_amd64.deb
 64f546a248cd406c92b17fca72cc46f6eb484f6b 918396 libprelude2_1.0.0-10_amd64.deb
 7367fbfdea5d21d621f2d4d3e1c14ace37491bb7 4315674 
libprelude2-dbg_1.0.0-10_amd64.deb
 facbdf730fcef67e73e0e9641edad37b3d75fd3e 770276 
libprelude-perl_1.0.0-10_amd64.deb
 a119f4b5cb7db6d5b4ae4c110a284d407937dec4 921124 
python-prelude_1.0.0-10_amd64.deb
Checksums-Sha256: 
 4978d4c2272be85ea3d283b3ea3554cadc8b44fb0ed5f274a3af36417af1f794 2077 
libprelude_1.0.0-10.dsc
 eaeb8c632cf513f3bf84cc6250be8add99e3c27bf32190df4c4b020ccea03c23 7500 
libprelude_1.0.0-10.debian.tar.gz
 70d480df9e31bf328bc13030922c72891c7c984d5a6ac7ef2505563d97008057 358604 
libprelude-dev_1.0.0-10_amd64.deb
 4228b962ca87759e2c6090fd6c4f47ca54bd1cb8f1d924a2a9f5e773a84e8ea5 918396 
libprelude2_1.0.0-10_amd64.deb
 b0cb39cfff563fe2789069e0c00eec5c36a92b2cedd3114e738c004611825fd4 4315674 
libprelude2-dbg_1.0.0-10_amd64.deb
 1539066c2deea9ef9163cfcd784611484c97bf5c118e33af7fb7bdfc08cd 770276 
libprelude-perl_1.0.0-10_amd64.deb
 f1a263a5d2a5eb90cca05c3a88d2899904f1193acb392a1a35440bb8fe347a86 921124 
python-prelude_1.0.0-10_amd64.deb
Files: 
 076c9957c51d0aa6c0f2c2adebff39cd 2077 libs extra libprelude_1.0.0-10.dsc
 09cc41842fa017e4ea8f1febc3ff520c 7500 libs extra 
libprelude_1.0.0-10.debian.tar.gz
 bc0c24ded830cc50912fcccfc7bd5812 358604 libdevel extra 
libprelude-dev_1.0.0-10_amd64.deb
 ff6e850877c419307e6b1bbaf54b97e7 918396 libs extra 
libprelude2_1.0.0-10_amd64.deb
 f72fbd09757df455ce185043fb18b15a 4315674 debug extra 
libprelude2-dbg_1.0.0-10_amd64.deb
 bdc74118d56f549dfa06acd9847d1b2b 770276 perl extra 
libprelude-perl_1.0.0-10_amd64.deb
 b03c506204ec57050135e7c0200aa98c 921124 python extra 
python-prelude_1.0.0-10_amd64.deb

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

iQIcBAEBCAAGBQJQu5jrAAoJEMYaZNzxOTmYu8UQAKnwPKVXhHMTLF4nFgDTxn3a
ZLjmFLvxd1ETPZOHwnZbKcdCXWUyjwcK2RW9cqT9O/hYeVwtWXPYKGs2scd4n8vT
caTsbemn41pAlD/AB9jHmnljCE1E2QUwA5X2ksS/gYiJh7RP2f3USq9oLIpK9yIM
i0JmbFQIyC5Q5KXeeaZnpSyEqZRFilonn8138IdaygexlwiY53GDW7dZYYzrQBp+
x0eGxlTZrwWQxeE6lohqiH7Y2zfJUwyT2nTJsuldLebq9XN9jLUoAyJtbETBVVOv
mBIlEKf1bMTJhc1tGtgp0Bd8a/t91cxkjfhQYnK1G1LpJFukljs9eYQLE+tK8+Su
w0dDOCLaE8arYuFIW0Kre9AlTk/TKETxK1yGztwjHhvDsVQyqN6d5JOgSfPDbqSB
To/wzaFgSJpUWObSiK05tBRH4iKvbpake8eIzsFCN4kO/bGaS7jevVQ87WmenL7l
c2QhM0AZCN9qt4KaZa5XI5MWOvKdWwu3nWou6tK8lsLrHqjpmwRJ2CwvM6I4WPJF
SDJQFFXGvCL3JpUB9fq7+jq6eS/53h2991D6Qu6dPw7y7cbnKo69yWxxDbL2+MZF
lcu8uO+PES6QaoE6BoenhPaUWKrFTtdKpbYUF2OPKKyDwUdDevBjGdjtC7XWfuMo
LBZ5J2kfl9MKpkV156jw
=usEd
-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/e1tfe6h-0001mn...@franck.debian.org



Accepted auctex 11.87-1 (source all)

2012-12-02 Thread Davide G. M. Salvetti
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 18:43:40 +0100
Source: auctex
Binary: auctex preview-latex-style
Architecture: source all
Version: 11.87-1
Distribution: unstable
Urgency: low
Maintainer: Davide G. M. Salvetti sa...@debian.org
Changed-By: Davide G. M. Salvetti sa...@debian.org
Description: 
 auctex - integrated document editing environment for TeX etc.
 preview-latex-style - extraction of elements from LaTeX documents as graphics
Closes: 694800
Changes: 
 auctex (11.87-1) unstable; urgency=low
 .
   * [f416315] debian/auctex.postinst (triggered): Fix trigger iteration.
 Thanks to Thomas Koch (Closes: 694800)
   * [cfd10ae] Imported Upstream version 11.87
   * [ac9c4f0] debian/patches: Synchronize with new upstream release
   * [7e6027a] debian/copyright: Delete reference to tex-fptex.el
   * [baac411] debian/auctex.NEWS: Add latest release notes
Checksums-Sha1: 
 2739ede360a8bdc317a5427cb52213257645d61c 1342 auctex_11.87-1.dsc
 0be92c7d8f89d57346fe07f05a1a045ffd11cd71 1206073 auctex_11.87.orig.tar.gz
 0d4b1f7af925151015999ba62cc034b84961eeb3 58528 auctex_11.87-1.debian.tar.gz
 253a1bc2db3fbe27a2baf288b96fef8b8986ecf8 1279752 auctex_11.87-1_all.deb
 75cf28dcbee400168599549cb50573851bae1c34 317206 
preview-latex-style_11.87-1_all.deb
Checksums-Sha256: 
 ce57e910ede13a13ec3a7792ab8945e987dc082db9dc14abb1e7d6335dbfc69a 1342 
auctex_11.87-1.dsc
 63d57229e585dbf727f5545337615b997488bfdf475274da0718c90b77bd5cf2 1206073 
auctex_11.87.orig.tar.gz
 b5694cf2245a6875c02b5b51f4b3932d37600224753ff0512f2305b91f464adb 58528 
auctex_11.87-1.debian.tar.gz
 87091d7ac56a5f310e53e9f62eb569c117121bb9cc3df7aacb2782ded53bc83b 1279752 
auctex_11.87-1_all.deb
 e8ce2b118ee1dedf0169e9c3826c7d851eaba8f5a11a1b0d37f759c96a6dce41 317206 
preview-latex-style_11.87-1_all.deb
Files: 
 cf1b4e471aaec3fb8b77ec2767dee7b7 1342 tex optional auctex_11.87-1.dsc
 a594682c60f1d895b3600a728672459d 1206073 tex optional auctex_11.87.orig.tar.gz
 f0b3232c5c7d82f7d8f6727abc9da478 58528 tex optional 
auctex_11.87-1.debian.tar.gz
 961b32fe4eab74a44cff01901b0552d0 1279752 tex optional auctex_11.87-1_all.deb
 d855deab22756c807479304b43ef9b40 317206 tex optional 
preview-latex-style_11.87-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: http://www.linux.it/~salve/dgms.gpg

iEYEARECAAYFAlC7ldsACgkQISswbJOWhl1t8ACfS1kbGfNsCVJfYJlnuDYS+jwo
/tQAn0dy2SoMUQ0IAFgovgwMR6COW1sT
=syv3
-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/e1tfel8-0004yz...@franck.debian.org



Accepted xserver-xorg-video-intel 2:2.20.14-1 (source amd64)

2012-12-02 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 02 Dec 2012 19:18:05 +0100
Source: xserver-xorg-video-intel
Binary: xserver-xorg-video-intel xserver-xorg-video-intel-dbg
Architecture: source amd64
Version: 2:2.20.14-1
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xserver-xorg-video-intel - X.Org X server -- Intel i8xx, i9xx display driver
 xserver-xorg-video-intel-dbg - X.Org X server -- Intel i8xx, i9xx display 
driver (debug symbols)
Changes: 
 xserver-xorg-video-intel (2:2.20.14-1) experimental; urgency=low
 .
   [ Timo Aaltonen ]
   * New upstream bugfix release.
 - Fixes a long-standing bug in UXA pageflip code that was the
   source of many GPU hangs.
Checksums-Sha1: 
 73aa629a62dc3034ad1a91ced0542bf96a0f2e93 2670 
xserver-xorg-video-intel_2.20.14-1.dsc
 b22874c0b182c4e9817d6d4327172486cb9fed8c 2245479 
xserver-xorg-video-intel_2.20.14.orig.tar.gz
 1ce73bb3ba0f681827620eba66175d112d1b219c 23736 
xserver-xorg-video-intel_2.20.14-1.diff.gz
 a4390173440c847a38dbce048b8d0ae9420641d1 1305666 
xserver-xorg-video-intel_2.20.14-1_amd64.deb
 215e8a881a2537554297ce1915dfaf7062b1466f 3289368 
xserver-xorg-video-intel-dbg_2.20.14-1_amd64.deb
Checksums-Sha256: 
 de799b7e0de44f813dd4e9695e9f9276168a0da01e13c98bbc54eba1f96f023e 2670 
xserver-xorg-video-intel_2.20.14-1.dsc
 54db225a9032e9ff493f3c9a4f4df8ec615dd2f7683843c381cba15e060dac29 2245479 
xserver-xorg-video-intel_2.20.14.orig.tar.gz
 6ca05991e39fe5fcdf7cd7910b2378d41b8f94ea03e832feba765e1f931b6577 23736 
xserver-xorg-video-intel_2.20.14-1.diff.gz
 efe1a9093fde65fbe11c168a165e0270cafbc55b08a408d5412d133859dbd02d 1305666 
xserver-xorg-video-intel_2.20.14-1_amd64.deb
 caa60d96f83693f486b4a3954238e683c2adffcae7562135cb5ca33ca256c4ab 3289368 
xserver-xorg-video-intel-dbg_2.20.14-1_amd64.deb
Files: 
 182c7e5d645cc53b190f904991b3d596 2670 x11 optional 
xserver-xorg-video-intel_2.20.14-1.dsc
 d606cba7fe60153ced55e3dd2aa722d7 2245479 x11 optional 
xserver-xorg-video-intel_2.20.14.orig.tar.gz
 b3d767916929b0e7677763720d91e653 23736 x11 optional 
xserver-xorg-video-intel_2.20.14-1.diff.gz
 10b247dab3ecfc18337f3781e4e7d151 1305666 x11 optional 
xserver-xorg-video-intel_2.20.14-1_amd64.deb
 e7f6713c8645d59d0a824cf0ee50daaa 3289368 debug extra 
xserver-xorg-video-intel-dbg_2.20.14-1_amd64.deb

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

iQIcBAEBCAAGBQJQu50rAAoJEDEBgAUJBeQMBuIP/09puKYu2dDV5ZFcKd5CaRBp
MNW++AdPG7P89eyQL8N6I/rahFfD/z01w6IwZLftK1lxihxTfY7tC6DjcWZyjg3g
aLGWr2bhOiOpA0ErDACVzBfwoLOONEWKk5rqQIKPUTsK2MymH6wXZP8dBB0oeZIN
0BDm832wLuOn/NeYhkdgo/ZHz18FdW43ZPDWowLQNf9s+VEbb7wePklHoaX7RQL7
iZcZktvqEQinf72YakPnxAOPUhDZ0CpdecgNps8eez7WdlR3b1QaPbFDvPtWtF8T
daZ/8pJlLoFG9bzPVdbMml6jhvfvcvphjHBFkjjul6GW3kH6KPdqvIGUEQgF1V1c
E12RV8bXu69WWbysGQxVfu+jGeBUL+e7wQ2J4ZigVbTaAR+X+biD5r+hjA0BFmQt
FZV0WHvwAXdej4O38AWuPYBzvBll2ZCya9duMGAnBdi/m/k4cGTnug7PLDBxeQ8e
itwYZUggxkPPahD17+RjbNK2qQ1P1vnAtL7R8zTJ7AJRrIEMkowGaI3AnkwpmwKB
NdHGlhlCSu5nBFBAFdH81+wAtjh10hQhbTgPHTV39bTCPAwDcG2R/B5OPSgbqrmv
SF7NwQRVFBVHH5cpWf06+Hs1h7xH39PEA+wrARoPj/LUkzBXwCYW32Cb1IGsCsp+
xC14zMgSR25x+MgA9wiu
=78/R
-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/e1tfelo-0004gt...@franck.debian.org



Accepted debdelta 0.53 (source all amd64)

2012-12-02 Thread A Mennucc1
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 18:52:15 +0100
Source: debdelta
Binary: debdelta debdelta-doc
Architecture: source all amd64
Version: 0.53
Distribution: experimental
Urgency: low
Maintainer: A Mennucc1 mennu...@debian.org
Changed-By: A Mennucc1 mennu...@debian.org
Description: 
 debdelta   - diff and patch utilities which work with Debian packages
 debdelta-doc - diff and patch utilities which work with Debian packages
Closes: 617481
Changes: 
 debdelta (0.53) experimental; urgency=low
 .
   * merge changes uploaded in wheezy, and changelogs as well
   * Bug fix: owned and unowned files after purge (policy 6.8 + 10.7.3),
 thanks to Holger Levsen (Closes: #617481).
Checksums-Sha1: 
 31217a6d69aded4a3a74877c2c33f4ae52c6abdb 889 debdelta_0.53.dsc
 8f8efbc07415e39e3f8b549c2b33027206c393c2 286389 debdelta_0.53.tar.gz
 ea06e14ebd6906090211210f567a26f55aabe4f2 142954 debdelta-doc_0.53_all.deb
 20fb332ef64174dda69e93e51abd245a5f3dd2bb 111674 debdelta_0.53_amd64.deb
Checksums-Sha256: 
 65e3e230cc70b854c637f1afc0fa8697863e1fe26f840212bd4fb5accd38e5c3 889 
debdelta_0.53.dsc
 4dc8eaa9fbb6f3fd6d2aa0e74aab2556a633e1a006bbf4d1e32ad8a3ea5b737f 286389 
debdelta_0.53.tar.gz
 14e41ae9ad48cbbdc2b7823f610405c4492d9a2143939db9d76f5df357e6c108 142954 
debdelta-doc_0.53_all.deb
 ce6b49f5a93207b33660b89c58a6944607773f8f079c59d44a3fcce3208a937a 111674 
debdelta_0.53_amd64.deb
Files: 
 d97eea377c769c0c22a06dc1381447cb 889 devel optional debdelta_0.53.dsc
 ff7da17108832bf24a6cb92d86014dd5 286389 devel optional debdelta_0.53.tar.gz
 eb65db5ae1a2125e2f78d0b659e15bdb 142954 doc optional debdelta-doc_0.53_all.deb
 4055c3b84f82c1053b9810316e57162a 111674 devel optional debdelta_0.53_amd64.deb

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

iEYEARECAAYFAlC7nd8ACgkQ9B/tjjP8QKRFEACdFzICvdG3f/InVUaRFrkbUuJk
au0AoJEMEx0csj+W9NTtJ0QAe0UT1+0c
=8NH2
-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/e1tfeze-0007l1...@franck.debian.org



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

2012-12-02 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Dec 2012 17:04:35 -0400
Source: haskell-dav
Binary: hdav libghc-dav-dev libghc-dav-prof libghc-dav-doc
Architecture: source all i386
Version: 0.3-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.3-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 a35c8eb7c5a1628c9263d9ddabdbc2c9dd91eb6b 3145 haskell-dav_0.3-1.dsc
 16a17abfb444fe3a91c7adeaff76a84147c01725 18030 haskell-dav_0.3.orig.tar.gz
 9cc9c68d8c134f9e310cc93df8a6519d377c5cb0 4146 haskell-dav_0.3-1.debian.tar.gz
 4c2d79a49e3c11c1b8ef7b76e6060a66cd8bb4a7 38522 libghc-dav-doc_0.3-1_all.deb
 baecbb18c6cce413ef397043e2f68e0a5789a963 2553438 hdav_0.3-1_i386.deb
 f01ccd671fab3e2dd71c7f1d9505125e951f9b0e 93230 libghc-dav-dev_0.3-1_i386.deb
 726617dc33d8b4b89eef57a978d485a90df1e28c 87722 libghc-dav-prof_0.3-1_i386.deb
Checksums-Sha256: 
 4068f6a4c356b245304c6dceadce51017cac81dd47e3d292537abc935d42f5e9 3145 
haskell-dav_0.3-1.dsc
 a8b332e99883f2cfd2d7195a05da7649dae9826c96ae6d6c5040a5f352c10b9b 18030 
haskell-dav_0.3.orig.tar.gz
 f9403f154bd51a5e6d7c9720405d7dc64aab4b457208c505a42eaa9e313b2ef9 4146 
haskell-dav_0.3-1.debian.tar.gz
 bb2f7b14bd84fce87d84731b90ac184f503a73048bd996b9d0a80650182bba00 38522 
libghc-dav-doc_0.3-1_all.deb
 7f96696a9e229af5cdaab0cee1805ed382a99bb6baff55c02ebead316c843f85 2553438 
hdav_0.3-1_i386.deb
 e8b11deba2b01ce55782fbacc5619613c25a1537915aaf78d92d22a3d6758953 93230 
libghc-dav-dev_0.3-1_i386.deb
 bb552faf6a719093e9822c36387691559bbf1410922df44fa37e35dea3854782 87722 
libghc-dav-prof_0.3-1_i386.deb
Files: 
 766d4fb0faa47a58b1a54549fe41daaa 3145 haskell extra haskell-dav_0.3-1.dsc
 4809ed98af03adb50fc1318998010760 18030 haskell extra 
haskell-dav_0.3.orig.tar.gz
 87815067ac2ee0eadb8b7a39bb288d6d 4146 haskell extra 
haskell-dav_0.3-1.debian.tar.gz
 ab10080aff98bc9065e331d6b2711962 38522 doc extra libghc-dav-doc_0.3-1_all.deb
 e56f3c214c8620490491f17d360011ad 2553438 web extra hdav_0.3-1_i386.deb
 13f7deb31e614ac78bc1902c91f0995e 93230 haskell extra 
libghc-dav-dev_0.3-1_i386.deb
 bed6f299984fb8a9ce837a98145a7c4f 87722 haskell extra 
libghc-dav-prof_0.3-1_i386.deb

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

iQIVAwUBULpzqskQ2SIlEuPHAQhg8A/+JLn9IEx5dPHW/GcpDiUKLzpkx0Rl3Kwz
xzLsN8IZbbsGhhO20KPWcxoSSS09tm2imhd9uhYIZDXl3/G747a8WAOIz/ORsAKR
oDzn1rwub22mXicVjMuc2YYBXlPYWYwsMB2ZXRtsePTGx7wv1FdphSD3GqS4vhh4
Mrgyul+NrG3N0hDvLrKL/ZiZb0JkQcsEKDV4cT8rcK3jVYnw/D1ppFfyhzrKi7PH
NvOfQL5YHO96uZWO/JRhmfwx1Bnv1nwvSSEqpAl9L9TdfBZkOqyEyV1ldSTsYL8E
IRraQ6MwFmY4fLytpTp/C3ko2c60XnjC7UdeGF9J5OomOGdlxUolIdDCS1LY7wQL
+rLdtJVv79C8xeSg7sojS7IV1F4GyT8KG35/LDMQeOe8oa9jjysWyXAMc9FB2dB/
D7XujLF0EvGA57ETO2QWdqEE6K1vTcvgE3GU9V0hWxGdt6dSQejjmt6nvpTT5f4R
rBB06PQL7NffCZ0av+fd8fF/7pdqadbCvMUDVUlgMsBeebkWH/OrKA8v+bCpYweK
cw6l4aF5qoOYlyCHs+E2XgWwxtLl7Wo+7A+bhZD30JtPHNpTkXUxu+gAjFytIwhU
x5Pr7IhEiU0dll4CuZZYVAFGIPOGr5OqMTOP5c/b15Ts4MHpwy67NDJdy4KC4lK5
KkfpICtAXrQ=
=PW8z
-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/e1tfeoe-0002pe...@franck.debian.org



Accepted rquantlib 0.3.9-1 (source i386)

2012-12-02 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 12:35:13 -0600
Source: rquantlib
Binary: r-cran-rquantlib
Architecture: source i386
Version: 0.3.9-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-rquantlib - GNU R package interfacing the QuantLib finance library
Changes: 
 rquantlib (0.3.9-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set Build-Depends: to current R + Rcpp versions
   * debian/control: Change Depends to ${R:Depends}
   * debian/control: Set Standards-Version: to current version
Checksums-Sha1: 
 50736e86b16797384641c3c490ebaab355842acc 1155 rquantlib_0.3.9-1.dsc
 6c9510744e52551050c8dd4f99ee38054331ee3c 112316 rquantlib_0.3.9.orig.tar.gz
 a147ea87857554750a81992cf325c746ad29a85d 5558 rquantlib_0.3.9-1.diff.gz
 3b52e831e4a256e77414367c8d568af358d29772 864486 
r-cran-rquantlib_0.3.9-1_i386.deb
Checksums-Sha256: 
 eeede5b95b01fd7561f8f64e54a943ac74090d13285e7e2b8b2deb6d022a2d88 1155 
rquantlib_0.3.9-1.dsc
 1ea4090700f9ba1feba9206f164a1f5272ab2237afdec32d36d88835cb4d08a1 112316 
rquantlib_0.3.9.orig.tar.gz
 df0153b052c4746d36dcfe4600897a6d712a73fc9ff3b913954d4eb185de291a 5558 
rquantlib_0.3.9-1.diff.gz
 f01d5b7843fda10e727d28418592a2785d8a289d1cc1a1b6017223e2db32748c 864486 
r-cran-rquantlib_0.3.9-1_i386.deb
Files: 
 e1759a974343af838a7ea4d19b524f38 1155 gnu-r optional rquantlib_0.3.9-1.dsc
 07827497e023b0630a625af03e2b2d5f 112316 gnu-r optional 
rquantlib_0.3.9.orig.tar.gz
 22d7e66c4be074f5e29f9a080f3f1923 5558 gnu-r optional rquantlib_0.3.9-1.diff.gz
 611a44956c2a876b47a7440681284b18 864486 gnu-r optional 
r-cran-rquantlib_0.3.9-1_i386.deb

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

iD8DBQFQu6IXCZSR95Gw07cRAv6NAJ9yrxmyfK/kqi5fDQklK4xLyz7QmgCfZRYU
aEDCr7xB5on8gD29a/FTNOY=
=RcXr
-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/e1tfeop-0002tx...@franck.debian.org



Accepted vcftools 0.1.9+dfsg-2 (source amd64)

2012-12-02 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 19:00:00 +0100
Source: vcftools
Binary: vcftools
Architecture: source amd64
Version: 0.1.9+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 vcftools   - Collection of tools to work with VCF files
Closes: 689058 689059
Changes: 
 vcftools (0.1.9+dfsg-2) unstable; urgency=low
 .
   * debian/control: description changed (Closes: #689058)
   * debian/patches/perl.patch for new syntax (Closes: #689059)
   * fix get-orig-source to handle dfsg
Checksums-Sha1: 
 a748beeebad7a992ff26e54244dfff1bccd090c7 1410 vcftools_0.1.9+dfsg-2.dsc
 f0a2674706391da032bdc395a0664c21207e4887 197588 vcftools_0.1.9+dfsg.orig.tar.gz
 483db9049300ee6576431a1e37095b878c700fdb 15164 
vcftools_0.1.9+dfsg-2.debian.tar.gz
 fed6a073e3c61360e6872f13ba23f57536605f23 353990 vcftools_0.1.9+dfsg-2_amd64.deb
Checksums-Sha256: 
 d38be6b73d90e244c752c8a29bcf4eb8770d676fc121a829edc9171ae7ff1919 1410 
vcftools_0.1.9+dfsg-2.dsc
 37752ba4ea01ce39a334e67c8be3757c13d5e6e568f721555e62fa21ce9d6bdb 197588 
vcftools_0.1.9+dfsg.orig.tar.gz
 bb9433e7bed0cf553d488eb505f9a63e2dc8b1fe0e7f508cf37a56ef11c5666f 15164 
vcftools_0.1.9+dfsg-2.debian.tar.gz
 deea7f3a91d6944c866fb1cb38ca3fee8a29e32b5d2fb676c58ac77ea74c692b 353990 
vcftools_0.1.9+dfsg-2_amd64.deb
Files: 
 94848e6210056a8409ed9b8da532bb08 1410 science extra vcftools_0.1.9+dfsg-2.dsc
 bd436a7c4a48aae9bcc1e618f2d90f92 197588 science extra 
vcftools_0.1.9+dfsg.orig.tar.gz
 669f0ea03deddcf9c85af6cd7b8cd20b 15164 science extra 
vcftools_0.1.9+dfsg-2.debian.tar.gz
 532a602a29cf3960f20076fc18d22baf 353990 science extra 
vcftools_0.1.9+dfsg-2_amd64.deb

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

iEYEARECAAYFAlC7wIEACgkQ02K2KlS5mJCkiwCffEB/yn2/e3F87tTjcDa/wax+
+NMAoIW9Dns7Ehz0VqYhppotR/2q44EC
=YdOt
-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/e1tfggi-0006bf...@franck.debian.org



Accepted sat4j 2.3.2-1 (source all)

2012-12-02 Thread Michael Tautschnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 17:45:35 +
Source: sat4j
Binary: sat4j
Architecture: source all
Version: 2.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Michael Tautschnig m...@debian.org
Changed-By: Michael Tautschnig m...@debian.org
Description: 
 sat4j  - Efficient library of SAT solvers in Java
Closes: 678007
Changes: 
 sat4j (2.3.2-1) unstable; urgency=low
 .
   * New upstream release
   * Bumped standards version to 3.9.4 (no changes)
   * Use target 1.5 instead of jsr14 as Java7 no longer allows generics with
 jsr14. Thanks Niels Thykier for the report and patch (closes: #678007)
Checksums-Sha1: 
 c2a81003c2c75b49f2a486b999f2b10bff4597a9 1184 sat4j_2.3.2-1.dsc
 f21ce851c8421f8da431c114c3343380159770d5 14408289 sat4j_2.3.2.orig.tar.gz
 fe29dbfba08ad73c59be6e786210c6d8f95ad8ee 11753 sat4j_2.3.2-1.debian.tar.gz
 d87df29d7d3797a2dc1daa07431afa23bb157f8f 1039374 sat4j_2.3.2-1_all.deb
Checksums-Sha256: 
 25aa1327fcdd71d52931b12dac8dc9b22587e887c0300ed54ae41638580d205b 1184 
sat4j_2.3.2-1.dsc
 0b835f8ebcab0fb124f4ebb39d0af97ab7368813e7bb21f69ecaa00c0685766a 14408289 
sat4j_2.3.2.orig.tar.gz
 7d0af53859dd2b1f555d36c935f99faefc24be39e78e9e1f5896b2563db710d9 11753 
sat4j_2.3.2-1.debian.tar.gz
 ecf4c3dbb6d12077496036ba78535eab891972c1b504ef8699d7aa5665e68158 1039374 
sat4j_2.3.2-1_all.deb
Files: 
 dfae6aa46a4b2b5a22a3f37f29abc35d 1184 science optional sat4j_2.3.2-1.dsc
 48ea821395ac61a6780de8c9cecae363 14408289 science optional 
sat4j_2.3.2.orig.tar.gz
 abc4835c0d29ab31b0623b419d6f3f02 11753 science optional 
sat4j_2.3.2-1.debian.tar.gz
 279ed8a5b91356bc8c4308dc3c396ff2 1039374 science optional sat4j_2.3.2-1_all.deb

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

iEYEARECAAYFAlC7wTcACgkQvx6dH3bVKsQj7gCgiTIPFumn8F9Qzy1QvQynsQBL
Y1AAoOWug0wGwo9l1OeJh1YZHUl/Go/P
=4rMW
-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/e1tfgvx-xo...@franck.debian.org



Accepted haskell-cabal-install 1.16.0.2-1 (source amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 21:36:02 +0100
Source: haskell-cabal-install
Binary: cabal-install
Architecture: source amd64
Version: 1.16.0.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 cabal-install - command-line interface for Cabal and Hackage
Changes: 
 haskell-cabal-install (1.16.0.2-1) experimental; urgency=low
 .
   * Depend on haskell-devscripts 0.8.13 to ensure this packages is built
 against experimental
   * Bump standards version, no change
   * New upstream release
Checksums-Sha1: 
 06e7e78a2e218623663ff9eb3fb6ecd3def3be76 1762 
haskell-cabal-install_1.16.0.2-1.dsc
 d85cba298302b9c426fedd6d8e4c892343ca70ea 201232 
haskell-cabal-install_1.16.0.2.orig.tar.gz
 887d6f63518dc3b21b0e945b915397640fcf4299 4175 
haskell-cabal-install_1.16.0.2-1.debian.tar.gz
 c2590a6df441e48224b82bf480a316dcd34c2f0f 2016928 
cabal-install_1.16.0.2-1_amd64.deb
Checksums-Sha256: 
 a194326b9a45bc427d563bc8a4cad594fb71b0f69e32c627ad1abda7005961cf 1762 
haskell-cabal-install_1.16.0.2-1.dsc
 66dfacc9f33e668e56904072cadb8a36bd9d6522ba5464c6a36a5de7e65c5698 201232 
haskell-cabal-install_1.16.0.2.orig.tar.gz
 1087c2393ee6c140961c268225648aae3c9034d8aedc07018eff070153bb52eb 4175 
haskell-cabal-install_1.16.0.2-1.debian.tar.gz
 44d58c5222ec5e202db219033dca1a5f8e4f64a83dd118de2dc3d2efcc677c63 2016928 
cabal-install_1.16.0.2-1_amd64.deb
Files: 
 8065e7aae47a809984a71e7fda4ac2ef 1762 haskell extra 
haskell-cabal-install_1.16.0.2-1.dsc
 18e07d5b431d19d94cc5279a5e6fbfee 201232 haskell extra 
haskell-cabal-install_1.16.0.2.orig.tar.gz
 3c2ba8eb1805645f11e1006ec0e86f1c 4175 haskell extra 
haskell-cabal-install_1.16.0.2-1.debian.tar.gz
 a41c247c4074eda75519ecafd8199f19 2016928 haskell extra 
cabal-install_1.16.0.2-1_amd64.deb

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

iEYEARECAAYFAlC7x7cACgkQ9ijrk0dDIGxMugCgohF63DULFbD4yrtE5Mxiq7eb
bBEAnRkGOgtZIhVX9SivJA731fFyA0Et
=Km+M
-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/e1tfh9p-0003mj...@franck.debian.org



Accepted haskell-cairo 0.12.4-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 21:40:37 +0100
Source: haskell-cairo
Binary: libghc-cairo-dev libghc-cairo-prof libghc-cairo-doc
Architecture: source all amd64
Version: 0.12.4-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-cairo-dev - Binding to the Cairo library
 libghc-cairo-doc - Binding to the Cairo library; documentation
 libghc-cairo-prof - Binding to the Cairo library; profiling libraries
Changes: 
 haskell-cairo (0.12.4-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 5552ab68ca0629e7d326a7b0da543e01f638735d 1644 haskell-cairo_0.12.4-1.dsc
 3c56deb6cbcee41c7bbedf3072acd2042f5c 50933 haskell-cairo_0.12.4.orig.tar.gz
 9e73268f79cde87cf351106b83b80a3f5b0e68a8 2520 
haskell-cairo_0.12.4-1.debian.tar.gz
 c06b204bea666b664014f3a0cf50d09d5f5c433b 184930 
libghc-cairo-doc_0.12.4-1_all.deb
 b1feb187dc0f7e3bb8adc430edacca1a1d3f19ae 510086 
libghc-cairo-dev_0.12.4-1_amd64.deb
 e60880ea1f5334cc7301be4ef513eb791e195c0f 477756 
libghc-cairo-prof_0.12.4-1_amd64.deb
Checksums-Sha256: 
 2f5cbf5188ded3996b66b784a7c81ee802de7c269f308c47d0ec68c1dc456da2 1644 
haskell-cairo_0.12.4-1.dsc
 783943379a6b02e8645dd29960e057bea8d05a7afa12a918d87e54d561b7c63f 50933 
haskell-cairo_0.12.4.orig.tar.gz
 0cd20f99ef9ab8ff40ac3a68666201876a57969ea049116e3126335a96a31578 2520 
haskell-cairo_0.12.4-1.debian.tar.gz
 52d4d0cff0d13cadcd9e58d32f5ac3199cdde08014b3c8549284abaecaa4870d 184930 
libghc-cairo-doc_0.12.4-1_all.deb
 8eb3f8f6e992a85ae4f99af1a59c35dd53986582a1612038bb5000bb903bf9bb 510086 
libghc-cairo-dev_0.12.4-1_amd64.deb
 94b8e47fb337bd9e4c887c375c6497ed06a759dd433faef16a413ed503e6da9e 477756 
libghc-cairo-prof_0.12.4-1_amd64.deb
Files: 
 db5ff0c9d111d7d496e08a35dfe16d70 1644 haskell extra haskell-cairo_0.12.4-1.dsc
 b9d7e8de6ba4db680c222958622d6ee6 50933 haskell extra 
haskell-cairo_0.12.4.orig.tar.gz
 4392434c904cebf24c4c6c53ddc73084 2520 haskell extra 
haskell-cairo_0.12.4-1.debian.tar.gz
 1493e20d887dd2cdbf8654a6eb8e4e2f 184930 doc extra 
libghc-cairo-doc_0.12.4-1_all.deb
 edbea1b6dbb37e059ecc36c7691a621c 510086 haskell extra 
libghc-cairo-dev_0.12.4-1_amd64.deb
 17af58bb51621aa8503d42e02225c7d2 477756 haskell extra 
libghc-cairo-prof_0.12.4-1_amd64.deb

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

iEYEARECAAYFAlC7x8cACgkQ9ijrk0dDIGydGwCfQqnHCEVRWcRtroVJpKkShMJA
DJ0AoLf7pI4YB57niktfP0nRgMfiHCBo
=Ebx3
-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/e1tfh9v-0003su...@franck.debian.org



Accepted haskell-chart 0.16-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 21:41:02 +0100
Source: haskell-chart
Binary: libghc-chart-dev libghc-chart-prof libghc-chart-doc
Architecture: source all amd64
Version: 0.16-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-chart-dev - library for generating 2D Charts and Plots
 libghc-chart-doc - library for generating 2D Charts and Plots; documentation
 libghc-chart-prof - library for generating 2D Charts and Plots; profiling 
libraries
Changes: 
 haskell-chart (0.16-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 ab58a8394bc8f8167480404eaed2189a73644456 2000 haskell-chart_0.16-1.dsc
 f0a1989a172b36c6792eed5657db61d6824ed38f 55707 haskell-chart_0.16.orig.tar.gz
 d640e0b05d766a9b765ec0ad8836634511f32bb3 2545 
haskell-chart_0.16-1.debian.tar.gz
 7e84964c96af13d9861d9f0975ce385717513cad 222160 libghc-chart-doc_0.16-1_all.deb
 d63ee708bdffc71136df9cff32394f7b0636c556 823786 
libghc-chart-dev_0.16-1_amd64.deb
 a4646c4002fc17c348ca3f2404d9ca04e601cda5 819166 
libghc-chart-prof_0.16-1_amd64.deb
Checksums-Sha256: 
 d734dd70cf62a56f584321d3fcb46106897887f6226b5e88372394b321a5 2000 
haskell-chart_0.16-1.dsc
 43657996f17717f4aa3cd11affeae60d1b576a22d6dd60003dba4420fb8368d5 55707 
haskell-chart_0.16.orig.tar.gz
 b049288c97663a56976db57b0d15b7811f7fdfa6564809fdc9ca0a9dde49784a 2545 
haskell-chart_0.16-1.debian.tar.gz
 34c058c37f8c07411c20d5cfb4b9f358e0c802fdb4e78a315a0d47056101aab6 222160 
libghc-chart-doc_0.16-1_all.deb
 0886f6e73470dfb2be0138e82b54e86232ee7002481093a54963df5eb21efa5b 823786 
libghc-chart-dev_0.16-1_amd64.deb
 068a5e0d4a9aae245631ae01c96048c1e0e4eb204fa4ced5cc2243129d86e520 819166 
libghc-chart-prof_0.16-1_amd64.deb
Files: 
 fe8282ee7aae9ecfed88998eab0acce8 2000 haskell extra haskell-chart_0.16-1.dsc
 88e76b532fbb182509e0011e5122c255 55707 haskell extra 
haskell-chart_0.16.orig.tar.gz
 5b5d3b2e43780fb5e0819a81cdf0ffd4 2545 haskell extra 
haskell-chart_0.16-1.debian.tar.gz
 02e1d9396edb3dc0d843f3b93ba09183 222160 doc extra 
libghc-chart-doc_0.16-1_all.deb
 954a580b0fa28fa5f028505e86165a97 823786 haskell extra 
libghc-chart-dev_0.16-1_amd64.deb
 94b3caa62bfe1030b51c2f1a3cc9525c 819166 haskell extra 
libghc-chart-prof_0.16-1_amd64.deb

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

iEYEARECAAYFAlC7x+EACgkQ9ijrk0dDIGzlAgCeLxvCgxLQinAHKnpUS9054fFV
ZpUAnizadkV8GMpTbiBLz7dar5W433Ia
=k3GD
-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/e1tfh9c-0003y7...@franck.debian.org



Accepted haskell-cmdargs 0.10.1-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 21:42:31 +0100
Source: haskell-cmdargs
Binary: libghc-cmdargs-dev libghc-cmdargs-prof libghc-cmdargs-doc
Architecture: source all amd64
Version: 0.10.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-cmdargs-dev - command-line argument processing
 libghc-cmdargs-doc - command-line argument processing; documentation
 libghc-cmdargs-prof - command-line argument processing; profiling libraries
Changes: 
 haskell-cmdargs (0.10.1-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 5056f7e7f686e6836c93c13d3e21384ddd52e9b8 1752 haskell-cmdargs_0.10.1-1.dsc
 8cc7897425337407f85429a844184b4a3a921b8e 60350 
haskell-cmdargs_0.10.1.orig.tar.gz
 0951bd5f256a76df69a1f56fc4982b4683053d0b 2933 
haskell-cmdargs_0.10.1-1.debian.tar.gz
 533df2034f74191f7ff5d2c238541ea65fc87a36 180798 
libghc-cmdargs-doc_0.10.1-1_all.deb
 6da7849d0e250c4cb21d5c44ffa771584bb8512b 755806 
libghc-cmdargs-dev_0.10.1-1_amd64.deb
 e8e7d2d40c5a7d02b008456d092f4a804ee3afa5 744220 
libghc-cmdargs-prof_0.10.1-1_amd64.deb
Checksums-Sha256: 
 c8981491f1e0f9f3bbea13c011494a15fa60a3e6cfb05c3a42836c6b7a704856 1752 
haskell-cmdargs_0.10.1-1.dsc
 e83b1be217a337fd3b445373eef0acc2c6933877fb8c70ff5dc16a550cfcee5c 60350 
haskell-cmdargs_0.10.1.orig.tar.gz
 8638d9814a85ee30a4bf7dc3c9482498e44b2ce5f64323b52576cfecb9536eae 2933 
haskell-cmdargs_0.10.1-1.debian.tar.gz
 1c828d36fcd1483879eabdfd1beab8705659e57e7d0f3414ed3de562afa9c61a 180798 
libghc-cmdargs-doc_0.10.1-1_all.deb
 9c46819b6b01904f79530d114482b3654165e1cf48e01b6b0dc1d1f933be0a45 755806 
libghc-cmdargs-dev_0.10.1-1_amd64.deb
 9ca7ff5aeb1a49ef648ca384f59a5e58e1778aecb26e8b1cb1f72e12977d3834 744220 
libghc-cmdargs-prof_0.10.1-1_amd64.deb
Files: 
 4d605e4cb9c0e54e093afa0d3fe648ea 1752 haskell extra 
haskell-cmdargs_0.10.1-1.dsc
 1cc84469cdde4913a093c6d37a44f464 60350 haskell extra 
haskell-cmdargs_0.10.1.orig.tar.gz
 5805fb5bc698e2602ea300c15a5e7c66 2933 haskell extra 
haskell-cmdargs_0.10.1-1.debian.tar.gz
 4957d00c788ffd7b7c5009683139fe3c 180798 doc extra 
libghc-cmdargs-doc_0.10.1-1_all.deb
 c014ff2acd4b5226474e2ce68495c5f3 755806 haskell extra 
libghc-cmdargs-dev_0.10.1-1_amd64.deb
 342d6f3c1e06ce891d5193fb4cb78df5 744220 haskell extra 
libghc-cmdargs-prof_0.10.1-1_amd64.deb

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

iEYEARECAAYFAlC7x+8ACgkQ9ijrk0dDIGyRKgCggzxO/21gqg+brqJKxP7ADXak
ghsAn2mCtEznrzdZ7N3QWDnfVlahrS38
=mh2r
-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/e1tfh9i-0003ds...@franck.debian.org



Accepted haskell-configurator 0.2.0.1-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 21:43:23 +0100
Source: haskell-configurator
Binary: libghc-configurator-dev libghc-configurator-prof libghc-configurator-doc
Architecture: source all amd64
Version: 0.2.0.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-configurator-dev - dynamic config file reloading
 libghc-configurator-doc - dynamic config file reloading; documentation
 libghc-configurator-prof - dynamic config file reloading; profiling libraries
Changes: 
 haskell-configurator (0.2.0.1-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 22ee14fd9b1b70ef063bdba49e764c50b18c0aac 2038 
haskell-configurator_0.2.0.1-1.dsc
 6f1cf328f83ec5896e0f97d18dff695fe2dd6cc2 14221 
haskell-configurator_0.2.0.1.orig.tar.gz
 056d84c26c3b0fd19344fe2b3e1096dde82fa668 2462 
haskell-configurator_0.2.0.1-1.debian.tar.gz
 fe539dc777e4154b255f5245552a2f655c442128 66204 
libghc-configurator-doc_0.2.0.1-1_all.deb
 ff7cb2daba78c5e13507f07dabb6143c0f9184e3 282762 
libghc-configurator-dev_0.2.0.1-1_amd64.deb
 c476a7abcf03f2f2cd0e8ce9bfc608af293a0c96 268222 
libghc-configurator-prof_0.2.0.1-1_amd64.deb
Checksums-Sha256: 
 20cd7575f9acef5ea2f0b97e341c47e42028ddd2367ad69edaa5c0415b2ae930 2038 
haskell-configurator_0.2.0.1-1.dsc
 d7f8bea4e67843454ca66685c950eb0483eccf4345998fdf1cecce2e7071860b 14221 
haskell-configurator_0.2.0.1.orig.tar.gz
 977fa0a67999132c8a68533581eedb9f6e9a66fd75b4d58104539c620aa33e95 2462 
haskell-configurator_0.2.0.1-1.debian.tar.gz
 28b5d30bc335447446a32b08ecfb2913e9b795bfa289966d45d6a95f3b4cd1f0 66204 
libghc-configurator-doc_0.2.0.1-1_all.deb
 e6475d1bcb97ebd1ae69e7f92bd842f2971c4bc5a4828618bdec816d272c43d4 282762 
libghc-configurator-dev_0.2.0.1-1_amd64.deb
 5f1d38e42934b76d047ecc336a13c6c31c3e6be046b74b75ddc3d1bfc43fb293 268222 
libghc-configurator-prof_0.2.0.1-1_amd64.deb
Files: 
 6f2716a14b890f6a9339f1fae48c3a54 2038 haskell extra 
haskell-configurator_0.2.0.1-1.dsc
 fd09fcd6b990e9cfeffda7f2f6cb0b06 14221 haskell extra 
haskell-configurator_0.2.0.1.orig.tar.gz
 985bf75c7d57ff0c20302db86d8d05aa 2462 haskell extra 
haskell-configurator_0.2.0.1-1.debian.tar.gz
 78bb4158dbdd949c3113d14eb3acb115 66204 doc extra 
libghc-configurator-doc_0.2.0.1-1_all.deb
 4f23fb636a08d75fee096e2896af5f06 282762 haskell extra 
libghc-configurator-dev_0.2.0.1-1_amd64.deb
 4a0882e74acf0efeb78180f8d3171319 268222 haskell extra 
libghc-configurator-prof_0.2.0.1-1_amd64.deb

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

iEYEARECAAYFAlC7x/sACgkQ9ijrk0dDIGx7NACgmseWGBhtldJWi6zRNmjiEd4E
tIEAoI066wT8L46kUqfTpRzGdqNCBk0p
=cT00
-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/e1tfh9p-0003jd...@franck.debian.org



Accepted haskell-curl 1.3.8-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 21:44:19 +0100
Source: haskell-curl
Binary: libghc-curl-dev libghc-curl-prof libghc-curl-doc
Architecture: source all amd64
Version: 1.3.8-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-curl-dev - GHC libraries for the libcurl Haskell bindings
 libghc-curl-doc - Documentation for the libcurl Haskell bindings
 libghc-curl-prof - Profiling libraries for the libcurl Haskell bindings
Changes: 
 haskell-curl (1.3.8-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 5a01dcf27700a53e8104a83f591d6324d49fe10f 1588 haskell-curl_1.3.8-1.dsc
 d1300ae10bebfb1f058fe3bd200182aa766b2adc 47704 haskell-curl_1.3.8.orig.tar.gz
 4bd50708a50bb48b209be5053efe18e402341776 3271 
haskell-curl_1.3.8-1.debian.tar.gz
 e2e345e41e38c8242cd24ccb3369b95895460974 123954 libghc-curl-doc_1.3.8-1_all.deb
 8046249b49c55e29684f6ed0ae233ff07c122df4 339278 
libghc-curl-dev_1.3.8-1_amd64.deb
 173da174eaa3c7d1b9e16988dfd94dc861a7a5a4 326342 
libghc-curl-prof_1.3.8-1_amd64.deb
Checksums-Sha256: 
 a6adbccd4b1c6aaacae8d5fb1a731fb7fab537872e8f09d1063ee534c92ad8c2 1588 
haskell-curl_1.3.8-1.dsc
 9087c936bfcdb865bad3166baa3f12bf37acf076fa76010e3b5f82a1d485446e 47704 
haskell-curl_1.3.8.orig.tar.gz
 36a98cb4fe5cbb7a79fc8ae53d8b6e02f171b3834e11433752b7deecf7a3b732 3271 
haskell-curl_1.3.8-1.debian.tar.gz
 cde87aef2a78d1ef1e0312081edf2ac2bc4be58764d02396b09634f43f35c934 123954 
libghc-curl-doc_1.3.8-1_all.deb
 35a4ce9538971d283a01420f5b8211ee243c1b06edcee785a2f7a00a5b56fc35 339278 
libghc-curl-dev_1.3.8-1_amd64.deb
 33dc61d811041f003e5ac4b3c3b553d0717a10ff871a79d2efc57b35abbf3067 326342 
libghc-curl-prof_1.3.8-1_amd64.deb
Files: 
 2c804df695f4751cf70423d78bf0e0f2 1588 haskell extra haskell-curl_1.3.8-1.dsc
 853113e2ac933e203894a4588150821d 47704 haskell extra 
haskell-curl_1.3.8.orig.tar.gz
 5997f6443cf21d7d5c01b5d4ba503fae 3271 haskell extra 
haskell-curl_1.3.8-1.debian.tar.gz
 087d939d6c22d98ccc6cef0131beffa8 123954 doc extra 
libghc-curl-doc_1.3.8-1_all.deb
 c60824f28fab8b4d08ff48b59a7e2e10 339278 haskell extra 
libghc-curl-dev_1.3.8-1_amd64.deb
 2e127c15b3df52f55f448a8da3f1a902 326342 haskell extra 
libghc-curl-prof_1.3.8-1_amd64.deb

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

iEYEARECAAYFAlC7yAQACgkQ9ijrk0dDIGxxYwCgtqvUwETg8GrTn7R+w+suaH5k
gw0AoMlFgcr0sQ56oHS+BFFedym2KtGa
=6dbi
-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/e1tfh9w-0003pq...@franck.debian.org



Accepted haskell-email-validate 0.3.2-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 21:53:47 +0100
Source: haskell-email-validate
Binary: libghc-email-validate-dev libghc-email-validate-prof 
libghc-email-validate-doc
Architecture: source all amd64
Version: 0.3.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-email-validate-dev - validate an email address string against RFC 5322
 libghc-email-validate-doc - validate an email address string against RFC 5322; 
documentation
 libghc-email-validate-prof - validate an email address string against RFC 
5322; profiling libr
Changes: 
 haskell-email-validate (0.3.2-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 95bdd1444704d41385a22483443ec708c0f65f1f 1799 
haskell-email-validate_0.3.2-1.dsc
 b3766caf5e8c7e9c7d92144345b060ad9c092f83 41930 
haskell-email-validate_0.3.2.orig.tar.gz
 5192570bcb1526be517f22ce95604e96d7be0604 2257 
haskell-email-validate_0.3.2-1.debian.tar.gz
 18cfef94211c2edcc411f2f093069b27c420cf19 36810 
libghc-email-validate-doc_0.3.2-1_all.deb
 5d140b86f341d7f3ccd2150090af856e5614ad17 51370 
libghc-email-validate-dev_0.3.2-1_amd64.deb
 de8b294beb812e83a6f5694f85218b581ffa7108 52276 
libghc-email-validate-prof_0.3.2-1_amd64.deb
Checksums-Sha256: 
 8a03c7e0e7e3c8301757017d4ff305335e35892f61c94b627f49a6939b753ff9 1799 
haskell-email-validate_0.3.2-1.dsc
 18d6c65b52f41b6b107d6d4c5ee8b95eff8b4a0ea2be07d8b13b061701cd5033 41930 
haskell-email-validate_0.3.2.orig.tar.gz
 1d02911baee5cffd7bd34dc153076415e9a774d29b8c6283c1a7e5295efd3432 2257 
haskell-email-validate_0.3.2-1.debian.tar.gz
 51523d0a0e69d88a00ffe309fe4b7677e665e30c45fe090cadd48d5f4959275f 36810 
libghc-email-validate-doc_0.3.2-1_all.deb
 ad691c9f40ecfd0a410c658574c7d4b705d49697f0ada726bf37d41058c2c7d8 51370 
libghc-email-validate-dev_0.3.2-1_amd64.deb
 b8a6897f6e43aec30ceb32ef1d18652b26f27ab8f0c06169a94b2622c8e26220 52276 
libghc-email-validate-prof_0.3.2-1_amd64.deb
Files: 
 06ff531a1d927e33d5a525a0f6a2 1799 haskell extra 
haskell-email-validate_0.3.2-1.dsc
 521c1d9661a99a1e95c7d20c3500a0b3 41930 haskell extra 
haskell-email-validate_0.3.2.orig.tar.gz
 d6cd4a832edaaf1d1f55e373347dd8f6 2257 haskell extra 
haskell-email-validate_0.3.2-1.debian.tar.gz
 a0f8c95b270aff6c21e14bf16fc17ef4 36810 doc extra 
libghc-email-validate-doc_0.3.2-1_all.deb
 4f64fd7978ef45339745b46ea1569aac 51370 haskell extra 
libghc-email-validate-dev_0.3.2-1_amd64.deb
 df7b3ef09a491d4d7f4139a0e4654cf8 52276 haskell extra 
libghc-email-validate-prof_0.3.2-1_amd64.deb

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

iEYEARECAAYFAlC7yA0ACgkQ9ijrk0dDIGzErQCgn92hHxwrR4mqPtPrsuyo5+S3
0nEAnRjNX5bXMRniBuR17pH9/sQWNrlW
=xsW1
-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/e1tfha2-0003ws...@franck.debian.org



Accepted haskell-hjsmin 0.1.4-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:00:40 +0100
Source: haskell-hjsmin
Binary: libghc-hjsmin-dev libghc-hjsmin-prof libghc-hjsmin-doc
Architecture: source all amd64
Version: 0.1.4-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-hjsmin-dev - JavaScript minifier
 libghc-hjsmin-doc - JavaScript minifier; documentation
 libghc-hjsmin-prof - JavaScript minifier; profiling data
Changes: 
 haskell-hjsmin (0.1.4-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 33829d674ad8cced27105baa72a668578ec8574b 1910 haskell-hjsmin_0.1.4-1.dsc
 04f21d48c0d72ded739e198b116eb9d4c8ae4101 116144 
haskell-hjsmin_0.1.4.orig.tar.gz
 a4473a45101a617104e03df88a49e76e2d99b11e 2370 
haskell-hjsmin_0.1.4-1.debian.tar.gz
 2a941ad641aa72334a0fe541de2655bda128c795 38252 
libghc-hjsmin-doc_0.1.4-1_all.deb
 9b51eadf7635c987e1c767709ff6cc5791e2c0b1 96342 
libghc-hjsmin-dev_0.1.4-1_amd64.deb
 be9d54239579105a5b59c0c5ba70f17b58f2cce0 103386 
libghc-hjsmin-prof_0.1.4-1_amd64.deb
Checksums-Sha256: 
 f7012c1d6292ac79535ee190edd27765f0518b5a26c56c91520e55307dc7f61b 1910 
haskell-hjsmin_0.1.4-1.dsc
 b6c33e6f18690cb871a3c43fb463721002ca6f0bc0773322a3c3f77381299cf0 116144 
haskell-hjsmin_0.1.4.orig.tar.gz
 13ca49b63cab1fe972cd54fa365f9eddc7abec0c504c73750bf2bb515f113452 2370 
haskell-hjsmin_0.1.4-1.debian.tar.gz
 a7122d399c3cf598dac5e085830b35d89a499f031040d1128e60667da67ee686 38252 
libghc-hjsmin-doc_0.1.4-1_all.deb
 f4d0aa54d290214e04e304cb9057d857180104bcf4564b9a99c0e7aad6e14814 96342 
libghc-hjsmin-dev_0.1.4-1_amd64.deb
 47c6218c77fd807293e11453d001f33b4d1ab76a8cf5136397da5e6a7914156a 103386 
libghc-hjsmin-prof_0.1.4-1_amd64.deb
Files: 
 972140783f0a89771ed355a4a78efff5 1910 haskell extra haskell-hjsmin_0.1.4-1.dsc
 bba8dcb4aca124f4abb8d8fa80b092f9 116144 haskell extra 
haskell-hjsmin_0.1.4.orig.tar.gz
 f625f07f95ee831ee938e7951cf1615d 2370 haskell extra 
haskell-hjsmin_0.1.4-1.debian.tar.gz
 627e13ea2bc8c1fcebee2e77629a3311 38252 doc extra 
libghc-hjsmin-doc_0.1.4-1_all.deb
 2ccc7673be9191c0b29a63aa6a80fbc4 96342 haskell extra 
libghc-hjsmin-dev_0.1.4-1_amd64.deb
 b1939d5ae7735c2295dd44038b9fb0ff 103386 haskell extra 
libghc-hjsmin-prof_0.1.4-1_amd64.deb

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

iEYEARECAAYFAlC7yCgACgkQ9ijrk0dDIGw6NQCdH6HtdkbBajzPKsGOWdFJ2eyQ
hNYAoKRkHgJZd0JhsOA/RbNyc9RjTruh
=lGDn
-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/e1tfham-0004dk...@franck.debian.org



Accepted haskell-event-list 0.1.0.2-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 21:54:09 +0100
Source: haskell-event-list
Binary: libghc-event-list-dev libghc-event-list-prof libghc-event-list-doc
Architecture: source all amd64
Version: 0.1.0.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-event-list-dev - Event lists with relative or absolute timestamps
 libghc-event-list-doc - Event lists with relative or absolute timestamps; 
documentation
 libghc-event-list-prof - Event lists with relative or absolute timestamps; 
profiling libra
Changes: 
 haskell-event-list (0.1.0.2-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 df395d8d42b4bfd9fe644ff153bf0391250b22e9 2081 haskell-event-list_0.1.0.2-1.dsc
 e4a16c3dfdbb0d55d0eb0df659019812cd643d11 54014 
haskell-event-list_0.1.0.2.orig.tar.gz
 a7502337920e87708d31e395a24d8988d9f71715 2322 
haskell-event-list_0.1.0.2-1.debian.tar.gz
 1a27e754dacc72b4ad3c9e45a1d39afb650a9abc 138618 
libghc-event-list-doc_0.1.0.2-1_all.deb
 034f62dd4d87bc993b663331882c2566f90e1ba1 468776 
libghc-event-list-dev_0.1.0.2-1_amd64.deb
 664e743f2af4731c0e9bfc617af9b13d17b60f7a 519190 
libghc-event-list-prof_0.1.0.2-1_amd64.deb
Checksums-Sha256: 
 f0bafefcc7233a5503e42df2f8b8ef28863039d270192b3e240973c0d01fe3b1 2081 
haskell-event-list_0.1.0.2-1.dsc
 3123339a76337ef5181bc03a53802a2b651f00de6b3bddf09a50461b0e424406 54014 
haskell-event-list_0.1.0.2.orig.tar.gz
 d4d62df1115e2c2ba6ad0e1e418cdabbd237f72482572e75dd894d66324995f5 2322 
haskell-event-list_0.1.0.2-1.debian.tar.gz
 f3ecb9b0ca1ef1801ccd44468e890af769a3e16284db152dc293777e175c0ee9 138618 
libghc-event-list-doc_0.1.0.2-1_all.deb
 2ec3f016badfd3fb6a8415fe3d0ebb059584108253fab7b4766d9bf8619192d9 468776 
libghc-event-list-dev_0.1.0.2-1_amd64.deb
 844de9cf2e63f844e86f79ad41489e9b0eecffcec8be2dca81d6568fab7fecf9 519190 
libghc-event-list-prof_0.1.0.2-1_amd64.deb
Files: 
 77337cd691e4c0672c9fb13dc7b0b4fd 2081 haskell extra 
haskell-event-list_0.1.0.2-1.dsc
 b271e15053322d14235ef19d4ca376d3 54014 haskell extra 
haskell-event-list_0.1.0.2.orig.tar.gz
 4814b23f6348a6b7871cc38737356ad3 2322 haskell extra 
haskell-event-list_0.1.0.2-1.debian.tar.gz
 ccf515669f2ec9d793600fe41552e18a 138618 doc extra 
libghc-event-list-doc_0.1.0.2-1_all.deb
 f348451017c142595310e4f7c278a847 468776 haskell extra 
libghc-event-list-dev_0.1.0.2-1_amd64.deb
 e654c6ec26de7106a3b414a8fac52bce 519190 haskell extra 
libghc-event-list-prof_0.1.0.2-1_amd64.deb

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

iEYEARECAAYFAlC7yBQACgkQ9ijrk0dDIGyBUACfWVfgBGMvl9nHuZ9I9SCCLn1p
U6oAn3rAH4C+aoZ5n2gRK5Lt46ejxnoz
=vwg2
-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/e1tfha8-000427...@franck.debian.org



Accepted haskell-gtksourceview2 0.12.3.1-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 21:55:56 +0100
Source: haskell-gtksourceview2
Binary: libghc-gtksourceview2-dev libghc-gtksourceview2-prof 
libghc-gtksourceview2-doc
Architecture: source all amd64
Version: 0.12.3.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-gtksourceview2-dev - Binding to the GtkSourceView library
 libghc-gtksourceview2-doc - Binding to the GtkSourceView library; documentation
 libghc-gtksourceview2-prof - Binding to the GtkSourceView library; profiling 
libraries
Changes: 
 haskell-gtksourceview2 (0.12.3.1-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 493a4f6804ea20b0bccad82f1e3abe94a4fd2c1a 1986 
haskell-gtksourceview2_0.12.3.1-1.dsc
 168d6567f731c6668f13c66e9e57e6954ace2d7c 55932 
haskell-gtksourceview2_0.12.3.1.orig.tar.gz
 95febd0ef849684a50b175a4b0827ce97197954b 2267 
haskell-gtksourceview2_0.12.3.1-1.debian.tar.gz
 3a884a768b2b8e76860593e1bbdef031cc5c6d06 217304 
libghc-gtksourceview2-doc_0.12.3.1-1_all.deb
 45c08db4b6d2a4dc901c4fb58b806d9014d64acb 523992 
libghc-gtksourceview2-dev_0.12.3.1-1_amd64.deb
 fdf2edc64a9ef0320810f778b632cef001f406f8 441226 
libghc-gtksourceview2-prof_0.12.3.1-1_amd64.deb
Checksums-Sha256: 
 35a51ba8af29c7930e637fe560c45bac5d74ca653b525f1e89a7298d7bc72446 1986 
haskell-gtksourceview2_0.12.3.1-1.dsc
 cfe2467347280c1cfaf2a977b465214f2ea90fb17c84ad0f13f9b7518e9221b1 55932 
haskell-gtksourceview2_0.12.3.1.orig.tar.gz
 df9bcd0a2a77e884c4560a2ed134ba8fc34463deddf207b56af0658a962672f6 2267 
haskell-gtksourceview2_0.12.3.1-1.debian.tar.gz
 a83d717e3b5379a9fa745d48c7a998f3696813750432a3393314580b84ede798 217304 
libghc-gtksourceview2-doc_0.12.3.1-1_all.deb
 cb04ec091b6ab9121a4bb583580be13a5e89025b62ddb223b505a53ea865367b 523992 
libghc-gtksourceview2-dev_0.12.3.1-1_amd64.deb
 db9d71f052c123f7cbd3fdff37c8b67002e1b84637449b2291742b3b8caae0bc 441226 
libghc-gtksourceview2-prof_0.12.3.1-1_amd64.deb
Files: 
 c8002481c045875aff63f5255c47d3b6 1986 haskell extra 
haskell-gtksourceview2_0.12.3.1-1.dsc
 f172f74be28d5a0257780c05e85e4fcf 55932 haskell extra 
haskell-gtksourceview2_0.12.3.1.orig.tar.gz
 b8823d34bcc326f6a6f2b6bc0c9c0b23 2267 haskell extra 
haskell-gtksourceview2_0.12.3.1-1.debian.tar.gz
 7d9429528370db3a7811515aecb4242a 217304 doc extra 
libghc-gtksourceview2-doc_0.12.3.1-1_all.deb
 515b09eb184ee9c2eea31befecbec2da 523992 haskell extra 
libghc-gtksourceview2-dev_0.12.3.1-1_amd64.deb
 a9543a35ace67a9c152f20ee7faa9636 441226 haskell extra 
libghc-gtksourceview2-prof_0.12.3.1-1_amd64.deb

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

iEYEARECAAYFAlC7yB8ACgkQ9ijrk0dDIGwp7gCfeh37ltwiESF8uCtoVYMf32Tp
QagAnRj86YHHmYHtzfdJTU6W1uDIqTXZ
=8kRK
-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/e1tfhaf-00047z...@franck.debian.org



Accepted haskell-hledger-interest 1.4.2-1 (source amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:01:16 +0100
Source: haskell-hledger-interest
Binary: hledger-interest
Architecture: source amd64
Version: 1.4.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 hledger-interest - interest computing for (h)ledger
Changes: 
 haskell-hledger-interest (1.4.2-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 b90c0105c2bab5f3d46ef7162485727d17270aa2 1522 
haskell-hledger-interest_1.4.2-1.dsc
 2b9eb47385bbb405e7878bc458a84ea870afe0bb 8052 
haskell-hledger-interest_1.4.2.orig.tar.gz
 b9475d44fdc7ab2b3894f16b6a3eddb3e7d8ccd9 3068 
haskell-hledger-interest_1.4.2-1.debian.tar.gz
 ce2d2c1d801bfecd31b0c26a6f1815b4ce65ce57 1115984 
hledger-interest_1.4.2-1_amd64.deb
Checksums-Sha256: 
 e0c80973d30ba0ac9c678c1437416f8d43569521150da6b78498d6122d774494 1522 
haskell-hledger-interest_1.4.2-1.dsc
 db1c80cfc374bb375745a9604e2395301bac366aeb9c591712b7e89dfb353ac2 8052 
haskell-hledger-interest_1.4.2.orig.tar.gz
 e050b0befcf61c0694be8c3b31e4bae4e3507137d4545c721fbd6322a30b1aac 3068 
haskell-hledger-interest_1.4.2-1.debian.tar.gz
 02629ec53ac939188838b9f60944e2adca77c5b08b77e8c4d88852927390644f 1115984 
hledger-interest_1.4.2-1_amd64.deb
Files: 
 c3ac4ff198a98ec2207a3ccd8eca04c8 1522 haskell extra 
haskell-hledger-interest_1.4.2-1.dsc
 d5b4e9fe7e82ebbe824ba374a4a7fef2 8052 haskell extra 
haskell-hledger-interest_1.4.2.orig.tar.gz
 243b4f8d35a1b64c5370f2e366aa3634 3068 haskell extra 
haskell-hledger-interest_1.4.2-1.debian.tar.gz
 235e711623d6964c4b30a982ff216c15 1115984 haskell extra 
hledger-interest_1.4.2-1_amd64.deb

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

iEYEARECAAYFAlC7yDAACgkQ9ijrk0dDIGwnkwCaA8QCOT4prI6ffo7Mlf58rIbG
bhMAn0zB6C8MqKpJTd0uN0S9J1tZuAW8
=+Jkc
-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/e1tfhar-0004gk...@franck.debian.org



Accepted haskell-hsemail 1.7.2-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:01:50 +0100
Source: haskell-hsemail
Binary: libghc-hsemail-dev libghc-hsemail-prof libghc-hsemail-doc
Architecture: source all amd64
Version: 1.7.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-hsemail-dev - Haskell parser for emails and SMTP conversations - GHC 
libraries
 libghc-hsemail-doc - Haskell parser for emails and SMTP conversations - 
documentation
 libghc-hsemail-prof - Haskell parser for emails and SMTP conversations - GHC 
profiling
Changes: 
 haskell-hsemail (1.7.2-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 2372d6fd9286d7a9a4906239a32fe32689ef83a1 1722 haskell-hsemail_1.7.2-1.dsc
 27b0b6d932b8b983bbf22ede1de46398ac5111e8 20663 
haskell-hsemail_1.7.2.orig.tar.gz
 0303839f6e88ea0d80b997e9e09138cac0afbf48 2609 
haskell-hsemail_1.7.2-1.debian.tar.gz
 eb54305dfe9347050c6930aabed47a72804e62f4 124688 
libghc-hsemail-doc_1.7.2-1_all.deb
 0cfef64bd18e416322690299dfe21489c6aaeddd 648190 
libghc-hsemail-dev_1.7.2-1_amd64.deb
 f08d60208247c17d3d39c7b0d0dd44b614997ffb 656532 
libghc-hsemail-prof_1.7.2-1_amd64.deb
Checksums-Sha256: 
 e6812eb5794e8db8158da557b538cb366faff409494d059eabb9fb22d87c9769 1722 
haskell-hsemail_1.7.2-1.dsc
 fd3f70a4f238fd85551851a05c402a858669a736dabaf093ee5b6eefde0980ae 20663 
haskell-hsemail_1.7.2.orig.tar.gz
 ea3f333cb59899304e508af437d4c518be10110a33790419fa5a28b936502000 2609 
haskell-hsemail_1.7.2-1.debian.tar.gz
 ff9c1d311f217721f6f219bb3d067c469bfa54f6269376b71324bfd1e19e59ee 124688 
libghc-hsemail-doc_1.7.2-1_all.deb
 513290baca0cf9e343c0d5d5c36acc96deb8f2978285e5ab7e01e1acaa99650c 648190 
libghc-hsemail-dev_1.7.2-1_amd64.deb
 96f122e62a65b1bc18e81a18f6892b76a2d2a5ae0a95d670b79a7cb5ff5b8249 656532 
libghc-hsemail-prof_1.7.2-1_amd64.deb
Files: 
 6309f99eb76786e75ec73e96e35ff676 1722 haskell extra haskell-hsemail_1.7.2-1.dsc
 54225b6b061b9e367d2a60d54f0a82d7 20663 haskell extra 
haskell-hsemail_1.7.2.orig.tar.gz
 791a2847c6bb095424e2d7e41622bf5d 2609 haskell extra 
haskell-hsemail_1.7.2-1.debian.tar.gz
 84e3b2fb2f3277948294e392879ef1b8 124688 doc extra 
libghc-hsemail-doc_1.7.2-1_all.deb
 6617530c9ca9b49cc2c30d59a6007363 648190 haskell extra 
libghc-hsemail-dev_1.7.2-1_amd64.deb
 d63a95116e1bc9dbfe6441659d8d3e6d 656532 haskell extra 
libghc-hsemail-prof_1.7.2-1_amd64.deb

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

iEYEARECAAYFAlC7yDYACgkQ9ijrk0dDIGx/MACgyrG1uOAHbWdyV/kNL9B9yAC/
5MsAn28Iyaq3HDO1pTIXWwL6ipWW16mo
=dF/8
-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/e1tfhax-0004mn...@franck.debian.org



Accepted haskell-hstringtemplate 0.6.12-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:02:08 +0100
Source: haskell-hstringtemplate
Binary: libghc-hstringtemplate-dev libghc-hstringtemplate-prof 
libghc-hstringtemplate-doc
Architecture: source all amd64
Version: 0.6.12-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-hstringtemplate-dev - Haskell port of the Java library StringTemplate - 
GHC libraries
 libghc-hstringtemplate-doc - Haskell port of the Java library StringTemplate - 
documentation
 libghc-hstringtemplate-prof - Haskell port of the Java library StringTemplate 
- GHC profiling l
Changes: 
 haskell-hstringtemplate (0.6.12-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 0e2ab1648b2378b10f87648039c8197d8ca002dd 2029 
haskell-hstringtemplate_0.6.12-1.dsc
 8bead96a94b9bd449a0fa956ffaf0f86e4c1d5d5 16091 
haskell-hstringtemplate_0.6.12.orig.tar.gz
 069b0f5e8e65ed13e0709fbe1fa3d39917edc81f 3429 
haskell-hstringtemplate_0.6.12-1.debian.tar.gz
 08f76337f558e664c218e5df5aaa6fedd9340d66 88060 
libghc-hstringtemplate-doc_0.6.12-1_all.deb
 75f683e9ad8cdbdca6a3479dd581f00f8b35c105 368182 
libghc-hstringtemplate-dev_0.6.12-1_amd64.deb
 5c834e4d60f3eee7bd1a7062fe9b4151baf00f6d 378444 
libghc-hstringtemplate-prof_0.6.12-1_amd64.deb
Checksums-Sha256: 
 8ee89a0382a34fb70f172a9e6f6f9b1b842ae6cf4a3bb31b62e0bea89cff336c 2029 
haskell-hstringtemplate_0.6.12-1.dsc
 371c0603eb85c47376394476e3999bd481af164dec5ba483bb5d12bdb0005d0a 16091 
haskell-hstringtemplate_0.6.12.orig.tar.gz
 742add8cf81577b30a92d97d7aacf5474d22c403703d24a12a1e7549a6dbe34c 3429 
haskell-hstringtemplate_0.6.12-1.debian.tar.gz
 45ec16b7547e8f1fea8000f32e3569261ffb61f66d6205dc8abac56547fd58cf 88060 
libghc-hstringtemplate-doc_0.6.12-1_all.deb
 a0ee89195c7db078b596d6568bb45d1a9fd0e530ac25f2bd03530537e3aa7a96 368182 
libghc-hstringtemplate-dev_0.6.12-1_amd64.deb
 fe53920d66f6f1baaa86d1a9e0dfdaea2ede7dd4b7696a67bc6f06e5c598e0e0 378444 
libghc-hstringtemplate-prof_0.6.12-1_amd64.deb
Files: 
 25b3d00071c78517bac7dce122debaf9 2029 haskell extra 
haskell-hstringtemplate_0.6.12-1.dsc
 dc212ac16b35e47aef1bdd22372ffe8b 16091 haskell extra 
haskell-hstringtemplate_0.6.12.orig.tar.gz
 ebd75b8836394aaf526e5641162099f7 3429 haskell extra 
haskell-hstringtemplate_0.6.12-1.debian.tar.gz
 a2a6e7b2ea969cd8f0485b44100a4a22 88060 doc extra 
libghc-hstringtemplate-doc_0.6.12-1_all.deb
 92bdc890967f14c361ee3f44a94d7bec 368182 haskell extra 
libghc-hstringtemplate-dev_0.6.12-1_amd64.deb
 cac1fe61d1e818d16f959944cd0e4107 378444 haskell extra 
libghc-hstringtemplate-prof_0.6.12-1_amd64.deb

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

iEYEARECAAYFAlC7yEAACgkQ9ijrk0dDIGzzrwCgz8O4UaZdHfTImUkze4oXe6fi
MTEAn0/xBNJSabsKfdQ5l6QGkbfOS+sY
=7HEe
-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/e1tfhae-0004sd...@franck.debian.org



Accepted haskell-hsx 0.10.4-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:02:24 +0100
Source: haskell-hsx
Binary: libghc-hsx-dev libghc-hsx-prof libghc-hsx-doc
Architecture: source all amd64
Version: 0.10.4-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-hsx-dev - Haskell support for XML in source code - GHC libraries
 libghc-hsx-doc - Haskell support for XML in source code - documentation
 libghc-hsx-prof - Haskell support for XML in source code - GHC profiling 
libraries
Changes: 
 haskell-hsx (0.10.4-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 5cd866a749d69accdfe44814a716878ff1134abf 1717 haskell-hsx_0.10.4-1.dsc
 fd71ee5ccb6b63b99298f8f832ccbc0c5187b0b6 26173 haskell-hsx_0.10.4.orig.tar.gz
 732bbc69ad9fb6453b93b959edb047c6ef6f7a3a 3025 
haskell-hsx_0.10.4-1.debian.tar.gz
 f8baf4c92a59b09002ef18f28b4cf496e8497493 85374 libghc-hsx-doc_0.10.4-1_all.deb
 c591dc7934264b6b892332c2b284bb48e4b8b38e 1636160 
libghc-hsx-dev_0.10.4-1_amd64.deb
 ac733273a21c4638764086da027ce98ac52a2d62 214362 
libghc-hsx-prof_0.10.4-1_amd64.deb
Checksums-Sha256: 
 d6bc3902c7e3873290e2e04315f9177b203d16132d86713eae2897fe37a2008e 1717 
haskell-hsx_0.10.4-1.dsc
 2d0283595606b9475a21419a89610fa66d7d0e390d00656128b2d498f80234b4 26173 
haskell-hsx_0.10.4.orig.tar.gz
 fde585589078b50d246b5702ac989e23f35bed26a8e234414396d8077fe3923a 3025 
haskell-hsx_0.10.4-1.debian.tar.gz
 d0d93eb5741520dd8fc1b1c8556f29ff253c8663ca134c45015d6fb11e0ff220 85374 
libghc-hsx-doc_0.10.4-1_all.deb
 ac368e9342fe47d26c265848e0fb7e067f73493a5ab9e5d1851d7707c6e4a4dd 1636160 
libghc-hsx-dev_0.10.4-1_amd64.deb
 90ad14f37a814532e75877d31c650e1dfb00424769855af01ed5eb57ca973c06 214362 
libghc-hsx-prof_0.10.4-1_amd64.deb
Files: 
 6e5e0dfc4867668991ff4de437c47715 1717 haskell extra haskell-hsx_0.10.4-1.dsc
 dd57f9fb6e290d9101200ff1e69f9396 26173 haskell extra 
haskell-hsx_0.10.4.orig.tar.gz
 5f4ecb00dcea56fdcf1d17450a9fa56f 3025 haskell extra 
haskell-hsx_0.10.4-1.debian.tar.gz
 033755de608e300dc91cf5a9445ef5e6 85374 doc extra 
libghc-hsx-doc_0.10.4-1_all.deb
 c0f5eb9bbfe074b6f4f279cb008ff734 1636160 haskell extra 
libghc-hsx-dev_0.10.4-1_amd64.deb
 2a7c5668c8b37f5816c1e75519fb7bef 214362 haskell extra 
libghc-hsx-prof_0.10.4-1_amd64.deb

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

iEYEARECAAYFAlC7yE0ACgkQ9ijrk0dDIGywcwCglWlsUS5oHCD20vWcOrX41QPm
0LwAn0RlcnRbOTDiQXHF5shFnT/0vwj+
=owXo
-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/e1tfhak-0004y4...@franck.debian.org



Accepted haskell-http 1:4000.2.6-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:04:29 +0100
Source: haskell-http
Binary: libghc-http-dev libghc-http-prof libghc-http-doc
Architecture: source all amd64
Version: 1:4000.2.6-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-http-dev - GHC libraries for the Haskell HTTP client library
 libghc-http-doc - Haskell HTTP client library documentation
 libghc-http-prof - profiling libraries for the Haskell HTTP client library
Changes: 
 haskell-http (1:4000.2.6-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 f01d1031fc00d28b407f3f20eaf762e73e5b8421 1807 haskell-http_4000.2.6-1.dsc
 ee59395d954a070d799f8fdcb621e5a218af9cae 66546 
haskell-http_4000.2.6.orig.tar.gz
 f324e855776521b8bdb82269c98b854fde37d01f 6721 
haskell-http_4000.2.6-1.debian.tar.gz
 dd25cbda79425b14ec3fae9e8c7edc9fbf3d7cdc 226906 
libghc-http-doc_4000.2.6-1_all.deb
 3b7109c7cff1e75542e2f9144da02c7d612814e5 603434 
libghc-http-dev_4000.2.6-1_amd64.deb
 8da511eebed090aa306c97dfec7a70d2f9f1cee3 571536 
libghc-http-prof_4000.2.6-1_amd64.deb
Checksums-Sha256: 
 c63d45058317859e953e58be4fa525250934e5bfa6464fc7d55466d50e480192 1807 
haskell-http_4000.2.6-1.dsc
 22e5c2836a72b41b8df2947d881a24efd72dff38a3afd99fce3561966ce6cc67 66546 
haskell-http_4000.2.6.orig.tar.gz
 964de7ea56b34f8a0581539549d3a14f9f5a676c6f41094a9a6d4088b6c422ac 6721 
haskell-http_4000.2.6-1.debian.tar.gz
 2c11725f919abe22418fd2ec31508a404bfde1f819c30b616268be6f3b1c709d 226906 
libghc-http-doc_4000.2.6-1_all.deb
 5317f64fb5969fe0131d96edce82b7e84fc8577c8c7000c41b7bee714c88cf08 603434 
libghc-http-dev_4000.2.6-1_amd64.deb
 f5ef0838da666d08aa37dcd681cfb879a2632eb1d985d69ca0acb309cfced75b 571536 
libghc-http-prof_4000.2.6-1_amd64.deb
Files: 
 1dbb327ad11ac6601cad53d2455740d1 1807 haskell extra haskell-http_4000.2.6-1.dsc
 0b3433b470e2ae114b356719d3928e0c 66546 haskell extra 
haskell-http_4000.2.6.orig.tar.gz
 ec02938cf38c583d108115b95b75c67a 6721 haskell extra 
haskell-http_4000.2.6-1.debian.tar.gz
 3388dfdd1331be9df1a916adafe6b1f9 226906 doc extra 
libghc-http-doc_4000.2.6-1_all.deb
 16e1decac8a3ed07884a06bcfe096ff8 603434 haskell extra 
libghc-http-dev_4000.2.6-1_amd64.deb
 c9091dcb4d01eda7ec129e3becbbd305 571536 haskell extra 
libghc-http-prof_4000.2.6-1_amd64.deb

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

iEYEARECAAYFAlC7yFwACgkQ9ijrk0dDIGwrawCgya9w4yb3Zbcat3aTsxgaXAKh
V18AoKA11sI608c9H+3kM3PJteFekljH
=SBI9
-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/e1tfhar-0004dl...@franck.debian.org



Accepted libtest-tcp-perl 1.18-1 (source all)

2012-12-02 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:21:11 +0100
Source: libtest-tcp-perl
Binary: libtest-tcp-perl
Architecture: source all
Version: 1.18-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libtest-tcp-perl - module to test TCP/IP programs
Changes: 
 libtest-tcp-perl (1.18-1) unstable; urgency=low
 .
   * Team upload.
 .
   [ Nathan Handler ]
   * Email change: Nathan Handler - nhand...@debian.org
 .
   [ Salvatore Bonaccorso ]
   * Imported Upstream version 1.17 and 1.18
   * Bump Standards-Version to 3.9.4
Checksums-Sha1: 
 5a8d189fbc798d2b56e968f204b2227350a35da8 2306 libtest-tcp-perl_1.18-1.dsc
 a961d1d430e7648cd59958625ec288bda0973085 27348 
libtest-tcp-perl_1.18.orig.tar.gz
 b55d154ec41d4b1f2d0d1b0b441190d78ee3a743 2794 
libtest-tcp-perl_1.18-1.debian.tar.gz
 1f092b2e6e066dc0eb64b01e5f1b174d2d365c68 12456 libtest-tcp-perl_1.18-1_all.deb
Checksums-Sha256: 
 9859d3c6dd34b8e0afcbea9ac6eebf8e3c896ec386c7727f805d57347321d144 2306 
libtest-tcp-perl_1.18-1.dsc
 8dba17b48e12206d22e1404b771d8ceee57941ed1569e353bcb7aaf3413f953a 27348 
libtest-tcp-perl_1.18.orig.tar.gz
 0991dd110bde5613f5725f53f990c4b11a683edf8f9246d5ac5eef082a7ee821 2794 
libtest-tcp-perl_1.18-1.debian.tar.gz
 3a0f120baf1b850d8ae41423cedd387917b83d7baa3f3eb9275daba1b53e6a57 12456 
libtest-tcp-perl_1.18-1_all.deb
Files: 
 5df4f591199f45d631b8887e7b4083e7 2306 perl optional libtest-tcp-perl_1.18-1.dsc
 0c9876b4455902aa3cf1dea7b3ebb7e3 27348 perl optional 
libtest-tcp-perl_1.18.orig.tar.gz
 7a328d9c19183699ca4c98643d415f90 2794 perl optional 
libtest-tcp-perl_1.18-1.debian.tar.gz
 6c6263e706a048f33bd13749ab93b270 12456 perl optional 
libtest-tcp-perl_1.18-1_all.deb

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

iQIcBAEBCgAGBQJQu8fOAAoJEHidbwV/2GP+ORYQAK11e3wvr1L9JK6P3jyFtf6J
6Gu83gbHOUSCRjPl0tRfFVl5IViP/H3FrPw0SKz96s6WOjMbjHGZ747yTF6F56jg
8jXq9THmVleUTiE8fX7FcnEf9k2E1uYzYByGWjQhhBCs6L2/38k6dsBVvQzx5Do4
6KmvhxCua0Zs7sP2kAJj01rXq7um+BUQPGCX6iq67JTIvdEb8ToCkpA+xFU33xm8
QNg2ZAqQReNeIebT/2vEJ/fIU/6h/dQZzAA+uHJH1EEZKhjVupKmUk2FIDKV4pk6
AlEAWqmPxNot85u/gHfjmHDm6WC1ePnVKJpjPYupaG6XC2+mX9VImnwELHwYbMzs
l8N51QhUZULc+1b/UEn6pab7RbpwhJu60j9tROT6v5o8mU2f8XCUHDCrJGGW2qwd
glKG0LUkCVXkWPtSUJxB/wc9/4fqRRB5ZWsdEvAGugu1YQhe6tKdR2KWCJf+YAgs
SR8bnkKC8qW9c+lZgRjiI09YG4qB1k3TLtByx/WDkyVZFEOsHGtfTCGYmX8fc4n4
xIsxcsqH2DjPL0HnF1wd7smylRjrWo/t+FGZvoqev1fgtct3aHnWSSBbYo5vdfhk
Jwt+aYb5JxpGVnvRkH8lpRRxDNwvVIo0LLjuUTtAO1CwLNry4qtYApRjq1xerQiv
xTX1l5wsFFzBvlgLptcq
=OLUD
-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/e1tfhav-0004gs...@franck.debian.org



Accepted lockout 0.2.3-3 (source all)

2012-12-02 Thread Frank Lichtenheld
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:22:00 +0100
Source: lockout
Binary: lockout
Architecture: source all
Version: 0.2.3-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Frank Lichtenheld dj...@debian.org
Description: 
 lockout- Self-imposed discipline and productivity enforcer
Closes: 355398 466549 555124
Changes: 
 lockout (0.2.3-3) unstable; urgency=low
 .
   * QA upload.
   * Change maintainer to QA group. Closes: #555124
   * General cleanup of debian/ to account for the last 8 years:
 + debhelper compat updated
 + debian/rules minified
 + Homepage field
 + Bump Standards-Version
   * Change package to all. Closes: #355398
   * Remove mention of /etc/init.d/sudo. Closes: #466549
Checksums-Sha1: 
 bb4072d86f62ae978ac7d33dea06f325dcc266e3 1022 lockout_0.2.3-3.dsc
 626219e4896472b1e2678f1e4ad5a36115a626f4 5482 lockout_0.2.3-3.diff.gz
 e6dbd4c24b10921b118fae3e0d333b6f31fbe350 12978 lockout_0.2.3-3_all.deb
Checksums-Sha256: 
 2201cc2c8a48ac2c564c66ab38224efc894581aaa3958cb2658ae20be205f2c2 1022 
lockout_0.2.3-3.dsc
 6ea7f39ff26b3f01aa0df06a020825d3c047a5b9d1f8a76db473c60651acdf5a 5482 
lockout_0.2.3-3.diff.gz
 510f58b17616d47fa9557260959b01651f58d56bb11b02c8a7d281f9c14aa608 12978 
lockout_0.2.3-3_all.deb
Files: 
 dbce1b09c4b6284b0101f7bc74f363c0 1022 misc optional lockout_0.2.3-3.dsc
 cdcc52aaf3ef3e054f3817554891e24d 5482 misc optional lockout_0.2.3-3.diff.gz
 869e32c9f38542d2011e37ce13946f74 12978 misc optional lockout_0.2.3-3_all.deb

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

iEYEARECAAYFAlC7yOAACgkQQbn06FtxPfDjGQCgtdMsIK5yamgBzbikzQ+W//P7
6RsAnia4IWcGVHLDYaefmmXX9milrdQT
=pbt1
-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/e1tfhnq-0007jm...@franck.debian.org



Accepted haskell-listlike 3.1.7.1-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:15:41 +0100
Source: haskell-listlike
Binary: libghc-listlike-dev libghc-listlike-prof libghc-listlike-doc
Architecture: source all amd64
Version: 3.1.7.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-listlike-dev - Generic support for list-like structures
 libghc-listlike-doc - Generic support for list-like structures; documentation
 libghc-listlike-prof - Generic support for list-like structures; profiling 
library
Changes: 
 haskell-listlike (3.1.7.1-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 75b382ca39902a64e0014a434cdf864fa756b067 1440 haskell-listlike_3.1.7.1-1.dsc
 628450b5cb02fa66f5b8d6708081ad8ae42d051d 21828 
haskell-listlike_3.1.7.1.orig.tar.gz
 6ca35c708da74fa4789be4a86024f046ed994246 2629 
haskell-listlike_3.1.7.1-1.debian.tar.gz
 c491a499564a6d4573980eaf6b12a327fb91b7e2 102170 
libghc-listlike-doc_3.1.7.1-1_all.deb
 91ac5e890077ce7de3c7852e03effa1cdf27e34f 559316 
libghc-listlike-dev_3.1.7.1-1_amd64.deb
 3abca34b6a7b95f75af0edaccc822328f9daf5f6 547214 
libghc-listlike-prof_3.1.7.1-1_amd64.deb
Checksums-Sha256: 
 82f17006d55a0aff27ced5f383a2660d0c7ddc6eadab57736ad943b2e9e6d0dd 1440 
haskell-listlike_3.1.7.1-1.dsc
 81131697e9358ca58fe8167fa069af43c2b209824bf714652072f4707e4471bc 21828 
haskell-listlike_3.1.7.1.orig.tar.gz
 d2c1f5f796207d8bb0253fc80aba6d5a5f41653ccf6fa4efd7b61c041fe10e65 2629 
haskell-listlike_3.1.7.1-1.debian.tar.gz
 795b4d3e08ea2e429682b479d893417098205cfe1ab8adffa6be6c0499c764d4 102170 
libghc-listlike-doc_3.1.7.1-1_all.deb
 56ee9d7301da8099850b1037af5a027e2ddc81a3d2e121b63134a130e64d2fdd 559316 
libghc-listlike-dev_3.1.7.1-1_amd64.deb
 b182524ffa4e137cb6c2ce49162b1683745e994c2cbc16e3fd01da14fb88b51e 547214 
libghc-listlike-prof_3.1.7.1-1_amd64.deb
Files: 
 fbc2cd7d08522db31333da85bb32ba73 1440 haskell optional 
haskell-listlike_3.1.7.1-1.dsc
 108da2e54cd803107db7fa609966aa2e 21828 haskell optional 
haskell-listlike_3.1.7.1.orig.tar.gz
 b51fcac50cbd85a72bcca32b6aa49297 2629 haskell optional 
haskell-listlike_3.1.7.1-1.debian.tar.gz
 b056fcca6bb5bc3be3c1ccef871d2de0 102170 doc optional 
libghc-listlike-doc_3.1.7.1-1_all.deb
 b5c17e522ab2b99f3e2da3ccbffdf9e5 559316 haskell optional 
libghc-listlike-dev_3.1.7.1-1_amd64.deb
 af039c68135f66ee940cbcc559a48b8e 547214 haskell optional 
libghc-listlike-prof_3.1.7.1-1_amd64.deb

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

iEYEARECAAYFAlC7zfwACgkQ9ijrk0dDIGxetACgrwd5s34T0p9Z6WJqF44C5Tic
+jAAoJNaJ2mrYZh2RPP2xDVdQ7LpRtCr
=qVqO
-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/e1tfhcp-00021t...@franck.debian.org



Accepted haskell-logict 0.5.0.2-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:16:13 +0100
Source: haskell-logict
Binary: libghc-logict-dev libghc-logict-prof libghc-logict-doc
Architecture: source all amd64
Version: 0.5.0.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-logict-dev - Backtracking logic-programming monad
 libghc-logict-doc - Backtracking logic-programming monad; documentation
 libghc-logict-prof - Backtracking logic-programming monad; profiling libraries
Changes: 
 haskell-logict (0.5.0.2-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 06e5e65d9ed183bc3e29b36b8141a838f63c5f9b 1648 haskell-logict_0.5.0.2-1.dsc
 ef0e425b0e6644212af1461c865940e2b07000ee 5276 
haskell-logict_0.5.0.2.orig.tar.gz
 71b6f8b82c35e50d006c0cd9c9ee7ece918abe1e 2390 
haskell-logict_0.5.0.2-1.debian.tar.gz
 290e8efb0a5663b908307a4f8b9bf41ff03be596 44298 
libghc-logict-doc_0.5.0.2-1_all.deb
 27931a97cc9255e469491cdcea922ab79e29ed45 90572 
libghc-logict-dev_0.5.0.2-1_amd64.deb
 547dbcc6c01f7d536837c492659fed4c99ebbc95 102774 
libghc-logict-prof_0.5.0.2-1_amd64.deb
Checksums-Sha256: 
 f5a35f0050e67e0d9dcfde7f8125de5e8d9bfade0d474065dc89087e9cca13b7 1648 
haskell-logict_0.5.0.2-1.dsc
 3fe821d0d69259599a24ead377746f558d841e4027c0c471eb6b070368290a54 5276 
haskell-logict_0.5.0.2.orig.tar.gz
 68f870fd3f31e70dbb84be66c8694f9541862b5d9f0f6e15fd57e0756c30e2bb 2390 
haskell-logict_0.5.0.2-1.debian.tar.gz
 1280899c09f71283c5236cde5bf9ea338e4cabdb9546d0bd7ea8e83cf08b5f3b 44298 
libghc-logict-doc_0.5.0.2-1_all.deb
 dfb33bc2493f13281bc6f6e53a55e125e618fc728c10d61911f40990a4592539 90572 
libghc-logict-dev_0.5.0.2-1_amd64.deb
 6beef64f83a2af7a6ef527b6481bd7f964fc3c8021e1ea97bb4fc123682ce725 102774 
libghc-logict-prof_0.5.0.2-1_amd64.deb
Files: 
 02d2a0bed9e7470f37af1863c841a649 1648 haskell extra 
haskell-logict_0.5.0.2-1.dsc
 a45b741ff788b7e1c2859514e0d50bb5 5276 haskell extra 
haskell-logict_0.5.0.2.orig.tar.gz
 bc6d4c42b7cbb0a0bc2d5d790398e745 2390 haskell extra 
haskell-logict_0.5.0.2-1.debian.tar.gz
 212e7b0aa951afd0f271cb35dcda55cf 44298 doc extra 
libghc-logict-doc_0.5.0.2-1_all.deb
 cd8e943a12bede8780e4b85793406e37 90572 haskell extra 
libghc-logict-dev_0.5.0.2-1_amd64.deb
 970268b60795c0d2f489d4ce23177176 102774 haskell extra 
libghc-logict-prof_0.5.0.2-1_amd64.deb

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

iEYEARECAAYFAlC7zggACgkQ9ijrk0dDIGwmugCgjq49ydxJj1xatmAeqSHNwsCd
IfcAn0Zr4wiA422VevC/jYFyb35q2Ic7
=/1e1
-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/e1tfhcv-0002b6...@franck.debian.org



Accepted haskell-pango 0.12.4-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:16:44 +0100
Source: haskell-pango
Binary: libghc-pango-dev libghc-pango-prof libghc-pango-doc
Architecture: source all amd64
Version: 0.12.4-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-pango-dev - Binding to the Pango text rendering engine
 libghc-pango-doc - Binding to the Pango text rendering engine; documentation
 libghc-pango-prof - Binding to the Pango text rendering engine; profiling 
libraries
Changes: 
 haskell-pango (0.12.4-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 18994d33b1bd1f1f4b6d7684526db050d0a927f6 1783 haskell-pango_0.12.4-1.dsc
 2bd1cee71fa0358c75e1ab71129f83beb899fc66 60049 haskell-pango_0.12.4.orig.tar.gz
 cecbebd4cd8dbb1f87aecb0d0e559e14a8b85c22 2083 
haskell-pango_0.12.4-1.debian.tar.gz
 c2544068c4e7c544cb7a01487cc0e01b99a7dfb2 209082 
libghc-pango-doc_0.12.4-1_all.deb
 c66d6e49553b11e45b252e274918fa24c59bc6cc 469036 
libghc-pango-dev_0.12.4-1_amd64.deb
 d6091d3beac128e7ab6b62e705e37d887eb5cecf 444234 
libghc-pango-prof_0.12.4-1_amd64.deb
Checksums-Sha256: 
 21d87ab52541a24e19a8fbc7d4fb8e321776f50ade3791e5b1e2de3b8fa0e401 1783 
haskell-pango_0.12.4-1.dsc
 ac6c821544546366bb7e01de85d7c56a6b6accd1af5f78b68cd4a867579d8721 60049 
haskell-pango_0.12.4.orig.tar.gz
 f93bd2f31ca455bbb379e1e94559352858535143bd88905ab9e817ae34f8cd1c 2083 
haskell-pango_0.12.4-1.debian.tar.gz
 4a042d2b49930c685d8f569a89032fb491e682cc574dec1f80bde5128fe041c5 209082 
libghc-pango-doc_0.12.4-1_all.deb
 6d71259f6bd618bdb5298129d1b01d69661093722518b1616e47c70e97ce 469036 
libghc-pango-dev_0.12.4-1_amd64.deb
 11a0f865b778e9892f62c537215bee80deb33b624f7057e13f88d53899f734d4 444234 
libghc-pango-prof_0.12.4-1_amd64.deb
Files: 
 d3bea767958f130343724daf683743ff 1783 haskell extra haskell-pango_0.12.4-1.dsc
 e498beb2d10b45ebf08bffc2296e1195 60049 haskell extra 
haskell-pango_0.12.4.orig.tar.gz
 27d862a2e801926610afa0c1ce7cfd39 2083 haskell extra 
haskell-pango_0.12.4-1.debian.tar.gz
 0b1c29f6a907b538e23a3320b597e8d4 209082 doc extra 
libghc-pango-doc_0.12.4-1_all.deb
 055f7441506983db55906a9cb05f0e82 469036 haskell extra 
libghc-pango-dev_0.12.4-1_amd64.deb
 a0ba2d72f1b08f3bb8d37a4b6f14f86d 444234 haskell extra 
libghc-pango-prof_0.12.4-1_amd64.deb

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

iEYEARECAAYFAlC7zhwACgkQ9ijrk0dDIGwKjACgnyW2XE/GC/CGvbmRVdOR4eTL
iW8AoLh9hyEJMiL2UtBoom/lV2KE9QJm
=ikOt
-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/e1tfhci-0002nn...@franck.debian.org



Accepted haskell-pretty-show 1.2-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:17:22 +0100
Source: haskell-pretty-show
Binary: ppsh libghc-pretty-show-dev libghc-pretty-show-prof 
libghc-pretty-show-doc
Architecture: source all amd64
Version: 1.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-pretty-show-dev - A Haskell library for pretty printing data structures
 libghc-pretty-show-doc - Documentation for Haskell pretty printing library
 libghc-pretty-show-prof - Profiling libraries for pretty printing Haskell data 
structures
 ppsh   - Program to parse and pretty print arbitrary Haskell Show output
Changes: 
 haskell-pretty-show (1.2-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 41a2f15dc45965b0b11f1377a632319f57b2e891 1745 haskell-pretty-show_1.2-1.dsc
 093fe0dbdbbb4d4697156ba7dbe7f322c50a2e42 17383 
haskell-pretty-show_1.2.orig.tar.gz
 70aa699059e1688da079093ec930e4580daf1af5 2710 
haskell-pretty-show_1.2-1.debian.tar.gz
 ec38a00eb351de29081c01c8e523571953c6 49460 
libghc-pretty-show-doc_1.2-1_all.deb
 6c63a88323bc6a131c450212951376cea2b393a0 383496 ppsh_1.2-1_amd64.deb
 babe9d9575d4577ead8f5a052992d15d08d29a12 71408 
libghc-pretty-show-dev_1.2-1_amd64.deb
 2175494ee5301f7f37b09975d67fb3aaba5078c8 64076 
libghc-pretty-show-prof_1.2-1_amd64.deb
Checksums-Sha256: 
 c97a07d83eecb5eca9ec937772b8cda8eb742f048a70a47d925176e9dcbaeb90 1745 
haskell-pretty-show_1.2-1.dsc
 54387ba60124238cb682e8fca7136526d322bc76f1ef75b5684f479c7da56a51 17383 
haskell-pretty-show_1.2.orig.tar.gz
 e2ac2cf839f9bfecc6676f25456dc6b0cabbcc1c48e5f0663cb1e3dfa1566bd2 2710 
haskell-pretty-show_1.2-1.debian.tar.gz
 058a991ffb6fe5df58e635fa25b2ea201468086eb00a6ac11716d7c23cc3f82b 49460 
libghc-pretty-show-doc_1.2-1_all.deb
 1c4e0bec0b43d073d1da35389afb23eeafe12a0b1ab77e795988d0c56e027589 383496 
ppsh_1.2-1_amd64.deb
 f1d3c966a981417100cf12a37417277b4439e9672d54cc0752ad313abd078590 71408 
libghc-pretty-show-dev_1.2-1_amd64.deb
 5a22d39f7fbf2525290ac93bac7666547b29e23cd87575591970120f9a807347 64076 
libghc-pretty-show-prof_1.2-1_amd64.deb
Files: 
 41e1cb9b537f98e9b1768ea57789e028 1745 haskell extra 
haskell-pretty-show_1.2-1.dsc
 1b9d4bed6bf6590a306e8c8fa0007a4f 17383 haskell extra 
haskell-pretty-show_1.2.orig.tar.gz
 26add6e22c3931d266577ba440eb34f6 2710 haskell extra 
haskell-pretty-show_1.2-1.debian.tar.gz
 a175640b52e636e95dbf26c20e096797 49460 doc extra 
libghc-pretty-show-doc_1.2-1_all.deb
 054e53d70e372618bfaef56f38ca82d1 383496 haskell extra ppsh_1.2-1_amd64.deb
 8c1570b66ce8757d98080ce4c34ec7fb 71408 haskell extra 
libghc-pretty-show-dev_1.2-1_amd64.deb
 66a3ca1cbb5773790d15390c0482be37 64076 haskell extra 
libghc-pretty-show-prof_1.2-1_amd64.deb

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

iEYEARECAAYFAlC7zigACgkQ9ijrk0dDIGz6vACgmUq+TFCR8/fSvBIZ40DhTf34
j+EAn38dUpeV4eS+bEX+y3vPULWGnJvS
=Rir8
-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/e1tfhcp-0002v5...@franck.debian.org



Accepted haskell-primitive 0.5.0.1-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:17:58 +0100
Source: haskell-primitive
Binary: libghc-primitive-dev libghc-primitive-prof libghc-primitive-doc
Architecture: source all amd64
Version: 0.5.0.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-primitive-dev - Wrappers for primitive operations
 libghc-primitive-doc - Wrappers for primitive operations; documentation
 libghc-primitive-prof - Wrappers for primitive operations; profiling libraries
Changes: 
 haskell-primitive (0.5.0.1-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 51d9eaa73ecb9e3f4bff34df357262adf0daa624 1677 haskell-primitive_0.5.0.1-1.dsc
 e5e96036ca6c1ffad4819dd5823f9d2614a47c1b 10372 
haskell-primitive_0.5.0.1.orig.tar.gz
 c93cfa44357e7b3a08139b108a83e5d9572f4964 2538 
haskell-primitive_0.5.0.1-1.debian.tar.gz
 629d8ab00af3bf3d7669a1492d0afaa3481c95d8 67918 
libghc-primitive-doc_0.5.0.1-1_all.deb
 362889d746e5f92462d525db58cb00802d89ea64 118652 
libghc-primitive-dev_0.5.0.1-1_amd64.deb
 5e4917855d5c5aa41b7234b6538b6a528636b723 117374 
libghc-primitive-prof_0.5.0.1-1_amd64.deb
Checksums-Sha256: 
 fc1acce41fa544cb12f08a537d38810cb7bab120549bee7ae582cdfc9745c48f 1677 
haskell-primitive_0.5.0.1-1.dsc
 526c9d4d06b7b379cb1aaffeffbb30bef810e771f29617ef6d0d99df711f4313 10372 
haskell-primitive_0.5.0.1.orig.tar.gz
 bc725dd906723ae3931ff5809c67b0f69a09ead2532c9a5148d5092eafe13488 2538 
haskell-primitive_0.5.0.1-1.debian.tar.gz
 b4a2454df52801cf6cf58ae53bb3e47705a59408bde7e5b11e20953737562d5b 67918 
libghc-primitive-doc_0.5.0.1-1_all.deb
 351772509cfaa1c582a767fa94eb1f5bf0b6992602a91d353ff3676de0c51b69 118652 
libghc-primitive-dev_0.5.0.1-1_amd64.deb
 a12ed9425afbf523d45207d8a7be74404cc0a7113952cf8c86c5512a04cfe7fd 117374 
libghc-primitive-prof_0.5.0.1-1_amd64.deb
Files: 
 62299c32e5642ab9cc3b7f1083d3a4fb 1677 haskell extra 
haskell-primitive_0.5.0.1-1.dsc
 587ec0c168f55a88096df40e7e4389f9 10372 haskell extra 
haskell-primitive_0.5.0.1.orig.tar.gz
 7f49ed06dafaa6eabc17d89ed641e5a2 2538 haskell extra 
haskell-primitive_0.5.0.1-1.debian.tar.gz
 b3c60bb600f176fdb861f560c75d6743 67918 doc extra 
libghc-primitive-doc_0.5.0.1-1_all.deb
 65466e89aaa6c000fa3197e6071c76e9 118652 haskell extra 
libghc-primitive-dev_0.5.0.1-1_amd64.deb
 5ac2d84f02b904e7b5984eec3d5428d6 117374 haskell extra 
libghc-primitive-prof_0.5.0.1-1_amd64.deb

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

iEYEARECAAYFAlC7zjIACgkQ9ijrk0dDIGzSMwCfa9KgcB4OsXat9Sy6YlbQhYT/
MqUAn1g9Xc5sjEMBcE55paMFuiOQWseC
=PIOl
-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/e1tfhcw-0002bi...@franck.debian.org



Accepted haskell-random-shuffle 0.0.4-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:19:09 +0100
Source: haskell-random-shuffle
Binary: libghc-random-shuffle-dev libghc-random-shuffle-prof 
libghc-random-shuffle-doc
Architecture: source all amd64
Version: 0.0.4-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-random-shuffle-dev - random shuffle library
 libghc-random-shuffle-doc - random shuffle library; documentation
 libghc-random-shuffle-prof - random shuffle library; profiling libraries
Changes: 
 haskell-random-shuffle (0.0.4-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 06dc73fa6fda6eb6ab53d621047d9434ef86c22c 1808 
haskell-random-shuffle_0.0.4-1.dsc
 a8e9903ee97aab8cf5584d559eb4bf51d1df2af5 2847 
haskell-random-shuffle_0.0.4.orig.tar.gz
 bf45a2901bf59378d93ebec27f7794c20cf36850 2391 
haskell-random-shuffle_0.0.4-1.debian.tar.gz
 aec813b2565492a73daaea92b84f45e10d64649c 31370 
libghc-random-shuffle-doc_0.0.4-1_all.deb
 0e6c4380099f7fd576d9a57103e9d05e58442e5b 23908 
libghc-random-shuffle-dev_0.0.4-1_amd64.deb
 c71e2d2c3fcdfc5e163f2586981e7f5bf7ae906b 22192 
libghc-random-shuffle-prof_0.0.4-1_amd64.deb
Checksums-Sha256: 
 86d97eb54ca8638a3989f25fed97f6ee4ab7426cdf57563902e928d3e54a 1808 
haskell-random-shuffle_0.0.4-1.dsc
 52704411f040fd0bf2361dad162e35dc13caa6535b2e4908d3513c00a95d0615 2847 
haskell-random-shuffle_0.0.4.orig.tar.gz
 08f1f3aaf04c76a87e85689fc15d88c4709a9337e0b2322ce9e445e29958eb5f 2391 
haskell-random-shuffle_0.0.4-1.debian.tar.gz
 e1c7af1af9be3490e26863f984a34f8640c82e3e78ba97cd5f2d7bf3fe2d4c79 31370 
libghc-random-shuffle-doc_0.0.4-1_all.deb
 0a8a8654654b56b71047797a7fb5f6f641976754c604e02adfd9843bd099816d 23908 
libghc-random-shuffle-dev_0.0.4-1_amd64.deb
 c514ef53d355a1171596940066ba12eb6e97d08112e0f426bf07e1eb98c38e6c 22192 
libghc-random-shuffle-prof_0.0.4-1_amd64.deb
Files: 
 02aad043f1f841f4f0ebcb3529419ec2 1808 haskell extra 
haskell-random-shuffle_0.0.4-1.dsc
 08810e89470bed080a275d1ea0fbd95b 2847 haskell extra 
haskell-random-shuffle_0.0.4.orig.tar.gz
 64812d28766bfd92682258c4c605df7d 2391 haskell extra 
haskell-random-shuffle_0.0.4-1.debian.tar.gz
 83d1319a2e66d6e8e99701c2f5477e32 31370 doc extra 
libghc-random-shuffle-doc_0.0.4-1_all.deb
 9f64ddfa5826da845d3f277114251ec5 23908 haskell extra 
libghc-random-shuffle-dev_0.0.4-1_amd64.deb
 d2436ff439fe96f8ff009160030dc67f 22192 haskell extra 
libghc-random-shuffle-prof_0.0.4-1_amd64.deb

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

iEYEARECAAYFAlC7zjoACgkQ9ijrk0dDIGztAgCgqYkq3Ku4flXemjAmkjgaTbaI
fkkAn1uu7f34wRNBdrIN7sM1Aeff5z5V
=QjcD
-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/e1tfhd2-0002ih...@franck.debian.org



Accepted haskell-resourcet 0.4.4-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:18:57 +0100
Source: haskell-resourcet
Binary: libghc-resourcet-dev libghc-resourcet-prof libghc-resourcet-doc
Architecture: source all amd64
Version: 0.4.4-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-resourcet-dev - deterministic allocation and freeing of scarce resources
 libghc-resourcet-doc - deterministic allocation and freeing of scarce 
resources; documen
 libghc-resourcet-prof - deterministic allocation and freeing of scarce 
resources; profili
Changes: 
 haskell-resourcet (0.4.4-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 ba1dfb4d6a48606febf3f0fdbd78f5e73cdecf9f 2149 haskell-resourcet_0.4.4-1.dsc
 ce1b27b5188172cdaf3672dc04784c676d7a76c1 8515 
haskell-resourcet_0.4.4.orig.tar.gz
 43fb52fd1b170d21685aee303d14bc75cc4b2c02 2465 
haskell-resourcet_0.4.4-1.debian.tar.gz
 467093f3583cd722f5727eb522587bc755f3829b 55968 
libghc-resourcet-doc_0.4.4-1_all.deb
 1fb1523fe7b40c4ab6afebead9505af65e07f856 112248 
libghc-resourcet-dev_0.4.4-1_amd64.deb
 49839cf638235219f359bf3af1470cad94e1ee69 122382 
libghc-resourcet-prof_0.4.4-1_amd64.deb
Checksums-Sha256: 
 8840b0858eddfb119622d33d048db901eeff684ec4f9774d6c852a8256aa 2149 
haskell-resourcet_0.4.4-1.dsc
 3f8c9cfc3b91d1b2247dbb3d667b85cc516ff72b69419617691127ba0e85a129 8515 
haskell-resourcet_0.4.4.orig.tar.gz
 d43dc35740aaf84ba86fe6fbed25765323dd282bb4ffa09c76d9012df4d3c5fd 2465 
haskell-resourcet_0.4.4-1.debian.tar.gz
 a453a0733c4ae10b1b2ff855bd872f40d17f700172741a036a6244ffe3fbe45f 55968 
libghc-resourcet-doc_0.4.4-1_all.deb
 ad848851e94d8490e2d453f55e7d8ab4e8ec95c325947697464523563a668f9a 112248 
libghc-resourcet-dev_0.4.4-1_amd64.deb
 d7030f943390cf4c8731e8ea208bfac9cfa76264ce95eb13d58ab40afc7145f6 122382 
libghc-resourcet-prof_0.4.4-1_amd64.deb
Files: 
 7cfd26468c168718731949a7874257a1 2149 haskell extra 
haskell-resourcet_0.4.4-1.dsc
 3fc62369d71de58fc724bc3ed8f65a92 8515 haskell extra 
haskell-resourcet_0.4.4.orig.tar.gz
 fab5766ae92a30e97457c64bc0c6a721 2465 haskell extra 
haskell-resourcet_0.4.4-1.debian.tar.gz
 331edec59991992d06a9068cd9afb3e6 55968 doc extra 
libghc-resourcet-doc_0.4.4-1_all.deb
 32164ed4ea56d58b210c91c65186b5c9 112248 haskell extra 
libghc-resourcet-dev_0.4.4-1_amd64.deb
 3c4dda34ad5aa66b5968579fee0f6ff1 122382 haskell extra 
libghc-resourcet-prof_0.4.4-1_amd64.deb

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

iEYEARECAAYFAlC7zkIACgkQ9ijrk0dDIGwCegCeI5XkH9whTkVrJwPU9UpVoRxM
fGUAnRKloG+wPQ9xuyQC8EhqDKRnykve
=kfyG
-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/e1tfhd8-0002oc...@franck.debian.org



Accepted haskell-silently 1.2.4-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:19:56 +0100
Source: haskell-silently
Binary: libghc-silently-dev libghc-silently-prof libghc-silently-doc
Architecture: source all amd64
Version: 1.2.4-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-silently-dev - prevent or capture writing to stdout and other handles
 libghc-silently-doc - prevent or capture writing to stdout and other handles; 
documenta
 libghc-silently-prof - prevent or capture writing to stdout and other handles; 
profiling
Changes: 
 haskell-silently (1.2.4-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 c241e637eb3149f9aff2e11f474ae56056735f93 1581 haskell-silently_1.2.4-1.dsc
 891090125e73f9988bd567b95d1e44bf53d103b8 3140 
haskell-silently_1.2.4.orig.tar.gz
 6e1bbce772d19c1eab30b26920d5fddba26f7221 2254 
haskell-silently_1.2.4-1.debian.tar.gz
 f3b3fdf88c760c8fc91b6d732697a3713cdc0a91 30596 
libghc-silently-doc_1.2.4-1_all.deb
 904892ca989dd531fe4181da30a0a756644f6b4e 19790 
libghc-silently-dev_1.2.4-1_amd64.deb
 66454b3a8fdd8fe535d030fc5e61123720a2d2a2 18252 
libghc-silently-prof_1.2.4-1_amd64.deb
Checksums-Sha256: 
 fc71a5f885b9d59dfa6f112f65a6fa7e8abaa0eb5666b36a1bca550969c618f9 1581 
haskell-silently_1.2.4-1.dsc
 b2d01ebe18c07313564253bd755a439b5e6f9dc2cc49b3f7ddc69464c92a8729 3140 
haskell-silently_1.2.4.orig.tar.gz
 03ac6d91f98086289d6eb0d97cf39e6a915e244b5f50646fc8d92630b5935821 2254 
haskell-silently_1.2.4-1.debian.tar.gz
 24f573138702def78415184394d8f213440736f069a4e82d4e570047a3dd5a5f 30596 
libghc-silently-doc_1.2.4-1_all.deb
 5d28ec841eba639f1e3809fd77a1feb1103947fb61ab2ee27dc612249e51a540 19790 
libghc-silently-dev_1.2.4-1_amd64.deb
 381657cd6f2172b5355bf38e6d15178e67f9fe9707ce4005959864f7c401a4f5 18252 
libghc-silently-prof_1.2.4-1_amd64.deb
Files: 
 0d8c81acace5f6317b26bd999abd7bbc 1581 haskell extra 
haskell-silently_1.2.4-1.dsc
 e97017fe5bfcb0a65578639342f0bda5 3140 haskell extra 
haskell-silently_1.2.4.orig.tar.gz
 8bf8886bbfbdceb70bc17a5f1d9c8a5b 2254 haskell extra 
haskell-silently_1.2.4-1.debian.tar.gz
 0089fba96600ca9839155de6a76aaccf 30596 doc extra 
libghc-silently-doc_1.2.4-1_all.deb
 a6d4913ee5521ef83a8c518c7938f0ff 19790 haskell extra 
libghc-silently-dev_1.2.4-1_amd64.deb
 d44c819477c6b0d1cd2014bb1313c832 18252 haskell extra 
libghc-silently-prof_1.2.4-1_amd64.deb

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

iEYEARECAAYFAlC7zksACgkQ9ijrk0dDIGyKUgCePD7/92NCn951qcYf4SaEFtXU
MHQAn3SuORbk9OLYCh+60D9gOFYC6Z1F
=IYLn
-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/e1tfhde-0002ty...@franck.debian.org



Accepted haskell-simpleea 0.2.1-1 (source all amd64)

2012-12-02 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 22:21:05 +0100
Source: haskell-simpleea
Binary: libghc-simpleea-dev libghc-simpleea-prof libghc-simpleea-doc
Architecture: source all amd64
Version: 0.2.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-simpleea-dev - Simple evolutionary algorithm framework
 libghc-simpleea-doc - Simple evolutionary algorithm framework; documentation
 libghc-simpleea-prof - Simple evolutionary algorithm framework; profiling 
libraries
Changes: 
 haskell-simpleea (0.2.1-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 6021ef351f8dd405e250104d1a14924a8694c916 1813 haskell-simpleea_0.2.1-1.dsc
 6fa0479174e6689733f5be5c427ddb02b97b8dd7 5364 
haskell-simpleea_0.2.1.orig.tar.gz
 bf450c365cd2afd72b84c468d082574861c0961a 2337 
haskell-simpleea_0.2.1-1.debian.tar.gz
 caa628f77d6d681a2160f1182ecb738f69fd6266 40408 
libghc-simpleea-doc_0.2.1-1_all.deb
 cc23dbf43bfc39373fc2a139beb2d7b9d15e92f0 35066 
libghc-simpleea-dev_0.2.1-1_amd64.deb
 ac107793f0a1ff578ba1a2ec0d305dcf1f141704 33042 
libghc-simpleea-prof_0.2.1-1_amd64.deb
Checksums-Sha256: 
 ba3c13204f0d6f7dfb5a35be5d70fd7c8c401fcb64f55a51d30a19348e21fe96 1813 
haskell-simpleea_0.2.1-1.dsc
 7923b3d815b83de0b3e36c8a7b26547de694d059459b58fcb752a2117caa3562 5364 
haskell-simpleea_0.2.1.orig.tar.gz
 8b6ab6715ab835ca84972d448afd1aea98c9805bde2a26540aeb44b89ead2d2c 2337 
haskell-simpleea_0.2.1-1.debian.tar.gz
 fe2e93cc1007a294936c99e8b77c20c47e55127199010e84abcc3857be3119e1 40408 
libghc-simpleea-doc_0.2.1-1_all.deb
 64355f0a165ca72ec8f7fe3fadfe026c4d5d6cdfa095e48e6325da08fdc78501 35066 
libghc-simpleea-dev_0.2.1-1_amd64.deb
 e98489dc5043b8ce6874c0f4abf2803898818e3a17fd2963501684e4a50940c8 33042 
libghc-simpleea-prof_0.2.1-1_amd64.deb
Files: 
 7c74a5c09865846a2d13aa74a7640f3e 1813 haskell extra 
haskell-simpleea_0.2.1-1.dsc
 e5cb976319ef9bdd544d110b73b63b6d 5364 haskell extra 
haskell-simpleea_0.2.1.orig.tar.gz
 4ff9a4441a7adb5ad6c6e5c06300ec93 2337 haskell extra 
haskell-simpleea_0.2.1-1.debian.tar.gz
 66f059ae46ad710389c0a1e2d87ff057 40408 doc extra 
libghc-simpleea-doc_0.2.1-1_all.deb
 19246fade0743c5947e3ccc79adc55a5 35066 haskell extra 
libghc-simpleea-dev_0.2.1-1_amd64.deb
 20814bb2ea1e8a3d74ee731d2378bd31 33042 haskell extra 
libghc-simpleea-prof_0.2.1-1_amd64.deb

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

iEYEARECAAYFAlC7zlEACgkQ9ijrk0dDIGy8bACcDVrF/azFuIsclDteCAb/oX7N
yrkAn1hkMib+aZZ+mga8Z/n3IcwzU5/N
=8kqZ
-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/e1tfhdk-00030e...@franck.debian.org



Accepted picard-tools 1.80-1 (source all)

2012-12-02 Thread Olivier Sallou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 02 Dec 2012 23:10:10 +0100
Source: picard-tools
Binary: libsam-java picard-tools
Architecture: source all
Version: 1.80-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Olivier Sallou osal...@debian.org
Description: 
 libsam-java - Java library to manipulate SAM and BAM files
 picard-tools - Command line tools to manipulate SAM and BAM files
Changes: 
 picard-tools (1.80-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 1a18f692b8e59eb50f521729aaf30c41f83c8d9d 2164 picard-tools_1.80-1.dsc
 31b7485f0b65d65be73813274106319d478596e1 13223106 
picard-tools_1.80.orig.tar.bz2
 f5b12e8a712783fcbff6b6bf31541f08ef53b424 7897 picard-tools_1.80-1.debian.tar.gz
 ac8049691ca348299e84a820f27bfccf3f9d80e6 206556 libsam-java_1.80-1_all.deb
 d115677298b5aacad1350787daa23531a370d3a0 479054 picard-tools_1.80-1_all.deb
Checksums-Sha256: 
 7234c8c2b097549a1c8765a9cc4a0131fc352d5e99ecc0879fec9906afda 2164 
picard-tools_1.80-1.dsc
 c2ff50f48524d575c44bcf708b4fa88f92370178a935c88bb9684c4cc6a7776a 13223106 
picard-tools_1.80.orig.tar.bz2
 f0fdb6f26e21bcfcb54beaea24c784179cf374663817a57ca6fe7cd5a2c1cf09 7897 
picard-tools_1.80-1.debian.tar.gz
 92a270ec2aadd135de8ccc6bd78050bb0ab08025e5457e653c02c38cdaf92610 206556 
libsam-java_1.80-1_all.deb
 4a693694688c914fa118931af5be4477442c009b04d95fe0699020c50393ceba 479054 
picard-tools_1.80-1_all.deb
Files: 
 dbeca4d7a0b57f807c69e2ac1a48e279 2164 science optional picard-tools_1.80-1.dsc
 0f2b235e98a03f425f1f16a819b77b18 13223106 science optional 
picard-tools_1.80.orig.tar.bz2
 66d47f004d1584dafc791f5b7efb587c 7897 science optional 
picard-tools_1.80-1.debian.tar.gz
 1979592577575abcbee4e9c22a4288c4 206556 java optional 
libsam-java_1.80-1_all.deb
 9038f14e52f476a9aa4f88ccc0dd6327 479054 science optional 
picard-tools_1.80-1_all.deb

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

iQIcBAEBCAAGBQJQu9JiAAoJEHjcaNsybYQ4OyUP/AimetvXwRbV3JlNzAiwqh1I
gV03bJjJX91zdyEpRMlVArXUjX7jgO3kOt7Ontx9zOqhQ3/BD9//Yi9MSTGPC+y2
Yexnj8YbV/ChgbknAMk2wa7aLb81LJ9cTZi01ljRU7HpbooSSzFG/T/2STvby+x/
vSQ0EQS1lUAFXdXI87vYPbCgJXpWLSak9QVCPu40hlfh+FEgxvJf0QNhP1G5sbdZ
U6VdL2kR6UOzSfZdxb+txu72kGzlp1UnAWqauEqhXBmCzpjLm6RoA511aQgbyP5a
lJpFvNep4IV3ookAzpLoxIdl3Vr8Vgu5g31Vkcf+t1LDm0sOWVwsCslf9du0t35l
A0/PV5GFoPGf3klDhdOjNeXtg/740KU+mJ6hFLKFYlngwFANdTAu5t+pqGL7lBkv
Nsx6fhFUlVmaidkM8w5ljow+wwYzHsAtO0g36Y0WDH91gomynwlGad7atdASqGKb
3yPVAvseInTqC1COVxUns1OymfwBgrKYASDLahqwLjqQo7oGkO8rOOHo1Tk4ycDF
IMOrNb8z8JVzuyHi07mP5/MU+W5JsVQVoqz9Wm2O8gVWnOJFmGqflTPTlSng6Ikv
N22GoGkqDyh9hlaq0wz5YmWuhocCV3Xg9RtrZtrml8xbUhJFBLpxL2UoFWtylEku
jdMwPljrKiTjkbUm4HNV
=pXDn
-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/e1tfhre-0005zs...@franck.debian.org



Accepted mupen64plus-audio-sdl 1.99.5+10+c75faf4d38c4-1 (source amd64)

2012-12-02 Thread Sven Eckelmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:31:39 +0100
Source: mupen64plus-audio-sdl
Binary: mupen64plus-audio-sdl mupen64plus-audio-sdl-dbg
Architecture: source amd64
Version: 1.99.5+10+c75faf4d38c4-1
Distribution: experimental
Urgency: low
Maintainer: Tobias Loose tobiaslo...@gmx.de
Changed-By: Sven Eckelmann s...@narfation.org
Description: 
 mupen64plus-audio-sdl - sdl audio output plugin for mupen64plus
 mupen64plus-audio-sdl-dbg - sdl audio output plugin for mupen64plus debug 
symbols package
Changes: 
 mupen64plus-audio-sdl (1.99.5+10+c75faf4d38c4-1) experimental; urgency=low
 .
   * New Upstream Snapshot from c75faf4d38c4e010a149649c191e4ec2face50f8
   * Remove obsolete DM-Upload-Allowed in debian/control
   * debian/patches:
 - Remove upstream merged disable_oss.patch
Checksums-Sha1: 
 d63839a5b5ce03c6b34e009ba96a46f86a907618 2387 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4-1.dsc
 f991d0f076499725900de296d789a64b5300bb48 24531 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4.orig.tar.gz
 095584e35373423e31c60fbefa9a67300724329e 7845 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4-1.debian.tar.gz
 c007232c78cb239aa9b29544a033bd8c76c3d145 19418 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4-1_amd64.deb
 8d2b7ba75142cfdc3595edbf6b179ed17c4b52a4 24946 
mupen64plus-audio-sdl-dbg_1.99.5+10+c75faf4d38c4-1_amd64.deb
Checksums-Sha256: 
 7f69d73d0c004b74969cc1d0857ce1d6fe3984baba84aa7af0becb6b9245b91c 2387 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4-1.dsc
 4cda6213d21b6ebb9cdb1063195108f6d9547560bcc8da9e1c7c2c3661b51913 24531 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4.orig.tar.gz
 9c4364bb8414c49940da78677347cfe553192433e75ca2787edf12149818b921 7845 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4-1.debian.tar.gz
 e4894bea14204c7a6f989d28b5a40f4296e9082d0d7faf70b9ba78f5325d51d6 19418 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4-1_amd64.deb
 c17c4f2de29741f7f70fbe99b888329b8033c902fe0c34ec599da7d509631528 24946 
mupen64plus-audio-sdl-dbg_1.99.5+10+c75faf4d38c4-1_amd64.deb
Files: 
 572cafce153912488a2d9800c02bec6e 2387 games optional 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4-1.dsc
 9e16bf580f38870270c733d7859eacfd 24531 games optional 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4.orig.tar.gz
 3a459af9da479818c80316357fd233a6 7845 games optional 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4-1.debian.tar.gz
 a3e04ac44b1e5c955c942cbbfb9f635a 19418 games optional 
mupen64plus-audio-sdl_1.99.5+10+c75faf4d38c4-1_amd64.deb
 7c54f4b8ce13e084460fb9f047db6641 24946 debug extra 
mupen64plus-audio-sdl-dbg_1.99.5+10+c75faf4d38c4-1_amd64.deb

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

iQIcBAEBCgAGBQJQu9UuAAoJEF2HCgfBJntGa/wP/RWjxMsijqmLxH6Wea6rBYRQ
nKTIIONGIVXTHLQ/7mM5UnHSMOhiWcFK/77qnWVkUcEelwKp4pUFuAjl5zBuc+6R
69oFiS/lsfWh5N1Jc2gvOJfzGj0EVhzE56f3A8a019qsFtOv6ZYKDuZtX7JYix/D
mpQxX6mJa1m5T3Km3NkmrOP2Ix0fxSSYCeRcjKqzHajXlqnNgTPiWNh38q7pTmcw
xquM1JVSTbdGl/hTBTGZ3lRPv4veitftE/PvVJK5j3S8eKavuUNfSGQ02vJ72NE+
SbZnkFyZl1SjUCC6r/3LvdQpEsiy0peOeU7AQmyQPaiXIP9jkBEmlz6JIWDUjpMF
1NzWrlWldJqFqF3KO4TRxfNg5JEtUjPzcZ03HaYQ3NhJgAD+s5eGvFAjevOisfqH
2nW6Wox0i5iZUMjY4v9cyiBTCdvczm6YCQVeHZb7ngAM9pX3M8eV667JzJWGEUPR
2pTu0vmUvj+tQj4UKb06j/b9Z7DjxWZmneuGqEj13BV5CACMl71n3CFKFSXMbRRy
HHjvad5hH+3ciWwwGFhjUgTdhKO47BSiqfCjZcwMufPOF9dbtMsoIXDxul2Xja4i
19beXq6M9Etug9cxFky4cOpCVPYRdc07lsiIVfp66yMXuSynAmBWpfIEOY2rC5MZ
6+Twe19vNuUpoLc8Lfb6
=/vTJ
-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/e1tfikd-0007eo...@franck.debian.org



Accepted mupen64plus-core 1.99.5+148+f259cbe4c1cd-1 (source amd64 all)

2012-12-02 Thread Sven Eckelmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:32:11 +0100
Source: mupen64plus-core
Binary: libmupen64plus2 libmupen64plus2-dbg libmupen64plus-dev mupen64plus-data
Architecture: source amd64 all
Version: 1.99.5+148+f259cbe4c1cd-1
Distribution: experimental
Urgency: low
Maintainer: Tobias Loose tobiaslo...@gmx.de
Changed-By: Sven Eckelmann s...@narfation.org
Description: 
 libmupen64plus-dev - mupen64plus development package
 libmupen64plus2 - plugin-based Nintendo 64 emulator, core library
 libmupen64plus2-dbg - mupen64plus debug symbols package
 mupen64plus-data - plugin-based Nintendo 64 emulator, data files
Changes: 
 mupen64plus-core (1.99.5+148+f259cbe4c1cd-1) experimental; urgency=low
 .
   * New Upstream Snapshot from f259cbe4c1cd69f76aac9f8726c88993e3a96b70
   * Remove obsolete DM-Upload-Allowed in debian/control
   * debian/patches:
 - Rebase dejavu-font.patch, disable_recompiler_disassembler.patch and
   printf_fixup.patch on top of 1.99.5+148+f259cbe4c1cd
Checksums-Sha1: 
 cf1d866c4284a337eee87ad80b1008ae44f56cd8 2478 
mupen64plus-core_1.99.5+148+f259cbe4c1cd-1.dsc
 908bd1c6d8fbe81c9baeaeffce8c807a9e1fc3af 1112257 
mupen64plus-core_1.99.5+148+f259cbe4c1cd.orig.tar.gz
 5e52103587b3e1330bf200698ee7980ca5b0994b 15165 
mupen64plus-core_1.99.5+148+f259cbe4c1cd-1.debian.tar.gz
 499098bbe9d95b1943dab3b928d2565f61a4cab5 251404 
libmupen64plus2_1.99.5+148+f259cbe4c1cd-1_amd64.deb
 8078b381912ed7e30fa3c4377c3c637251c10b23 565140 
libmupen64plus2-dbg_1.99.5+148+f259cbe4c1cd-1_amd64.deb
 e3d32a8bef053594262863c0cb0b3f19e6e2e00b 35500 
libmupen64plus-dev_1.99.5+148+f259cbe4c1cd-1_all.deb
 1c3945f944b87d9fb61ae94ec45da21cc2bd0e4a 635272 
mupen64plus-data_1.99.5+148+f259cbe4c1cd-1_all.deb
Checksums-Sha256: 
 6a070433bc34a8d22e79ef3d8a66e596074c0c459a0958ff8ce5f05ef6b966e1 2478 
mupen64plus-core_1.99.5+148+f259cbe4c1cd-1.dsc
 d2692fa547611345b78b03282aafe7e2fbee420c1990c089ec7cff489ff0ff65 1112257 
mupen64plus-core_1.99.5+148+f259cbe4c1cd.orig.tar.gz
 da43cb995dd088e85009c8a449872bd2a0b9b47e544b4115348a5eb41d4cfb4e 15165 
mupen64plus-core_1.99.5+148+f259cbe4c1cd-1.debian.tar.gz
 73a0f4d39c484e476dbbfd0e8503da448c25d5189c153fa80c09f5244ff82eb8 251404 
libmupen64plus2_1.99.5+148+f259cbe4c1cd-1_amd64.deb
 0da7c449c4251d6177db3c706eacb033447c7f93ab8596eaa2a425d0129b10ac 565140 
libmupen64plus2-dbg_1.99.5+148+f259cbe4c1cd-1_amd64.deb
 678897ef4e2389acb346053ce04cc251abfa3a3c12706d7798f43fa91794a414 35500 
libmupen64plus-dev_1.99.5+148+f259cbe4c1cd-1_all.deb
 bba18c2481d3e87c0fccc3a534e1b54c03c52698ffe7470373fdace824c31eda 635272 
mupen64plus-data_1.99.5+148+f259cbe4c1cd-1_all.deb
Files: 
 351a821bee91bce49f7389eab4a93bf9 2478 games optional 
mupen64plus-core_1.99.5+148+f259cbe4c1cd-1.dsc
 b6f3611a6421eb4e46a27245939c9c42 1112257 games optional 
mupen64plus-core_1.99.5+148+f259cbe4c1cd.orig.tar.gz
 86a55a7a6d312c4d1ef4a016e8b211c8 15165 games optional 
mupen64plus-core_1.99.5+148+f259cbe4c1cd-1.debian.tar.gz
 31709d01b097e9d0712fae3dc3cd471d 251404 libs optional 
libmupen64plus2_1.99.5+148+f259cbe4c1cd-1_amd64.deb
 38a4bd969ef3d1e399dea4741eafee51 565140 debug extra 
libmupen64plus2-dbg_1.99.5+148+f259cbe4c1cd-1_amd64.deb
 618bf08e6611b5260bcb07e0b201a48f 35500 libdevel optional 
libmupen64plus-dev_1.99.5+148+f259cbe4c1cd-1_all.deb
 6fdf6d2f81022df4f3025a6469ea85d3 635272 games optional 
mupen64plus-data_1.99.5+148+f259cbe4c1cd-1_all.deb

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

iQIcBAEBCgAGBQJQu9V4AAoJEF2HCgfBJntGYDoP/RTnLUOvyZryxGj7pYnv6Hbg
U6fxFIC5ta22fyGdtHrpU+pfAcQqvGcCryUq6AUKZ0ReLH3qLTZ0UNfiCkCBM7VK
P0AJCPS8pHFRWOG7Vx2HN5KAPMBKxnIRZYj4N9qhK+mtr1bC7S9vJwvKYWIfJS34
Lj3hETEnJ9lc3lMVWqBCjf2aIVJYicDAzSzo+wxXXUBlnqDGoWgBmeie80deNGjL
1zKN+BbP91q4KQBNAGn3o8AiPzaMdVvQvhrDoZaFNiulcHc76KZnwLUpRuaK2n68
T0oE0mb4ivegpa95gBT5V66z6zUHysmXa2BGEeEhwlrxDixBAk6zmhmeREqEJeyd
1EsOdKzChJ3huEtr+mAUtjp3FRmnLU0qe4ZWmIFcANyEZkPOU/3zHuyn02LEqcLo
u9UfKpH/mhn9eO/6kBcfUoj3D3x23TnD97fEXtegriz1M0oe+0u0Kr2XA5emUhef
VSLI08Hj/hmXL15gYblYolPgXdRGyOxJHRKZHIaE/iiURvYf9F1IOT5S3n7/u+sG
FCRBo70XsWI0E2AgNkZhht7Z66qVFHbNSa5zQrrPbCaY5j1AqtxLqn8iRNPqFkhq
6sBD5xkYfms6tmGXyiM6JFu19eFDzShGLhf1NYEkTO37oQVLE+lh3KIkyxcvPtZ7
U7GU7ngDPmtS0IM2q24e
=BZm7
-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/e1tfikk-0007lm...@franck.debian.org



Accepted mupen64plus-input-sdl 1.99.5+14+862d5c75a547-1 (source amd64)

2012-12-02 Thread Sven Eckelmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:32:16 +0100
Source: mupen64plus-input-sdl
Binary: mupen64plus-input-sdl mupen64plus-input-sdl-dbg
Architecture: source amd64
Version: 1.99.5+14+862d5c75a547-1
Distribution: experimental
Urgency: low
Maintainer: Tobias Loose tobiaslo...@gmx.de
Changed-By: Sven Eckelmann s...@narfation.org
Description: 
 mupen64plus-input-sdl - sdl input device plugin for mupen64plus
 mupen64plus-input-sdl-dbg - sdl input device plugin for mupen64plus debug 
symbols package
Changes: 
 mupen64plus-input-sdl (1.99.5+14+862d5c75a547-1) experimental; urgency=low
 .
   * New Upstream Snapshot from 862d5c75a547cc25d8d522270d803acfa1c0e1a2
   * Remove obsolete DM-Upload-Allowed in debian/control
Checksums-Sha1: 
 0b4cd59c320d5ac695a2dbaf547e0b3d7a4bb065 2318 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547-1.dsc
 a9be810e4bf4833a33ba746f4f358cb5a9017780 38628 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547.orig.tar.gz
 527fc4b3c5d638edf1d27f221207955fb61e56ee 7765 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547-1.debian.tar.gz
 1356a39e09219289a2b598daf88d41d4a838488a 30012 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547-1_amd64.deb
 4f261c0c05e9392935bc3a6b9f2348daa1c21903 40038 
mupen64plus-input-sdl-dbg_1.99.5+14+862d5c75a547-1_amd64.deb
Checksums-Sha256: 
 394e406e1309368f4f1538093b9334627859541f6821a8a431a793a44382f2ec 2318 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547-1.dsc
 ef2137cadc5be8787dea0e99422b94a398ac66e616c46774f6eadd5d73cc88b4 38628 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547.orig.tar.gz
 743733aa11791f30cf544766b0e7413b8b468cda8f138cc315f13778d82c7838 7765 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547-1.debian.tar.gz
 8fd6089405a5c222630e7d4da163a2e6dc8c81068e7feaf5fb0b5f4a1dc7b5f7 30012 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547-1_amd64.deb
 91302da98544a5f848418cb74ab7614857002f0cd85573081b497ffbf6c260a9 40038 
mupen64plus-input-sdl-dbg_1.99.5+14+862d5c75a547-1_amd64.deb
Files: 
 2a8ea958bd8700bc5596f1e8b98817f4 2318 games optional 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547-1.dsc
 47da50f57a5e4efd1654f103e676e06c 38628 games optional 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547.orig.tar.gz
 53afff13409671506b59b622ef561baa 7765 games optional 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547-1.debian.tar.gz
 dae8ff66118a76e15cdbeee6f1923c65 30012 games optional 
mupen64plus-input-sdl_1.99.5+14+862d5c75a547-1_amd64.deb
 0f15e42a3d818d392fae7a7faf121844 40038 debug extra 
mupen64plus-input-sdl-dbg_1.99.5+14+862d5c75a547-1_amd64.deb

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

iQIcBAEBCgAGBQJQu9WsAAoJEF2HCgfBJntGUF4P/07qpcJIUmVtEHaMHLWXpQWJ
tDDxo+ZlP64Ojzq5okJ/ohTFPdqh2hO1SzFzXN5YYhIIOzmiPbxBQLae+pJ0pRwr
fzpzWuftRP0Hm9p5ctJHXEeEWBb8w/AdEtIxx43nlbq9j5YAKSfG7qYlr+2CAAhH
6p0Gvv2FwhANest139A33k31Pi4BkQPpqmdIAl0IlluqE8QGwDdJCeF3HYD1cwqQ
dLa47AUIapmh1trDH+nIg+LdHPNTKeDE2nRuoP2X9NnAH6/iFmdu9bzhniY3Ya4/
8Rwrcc+BarDJy8KQDuwHSyLLL+eWqg7CinK/FlreVy9KD9fqdqBW25xsMmYY78MR
exYbVNVGK4mUCw8vwWye01CQP2vJ15otPetLO706HKG4xjR3DnSipI5o1ZGy2VtX
/bc5qsvCKU/akQMXgQL7NgzI0a7xy1SxPjPB6as01MLQaDRo74bgdULpl8YWXcv7
Fy4t0OwhNWyQHPZnTGT+b3VrZxxr3Xyxqjxcqi4jSrYU9x7f92xlWZZ5meRuGr2R
be+Tuhbqc3KPi8augLkofH9nXC3d2d0J3uBfVcmh0f2G8gQvie5EyNAjeyrRQoNS
NgYrHLLdqrU6y4yUBK24V3Zt3lIMl4++ixv2ypQc5okbAI8Ys1xmjIls574bbzzi
UyC2Qg3RWSx68p/WqInM
=ZR96
-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/e1tfikq-0007qc...@franck.debian.org



Accepted mupen64plus-rsp-hle 1.99.5+11+bf4a5b4315de-1 (source amd64)

2012-12-02 Thread Sven Eckelmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:32:24 +0100
Source: mupen64plus-rsp-hle
Binary: mupen64plus-rsp-hle mupen64plus-rsp-hle-dbg
Architecture: source amd64
Version: 1.99.5+11+bf4a5b4315de-1
Distribution: experimental
Urgency: low
Maintainer: Tobias Loose tobiaslo...@gmx.de
Changed-By: Sven Eckelmann s...@narfation.org
Description: 
 mupen64plus-rsp-hle - high-level rsp emulation for mupen64plus
 mupen64plus-rsp-hle-dbg - high-level rsp emulation for mupen64plus debug 
symbols package
Changes: 
 mupen64plus-rsp-hle (1.99.5+11+bf4a5b4315de-1) experimental; urgency=low
 .
   * New Upstream Snapshot from bf4a5b4315de9214efde317b2f3c9367880c9d8f
   * Upgraded to policy 3.9.4, no changes required
   * Remove obsolete DM-Upload-Allowed in debian/control
Checksums-Sha1: 
 ab39bc434e50026a15af8f502c01e35f3c440457 2292 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de-1.dsc
 ffb472e062677d15867b744209023fd9cd55e3f4 43251 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de.orig.tar.gz
 1de16052df6dcf817353c08554b1ea40f9e4dc37 7686 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de-1.debian.tar.gz
 3aa83fe71dab3a6fd5af35e920ccaa20eed661bd 32160 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de-1_amd64.deb
 f28909863a52c4ef2bf8580b6ccdd5c6e1992782 44692 
mupen64plus-rsp-hle-dbg_1.99.5+11+bf4a5b4315de-1_amd64.deb
Checksums-Sha256: 
 db716176b96067529d01c35bdc8c229fa38cfa34f28c0ffc02b16876454de257 2292 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de-1.dsc
 f4a83bc770262f1370a67ba0d44bee80099e4e582b0bae04ab3bfec5cf27960a 43251 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de.orig.tar.gz
 2001835cf15521d5f509845754acd41a99c83e69d7b3d9348a545ac59538884b 7686 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de-1.debian.tar.gz
 8db02db3b14a16569ba3d0f4f54300f71a149597bc1f9a06d032f2c9eba3bf90 32160 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de-1_amd64.deb
 ab732e84c148883c2858b636cc8ac4e9b16edf276b764c29f2f8b62a8ba55f6c 44692 
mupen64plus-rsp-hle-dbg_1.99.5+11+bf4a5b4315de-1_amd64.deb
Files: 
 4956ed623e5a23187adc5d85f83db404 2292 games optional 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de-1.dsc
 a44895da8b9dc66735a33d8ab5baef9b 43251 games optional 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de.orig.tar.gz
 dab3b9749faf4df84cfe34ddcad04e7a 7686 games optional 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de-1.debian.tar.gz
 6318feb3b250e5950b8fe14ede19792d 32160 games optional 
mupen64plus-rsp-hle_1.99.5+11+bf4a5b4315de-1_amd64.deb
 be689f378fc419ebae97df7c055be39f 44692 debug extra 
mupen64plus-rsp-hle-dbg_1.99.5+11+bf4a5b4315de-1_amd64.deb

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

iQIcBAEBCgAGBQJQu9XiAAoJEF2HCgfBJntGa7MQAL1ldt0ZwG97i0oHec21yxva
LqOeIUhu0BGKX95Zozs2VpOGMhc6Xs1mNbpA0GIBzgv62daHRcKEzQjuJiLC6H2B
eHGzp/ydNQS3c5UBo7qO5yluHmCGg9WL0dvPWFGvQV1nw0LtjwnqUybRnqhSt9MU
VuyFJAl6t0+oAm00VbEGL2yCiCqWN6R8Im2e+wm7MtM7TUR+UU9YlIwNfm0RBk6A
3/5cG4EJkiKW5CKTl62z6l2JFYxqgf+Vc9rFquTaOONEWhIlHJ/PUtHg7Gp6ciMQ
XA/ha5AGmfdpdzSq+3i3g5u+9aVu7SCHU6BHVy5ri91IAF12RWU0Ly3J78b2DJ87
uDs9YDgYs1/GM9XFfkzOwUW/wbZ1pdLFEG6eSod1xjol8eCk/1yH7/d4aPhYQLAK
5ctmBZu+uPJiJlFt2DNNg0VK61IwLYhpNaAPq1jnZKbEcCgBiHcxCfLlnM+NrFZC
twIwC6ebwOtebBKa72dSIGECtsgGC8N+qitPYPX15cQ5dyLYKYKwhfTu9Ap6Tjhx
70H2g2ZptPLcfR6JPvECxxEP00iFRxi5IpJ5A4m5BmG2ccHRTK/vQV4zD4KUjinY
oAwjwHdcuV0cC1lAKt+urCuS2un8HxAMckMMMG9rOPuSD1uHKGHpjK4SrifGodGu
/vctVMYoHpVYecF4vSjV
=uyCm
-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/e1tfikv-0007us...@franck.debian.org



Accepted mupen64plus-rsp-z64 1.99.5+3+ee940659ff77-1 (source amd64)

2012-12-02 Thread Sven Eckelmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:32:33 +0100
Source: mupen64plus-rsp-z64
Binary: mupen64plus-rsp-z64 mupen64plus-rsp-z64-dbg
Architecture: source amd64
Version: 1.99.5+3+ee940659ff77-1
Distribution: experimental
Urgency: low
Maintainer: Tobias Loose tobiaslo...@gmx.de
Changed-By: Sven Eckelmann s...@narfation.org
Description: 
 mupen64plus-rsp-z64 - low-level rsp emulation for mupen64plus
 mupen64plus-rsp-z64-dbg - low-level rsp emulation for mupen64plus debug 
symbols package
Changes: 
 mupen64plus-rsp-z64 (1.99.5+3+ee940659ff77-1) experimental; urgency=low
 .
   * New upstream snapshot from revision 
ee940659ff7720886049705ba417f679b94c6155
   * Remove obsolete DM-Upload-Allowed in debian/control
Checksums-Sha1: 
 dd3e4f30ffec52287f702c2078eecd48b12434fe 2257 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77-1.dsc
 82a477dd5091e972cf540e272bb1e9d3ae262fab 44211 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77.orig.tar.gz
 96920d7974ff79c2aee24074bb309bfd3936461e 7452 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77-1.debian.tar.gz
 1ebb039501adf45ef485f012fbd9420c3290aee4 25824 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77-1_amd64.deb
 742d6439c50ce9a781ff6f9fc8c8d2cc978ff940 54786 
mupen64plus-rsp-z64-dbg_1.99.5+3+ee940659ff77-1_amd64.deb
Checksums-Sha256: 
 32a66537b56e7d295be18fdc89ab523db790dfffe655325f4557ac9c9b1fb1c2 2257 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77-1.dsc
 0d56874c0780b21e0374e7b5346a78f7fc31c10a2be8bd6b072452a06cd37ba3 44211 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77.orig.tar.gz
 9a498e7bcf36e6c84be9fda1ff85a3419211a0658d8ed7fd28730e06fbf21175 7452 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77-1.debian.tar.gz
 636619e20fd7fb80e36ca1107047bcbe00550401c69442ebd0901bca5227a43e 25824 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77-1_amd64.deb
 43921431a7602209b99dc22bed672370696e09a4a4cb814b5e926d468c156399 54786 
mupen64plus-rsp-z64-dbg_1.99.5+3+ee940659ff77-1_amd64.deb
Files: 
 e627e4becb281f6c52c820afbd0bb5fb 2257 games optional 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77-1.dsc
 c64e75e1ee34a47558eeb3acc5e5c282 44211 games optional 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77.orig.tar.gz
 2434d71d0f124265ceb3afc17f9fc526 7452 games optional 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77-1.debian.tar.gz
 8ced02b96bb731430d4717b7503a953b 25824 games optional 
mupen64plus-rsp-z64_1.99.5+3+ee940659ff77-1_amd64.deb
 61d3068235f0ac8a75a3085bd729daf6 54786 debug extra 
mupen64plus-rsp-z64-dbg_1.99.5+3+ee940659ff77-1_amd64.deb

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

iQIcBAEBCgAGBQJQu9YPAAoJEF2HCgfBJntGGFYQAL36agL6yqsG6CVK13AwPvoi
/rzfq5j/JNr0ct/uNA7Cm2HJJp8t5X4SNn36Y32CF4LhkW6aD64ik4NiMXc6OK15
jRlqWzC1o22C7J5VPY536oGvdoxQU9D4WmZXbPQSbeDVsxmrJKCF+Qle4ZkPxHog
37yl2khhsPGXinqOZJv7+Pm8jXs1IzJZiA+PG1zmrr+pLOtkHq5zPaqCA4ThhPMg
l13sKRM5k+bjKwxpqRaUD4A8c5lY8I9IhwoXFRFFFvXLgTyjI+YoCsHMkbXhlQWd
MLau6O+hENO4lmLGk+yXqcX1DsRxj9/J0C04tyWN+u6uJCLQEqQNacUKEkei6iOo
nhxiuZXAVUVmIciD7lsnZnrc4kjgAzPM4VHDlYcHWgaln0HoiLJRhBcZlaIWbX7a
mPDFL5mgu1W7gI0bOKpiIXgJj2burMIqXd8/vcZGwN7acsVMXxpWr37hQ05R2Fll
tskty5wLLqAyzCW51LnWTAskHycn8w2HkszhEAlUIAOEOdGl91CahfXWcF3uO7P5
pnZDdxM2dIqdrrCeLZNVDmaKnsb59COFR0lpQ3fSIP8UxWrets1/SWBbk4RU6TPF
z0RCx5JioTF60TAmwiJBmxrJo0BYOuMniY4NIuZwue7p12qlmwRsuTJN5TAzhbHb
55d+a8s3KvKb4ll41ici
=o9WX
-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/e1tfil1-0007zl...@franck.debian.org



Accepted mupen64plus-ui-console 1.99.5+8+0f9dd3c1dd6d-1 (source amd64)

2012-12-02 Thread Sven Eckelmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:34:01 +0100
Source: mupen64plus-ui-console
Binary: mupen64plus-ui-console mupen64plus-ui-console-dbg
Architecture: source amd64
Version: 1.99.5+8+0f9dd3c1dd6d-1
Distribution: experimental
Urgency: low
Maintainer: Tobias Loose tobiaslo...@gmx.de
Changed-By: Sven Eckelmann s...@narfation.org
Description: 
 mupen64plus-ui-console - console frontend for mupen64plus
 mupen64plus-ui-console-dbg - console frontend for mupen64plus debug symbols 
package
Changes: 
 mupen64plus-ui-console (1.99.5+8+0f9dd3c1dd6d-1) experimental; urgency=low
 .
   * New Upstream Snapshot from 0f9dd3c1dd6de4e65ed98fb9745448cacb5a13b5
   * Upgraded to policy 3.9.4, no changes required
   * Remove obsolete DM-Upload-Allowed in debian/control
Checksums-Sha1: 
 dab1b60f810056c7036350d3f22e9a83f899b9a2 2296 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d-1.dsc
 b8f4ae0f5c06f872ed7549ff1c11f4357e7187a2 36668 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d.orig.tar.gz
 2694540dd4feb1b634134b7d2433c10fdf12daa9 8048 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d-1.debian.tar.gz
 74212598c27a9cf2db79670a0c7981132306817d 25946 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d-1_amd64.deb
 2a98a7edc647b0e186c9a1baebf4bb349b8fb99f 44180 
mupen64plus-ui-console-dbg_1.99.5+8+0f9dd3c1dd6d-1_amd64.deb
Checksums-Sha256: 
 a8204de2289744114caa6e9f0fbf44e7a24556dfd032aad1f12f084446de6e70 2296 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d-1.dsc
 ef055472e6a0491557c3652f0d5a21b2445eea2b5142fa6c3f66b58e2f62a37e 36668 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d.orig.tar.gz
 23a58adfa0b7a9134b16ab3e36177e1636320f596ab6b346b777186a197d481d 8048 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d-1.debian.tar.gz
 09d729d4a438c96572b433986510a7593eb33ae8462c311b1e8962670769 25946 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d-1_amd64.deb
 c1490d619a94657f85607bff425eb9b0e91ff0dacf71b761a05f33bd0f02a187 44180 
mupen64plus-ui-console-dbg_1.99.5+8+0f9dd3c1dd6d-1_amd64.deb
Files: 
 43f1e0dc53042cfc0f09fc531a8554d4 2296 games optional 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d-1.dsc
 8416ed1251c79d2f2a20eb3873c93859 36668 games optional 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d.orig.tar.gz
 04933fa4d7b1537d3b6cba0099629208 8048 games optional 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d-1.debian.tar.gz
 5c9b767c0e655e4fc0b611ac5a785005 25946 games optional 
mupen64plus-ui-console_1.99.5+8+0f9dd3c1dd6d-1_amd64.deb
 d52670674dbe70b545c66b4e4da96384 44180 debug extra 
mupen64plus-ui-console-dbg_1.99.5+8+0f9dd3c1dd6d-1_amd64.deb

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

iQIcBAEBCgAGBQJQu9Y4AAoJEF2HCgfBJntGCncQAMWpzVCcbDNWUHAPYGcAok3U
Bn4FuyUvRP8ltWB09q/LbM8Tc48Zxg8VhKvp/vOKkXanZ9rfvIgCXzmWMU+J6xru
ByBUWAioNp9jTacXzmZKqsNIqUcDFt9cbINBSXPe7n/x5Pj8z1jkmBXYIhIHL+zq
OWQSZXkvx5U4Q7X4oxZ2ePiByNCai55f2Qb/fyBRmdGhv2ltpFKGW21WzvGhrQXR
amPzTj6zFKVpXPyiQzI5JXe39poiHk+3wms7AAKbdPfalWqAWKCeEl7g+iOho4P/
sN7bje8yz2eZ12h0PPSI1EtZ/zpDZ3tZg9jE5jdAgDXbEipErG8qry8FX4I4w73o
qm+Em8ct2rPsPVHBvRGvj1zd5SQtQ8ygTtBIe72GggOYYW3Arx6dxrROUMvjRuHT
TgmPtVWFIFsoI1q4zILsk8QFN6gZbapOYly/21SrJuYtuBaVLTtYMB9mmYRLh5Td
8RS6lS5/9iLPlFdNu+sQklVt0GSTQEyUsUu9wbng3GCMp6p0MB/NKGwIpEZMtL52
sDBVbgFN5/+KGipSKQwhlAV+X+/Oh42ISuViShS+5FBrAGtWIlc9FYtc9r3pF5TM
PMq96FpY5LwQm+IFVGPPrFKPT+UZFVRsQXQUV9eyBCz6NIorchAUxdgA8+6T+M5S
dabrUnVlB0zQONZxL04f
=OErm
-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/e1tfil6-0008dc...@franck.debian.org



Accepted mupen64plus-video-arachnoid 1.99.5+4+28e9cf4a672f-1 (source amd64)

2012-12-02 Thread Sven Eckelmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:34:08 +0100
Source: mupen64plus-video-arachnoid
Binary: mupen64plus-video-arachnoid mupen64plus-video-arachnoid-dbg
Architecture: source amd64
Version: 1.99.5+4+28e9cf4a672f-1
Distribution: experimental
Urgency: low
Maintainer: Tobias Loose tobiaslo...@gmx.de
Changed-By: Sven Eckelmann s...@narfation.org
Description: 
 mupen64plus-video-arachnoid - Arachnoid high-level graphics emulation for 
mupen64plus
 mupen64plus-video-arachnoid-dbg - Arachnoid graphics hle for mupen64plus debug 
symbols package
Changes: 
 mupen64plus-video-arachnoid (1.99.5+4+28e9cf4a672f-1) experimental; urgency=low
 .
   * New upstream snapshot from revision 
28e9cf4a672fbba30f393a1c0c9ed4f6817f
   * Remove obsolete DM-Upload-Allowed in debian/control
Checksums-Sha1: 
 58180d60845b5dbc1625ecf52b0e5f84d9815107 2405 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f-1.dsc
 d35d7957b9bc9a0af5a787c02b56a8453b831661 126845 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f.orig.tar.gz
 6996c1cc9f01f23941b686574311f44a81fad765 7558 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f-1.debian.tar.gz
 0b12cdb42dcf111ea26d64a8a0ff42c2919e33c0 69840 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f-1_amd64.deb
 bbb843a418071f769a72ee9c194d0adc2c75b46b 279506 
mupen64plus-video-arachnoid-dbg_1.99.5+4+28e9cf4a672f-1_amd64.deb
Checksums-Sha256: 
 435ca023bad82afedcc50f7eee30f837174bbd6d2f2d4feed6c269145a1a551a 2405 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f-1.dsc
 2e445a88d59411ee219efc42a58f4012759276c4bc29ffb07f134313b6cfe7e8 126845 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f.orig.tar.gz
 1f6e8875d07acdbe41bc49473eb9205b024c52096669ef93d61f4ecf4b33 7558 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f-1.debian.tar.gz
 89da7c85e4860404a2ff83e211cd5fe9a7104ae2d4046bbfceb87323aae56d41 69840 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f-1_amd64.deb
 759cea689c9df13a537f6ece818744297dd1f3b2e1d1286534c0f265761409b1 279506 
mupen64plus-video-arachnoid-dbg_1.99.5+4+28e9cf4a672f-1_amd64.deb
Files: 
 33aa3fb3a01bb68e748adef1b7375cf6 2405 games optional 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f-1.dsc
 0108db1cbf22db0b4e12a2955fe5eb6a 126845 games optional 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f.orig.tar.gz
 e983a0b7282415db36cea495c34d79b3 7558 games optional 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f-1.debian.tar.gz
 410ca13664e77d16e003a29c2dcc37e1 69840 games optional 
mupen64plus-video-arachnoid_1.99.5+4+28e9cf4a672f-1_amd64.deb
 85d2d602f4c18440928e4042a9aaee3d 279506 debug extra 
mupen64plus-video-arachnoid-dbg_1.99.5+4+28e9cf4a672f-1_amd64.deb

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

iQIcBAEBCgAGBQJQu9ZqAAoJEF2HCgfBJntG+sAQANVgPbUUlSOkAn4DukIGrRUx
M+F0TNTiJVr/ji62+3xm0dkaqBt3KV1ZZlU7pcAVZiuLIH6hTF+j22lQSW2Pv9yp
uLBSJDoq5SHSmb5+gfGwzIi7kzV8BxHvyxU3pJUBZCkBmZYRrVhDdXf4qhR3DZiI
Tk+8T8eVfJ3VVwmpMThgJeF8Xez76vRhRA4uqjaEVlT3yXVDCPQNfa7jDTcUD9ii
HjXOuSW4ikp6OpTmV59TOfZEHXdcnNihV/+IxbQ0Ae1GQDwNZ/FZxuTydryEtfdd
gMaw2jfKECI2UI7eQD30Zgv4nQyjOS7UCwv9pbe6dU0xWkGbwDrc9znYDwRBpA1a
+li4imEsaYFrOuVFdh+esWx/STUCwiHU9Aq1NQFiWlhbLdeHKmtzGihKidNdaKaU
TRGE2GsVVG3oud7A7q8VyCcr+0isRe4fz6iZkb9UF+E2UjWTLY8L/Wn9tIHgvJN/
FURMb6BjOuwElkFu3d9Y98LzBbygDQ0tG3QfT5xB4BP5ZEUO8w8Jn0OT0ZbLUjQT
5SU23P9BkZ+6P3R1VKpN5KG1KNMSUX4lAt3scCaVQcAWQk+pgyxL8XCw27s7mM4L
jLBCQN9GmqGHHsdgbWnR8+jcMfJlyIiFc52e5qfcpSSgBoCUSSi8iUmwdui8KtJJ
LsfjcJ5NG14fnembntH4
=N9ZR
-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/e1tfilc-0008ui...@franck.debian.org



Accepted mupen64plus-video-glide64 1.99.5+2+c2c2d8f0161b-1 (source amd64)

2012-12-02 Thread Sven Eckelmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:34:14 +0100
Source: mupen64plus-video-glide64
Binary: mupen64plus-video-glide64 mupen64plus-video-glide64-dbg
Architecture: source amd64
Version: 1.99.5+2+c2c2d8f0161b-1
Distribution: experimental
Urgency: low
Maintainer: Tobias Loose tobiaslo...@gmx.de
Changed-By: Sven Eckelmann s...@narfation.org
Description: 
 mupen64plus-video-glide64 - Glide64 high-level graphics emulation for 
mupen64plus
 mupen64plus-video-glide64-dbg - Glide64 graphics hle for mupen64plus debug 
symbols package
Changes: 
 mupen64plus-video-glide64 (1.99.5+2+c2c2d8f0161b-1) experimental; urgency=low
 .
   * New upstream snapshot from revision 
c2c2d8f0161b830a4adb3371d99e6179d7c4b227
   * Remove obsolete DM-Upload-Allowed in debian/control
Checksums-Sha1: 
 3b0bb13915ec25cfa2d2eb06da274f8952004053 2410 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b-1.dsc
 40e2091ff93b792be20e9b16e94c4234fd31f6cc 340121 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b.orig.tar.gz
 b4a22d30e2ce47b5b552379bd8cb30de3377efe8 13691 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b-1.debian.tar.gz
 cb304959ea46dc507259462d1fe746ff5b23f74e 286806 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b-1_amd64.deb
 f1285e7a62f23b0605cdb07eeacfbfb7008dd09e 569832 
mupen64plus-video-glide64-dbg_1.99.5+2+c2c2d8f0161b-1_amd64.deb
Checksums-Sha256: 
 31b72c39d977e8b137a5c2e47c525f423eae1221a39f9cd878ae4033031dcf94 2410 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b-1.dsc
 1b79f07e5259cbd3bc16c0932b32356de6be9ee7b8f1b6443ba1862d2c71222b 340121 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b.orig.tar.gz
 3999dd159ffdd62647b013a2151731dc7c8e356d557cb0a5a3f77ae917755de9 13691 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b-1.debian.tar.gz
 b5c5b1a688b6200ebf6abd9c8248acb3bcdc888dcc4e09f7dda65eeb0381a001 286806 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b-1_amd64.deb
 0b5b4fb42951b48ef6785520e4e172976f8ca90a7b965e3b140009cbc7c2b855 569832 
mupen64plus-video-glide64-dbg_1.99.5+2+c2c2d8f0161b-1_amd64.deb
Files: 
 44e03a5bfacad8332c4a6570d9766b8b 2410 games optional 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b-1.dsc
 9aaa87f4370d4bc96b22fcede8378d54 340121 games optional 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b.orig.tar.gz
 fdd2cd4548d8cc72b712a3be487ca9c1 13691 games optional 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b-1.debian.tar.gz
 9e1209721a8d735d11132244e30fcf89 286806 games optional 
mupen64plus-video-glide64_1.99.5+2+c2c2d8f0161b-1_amd64.deb
 8dabb342b12b728a6aaef6f5d6280249 569832 debug extra 
mupen64plus-video-glide64-dbg_1.99.5+2+c2c2d8f0161b-1_amd64.deb

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

iQIcBAEBCgAGBQJQu9a8AAoJEF2HCgfBJntGeoAQAIntOMclrxWxLCC6OZV3lwOn
qk+FvLSMPF8Lc0qLj5C65G3sIuLheiXi+2hHD7hp82CXbb3+wXeKYXySXw2TZt5g
I1/r4BxkEijAmM1Cb7bZO8xka7uJlz70R6dgPsYOt8DLTXX69N0C5OSwc4lwarNu
sNQCRzwtKbhOOgeYzFvRUuT5SpjD16YZH9GvCvAepyXBB/c40cJYLgSUEvP50LWg
oTp9aZs27xp4tPiVsJkN6/BmRUoS2mwQvprZsUjBA2rbRCr/cS6a2SmWLZ7RFX6G
dtY+bWHsBlGhH2ADE5FC61z9nJpW6xH97S//LLZt6jBoWP5moKuMZ3xhBWH9otFW
diK8r0cUnG4tjwY10wKidpLieBsDpKGkmTZCs6wfZCya3BI5Rv72vdG5gD+aJH2/
Gmc/Wn78kd2sGaZkn5yIsb4Md4a6/nMi/VJd/mQsLnS1Wo7E4pvJy5kxm2nMs4Ye
mP+q79cW/iKDM6oFBBhFKdk9DwJMnTBNjtJehHFwDal3+1z/wQYd/IlzT40MQvYC
LXaFXEuCkD1eSkcc6fufknHJ+MJqZOmbpq4OvpJaKdNZhssK1l49odLVG+vA9BKd
MnWQuxAHh2JQOY4fIFoEHNnE9Ao+0AmacQxFRo+noWJojsbkSQ6dxK+J8N6FwYbs
O8TMbNFJsqLYVZvPkWoH
=el0T
-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/e1tfili-ju...@franck.debian.org



Accepted mupen64plus-video-rice 1.99.5+6+6f95516f85f0-1 (source amd64)

2012-12-02 Thread Sven Eckelmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:34:21 +0100
Source: mupen64plus-video-rice
Binary: mupen64plus-video-rice mupen64plus-video-rice-dbg
Architecture: source amd64
Version: 1.99.5+6+6f95516f85f0-1
Distribution: experimental
Urgency: low
Maintainer: Tobias Loose tobiaslo...@gmx.de
Changed-By: Sven Eckelmann s...@narfation.org
Description: 
 mupen64plus-video-rice - Rice's high-level graphics emulation for mupen64plus
 mupen64plus-video-rice-dbg - Rice's graphics hle for mupen64plus debug symbols 
package
Changes: 
 mupen64plus-video-rice (1.99.5+6+6f95516f85f0-1) experimental; urgency=low
 .
   * New Upstream Snapshot from 6f95516f85f06098cf13e3b5851be3d9315749ff
   * Remove obsolete DM-Upload-Allowed in debian/control
Checksums-Sha1: 
 50b946606f54d8b81361fef379d5ef11cc264522 2380 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0-1.dsc
 3d882e9821bc136ad6cad8e69ec89caaffd19f0b 350277 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0.orig.tar.gz
 49a7d87f9e5783fcdb9cb80e9d10d8eb02723a3c 8780 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0-1.debian.tar.gz
 cd817874e921d7ca2a2834f89fd083eac106b50a 288450 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0-1_amd64.deb
 3ea126a4f5ea80f7cbe752903f2df03c25cdce13 789782 
mupen64plus-video-rice-dbg_1.99.5+6+6f95516f85f0-1_amd64.deb
Checksums-Sha256: 
 99b81748c98b6dd8d1cac636e43223bbdc286e445db01a2db7b9a793b33abbe2 2380 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0-1.dsc
 1962b1600f30fca69737a8cb7ca95a000e84452af05b5fee76a9e966aca17844 350277 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0.orig.tar.gz
 889ebd6da3d5f3d885dac8b74d47d4d42a14eb5282294b15c055a5f9275bb510 8780 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0-1.debian.tar.gz
 f71d6a112ff152db9b2ea574175b1c9915bee7b0b275aaa748e0ad9c81645588 288450 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0-1_amd64.deb
 293a1bebb6cff4f910d0228155024a0a3bbcdce306a7a0e08fba1c8487b4b1ba 789782 
mupen64plus-video-rice-dbg_1.99.5+6+6f95516f85f0-1_amd64.deb
Files: 
 b936e287c99d757058a642d90cace4db 2380 games optional 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0-1.dsc
 b310424f6eb9e5dc196680ab40b9 350277 games optional 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0.orig.tar.gz
 5add66faf7e2ca864b0898ebdcad989e 8780 games optional 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0-1.debian.tar.gz
 6d9e2fe6d3ece8738b3ef73a340f2ec2 288450 games optional 
mupen64plus-video-rice_1.99.5+6+6f95516f85f0-1_amd64.deb
 aeeff19598a3c8c5e9803c10462a79be 789782 debug extra 
mupen64plus-video-rice-dbg_1.99.5+6+6f95516f85f0-1_amd64.deb

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

iQIcBAEBCgAGBQJQu9cZAAoJEF2HCgfBJntGcIwP/12VZbHmTeYP0lkXT3ZErlzZ
WKrOpNFzlu1KiE8q1Cpks8RT5G07vy0X9fPEU2VXYZEDAN6BMT76a40UpXtT1/Ci
YHLd1M0Dy3YeFBM20WXBLoxwscn45N2nb7d8q+XJBfhEY1dyClIz+sXexvhqqNW6
ruDPG4jf2ienqcQQWJ3InEKT8KFnuejzzBTStLiGLnPiHPuJXhNImOZNXN0e03IO
YXSetaC38vdOplc+0/G3AabLZbUdyx+j5vWIVDzLKMrP+2TtScZsjetH5H2qML3g
hnI2EB3nPgNp6dZEMOBFk0XmthuOBvO73beTMUAIkup/r2CgDtrdnuwYVJ6aYGkx
s9a+ygLEBFk6/Uo/VnZsbh6asbxE29Tvc+N4BbkpNYomLjcl/yGISJKxXuKrLPFN
0u9EJE2glIacmHWbkYeIbbxft2t5MIufIy+lvfmZUVqLbIzD/4+95E0x0R69ecN3
HXrAkXMl0t9G/K9vFDZqpXpMXKfcIi/124R5BiCVKUw1tIw78rh4A8FCNUhaL8n0
QOf7Z+DgvpvMXUVAw3Ix55XV14BwrCL5dTxEzpUTRI8nQQYpk0O+0pdpRSH/3VuU
hNEfcrLTopu6hFboSWWfmSWFMt1a8B+0dDnYQGCReZftJwHSSp/siVmZSafr+NWc
IexLcZUyJoXOhC560W8S
=7nRc
-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/e1tfilo-ay...@franck.debian.org



Accepted mupen64plus-video-z64 1.99.5+4+ee66eddb472a-1 (source amd64)

2012-12-02 Thread Sven Eckelmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 02 Dec 2012 22:34:28 +0100
Source: mupen64plus-video-z64
Binary: mupen64plus-video-z64 mupen64plus-video-z64-dbg
Architecture: source amd64
Version: 1.99.5+4+ee66eddb472a-1
Distribution: experimental
Urgency: low
Maintainer: Tobias Loose tobiaslo...@gmx.de
Changed-By: Sven Eckelmann s...@narfation.org
Description: 
 mupen64plus-video-z64 - low-level rdp emulation for mupen64plus
 mupen64plus-video-z64-dbg - low-level rdp emulation for mupen64plus debug 
symbols package
Changes: 
 mupen64plus-video-z64 (1.99.5+4+ee66eddb472a-1) experimental; urgency=low
 .
   * New upstream snapshot from revision 
ee66eddb472a3dcfa5558df95352bf9c78d1aa29
   * Remove obsolete DM-Upload-Allowed in debian/control
Checksums-Sha1: 
 96c551c56ad01e86fe27c1e9c0f9a6594f269ac4 2365 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a-1.dsc
 85a7c021d9c73090775b26f11e5f9d012129fb09 65162 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a.orig.tar.gz
 815e8214e0f1f27ff245410eb3ba7af265281e0f 8958 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a-1.debian.tar.gz
 f35238f815fd797ecd139602b60b22123b912d9f 43178 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a-1_amd64.deb
 af496e7d696a05e3739e582123d8f8a7725647f7 75270 
mupen64plus-video-z64-dbg_1.99.5+4+ee66eddb472a-1_amd64.deb
Checksums-Sha256: 
 879842717b82e9d8a4119c44f41991f4e23b3f088097ed9a2ca1d069bf3d7168 2365 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a-1.dsc
 60ff1440a50cd0cc7ee491ee377c861799c1c88957fd3d79c11cf57f25c4eedb 65162 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a.orig.tar.gz
 0a19a5fa27cd9d117b98e52e623ce690cfd065e857b833e0a34a0c5f06f5b35b 8958 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a-1.debian.tar.gz
 b89bbf4ec2be8691df1ed5e5837262e4aee7ba5e2d99b9a11c502e10bddeaa2a 43178 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a-1_amd64.deb
 8bc9a9cb357fb4fedd51578c1141c7dc36f73c9577b506ff512e638bbfad2066 75270 
mupen64plus-video-z64-dbg_1.99.5+4+ee66eddb472a-1_amd64.deb
Files: 
 ecc8341f0f416753d1d40828495d5caa 2365 games optional 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a-1.dsc
 445d2b7899473e342bc2876776ec4616 65162 games optional 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a.orig.tar.gz
 b4fc8d66ab7ab4dec6b34fc26fb50eaa 8958 games optional 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a-1.debian.tar.gz
 425a08fbdcfbf14d1d91bba6d5011249 43178 games optional 
mupen64plus-video-z64_1.99.5+4+ee66eddb472a-1_amd64.deb
 db35ac3f37cc5af48ac9fe12feb2eb7f 75270 debug extra 
mupen64plus-video-z64-dbg_1.99.5+4+ee66eddb472a-1_amd64.deb

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

iQIcBAEBCgAGBQJQu9dQAAoJEF2HCgfBJntGqs0QANgU4XRC4mfXPbS4pTJ5g2tM
AnSEwyl2Rok0byehNDUbuOfN2kvYD3fmW7IdQQtmBacHhkYGPOCpJxy0loAh9yNP
ccMma0w/KfMwaav8sktr/bi4wU17STIIZuzWy0obokzoeWIWh913ZdZCPwSeKQpn
oDhHVNtkTmjlJoXPDviTfxh1RsEqIGS2XfZ87Ko5dXIEBx4cDbHDS5hpcu2z3ZVO
Lr6JQVxmwbY3LqiSIjipuHu3r7O4EsWnoBH0Ooltx98iWAMxMEs8FKlUX5YE8TGk
n1jVVx5buv8w8k7vGrce/OspXtuNtW6taVPS89klaELOPK59XbcdyeW3fHWtE5Ud
Sr7wa+XdznnWpnB4fksda+2EFfuFgw+T4GqV5iABd3aW9HKZ99T7MUmBMuoIpW1L
B/tjiOJiYkfm1YEWsKfKERU6OXTBBlE2bg4N/YASb0/4CVQMtYHkA2D4qr5kjTTR
00oUGKlSHcreFRfnw6BnjPLPgB0n/7CTbugykK3Zlj2jYHhKXXafFQN0OyOdPTIz
1jzMN2R/1K/M3dNzYh+pWd3DwWs7IBgjs/j7c3pbG/uLLYA9KiJOGNTw5RgPmLSE
sBKoRuNjmsDUtPNizgyMPbCGbgltt9EHmJIOAnSwv6iv0CP7/t63z52M+kHhE22F
Ux+tsO4zb48E56l52oGF
=SlRX
-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/e1tfilu-rt...@franck.debian.org



Accepted dput-ng 1.0 (source all)

2012-12-02 Thread Arno Töll
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 26 Nov 2012 17:41:41 +0100
Source: dput-ng
Binary: dput-ng python-dput dput-ng-doc
Architecture: source all
Version: 1.0
Distribution: unstable
Urgency: low
Maintainer: Arno Töll a...@debian.org
Changed-By: Arno Töll a...@debian.org
Description: 
 dput-ng- next generation Debian package upload tool
 dput-ng-doc - next generation Debian package upload tool (documentation)
 python-dput - next generation Debian package upload tool (Python library)
Closes: 691624
Changes: 
 dput-ng (1.0) unstable; urgency=low
 .
   * Initial release (Closes: #691624)
Checksums-Sha1: 
 e3e57464a032e4944f938063579a983d1f9e25fe 1710 dput-ng_1.0.dsc
 4cf3e876413946d553d15593ed575cee06074f1c 77907 dput-ng_1.0.tar.gz
 3a6e5f89485fea574ba89f145a08e5a35361d47d 25166 dput-ng_1.0_all.deb
 2bfb202a9e17e12aa4bb6dacf80612e33ef4d453 33506 python-dput_1.0_all.deb
 b447b30aab2e69039f85a2024be17c978018d3e4 66842 dput-ng-doc_1.0_all.deb
Checksums-Sha256: 
 96058fb6eda55a91eb77bd4fae32aef9fd5367d209b827def4c7383ce88bd617 1710 
dput-ng_1.0.dsc
 5442ddbda37f05e248e038ae301e908c95b36be4998e4c9e15f4828915a9a5f4 77907 
dput-ng_1.0.tar.gz
 9eed282ab88eddd34757b8bac773973dcfc9d2b58ba3999f39610fd6f9564a60 25166 
dput-ng_1.0_all.deb
 35b3a68960cc340b919952aa0cc0f2ecc94e83ac26ab8264d6b6262f0d8aed3d 33506 
python-dput_1.0_all.deb
 b02c1fff7d8284e3aa3821f11d3cf6452d595745e7ce8fac9c4bddb5b61d0b1f 66842 
dput-ng-doc_1.0_all.deb
Files: 
 492095175ac3eaab027a2aad4e567905 1710 devel optional dput-ng_1.0.dsc
 b7c026d08773ef666f46390a2650d3a7 77907 devel optional dput-ng_1.0.tar.gz
 b35e5bf8877508ff0ad944ce856f7023 25166 devel optional dput-ng_1.0_all.deb
 0913fff838f163b65cc6c7b35c737597 33506 python optional python-dput_1.0_all.deb
 aa9373bc476395792e2a479af676312a 66842 doc optional dput-ng-doc_1.0_all.deb

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

iQIcBAEBAgAGBQJQulJ9AAoJEMcrUe6dgPNt7VgQAMLNhTLrmPBvbkLLgxqWOKjE
B5XrLbSId5Fi7xoZGqUZYz39GAXgYPBG4E/1xSBJ/kujKRu9SBrtsgELOAcIxNg2
a3PNVfYZkzpuOqGcBPGJ2/P5qx0qeVXsQmijilBuTYQpKHAS2bYDVOvhCD6OKFhv
fRnDDmzaB2i5SFPIdeweEOZwl0uJfZ4VgoQ9tR6T6CnFh/KAT1RPV8qzBm9+Q7wX
Y/7zgATK9Y+WKMMZ+5uue61zWC2T7tX/7Xmp9AET2H4AeN+gm8hZIVfEXZuW4hux
Sdn5cgV61RXuj8iz5+S9Oz1hxSgngM03VsNxB02oo7tsvcHzciZ3p+Z9VkMdjFhB
hXAozDeOnGKRtTCoy+xCxlf/jBkXN0OUeM5MndK+jDPaSbLXK6kv76xQIu3B244t
++JoDmtrG/VqRWakZ4vbwch6drub/sj5AMCOPrqTvGICIjnMAWLHTS5DGuDR+BaU
kBZvRHq84J2Zo9h3W1Vf0/6STT76APgusLXr2BlnyYsnQ+uEFsrEOVJ/Jm1Di+2G
87EXQ109W06XhLdvTfuW9gOqhqe9Dju8BTH8NnxPUjfoxjqUXIEBC7I8RXtpJ/h8
r5nSgxyxIMVfEuD5lkp504TpFXM1Kq3gQX3+P4E9+1DuHIW//RZaJ3GpZbsUAslV
lCkRZltnVYKjoU+eDiGd
=v9SI
-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/e1tfiw5-0003cp...@franck.debian.org



Accepted ecere-sdk 0.44.02-1 (source i386 all)

2012-12-02 Thread Jerome St-Louis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 6 Nov 2012 23:59:00 -0500
Source: ecere-sdk
Binary: ecere-sdk ecere-dev libecere0 libecerecom0 libec0 libeda0 libedasqlite0 
ecere-samples ecere-extras
Architecture: source i386 all
Version: 0.44.02-1
Distribution: experimental
Urgency: low
Maintainer: Jerome St-Louis jerstlo...@gmail.com
Changed-By: Jerome St-Louis jerstlo...@gmail.com
Description: 
 ecere-dev  - Ecere SDK Development Tools
 ecere-extras - Extras for the Ecere SDK
 ecere-samples - Project samples for the Ecere SDK
 ecere-sdk  - Ecere cross-platform SDK
 libec0 - eC Compiler Library
 libecere0  - Ecere Runtime Library
 libecerecom0 - eC Core Runtime Library
 libeda0- Ecere Data Access
 libedasqlite0 - EDA SQLite Driver
Changes: 
 ecere-sdk (0.44.02-1) experimental; urgency=low
 .
   * Fixed issue with 'arch: all' packages preventing installing on 64 bit 
system
 Fixed issue with GCC 4.7 whereas .bmp files would not load properly
 Fixed build issues with ARM and big endian (PPC) builds
 Various bug fixes
 Resolved target and host platform confusion in build system/makefiles
 Proper handling of __attribute__ in the compiler
 Resolved proper implementation of all per node settings in the build system
 Promoting package to unstable
 Added support for a SYSROOT and GCC prefix in Compiler Settings
 Support for cross-compiling the tarball (e.g. Building for MinGW on Linux)
 Initial support for the Android platform
Checksums-Sha1: 
 d5e3b5d21f0fbb3cf9e37df59dd42268cbf95686 2377 ecere-sdk_0.44.02-1.dsc
 ac3f8a9f2f4a54fb1c2e33a2f4978bc875dd099a 12785121 
ecere-sdk_0.44.02.orig.tar.bz2
 2840eaead0231d4335670e64f7b6f135d33462a9 14946 
ecere-sdk_0.44.02-1.debian.tar.gz
 3240579159c4c4bf559f317257dd93735e62a32f 17142 ecere-sdk_0.44.02-1_i386.deb
 2426b6b28841c13af80a581ea2956c14f9ddb88e 3823368 ecere-dev_0.44.02-1_i386.deb
 628eb0c57b586fe170cef6b6810f3f333fcac094 905484 libecere0_0.44.02-1_i386.deb
 9b379dd6f9c49ccf2d3e352abe574136ad1f7589 111926 libecerecom0_0.44.02-1_i386.deb
 47b644bf6797d71e5a9abd4aadf2218f202d5cbb 344394 libec0_0.44.02-1_i386.deb
 021f875f757426df0529fe73f58db23d658ea607 102806 libeda0_0.44.02-1_i386.deb
 8d7c4b1358e14fcf6b00f3adebc10d3cb367b30b 37062 libedasqlite0_0.44.02-1_i386.deb
 9fa8785095ed48a15cd5cbbb274eda53f3cf1ef1 6099258 
ecere-samples_0.44.02-1_all.deb
 f361cbd1da0cdd9cf7a51447b40422c4e378dcf1 233010 ecere-extras_0.44.02-1_all.deb
Checksums-Sha256: 
 126e4f52b83e13ef79d8c82cb165e428c54b616f6668b58a4c0b1eef36816e4b 2377 
ecere-sdk_0.44.02-1.dsc
 95329bd0aaac7d990f23f9808bd3e4760ecb62f109f8a9ad590654894f2ae132 12785121 
ecere-sdk_0.44.02.orig.tar.bz2
 5fa909a995629bba6c7af8bbc06cdce724c39d50769035c6bac7f28f2b29353d 14946 
ecere-sdk_0.44.02-1.debian.tar.gz
 ecee566b71a61393a0578a4f84407435e01d390c7a2121e154280107e343b1df 17142 
ecere-sdk_0.44.02-1_i386.deb
 a498d8be09990fa2e10dca7a44ace39d137ec2de31f3e8bb57019bdef04d4c5b 3823368 
ecere-dev_0.44.02-1_i386.deb
 14b1e6dc2a4d7c3ad233813b7b22c62141cdfd7d0555a1bd7011674830417fab 905484 
libecere0_0.44.02-1_i386.deb
 466c9240a1ebc7cb891c5f4b20be7e07d7ac344078bdf23a1e54489e0f103124 111926 
libecerecom0_0.44.02-1_i386.deb
 37760b658a5d67a0ccad47b7c7cdd936277c92d54ed4b5620244016c8a08e56d 344394 
libec0_0.44.02-1_i386.deb
 2905575cfaf34bdba62c4fabf6b33601cc5b3b37bcc923073928c774952276df 102806 
libeda0_0.44.02-1_i386.deb
 0fd8dbf2661edbc93c56b4bbc2219b37a7349d334f5474f88c5f54636142f997 37062 
libedasqlite0_0.44.02-1_i386.deb
 b61817607fed57e6ce9fc101eed2dc01124ab2b017827a0e07978f0418c2a9f1 6099258 
ecere-samples_0.44.02-1_all.deb
 46697743bc1673ec127bce681560cc58c3e9ad2dbbc31747468e012a68474022 233010 
ecere-extras_0.44.02-1_all.deb
Files: 
 c7ecfbbed9394cebdccdc2de67422fad 2377 devel optional ecere-sdk_0.44.02-1.dsc
 8181deac935050c3c8eab4ee1efd9d3a 12785121 devel optional 
ecere-sdk_0.44.02.orig.tar.bz2
 cdecd7045466f2a11f3fe9ba9ddc21f2 14946 devel optional 
ecere-sdk_0.44.02-1.debian.tar.gz
 35be85e35f7d3a238570a871fb964f9f 17142 devel optional 
ecere-sdk_0.44.02-1_i386.deb
 e765f6eadb0bea8526144c30a0a626b1 3823368 devel optional 
ecere-dev_0.44.02-1_i386.deb
 61ba925eab92f944586545ada8008002 905484 libs optional 
libecere0_0.44.02-1_i386.deb
 1ca68f0ca50c10749687a5d1274d6efc 111926 libs optional 
libecerecom0_0.44.02-1_i386.deb
 9478aacb3938043b077474d9ff7efeb6 344394 libs optional libec0_0.44.02-1_i386.deb
 0b079cbedf12bb7070154523201e04c2 102806 libs optional 
libeda0_0.44.02-1_i386.deb
 61b963e8d0402fb5d630d41fa1c59a49 37062 libs optional 
libedasqlite0_0.44.02-1_i386.deb
 f7e0c963af5adf918bc7f7e525b6e3c7 6099258 devel optional 
ecere-samples_0.44.02-1_all.deb
 4d103c7210001df30458d4bbb0be22ed 233010 devel optional 
ecere-extras_0.44.02-1_all.deb

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

iQIcBAEBCAAGBQJQu+2XAAoJEIh7YGGLPBauyIsP/2l3dystpifi3msJtAqd0RmF
cgUQ50JvIS0qz7y1HoNFbp0HjrPWBCLiKd4/9ExU2a38K3L5c0bsAkEi5SySr0DE

Accepted xbmc 2:12.0~git20121201.192701b-1 (source all amd64)

2012-12-02 Thread Andres Mejia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Dec 2012 20:53:28 -0500
Source: xbmc
Binary: xbmc xbmc-bin xbmc-eventclients-common xbmc-eventclients-dev 
xbmc-eventclients-wiiremote xbmc-eventclients-j2me xbmc-eventclients-ps3 
xbmc-eventclients-xbmc-send
Architecture: source all amd64
Version: 2:12.0~git20121201.192701b-1
Distribution: experimental
Urgency: low
Maintainer: Debian XBMC Packaging Team 
pkg-xbmc-maintain...@lists.alioth.debian.org
Changed-By: Andres Mejia ame...@debian.org
Description: 
 xbmc   - XBMC Media Center (arch-independent data package)
 xbmc-bin   - XBMC Media Center (binary data package)
 xbmc-eventclients-common - XBMC Media Center (Event Client Common package)
 xbmc-eventclients-dev - XBMC Media Center (Event Client Dev package)
 xbmc-eventclients-j2me - XBMC Media Center (Event Client J2ME package)
 xbmc-eventclients-ps3 - XBMC Media Center (Event Client PS3 package)
 xbmc-eventclients-wiiremote - XBMC Media Center (Event Client WII Remote 
support package)
 xbmc-eventclients-xbmc-send - XBMC Media Center (Event Client XBMC-SEND 
package)
Changes: 
 xbmc (2:12.0~git20121201.192701b-1) experimental; urgency=low
 .
   * New upload for XBMC Frodo beta 2.
Checksums-Sha1: 
 af43719640469d36e919708a2818f3010fe0592e 3810 
xbmc_12.0~git20121201.192701b-1.dsc
 05e13bae4bdef4d8e03d87709b9f3235043c5d16 54985605 
xbmc_12.0~git20121201.192701b.orig.tar.gz
 5387299cf3e6b948c77d96cdf64452f64a79b761 37486 
xbmc_12.0~git20121201.192701b-1.debian.tar.gz
 028e0b07e32168e4a4c9bfae1b8d15540aca36e8 21026542 
xbmc_12.0~git20121201.192701b-1_all.deb
 86690f702842cc5bd2695d4b9e355447650f719b 12101194 
xbmc-bin_12.0~git20121201.192701b-1_amd64.deb
 a7179dd031973486c5bad9c3e6d586d7713cacf2 58036 
xbmc-eventclients-common_12.0~git20121201.192701b-1_all.deb
 10e6daf90ce479779fdb15863268db1facc6c4ca 43370 
xbmc-eventclients-dev_12.0~git20121201.192701b-1_all.deb
 6daef8658db76b9ff7f241757ac86db54b4e06bc 62002 
xbmc-eventclients-wiiremote_12.0~git20121201.192701b-1_amd64.deb
 f15ded94b85dbaceffd7aa95b7edaac3883ac2a8 36450 
xbmc-eventclients-j2me_12.0~git20121201.192701b-1_all.deb
 76727f79f3d1b6484e9536220e8762a569eac435 36872 
xbmc-eventclients-ps3_12.0~git20121201.192701b-1_all.deb
 7f76f532b77ed6f0a923472e7b24cc911add3cb8 35694 
xbmc-eventclients-xbmc-send_12.0~git20121201.192701b-1_all.deb
Checksums-Sha256: 
 252c6cd8b85a4e73a4eca7ffefcf0787ed9272eadca5ae9f1c02eccf58829c26 3810 
xbmc_12.0~git20121201.192701b-1.dsc
 ea951d3c56b2bf6b8dfc7840889b3e0c49313bcf01a0ff1027f5a0338237dc8c 54985605 
xbmc_12.0~git20121201.192701b.orig.tar.gz
 5c3ba76b7cedf532006c3a3812773a2828e7580e94bb9f2a12d0394195762881 37486 
xbmc_12.0~git20121201.192701b-1.debian.tar.gz
 b71648458c7c5e350990ad2da83a39d381f06bed2c3d5efb8ff3f7ae34429a06 21026542 
xbmc_12.0~git20121201.192701b-1_all.deb
 68b011667c3bd3288692298f1a07163a2aeebd415929c9b404303e9e4bf62001 12101194 
xbmc-bin_12.0~git20121201.192701b-1_amd64.deb
 43c313cc7d97015a440db5f0e68d99acfbabc9dab0b9cd4f00667585d4966dab 58036 
xbmc-eventclients-common_12.0~git20121201.192701b-1_all.deb
 cb24572820f01c17e0ae629aeb5710744c73345484a276731fb9b4ba5534c120 43370 
xbmc-eventclients-dev_12.0~git20121201.192701b-1_all.deb
 0108a5de73b7d69730cbb02a7b15e0772bc8ab386e61e10d90bdd967161a5ae0 62002 
xbmc-eventclients-wiiremote_12.0~git20121201.192701b-1_amd64.deb
 dc754d73749941240a8dde8559390149dfb5c1dd46d611e7a0758ec0709cd668 36450 
xbmc-eventclients-j2me_12.0~git20121201.192701b-1_all.deb
 dfbcb6b652ba7f5fe56d33866067cbeb303f4ce31b22e1a428b1bdf869eaea34 36872 
xbmc-eventclients-ps3_12.0~git20121201.192701b-1_all.deb
 11ee58f4729a07e6017f9bd23adf6c4b30b49594383a3bf0f6a64a718cbcd646 35694 
xbmc-eventclients-xbmc-send_12.0~git20121201.192701b-1_all.deb
Files: 
 6c3f8b2e6eabd8bd5deb723bb8434c90 3810 video optional 
xbmc_12.0~git20121201.192701b-1.dsc
 fca89d4b6e2e3fd65bb1357c60f924f2 54985605 video optional 
xbmc_12.0~git20121201.192701b.orig.tar.gz
 cecf5b662bdbe7064866fd00b19461b3 37486 video optional 
xbmc_12.0~git20121201.192701b-1.debian.tar.gz
 43967b47f06d46fd9e78fc42bdb4c68a 21026542 video optional 
xbmc_12.0~git20121201.192701b-1_all.deb
 83c6f70af39c402cfa768f42ac84f382 12101194 video optional 
xbmc-bin_12.0~git20121201.192701b-1_amd64.deb
 f1cc30a78cd1b234b7634beb2bf15ca4 58036 video optional 
xbmc-eventclients-common_12.0~git20121201.192701b-1_all.deb
 b675bdabe91000a3f2b7a50278b621e5 43370 libdevel optional 
xbmc-eventclients-dev_12.0~git20121201.192701b-1_all.deb
 5f0973f47fab9b592c4a7e4cf91ef7d3 62002 video optional 
xbmc-eventclients-wiiremote_12.0~git20121201.192701b-1_amd64.deb
 57964f6a19e033db18365a5389bc9b4a 36450 video optional 
xbmc-eventclients-j2me_12.0~git20121201.192701b-1_all.deb
 89a216162adb5240f0128a78f438423f 36872 video optional 
xbmc-eventclients-ps3_12.0~git20121201.192701b-1_all.deb
 91018db8d7cbacdc4d0f94a8f94b4731 35694 video optional 
xbmc-eventclients-xbmc-send_12.0~git20121201.192701b-1_all.deb

-BEGIN PGP SIGNATURE-

Accepted vdkxdb2 2.4.0-3.4 (source amd64)

2012-12-02 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 30 Nov 2012 23:05:34 -0400
Source: vdkxdb2
Binary: libvdkxdb2-2c2 libvdkxdb2-dev
Architecture: source amd64
Version: 2.4.0-3.4
Distribution: unstable
Urgency: low
Maintainer: Michael Vogt m...@debian.org
Changed-By: David Prévot taf...@debian.org
Description: 
 libvdkxdb2-2c2 - VDK data-aware widgets
 libvdkxdb2-dev - development files for libvdkxdb
Closes: 693982
Changes: 
 vdkxdb2 (2.4.0-3.4) unstable; urgency=low
 .
   * Non-maintainer upload.
   * libvdkxdb2-dev replaces and breaks libvdkxdb2-2c2 ( 2.4.0-3.2) to allow
 smooth upgrades (files moved from libvdkxdb2-2c2 to libvdkxdb2-dev in the
 intrusive 2.4.0-3.2 NMU). Closes: #693982
Checksums-Sha1: 
 8ea2dd351adf139c75d0a919cab296e9a50449d2 1852 vdkxdb2_2.4.0-3.4.dsc
 f801ad060225d25a7363e3fb55ed1232552a706c 3011 vdkxdb2_2.4.0-3.4.debian.tar.gz
 fbc0d051940636c249f322f2bca70b9f434513e8 31904 
libvdkxdb2-2c2_2.4.0-3.4_amd64.deb
 89d3d8877db3a988e28b3d908eca902050e0689f 168362 
libvdkxdb2-dev_2.4.0-3.4_amd64.deb
Checksums-Sha256: 
 50858dc39e548e54679e6424ffdfa93cfd5e15b8ed731dd3374082d19a0cdd9c 1852 
vdkxdb2_2.4.0-3.4.dsc
 0b34eb098e77236fc54bdf7cfcc82b321b983d911e06d1584889a427a5d551e8 3011 
vdkxdb2_2.4.0-3.4.debian.tar.gz
 e2f965a73cb6a9dad790ab3d0df531f91c9457e6079b3d2987183ba524ccb6d4 31904 
libvdkxdb2-2c2_2.4.0-3.4_amd64.deb
 58bff724256886aa3f936ceac254a338867d9456bf339aa944ccd920c0e4f5ad 168362 
libvdkxdb2-dev_2.4.0-3.4_amd64.deb
Files: 
 ab6b0ef40cf3add00f0e196db8ecfe49 1852 libs optional vdkxdb2_2.4.0-3.4.dsc
 794433f0fb38a1a82531b443ab72053f 3011 libs optional 
vdkxdb2_2.4.0-3.4.debian.tar.gz
 788e6d3d1bfc7f2eaea4575c9ee5a338 31904 libs optional 
libvdkxdb2-2c2_2.4.0-3.4_amd64.deb
 ed25403d5add2d2a2feb2d81a81f3b0d 168362 libdevel optional 
libvdkxdb2-dev_2.4.0-3.4_amd64.deb

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

iQIcBAEBCAAGBQJQuXVuAAoJELgqIXr9/gnywE8QALIOL8COAmEMuf5QLB/P/K3H
AVDW8pZ2TYWWnbdSpas+ewDZYRHahfl8OxtLE+O2Sy7NnKh0twCjDafayR5qpR9b
PzDZydPT1ruSpqSq+ITGCd2gn1tQ2RdHqGYhYE1wFcNMJ1sgvdj+BtpLbITgeKRh
VPPCxK6ID0NGWEGLaiuBGULt8n5rR0pps40Wxr/qsxppE81YIkG75HhpbmUi4Y8w
QC98RB7eWiVu14n6lxK2zptpq2TmrapxNbZjkBFODNlW57YfoDEq60u0hQmUPPj9
Tb3pxdv++Nhx1mrkNJTKb8yH8beqb4uhTzCdA074pyPzyXhodlQOPzhcwEFYzULO
BFpMUoa0I9NZL7dwCd5BMT2HNcVD2Y7BIJTQY91F3JBml3omJ0eXjZMew5zznKJc
qvitbNllnQbKOCFKhGgbq089HIHZFoP3Kb4w/K7pffKGNdRlu07S8sHqcBKHOqIT
rXZOud9HlxtEceD95mFKiejMoKAdGC6F60lclD4g86uKQkUGPKy5OmVUwNMdA0Qi
f9az82NIpphrktQPAvPoZnCh56ka696doI+OChha88RcY+NWRIUMQmHNTfztcvo0
5TtKzhhYGip4UJPwzNNZrvZW125pI4vFO+FuIny6dKLk1WsXjXroDKayyjzyuh9Q
ziBMU4zHMvM+lfPsuurQ
=P9ui
-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/e1tfmli-0001ns...@franck.debian.org



Accepted redmine 1.4.4+dfsg1-1.1 (source all)

2012-12-02 Thread Dominik George
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 29 Nov 2012 14:18:29 +0200
Source: redmine
Binary: redmine redmine-mysql redmine-pgsql redmine-sqlite
Architecture: source all
Version: 1.4.4+dfsg1-1.1
Distribution: unstable
Urgency: medium
Maintainer: Jérémy Lal kapo...@melix.org
Changed-By: Dominik George n...@naturalnet.de
Description: 
 redmine- flexible project management web application
 redmine-mysql - metapackage providing MySQL dependencies for Redmine
 redmine-pgsql - metapackage providing PostgreSQL dependencies for Redmine
 redmine-sqlite - metapackage providing sqlite dependencies for Redmine
Closes: 687449 693994
Changes: 
 redmine (1.4.4+dfsg1-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * debian/control: add dependency on rubygems or recent enough ruby
 (Closes: #693994) [Axel Beckert].
   * debian/postinst: replace exit status -1 with 2 for shell compatibility
 (e.g. ksh) (Closes: #687449).
Checksums-Sha1: 
 27960274f003480815c0f48b09bdb0f4ce8379fe 2901 redmine_1.4.4+dfsg1-1.1.dsc
 bbe53d1cdbdc1a2a9da57f863e1f59acc1653a1a 37147 
redmine_1.4.4+dfsg1-1.1.debian.tar.gz
 834ca0eccc691549f56b365e7a9d8635b16bb712 5037224 
redmine_1.4.4+dfsg1-1.1_all.deb
 95025b23244edd770934d39a1b4454433dc7fadd 52864 
redmine-mysql_1.4.4+dfsg1-1.1_all.deb
 6f9f2dd0911c19663a534a3fb10bf19161a7079d 52854 
redmine-pgsql_1.4.4+dfsg1-1.1_all.deb
 4f0292a9dcef194ec3286b5603f6175ddb816436 52834 
redmine-sqlite_1.4.4+dfsg1-1.1_all.deb
Checksums-Sha256: 
 5e7f552e0b0028f16b1f7d5e2c6554958130934a35c2f971f3703738347850a9 2901 
redmine_1.4.4+dfsg1-1.1.dsc
 7d3b69f21bfc63b60a2bf1f331fd9ce97c2cbd1958c1cc5994be334feb2858f6 37147 
redmine_1.4.4+dfsg1-1.1.debian.tar.gz
 f1523663a2d4e4ee0cf3397381a8f65073a1ec3253b89fcd2a2e934581b8b949 5037224 
redmine_1.4.4+dfsg1-1.1_all.deb
 73140a5d00129e6fe46b54e89ee9b22c7c26f87d906b0690f7d49f9855097058 52864 
redmine-mysql_1.4.4+dfsg1-1.1_all.deb
 0a86e743461d250dd6159770be5d156c4ca5cd3c2abffce7f65656b539adbb61 52854 
redmine-pgsql_1.4.4+dfsg1-1.1_all.deb
 d0af2ab71d67a4ffdfc81f834976377bf74d83e274d59b401d9f7278a889c103 52834 
redmine-sqlite_1.4.4+dfsg1-1.1_all.deb
Files: 
 6ccca2a40375ad24a0a0dfa18c4120c9 2901 web extra redmine_1.4.4+dfsg1-1.1.dsc
 611b6e085326bbaceadc816cf33f97d8 37147 web extra 
redmine_1.4.4+dfsg1-1.1.debian.tar.gz
 3d2ee3a0f4232cd1c91f1b8963d2d618 5037224 web extra 
redmine_1.4.4+dfsg1-1.1_all.deb
 5ec3d4968fd849c55657894096c674d0 52864 web extra 
redmine-mysql_1.4.4+dfsg1-1.1_all.deb
 7b333043de010b94f99e9122164effa2 52854 web extra 
redmine-pgsql_1.4.4+dfsg1-1.1_all.deb
 ce32b2d93c0e125700d2727897a1a4d1 52834 web extra 
redmine-sqlite_1.4.4+dfsg1-1.1_all.deb

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

iQQcBAEBCAAGBQJQtYwJAAoJELjWss0C1vRzCOUf/iWD+S2Rj+OlWWPMNX0NY+vJ
unHltA3M2uflKj6dWhQMJIZknDH5S4MxKzeFu1DkmDuKrr6NEi2q4na8DN+uBLBY
0pRe4BDNch5iIaduo7+Y7xQaGXRxggNpBgD0yAVm5Mcm5KDmaWgXRVGTZKJ75zJK
gkYpkzlY+Tqoo9ayuLT45SoIPryrRvXpTgbfwggiEi6qhvXJdbDS/Hr1Zw5j76hq
cp1tJsipV8Fdp1SFsxq60bMXTuTh4tksMiCiNo7xRrvqYWhpFay3TmSP+gGBu/ut
rUhN6DRN4zlMNVWAbr0pMwO1CABMunFuVtV6AULLuPmWoJAKHA/2nMegiIp515WX
ukMFEb1RfWKytl4Ya7b703bpQ5IjPOn4gJDBFPk3+r1LpLvAZqS81HaVuq8g0mtQ
7nId4E/ikK6uaJXYId8BiKUfY5m6L5LI9zFi9ZrVhpsYKTKxvSCeWrV5kN3p1bDG
HpX3zs2DQqWCUhyYEUmUNX2P/4i11Z7t7vMudwS2uWq3zVD6ekYEwhqq55VoRaOi
ygXkyqMLER6EgsNM/cY/fnpHiQoQClRgpAv9y8o0MrPYHndl2hp8Dm/WB75MRyc9
whPqOoUOg0Ihni+7iNXrMAf078dz+NSY4W9h8kEmU7Xcgi1/7gzVYSE75UrQrwun
mrnvE/FUTTmUWTzRP/i7f++feYmTu/OLtfUMmilftkqbq/oRNuxfzRiNckpVDNDf
iHXELI4I/Oa6eNT9wWRHiLGgeJEDcY4+JeZO1x33jeTap/+jvcMonRC+0qpz8sjd
cms+vtioae/VGz4TfNu+gj95c+fTWQ9HHplcjV/wRw5y1FTF7Tn2rOu4R2cot1q4
t1LKK74a3+g9W3bWvjaZRkbjKQU0JSMKyYH+D555XctgRzwcfti+akFNMEOb721U
BY238lSSyGmUc6XfG2QSXxcet6YeGEfxp/vNh4Gkly2OMr3iUcmgOFD5OEhw1v6S
vmAMtc2JRFN2Hh9TLRHUnWWBZURKy2uTL5JHc185s07MC2jhBTjAeIXFAoBzRDIh
vQSA1vRmHL1qhEJk0aAJDe6dmRWrzvCKH7b4iDYSfs2crCD+mQa3qaLIZNn071mO
R9FQms0wZR+nbBKz/xjsvCScZCcgNVcefg0Po/umv4r1OSSHkM2NKdMIo5rIKeFF
Q1uJtXQR2IO4WFOQSgfEuWfi+Vklk+UuBvng5lAfHlB3dhFF0qwiNL/FNg1bDCGg
D8KhaM0qj3JEUm/pk/r6IN2efaiwuZ1wG+o3crD/EtBSlDYAjEa7IrD2mnsc2ZFr
RQXUGUm/Kkd9tlj1ge2MZ8RDupM5TpBhaCe7ayHk65uAT3sn7XNA/s7eAF6Bd8k=
=Hbo/
-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/e1tfnhs-0005zv...@franck.debian.org



  1   2   >