Re: use of RDRAND in $random_library

2014-06-12 Thread Josh Triplett
Joey Hess wrote:
 Josh Triplett wrote:
  However, just as we encourage projects to reuse libraries rather than
  copying code around, we *should* encourage projects to use standardized
  randomness libraries rather than hardcoding rdrand (or, for that matter,
  hardcoding /dev/urandom).
 
 Performance aside, why is a standardized randomness library (which does
 not currently exist) better than a stanardized kernel interface?

At least two reasons: because a random number source that doesn't
require kernel privileges should not need to take the performance hit of
going through the kernel, and because many userspace applications will
not want to follow the kernel's rejection of hardware random number
generation.

Also, while no widely used library exists, at least one library does
exist: libcryptorandom.  Given the straightforward nature of the
algorithm (if hardware random numbers available, use them, otherwise
read from /dev/{,u}random as appropriate), I'd bet other such
implementations exist.  To encourage code reuse and ease of systemwide
changes, I think it makes sense to package such libraries and have
userspace applications use them rather than hardcoding support for any
particular hardware random number source.

- Josh Triplett


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140612062538.GA27235@thin



Re: use of RDRAND in $random_library

2014-06-12 Thread Matthias Urlichs
Hi,

Steve Langasek:
 Debian should do the right thing, regardless of what upstreams may believe.
 
I don't trust the hardware random generator. At all. Given what's been
revealed about the NSA so far, being extra paranoid about anything we
cannot verify to be secure is the right thing to do.

That being said, sometimes you just need the binary equivalent of an
uncompressible Lorem Ipsum text (dd if=/dev/urandom), but IMHO the kernel
could (and should) provide a device for that.

-- 
-- Matthias Urlichs


signature.asc
Description: Digital signature


Re: holes in secure apt

2014-06-12 Thread Thijs Kinkhorst
Hi Chris,

On Thu, June 12, 2014 01:06, Christoph Anton Mitterer wrote:
 reopen 749795
 stop

A better way would be to add more 'found' versions so the BTS version
tracking shows this bug as affecting stable.

 Anyone who believed in getting trusted sources might have been attacked
 with forged packages, and even the plain build of such package might
 have undermined users' security integrity.

 The same is the case with all debian build systems which probably rely
 on secure APT.

It's possible, yes, but you could have noted in that exploitation would
still require someone to be able to successfully position themselves to
perform mitm operations between different Debian machines, which is far
from trivial to say the least.

 It's really saddening to see that such an issue could slip through,
 especially when I've personally started already a few threads on
 debian-devel about the security of secure APT.

We (the security team) will contact the maintainer about a fix for stable.

In the future, I suggest you familiarize yourself with the proper contact
points when you want to raise an issue. The address for security issues is
t...@security.debian.org, not debian-devel. You're always welcome on
#debian-security if you're unsure about how to handle an issue or where
it's best reported.

 From the APT perspective:

If you want to discuss your plans to work on improving APT, you're more
on-topic at de...@lists.debian.org.


Cheers,
Thijs


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/833fcaae9c89ef2eca118dab202772f5.squir...@aphrodite.kinkhorst.nl



Re: use of RDRAND in $random_library

2014-06-12 Thread Thorsten Glaser
On Wed, 11 Jun 2014, Josh Triplett wrote:

 Any program desiring high-performance random numbers has a good reason to use
 RDRAND or RDSEED: they produce randomness *far* faster than the kernel, and

Yes, because SIGILL is so much faster…

Anyway. Even on systems supporting RDRAND, user space SHALL not use it
as sole source of entropy.

http://crypto.stackexchange.com/a/10397/8475 shows why.

If user space needs *a lot* of entropy, it should use arc4random_buf()
from -lbsd (libbsd-dev). However, the default setting uses only a
handful of bytes from /dev/urandom for seeding, because Linux’ urandom
device is inferiour to the random devices on OpenBSD/MirBSD, so you
should seed the aRC4 state with additional random bytes:

/* aRC4 state has about 1700 bits of entropy */
char buf[212];

if ((fd = open(/dev/urandom, O_RDONLY)) == -1)
err(1, open);
if ((size_t)read(fd, buf, sizeof(buf)) != sizeof(buf))
/* or use saturated read loop */
err(1, read);
arc4random_addrandom(buf, sizeof(buf));
explicit_bzero(buf, sizeof(buf));

/* now throw away early keystream */
char anotherbuf[256];
int i;

for (i = 0; i  12; ++i)
arc4random_buf(anotherbuf, sizeof(anotherbuf));
/* actually, make sure the compiler doesn’t optimise away the above */
explicit_bzero(anotherbuf, sizeof(anotherbuf));

After this, you can use arc4random() and arc4random_buf() to your
heart’s content. The library will reseed every 1.6M of output or so.

If you really want rdrand, use a second arc4random_addrandom() call
with a buffer filled by rdrand; they are accumulative. You may pass
buffers between 1 and 256 bytes of length to arc4random_addrandom().
You can do this manually in a loop, too (there is no indication that,
once seeded properly as above, you need to repeat throwing away the
initial keystream, for this purpose and as long as the data added
is sufficiently random and not dependent on arc4random’s output).

bye,
//mirabilos
-- 
“ah that reminds me, thanks for the stellar entertainment that you and certain
other people provide on the Debian mailing lists │ sole reason I subscribed to
them (I'm not using Debian anywhere) is the entertainment factor │ Debian does
not strike me as a place for good humour, much less German admin-style humour”


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/alpine.deb.2.10.1406121014170.17...@tglase.lan.tarent.de



Re: holes in secure apt

2014-06-12 Thread Jakub Wilk

* Thijs Kinkhorst th...@debian.org, 2014-06-12, 08:58:

On Thu, June 12, 2014 01:06, Christoph Anton Mitterer wrote:

reopen 749795
stop


A better way would be to add more 'found' versions so the BTS version 
tracking shows this bug as affecting stable.


Indeed. reopen throws away information about fixed versions, which is 
not helpful here. :\


--
Jakub Wilk


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



Re: holes in secure apt

2014-06-12 Thread Thorsten Glaser
On Thu, 12 Jun 2014, Christoph Anton Mitterer wrote:

 Anyone who believed in getting trusted sources might have been attacked
 with forged packages, and even the plain build of such package might
 have undermined users' security integrity.

Then I believe Debian itself may be undermined.

 The same is the case with all debian build systems which probably rely
 on secure APT.

A buildd (sbuild) or cowbuilder is set up using the normal debootstrap
process with --variant=buildd using the Debian archive keyring of the
host system to validate. (This works.) Then, /etc/apt/sources.list is
written, and APT defaults to secure. The debian-archive-keyring package
is Essential, so this is always installed during the bootstrap. Porters
add debian-ports-archive-keyring (debootstrap can do that).

The buildd-related software (and most people when doing manual builds
with cowbuilder) uses “apt-get source foo” to download the file, fully
assuming that apt-get ensures validation, so no “dscverify” is run on
the sources downloaded by apt. (If someone uses dget, either dget is
new enough to call dscverify, or they had better be doing that by hand.)

The build process inside the chroot of cowbuilder also calls dscverify,
but as debian-keyring (distinct from debian-archive-keyring) is never
installed, it errors out always, which is just ignored. (That being
said, when I was doing porter builds/uploads with cowbuilder and used
dget+dscverify to retrieve the source, even the debian-keyring package
in sid was sometimes not up-to-date enough to have the new keys the
maintainers used to sign their packages in it. Since the proper buildd
infrastructure does not use this but relies on SecureAPT to validate
the files it downloads, this is understandable.)

This means that, if there was ever a chance that 'apt-get source foo'
would not check the integrity of the files it downloaded against
Sources.gz + Release{,.gpg} we’re in pretty deep shit. (Well, there
was, before SecureAPT was enacted, but that’s outside of the scope
of this.)

bye,
//mirabilos
-- 
“ah that reminds me, thanks for the stellar entertainment that you and certain
other people provide on the Debian mailing lists │ sole reason I subscribed to
them (I'm not using Debian anywhere) is the entertainment factor │ Debian does
not strike me as a place for good humour, much less German admin-style humour”


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/alpine.deb.2.10.1406121024050.17...@tglase.lan.tarent.de



HTTPS everywhere! (was: holes in secure apt)

2014-06-12 Thread Jakub Wilk

* Christoph Anton Mitterer cales...@scientia.net, 2014-06-12, 01:06:

- not really secure APT related: apt-listbugs
Not sure whether it uses https for getting bug infos...


$ grep -r /soap.cgi lib/
lib/debian/btssoap.rb:@server=http://#{host}:#{port}/cgi-bin/soap.cgi;

bts(1) and reportbug(1) don't use HTTPS either, AFAICS.

I noticed that http://bugs.debian.org/ started redirecting to the HTTPS 
variant recently. But it's only a temporary redirect. Does it mean we 
can't rely that HTTPS for bugs.d.o will continue to exist in the future?


In general, I'd love to see all the d.o services that are currently 
available over HTTP to move to HTTPS, with permanent redirects and 
STS enabled.



but since Debian nowadays uses certs from GANDI,


I'm not quite happy about this either. I suppose it's a tradeoff between 
security and usability...



which we generally cannot trust,... this is probably moot anyway.


Last time I checked trust and security were not binary. :

--
Jakub Wilk


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140612085609.ga3...@jwilk.net



Bug#751378: ITP: openlibm -- standalone implementation of C mathematical functions

2014-06-12 Thread Sébastien Villemot
Package: wnpp
Severity: wishlist
Owner: Sébastien Villemot sebast...@debian.org

* Package name: openlibm
  Version : 0.3
  Upstream Author : Julia development team
* URL : https://github.com/JuliaLang/openlibm
* License : BSD, MIT, ISC, public domain
  Programming Lang: C, asm
  Description : standalone implementation of C mathematical functions


OpenLibm is an effort to have a high quality, portable, standalone libm
implementation, under a liberal free software license. It can be used
standalone in applications and programming language implementations.

The project was born out of a need to have a good libm for the Julia
programming langage that worked consistently across compilers and operating
systems, and in 32-bit and 64-bit environments.

The OpenLibm code derives from the FreeBSD msun implementation, which in turn
derives from FDLIBM 5.3. As a result, it includes a number of fixes and updates
to FDLIBM that have accumulated over the years in msun, and optimized versions
of many functions.

OpenLibm builds on Linux, and with little effort, should build on FreeBSD as
well. It builds with both, GCC and clang. Although largely tested on x86, it
also includes experimental support for ARM.

OpenLibm was previously embedded within the Julia package. It has now its own
release cycle, hence the separate Debian package (which will be maintained
within the Debian Julia Team).

-- 
 .''`.Sébastien Villemot
: :' :Debian Developer
`. `' http://www.dynare.org/sebastien
  `-  GPG Key: 4096R/381A7594


signature.asc
Description: Digital signature


Bug#751379: ITP: openspecfun -- collection of special mathematical functions

2014-06-12 Thread Sébastien Villemot
Package: wnpp
Severity: wishlist
Owner: Sébastien Villemot sebast...@debian.org

* Package name: openspecfun
  Version : 0.3
  Upstream Author : Julia development team
* URL : https://github.com/JuliaLang/openspecfun
* License : MIT, public domain
  Programming Lang: C, Fortran
  Description : collection of special mathematical functions

Openspecfun provides AMOS and Faddeeva.

AMOS (from Netlib) is a portable package for Bessel Functions of a Complex
Argument and Nonnegative Order; it contains subroutines for computing Bessel
functions and Airy functions.

Faddeeva allows computing the various error functions of arbitrary complex
arguments (Faddeeva function, error function, complementary error function,
scaled complementary error function, imaginary error function, and Dawson
function); given these, one can also easily compute Voigt functions, Fresnel
integrals, and similar related functions as well.

OpenSpecfun was previously embedded within the Julia package. It has now its
own release cycle, hence the separate Debian package (which will be maintained
within the Debian Julia Team).

-- 
 .''`.Sébastien Villemot
: :' :Debian Developer
`. `' http://www.dynare.org/sebastien
  `-  GPG Key: 4096R/381A7594


signature.asc
Description: Digital signature


Re: Bug#751378: ITP: openlibm -- standalone implementation of C mathematical functions

2014-06-12 Thread Thorsten Glaser
Sébastien Villemot wrote:

The OpenLibm code derives from the FreeBSD msun implementation, which in turn
[…]
OpenLibm builds on Linux, and with little effort, should build on FreeBSD as
well. It builds with both, GCC and clang. Although largely tested on x86, it
also includes experimental support for ARM.

Uhm. Use NetBSD’s libm instead, and you’ll have support for roughly
all Debian architectures. And the FreeBSD changes can be piled on top
if/when/where needed.

I do not like an addition of such an unportable package.

bye,
//mirabilos
-- 
Sometimes they [people] care too much: pretty printers [and syntax highligh-
ting, d.A.] mechanically produce pretty output that accentuates irrelevant
detail in the program, which is as sensible as putting all the prepositions
in English text in bold font.   -- Rob Pike in Notes on Programming in C


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/lnc3lm$eb9$1...@ger.gmane.org



Re: Bug#751378: ITP: openlibm -- standalone implementation of C mathematical functions

2014-06-12 Thread Sébastien Villemot
Le jeudi 12 juin 2014 à 11:41 +, Thorsten Glaser a écrit :
 Sébastien Villemot wrote:
 
 The OpenLibm code derives from the FreeBSD msun implementation, which in turn
 […]
 OpenLibm builds on Linux, and with little effort, should build on FreeBSD as
 well. It builds with both, GCC and clang. Although largely tested on x86, it
 also includes experimental support for ARM.
 
 Uhm. Use NetBSD’s libm instead, and you’ll have support for roughly
 all Debian architectures. And the FreeBSD changes can be piled on top
 if/when/where needed.

Thanks for the suggestion. I however doubt that julia upstream is going
to switch to NetBSD's libm since they have invested in their own libm.
Also, NetBSD's libm is not packaged in Debian AFAIK. So the most
practical alternative to openlibm at the Debian level is rather glibc's
libm.

 I do not like an addition of such an unportable package.

Note that julia is currently only available on amd64 and i386. Hopefully
it will soon work on armhf. And julia is currently the only rdep of
openlibm. So introducing openlibm as a separate package will imply no
regression in arch coverage of existing packages.

-- 
 .''`.Sébastien Villemot
: :' :Debian Developer
`. `' http://www.dynare.org/sebastien
  `-  GPG Key: 4096R/381A7594



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


Re: Anyone using autopkgtest-xenlvm? Needs a maintainer or get dropped

2014-06-12 Thread Ian Jackson
Martin Pitt writes (Anyone using autopkgtest-xenlvm? Needs a maintainer or get 
dropped):
 If anyone is still using this, can you please get in contact with
 autopkgtest-de...@lists.alioth.debian.org and tell us the status of
 it? Would you like to continue maintaining/testing it?

For the avoidance of doubt: I'm not using it, and it isn't high up
enough on my priority list for me to actually do anything with it.

 If nobody is interested in this any more, I'd like to drop the
 package. It's been a bit of a maintenance drag as it prevents us from
 doing changes to the testbed protocol (which really could do with some
 major simplifications and bug fixes).

I wouldn't like to see the xenlvm virt provider stand in the way of
that.  It should be fairly simple for someone who actually has an
autopkgtest-xenlevel setup to change it to cope with your protocol
changes.

I think you should go ahead and make your changes to the protocol, and
if autopkgtest-xenlvm hasn't been fixed by just before the freeze, you
should drop the .deb from the build.

Thanks,
Ian.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/21401.39959.80099.554...@chiark.greenend.org.uk



Bug#751397: ITP: drmips -- Educational MIPS simulator - DrMIPS

2014-06-12 Thread Bruno Nova
Package: wnpp
Severity: wishlist
Owner: Bruno Nova brunomb.n...@gmail.com

* Package name: drmips
  Version : 1.2.1
  Upstream Author : Bruno Nova brunomb.n...@gmail.com
* URL : https://bitbucket.org/brunonova/drmips/
* License : GPL
  Programming Lang: Java
  Description : Educational MIPS simulator - DrMIPS

DrMIPS is a graphical simulator of the MIPS processor to support computer
architecture teaching and learning. It is intuitive, versatile and
configurable. The simulator is available not only for personal computers but
also for Android devices, especially tablets.
DrMIPS was created under the Master's dissertation entitled Tool to Support
Computer Architecture Teaching and Learning at FEUP.

I am the author of the program. Above was the general description of the
software.
This simulator is to be used mostly in Computer Architecture classes where the
MIPS architecture is studied.
It simulates some MIPS code and shows, step-by-step: the assembled code, the
registers, the data memory and a graphical representation of the datapath
(unicycle or pipeline).
I intend to package the PC version of the simulator (obviously).

Now, I know this is a very specific program, and useless to most people.
Also, besides the University where it was created, probably almost no one else
uses it (1 or 2 other universities, at maximum).
So, I'm perfectly fine if the package is not accepted. After all, no one
requested this package.
But this would also be the first package I would send to Debian, so it would be
useful for me to learn how to submit packages to Debian and Ubuntu
repositories.
I have a package for Ubuntu in a PPA, though (ppa:brunonova/ppa).


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20140612130233.24844.8737.reportbug@bruno-laptop



Re: use of RDRAND in $random_library

2014-06-12 Thread Jeroen Dekkers
At Thu, 12 Jun 2014 08:36:16 +0200,
Matthias Urlichs wrote:
 That being said, sometimes you just need the binary equivalent of an
 uncompressible Lorem Ipsum text (dd if=/dev/urandom), but IMHO the kernel
 could (and should) provide a device for that.

If you just want to overwrite something with random data, you can use
shred instead of doing a dd from /dev/urandom. Shred uses an internal
PRNG that should be fast enough:

http://www.gnu.org/software/coreutils/manual/coreutils.html#Random-sources


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/87ha3q6zlx.wl%jer...@dekkers.ch



Re: holes in secure apt

2014-06-12 Thread Christoph Anton Mitterer
On Thu, 2014-06-12 at 00:07 -0400, Joey Hess wrote: 
 AAICS, #749795 talked about bringing this to the security team's
 attention, but they never seem to have been CCed.
Thanks for doing that now...


 So the security team may not be aware that a security hole in apt was
 recently fixed, that caused apt-get source to not give any indication
 when the Release file was lacking a signature.
 
 Whether it's closed in unstable or not, this bug is open still in
 stable, and needs to get a CVE assigned, and a DSA issued.
Absolutely 

But I somehow feel a more concentrated approach is needed... Secure APT
seems to be one of the core elements of Debians overall security and
integrity... and as I've mentioned in my previous post,... in many
places it seems unclear how far stuff is really verified or not.
That goes from end-user/admin tools over the whole
upload/build/distribution infrastructure to maintenance platforms
(alioth) and the hosting of the repos of packages (questions like are
all things secured/verified when things like git-buildpackage is used to
maintain packages?).


Cheers,
Chris.


smime.p7s
Description: S/MIME cryptographic signature


Re: holes in secure apt

2014-06-12 Thread Christoph Anton Mitterer
On Thu, 2014-06-12 at 08:58 +0200, Thijs Kinkhorst wrote: 
  Anyone who believed in getting trusted sources might have been attacked
  with forged packages, and even the plain build of such package might
  have undermined users' security integrity.
 
  The same is the case with all debian build systems which probably rely
  on secure APT.
 It's possible, yes, but you could have noted in that exploitation would
 still require someone to be able to successfully position themselves to
 perform mitm operations between different Debian machines, which is far
 from trivial to say the least.
Well I don't think it's that difficult either, is it?
It could be my local sysadmin here at the institute (not that he'd do
such things)... it could be any network provider,... and of course any
of NSA and their friends.

Of course if the later guys really want to break in they'll probably
find some way ... but we don't have to open the gates and make it
trivial for them.


 We (the security team) will contact the maintainer about a fix for stable.
 
 In the future, I suggest you familiarize yourself with the proper contact
 points when you want to raise an issue. The address for security issues is
 t...@security.debian.org, not debian-devel. You're always welcome on
 #debian-security if you're unsure about how to handle an issue or where
 it's best reported.
Well this wasn't about the report that it's still open in stable
(actually I only noticed that when Joey mentioned it)... even the
requests for some proper communication to the users (via CVE and DSA)
are just a side point...

My main concern is how we can tighten security here and I think that
discussion belongs to debian-devel.
It's not that one person alone could go through all the relevant
packages and fix them... I think before anything like that makes sense,
some sane policy would be needed first, on how packages must behave,
like:
- are tools allowed to do things unsecured unless the user explicitly
gives some very special flag (think of the example that (IIRC)
debootstrap doesn't do any verifications, when debian-archive-keyring is
not installed - IMHO behaviour like that should be banned)
- exit status behaviour (like tools giving 0, although some files like
Release* were ignored)
- etc. pp. (basically the things I've mentioned before)


 If you want to discuss your plans to work on improving APT, you're more
 on-topic at de...@lists.debian.org.
Well I knew of the APT list,... but as said... I think this goes beyond
just APT (even though APT is probably at the core)... or at least I
wouldn't consider things like [c]debootstrap, apt-list*, pbuilder, etc.
to be APT.


Cheers,
Chris.


smime.p7s
Description: S/MIME cryptographic signature


Re: holes in secure apt

2014-06-12 Thread David Kalnischkies
On Thu, Jun 12, 2014 at 01:06:28AM +0200, Christoph Anton Mitterer wrote:
 In my opinion this is really some horrible bug... probably it could have
 been very easily found by others, and we have no idea whether it was
 exploited already or not.

Probably yes. Someone in the last ~11 years could have, but that nobody
did tells you a lot about how many people actively work on what so many
people seem to assume just has to work and complain loudly if it
doesn't in the way it always was (assumed to be)… so, to get anything
useful out of this: Should we do a kickstarter now or wait for
a libreapt fork?


 Anyone who believed in getting trusted sources might have been attacked
 with forged packages, and even the plain build of such package might
 have undermined users' security integrity.

Worst case. In practice you will have installed build-dependencies
before which has resulted in a error for those, which should have been
enough for you to recognise that something fishy goes on. It is at least
what all automatic builders will run into. Assuming of course you don't
ignore such errors which many users/scripts happily do…


Also, keep in mind that the chain is broken at the Release - Sources
level, not at the Sources - tarball level, so if you ship modified
tarballs to your target you have to also ship a modified Sources file.

For your attack to be (always) successful, you need a full-sources
mirror on which you modify all tarballs, so that you can build a valid
Sources file. You can't just build your attack tarball on demand as the
hash (and filesize) isn't going to match with what Sources declares.
(assuming you aren't good at pre-imaging, but then, why do you bother
with this one here?) Combine that with the problems of being a good MITM
in general and you might understand why my heart isn't bleeding that
much about this particular bug. We had worse and nobody really cared…


 It's really saddening to see that such an issue could slip through,
 especially when I've personally started already a few threads on
 debian-devel about the security of secure APT.
 The most recent one was IIRC:
 https://lists.debian.org/debian-devel/2012/03/msg00549.html
 but I've had one before, I think.

What is really sad is that many people keep talking about how much more
secure everything should be but don't do the smallest bit of work
to make it happen or even do a basic level of research themselves.

So instead of answering all your questions, I will instead leave them
unanswered and say: Go on and check for yourself! You shouldn't trust
a random guy like me anyway and if that leads to even one person
contributing to apt (or the security team or anything else really) in
this area, we have a phenomenal massive increase in manpower …
(for apt in the 50% ballpark!)


 - I think per default APT should refuse to work with unsigned
 repos/packages. One should really need some configuration switch or
 option that allows this.

I will comment this one though: Michael wanted to look into this for
a while now. The plan I was suggesting was something like jessie:
support-unauth=true by default, jessie+1: support-unauth=false by
default, jessie+2: gone. We will see if this can be implemented at all.
Contributions welcome as always.


 I don't think it's a big issue, since all the major repos are signed and
 even the end-user tools to make own repos (like debarchiver) support
 signing.

Think again. People do it all the time. It is the default mode of
operation for plugging in repos into builders for example. If you are
bored, just search for the usage of --allow-unauthenticated.


I half-jokingly mentioned with the plan last time that a bunker is
nearby, so I would be safe; half-jokingly as at least I got murder
threats for far less. I doubt it will be any different with this not
big issue. So be careful with what you assume to be simple and
uncontroversial. See also xkcd#1172.


Some usecases can be transitioned to [trusted=yes] probably, but I am
not sure we really gain that much this way (as it makes things actually
worse from a security standpoint) so we really shouldn't press the
security: don't care crowd in this direction. Hence the slow ride-plan.


 People should simply be taught to not use unsigned repos...

Yeah. I will try my luck with world peace first though. Might be easier…
But I am a naive kid. 5 years ago I wondered why a small bug – which
even I could provide a patch for – wasn't fixed. Now I wonder how the
team manages to keep up with reading bugs at all; but its the same for
many other Debian: native packages. aka: It took me a while to
understand what no upstream really means …


Best regards

David Kalnischkies

P.S.: Dropping security@, bug@ and everyone else in Reply-To as this
chit-chat thread is just noise for them. Please don't pick up cc's at
random … If you want to /work/ on anything you could move to deity@ as
already suggested. Otherwise lets just talk here… (and no, you don't
have to cc me either)



Bug#749795: Info received (holes in secure apt)

2014-06-12 Thread Debian Bug Tracking System
Thank you for the additional information you have supplied regarding
this Bug report.

This is an automatically generated reply to let you know your message
has been received.

Your message is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.

Your message has been sent to the package maintainer(s):
 APT Development Team de...@lists.debian.org

If you wish to submit further information on this problem, please
send it to 749...@bugs.debian.org.

Please do not send mail to ow...@bugs.debian.org unless you wish
to report a problem with the Bug-tracking system.

-- 
749795: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=749795
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.749795.b749795.140258676429035.acki...@bugs.debian.org



Re: holes in secure apt

2014-06-12 Thread Christoph Anton Mitterer
On Thu, 2014-06-12 at 16:54 +0200, Christoph Anton Mitterer wrote: 
 On Thu, 2014-06-12 at 08:58 +0200, Thijs Kinkhorst wrote: 
  If you want to discuss your plans to work on improving APT, you're more
  on-topic at de...@lists.debian.org.
 I think this goes beyond
 just APT (even though APT is probably at the core)...

One further thing I've forgot (I've had brought this up here before, but
I think the situation is still not satisfying - so sorry for repeating
myself):

We have a number of packages which circumvent the package management
system by downloading normal files (think of HTML files as downloaded
by the susv[2,3,4] packages) or even code (like torbrowser-launcher).


1) Some used to do these downloads completely unverified and installed
such files
Situation has improved here now,... but the problem is that we might
have missed packages which do such things.

- I'm not sure whether there actually are or not, but there should be
clear policies which regulate such behaviour, mandating that
verifications must be done...
- it should be somehow unified how those verifications are done... I
mean it can't be that some packages use MD5 for that job... it's broken,
there's no reason to use it. Full stop.


2) Then we have packages like torbrowser-launcher, which, AFAICS, uses
the gpg keys of the upstream authors for verifying anthing that was
downloaded.
I haven't checked the code in detail, whether this is done correctly,..
but I'd after a first glance I'd see already two problems:

- downgrading attacks:
upstream doesn't use expiring signatures on their files... so an
attacker might MitM, with an old copy of some vulnerable torbrowser
+sigs... torbrowser-launcher probably happily accepts this, since there
is a valid signature signed by one of the keys.

- the owners of those GPG keys are more or less empowered to circumvent
the FTP masters and the security team... anything they sign, and place
on there servers, would be accepted by such package... if they were the
attackers, they could even do this on a per user basis, so you have
basically no chance of ever noting it.


I guess the same issues apply e.g. to flashplugin-nonfree.


3) For packages like torbrowser-launcher or flashplugin-nonfree it's
more or less clear that some downloaded (at least when you read the
package description)... there are other packages where similar things
may happen and this is not directly visible... like gnome-shell which
gives the gnome-shell-browser-plugin (which is automatically
enabled),... which I think is very unfortunate.



With all that we must remember that Debian promises security to its
users,... but as you can see, there are ways to easily attack that
security  or at least to circumvent the security team and security
updates infrastructure of the package management system (i.e.
aptitude/apt won't ever notice you, when a new flash player came out)



I think there should be some clear policy on how packages are allowed to
pull in external code/files and install them to the system:

- How packages are technically allowed to pull in external code, I think
verifications should be mandatory and IMHO that verification should be
via hardcoded hash sum (i.e. NOT via some gpg key from upstream),... if
a new upstream version comes out, a new package should be released with
new hash sums and new download path.
That way we protect against downgrading attacks, don't give control to
non-debian developers and make sure that all people get the same code
(which will make it much easier to find about intentional attacks in
that code).

After all, software should come in via the package management system and
task shouldn't be delegated to downloader-packages or plugin-systems
like from Mozilla or GNOME.


- There could be standardised package header flags like,...
  - installs-external-code: having that info just perhaps in the
description is IMHO not enough

  - not-security-supported: debian-security-support is nice,... but
it's rather just description,... and not a easy way to find e.g. all
packages on some system which are not security-supported.

Ideally, package management systems should allow people to
allow/disallow with such flags.


- one should generally not allow to trust on https/x509 for downloading
external code/files, since - like with OpenPGP - too much power is given
to people not from Debian (actually much more than with OpenPGP, since
anyone in the certificate chain will have full power)...


- If verification via OpenPGP/X509 would stay (and as said, security
wise this would be a bad idea)... then there should be some documents
explaining how maintainers should do the download... i.e. it's stupid to
just wget https://bar or to gpg --verify foo ... since the default
locations for certs and keys may very well contain CAs/keys you don't
wanna trust for software.



Cheers,
Chris.


smime.p7s
Description: S/MIME cryptographic signature


Re: holes in secure apt

2014-06-12 Thread Christoph Anton Mitterer
On Thu, 2014-06-12 at 10:30 +0200, Thorsten Glaser wrote: 
 On Thu, 12 Jun 2014, Christoph Anton Mitterer wrote:
  Anyone who believed in getting trusted sources might have been attacked
  with forged packages, and even the plain build of such package might
  have undermined users' security integrity.
 Then I believe Debian itself may be undermined.
Well I've expressed that concern before ;-)


 A buildd (sbuild) or cowbuilder is set up using the normal debootstrap
 process with --variant=buildd using the Debian archive keyring of the
 host system to validate. (This works.) Then, /etc/apt/sources.list is
 written, and APT defaults to secure. The debian-archive-keyring package
 is Essential
I don't think that debian-archive-keyring is Essential... at least not
here ;-) but apt depends on it... so usually it should be in place...


 The buildd-related software (and most people when doing manual builds
 with cowbuilder) uses “apt-get source foo” to download the file, fully
 assuming that apt-get ensures validation, so no “dscverify” is run on
 the sources downloaded by apt. (If someone uses dget, either dget is
 new enough to call dscverify, or they had better be doing that by hand.)
Which is why we're possibly screwed already... even if the builds don't
run as root... it seems like a rather easy way to get into the build
hosts... and/or have forged source packages build and distributed.

Just that NSA hasn't twittered yet that they didn't doesn't mean this is
the case...
So... @security-team: is there anything that is going to be done with
respect to Debian's infrastructure? Or do we simply assume that noone
tried that attack vector before?


 This means that, if there was ever a chance that 'apt-get source foo'
 would not check the integrity of the files it downloaded against
 Sources.gz + Release{,.gpg} we’re in pretty deep shit. (Well, there
 was, before SecureAPT was enacted, but that’s outside of the scope
 of this.)
sure... 

Cheers,
Chris.


smime.p7s
Description: S/MIME cryptographic signature


Re: use of RDRAND in $random_library

2014-06-12 Thread Russ Allbery
Josh Triplett j...@joshtriplett.org writes:

 At least two reasons: because a random number source that doesn't
 require kernel privileges should not need to take the performance hit of
 going through the kernel,

I'm very dubious that this performance hit is substantial enough that it
should have an influence on our decision.  If we really care about good
random numbers, we're probably in an application where, given a
performance versus security tradeoff, we should always choose security
without a second thought.  The small number of applications for which
random numbers are in the performance-critical path are generally crypto
applications where security is paramount.

So the remaining question is if the Linux /dev/random is more secure than
using the hardware random number generator.

 and because many userspace applications will not want to follow the
 kernel's rejection of hardware random number generation.

I've never seen a convincing argument that the kernel /dev/random is
likely to be *less* secure than the hardware random number generator.
It's either more secure or the same level of security.  Given that, it's a
risk analysis, and the fact that we have absolutely no idea what the
hardware random number generator is doing, it would be quite possible to
insert a mathematical back door into it, and there's no way to audit it, I
understand why people want to put a software randomization layer that we
*can* audit in front of it.

-- 
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: https://lists.debian.org/878up2jb9y@windlord.stanford.edu



Re: HTTPS everywhere! (was: holes in secure apt)

2014-06-12 Thread Christoph Anton Mitterer
On Thu, 2014-06-12 at 10:56 +0200, Jakub Wilk wrote: 
 $ grep -r /soap.cgi lib/
 lib/debian/btssoap.rb:
 @server=http://#{host}:#{port}/cgi-bin/soap.cgi;
:-( 

 bts(1) and reportbug(1) don't use HTTPS either, AFAICS.
:-(

 I noticed that http://bugs.debian.org/ started redirecting to the HTTPS 
 variant recently. But it's only a temporary redirect.
Redirects generally don't protect you...

 In general, I'd love to see all the d.o services that are currently 
 available over HTTP to move to HTTPS, with permanent redirects and 
 STS enabled.
Yep :)


 but since Debian nowadays uses certs from GANDI,
 
 I'm not quite happy about this either. I suppose it's a tradeoff between 
 security and usability...
Well... IMHO it's a bad trade of... Debian has had it's own CA... and
all users that got their Debian via some trusted path could have really
secure SSL/TLS with Debian...

Now we have GANDI, which makes Debian's certs 4th level certs... anyone
in the hierarchy above can forge any Debian certs... (not to talk about
the problem, that all clients usually trust gazillions of CAs and not
just the one we need)...

Debian should rather have continued with their own CA and place that
even in some country which doesn't have something like national security
letters and gag orders.

Supplying the Debian Root CA to people not using Debian could have been
easily done by a *single* site that uses a cert available in all
browsers... which offers the Debian Root CA for secure and trusted
download.


 Last time I checked trust and security were not binary. :
Well actually security *is* black and white... an attacker won't just
attack you a little bit if he sees a security hole...


Cheers,
Chris.


smime.p7s
Description: S/MIME cryptographic signature


improving downloader packages (was: Re: holes in secure apt)

2014-06-12 Thread Thijs Kinkhorst
Hi Chris,

You raise a lot of broad concerns under the header holes in secure apt which 
I'm afraid does not much to get us closer to a more secure Debian. Not many 
people will object that making Debian even more secure is a bad idea; it just 
needs concrete action, not a large list of potential areas to work on.

I suggest that you focus on one of those aspects of your email and take some 
concrete action to get it addressed. For example this part:

Op donderdag 12 juni 2014 17:36:23 schreef Christoph Anton Mitterer:
 We have a number of packages which circumvent the package management
 system by downloading normal files (think of HTML files as downloaded
 by the susv[2,3,4] packages) or even code (like torbrowser-launcher).

 I think there should be some clear policy on how packages are allowed to
 pull in external code/files and install them to the system:
 
 - How packages are technically allowed to pull in external code, I think
 verifications should be mandatory and IMHO that verification should be

I think a better way than to create such a policy would be to create a simple 
framework that does in-package downloading right and that downloader 
packages can depend on and call from their scripts (a bit like dbconfig-
common). An existing technical solution will probably be more quickly adopted 
by the various packages than a set of requirements, and improvements need to 
be made in only one place.

If you create something like that I'd gladly use it in the downloader package 
I maintain (msttcorefonts - which does check hashes of downloaded stuff, btw) 
and I'm willing to spend time with you on the integration and to see what may 
be required or missing for my package to use it. If we show that it works for 
this package, others will surely follow. You just need to take the first step.


Cheers,
Thijs


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


Re: use of RDRAND in $random_library

2014-06-12 Thread Theodore Ts'o
On Thu, Jun 12, 2014 at 10:19:37AM -0700, Russ Allbery wrote:
 I've never seen a convincing argument that the kernel /dev/random is
 likely to be *less* secure than the hardware random number generator.
 It's either more secure or the same level of security.  Given that, it's a
 risk analysis, and the fact that we have absolutely no idea what the
 hardware random number generator is doing, it would be quite possible to
 insert a mathematical back door into it, and there's no way to audit it, I
 understand why people want to put a software randomization layer that we
 *can* audit in front of it.

One thing to worry about is what happens if the software library (if
it is implemented as a shared library) gets modified by a bad guy.
One thing a really paranoid program can do is to mix (via XOR, for
example) the output that it gets from /dev/urandom or this
cryptorandom shared library with RDRAND.

That way, if Unit 61398 tries to hack the cryptrandom shared library,
there's a fail safe (assuming they haven't hacked Intel's internal
systems to introduce a back door --- if anyone has done that it's much
more likely to be the NSA :-) since the PRC presumably wouldn't be
able to hack RDRAND.

The reason why /dev/urandom combines RDRAND with other sources of
entropy is something that is something that userspace programs can do
as well, especially if it's as easy to do as grabbing entropy from
RDRAND if it happens to be available.  Even if /dev/urandom is
bug-free(tm), I can't guarantee that the bad guy hasn't hacked your
kernel --- or worse, hacked whoever is building and uplodaing the
kernel .deb's to the upload queue (or hacked someone on the ftpmaster
team --- remember, the NSA hunts sysadmins :-).

- Ted


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140612180609.ga24...@thunk.org



Re: HTTPS everywhere!

2014-06-12 Thread Tollef Fog Heen
]] Christoph Anton Mitterer 

 Supplying the Debian Root CA to people not using Debian could have been
 easily done by a *single* site that uses a cert available in all
 browsers... which offers the Debian Root CA for secure and trusted
 download.

That's a nice theory.  It does not align particularly well with what
happens in the real world.

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/87tx7q9enp@aexonyam.err.no



Re: holes in secure apt

2014-06-12 Thread Wookey
+++ Christoph Anton Mitterer [2014-06-12 01:06 +0200]:
 - [c]debootstrap
 I think they both default now to verify signatures (which is a good
 thing)... but IIRC, debootstrap also defaults to not verify anything...
 if the keyrings aren't installed - admittedly this is unlikely... but
 possible...

I found that I could not get debootstrap to do verified downloads from
debian-ports with a debian-ports key. Whatever I did with apt-key, keys
and --keyring options, it just said that the key was unavailable and
stopped. Nice and secure, but useless, so I've had to use 
sudo debootstrap --no-check-gpg unstable debian-arm64 
http://ftp.debian-ports.org/debian
in the meantime.

So it does default to signed downloads and SFAIK will always do this
wether or not any keys are installed/available, unless explicitly disabled.

And yes I should report a bug but have failed to do so thus far.

If someone can tell me what I'm doing wrong that would improve the
security of this particular usage :-)

Wookey
-- 
Principal hats:  Linaro, Emdebian, Wookware, Balloonboard, ARM
http://wookware.org/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140612184356.gn10...@stoneboat.aleph1.co.uk



Re: use of RDRAND in $random_library

2014-06-12 Thread Kurt Roeckx
On Thu, Jun 12, 2014 at 10:23:58AM +0200, Thorsten Glaser wrote:
 On Wed, 11 Jun 2014, Josh Triplett wrote:
 
 device is inferiour to the random devices on OpenBSD/MirBSD, so you
 should seed the aRC4 state with additional random bytes:

As far as I know, OpenBSD stopped using (A)RC4 for their random
number generation for good reason, even though the function is
still called that way.  You now seems to suggest to use RC4 again,
which seems like a bad idea to me.


Kurt


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140612191906.ga9...@roeckx.be



Re: holes in secure apt

2014-06-12 Thread Guillem Jover
Hi!

On Thu, 2014-06-12 at 19:43:56 +0100, Wookey wrote:
 +++ Christoph Anton Mitterer [2014-06-12 01:06 +0200]:
  - [c]debootstrap
  I think they both default now to verify signatures (which is a good
  thing)... but IIRC, debootstrap also defaults to not verify anything...
  if the keyrings aren't installed - admittedly this is unlikely... but
  possible...
 
 I found that I could not get debootstrap to do verified downloads from
 debian-ports with a debian-ports key. Whatever I did with apt-key, keys
 and --keyring options, it just said that the key was unavailable and
 stopped. Nice and secure, but useless, so I've had to use 
 sudo debootstrap --no-check-gpg unstable debian-arm64 
 http://ftp.debian-ports.org/debian
 in the meantime.
 
 So it does default to signed downloads and SFAIK will always do this
 wether or not any keys are installed/available, unless explicitly disabled.
 
 And yes I should report a bug but have failed to do so thus far.
 
 If someone can tell me what I'm doing wrong that would improve the
 security of this particular usage :-)

That might actually be a bug/deficiency of mini-dak, but I've not
looked into it for a very long time so I could not say for sure off
the top of my head.

Regards,
Guillem


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140612200634.gb7...@pulsar.hadrons.org



Re: use of RDRAND in $random_library

2014-06-12 Thread Guillem Jover
Hi!

On Thu, 2014-06-12 at 21:19:06 +0200, Kurt Roeckx wrote:
 On Thu, Jun 12, 2014 at 10:23:58AM +0200, Thorsten Glaser wrote:
  On Wed, 11 Jun 2014, Josh Triplett wrote:
  
  device is inferiour to the random devices on OpenBSD/MirBSD, so you
  should seed the aRC4 state with additional random bytes:
 
 As far as I know, OpenBSD stopped using (A)RC4 for their random
 number generation for good reason, even though the function is
 still called that way.  You now seems to suggest to use RC4 again,
 which seems like a bad idea to me.

For the next libbsd upstream release I'm planning on pulling the
implementation from OpenBSD, as I saw mentioned in a previous thread
here on d-d, and afterwards submitted as a bug report.

Thanks,
Guillem


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140612200421.ga7...@pulsar.hadrons.org



Re: use of RDRAND in $random_library

2014-06-12 Thread Thorsten Glaser
Kurt Roeckx dixit:

As far as I know, OpenBSD stopped using (A)RC4 for their random
number generation for good reason, even though the function is

They stopped, but not for good reason. But you can also use the
new unlicenced algorithm they use, if you really feel like it,
it’s not bad either, just lacks a proper licence. Or just use
whatever libbsd ships.

still called that way.  You now seems to suggest to use RC4 again,
which seems like a bad idea to me.

It is not a bad idea. Using RC4 in certain environments (WEP, TLS)
has its downsides, but I analysed each of them in the context of
using it for a stretching RNG, and found out that, with a tweak¹²,
aRC4 is still good there.

① Not included in OpenBSD or libbsd, TTBOMK

② Change arc4random() to drop 1 or 2 bytes randomly, in addition
  to those four it reads. Change arc4random_buf() to drop 1/2/3/4
  bytes randomly for every up to 256 bytes it reads. Increase the
  amount of bytes thrown away after rekeying to 12*256 plus some
  random amount of bytes. Using arc4_getbyte to determine these
  random amounts is correct (and takes care of one byte already).

bye,
//mirabilos
-- 
“ah that reminds me, thanks for the stellar entertainment that you and certain
other people provide on the Debian mailing lists │ sole reason I subscribed to
them (I'm not using Debian anywhere) is the entertainment factor │ Debian does
not strike me as a place for good humour, much less German admin-style humour”


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/pine.bsm.4.64l.1406122048380.5...@herc.mirbsd.org



Re: holes in secure apt

2014-06-12 Thread Neil Williams
On Thu, 12 Jun 2014 19:43:56 +0100
Wookey woo...@wookware.org wrote:

 +++ Christoph Anton Mitterer [2014-06-12 01:06 +0200]:
  - [c]debootstrap
  I think they both default now to verify signatures (which is a good
  thing)... but IIRC, debootstrap also defaults to not verify
  anything... if the keyrings aren't installed - admittedly this is
  unlikely... but possible...
 
 I found that I could not get debootstrap to do verified downloads from
 debian-ports with a debian-ports key. Whatever I did with apt-key,
 keys and --keyring options, it just said that the key was unavailable
 and stopped. Nice and secure, but useless, so I've had to use 
 sudo debootstrap --no-check-gpg unstable debian-arm64
 http://ftp.debian-ports.org/debian in the meantime.
 
 So it does default to signed downloads and SFAIK will always do this
 wether or not any keys are installed/available, unless explicitly
 disabled.
 
 And yes I should report a bug but have failed to do so thus far.
 
 If someone can tell me what I'm doing wrong that would improve the
 security of this particular usage :-)
 

This works for me:

sudo apt install debian-ports-archive-keyring
sudo apt-key add /usr/share/keyrings/debian-ports-archive-keyring.gpg
sudo debootstrap --variant=buildd --foreign --arch=arm64 --keyring 
/usr/share/keyrings/ 
debian-ports-archive-keyring.gpg sid arm64-sid 
http://ftp.de.debian.org/debian-ports

Make sure apt-key list shows something including:

/etc/apt/trusted.gpg.d/debian-ports-archive-2014.gpg

pub   4096R/623DB0B8 2014-01-16 [expires: 2015-01-31]
uid  Debian Ports Archive Automatic Signing Key (2014) 
ftpmas...@debian-ports.org


-- 


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



signature.asc
Description: PGP signature


sofftware outside Debian (Re: holes in secure apt)

2014-06-12 Thread Holger Levsen
Hi Christoph,

On Donnerstag, 12. Juni 2014, Christoph Anton Mitterer wrote:
[many things]

both flashplugin-nonfree and torbrowser-launcher are (or will be) in contrib 
(and thus not be part of Debian) for exactly those reasons you described. And 
both rightfully belong to contrib, even though torbrowser is free software. 
And while I applaud the iceweasel project for its commitment to free software, 
I would also applaud a firefox-launcher or -installer package in contrib - not 
everything is for everybody :) 


cheers,
Holger


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


Bug#751439: ITP: lgeneral-data -- strategy game in the tradition of Panzer General -- data

2014-06-12 Thread Markus Koschany
Package: wnpp
Severity: wishlist
Owner: Markus Koschany a...@gambaru.de

* Package name: lgeneral-data
  Version : 1.0
  Upstream Author : Steve McGuba, Markus Koschany
* URL : https://gitorious.org/lgeneral-data
* License : CC-BY-SA-3.0
  Programming Lang: none
  Description : strategy game in the tradition of Panzer General -- data


LGeneral is a turn-based strategy game heavily inspired by Panzer
General. You play single scenarios or whole campaigns turn by turn
against a human player or the AI.

This package provides single World War I scenarios for LGeneral. You
are able to command the Imperial and Royal Austro-Hungarian (k.u.k.)
army and fight decisive battles of world history again.

I intend to maintain this package as part of the Games Team. It allows
us to move LGeneral, the engine, from contrib to main.


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



Work-needing packages report for Jun 13, 2014

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

Total number of orphaned packages: 585 (new: 2)
Total number of packages offered up for adoption: 140 (new: 3)
Total number of packages requested help for: 59 (new: 0)

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



The following packages have been orphaned:

   postfix-cluebringer (#750853), orphaned 5 days ago
 Description: anti-spam plugin for Postfix
 Reverse Depends: postfix-cluebringer
 Installations reported by Popcon: 185

   sql-ledger (#750856), orphaned 5 days ago
 Installations reported by Popcon: 78

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



The following packages have been given up for adoption:

   b43-fwcutter (#751205), offered yesterday
 Description: utility for extracting Broadcom 43xx firmware
 Reverse Depends: firmware-b43-installer firmware-b43legacy-installer
 Installations reported by Popcon: 3088

   parcellite (#750948), offered 4 days ago
 Description: lightweight GTK+ clipboard manager
 Installations reported by Popcon: 835

   qmmp (#750924), offered 4 days ago
 Description: feature-rich audio player with support of many formats
 Reverse Depends: libqmmp-dev libqmmp-misc libqmmpui-dev libqmmpui0
   qmmp qmmp-plugin-projectm
 Installations reported by Popcon: 751

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



For the following packages help is requested:

   apt-xapian-index (#567955), requested 1592 days ago
 Description: maintenance tools for a Xapian index of Debian packages
 Reverse Depends: ept-cache fuss-launcher goplay packagesearch
 Installations reported by Popcon: 77879

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

   balsa (#642906), requested 991 days ago
 Description: An e-mail client for GNOME
 Reverse Depends: balsa-dbg
 Installations reported by Popcon: 800

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

   chromium-browser (#583826), requested 1474 days ago
 Description: Chromium browser
 Reverse Depends: chromedriver chromium chromium-dbg chromium-l10n
   mozplugger
 Installations reported by Popcon: 25016

   csv2latex (#746158), requested 46 days ago
 Description: a CSV to LaTeX file converter
 Installations reported by Popcon: 153

   cups (#532097), requested 1832 days ago
 Description: Common UNIX Printing System
 Reverse Depends: bluez-cups chromium cups cups-backend-bjnp
   cups-browsed cups-bsd cups-client cups-core-drivers cups-daemon
   cups-dbg (63 more omitted)
 Installations reported by Popcon: 138504

   debtags (#567954), requested 1592 days ago
 Description: Enables support for package tags
 Reverse Depends: goplay packagesearch
 Installations reported by Popcon: 2415

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

   freeipmi (#628062), requested 1113 days ago
 Description: GNU implementation of the IPMI protocol
 Reverse Depends: freeipmi freeipmi-bmc-watchdog freeipmi-ipmidetect
   freeipmi-tools libfreeipmi-dev libfreeipmi12 libipmiconsole-dev
   libipmiconsole2 libipmidetect-dev libipmidetect0 (3 more omitted)
 Installations reported by Popcon: 5046

   gnat-gps (#496905), requested 2114 days ago
 Description: co-maintainer needed
 Reverse Depends: gnat-gps gnat-gps-dbg
 Installations reported by Popcon: 543

   gnokii (#677750), requested 726 days ago
 Description: Datasuite for mobile phone management
 Reverse Depends: gnokii gnokii-cli gnokii-smsd gnokii-smsd-mysql
   gnokii-smsd-pgsql gnome-phone-manager libgnokii-dev libgnokii6
   xgnokii
 Installations reported by Popcon: 1710

   gnupg (#660685), requested 843 days ago
 Description: GNU privacy guard - a free PGP replacement
 Reverse Depends: 0install-core apt arriero bootstrap-base
   cdebootstrap cdebootstrap-static cdebootstrap-udeb
   clamav-unofficial-sigs cloud-utils debian-archive-keyring (56 more
   omitted)
 Installations reported by Popcon: 168420

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

   gradle 

Re: Re: use of RDRAND in $random_library

2014-06-12 Thread Josh Triplett
Theodore Ts'o wrote:
 On Thu, Jun 12, 2014 at 10:19:37AM -0700, Russ Allbery wrote:
  I've never seen a convincing argument that the kernel /dev/random is
  likely to be *less* secure than the hardware random number generator.
  It's either more secure or the same level of security.  Given that, it's a
  risk analysis, and the fact that we have absolutely no idea what the
  hardware random number generator is doing, it would be quite possible to
  insert a mathematical back door into it, and there's no way to audit it, I
  understand why people want to put a software randomization layer that we
  *can* audit in front of it.
 
 One thing to worry about is what happens if the software library (if
 it is implemented as a shared library) gets modified by a bad guy.
 One thing a really paranoid program can do is to mix (via XOR, for
 example) the output that it gets from /dev/urandom or this
 cryptorandom shared library with RDRAND.

If you don't trust a hardware random number generator, you should not
xor it and another random number source together; after all, if you
believe the numbers coming out of the hardware random source are not
actually random, you might just as easily believe that they're the
precise non-random values needed to xor with another CPU register to
produce non-random values.  And assuming you *don't* believe that, then
there's little point in mixing a fast random source you trust with a
slow random source you trust.

(Also, if you don't trust a hardware random number generator, you should
ask yourself why you trust any other instruction on your CPU.  If you
don't trust the hardware you run on, you're doomed anyway; it's a good
idea to reduce your attack surface, but your attack surface *always*
includes your hardware.  But I'd prefer to sidestep that entire
argument, and instead suggest that it's (more) ridiculous to have this
argument in Debian rather than elsewhere.)

 That way, if Unit 61398 tries to hack the cryptrandom shared library,

If you can intercept calls to an arbitrary shared library, what stops
you from intercepting calls to open and read, feeding back non-random
data for reads of /dev/random and /dev/urandom?

- Josh Triplett


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140613015610.GA7986@thin



Re: use of RDRAND in $random_library

2014-06-12 Thread Russ Allbery
Josh Triplett j...@joshtriplett.org writes:

 If you don't trust a hardware random number generator, you should not
 xor it and another random number source together; after all, if you
 believe the numbers coming out of the hardware random source are not
 actually random, you might just as easily believe that they're the
 precise non-random values needed to xor with another CPU register to
 produce non-random values.

I would certainly hope that the mixing algorithm of any decent random
number source is better than just xor.  And given that, I don't believe
the mathematics supports your assertion here.  It's considerably harder to
backdoor a random number generator to cause a higher-level mixing random
number generator that combines multiple sources of entropy to produce
predictable random numbers than it is to cause it to spit out predictable
random numbers directly.

 (Also, if you don't trust a hardware random number generator, you should
 ask yourself why you trust any other instruction on your CPU.

Because it's way easier to hide a backdoor in a random number generator
than it is in other parts of the CPU instruction set.  A random number
generator does one specific thing, which is unpredictable by the calling
code by *definition*, and which has known ways to backdoor via mechanisms
that provide the attacker with a trap-door attack.  This is far more
difficult to do for instructions that are hidden behind layers of unknown
future code.

Yes, you can add backdoor paths that trigger on certain data patterns, but
you have to then engineer ways of introducing those data patterns and the
backdoor behavior has to be useful.  It's a far trickier problem.  By
comparison, backdooring the random number generator with a trap-door
function gets you a general crypto break of crypto done with that random
number generator pretty much directly.

 If you don't trust the hardware you run on, you're doomed anyway;

This is far too simple of a statement to be accurate.  It depends on the
type of hardware attack.  At best, this statement is true of a targetted,
specific attack against one piece of hardware (*your* laptop in
particular), which is not what we're talking about here.  We're talking
about the possibility of embedding a generic backdoor in
widely-distributed commodity hardware.

The specific attack that people are concerned about here is a long-lived,
wide-spread backdoor in a consumer product, which requires very careful
design to not be detected.  This is far more likely for random number
generators because (a) we already know exactly how to backdoor a random
number generator in this fashion to allow an attacker with secret
knowledge to reproduce the number stream while still passing statistical
randomness checks, and (b) the use case for random number generators is
very narrow and this sort of backdoor won't be revealed as a bug by other
normal use.

-- 
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: https://lists.debian.org/871tuty313@windlord.stanford.edu



Re: use of RDRAND in $random_library

2014-06-12 Thread Gunnar Wolf
Russ Allbery dijo [Thu, Jun 12, 2014 at 07:08:40PM -0700]:
  If you don't trust a hardware random number generator, you should not
  xor it and another random number source together; after all, if you
  believe the numbers coming out of the hardware random source are not
  actually random, you might just as easily believe that they're the
  precise non-random values needed to xor with another CPU register to
  produce non-random values.
 
 I would certainly hope that the mixing algorithm of any decent random
 number source is better than just xor.  And given that, I don't believe
 the mathematics supports your assertion here.  It's considerably harder to
 backdoor a random number generator to cause a higher-level mixing random
 number generator that combines multiple sources of entropy to produce
 predictable random numbers than it is to cause it to spit out predictable
 random numbers directly.

Excuse me if I'm blunt here, but I understand that, on the point of
using entropy to seed a PRNG, if you have several shitty entropy
sources and one _really_ good one, and you xor them all together, the
resulting output is as random as the best of them. If your hardware
entropy source is faulted and produces just an endless stream of
'001001001001001001', xoring it with a valid Golomb sequence will give
you something even more random than a Golomb sequence.

Or am I misunderstanding my crypto?


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140613042708.ga17...@gwolf.org



Re: use of RDRAND in $random_library

2014-06-12 Thread Russ Allbery
Gunnar Wolf gw...@gwolf.org writes:
 Russ Allbery dijo [Thu, Jun 12, 2014 at 07:08:40PM -0700]:

 I would certainly hope that the mixing algorithm of any decent random
 number source is better than just xor.  And given that, I don't believe
 the mathematics supports your assertion here.  It's considerably harder
 to backdoor a random number generator to cause a higher-level mixing
 random number generator that combines multiple sources of entropy to
 produce predictable random numbers than it is to cause it to spit out
 predictable random numbers directly.

 Excuse me if I'm blunt here, but I understand that, on the point of
 using entropy to seed a PRNG, if you have several shitty entropy sources
 and one _really_ good one, and you xor them all together, the resulting
 output is as random as the best of them. If your hardware entropy source
 is faulted and produces just an endless stream of '001001001001001001',
 xoring it with a valid Golomb sequence will give you something even more
 random than a Golomb sequence.

 Or am I misunderstanding my crypto?

I don't think you are, but xor has a bunch of unintuitive properties
where, if you know or can predict even portions or mathematical properties
of one of the byte streams involved in the xor, you can do lots of
interesting things with the results.  I was assuming that Josh was
thinking of something along those lines.

It's possible that xor with other entropy sources is good enough and xor
defeats a backdoored random number source, but I don't know the math well
enough to hazard an opinion.  I do know that the cryptographically secure
random number generators whose algorithms I've read about use stronger
one-way functions instead of xor: stream ciphers, block ciphers, or
cryptographic hash functions.  At least based on my understanding of the
theory, I think that mixing a backdoored entropy source with other entropy
sources in a random number generator like Fortuna (which is based on the
AES block cipher in counter mode) would make it quite difficult for an
attacker with knowledge of the back door to exploit that knowledge.

I don't know enough about the exact algorithm behind /dev/random to be
sure that the same is true for it, but I would hope that it is.  (Although
Wikipedia says that it's hash-based, which would probably make it quite a
bit slower than Fortuna since hashes are slower than block ciphers.)

-- 
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: https://lists.debian.org/87bntxwhh5@windlord.stanford.edu



Re: use of RDRAND in $random_library

2014-06-12 Thread Russ Allbery
Ugh, sorry to follow up to myself, but I got a key part of this wrong.

Russ Allbery r...@debian.org writes:

 At least based on my understanding of the theory, I think that mixing a
 backdoored entropy source with other entropy sources in a random number
 generator like Fortuna (which is based on the AES block cipher in
 counter mode) would make it quite difficult for an attacker with
 knowledge of the back door to exploit that knowledge.

Fortuna does indeed use AES in counter mode to generate the random number
stream, but it uses SHA-256 to mix in entropy.  This is the primary
defense against a backdoored entropy source (like the hardware random
number generator, if one is concerned that it has a back door): mixing it
with other entropy sources using a one-way hash like SHA-256 should mean
that any one entropy source cannot *decrease* the total entropy of the
system when added to other entropy sources, assuming SHA-256 functions
correctly as a cryptographic hash.

 I don't know enough about the exact algorithm behind /dev/random to be
 sure that the same is true for it, but I would hope that it is.
 (Although Wikipedia says that it's hash-based, which would probably make
 it quite a bit slower than Fortuna since hashes are slower than block
 ciphers.)

Fortuna is also hash-based in that sense (it uses a hash to mix in
entropy), so I should say that I don't know any of the details of the
difference between it and /dev/random.

-- 
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: https://lists.debian.org/877g4lwh5m@windlord.stanford.edu



Accepted autopkgtest 2.18 (source all)

2014-06-12 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 07:48:58 +0200
Source: autopkgtest
Binary: autopkgtest
Architecture: source all
Version: 2.18
Distribution: unstable
Urgency: medium
Maintainer: Autopkgtest team autopkgtest-de...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description:
 autopkgtest - automatic as-installed testing for Debian packages
Closes: 508660 680122 750544
Changes:
 autopkgtest (2.18) unstable; urgency=medium
 .
   Improvements:
   * adt-run: When running from git, show the current SHA and commit summary of
 HEAD.
 .
   Bug fixes:
   * tests: Fix race in cleaning up ChrootRunner mounts.
   * adt-run: If apt-get update fails on publishing built binaries, retry after
 15 seconds.
   * VirtSubproc.cleanup(): Avoid recursion if something in hook_cleanup()
 bombs.
   * Fix --shell to also work with --output-dir. (LP: #1317078)
 .
   Code cleanup:
   * VirtSubproc: Document and cleanup execute*() functions.
   * Some test robustifications, to avoid making too many assumptions about
 debug output.
   * adt-run: Eliminate usage of testbed execute command, which is too
 complicated and limiting. Use print-execute-command directly instead.
   * Drop execute command.
   * adt-run: Unify Testbed.command() and commandr() methods and make them
 stricter.
   * Add prefixes to all temporary directories.
   * Remove autopkgtest-xenlvm. It has been orphaned since ~ 2008, few to no
 current users, and no maintainer. (Closes: #508660, #680122)
   * Simplify build system.
   * Drop concept of shstring. All runners must provide an auxverb now,
 possibly with a wrapper and quoting by themselves if their implementation
 can only deal with shell commands. This avoids having to tell apart these
 two cases in adt-run, clarifies the documentation, and greatly simplifies
 the code. (Closes: #750544)
   * qemu: Use low-level IO in runcmd.  This avoids all the Python overhead and
 buffering and is less prone to bytes vs. string issues.
   * qemu: Fix text vs. binary confusion in reading and copying /etc/timezone.
   * schroot: Call schroot command with -q, to avoid stderr spew if the schroot
 has message-verbosity=verbose.
   * Port to Python 3.
Checksums-Sha1:
 2438b2a9687c797216f77d4cd945a1a921a1a3f3 1703 autopkgtest_2.18.dsc
 b441bab1853f6c265fb3d4941e301fdfac546f93 98206 autopkgtest_2.18.tar.gz
 e26af15b0fbdf13ce6b4ce2ef18e6d487e911a36 84348 autopkgtest_2.18_all.deb
Checksums-Sha256:
 11813563031912bfdbe4735d7b41308857b0c0ad61b98c0a6301af67c2050b30 1703 
autopkgtest_2.18.dsc
 3375047e836399c1be4318fe5cd084f9a096a7ea6049934bbcbdafae834ff8c3 98206 
autopkgtest_2.18.tar.gz
 bf7e73abb2e140997a31576ae06301ca192c082c29d6106d79b90ab8a5f14e4b 84348 
autopkgtest_2.18_all.deb
Files:
 19a78d38b581ed2c56d2d0d930bb8275 84348 devel optional autopkgtest_2.18_all.deb
 eeea055157907b5183566a84ecf6e4e6 1703 devel optional autopkgtest_2.18.dsc
 44fb73fd079c4481d7e9ccaf578504e6 98206 devel optional autopkgtest_2.18.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmT+mAAoJENFO8V2v4RNHm34QALjkUmfLD0dGMBFRHX8FvKml
IF1I5BFrPbo/BFgnldvTV2WhPCEjB86HKn5iglh8bojlvMNZfBEjqxzPGuNy1kXC
6Jd+wWRNDvnmeHyuH9ml3Nb1Ob5NUR/ASwqR8Zp/qZMxblZ0Hb88N6zpxiqv07+X
8WZEWyfvew50+iqVYxygo999mDl5aassZCPda5vGL4V3QvOJ72gRs4rfIbIhbD8f
RaS62u9grVveNh938ezN3jzGXhTO1zylKs3S5u+JU5k/C9nUSpw2pM8m2n+5DI/r
C1CzqcFPqoWpLAxcp0LlVw9tL5QSkntJICXYUU/s3lKLvVmSzBTsqOm/hugxsxOs
dB3R6EuHGiW9Do1ihmSDcFcwQBUtzzrjQFv8IXjcbFb/vHbw/NOJCzuQTmapMWU+
7z/tiaDzZX1W5+uaP96WZvpEpvwRRRSTZKAbe8sIQg32Aow8DeHkTTEK6WXSYb0u
Z0KL1XqNIXx1MRXyd+y1FvlZTNZvMrlBNJT3Lb+mq+Esc8l25RE7PgsmCPTPL/46
fWC+Ejj2yZsg3wG3Mxztpk9lZiqeCsspCYBPWg915IHY5lSh1zkXjZQc8vMIYQd6
+FAtIGwRJjWno1uIQBeZYh3+YdUOeOlCKR8y2HcJ8mhz4XBZ7vsXc8GLxHu35hZC
wuQIvHuWde2r/ffBFCXI
=G/jj
-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: https://lists.debian.org/e1wuy70-0006jl...@franck.debian.org



Accepted gnome-main-menu 1.8.0-2 (source amd64)

2014-06-12 Thread Mike Gabriel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 08:25:51 +0200
Source: gnome-main-menu
Binary: mate-gnome-main-menu-applet mate-gnome-main-menu-applet-dbg
Architecture: source amd64
Version: 1.8.0-2
Distribution: unstable
Urgency: low
Maintainer: MATE Packaging Team pkg-mate-t...@lists.alioth.debian.org
Changed-By: Mike Gabriel sunwea...@debian.org
Description:
 mate-gnome-main-menu-applet - GNOME start menu applet for MATE
 mate-gnome-main-menu-applet-dbg - GNOME start menu applet for MATE (debugging 
symbols)
Closes: 751335
Changes:
 gnome-main-menu (1.8.0-2) unstable; urgency=low
 .
   [ Vangelis Mouhtsis ]
   * debian/rules:
 + Replace on dh_install --list-missing - --fail-missing.
 .
   [ Mike Gabriel ]
   * debian/control:
 + Fix several B-Ds for non-Linux platforms. (Closes: #751335).
Checksums-Sha1:
 d2fa3a7b5c62ecf799273d12ec53f65f1d28ba88 2637 gnome-main-menu_1.8.0-2.dsc
 c1101f9f62fe1598b427f5ac7abac28f130bfd4e 4676 
gnome-main-menu_1.8.0-2.debian.tar.xz
 2293ee7c8f6f781174634a378848a2c54c0a5829 185220 
mate-gnome-main-menu-applet_1.8.0-2_amd64.deb
 5ae6f9ea5f2a6721e07191cccd590435527b7f38 192694 
mate-gnome-main-menu-applet-dbg_1.8.0-2_amd64.deb
Checksums-Sha256:
 c144e55a40aa92edbc3e38ced3e0f3eecf78ba62e72cf3b8eb1741a41c309352 2637 
gnome-main-menu_1.8.0-2.dsc
 b44a190e9580eef5a20d6d22e3ff7332e6a569f50278874fa4c4ba957e759f43 4676 
gnome-main-menu_1.8.0-2.debian.tar.xz
 758e5321aaa941ba76512b9658b9b819d6d3ab858fe26ac358ff538478ec7373 185220 
mate-gnome-main-menu-applet_1.8.0-2_amd64.deb
 4b8e798ab4bb287b01140a73cef4885381029544d4d610d92498dfd526fb9403 192694 
mate-gnome-main-menu-applet-dbg_1.8.0-2_amd64.deb
Files:
 d5170267ef4f7b3f7012b7d75a413559 185220 x11 optional 
mate-gnome-main-menu-applet_1.8.0-2_amd64.deb
 7ba5095728fce4b3d1742d19815a370c 192694 debug extra 
mate-gnome-main-menu-applet-dbg_1.8.0-2_amd64.deb
 86f6aab675c61894e9aa4320ceb42255 2637 x11 optional gnome-main-menu_1.8.0-2.dsc
 ce5362502ad4557ed2a24f6fcabf3fd5 4676 x11 optional 
gnome-main-menu_1.8.0-2.debian.tar.xz

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

iQIcBAEBCAAGBQJTmUmPAAoJEJr0azAldxsxgOUP/AjZm94ySAv91xZiC42/mIBf
IoITuTCWdBMJGtCVRJYN/7ySKcqZXUzPmg8+OabmM2zPZPS/I2waYFPsG78C6zc5
249OsSjIlWhB7+C7uP8c2VKYnb31fxspucFhGEfQjWchaXKkTuMiCZBbm4Mgs95h
iDncT2s3dBjvNWnqWXdia5nLLYd0bAOivDeW82ovBZfz4W2/DOI1JEzwVnVv8IKP
EUijQAXLHaoAjmaq1y31/0y9klnZTvuZUUDcf84LinTzYCoqnpTUU9HMgmZVII7B
sGhxv526S0y9+IgiGJTpfE/xkm7HowKUGyWRhq02+PpfIMeGuZ9MF/zyW8M/haM+
jiiP9NXHAK9lsKTcpRlO5KPF4Ouym/dGeLKveiWJfyT9650Yac5MHu0r5uWDqMre
r27VCPqiqEuSjMopKH9KaBe3SXw1e6DKQJwl1CjEl47ecdP/1lbD1CrTNpYvV8q6
XyvE12980MnBdU3x9TbS/tHoqKsNSWqJNkMVGkKg4lEdP4Zv1UH9lmJoituZ6sM/
NfwABc9OOaCO2VEUkzwxZHiTool2lkVHwwpEYxodbDcV2T8Uygi7UgUAKd+MqvdS
1B3K1CagmzQJId06u+A5nApvihYtexo334V3GfN2GG9mxUgWJcXVbX/GIOapid7D
3Vv9hFMaHRMlmSOuyxu9
=AxcW
-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: https://lists.debian.org/e1wuyoi-0002ld...@franck.debian.org



Accepted gringo 4.3.0-2 (source amd64)

2014-06-12 Thread Thomas Krennwallner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 09:16:31 +0200
Source: gringo
Binary: gringo
Architecture: source amd64
Version: 4.3.0-2
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:
 gringo - grounding tools for (disjunctive) logic programs
Closes: 751317
Changes:
 gringo (4.3.0-2) unstable; urgency=low
 .
   * Bug fix: non-standard gcc/g++ used for build (gcc-4.8), thanks to
 Matthias Klose (Closes: #751317).
   * Build with system-wide liblua5.2-dev.
Checksums-Sha1:
 3c8933958e1dfc0ec7d623677db703b6853a7ad7 2047 gringo_4.3.0-2.dsc
 a0a3af94bfd905681809db2afa4ee7a271a5966b 8292 gringo_4.3.0-2.debian.tar.xz
 ac61e35ee0816db55503f1cdd1a4cf94255a252a 1534776 gringo_4.3.0-2_amd64.deb
Checksums-Sha256:
 794dbb8384d9541b0e3bc593e8efd87c1324d30690ed48b7585faa9e90d52152 2047 
gringo_4.3.0-2.dsc
 445c4c0e6537907c8d3c69c207340572589fb7f45156ac019cf8a6f6a00e3d41 8292 
gringo_4.3.0-2.debian.tar.xz
 4b9daee565fe1977368b4dbc0df2634bb2da2f5f53c60dfb9fcd2df3a5e89451 1534776 
gringo_4.3.0-2_amd64.deb
Files:
 64d19bbe50ff06a252a3d7959ec3091b 1534776 interpreters extra 
gringo_4.3.0-2_amd64.deb
 64017a502617652a8bb77a2518e53e1a 2047 interpreters extra gringo_4.3.0-2.dsc
 e0692dfca7ecd550261e6c9b38695f3b 8292 interpreters extra 
gringo_4.3.0-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmVkrAAoJECeX33SmZpqpQVIP/RaxTugxZwI7oXYJ5DdH2y4q
XJIdzc4wi/gEwcZXsa1QPUlIJ8f2IwLhcH1+uXwLVdYohENNBlsp4NYp4ERIWPrZ
ywre98St4ZavmUFFceSdiagccMtTvp9nb9DpLsB7wH5IqC0r0xd/I6RvWAyHh3LG
XRffC36VAAhPR0pm5SgqZWOvtS1wcyxnZjBjUUuJl0jDCUvsYUsmVfny8ykWqwg6
mjDHpgNRkjbtyv/2VAhkzwxI7e0jtP90U0IY/WE6/f7Li6iHNT+gZel0cesPak/S
0f0BmfFkPrBz95xqYxTQY7onF0vHQy0uU3PB1B0NuOrV0lPoqEK1Sn4DMgQUsgLf
I447C90w50W80VKwgOjFNiZF58p0GxaVl+2F9Ob25hDw0MQdqdtol/G+RuzuuIIe
57mCBpGWnhhu0atlQMMDmd+4AEuXVWfuMJ1UDSLEFN11NIxL38wmrWAGoSsrRGXa
0yy2A1v4xzwPIP9BdAqoC+thjUg3HAlw12BnujHmKiFmDTKxsPLKJwwiFAUd8e9o
qgxFSEY30pmskhtW9Tfj7E9lPIe+wJM8+KzBW3juvkYiLJRDmmvNik6pGzfyzT+2
l2DS7vBZCY4uiFwPnqr67GDwPaU0H0sN41Z5pnNloSIwIfMJ6dMubq624WBCdQZj
BnDom0p4ljUL5HU1//XP
=b4LK
-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: https://lists.debian.org/e1wuzkd-hj...@franck.debian.org



Accepted opensmtpd 5.4.2p1-2 (source amd64)

2014-06-12 Thread Ryan Kavanagh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 11 Jun 2014 21:30:20 +0200
Source: opensmtpd
Binary: opensmtpd
Architecture: source amd64
Version: 5.4.2p1-2
Distribution: unstable
Urgency: medium
Maintainer: Ryan Kavanagh r...@debian.org
Changed-By: Ryan Kavanagh r...@debian.org
Description:
 opensmtpd  - secure, reliable, lean, and easy-to configure SMTP server
Closes: 748150
Changes:
 opensmtpd (5.4.2p1-2) unstable; urgency=medium
 .
   * Disable fortify, fixes sigabort on buffer overflow false positive
   * Fix broken SSL version check, 12_ssl_check.diff (Closes: #748150)
Checksums-Sha1:
 de056de92a4d42d4381c54e20d23b5166a30f611 3054 opensmtpd_5.4.2p1-2.dsc
 d3be7910b31b75cfb69d512c3e864206cbe5a9ad 27420 
opensmtpd_5.4.2p1-2.debian.tar.xz
 ef5cfcb389dc1b5b805f6115bca159781f07849e 336128 opensmtpd_5.4.2p1-2_amd64.deb
Checksums-Sha256:
 0ca799322dac101c06f2088780fc6f63abdc32f38baa661c2bee6b6870fa8d6c 3054 
opensmtpd_5.4.2p1-2.dsc
 bdeedaab5851a81f9624f14924c225964bbf4bc2dd08c074164d053e68e0d47d 27420 
opensmtpd_5.4.2p1-2.debian.tar.xz
 8a5b91a861461c2422f74ba907dd10351da746a2da0340348b8a223df312cf0a 336128 
opensmtpd_5.4.2p1-2_amd64.deb
Files:
 95d733c017d3e26773223258645b80e2 336128 mail extra 
opensmtpd_5.4.2p1-2_amd64.deb
 a76a274666ee8d77d32b13b66c91c031 3054 mail extra opensmtpd_5.4.2p1-2.dsc
 8ab884a4aae5329ebef1e01310bb526b 27420 mail extra 
opensmtpd_5.4.2p1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQUcBAEBCgAGBQJTmV/6AAoJEI97+PxKEcl6azIn/0Vt6aPvfXkH8d/cqvWiiGm+
BZAAQarHpxxGOfxTofh4saCRss2BqzhHgPYbDT8WaYEdL1x0cFXGaxBy7t/In4K7
FMgIq4ZJaw66YylRoWFPyNDEEG+/+98k3m9dI04tmsSSybWozrlvV9785DO9AA4q
UKaNj650qrQ6pwPJdL4f5jKjsLGndkT/U0NVbfom1/rKu1u8Ffqj0MoxWXoSFpOS
5AhwFKm1ZIX/WlDcSrOPoopCfHGx4nHT3bCxmbGel+l8JyGlAa+ddgkJdOYq1/f8
c1TPl/PNqmqpQhIzVgvbzXHk4Px3XR6NBlo2uxaPGoxTfeS0mLYNsaV4ROCGPhEf
OwmWF6Xkh9fmD7gi9RjDT0z0LY64YUGuBWdzD++W8o/v2XHx2bFn6tGtKVRnlsmJ
bcAS6rt9R8qAdDd39KD1Don6v9/fmM5zK58jlDrhP0/WjHnu0xesQTTnNCH5NroJ
uDAev6jhrX78p72t/xE8g9HpuVGxsXe7WQFTRZWlD4IiCtEUqBRnQwjyWbrSxxHj
oTAJEiv/bE6FfqOsRNO/lhFQLSZ32Z6V2IhfBYWksyItJDw8FQAo9+siJ7Jl3QUV
qVRZ9NVt5N27yOo8pc2nv/w/Jn9OfmMzgZ175NnVfw11FhyhXci8RI09lzFdRqX2
mRVXOPJMibW3PmWYrc5uWPQ0Wh7e/kfcPWVmMa/EvPuGRVl3HzTeKOCDCb7nEmUN
5CK8rzJIMSBWAuBxy8eVXiZirlttEU3Pb9clu30dfiEHuWDWi06Aj0KVCVgt9Nm5
RYwQTpY92jy9/YqTRFQcYnmqLW+avzYvcm0uOhclFG2jMSjdWQTE3AW/nVc6EMFh
n7hF9x0GJVy3KMM8DD82GuMwSss3A5WkR//f4bwDnQnVCJFZt/B9R6g+wXooEHKq
MKwlWOdAFs9i5q/Am+xlTK7XklqE98ctXaC2/jDu5WmbIm11NiUUrT6ZpmvDMeng
QR/AvmbsXgf42m7x2l4EZt+jTt2wAoG9l+/DH2c8imUkUtbid+qU4Zvy/qQXPV7F
4Gf0KQeXnEwgL3Q9NTCuFpmiCo8oSO27HBht1iVTPcc43GUPvRcvQhDuk56UGAc3
rTorbnA2McwX/XKSwa+gjxHe324aNoe1dI1My2F3yconz9TxbLI4CokPeY8om84h
BbdOj8KonapS+v0ZgLvw4ZIL6dWiryH8m6j/qqQv0ecYVACHmxlvTym2i8rjw2aR
qoo4NrLXS543ww9WWzLLbu/wtWl/vWf69BsbzL76xTlQDH9zlziSl8f21UPEP0b+
ehvp4mUQ0AO7xjddOjNFBtCOaeUXzKywOhu2qxwtm4dAnjUV8NwJ5fCEBcSI16KV
gy/FSIN4LNXiXsMiCBxC0uRGX4wkgclTKf65uwvcIx8zLQxqrSuNkmwDFb3DaNaL
HTkCETlio2mZ4sQHyoxJD1yAq3d1DvburfXhou9k6qAMzAAICxvY4e7ra7brGcVz
NB3xtCYGyDRzeAuHd7N9liSevbXnSktM78Lfu0y+mpS5ENq2R/Gs1COqjOEReBgc
F/DgcbMJL9HRcMxXcxQG1taOjh5dnVEkePhaswtgwXgAUT7f6Q/NeBGYPzE4E6rN
lUHe5KN4nitH9qQTf9J/nr2BWOt6u2WXtVqdVpdU7dNtCRnOvCpD6r3T7w9c+wEm
Odp7tqW62fTVXb07BkU1
=kZG4
-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: https://lists.debian.org/e1wv0dt-0003we...@franck.debian.org



Accepted libverilog-perl 3.404-1 (source amd64)

2014-06-12 Thread Florian Schlichting
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 10:19:15 +0200
Source: libverilog-perl
Binary: libverilog-perl
Architecture: source amd64
Version: 3.404-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Florian Schlichting f...@debian.org
Description:
 libverilog-perl - framework providing Verilog support
Changes:
 libverilog-perl (3.404-1) unstable; urgency=medium
 .
   * Import Upstream version 3.404
Checksums-Sha1:
 da8869303098efa35adb5e2ad24745490a2a3b9e 2245 libverilog-perl_3.404-1.dsc
 e6cb54c054981c6097c41ba07db085ec598a0c5e 558496 
libverilog-perl_3.404.orig.tar.gz
 f7ad108b53a0609d02f3a6d3a41181906088a484 7284 
libverilog-perl_3.404-1.debian.tar.xz
 5a293ad9f47e79ca69b4b1a359b2678f2c3708dc 461240 
libverilog-perl_3.404-1_amd64.deb
Checksums-Sha256:
 f6fd2545854f70cca834f9e619b143a72c0eb64587e2425c6f027132c6a1bdea 2245 
libverilog-perl_3.404-1.dsc
 4eddc21a965019eecc2200e251186f9d8bd0643485d12feda7d0b26a328650d0 558496 
libverilog-perl_3.404.orig.tar.gz
 fcbdcdf9690c7ca6916293df695fa09922cd24c498821e2f62060693d157e2cb 7284 
libverilog-perl_3.404-1.debian.tar.xz
 5b9561b0d41f3abd0fe9942a13e8aa178767d3be43e556070335f7723795e6f3 461240 
libverilog-perl_3.404-1_amd64.deb
Files:
 34ce1e06ecd81c9bf3cba9102bfe9600 461240 perl optional 
libverilog-perl_3.404-1_amd64.deb
 74c60271972fdde970fd4bf8db4decb4 2245 perl optional libverilog-perl_3.404-1.dsc
 7985e061725ca4ab5217ee090c620e0a 558496 perl optional 
libverilog-perl_3.404.orig.tar.gz
 c156b171af9b1786f967b4b3621e79a1 7284 perl optional 
libverilog-perl_3.404-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmWOoAAoJEBKXO25y3Ae156sQAJHn9GW9cV1BABqKdUtHZhtf
pRcuQDZ7JIYq3lw3H9h3sSBA7NfKFqNIxvGVBElWzW/Igou3rOJfbsTQPcmGl62L
x8RSM1mx2HePOmundn1u3za8WMhxE6AvEfPJbdRngun/W+t0iIlGS4ru7DfrAtoc
U4qoFP54endzDF3YfC/kwAFoyr1zhi4JERu/BLRn+ILDS7dxwkZSZ4v7MWRV89AZ
zgI/t2phcJGJoLl6mo9AIqpfiXWzj2Z6TlnfnTrGfsRXgmvgFByhOGMyJKoVl8A1
ZjeTLTchQVxTY/0yxsn6DmSw+x1OaF8jUEKqOKMMYGm0/Uy9bodJhN1eHbXyOVi4
yqoG6B9Vih3X0wRtGQd+YDelTb7Snzf7YsxtOFabIZYHfVhgXWAQZRKLeI6RnsWE
1kbCFFrzhkmS+4TizTQHdo6ks2pCCrdPSSLOdfyfgmY51PhIEZpn28y2jzkamE14
uI63GMTkUWxgejD+2TPy/B97XzQklprewl+2NUz6SwVK2cJS7adJQZCp4blVjfkB
qAupOyob3AfqirquESUIDp5vjRVcY3lqLtAPAyj61j9qLyxj1XEcMwMu5QM1AlYS
b+HPpEJnmQTGKI9JWFxt6NSEV+tDxOTtVnspWvjl30pryOg3QE5lebz6QE70m797
NJAxg8+1YNVRL85nQVNR
=H7n4
-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: https://lists.debian.org/e1wv0sa-0005xd...@franck.debian.org



Accepted libio-interface-perl 1.07-1 (source amd64)

2014-06-12 Thread Florian Schlichting
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 10:36:18 +0200
Source: libio-interface-perl
Binary: libio-interface-perl
Architecture: source amd64
Version: 1.07-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Florian Schlichting f...@debian.org
Description:
 libio-interface-perl - socket methods to get/set interface characteristics
Changes:
 libio-interface-perl (1.07-1) unstable; urgency=medium
 .
   * Import Upstream version 1.07
   * Add myself to uploaders and copyright
Checksums-Sha1:
 70f24457dcd22fa0731274630edd069793e30908 2172 libio-interface-perl_1.07-1.dsc
 c1a823bf135cc7ea999ef44fab80020b92113d62 10324 
libio-interface-perl_1.07.orig.tar.gz
 8023911afa7cd3613b4fa31e4734927297e7169c 3048 
libio-interface-perl_1.07-1.debian.tar.xz
 591076ead509c4c56cdeeb5ec3ca4effa386bb92 23326 
libio-interface-perl_1.07-1_amd64.deb
Checksums-Sha256:
 b05e02a7e54270be72b787757cd50c7b9c0c6daea35380353185b031d72d9697 2172 
libio-interface-perl_1.07-1.dsc
 60162f9dea68d044e61ba0e90a018f1e02f654decf343208d9cc2c6d2b108258 10324 
libio-interface-perl_1.07.orig.tar.gz
 4275cd273f6aa8582ff690aaee0fef328ad4d476eb3d669c72919d6c80eb77c3 3048 
libio-interface-perl_1.07-1.debian.tar.xz
 2b69c5465e60a8812f3332a6b80fe08e0e1f3dc61c4641bcad228cbdbf3b0fa2 23326 
libio-interface-perl_1.07-1_amd64.deb
Files:
 50deac45c90ea985ea81e212084a8291 23326 perl optional 
libio-interface-perl_1.07-1_amd64.deb
 792fe0265c33c181bcb705ccd9d3021d 2172 perl optional 
libio-interface-perl_1.07-1.dsc
 7aaf77d7915d81aa25f89cacae250550 10324 perl optional 
libio-interface-perl_1.07.orig.tar.gz
 0a7213001a862465774f1646514e51d7 3048 perl optional 
libio-interface-perl_1.07-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmWazAAoJEBKXO25y3Ae1LjgP/0D+3koiD3xKjtBqUvZNjojR
pc9R/6oORQk2wBBkydS83gRcsjEmMVF0M8yeG3aKQWe3IDxT8362P1cSfsA1I12N
lTVl/puAg265YinnufneBeLEEEeRx8KBe0uUFKYISSG+mg2JQuugaTiAW4ujA7Ph
iFPAy8XSQjju+xcTxXt6mjIpEIDAp6hFid4rL318S6K0x87vfgl1G1fidQ8m922C
J1AnCeB4twzYs+FU1IUTJWhN80yF43MOYYQ9NBNI0TNKd6iv2cE6+lDS1PS0sx0X
9lXuewXRVI+FqJPW7iwCqFyrUwvyQ3tRWZcVHUvSbYPx9WY8oNpjN6KPwOlrjc5Y
QclepbLg6HNL0UlH7ZDOPtckHYF3Qz0CgRMxxAYWrNIUnw+LUCCTdHrOdcPHWjTe
OgH6t04uhGTJh4r90vYi/eZ3OACGDqwV0eSmE52PEqAPUCnGrAP3Sr39oPcpUOTz
D3bfycsrNNQZ3RGdJH4qd0acbwc0fmVj0QbYTH+Ea+0IzSv6Z2Eu5z5GYedBMQxd
rMWpCeCC5vLj7aaFCf8D5+pu3glLlClnqoSRjdnFqJFuWbrjouc8IdFDIKsdehJU
XvcKjfKjElNzFMBIUoyNq2GJce/p4cKqeNnIlQJZ1v9Mrp6X8DJzUW8MegSDNtV8
zHirwQQtYwb5s0ooTx/m
=Vblg
-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: https://lists.debian.org/e1wv0gy-00076r...@franck.debian.org



Accepted r-cran-statmod 1.4.20-1 (source amd64)

2014-06-12 Thread Sébastien Villemot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 10:26:20 +0200
Source: r-cran-statmod
Binary: r-cran-statmod
Architecture: source amd64
Version: 1.4.20-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sébastien Villemot sebast...@debian.org
Description:
 r-cran-statmod - GNU R package providing various statistical modeling functions
Changes:
 r-cran-statmod (1.4.20-1) unstable; urgency=medium
 .
   * Imported Upstream version 1.4.20
   * debian/copyright: reflect upstream changes.
Checksums-Sha1:
 ac46d49b86a8fef6a7fac2672bbcdbb9e0eea429 2077 r-cran-statmod_1.4.20-1.dsc
 28ddfed5c1dd0d58d29bed876c7d2fc0f8351409 55377 
r-cran-statmod_1.4.20.orig.tar.gz
 104bfc9a210ca176260a7288852fd753e94ca182 1948 
r-cran-statmod_1.4.20-1.debian.tar.xz
 05dfa9996e38979c39bf326a5ac1ffd5b885c04c 142554 
r-cran-statmod_1.4.20-1_amd64.deb
Checksums-Sha256:
 5a63eee72f51767502609a5888587a43e8df0cc2d0f7a067a3797298e6610cbb 2077 
r-cran-statmod_1.4.20-1.dsc
 9fcb124cf4cf0bccf4ad401a1b9db5a1f4708cd8dbe00434128f069fa5372885 55377 
r-cran-statmod_1.4.20.orig.tar.gz
 79cf65b34ffe6939b12b8e97485fa6a7b1b29ed0ac57305e197884f355a23e44 1948 
r-cran-statmod_1.4.20-1.debian.tar.xz
 21f47c0e92a20bf0412a2c0ae74e85ba92f38cf9a93d4314d6a0d2e80796dc1d 142554 
r-cran-statmod_1.4.20-1_amd64.deb
Files:
 82c87e6b37e9251a95deffb9dd704aa8 142554 gnu-r optional 
r-cran-statmod_1.4.20-1_amd64.deb
 000cbd89c52251cf7ac869d63fe8d850 2077 gnu-r optional 
r-cran-statmod_1.4.20-1.dsc
 7650bb5f8afeb497fa7200943e4109a6 55377 gnu-r optional 
r-cran-statmod_1.4.20.orig.tar.gz
 7800e4e87ed273f09327f1185a7810d8 1948 gnu-r optional 
r-cran-statmod_1.4.20-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmWR/AAoJECzs6TUOzr5Kw4sP/iNM+lRLkpGjsowuk7rphe/c
5F0hdVIcTUsxYJSFmwDBoFs0lTNeXPHhaV8kNWPrrwKHnUhQOb0+FMtDhFAu+Kca
myx0nZLQEoQaQBsUHnMj3d+lslBj6wszd3mop/B8cIDqJZbKpEHxDJqWtTGHSavR
hIEIOhe4QWzUXT1e+j1kZN0YKFT9t9kDcNrFCzZ92oaa7Q8PF8ed/QzEpqoE8avM
zKX88amYBlQbvL2pDCKxWsg8O+Rkhtfd0s344fldcKd9/QDh2Q2wlEPEerCYYg1l
ez/Ee42D4lFLGtdydWkpLQ0kE7L5y+madUuY1i4nOI1AjtBGM9fnJMHohQlbJJOl
GtTrUG0R2H8DqzijUzyfQfYuCx71t9Iic7WNP0PRdPM6A7PwOVEEgj43r3RO0l7w
BOYzrh2u4hykSqqQWl5Fo5kjgsjyRAxuRsTkgdM/xspmjbkn2JBWmUjxYRbFDC04
dsXm5+Eqw7RtqTsH1zzXf0dOovWgLNDR6Do22V+k+xOZTRAxNZ15T2XR72BGOA0V
OTAge7/7IwwKzd22WrDyxK+RTgVd78Uedt6i4OdVXl1FxNQD5qLRQcHmn9s7sLhU
KwXScQmDIoEDEi5GneMNO4+5AkBUE7WCO7ssomNEXmWxAjhe5BTbZ8K+Max8MWUT
AUFmfN+fMJam98ZJnnh7
=QcQT
-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: https://lists.debian.org/e1wv0ha-00079u...@franck.debian.org



Accepted glpk-java 1.0.36-1 (source amd64)

2014-06-12 Thread Sébastien Villemot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 10:45:35 +0200
Source: glpk-java
Binary: libglpk-java
Architecture: source amd64
Version: 1.0.36-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sébastien Villemot sebast...@debian.org
Description:
 libglpk-java - Java binding to the GNU Linear Programming Kit
Changes:
 glpk-java (1.0.36-1) unstable; urgency=medium
 .
   * Imported Upstream version 1.0.36
Checksums-Sha1:
 fbc50f6781ec7f9710a5226d71f71c485a388cb2 2057 glpk-java_1.0.36-1.dsc
 e6eacb9ec99212d3d6d461f6423fdbca46da8899 1140577 glpk-java_1.0.36.orig.tar.gz
 13914e067c7b5860c566fe3a142856a77bba682c 3292 glpk-java_1.0.36-1.debian.tar.xz
 949ed3045a8ea70579a7d1eb089f5eed3583e3b2 783190 libglpk-java_1.0.36-1_amd64.deb
Checksums-Sha256:
 c30911c5c004733511f943e19bc34ce467e83babd2d5c66b7d37bb177d838a58 2057 
glpk-java_1.0.36-1.dsc
 d63d637636d440db72ce3d97fb7c73d45e1f11d17bfa44553c910c751adc69ce 1140577 
glpk-java_1.0.36.orig.tar.gz
 1c311e9e6b0ea607eac52853df458f551e4793982a63d1cdece0f34e6ddf97fd 3292 
glpk-java_1.0.36-1.debian.tar.xz
 3f2a7e9e61243e480c86793ad29e5c4df7ec348ac53040cef634200fb3174a27 783190 
libglpk-java_1.0.36-1_amd64.deb
Files:
 d0bf0228d6cbd416a997e68e6af62758 783190 java optional 
libglpk-java_1.0.36-1_amd64.deb
 fc74b2cb3d891a4d35868be90be63eec 2057 java optional glpk-java_1.0.36-1.dsc
 f368f2fc7fa94dbd7b6db5f3d1b340d0 1140577 java optional 
glpk-java_1.0.36.orig.tar.gz
 c16fd3e7f89165ee7e627610557dab83 3292 java optional 
glpk-java_1.0.36-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmWkcAAoJECzs6TUOzr5KTM0P/jsPWELdK3XjZge+rYnbxLkF
ZVxN0EbHuFQYgMlOtaUhgsW1g4ptRvS4Ss6+sUe1n9VamQEelcL90CvZlTXnXxf1
RjxMhiQOdKifxAudI8dNXZTCq/Bwrgat9MWDodybRCLpo+ilH+5/4Ks01G0Me8fV
T2cIqzbVNV+0qii0oIVeIGxW3vI790/KW0+mTPSCWTeyxhFZy203OPvvdEURP4DG
BAPkJF2heGL1hxSuKZVFYxIyyM3RQzWGKYYYQEkMFzSjv+nxRN36e7lunDQfM+0n
sZGBjmvRflkOzUYB3WcTpJKHAKFfjoTcNfQqN587+3P3pwPy0K4BgrMF+J4dObUi
5E5QlpRbFO0Mvu31GwVM0gAqft6yOU97HIJ9fVPxswkxvh/4LjQQIYnjNR8yLZb4
iWORGLENJgGoeXZjCoH4UNcNfGecXTKT9TteS+Fd4SmOaLSMi6bijxp+vIbvk5ED
KO5ZbQtPQsAazXAsZkMRfKaElsyNgF8UQiAxEixfJW5mXMhDDJsZIbpN+vdpuyxE
fHtfl5tD1MevNxPqRCkLqxgi3QlUkRIEUFnpz+3L+8kMfPI+FZLAaP9s3VGmkqTU
CE2qEBN+fcehoQE3Ql8j7Bdxgl7Elmuz3HSd5DsVr6splFVK1vcu0SqfHHaT52O0
M63dBObXZbupmO4eMcZb
=+Pl6
-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: https://lists.debian.org/e1wv0vb-nh...@franck.debian.org



Accepted libpoe-component-client-mpd-perl 2.000-1 (source all)

2014-06-12 Thread Florian Schlichting
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 11:08:30 +0200
Source: libpoe-component-client-mpd-perl
Binary: libpoe-component-client-mpd-perl
Architecture: source all
Version: 2.000-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Florian Schlichting f...@debian.org
Description:
 libpoe-component-client-mpd-perl - client library for MPD (Music Player Daemon)
Closes: 738906
Changes:
 libpoe-component-client-mpd-perl (2.000-1) unstable; urgency=low
 .
   [ gregor herrmann ]
   * debian/control: update {versioned,alternative} (build) dependencies.
 .
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
   * Change search.cpan.org based URIs to metacpan.org based URIs
 .
   [ gregor herrmann ]
   * Add patch from GitHub to handle newer Moose.
   * Update years of packaging copyright.
   * Declare compliance with Debian Policy 3.9.5.
   * Strip trailing slash from metacpan URLs.
 .
   [ Florian Schlichting ]
   * Import Upstream version 2.000 (closes: #738906)
   * Add (build-)dependency on liblist-allutils-perl, and bump dependency on
 Audio::MPD::Common to 2.002 to ensure build failure is really fixed
   * Drop RT90686_Moose_enum_warnings.patch, applied upstream
   * Add myself to uploaders and copyright
Checksums-Sha1:
 211fc06e5564279a5dc20b6be102755ac988d994 2755 
libpoe-component-client-mpd-perl_2.000-1.dsc
 b7acd0ae5995f287309169fe93ef0c24a5408abe 39184 
libpoe-component-client-mpd-perl_2.000.orig.tar.gz
 658f353d222341bde5a9a77f6502c578fcaa39c0 2928 
libpoe-component-client-mpd-perl_2.000-1.debian.tar.xz
 d6f1102030d0563ae5ee32700bef96bef8539cf2 45886 
libpoe-component-client-mpd-perl_2.000-1_all.deb
Checksums-Sha256:
 8983b46202e9004731aa5171f1d215aa0b79800447db6de0cde346394e13d361 2755 
libpoe-component-client-mpd-perl_2.000-1.dsc
 6de12c3e77936d1043c327298e95f6367adf9cac1556b509519fc62f75cebdd2 39184 
libpoe-component-client-mpd-perl_2.000.orig.tar.gz
 dd84e9c2010e0e5541a7a481182af7f6e6f13c943a4364b17e60832e24cc8efe 2928 
libpoe-component-client-mpd-perl_2.000-1.debian.tar.xz
 d1694563537f993c0de8074ea2507dea32454dc5579e8aa4d9d2d22d325f88c9 45886 
libpoe-component-client-mpd-perl_2.000-1_all.deb
Files:
 c71515ad4ce69d88bb32a0663977a027 45886 perl optional 
libpoe-component-client-mpd-perl_2.000-1_all.deb
 fe07effd73544f8999ffbbf601152dc9 2755 perl optional 
libpoe-component-client-mpd-perl_2.000-1.dsc
 a4fa91fda8f5d1faad85e3076754a27c 39184 perl optional 
libpoe-component-client-mpd-perl_2.000.orig.tar.gz
 6a46a0104dee68fd46562e04373ab6cc 2928 perl optional 
libpoe-component-client-mpd-perl_2.000-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmW+DAAoJEBKXO25y3Ae1B/gP/1jWGkJuPUG/i3F2iGEerUlg
bQeSb5UWkMCoU0hdhyAcztcvZMmRIbMD9ym6GBfi7xDV8U4drPEBDKMSr3H2JU2i
ePo4iAnj0KtK7tKiyKcA9YCHDRWL66qwJXNocPLB6KxW85Xqjc2BhR30fZ5PlVXv
xY3dBmtVQBgYHkJZBsQXnnYwfxHvvfHPGpbgh/pG5vZ1eg1OMnNJUmQ/FyCroclb
I8bqQ+rXMxisaELV/06HMuPEiUiMu7SqnEjIPxjUfLA455JJszOlMnzKriQwtBka
W+u/xG+Q7jD5ih4MsF0tNy1iUo2QNs1952Pmc8qhjWhgenkyf9Be+RnFq2S/Dbn1
lQ8a5ZHnxIqU5HMGEz1KbDz8wXhLNeCeIexVkF44JG8zP2jJqOGXzLKkOwv6izay
thZPd0DnjWeX/2lBHC4VpAO8nm3mzQ4sJ9D6zDKrgslKQoV/A0mUisqsM3QrBlc6
Gzye5pugzGDkpaHteLBWUNC+52eBH/6jgoItRZ9ZiLvWAJhUPp9ZEY4Uv2suBGYC
M+9nWxNwec08/893iQjEbbqF6jS+QoeKYuYUCoiRyNvG6CmID/BoA3mvDzRC4kc+
AW/UKOvm+c6jA4bDerdRPJDDNFjoWiPzv3Wbt2l9feuns0QN6Ya9/irQ6Z+bQBJB
PqFSC4A+KVFhGtaYy/Y/
=CcBk
-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: https://lists.debian.org/e1wv1pu-0006rr...@franck.debian.org



Accepted claws-mail 3.10.1-2 (source amd64 all)

2014-06-12 Thread Ricardo Mones
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 12 Jun 2014 11:12:38 +0200
Source: claws-mail
Binary: claws-mail claws-mail-dbg libclaws-mail-dev claws-mail-plugins 
claws-mail-spamassassin claws-mail-pgpmime claws-mail-pgpinline 
claws-mail-smime-plugin claws-mail-bogofilter claws-mail-i18n claws-mail-doc 
claws-mail-tools claws-mail-extra-plugins claws-mail-acpi-notifier 
claws-mail-address-keeper claws-mail-archiver-plugin claws-mail-attach-remover 
claws-mail-attach-warner claws-mail-bsfilter-plugin claws-mail-clamd-plugin 
claws-mail-fancy-plugin claws-mail-feeds-reader claws-mail-fetchinfo-plugin 
claws-mail-gdata-plugin claws-mail-libravatar claws-mail-newmail-plugin 
claws-mail-mailmbox-plugin claws-mail-multi-notifier claws-mail-tnef-parser 
claws-mail-perl-filter claws-mail-pdf-viewer claws-mail-python-plugin 
claws-mail-spam-report claws-mail-vcalendar-plugin
Architecture: source amd64 all
Version: 3.10.1-2
Distribution: unstable
Urgency: medium
Maintainer: Ricardo Mones mo...@debian.org
Changed-By: Ricardo Mones mo...@debian.org
Description:
 claws-mail - Fast, lightweight and user-friendly GTK+2 based email client
 claws-mail-acpi-notifier - Laptop's Mail LED control for Claws Mail
 claws-mail-address-keeper - Address keeper plugin for Claws Mail
 claws-mail-archiver-plugin - Archiver plugin for Claws Mail
 claws-mail-attach-remover - Mail attachment remover for Claws Mail
 claws-mail-attach-warner - Missing attachment warnings for Claws Mail
 claws-mail-bogofilter - Bogofilter plugin for Claws Mail
 claws-mail-bsfilter-plugin - Spam filtering using bsfilter for Claws Mail
 claws-mail-clamd-plugin - ClamAV socket-based plugin for Claws Mail
 claws-mail-dbg - Debug symbols for Claws Mail mailer
 claws-mail-doc - User documentation for Claws Mail mailer
 claws-mail-extra-plugins - Extra plugins collection for Claws Mail
 claws-mail-fancy-plugin - HTML mail viewer using GTK+2 WebKit
 claws-mail-feeds-reader - Feeds (RSS/Atom) reader plugin for Claws Mail
 claws-mail-fetchinfo-plugin - Add X-FETCH headers plugin for Claws Mail
 claws-mail-gdata-plugin - Access to GData (Google services) for Claws Mail
 claws-mail-i18n - Locale data for Claws Mail (i18n support)
 claws-mail-libravatar - Display sender avatar from a libravatar server
 claws-mail-mailmbox-plugin - mbox format mailboxes handler for Claws Mail
 claws-mail-multi-notifier - Various new mail notifiers for Claws Mail
 claws-mail-newmail-plugin - New mail logger plugin for Claws Mail
 claws-mail-pdf-viewer - PDF and PostScript attachment viewer for Claws Mail
 claws-mail-perl-filter - Message filtering plugin using perl for Claws Mail
 claws-mail-pgpinline - PGP/inline plugin for Claws Mail
 claws-mail-pgpmime - PGP/MIME plugin for Claws Mail
 claws-mail-plugins - Installs plugins for the Claws Mail mailer
 claws-mail-python-plugin - Python plugin and console for Claws Mail
 claws-mail-smime-plugin - S/MIME signature/encryption handling for Claws Mail
 claws-mail-spam-report - Spam reporting plugin for Claws Mail
 claws-mail-spamassassin - SpamAssassin plugin for Claws Mail
 claws-mail-tnef-parser - TNEF attachment handler for Claws Mail
 claws-mail-tools - Helper and utility scripts for Claws Mail mailer
 claws-mail-vcalendar-plugin - vCalendar message handling plugin for Claws Mail
 libclaws-mail-dev - Development files for Claws Mail plugins
Closes: 751123
Changes:
 claws-mail (3.10.1-2) unstable; urgency=medium
 .
   * debian/control
   - Require libetpan-dev = 1.5 and switch to libgnutls28-dev in
 Build-Depends to link only to gnutls28
   * debian/copyright
   - Update Source address (project was renamed at sf.net!)
   - Review whole source tree and add more specific stanzas
   * debian/control
   - Remove contradictory statement (Closes: #751123)
Checksums-Sha1:
 996a984f6dbce25f64936e766c9c8b03e9ef99e1 4365 claws-mail_3.10.1-2.dsc
 7546dd7a37ef46ed80f9a5e161bdca19333096b7 40360 
claws-mail_3.10.1-2.debian.tar.xz
 34ed5904d34eedd3396cd113bb3fca3bdc22f77c 1329466 claws-mail_3.10.1-2_amd64.deb
 079ea8367e11bf24353556081fb6ab185c3280e3 6697790 
claws-mail-dbg_3.10.1-2_amd64.deb
 49d63b9cfdb8aa29a78a2126975084b11fd31e6f 202700 
libclaws-mail-dev_3.10.1-2_amd64.deb
 f95fc1d5720245ce69236e5455727d957af090c7 69872 
claws-mail-plugins_3.10.1-2_all.deb
 98d0a9f5b8d1e3914b0ba0b9229b13da9c4057f2 90532 
claws-mail-spamassassin_3.10.1-2_amd64.deb
 3aa7410202edfbb3d1a29d66853c91ebb779bdf2 104388 
claws-mail-pgpmime_3.10.1-2_amd64.deb
 af847b1680c050137ce1a13145807d3ad7b203f0 80416 
claws-mail-pgpinline_3.10.1-2_amd64.deb
 e137349836dbf3356beb423420c4bae29dc5c4d3 81036 
claws-mail-smime-plugin_3.10.1-2_amd64.deb
 2f123e9d2774ddac90162202fe052e1b7f8bd5b9 84646 
claws-mail-bogofilter_3.10.1-2_amd64.deb
 7ee11d3d8a30ced750688d9d84694d94703ee1be 1211090 
claws-mail-i18n_3.10.1-2_all.deb
 0d549ee009a16b46d8a0f7dd87d3baea7cf54dd9 2429366 
claws-mail-doc_3.10.1-2_all.deb
 2cc337b4a4b0cbd1cfcbc019a0171c516e5234ee 151198 

Accepted dvd-slideshow 0.8.4.2-3 (source all)

2014-06-12 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 12:17:04 +0100
Source: dvd-slideshow
Binary: dvd-slideshow
Architecture: source all
Version: 0.8.4.2-3
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description:
 dvd-slideshow - set of tools to create DVD slideshows with menus
Closes: 750626
Changes:
 dvd-slideshow (0.8.4.2-3) unstable; urgency=low
 .
   * Fix use of deprecated commands.
 Thanks to Theppitak Karoonboonyanan for report and
 patch. (Closes: #750626)
Checksums-Sha1:
 a1baefed7b82c94b801f055537f3c0689fc1a0ec 2087 dvd-slideshow_0.8.4.2-3.dsc
 e72ba694e52879397a4c258551a13b0c8dbe122e 13892 
dvd-slideshow_0.8.4.2-3.debian.tar.gz
 ad8774ee4c76f0c3b69d2c525124f499e6bf0aa8 108068 dvd-slideshow_0.8.4.2-3_all.deb
Checksums-Sha256:
 4e682b02d6bc3fee8f0a01a8e1cb969734ff84a05cac26016fed5832ee8bddb4 2087 
dvd-slideshow_0.8.4.2-3.dsc
 236833951acab64ae4229c825d11d050a7f7d7ec5f15de6d6bb680136a9b0019 13892 
dvd-slideshow_0.8.4.2-3.debian.tar.gz
 c2a2571d450219e9e84efb16ea9a3322465e44dcafa0486bebca92b35c87fbc8 108068 
dvd-slideshow_0.8.4.2-3_all.deb
Files:
 1e7845d8b579044323b19bd43f5a9903 108068 graphics optional 
dvd-slideshow_0.8.4.2-3_all.deb
 5d293f171d82ca03cebbed29f3b72b17 2087 graphics optional 
dvd-slideshow_0.8.4.2-3.dsc
 29aa2715ca441fefb1d794137960f9cb 13892 graphics optional 
dvd-slideshow_0.8.4.2-3.debian.tar.gz

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

iQIcBAEBCgAGBQJTmY4eAAoJEOikiuUxHXZa7R0P/2KfdKkfeF4rEitneUMwsrft
Y5nx2+KR1PU2mLGl91rIf7+KC+GtbJrnQUGS590kkZmklctTkMm+HsQMMRozDctg
lOSbDERAyCuqp1CBAQcnmGF0fTK6ijOCaqHTb787IkEIu//5Knf1p/h4SRZQ5poL
pLNSUnkAr0wltH1i8vJG+D8IX7H4GUnCu1FFNU59mY/eCJR4wtWINLl7gZa7ou28
qxgcRolTxVvLVloGNMs3PUQGYkHSD6nuE9zfR4tWVak64eO8epU8VpRv0hnOb3jU
lpFTVqPIkKjluTXaDleRk+gBoF/WWAFGk9qZyoFG2N/Me7uk3iwM4Qi2IFCI2Buv
CgLpd/8CFx0LlfihUZPAzeOwgPPnVot28gEEvJ4yyvvQMjqLOI8MPBvvWLrP6TtC
XeQHl0JqK78Cumaxxrn8Z8L7frn9sMLU/ipX/FMlCJt6egVxFcPZTfdfy+NgO257
7sMMMHlx0KQ1hymD0ad+0cpbV9PmIOZKUrA4heg2GqR3fzSc2Q5K6GUNwMmmD+uP
6Ia7aC7jpsHcznWM+yWF6A2xjv1p5oefhoKdgXg1WNfM5UbNIa2t7FoRscYjWvXT
mXgFee0hEwNeSJkVzjmLZ2HOriYYKMvfmLl6UgVALfegW4kAILM//Z5xQMhqWe5a
BGRWhdRUgPtS7NglOUKs
=2DR3
-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: https://lists.debian.org/e1wv3hd-0006g3...@franck.debian.org



Accepted libbluray 1:0.6.0+dfsg-1 (source amd64 all)

2014-06-12 Thread Sebastian Ramacher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 14:34:26 +0200
Source: libbluray
Binary: libbluray-dev libbluray1 libbluray1-dbg libbluray-bdj libbluray-bin 
libbluray-doc
Architecture: source amd64 all
Version: 1:0.6.0+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Ramacher sramac...@debian.org
Description:
 libbluray-bdj - Blu-ray Disc Java support library (BD-J library)
 libbluray-bin - Blu-ray disc playback support library (tools)
 libbluray-dev - Blu-ray disc playback support library (development files)
 libbluray-doc - Blu-ray disc playback support library (documentation)
 libbluray1 - Blu-ray disc playback support library (shared library)
 libbluray1-dbg - Blu-ray disc playback support library (debug symbols)
Closes: 743571 746729
Changes:
 libbluray (1:0.6.0+dfsg-1) unstable; urgency=medium
 .
   [ Sebastian Ramacher ]
   * debian/control: Remove Andres Meja from Uploaders. Andres is MIA according
 to the MIA team. Thank you for maintaining libbluray, Andres! (Closes:
 #743571)
   * debian/watch: Mangle Debian version.
   * debian/copyright:
 - Add myself.
 - Update copyright years.
 - Document excluded files.
 - Add license information for JNI headers.
 .
   [ Rico Tzschichholz ]
   * New upstream release (0.6.0)
 - Improved BD-J support (Most BD-J discs are correctly played).
 - Mark BD-J titles supported in BLURAY_DISC_INFO if BD-J is functional.
 - Install .jar files to datadir (/usr/share/java/) instead of libdir.
   (LP: #1302319)
 - Added version number to .jar file names.
 - Added JNI headers for BD-J (cross) compilation.
 - Added HDMV/BD-J title information to BLURAY_DISC_INFO.
 - Added disc application info to BLURAY_DISC_INFO.
 - Added bd_set_rate().
 - Added color keys (RED, GREEN, YELLOW, BLUE).
 - Improved error resilence.
 - Fix build without libxml.
 - Fix build failures with OpenJDK 8. (Closes: #746729)
   * Repacked tarball to drop prebuilt binaries
   * Upstream installs libbluray-.jar properly now
   * Update symbols file
Checksums-Sha1:
 cc202ab2f52e35465dc35045906aa88f34614052 2641 libbluray_0.6.0+dfsg-1.dsc
 7bbe601bddd1d8cad7b94ac4b616e14e4cf0bac0 627046 
libbluray_0.6.0+dfsg.orig.tar.bz2
 ffc8afbb75d9730f711d65a12bb66ebd0c93104a 15728 
libbluray_0.6.0+dfsg-1.debian.tar.xz
 de53f8df7dd9143c661950fc90fc3877903ccdc6 135846 
libbluray-dev_0.6.0+dfsg-1_amd64.deb
 b729eaf28c05f6854388c13253ba9178a352ca5b 113958 
libbluray1_0.6.0+dfsg-1_amd64.deb
 eb65cee3e1729e5304cde0212a0409fe379c7e66 303988 
libbluray1-dbg_0.6.0+dfsg-1_amd64.deb
 dc3374ae7eea359069c858d5f393cb1c0bd1bcd0 505786 
libbluray-bdj_0.6.0+dfsg-1_all.deb
 3819e60a33ff7d27685bd5a42cb6c5c44b43b060 18246 
libbluray-bin_0.6.0+dfsg-1_amd64.deb
 aae60aa3fee414ee3f6d3718780dd30bb053ba36 342792 
libbluray-doc_0.6.0+dfsg-1_all.deb
Checksums-Sha256:
 f086d9cd35ca6c4515d2c1448da0dc26d5cf84e95db761e7b8be1022f844b598 2641 
libbluray_0.6.0+dfsg-1.dsc
 1bcdec40caa60174ea190f6efb7f05de6bfc8df460ce27ab563ac8fed7ad944e 627046 
libbluray_0.6.0+dfsg.orig.tar.bz2
 f4922edc100e832de761f4ac54910348d051d9aabc19801dbf2b83fd063e6e4a 15728 
libbluray_0.6.0+dfsg-1.debian.tar.xz
 0e60b9d87acf9e7295a608a522a3e56daa44c3a20c3553a8795fffe6859e68c2 135846 
libbluray-dev_0.6.0+dfsg-1_amd64.deb
 ec96b9a5393677011cd00b2b19cab68b9cfc9661371ee15fcd7595e26bbd4c76 113958 
libbluray1_0.6.0+dfsg-1_amd64.deb
 7fc7de9e55ec58e5385ddffbdccb6609db2790ee5de0e34f3eb2f4fe34d8fe68 303988 
libbluray1-dbg_0.6.0+dfsg-1_amd64.deb
 15488c33e36218a2474ae6bf75dac03c6de488f48362016d1209522ae527c995 505786 
libbluray-bdj_0.6.0+dfsg-1_all.deb
 e2ce8a5174c13b01977defa4d3db85a439d9c58e44fffe04e74adeacaf9e62e6 18246 
libbluray-bin_0.6.0+dfsg-1_amd64.deb
 0c13f9d3239050fbe798a2164fda633bb4195b0734582e4dcea2512cdd8c035a 342792 
libbluray-doc_0.6.0+dfsg-1_all.deb
Files:
 4488bd16b34995925446c4d0f48b76cd 135846 libdevel optional 
libbluray-dev_0.6.0+dfsg-1_amd64.deb
 05947992c916c4b1b61cb582ce4238bb 113958 libs optional 
libbluray1_0.6.0+dfsg-1_amd64.deb
 9d5b8fab772f27bac66a68cf96bcf03e 303988 debug extra 
libbluray1-dbg_0.6.0+dfsg-1_amd64.deb
 6ccb37f6b37117320b222d02ab3d6317 505786 libs optional 
libbluray-bdj_0.6.0+dfsg-1_all.deb
 7df89ff799bd39440896167260411146 18246 utils optional 
libbluray-bin_0.6.0+dfsg-1_amd64.deb
 69ee42598b44f57d902a44c3b553dbdc 342792 doc optional 
libbluray-doc_0.6.0+dfsg-1_all.deb
 51387148b795100543e762f79bda95a6 2641 libs optional libbluray_0.6.0+dfsg-1.dsc
 93e1d25a0e3ec4711c6279783b612482 627046 libs optional 
libbluray_0.6.0+dfsg.orig.tar.bz2
 e7ef6e6b85d0f539cb04cf15dfe51900 15728 libs optional 
libbluray_0.6.0+dfsg-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmaDEAAoJEGny/FFupxmTtRIP/RvPz8V60umAG+vMWvISb0HH
ur51tWofhH9BJOlJ//S8S4l65ydr3W14RyGWPiV/jp3Dfi2EEXuwe1i3C6LJIc2X

Accepted node-lodash 2.4.1+dfsg-1 (source all)

2014-06-12 Thread Valentin OVD
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 12 May 2014 16:19:58 +0200
Source: node-lodash
Binary: node-lodash libjs-lodash
Architecture: source all
Version: 2.4.1+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Valentin OVD valentin@live.fr
Description:
 libjs-lodash - Lo-dash is a Javascript utility library
 node-lodash - Lo-dash is a Node.js utility library
Closes: 748610
Changes:
 node-lodash (2.4.1+dfsg-1) unstable; urgency=low
 .
   * Initial release (Closes: #748610)
Checksums-Sha1:
 72b19ae524fa11357248743a7436cccd50c16962 2121 node-lodash_2.4.1+dfsg-1.dsc
 8395e8263a1ca1ea2e02e90a8a5092286006d4d1 807593 
node-lodash_2.4.1+dfsg.orig.tar.gz
 e7641ce752207828147c5aa86d87a59664f94b76 3316 
node-lodash_2.4.1+dfsg-1.debian.tar.xz
 22b003f744ab820c390fe2080a5893888b941f29 45960 node-lodash_2.4.1+dfsg-1_all.deb
 98882a7258c89819e87da78bffc15662d2bf6e1e 52172 
libjs-lodash_2.4.1+dfsg-1_all.deb
Checksums-Sha256:
 41d063d571636c54754eb0cb2e13dcde2fc0443358399c1a0788bfe82ae49ae0 2121 
node-lodash_2.4.1+dfsg-1.dsc
 9fa1b519629e61df8c72679315765d91194e994d87112bbd072a2206825dffd7 807593 
node-lodash_2.4.1+dfsg.orig.tar.gz
 c503696a4412dd8f0c1dcead454b03a52f9a0d18e38402aa0f2ff36728d6c9ee 3316 
node-lodash_2.4.1+dfsg-1.debian.tar.xz
 b64119a3f0c5de8378985c2abe6c9823d68831a91fc7739ab68f895a0a550699 45960 
node-lodash_2.4.1+dfsg-1_all.deb
 584a7f3211fd087793564350c1524e27bfe755a71b0e6481cae1d82275698a07 52172 
libjs-lodash_2.4.1+dfsg-1_all.deb
Files:
 7ef7cba7d2ffeb9c71a6399603f115b8 45960 web optional 
node-lodash_2.4.1+dfsg-1_all.deb
 c12d8422f275ace498f82dd7d90e382b 52172 web optional 
libjs-lodash_2.4.1+dfsg-1_all.deb
 f8b44cd808e98a648c30784ceba6dc40 2121 web optional node-lodash_2.4.1+dfsg-1.dsc
 22ca652a127cb0a7ee45ec5326521954 807593 web optional 
node-lodash_2.4.1+dfsg.orig.tar.gz
 3b27ecc207c982abbb175fec02299d5e 3316 web optional 
node-lodash_2.4.1+dfsg-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBU5gnr9MN7NJZkyL8AQp/OxAAwEr7NveUxDGVvZometfwdaBrGGbUJ2T0
L+vKd5b7/JM4naTDhp2ce0Gm+Ue3UUJ6LQAHXV2EJstP3hQDCinDwKGynshKrebw
NlWZPtrGSGnJofxrxV182fAeI7454iZ47TONDxMN4GTnTbcD8bU8yNMQgAzSxpZm
rQqaJdPzYPXbZedsNgbonPWW2OBRrI8f+6vCScZnA7uB1UHW16Nb/xdR/LgEzVyA
3VU4d253n9JNaPj08q649u4zD3PmLKgDHL4abwmG8/fRSjM7lDdIFpayFLSgqRzh
M9oZEiRI8q+h5ajnBwpj8VTSwGE9WYd0D8EmxUjpp3iEuagQ+X9/FAnA0hcqESkU
oLQivI8nMEySXSsyve8CV3df2POpIigOC/YLAZSMZrBIUDGrPA4is0m6ZV6e04sq
LjsfwUIXyH2hdIhIzwgpA5wJ0W60KJO69JzvP4YdkYhvXfJNCokVaoGVHMPYPUEI
NRP0px+x9mK/NUw5J0CaHQni81xcDAGkcdHX1i6T+GNUPA7yP+jieyFptvp5EHXX
Yq/2Bi/vX+bTcEE//TPTHiIiGXx2PMUqCAWyK0vpGJ+puXjkZbz2oFvu2YkqT3Fl
3yh4MFVjdU3eBmWYOkt3EkaP//MWlq16VbPm6ZJE7H7TLe6ZLK3Sgukdj4ezny/R
dkj+r6CcRNE=
=cCSI
-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: https://lists.debian.org/e1wv4bu-an...@franck.debian.org



Accepted node-findup-sync 0.1.3-1 (source all)

2014-06-12 Thread Matthew Pideil
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 30 Mar 2014 17:05:46 +
Source: node-findup-sync
Binary: node-findup-sync
Architecture: source all
Version: 0.1.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Matthew Pideil matthewp_deb...@teledetection.fr
Description: 
 node-findup-sync - Filename searcher module for Node.js, event-based 
server-side
Closes: 743160
Changes: 
 node-findup-sync (0.1.3-1) unstable; urgency=low
 .
   * Initial release (Closes: #743160)
Checksums-Sha1: 
 447b829920c21b8eba5332c48c10b5ef66538ab4 2025 node-findup-sync_0.1.3-1.dsc
 994e10d30611bb142f70979c88aaa6af9756d1c0 3504 
node-findup-sync_0.1.3.orig.tar.xz
 e4d7e0fa7ead8080f47983ad28cbc2f938cbd9f5 2156 
node-findup-sync_0.1.3-1.debian.tar.xz
 b002157c6a460425990a9cc3a4c0a638531b5182 4446 node-findup-sync_0.1.3-1_all.deb
Checksums-Sha256: 
 1e9489f071bbf251a998aeff79ce6c90346aa301ca5e6cbda5fd9c3ebf96b494 2025 
node-findup-sync_0.1.3-1.dsc
 18d2122051cc4686f930508420808e1550a1b13174fa675844f1d286beb24b28 3504 
node-findup-sync_0.1.3.orig.tar.xz
 60bc9818f9bf9a50bbd0644ef77a487bc65c2435f5cb5ead4babb6509f7df4fb 2156 
node-findup-sync_0.1.3-1.debian.tar.xz
 1f543b947eb52d53e6c2bb959b900309fb302c4d211f7fc6bb87fb928c8cba24 4446 
node-findup-sync_0.1.3-1_all.deb
Files: 
 c72db1fe54bc176439e0e6f8532d7d7e 2025 web optional node-findup-sync_0.1.3-1.dsc
 ec93afc6ebf45da46ddf6570f1a07e6c 3504 web optional 
node-findup-sync_0.1.3.orig.tar.xz
 63c4cbb5fba4314f49cf794b97eb6c49 2156 web optional 
node-findup-sync_0.1.3-1.debian.tar.xz
 9dc1526bab845b87bd5c0b32492c4095 4446 web optional 
node-findup-sync_0.1.3-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBU0ZgC9MN7NJZkyL8AQpHHA/9HzGjU9czPl9v14hoTrPw8m0L9CJE+GN4
sWackXGTR9C/7LnPgpHlXv97+1hz7yA2sL6jKv50MHMZIndeLXA6B4dfW3KyKBe3
8O6pLIOXDdqvpLHoxhcMEJwW8msxzU+2ayUcBtlgXPKcOAvfAn6ICxmVCBwBp+bS
rz8pshBmLDA9f30yx4npmjM/2ibDQge9eysgOnFJbFHN8TVIxddywr9kuslxAsCk
8j1dzA9N6yzjmvCt2kADYDDJvUbSjn4a6phWQfCLBXaPQP9EjjNm6r8+Sn/40fxx
fClbqlPcO/xJwJHk0D7qws4s5qZdM9VwH+FvQDjLCQDTS4pITCURQRojRaV2QUrT
snBJbtGeQSXR9sf1USjrzYUtexU7/FtBBAlolxj2cBG/dDZLdPYu3QUyuI5QAbZV
efWFGG2rmxOEtQ75cimX6Etf0PUtEc9YHzYR/QUWTdgx22TliXgfktIVS/JN0vdw
vDB20/BfiLrFDHYVnzOddQ1S4gtbecFlFQ6zgLkiEz+gm4DAIHh+aAeTGCn0pAvR
XaXncih48jlkHsCSKQn/k022yCQmyXMRiwJGMksdEhKCejRjWR1RedhMMf3/WPvK
8bQdCVzircYpCNV0fUwtX0fMiyXIT0ux3ASYV+E92ldvXCoRvoJNNtfD38vxwP8k
BY96BIpSkGg=
=5FLs
-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: https://lists.debian.org/e1wv4bu-av...@franck.debian.org



Accepted bobcat 3.23.00-2 (source amd64)

2014-06-12 Thread tony mancill
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 00:14:10 -0700
Source: bobcat
Binary: libbobcat3 libbobcat-dev
Architecture: source amd64
Version: 3.23.00-2
Distribution: unstable
Urgency: medium
Maintainer: Frank B. Brokken f.b.brok...@rug.nl
Changed-By: tony mancill tmanc...@debian.org
Description:
 libbobcat-dev - headers and documentation for the Bobcat library
 libbobcat3 - run-time (shared) Bobcat library
Closes: 751305
Changes:
 bobcat (3.23.00-2) unstable; urgency=medium
 .
   * Switch explicitly depending on g++-4.8 to g++-4.9.  This is only needed
 because sh4 still defaults to g++-4.6.  (Closes: #751305)
Checksums-Sha1:
 32e7920b7146e7c1f24e818efb452a343e76e368 2126 bobcat_3.23.00-2.dsc
 d313efcbb42e662451e36675cd1955141275f8c4 11876 bobcat_3.23.00-2.debian.tar.xz
 651f73d20478b00e17761715ebe2f9146ab58f21 256404 libbobcat3_3.23.00-2_amd64.deb
 b43798824f988edd45f134340ee7b37e2d322525 1414274 
libbobcat-dev_3.23.00-2_amd64.deb
Checksums-Sha256:
 a09e965b6b6e416071bde82630d979996addb6d0a4c4d9046ca9c084c9e0f902 2126 
bobcat_3.23.00-2.dsc
 e105764adfc8083db8315171375c34e46b0c8b8733fa4942c02a7933875cfccd 11876 
bobcat_3.23.00-2.debian.tar.xz
 f67c4db8225014ca691acb8df5456eaaf92a887aa1f90c56a4c9e1cb3b7b261d 256404 
libbobcat3_3.23.00-2_amd64.deb
 c56319ce18a9b07766db133b8eeff8f320e7dff4a888431ab32097567f714190 1414274 
libbobcat-dev_3.23.00-2_amd64.deb
Files:
 af9946a268fee9cdd06680bc7ea16bf3 256404 libs optional 
libbobcat3_3.23.00-2_amd64.deb
 e23235e3a8cdfffae1ce32c2982fb04b 1414274 libdevel optional 
libbobcat-dev_3.23.00-2_amd64.deb
 7a218b18b22c1537e8cc7c40b662b7af 2126 libs optional bobcat_3.23.00-2.dsc
 c1e0cfcbc9621a7db601c2b16a0b332c 11876 libs optional 
bobcat_3.23.00-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJTma13AAoJECHSBYmXSz6WJ/IP/j6kcMs7PZFPEPS2NSC1UDwV
Xu8W+fPOlHlGJpbrjmi3FqtIvi9gn4WCu8UBqZu7W9dWqfVC7O4LBd+Qw9UmQh44
hGY/jteOtYqMCy6QC/2a6OjCGl7preP6HkTOcarF3anpQchmhfsT03hHbk/ycGTw
/dTUKK83UO9MiYDYmZDD6uxSoHgJlyPAdk36jSSYzbgYsbdwN5c2q42Kuri4vcHB
Ul/Pxo4KHfYbp6bRuXbtDs7iH7kGvzsjtKc3pato6/z5QiLOznm3n7vWsi605cdo
7maYwHeihAzesymK+UCU84AAwANZ8V3DstfedUZNHZVBDUYmV9G944lgLWzbZ8gJ
IXKi1uXg9KPPSlLYmOGVX5j1jB/TIJNm2LecP4+yXAwmJQLW5Wkn/4ElMXIaldj0
eroxDQAuwVd/IGa/3XlGm96cNcIHD8YBPxpGBGHdmzWgqajYDUtz30W1/M/WufzB
H9E9wqXPaROPHuNi6cHPzrxYpnn+V7/azMWLnZvrZs31AO/7fzQPLAQHPYD+AlcW
OqH6wqcdCyn9qU00Kx83UZ5A8SBqFZoF0EEwJiSzfaWIVEm5uwAbKfYfNR0/U7HL
Tr6O0Sgxs+7ERwHbKkxFJumXygyICZWJ7UY4TJEsCcI6CTKn8JJyFmQu/bcPqVJi
Esyq73LlQouNxkwmWnSN
=Xlza
-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: https://lists.debian.org/e1wv5n0-00081t...@franck.debian.org



Accepted oasis 0.4.4-1 (source amd64 all)

2014-06-12 Thread Stéphane Glondu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 15:21:21 +0200
Source: oasis
Binary: oasis liboasis-ocaml-dev liboasis-ocaml liboasis-ocaml-doc
Architecture: source amd64 all
Version: 0.4.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Stéphane Glondu glo...@debian.org
Description:
 liboasis-ocaml - Build-system generation for OCaml projects -- runtime
 liboasis-ocaml-dev - Build-system generation for OCaml projects -- development 
files
 liboasis-ocaml-doc - Architecture for building OCaml libraries and applications
 oasis  - Build-system generation for OCaml projects -- binaries
Changes:
 oasis (0.4.4-1) unstable; urgency=low
 .
   [ Stéphane Glondu ]
   * Team upload
   * Imported upstream version 0.4.4
   * Remove last patch, it has been applied upstream
 .
   [ Sylvain Le Gall ]
   * Imported Upstream version 0.4.2.
   * Remove most of the patches, they have been applied upstream.
Checksums-Sha1:
 c8763be47a75d7000b915a03e7de36ef76962897 2508 oasis_0.4.4-1.dsc
 e3b09c0c83a6d989cf6daff11749a839372bf163 333041 oasis_0.4.4.orig.tar.gz
 9fd1ddc758b28bb81d0bab5120c6adfe79d4085f 13340 oasis_0.4.4-1.debian.tar.xz
 1fc1f126c26c800b97a084b2ed77cc82e7ed0cde 1502676 oasis_0.4.4-1_amd64.deb
 f8c4909d80dc85d366dc48ac2123aa72e5c653eb 508074 
liboasis-ocaml-dev_0.4.4-1_amd64.deb
 0a50f20b061c7e88db9e35449125b854d3d40cc7 1047486 
liboasis-ocaml_0.4.4-1_amd64.deb
 de683586489a390b7d82dab8eeabe96525a7d9ec 93308 
liboasis-ocaml-doc_0.4.4-1_all.deb
Checksums-Sha256:
 e718e81f65aedd834e82ef1159dd6137281a5fd5dc81a60a60e758417e0d3d00 2508 
oasis_0.4.4-1.dsc
 90a99ba342c2fc63afcc0b12fbef022153de27478072ab3b302cf7adb4bc526f 333041 
oasis_0.4.4.orig.tar.gz
 c2a357748c43d6ca64714bcd03f9e363c946023249fa4906a61cef412eb0fcf9 13340 
oasis_0.4.4-1.debian.tar.xz
 1d56d8de858ccf9ebc988383feed5cfd520afae7b7f24a199e968413f170b945 1502676 
oasis_0.4.4-1_amd64.deb
 f0e614eee706e8e439a48901b1f7fe4ea7c40d94f96b84eee97677adccd9d8c3 508074 
liboasis-ocaml-dev_0.4.4-1_amd64.deb
 2fd951b16dd8c7e36e5871e9baa7dd5cde731f1422bf1c9068a69beaf0f1cc91 1047486 
liboasis-ocaml_0.4.4-1_amd64.deb
 9f2b66bff41ac28cee9756583724f9f61cfc00513bfdcfe0217e17a5f8564472 93308 
liboasis-ocaml-doc_0.4.4-1_all.deb
Files:
 17d9e63ba8b4b5184086f839c9389323 1502676 ocaml optional oasis_0.4.4-1_amd64.deb
 c4d39981f916c54fc1fa0f5ef43e1c69 508074 ocaml optional 
liboasis-ocaml-dev_0.4.4-1_amd64.deb
 8f4d4def0670eff5bbd9d6f5ef5da5fc 1047486 ocaml optional 
liboasis-ocaml_0.4.4-1_amd64.deb
 f2e06b0cf4a9dea29c155abceea3f4e8 93308 doc optional 
liboasis-ocaml-doc_0.4.4-1_all.deb
 ccb72bee2c89e6182d9860bf03892271 2508 ocaml optional oasis_0.4.4-1.dsc
 847c0cc9ec02109e3a1d8464ded0d9e4 333041 ocaml optional oasis_0.4.4.orig.tar.gz
 ad4c4bd8793044d6820a923d966f3d24 13340 ocaml optional 
oasis_0.4.4-1.debian.tar.xz

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

iQIcBAEBCgAGBQJTmauBAAoJEHhT2k1JiBrTMCIP/1Ubm9jjHF9/qUaZax86Zzwg
1nOG3lLZXSSBlTF3gtItULDESlx/3zldxe4CtlogbujdG+CBdskTYt3DryDCNFUZ
3rqVNugN3g6t9lQPXW9SPzvxi5OWqhz+4Ay2rP5/dshDNqLN40lFvGgE8WKulZUr
8w48AuA+wHnbChLEZ58wJAhLSwCrmdp7pJMv19ryLHz33mtdp/+2jH3kWiZPvYY6
FitYb0qNtc4+pDiZYCbIR3preCJ17xcFwQ95f5biI0MFID+afSM04Enw/axlenxP
CLzX2W1e+RULWzCZz8DjDcFTNeHNI48PuUJ2LkcyzZ0x3an/rHYeWd25n7tq5uqn
gHoD5tqYMORmIUHxVlTOwMVoI+FKofi/e1KXqXaxdeJA1bFb+TrcBSBUOfqX6vtH
8Ch+lxC5eY9xIT6oPRmgobtLTQqVrb1n7+jblWAO2zwoL8xYC9eB38QECQY/d4nv
2Ni/6wjb+gm7lUzdWuxRSh1pXxykCEZCMeDAv4ra6guMTegpowHbafigjn6Hvolk
VSe1qOzQ5A0MBzYCkZBrYIL/fpiGP2yQZeXE9Vb6xAUu4Mr0fxDmd7oDYvdGX1ND
Cy808+mGK+e7sLinog643ICV6jTN1VN0DBmydv6Udd5PAlaySimQBfDvrCVSfDj+
e/MQJVSSB40yvcFjTEXE
=2wOQ
-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: https://lists.debian.org/e1wv5na-00089t...@franck.debian.org



Accepted blackbox 0.70.1-22 (source amd64)

2014-06-12 Thread VDR dai
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 22:44:02 +0900
Source: blackbox
Binary: blackbox libbt-dev libbt0
Architecture: source amd64
Version: 0.70.1-22
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: HIGUCHI Daisuke (VDR dai) d...@debian.org
Description:
 blackbox   - Window manager for X
 libbt-dev  - Blackbox - development library
 libbt0 - Blackbox - shared library
Closes: 751146
Changes:
 blackbox (0.70.1-22) unstable; urgency=medium
 .
   * QA upload.
   * debian/libbt0.symbols: Fix ppc64el symbolset (Closes: #751146).
 Thanks to Breno Leitao bren...@br.ibm.com.
Checksums-Sha1:
 cfe6e3ce958b78edb49d83896f8c34d350728cd1 2046 blackbox_0.70.1-22.dsc
 6a9447f5218743394256348873da7bf4e0940f01 20392 blackbox_0.70.1-22.debian.tar.xz
 071eb85f7585265cf433000b2fde172640eb1e4b 213666 blackbox_0.70.1-22_amd64.deb
 e58a0999c902948ffbd1e4f45152a8cba5440791 105640 libbt-dev_0.70.1-22_amd64.deb
 7d762d00c5d581f21ae278107282051dd9aa7fb8 92874 libbt0_0.70.1-22_amd64.deb
Checksums-Sha256:
 b1372859986893efd5cf8d84e265db1ca4fafb735ff02ba605ebd1632e6cfa41 2046 
blackbox_0.70.1-22.dsc
 603e6f142a54fe28b9385f401fe6e7f42cf61056782833c6a337d429e4fec436 20392 
blackbox_0.70.1-22.debian.tar.xz
 60c7f80458f121ce04d4c3f2ae107f85c4c8dca9e32fa2318be1392dbb54662e 213666 
blackbox_0.70.1-22_amd64.deb
 7013b11b7fa84d97d3d4a797166d50dd221c06b02a1feb0a8aca8ae898c9ed70 105640 
libbt-dev_0.70.1-22_amd64.deb
 528f7606cf5549717b0ff517b3c05a15b4d4b3bc747266c1672de713aeb12751 92874 
libbt0_0.70.1-22_amd64.deb
Files:
 1f563183f97c0093ebe7fa6d2e53e60e 213666 x11 optional 
blackbox_0.70.1-22_amd64.deb
 cf267e090c9b08a65a5ae87db389c8b5 105640 libdevel optional 
libbt-dev_0.70.1-22_amd64.deb
 693ee5db966e1ace0992cc1469ab6f3f 92874 libs optional libbt0_0.70.1-22_amd64.deb
 b349e17d85b898131fd526f0f2cca924 2046 x11 optional blackbox_0.70.1-22.dsc
 4bf2cb91fa82b11e74976966b3e62d60 20392 x11 optional 
blackbox_0.70.1-22.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmbBvAAoJEHg5YZ3UOWaO+V4P/RdyU1O06vj5jiMuceyQWn/p
4kHkd4WqP2Pxq1Aa3jr9qQKBvrriz53ighGkDeNn2qim2ZAl/UA/FqGuNCyAF2Hg
BOS85NvhlbJNhuza9hkRzEVbDBxPTG3H6EaCtsJKO780giCA+Ct/iUFZSJvAortY
co55espLd2+8zlhbK7haXn0DlrsnCLUbwOlpLPMblUwWPx3tLJi/uhIKr9w5fB0K
lKIrZhNrnUR3aWYN5eYFZyNmP/KizPyGXaqP87o7Sc0abtggnJIF0ogxNLzF28ET
2Cxs5EyW2JhA96TXnKj7C9DWHThkUN1ze/+7AIg5lRai6Ldgu7L1AblWaAV4HQeT
qAsYzdgHMMJ+AJHcZJ3SPvJfvII9Cqaq1b1wK4A9URo7k+vgI6CVaUcy1Q4nBMg8
ADL1dUW8gFYen4Z7UZq013qKRwuR9N7AXEguSXrmIBbG556KibiaHeI/huzkNrwg
8SSaQua7satey13MQuncpMosj5+GdeDuHvGXpaOtM8Ams6ToE8/EVlGl5x7/eCoL
fN2d2h+jVN8JfQBfIpLsDpFWl7uB3oBptWT/tofwIXwkMRp8Wv92z+sQmHF7Zmmh
5HTF+CZk+xR/76FcBMQOMZWWobre7+Gw80u0Rz3R+miQWj/XiOkcdmmg4bnAEtxm
jFIn8RcNzJP28oRCM1ws
=2cnB
-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: https://lists.debian.org/e1wv7fh-0004bx...@franck.debian.org



Accepted iprutils 2.4.2-1 (source powerpc)

2014-06-12 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 15:14:40 +0100
Source: iprutils
Binary: iprutils iprutils-udeb
Architecture: source powerpc
Version: 2.4.2-1
Distribution: unstable
Urgency: medium
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 iprutils   - userspace support for IBM Power Linux RAID SCSI driver
 iprutils-udeb - userspace support for IBM Power Linux RAID SCSI driver (udeb)
Changes: 
 iprutils (2.4.2-1) unstable; urgency=medium
 .
   * New upstream release.
   * Install upstream systemd units.
Checksums-Sha1: 
 222e199714e71567ef99bbde451b658294930f6f 2043 iprutils_2.4.2-1.dsc
 8f1466fe5800853e579229b7af6a7eff32d0020f 182425 iprutils_2.4.2.orig.tar.gz
 d48564a653aa82cfffe0d213f329d77d5ab52b94 8152 iprutils_2.4.2-1.debian.tar.xz
 97c3f5f9548a6d6538a1dc6283fdf3255b875a95 151518 iprutils_2.4.2-1_powerpc.deb
 614cf0ad697df180e0af345dc14af1cf531e899a 55522 
iprutils-udeb_2.4.2-1_powerpc.udeb
Checksums-Sha256: 
 a480613b5fe0a2121c89b2ed17693ef22ca026cef32145847094fdfacd73 2043 
iprutils_2.4.2-1.dsc
 a6aa5a41cb211afb4df3466ce300bdbd599dc6a4718f15a2cf7e8840a014d8bd 182425 
iprutils_2.4.2.orig.tar.gz
 868f1833105a7b2da47ee0ebede3d0e8968722ee06af5619022bdfb612d82f4d 8152 
iprutils_2.4.2-1.debian.tar.xz
 61c3a05eeadd3b1847b0ebd4163773c4db824c992b885230ac410c90e5bdb4a8 151518 
iprutils_2.4.2-1_powerpc.deb
 55f3f3511d802f98f89cd3d905e247547bf653f1c17edfb568dc4767b981ca47 55522 
iprutils-udeb_2.4.2-1_powerpc.udeb
Files: 
 8488148bce2b4d88f2b23fa849784a50 2043 admin extra iprutils_2.4.2-1.dsc
 111f17a3fecc3065d18e361626a766fc 182425 admin extra iprutils_2.4.2.orig.tar.gz
 20216ff17b0502b5c6bc5a6dbc136e25 8152 admin extra 
iprutils_2.4.2-1.debian.tar.xz
 0d57fa3059cea2becbf6d459ea22c058 151518 admin extra 
iprutils_2.4.2-1_powerpc.deb
 ba0d031ac246fa90cd4dcee513ebd0c8 55522 debian-installer extra 
iprutils-udeb_2.4.2-1_powerpc.udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1
Comment: Colin Watson cjwat...@debian.org -- Debian developer

iQIVAwUBU5m2uzk1h9l9hlALAQh/cQ/+N843P69NnORF8UHOBdmlWsn7Zv9IzeWU
VH7s45Yw01tu+egj5h1NRT2vWR9i/pCJDbApzOZFYBhAgjCWzEjwQ/8H5ozYnCoz
SXCfeTCNXCLNsipY5E3IXOGyfWsvvP4ZTmV0HglZ9g0mIHtjSwHDWkCOYQSTe4cp
WJHBR/LqB36eYqS5CpdI6gIoz0MIjDY2gl+9XPoxwrv1QoY/aGd23tbmDnSh03Zn
VvnokfjxXzC0xEgfARvUOa090THcYPS+zEwKDwsKQ03D2aHJvkodpUGi0qD9Jpqv
B9hTBeLoGGJwbOhWQ4aKLyPdGVdjnvhXRrnDGh4i6JT9wkezXE3V/Mzbqz69aBhV
6gZ0dt+kCS4Sw1THOMBYpZ0foojQwv4sZ2G+tbgzdfKxEglU1fOAeVbAvemc0q1/
LhrkUoixNLFSQllMrnIuU0acJ/30ru4HSRNy3QGJfxStEwZzjAyQnWNflJWq/hq+
AoQxSvlKryL6JvczLwOkf/aYQCxVXwZHjXMJ4oNm+lc6Rba/adZ0aHqBJf/rDn7u
5K/YCEn/MHyXR6XZB6tU7HbHFExX0D7M/K/EqQU+F7RdBamx3aFWtIwYnad5R74z
hYxKVb9ZBZYy4tehlHqYjdGawG1RH96zB2z2kH72GtpEL0fFezqDVBudAJklxYEr
RLOYsEm7Bto=
=R9Nh
-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: https://lists.debian.org/e1wv7hx-0004pf...@franck.debian.org



Accepted libtest-harness-perl 3.32-1 (source all)

2014-06-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 17:19:44 +0200
Source: libtest-harness-perl
Binary: libtest-harness-perl
Architecture: source all
Version: 3.32-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description:
 libtest-harness-perl - module to run standard Perl test scripts with statistics
Changes:
 libtest-harness-perl (3.32-1) unstable; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 1b1d5b1115e16413ede3c671863f0f1a85e0356a 2311 libtest-harness-perl_3.32-1.dsc
 7e94039be7be6577be39784159a00f1e908d484f 302549 
libtest-harness-perl_3.32.orig.tar.gz
 56f77c41f9474bfdfbf6328ffd46d0d123e93861 4884 
libtest-harness-perl_3.32-1.debian.tar.xz
 ef2e3c1a4650112266ce0100dcb1b7d277843a8a 275520 
libtest-harness-perl_3.32-1_all.deb
Checksums-Sha256:
 a603eeaaa7d28939edd7f388c903eb2e85942cd8813f855161e09505a969ce96 2311 
libtest-harness-perl_3.32-1.dsc
 9c76f04bf407bc826f5ee3747564c26596fdbec92a3baa29f62c13d26cfb3fcd 302549 
libtest-harness-perl_3.32.orig.tar.gz
 73b0a08fcae8ed6006c12aa5c94631889a1c81774a4fd2c9448fd39bbc72fc0f 4884 
libtest-harness-perl_3.32-1.debian.tar.xz
 7297b6ae979b5476f2488f0f85d23ab8616ff16a80cef92d4ef2230014f4c74c 275520 
libtest-harness-perl_3.32-1_all.deb
Files:
 972c0aff0cb9fa7b63d36889aae6b55e 275520 perl optional 
libtest-harness-perl_3.32-1_all.deb
 ba1896529f14f8be7e32b6f6eb9f593f 2311 perl optional 
libtest-harness-perl_3.32-1.dsc
 a1241b628dc80f5271ed9235c211e55c 302549 perl optional 
libtest-harness-perl_3.32.orig.tar.gz
 9f0543a44963c1c6082bab8ae88402fa 4884 perl optional 
libtest-harness-perl_3.32-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJrBAEBCgBVBQJTmcVTThSAAB0AKGlzc3Vlci1mcHJAZ3BnLmNvbW9kby5w
cml2LmF0RDFFMTMxNkU5M0E3NjBBODEwNEQ4NUZBQkIzQTY4MDE4NjQ5QUEwNgAK
CRC7OmgBhkmqBrKJD/9yOXVt65o6zaXW0R3xLNgmwhLJspPxmCh1xInYA1Dpy92c
jDS3GU9ZKNDb6SSb5B+n5U0dsoVtgstScA+To3R8UnyIEVMJ9HnofhCTTik5bjE6
pVTXuHGo7A+VMxECPryCWoYpGXmdlah9RgaCCnm18ksT0DRuSqKtQw/JHDK4G6RS
i8hefNvZelNnMlAk+u6QZKSKMFD6Ii9Ef6M3Lyz8Altek77lRhMtrs1yQ0PAXYiF
gmjN4DY33bXIURxMhVf7YNBcrzqKl+No2tpD0bSi9OJbgp19fsy7BPmbfOtrqKSS
7BS7dhD6uA3qRM2nEV61uHxeJWxgzaw2eY+gBinf36q5mdy9K1hWpC98/m66O4BY
LUeBqf77P00X499UwoYuNmqsi3oKg54EG4rdjOcE6VItu6YBjSEkdwvyn3ZMhCd7
6n6R2Z/Lx1Jp+lGMJ7SsokMTyOvu/66p3nc7WYkPuLesexN/EOAWuu84VWXkqLya
+X3Aq4nxKhwpyCw3ual78Q2jmP35JZdK/DaC9UM66JFqlMHnRjyryTThXBHYvk+T
pbooT0mGbXxmAMtPOXDryHZXuJGliB+Ryr+8mufEI2Mph3q/4T+iUbdUEI3jj0Gx
bOAnPBflbdVUhGYs3+oVSw9ydXWrTjbPnSZeq5kJOh/S1kCMKbXsHSbIK9E9iQ==
=piHl
-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: https://lists.debian.org/e1wv7in-0004xi...@franck.debian.org



Accepted libtext-csv-xs-perl 1.09-1 (source amd64)

2014-06-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 17:13:36 +0200
Source: libtext-csv-xs-perl
Binary: libtext-csv-xs-perl
Architecture: source amd64
Version: 1.09-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description:
 libtext-csv-xs-perl - Perl C/XS module to process Comma-Separated Value files
Changes:
 libtext-csv-xs-perl (1.09-1) unstable; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 b4d1e9594cbf70520832c26b7d864bbf15876227 2564 libtext-csv-xs-perl_1.09-1.dsc
 a5886328a31e7b5e7d95c7cde29a683c9bb39df6 139017 
libtext-csv-xs-perl_1.09.orig.tar.gz
 a71cf048b1cfac83b987a27c98ad2c31348928e3 6840 
libtext-csv-xs-perl_1.09-1.debian.tar.xz
 5944aa39282935af622ce839abf83850284c789e 89826 
libtext-csv-xs-perl_1.09-1_amd64.deb
Checksums-Sha256:
 1241aea9353283f2ea24e18c08fa73a73016936ab68ba0e741baf8b55bfb2e63 2564 
libtext-csv-xs-perl_1.09-1.dsc
 9900d9b35a5c2ec8106e7fcd8065ae87c6e3112fa03204321fdb10afc9fd03f8 139017 
libtext-csv-xs-perl_1.09.orig.tar.gz
 acf4fac70724699fc4ebdff6cbc7bd6cda6658c740437464d2c4b64e3d3fc4e7 6840 
libtext-csv-xs-perl_1.09-1.debian.tar.xz
 6673f7c524727815c9c38c888463f6b76381be4d98b8a3f5cc8d8b9d08774277 89826 
libtext-csv-xs-perl_1.09-1_amd64.deb
Files:
 23159533e0e7882900b499a17d5742c5 89826 perl optional 
libtext-csv-xs-perl_1.09-1_amd64.deb
 6fec1591861da9399af67f151d1ec96d 2564 perl optional 
libtext-csv-xs-perl_1.09-1.dsc
 d46f3e7ed3be84b2d426003d3e08fd4a 139017 perl optional 
libtext-csv-xs-perl_1.09.orig.tar.gz
 0baff8248762d2138e970fe50e034534 6840 perl optional 
libtext-csv-xs-perl_1.09-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJrBAEBCgBVBQJTmcP3ThSAAB0AKGlzc3Vlci1mcHJAZ3BnLmNvbW9kby5w
cml2LmF0RDFFMTMxNkU5M0E3NjBBODEwNEQ4NUZBQkIzQTY4MDE4NjQ5QUEwNgAK
CRC7OmgBhkmqBkO+EACCMLL71YRkv+do9Vn5eDvZoZBnrrsjOZWGn1Lkn0qJUx+i
Ci7EWG9X4WeGhxcdo8XIzEHwGXdgWBrbHLFnNjXrLdPH9K/fq8SzBzCWyk9COd9g
buWby1WJkur3SYdGoxSz5LUVlDEHdrY5xqbxvizDMT+b4QI+Hu9a3bzR0vz0wQgV
Rt97SHmy759iAKTwZuYANXSlIuLOrPBfRzfHVH3ajlKvmiZS3tP3CVFKlnNDq1Ax
lBtdOh4rUEx9G3WfJzLX9xWnm6qLQRR+jPZ8ortb6y+wIJWlxWvb8kUzeOqfkwln
fFL+4gSYS4PSqZz+QzG75w/zv0l00VBerfUF71FIC7qL4YI76XsxRbPkwPi3asvu
ewE/8fKEFf7o8gxwhLSjqekt5oEJ4TrXsBqBilWd9W3oJj9FRZbMQu1HlHzNfU5l
WxJWAvJQ2pvCwTpe6X2e6BOz9R9pHN7WsEQ2NQCpR7ubIk63cDzvuSJtJ5vrhzNx
HPIGii6ODirMZva8AOh/pODRgx8dquLCMFiowK4C13vL8x4fKs+MWiyhIhDnhkYE
sTo5DZ+gtpfqgvu9k1VORhyKP6DjZtZYjG0ETaih0lKvM8VBkz4IJ2BEAVx/BJOU
f9qRUGkobZ5XXtthlkO5J9Gp9SnIhjom7hcJn26pACmSPnBNFbVWEP/yWdOlKg==
=2mk9
-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: https://lists.debian.org/e1wv7iu-0004zr...@franck.debian.org



Accepted libiberty 20140612-1 (source amd64)

2014-06-12 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 12 Jun 2014 16:25:23 +0200
Source: libiberty
Binary: libiberty-dev
Architecture: source amd64
Version: 20140612-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description:
 libiberty-dev - library of utility functions used by GNU programs
Closes: 743673
Changes:
 libiberty (20140612-1) unstable; urgency=medium
 .
   * Update to 20140612.
 - Fixes infinite recursion in the demangler. PR gdb/14963, LP: #1315590.
   * Use dh_autotools-dev to update config.{sub,guess}. Closes: #743673.
Checksums-Sha1:
 7754d5eb114b04360de9c31fd8aded9cd940e741 1164 libiberty_20140612-1.dsc
 92888a1ca68725a4ccf4bb231f071b66474549d8 1053180 libiberty_20140612.orig.tar.xz
 f0895d51e221644ee5960bd930fb3c8259104d16 2992 
libiberty_20140612-1.debian.tar.xz
 3f033d2eebddf0c763c011bbfbbc4632234a6acf 136696 
libiberty-dev_20140612-1_amd64.deb
Checksums-Sha256:
 22376f55cf1dd19853abcde16b074ce58b69e0eb0094508bd0930ec579128dda 1164 
libiberty_20140612-1.dsc
 f343417f0125f7b4d8ca8b78b2150c73e2d8fca745483f489a467e5f438b3e19 1053180 
libiberty_20140612.orig.tar.xz
 5c18a706640c24548d439de7a27661873e4e770cc8612bcdc8cf8dc698a0028d 2992 
libiberty_20140612-1.debian.tar.xz
 3bd982e1c727ab24b7f662bb71ddf57748d73e5f62f0e4915e7de25d8e9002e5 136696 
libiberty-dev_20140612-1_amd64.deb
Files:
 20e85d6a6bc7e0861b5780d68e1e4d3b 136696 libdevel optional 
libiberty-dev_20140612-1_amd64.deb
 b7eb3a69314cc851f2b7080b701cfa3f 1164 libdevel optional 
libiberty_20140612-1.dsc
 caf70fb41b280998c575fa4bf6c5b7e1 1053180 libdevel optional 
libiberty_20140612.orig.tar.xz
 e6d0d4b95556cd8f8b87fb99dcebd696 2992 libdevel optional 
libiberty_20140612-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlOZuioACgkQStlRaw+TLJys/gCeKhTU+U/2TklWNbEhhxAn+gSx
XLMAn3xRlSZWHqMhrId0t+G5I1Sof+72
=K3LZ
-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: https://lists.debian.org/e1wv7if-0004vh...@franck.debian.org



Accepted minetest 0.4.9+repack-6 (source amd64 all)

2014-06-12 Thread Martin Quinson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 16:39:16 +0200
Source: minetest
Binary: minetest minetest-dbg minetest-server minetest-data
Architecture: source amd64 all
Version: 0.4.9+repack-6
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Martin Quinson mquin...@debian.org
Description:
 minetest   - Multiplayer infinite-world block sandbox
 minetest-data - Multiplayer infinite-world block sandbox (data files)
 minetest-dbg - Multiplayer infinite-world block sandbox (debugging symbols)
 minetest-server - Multiplayer infinite-world block sandbox (server)
Closes: 751198
Changes:
 minetest (0.4.9+repack-6) unstable; urgency=medium
 .
   * Enable LevelDB backend (Closes: #751198).
 Many thanks to Eric Monson for the report and patch.
Checksums-Sha1:
 4da9ad7756a35471f598c770e361cac10eb88922 2451 minetest_0.4.9+repack-6.dsc
 4310465234a372cb98bc2a3499311f43e7af4b51 21060 
minetest_0.4.9+repack-6.debian.tar.xz
 a4d81e152dd256719e49d282652c3e912101266d 1868720 
minetest_0.4.9+repack-6_amd64.deb
 1a5284384efc6a259c59058ac99f647766a28a09 33177754 
minetest-dbg_0.4.9+repack-6_amd64.deb
 976cfc6b92e5d4ac952aacbdca8e638f6c532991 1236624 
minetest-server_0.4.9+repack-6_amd64.deb
 a6c14403236720699319e34d159cca5ed587baeb 1028170 
minetest-data_0.4.9+repack-6_all.deb
Checksums-Sha256:
 7587b448dcaef1b31f5759f56fbe2531a3ae8ad2b21438983c955d52cb3b50fe 2451 
minetest_0.4.9+repack-6.dsc
 07b5f57516862904315789f711a5bd4f025250f6c558a9134d87fff68ec5fde7 21060 
minetest_0.4.9+repack-6.debian.tar.xz
 052e39be0d8cf6dd025885b90cd94c7d4fa03fafa551067b7dd7fe73c437a54b 1868720 
minetest_0.4.9+repack-6_amd64.deb
 f82efa8bde370b987f32ed601c5f30cfac17c66af7028b99c140d4999ea77e9f 33177754 
minetest-dbg_0.4.9+repack-6_amd64.deb
 ee1074e21431f80d5ae201713e50f4da1d632ac6f31ea4223562282ddea4eb21 1236624 
minetest-server_0.4.9+repack-6_amd64.deb
 1b74c1f9547fa880274e1e19456c1e2927356ddf6eae02ea8f87431c30dbbfe7 1028170 
minetest-data_0.4.9+repack-6_all.deb
Files:
 2febfe6ab8691594a6afc65c3bfa356c 1868720 games extra 
minetest_0.4.9+repack-6_amd64.deb
 2254c19b083e8e4e1ce52f45f80a9141 33177754 debug extra 
minetest-dbg_0.4.9+repack-6_amd64.deb
 84232a6d8249361e594ea4001a5b518d 1236624 games extra 
minetest-server_0.4.9+repack-6_amd64.deb
 982fd796cd7da5354ae9cc6be309df16 1028170 games extra 
minetest-data_0.4.9+repack-6_all.deb
 a893853fbe56b6cb972bcf3cab29cca9 2451 games extra minetest_0.4.9+repack-6.dsc
 c6f13b4b607405f524b9d54542d39cd6 21060 games extra 
minetest_0.4.9+repack-6.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmcNxAAoJEJi9lyRPc76ndbEP/R2S5WP/VlB+FUZFGPTV2BbB
AFbcYt1uUrfBktMVyhHo5KEruDWqOhpLcrLIn/Xq8zaUAi534UpXaqhll/m/7hxO
1WJaMt80cjAJYSSDIuEr1xZImDs457ZishzoFAJT3Oh0EgaY8T6RBrwLJNyk5IDr
Y2sQFevMbwqYFb6Hxhj7m+ZeHWC0qB2L7LNxYyrqwAd58VtkDkx4XjMItRk2B0Zh
uF0PMC5bPqsmKdJjRn2+W++tN4H8l01E+MvLjxx471pJOGiU+23M44gtTUjEZZ9F
fNrwgnID7TwqB+f1BUdUxRthUaycafepDlt1zoIj5BKEm+ZhuCW0jmPOGEyR1fOm
Ki/DqNO12MSqnetVBejIQ9Swq0Mgs3NXGuDKz55jEiXVzHkRHyeiBG7x6vbpIloE
DkdI8IXwDrI8SOCSuM0fl8WNGA8EIBB9fofSMnROBrnxXPwB+ZDAz+rF7wqeO4T7
/pQZnjYoXXgFG1rrEdf0yD2J9kGFqohJoa+JzCMKwF0Eyf5DbicYUw8jLa9MZ1vz
W93VsK5AFOKTvqZZuWsJ7HPRivCT69mPm+sQ3vPrL3yzh4O3H3w/YeS2/keigkQ3
1zBMAXUXkuDGV52hGLfejHjJmz4syqsb5/UIRn9Yo4uDMc7+I9likzlepvceO+S9
FvM5uI1YvEwPo15j8ltL
=RZ5y
-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: https://lists.debian.org/e1wv7im-0004fh...@franck.debian.org



Accepted natlog 1.01.0-2 (source amd64)

2014-06-12 Thread tony mancill
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 06:43:44 -0700
Source: natlog
Binary: natlog
Architecture: source amd64
Version: 1.01.0-2
Distribution: unstable
Urgency: medium
Maintainer: Frank B. Brokken f.b.brok...@rug.nl
Changed-By: tony mancill tmanc...@debian.org
Description:
 natlog - Source-natting firewall logging utility
Closes: 751323
Changes:
 natlog (1.01.0-2) unstable; urgency=medium
 .
   * Switch explicitly depending on g++-4.8 to g++-4.9.  This is only needed
 because sh4 still defaults to g++-4.6.  (Closes: #751323)
Checksums-Sha1:
 9e57cffc751baef86577ab1651a553ad8ab645fc 1996 natlog_1.01.0-2.dsc
 0484b62424082233f6c54d1079824cd092488396 7488 natlog_1.01.0-2.debian.tar.xz
 e4199da5f678230638c6d2f1de133ef6b306acf6 47754 natlog_1.01.0-2_amd64.deb
Checksums-Sha256:
 e40fc01448924671e5e9139b1ae7526d49da0ccbea4eafae05fa77922d496265 1996 
natlog_1.01.0-2.dsc
 e8aba620cb9cf3cded2a605a448b33eb8d2301ff1d8ccb127a8b0d480a2c1f9d 7488 
natlog_1.01.0-2.debian.tar.xz
 bb65b498ebbe9e4b2afd764ad579023420e5f5d908b4bc268cd2c244dd3de33f 47754 
natlog_1.01.0-2_amd64.deb
Files:
 0a37527d979f409fc6274f5f08f4246b 47754 devel optional natlog_1.01.0-2_amd64.deb
 9870164262aef172927d3ba15e7c644f 1996 devel optional natlog_1.01.0-2.dsc
 b1f367006fbedf243865e31b266ff7c0 7488 devel optional 
natlog_1.01.0-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJTmbBHAAoJECHSBYmXSz6WvuQP/R4WBgaAotEA+ZLeeOB1EUwd
dSrf6U7b/YMr+xXDizjBBLX+F59l+khqNKVHcCxBQYhkLm4f6LyK98sNrTiOIHnP
LRXsSybWdrsDXmRcmaBDA4H5JfN3xZLDNDrG+oN3v4VxIZ83rwJ4/6DZ8b4xPFU4
uJ+9DHvgXUmbxJgo/u4iVSJxbW1eO5GVQ/JAyF3M7K6B4kwF36Js6sUnU+eApBb2
pa6GKzGbNLvBchnMfWCzsTkBjjm/b9KP6PzLVcxNgMiWe+N0pyK5hSE7lMrFz8/Q
tBmiTaQugKPfUaPO+UFHPEb4t5+82/uHNuED9rrrTOtNyY+KAVj5Omr1T500AGib
awxSSe1/fXyVVbwUqeLQtGH8MCNNihQG8iUA4ymSmFVwCFXMZqn7sqzGPcSyZxU8
PO+lCbP2H4jZDG4IcgNHukWNtuSNo9FyPgzofSrZYZNVIytKT1wgCk33d/LK+lWu
N+HKxJ1PlYSXLMl3oZazRo8+eNBbOsVG82SvC9MHwyg4AQLuybh3xQqBYgE5kWys
86nbb3k6RfBkY/6W/gqnhrJnxS3CpKKbonVUm/t+1j0JBl7sXl6SLZUumPSwoutB
azMIg40sAb7LLE4c3de8mHliybPAO14hnZVWxxANgjxu/vwYohdLr/tpQMIfOEHI
2uHu8aaIuDJfwyCIGhI3
=gD98
-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: https://lists.debian.org/e1wv7j0-0004it...@franck.debian.org



Accepted python-virtualenv 1.11.6-2 (source all)

2014-06-12 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 10:50:35 -0400
Source: python-virtualenv
Binary: python-virtualenv python3-virtualenv virtualenv
Architecture: source all
Version: 1.11.6-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Barry Warsaw ba...@debian.org
Description:
 python-virtualenv - Python virtual environment creator
 python3-virtualenv - Python virtual environment creator
 virtualenv - Python virtual environment creator
Changes:
 python-virtualenv (1.11.6-2) unstable; urgency=medium
 .
   * d/patches/use-wheels.patch: Ignore EEXIST when creating the
 venv/lib/python-wheels directory.
Checksums-Sha1:
 723b60da6251d793f99e75041220c79206598600 2497 python-virtualenv_1.11.6-2.dsc
 d3f8e94bf825cc24e276c8f1c63b8eeb0715 1610581 
python-virtualenv_1.11.6.orig.tar.gz
 abd017073e63ec7dfcd4f40f3188557b68d75a37 41080 
python-virtualenv_1.11.6-2.debian.tar.xz
 80f96189a84b0081e8c4512194007f45977a7583 62546 
python-virtualenv_1.11.6-2_all.deb
 dcc4152f02580dd3e45e839f447971a64e689c70 61946 
python3-virtualenv_1.11.6-2_all.deb
 51aa6b8c2fd8dd605b0466fe6c42427be22b862b 18800 virtualenv_1.11.6-2_all.deb
Checksums-Sha256:
 ed3838ee50c4a36362c9737cd139ae5410c8f0207e173630eed6b15a9fa8c332 2497 
python-virtualenv_1.11.6-2.dsc
 3e7a4c151e2ee97f51db0215bfd2a073b04a91e9786df6cb67c916f16abe04f7 1610581 
python-virtualenv_1.11.6.orig.tar.gz
 a2378be17307b03410334fb7189e1cb97261f5fd880b8f17e96e29a5dcc30f5d 41080 
python-virtualenv_1.11.6-2.debian.tar.xz
 69957ef29d55d802bd359714caec2c780f692176743582070e6c48d6fb73961e 62546 
python-virtualenv_1.11.6-2_all.deb
 60253c88b3b24921c092028de61ad97fbd8eeeff1213a0e76ba671fe465cfbed 61946 
python3-virtualenv_1.11.6-2_all.deb
 6fb3cce57e7b5d37ee7b4952f02fa58b3e35d4fb3c8308c0ca013bb3b369cd1d 18800 
virtualenv_1.11.6-2_all.deb
Files:
 5d868cb6545134b8ac93afc5e4e0d3d7 62546 python optional 
python-virtualenv_1.11.6-2_all.deb
 ab2950cf5dabdc60c0923129188bb87b 61946 python optional 
python3-virtualenv_1.11.6-2_all.deb
 b10bf16fe747f9be532ea07e8d972278 18800 python optional 
virtualenv_1.11.6-2_all.deb
 cfad6021517e1048ee2142344c8a1516 2497 python optional 
python-virtualenv_1.11.6-2.dsc
 f61cdd983d2c4e6aeabb70b1060d6f49 1610581 python optional 
python-virtualenv_1.11.6.orig.tar.gz
 fa9c3191bff3d1c0352d685e1e86e9fd 41080 python optional 
python-virtualenv_1.11.6-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmb9DAAoJEBJutWOnSwa/DtAQALxu/pJKVH4G4kCJjYDN6JfG
aYc3whXVC7SpWRvB7zv2zt9V149FTr+T1dtsVvmhhESgbBilN8IsDDpWyFpb/B4i
48dw5+jtsbW7AH4KRHQ+4HvuckrjmG30smeOtlJ8KzuGySz8y+6RLl/wm1SWY6CD
7OGdR7BNqXeTN5AWFfdGcxJ9bTogUp/jz7WuXjMQHV7gLAoj7UzcBATTlzTso1ct
ldzEXG/FVb2IL8mmg4929t2Bk5um1dQh/53uU2z4sZC98CimZoHJk0alX89rG6Nh
egp4LdgQnZQ+dETkexwWxyDysiT6JVZmM1eo+lCuOYGelSz1DbxmVfqPG/4qyx28
6Qr4xRZydfXi9p9MTe24558V0tDggAD3b3HYSLkkN6vqBqX1fkTKIFK+bFFtsOsx
r+mggdowB5q1bsPF2kB5E3bjGconVqKkGOeKDnHmgpzH39S8iFuslGJzXbulv5Vp
7ZHtA0RvNTksQukBoPmnMiWBWL3+S3ZLvtNB/xV0LfYZKJ39XISh90kOQk7n5JdS
FFfKuJ+KZZqTRbmakiS1S+GXBk+AByTM40IVBmlVqQCiOk6DiU9qvu/ZGToqlsUY
VWQq0Cqo9nAsvu27tHUZ7wjbYsxkMCCsAzLqAheQaE2TdnXKEsEUzP36t8QrX9Xt
RE79Fp16vazK5HvOwJQa
=CJDf
-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: https://lists.debian.org/e1wv7ks-00058n...@franck.debian.org



Accepted gnome-mplayer 1.0.9-1 (source amd64)

2014-06-12 Thread Sebastian Ramacher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 18:12:17 +0200
Source: gnome-mplayer
Binary: gnome-mplayer gnome-mplayer-dbg
Architecture: source amd64
Version: 1.0.9-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Ramacher sramac...@debian.org
Description:
 gnome-mplayer - GTK+ interface for MPlayer
 gnome-mplayer-dbg - GTK+ interface for MPlayer (debugging symbols)
Changes:
 gnome-mplayer (1.0.9-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/watch: Update for new download location.
   * debian/control:
 - Bump Standards-Version.
 - Add xdg-utils to Recommends for xdg-screensaver.
   * debian/copyright: Update copyright years
Checksums-Sha1:
 6eb2316075d225eacd2684fa7c1777638a6d904a 2441 gnome-mplayer_1.0.9-1.dsc
 3bd45082db715ef05289c6b6a793d3c3a326a54c 1082199 
gnome-mplayer_1.0.9.orig.tar.gz
 dc997c0e52bf48a93d05b9f661e29cebb15afed2 8184 
gnome-mplayer_1.0.9-1.debian.tar.xz
 86835836155bc31d6d5c86220e669977c60d7570 350834 gnome-mplayer_1.0.9-1_amd64.deb
 8e825b192e7134846bbe7bc093897b7c23ec1708 323434 
gnome-mplayer-dbg_1.0.9-1_amd64.deb
Checksums-Sha256:
 9534a96339354a34be950b6fc6fe8489eea78e171e6161d51e923dcdea07e363 2441 
gnome-mplayer_1.0.9-1.dsc
 e43ca4929e7dc591256a16a793c7cce2678e07e948ee8ef11ed46cce2b3d81db 1082199 
gnome-mplayer_1.0.9.orig.tar.gz
 2c25b6ddcfcc446dd3a08b50db81700f13ad8efaa8b30bca22f184b30adbe437 8184 
gnome-mplayer_1.0.9-1.debian.tar.xz
 a46c1503b7406bd0b57f85c9f2a52e9e4150d8eb1287696d250d111cd7b589bd 350834 
gnome-mplayer_1.0.9-1_amd64.deb
 eb7eaa907a4d9c31419f1d2aa04785411f39c31a944ff918bd07f8b8f7de5d84 323434 
gnome-mplayer-dbg_1.0.9-1_amd64.deb
Files:
 310f19a0c23e59597a0b8cd2e5206e92 350834 video optional 
gnome-mplayer_1.0.9-1_amd64.deb
 54af1ce7decc58e9cd9c368eb91129df 323434 debug extra 
gnome-mplayer-dbg_1.0.9-1_amd64.deb
 f2db0b748e1b0354ef76d2a00232a134 2441 video optional gnome-mplayer_1.0.9-1.dsc
 26c3ab335b6fcdda220b05c977f5b0f1 1082199 video optional 
gnome-mplayer_1.0.9.orig.tar.gz
 0455855d4c6585f4debbecb3152d96aa 8184 video optional 
gnome-mplayer_1.0.9-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmdHWAAoJEGny/FFupxmTLvcQAKk5ZUtSLuXOg6R6iyASQ+5m
DQFTw4Z44e5CB1lACYIhRPQJypsjt+7EEnI7sZqTfnFZO/OdJ2l+31C6zMmTS7tS
5A7kQ37Eir//5DxpSSt/l9B33xL32QcdUdBnEt64tmD/M1XNrnH1AiDA981aa+yL
aBZYhAw6Ss+CfZlsttFIvejtjTkWOA8rB9YehGGN3lDAjcLxp4JIeYrHxlYE7hgF
W+AYJTE+RvjIn2NITLbYKhbpufRIxWVQtIY5ak1Cq0ryQfY2k0cpd0ZG2t94gdwG
kYkqbx7/PzFK1POes+7SmwqkEliKHwpt9YnQbAdHnd7myofexZcuqFn1YJJyQU5T
MNi9SFo4p6aO34Qo/6s5qsj1rDa+uKwjCOn3SzpXGIZMXMKtEf6UbmQJupx3yk/u
suX3Jo8DCyhSzMlOnmuYciAe9WRMQN96cBwmj2L7F+s3gNuMZbFhlu/bfb9HLaXB
z3QLC6ubr0PIA2xSsF5JHX7KNA/34k4+FrHqCL+2ixUR0Mc6gfh8qGGdYlP7k2so
bBQ4v+HTbwvOsPTettx7pfLrKrFKPd6h4ct4OXgkb2n7tvSQQnL4o1SxXSKsH2sy
G19DmH/JtGRSQQng9bXcj1n5mReDfqoJ7gV799apsenP/yl4yCUMgQzAhH6pjK8q
9wutfHpYig/sixuJvStJ
=KaJ5
-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: https://lists.debian.org/e1wv7l2-0007xq...@franck.debian.org



Accepted gmtk 1.0.9-1 (source amd64 all)

2014-06-12 Thread Sebastian Ramacher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 17:59:22 +0200
Source: gmtk
Binary: libgmtk1 libgmtk1-dbg libgmlib1 libgmlib1-dbg libgmtk-dev libgmlib-dev 
libgmtk1-data
Architecture: source amd64 all
Version: 1.0.9-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Ramacher sramac...@debian.org
Description:
 libgmlib-dev - gnome-mplayer library (development files)
 libgmlib1  - gnome-mplayer library (shared library)
 libgmlib1-dbg - gnome-mplayer library (debugging symbols)
 libgmtk-dev - gnome-mplayer toolkit (development files)
 libgmtk1   - gnome-mplayer toolkit (shared library)
 libgmtk1-data - gnome-mplayer toolkit (common files)
 libgmtk1-dbg - gnome-mpayer toolkit (debugging symbols)
Changes:
 gmtk (1.0.9-1) unstable; urgency=medium
 .
   * New upstream release.
   * debian/watch: Update for new download location.
   * debian/patches:
 - metadata-handling.patch, locale-agnostic.patch, input.conf-error.patch:
   Removed, all included upstream.
 - unbreak-ABI.patch: Move struct members around to not break the ABI.
   * debian/copyright: Update copyright years.
   * debian/control: Bump Standards-Version
Checksums-Sha1:
 07b9231fc5c59dbbd55ddc1bd14ed7319375fc29 2378 gmtk_1.0.9-1.dsc
 6f77451dcbaa41e4cca8868f8aba312102d72cc7 411609 gmtk_1.0.9.orig.tar.gz
 8dbdd99001b949cf8b40f35b6f84cc63c318fc3f 4844 gmtk_1.0.9-1.debian.tar.xz
 ebb46d5117bc1ec964202fc0cb2eae79055e9888 39628 libgmtk1_1.0.9-1_amd64.deb
 34ddfd75ee2bc8355f2e61169c85670e24555be1 89328 libgmtk1-dbg_1.0.9-1_amd64.deb
 e7b7f3994ecc696bc2a95d9fbba64cb5f9aca991 18402 libgmlib1_1.0.9-1_amd64.deb
 3db83cf28b599aa785e7c4890d65ded1a18fbbff 35418 libgmlib1-dbg_1.0.9-1_amd64.deb
 ab8b4b3c176bb7fbf3295cb0ab00025777e95389 126568 libgmtk-dev_1.0.9-1_amd64.deb
 27f7538901c20e135152784ab0bdd8977bb9027e 45098 libgmlib-dev_1.0.9-1_amd64.deb
 ecfe397ea76833e81b3482f3bc3d41d5c0c33bfb 18880 libgmtk1-data_1.0.9-1_all.deb
Checksums-Sha256:
 f8e6a82b5d7d72837ab5db390845daf1a8197e948c927f6a8c4ad7667bab4008 2378 
gmtk_1.0.9-1.dsc
 d633832ab3b223f9a669934d168c74574ab47a6a21f76d942c05ad78c56bf87a 411609 
gmtk_1.0.9.orig.tar.gz
 cf1491befea0803f545b3fb039bb0d4b541dd259ee40f96d7d7cb1626f97ded2 4844 
gmtk_1.0.9-1.debian.tar.xz
 4de1e63b6258de194a7a70768b92936d08df905e734e720f8a6cd9ef2a6b7c76 39628 
libgmtk1_1.0.9-1_amd64.deb
 10b898c5925eea01508ea44264acdf7c69e63f9adab107e126432070a19f7d8f 89328 
libgmtk1-dbg_1.0.9-1_amd64.deb
 fec685ae9814bfec6d49cd555d38dde9e61d8a17ab38e1061163bd8f7c12da04 18402 
libgmlib1_1.0.9-1_amd64.deb
 f0eaefb169e15a1f5b6c174de1f803e7d88c080ff5ef01205e76f4b80c9f0225 35418 
libgmlib1-dbg_1.0.9-1_amd64.deb
 8b27d45a0aa094476c5768a9b22a9a6d34f1b62afa00df682430d0808b19c072 126568 
libgmtk-dev_1.0.9-1_amd64.deb
 129ddb7d9d8825eeb9313c79832951c87c39974a9f4015a0d673b4069939cfd6 45098 
libgmlib-dev_1.0.9-1_amd64.deb
 a33ef3bc5026c3bd404df5222a604d9434ef0803a4639c9181f9d4e1bd97629d 18880 
libgmtk1-data_1.0.9-1_all.deb
Files:
 aa4199f2727cfc3ff5e1f63417be8a60 39628 libs optional libgmtk1_1.0.9-1_amd64.deb
 7374b604a08240d83d231c6c8f079f94 89328 debug extra 
libgmtk1-dbg_1.0.9-1_amd64.deb
 4a866a7b0793090b77618487fe423b00 18402 libs optional 
libgmlib1_1.0.9-1_amd64.deb
 9c6490118a46af66070d99c53d3053e9 35418 debug extra 
libgmlib1-dbg_1.0.9-1_amd64.deb
 8042ecebe134e45fef8f92c2cd6a62cc 126568 libdevel optional 
libgmtk-dev_1.0.9-1_amd64.deb
 c680d8fce404f8334c4cd065b2e6f933 45098 libdevel optional 
libgmlib-dev_1.0.9-1_amd64.deb
 9eaeb08743378bb2696b4c06319bb314 18880 libs optional 
libgmtk1-data_1.0.9-1_all.deb
 8e083f17daa2aeec6858ea5eeec090be 2378 libs optional gmtk_1.0.9-1.dsc
 9184658014ca7b325b569ac7417e4860 411609 libs optional gmtk_1.0.9.orig.tar.gz
 fefa19101b1a370c2621a3e1eaa2857d 4844 libs optional gmtk_1.0.9-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmdJjAAoJEGny/FFupxmTw9MP/RTrBG5TpF82yFiTK8sg016Z
5Al4esafghvpuQj2Xb3oQzilAjo0EgL3KXlbL0XQOwgZJYpvhpK31OLVVtWLDytC
nct2HRKNonWeLyFPLyGjXL+40+v0/HayW6mC/hivw7RicxqvbtL+iX6FACDC3sD0
NMJu2WxaUOzMGtxtD4+8vrG1WauCnZCaKtygClGQpCyYB2baFJEFpeMA+ZwdXZGd
lPMpYfu35Eb0yideTtoEpKxNqsH1jM8OqrshCmSmAE0fLVXAfEmFNxDBtJPFVX3n
/RO2rnzI9LmCiFgIyoBqT1sphQqDvtEfqpTCxeHdWixDKIV2XX3Ipo2YbRb/0i1A
Y/HQQOj4aLBDORVRqIrP3WXVZiwVLMYhilkk1efwknmVePAyAeVpVpPx5SmJ8XDc
J271P8Slu2qEpyhygW/xRG7MqHVyxAY8rUncrcBGEUSkfwGv93bb4S9vGRzX1iDk
l4GPbh8AF5E5bu31qJ+9eCmrdyKz9SG//EeoDkNUqSkmUJZ2Pov1/66hQ7OInTdg
owr0Dv0A1V93aEA+m/PEHeiJelr2LJop2Frq94ZktfhyE4W+T+CkAzWscJ5+XiXX
k+VQTeD9Qba+zBvoH5tDuLDyfkEcu1gkCmx+MAY7TOXwy6sswdDqeyAfCmq893JR
uHmlP0D/fIX4UUmgmnrv
=d2hB
-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: https://lists.debian.org/e1wv7kt-0007ub...@franck.debian.org



Accepted libnetaddr-ip-perl 4.075+dfsg-1 (source amd64)

2014-06-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 18:13:38 +0200
Source: libnetaddr-ip-perl
Binary: libnetaddr-ip-perl
Architecture: source amd64
Version: 4.075+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description:
 libnetaddr-ip-perl - IP address manipulation module
Changes:
 libnetaddr-ip-perl (4.075+dfsg-1) unstable; urgency=medium
 .
   * New upstream release.
   * Update years of packaging copyright.
Checksums-Sha1:
 d378113173996dfdca466f491b073d272a2cb964 2393 
libnetaddr-ip-perl_4.075+dfsg-1.dsc
 696bca25930a7e65658f38e455107e72c5513aa3 202302 
libnetaddr-ip-perl_4.075+dfsg.orig.tar.gz
 2e2380c8ae81bbfb5a4cfab57d430584781f29b9 9316 
libnetaddr-ip-perl_4.075+dfsg-1.debian.tar.xz
 3606d2c60f536874a0ee8d87155c63c2e67b3029 105850 
libnetaddr-ip-perl_4.075+dfsg-1_amd64.deb
Checksums-Sha256:
 b21a8a1b0f1233ace351394c079076072347eaa327d230cfe98418127c48eef0 2393 
libnetaddr-ip-perl_4.075+dfsg-1.dsc
 3c0884b0c81a0200a524f4ed3dfa0ec6b736abafc3c485850d9c063684e52ff4 202302 
libnetaddr-ip-perl_4.075+dfsg.orig.tar.gz
 dfbf3c362250a10e85eacf310ea177919605c91daba69567036e12c56a917868 9316 
libnetaddr-ip-perl_4.075+dfsg-1.debian.tar.xz
 a7063584e2b585d92da838166d5490c2e27c83706012fb7333b8536fbf8050cc 105850 
libnetaddr-ip-perl_4.075+dfsg-1_amd64.deb
Files:
 107b6021b321f5edd19890bfac9c9cb4 105850 perl optional 
libnetaddr-ip-perl_4.075+dfsg-1_amd64.deb
 1917bc01507be71f695eb25056c1f5f7 2393 perl optional 
libnetaddr-ip-perl_4.075+dfsg-1.dsc
 c61f404a23a38f15940aae9e5593b7b2 202302 perl optional 
libnetaddr-ip-perl_4.075+dfsg.orig.tar.gz
 0995bcab410c71c1ede6a6cf4f600eb1 9316 perl optional 
libnetaddr-ip-perl_4.075+dfsg-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJrBAEBCgBVBQJTmdH8ThSAAB0AKGlzc3Vlci1mcHJAZ3BnLmNvbW9kby5w
cml2LmF0RDFFMTMxNkU5M0E3NjBBODEwNEQ4NUZBQkIzQTY4MDE4NjQ5QUEwNgAK
CRC7OmgBhkmqBuIoEADBwh8ZuoP1USSSWc25A953Ltw6/G1V/ShmShP+Ir0KG9lY
BxaHtWoF12JIb0+WqdD1Z9FIEVVHXhgF2VPGwQfwqiRQKTW1pCiPivUJntxA7ZsC
cg9T/wBpbt7j4X9YNLyX6Qhq4ZVd6AMQwuLbnKkWjUFugRL+JxB7Ev2BH8MxFaFM
AcN7VhM1O0rxAktcHju2Cxz0Y/5j8aYsDrR3Hdby9WK2fpHnmWzdlojTvhQl+MLp
5dC1TjTSx5Xs1V/jiUnSC1SZiaRaNE5yUnXI5h4CTG80VvCr17Pf/NUYGFo9xFPa
dwWrES8d0pmcGp1vSuJNN+d/erYCSnKtjjTamV8ZNbV+QYozaohRQEbl/o5uSY/S
D+N6rppPghwmKVUBu/smpVNffo/z4wqj/UyB31dCd9Z2iPjgGnOHM6GnZZHzWDhr
fQW7t/5eUhF+sOf91y1Sgn7us70bkVXYUAq6gPDXnK2JvAyZjcmMt1OWh6UaVllp
R2BQjmB3X57Mka34T7CUwZ8ff1q6QEqvC8A3XZ7795gRvmRLhPUgJmCdtHWW/Jea
g2dgyT+r9GrARJiu8MzgVryuq5BE7koit2s+Rv2cJhQqbDSpRq0aVrkrXwliTIVx
cSDcvLrniqarMlPAxjbDTDFRbwWkVsnKe6O8MTzKEo4PTtGl/F/o2+rc/174nA==
=q9ER
-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: https://lists.debian.org/e1wv7lq-00081r...@franck.debian.org



Accepted libtest-bdd-cucumber-perl 0.25-1 (source all)

2014-06-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 18:09:49 +0200
Source: libtest-bdd-cucumber-perl
Binary: libtest-bdd-cucumber-perl
Architecture: source all
Version: 0.25-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description:
 libtest-bdd-cucumber-perl - Cucumber-style acceptance testing framework in Perl
Changes:
 libtest-bdd-cucumber-perl (0.25-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream release.
   * Add (build) dependency on libnumber-range-perl.
Checksums-Sha1:
 feb8eddb7f2b9d803665550e3a17a54d42e2b353 2501 
libtest-bdd-cucumber-perl_0.25-1.dsc
 8e104c0b5f3ba4148c5f1ae58ba2fddda4f76f99 64511 
libtest-bdd-cucumber-perl_0.25.orig.tar.gz
 fad449a46d56193524e694e8176ff616a2fde6bc 2664 
libtest-bdd-cucumber-perl_0.25-1.debian.tar.xz
 2b93e6eff3ca64ab6b289972584d8ea75f8d70a9 116920 
libtest-bdd-cucumber-perl_0.25-1_all.deb
Checksums-Sha256:
 f197cca5c740c1937266965b0aee492bf4faec1cbaa010fefdb0c80d0fd9411b 2501 
libtest-bdd-cucumber-perl_0.25-1.dsc
 07ae31ffb056cdf195c8fea7d342fdda7a7474483940123543feb1026419 64511 
libtest-bdd-cucumber-perl_0.25.orig.tar.gz
 85cd50e47a95089f7f773050fe305421e8e0135aae38e3310eea0530ca6be182 2664 
libtest-bdd-cucumber-perl_0.25-1.debian.tar.xz
 433ebe76bd53f4a1b2cfd79b28df426ae6d99250fb2d2accb56ddb11c8d79550 116920 
libtest-bdd-cucumber-perl_0.25-1_all.deb
Files:
 a523ae7c3561975fb0ac5f1dab652bd5 116920 perl optional 
libtest-bdd-cucumber-perl_0.25-1_all.deb
 ecc0ed2210aa980d14f01bb6eb2190eb 2501 perl optional 
libtest-bdd-cucumber-perl_0.25-1.dsc
 49701dd95df55e9fd57e81364f4b9566 64511 perl optional 
libtest-bdd-cucumber-perl_0.25.orig.tar.gz
 fb003b83246880a2fee79b2fce94b9a9 2664 perl optional 
libtest-bdd-cucumber-perl_0.25-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJrBAEBCgBVBQJTmdEHThSAAB0AKGlzc3Vlci1mcHJAZ3BnLmNvbW9kby5w
cml2LmF0RDFFMTMxNkU5M0E3NjBBODEwNEQ4NUZBQkIzQTY4MDE4NjQ5QUEwNgAK
CRC7OmgBhkmqBkn3D/9DCagc89gRSihM51UjiZVliv/gob1eFWEUQ5gyD1MMg1yH
EpjuZmQTLjaFDMeAFrwk1O+5eqVszR3sbpI7XY2B10Ax8LuRzZeaPjcY9oKu9WPK
y2aTTlYZfphIMy+2VAW0TMdIFceLiBwHbyDklwzytCfpilGY826ZfBt76zUWD1t2
xbhdp5No0XJmO4VlBD6rK7q5aAATGDaFLD0h9N4U70HGYJzc0Z/fi5/w7n+9howU
ZJALR5ElJmva52a5q572YeyMDu9cU/FdiRaYSNDvCv2nFGs3agcaW+xYdGeG4DwK
FQjwrDNOb6vM6l92GLzWrdFd2SovFEZptbVGuJqY7ILLDnPPl8GsIrnScMCVkOQu
xOqeWLizNq083fE+2HPUxUWWh8Fcg7FEorrryo1C0XlogKKs3Zg6dlrjJUnwfBoU
AflCAkHdCQkuOyP9iokP/73S/LDgh2qSdINRCPsKSl/LGHRimXbvj4+YZUToFLHt
DOtY/sG6GCItwzgu6n3b9piJfLSPpOPP4IfdDhWIcf5fEA/sPkRj4YP+OsF9QWg0
dOdnDuv/8vdhzg8jKp7zAF4vEgUfxCvtH3W1SO5xuRZF6Gv71tR9+HJAJhXbsTf5
zPnv7c6JGFEYXx/TmWT2ltmwd86XYeN1fliNJMuriel1/LXFKo0ATJFrEnYr0A==
=dJRA
-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: https://lists.debian.org/e1wv7lx-00083e...@franck.debian.org



Accepted php-texy 2.5.1-1 (source all)

2014-06-12 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 11:00:27 -0400
Source: php-texy
Binary: php-texy
Architecture: source all
Version: 2.5.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian PHP PEAR Maintainers pkg-php-p...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description:
 php-texy   - Human-readable text to HTML converter
Changes:
 php-texy (2.5.1-1) unstable; urgency=medium
 .
   [ David Grudl ]
   * Bug in PCRE 8.34 has been fixed in PHP 5.5.13 [Closes #25]
 .
   [ David Prévot ]
   * Adapt packaging to Composer
   * Ship examples
   * Update copyright
   * Adapt Texy path in examples
Checksums-Sha1:
 05da5fe6c24fe06405fdcbac42b88654f49c626a 1902 php-texy_2.5.1-1.dsc
 4cdd3ab7290bd2da7027c9d468e691776328a4fd 86911 php-texy_2.5.1.orig.tar.gz
 5d75eae502aca9a7d5b997fb3dfb8fdad366f4c6 1 php-texy_2.5.1-1.debian.tar.xz
 cc6bc4866ee4b235be48d0ce26b2f74d506cf4b5 73782 php-texy_2.5.1-1_all.deb
Checksums-Sha256:
 5654a4e55a4830e2b9a5c7f39d0e94718abd2cdb38e3003a106708b7bfb37e8a 1902 
php-texy_2.5.1-1.dsc
 4cb19887c8de20061f9af38c5b2c618be5673b583569f186d6c66f8e43063c6d 86911 
php-texy_2.5.1.orig.tar.gz
 fd983c230f41266c70835a1b6e162e78489b3ddd71719080f6ecb2738fe530d9 1 
php-texy_2.5.1-1.debian.tar.xz
 a1b1ad1bced1d2ffd2955806704e19d9b763dbff2668e42ad6d63346988d1568 73782 
php-texy_2.5.1-1_all.deb
Files:
 5ee69397eee8b1caccdcac026e3c2df7 73782 php optional php-texy_2.5.1-1_all.deb
 61a06fab97d358ec07a8898ab8848d16 1902 php optional php-texy_2.5.1-1.dsc
 ef7f54e591491b903f83b251bf83108f 86911 php optional php-texy_2.5.1.orig.tar.gz
 5676e70969ddde73dde7569baa8c6ad7 1 php optional 
php-texy_2.5.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmcb9AAoJELgqIXr9/gny4x8P/2apEHnJFQhZ0Fim3ZtV84tM
D5zIr1mSl3RHMxObhoJz2ej80Xy1Z/DppkgyJ+30GJsYL/Pi/mihiG0AiKtaS7VR
1GmeA+0qkGGyucXaC/Zl6YZNul/3fqXjfJy1mKZ8hlPNSMRB2L/etZEKjJempLmm
bIzLyiotbjtMg+W2HvF+npjMlB7CFKojrvyzrzqAOQtBtE08YhkP85VDIzG19AQq
Qn147Pr2ROkUtT9BPRvX8x2vhyQFp+rEHcPXurPzfuRxMb9kn5uU6bVvVwyspMZ0
3dcORy/bxQMH6JOFRlnHUZH7liXAwSBEyE4VCiaFcFZI8HXwVJ2lwXW5V936ARgD
dBap7GZ8lhq00dv/P9Lw+ElDQwVobQ2B2f6ryX1XtsDHx8b6n2xy2rzcudoX7HeY
O7N7d/JeG4x4hMltBdn6CN/VR+R51I337bSVvTJSXYe3eXaRepyJmyhSOoyPnPi0
6j6Pz5cIaGZmZioRH0GL0hhehCDffiLX1iLcgQ8hT3qSrOjsPlpJtoT/Bmm8KH2Y
Xr2DL5F7bhvyQ04LQuxFl8MvtD9nzLlBw4e21yHzAqcm2GRAPBKTSoN1x93LB6b6
SjT+Rryx1AqGdA4XfzcBzmG88TcoYahOTjDoz0HrPVpvZ20wR2lRF26kVF+iBYp7
FL2jJF6KZeBKj+hLz8on
=AH52
-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: https://lists.debian.org/e1wv7m8-0008pb...@franck.debian.org



Accepted libmoosex-has-sugar-perl 1.000001-1 (source all)

2014-06-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 18:20:46 +0200
Source: libmoosex-has-sugar-perl
Binary: libmoosex-has-sugar-perl
Architecture: source all
Version: 1.01-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description:
 libmoosex-has-sugar-perl - Moose extension for syntactic sugar in 'has' fields
Changes:
 libmoosex-has-sugar-perl (1.01-1) unstable; urgency=medium
 .
   * New upstream release.
   * Drop versioned build dependency on Test::More.
Checksums-Sha1:
 24354443bb9a6fd4bc7d270d243a03cac9f1ffde 2402 
libmoosex-has-sugar-perl_1.01-1.dsc
 7579ad1c0ca7e8b2dcf5e410dc166d14482ffcde 43576 
libmoosex-has-sugar-perl_1.01.orig.tar.gz
 97b5ccf59e01d65e1d163e8063bd3772a5188638 2420 
libmoosex-has-sugar-perl_1.01-1.debian.tar.xz
 30ec8282c1b9c4409c8d288926aa2afce66dde50 20592 
libmoosex-has-sugar-perl_1.01-1_all.deb
Checksums-Sha256:
 1a3f0d8a04cb820db2625fe3db6ab2285a507fc45291bb01a608d895371b59c8 2402 
libmoosex-has-sugar-perl_1.01-1.dsc
 ba25021a511c8a5922f03d319c26dff7fc70cb0bb87e33c0354ac6f76cc2e377 43576 
libmoosex-has-sugar-perl_1.01.orig.tar.gz
 fab5843dbf0bbca23e9ac5c3426b5220196134b721f01cb3848d3217eb80e359 2420 
libmoosex-has-sugar-perl_1.01-1.debian.tar.xz
 d6c58a6d5d08c04c37a8215b78044c20f037f043ce05f4a28f0bcf8bf736d835 20592 
libmoosex-has-sugar-perl_1.01-1_all.deb
Files:
 c08c1085c445b40c16ffc2380420c011 20592 perl optional 
libmoosex-has-sugar-perl_1.01-1_all.deb
 4640403c9664fc07677079023dd94373 2402 perl optional 
libmoosex-has-sugar-perl_1.01-1.dsc
 5840971ebf78a5759df81d631cb89b46 43576 perl optional 
libmoosex-has-sugar-perl_1.01.orig.tar.gz
 b0622e295569caa390522d2a3c6a2ded 2420 perl optional 
libmoosex-has-sugar-perl_1.01-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJrBAEBCgBVBQJTmdOGThSAAB0AKGlzc3Vlci1mcHJAZ3BnLmNvbW9kby5w
cml2LmF0RDFFMTMxNkU5M0E3NjBBODEwNEQ4NUZBQkIzQTY4MDE4NjQ5QUEwNgAK
CRC7OmgBhkmqBqjCD/sGHTw9uZDXr7P0EJcQHsMM4pjuy8MKSVgZmx4hGgG+yH6A
kFURA2BBmL8c4Bhc7Noypgd/1YaHs7uRVn92w7to2kKCrCVPRMP3hFyfv3WliSnr
O7vQDZawvgQcMwQkNapgBkIv4SNtY/dRVY3kf3l8JRpeb5A3VOqiKA3JjBPw/rrI
BCsYk2QjUlat4gYfL+2gSdrndyiIWZHjVtkDoLJ/oSnkECFZQKWfZv6nELcu0pcl
DqaCrjA4JVmXpgJM7HpuwbgK9Jp0X6FkzKhZNpme94sa2sy029XSZ9vnEF3r5HLU
zkULejPvjq3C9z9z88a4zEsYQc65Fy1uNhT7cmuPhUJ0HKQHDtO862VboWDa9LT+
wh9oMD7192IPofLdGHXzLEbRLZm6dOUS5T14MX/Vp3sC39wts7XBnczx6PX/uLc8
1LU9x7tUmKVeft5BebMzWx0dd/pHejjx3titVnXShl2V07g74Np6QKKWdso6RdhP
eZP7dKyk6kAEOoL48L4dC69Gi96RjYeGcIiBKuiKKVXxLkvcmGxxzrYCPYeh7XaZ
tykNKuF5f1W0pXUv7CpiEXleFZm5XgETxKD/i4Em9NLfgfhm0jIC8wSvj5MkFFB+
2im3vmeWHOcz0+LI24Huz849DMqwhJLblCEa58bYFc7e9pLPVRijc1K7D2UsuQ==
=wfbr
-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: https://lists.debian.org/e1wv7yl-0001hj...@franck.debian.org



Accepted libmoo-perl 1.005000-1 (source all)

2014-06-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 18:25:54 +0200
Source: libmoo-perl
Binary: libmoo-perl
Architecture: source all
Version: 1.005000-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description:
 libmoo-perl - Minimalist Object Orientation library (with Moose compatiblity)
Changes:
 libmoo-perl (1.005000-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream release.
Checksums-Sha1:
 f7dffa95133bd90e0e9c6de503f73db4fd0f0f7a 2470 libmoo-perl_1.005000-1.dsc
 c597009c3b78421355d7b716b017ede29c9481f6 85885 libmoo-perl_1.005000.orig.tar.gz
 dce5e07c43f4493459781620a53f3acc4dcd4365 3508 
libmoo-perl_1.005000-1.debian.tar.xz
 b0e2ed01a0deda449f876aa3ad52a809da630635 61968 libmoo-perl_1.005000-1_all.deb
Checksums-Sha256:
 e2a30003d8bf258dd6e55e4c426ae688f167864f9b2c5fc0cccbd0c18c5ae5ee 2470 
libmoo-perl_1.005000-1.dsc
 73865789520f1ab72518d3c712e79a33d283e4166be5e949bc23ab79a7184ea4 85885 
libmoo-perl_1.005000.orig.tar.gz
 3fb6e8c599d21dcd17813b5fd4d82f287db431e511a05907ec2b5289cf7ddc31 3508 
libmoo-perl_1.005000-1.debian.tar.xz
 cac5c0e3071bdb1074f6be8dfbcc5dbe0995e54812f46a6dabce29df41b1dab9 61968 
libmoo-perl_1.005000-1_all.deb
Files:
 6d12454bd99a45d19b4c4464a5232d2e 61968 perl optional 
libmoo-perl_1.005000-1_all.deb
 12a14cc8ec5523d5c4ce7c39cfe17e57 2470 perl optional libmoo-perl_1.005000-1.dsc
 78f920761631450d9a905725968a501c 85885 perl optional 
libmoo-perl_1.005000.orig.tar.gz
 8f2dffaa0f36561e48d0416314396950 3508 perl optional 
libmoo-perl_1.005000-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJrBAEBCgBVBQJTmdS/ThSAAB0AKGlzc3Vlci1mcHJAZ3BnLmNvbW9kby5w
cml2LmF0RDFFMTMxNkU5M0E3NjBBODEwNEQ4NUZBQkIzQTY4MDE4NjQ5QUEwNgAK
CRC7OmgBhkmqBjAxD/wKDwTmaXC+VUKT+ZJth2vEa4FGhicP/2sttVwIPh20Ez5V
innG/GUr37F1fJzoAwX4AWG5iUBkOoK3o1KaFXzSbL06lbPV0FNMvG94IzxR8QNi
1NKoXPI6h4w4/QRedQTJ7nNNOLE0fI5ZbCj5gsnV3Dv+UWMK6vrX98fyvPT7xvdC
zqh2t2ai1VInzpOtl+rFlepcetW0Gw7g0QtZM/XIfj2E0LOR6n1cT4PHKLkjnjvO
jk7b5OAbqJOa5j+mrqyoGceBAnMEH4xU0ogtt6htlmXi3CMXLwIH9DL430+XlGLc
Juq0zYR4H816epXzRpAJhOWHnqqALmtBLW+bHj0meLfYz/FD/tf6Nxk5hjTciGdX
8aU8gxzBIbRkK5c55QITjR3NmCXme7iDqXijzk39uwJIcH3A9c6/PKaAjZVFm+gh
S0eIrBzV4JDCmpXO1V560Ffu02PHQf7wgubLEby/MudSimhhW/7zfgPXvGY51Bqy
7SKvguzBRh29a/ivBgP41oVTfYrG7Bad1Qf8XPbMxgVm6KIuUStW9PddYGgcly55
s52BBSVtb+pyWToaOVqL0XXnhlDEFcXy9XQvQjl9PUgWIFEBVz9ZmABFCPfXIaLj
Eyjm2rDt7b1GhEFZQBZZnmigj7mcHSiaD03o0+76Gmtf0MEjG+0pnjugHtRr0Q==
=I58I
-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: https://lists.debian.org/e1wv7ye-0001fv...@franck.debian.org



Accepted gecko-mediaplayer 1.0.9-1 (source amd64)

2014-06-12 Thread Sebastian Ramacher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 18:41:24 +0200
Source: gecko-mediaplayer
Binary: gecko-mediaplayer
Architecture: source amd64
Version: 1.0.9-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Ramacher sramac...@debian.org
Description:
 gecko-mediaplayer - Multimedia plug-in for Gecko browsers
Closes: 715813
Changes:
 gecko-mediaplayer (1.0.9-1) unstable; urgency=medium
 .
   * New upstream release.
 - Update German translation. (Closes: #715813)
   * debian/watch: Update for new download location.
   * debian/control: Bump Standards-Version
   * debian/copyright: Update copyright years
   * debian/patches/functable-check.patch: Drop patch included upstream.
Checksums-Sha1:
 fe67304425d8cec42ec12b979801ee5fe49dea54 2343 gecko-mediaplayer_1.0.9-1.dsc
 cc6153db8f60a95b8ad18aecbb9acf789dad2b46 271917 
gecko-mediaplayer_1.0.9.orig.tar.gz
 5e47a082bc82069c9a73a2317023e9315913ed71 14920 
gecko-mediaplayer_1.0.9-1.debian.tar.xz
 ee1cfc418e2c1f267db36a8a805cfc038dae373b 82420 
gecko-mediaplayer_1.0.9-1_amd64.deb
Checksums-Sha256:
 284704db3635e7f3d0dd660a66107ba78fc30aa840cb386ca38da5cbd6d5e2f9 2343 
gecko-mediaplayer_1.0.9-1.dsc
 212a0a87e35da9ed944f5fb827552e9978fd3ea051da89554da5ef3934d4c2a5 271917 
gecko-mediaplayer_1.0.9.orig.tar.gz
 9c9ba1948cc4bcc2c0e68c1a5dd4eda80db2fa16f045956a1ba2eb12b8a3c6dd 14920 
gecko-mediaplayer_1.0.9-1.debian.tar.xz
 d3980d6e9a41767b95f3c0514d631387ab5ec67697d73411ce37a0aa0626eb42 82420 
gecko-mediaplayer_1.0.9-1_amd64.deb
Files:
 c23ae611935e6f9229272d226e8b448a 82420 video optional 
gecko-mediaplayer_1.0.9-1_amd64.deb
 35225050f6b1548a59d3378deafaa045 2343 video optional 
gecko-mediaplayer_1.0.9-1.dsc
 69b50ecbbbf34ca6d980a477345dbd40 271917 video optional 
gecko-mediaplayer_1.0.9.orig.tar.gz
 cd01e41632eeef40915175a17a56c6c1 14920 video optional 
gecko-mediaplayer_1.0.9-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmdjPAAoJEGny/FFupxmTSngQAKaJItlJghuLc+xYJG7QbKuP
id7hQZBVC8LvT/xOsaRsQa+CoyoIt1bUAKG+6QaFbvCh41MTX+U0aal29aO0nFv3
69kWYrUQz/Mdf+L+IvmO4+jckYlj+3gxIIr8odGaZvsSR1Lawz59J0w8msaZ3FlP
+Upyoro7lLNYfveX6hGa5owTwlO2vcNH7Cx4PYl5Ir+p8nQz2CzSEPAM8noRROkt
4MA2yUqRDofyBiVTOlS8o9mREhO8XnHNifxUiAa+zvmEzuBIAIT5MKT8XIUx6UAF
VSKSpn3PBN9U9IEcKSMOXO8x2dYVK19Em3esL5h/Shv7gnQXhH7TO3iKpFb7sfEg
/ljBlCYvzOfWP8PmHh8EHCyGnFrcjZCDFXX+eJUspoXMfOZa+JaJPBHTQjEMICsw
lNl8QzJlECckR88Gl6XY676hCYHfYZepb8Q41/n5WvPcizDR3MnAhcftoshUNuHX
iunAcH+BrMRGxi6a9gdfCpxtnHJbdulNrlozQ8fUV7zjFb/IfyocLH8LB8/da1k/
9qTKWYaXfyf5CvrI/+1blcUWxg4vmQPMLrBZPkD8m0wSpbVGfjJt6wGEiupXjK75
ysQ7sQERn/rXl+F/U7X/8g2IwMRalzcwd0sxuomgWwDFCqkdFZfNBK0BS8IVBZES
T6i3PcCi/Va5UiNjxwnv
=yR9R
-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: https://lists.debian.org/e1wv8bx-0003vm...@franck.debian.org



Accepted libio-all-perl 0.63-1 (source all)

2014-06-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 18:37:56 +0200
Source: libio-all-perl
Binary: libio-all-perl
Architecture: source all
Version: 0.63-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description:
 libio-all-perl - Perl module for unified IO operations
Changes:
 libio-all-perl (0.63-1) unstable; urgency=medium
 .
   * New upstream release.
   * Add build dependency on netbase to avoid warning during tests.
Checksums-Sha1:
 f703e0d331186d444cfc0ae0bf584ac45fec65a4 2359 libio-all-perl_0.63-1.dsc
 f4571890e85dd6fcfc8800b7da1313426d812e23 75807 libio-all-perl_0.63.orig.tar.gz
 133740e2a328130ee6f0b1963f33f0940032a93f 4124 
libio-all-perl_0.63-1.debian.tar.xz
 683c0412866108de24e8e8010b1c1143fdf3f587 68100 libio-all-perl_0.63-1_all.deb
Checksums-Sha256:
 aa282c93abd1728e8e12e7a80b36fccafba51ea683825b832097a6b3b81cccb6 2359 
libio-all-perl_0.63-1.dsc
 853bec85e4c9d510b4394658692d7cfea73514082862aa6af38ad8964cfb2904 75807 
libio-all-perl_0.63.orig.tar.gz
 4af994f10597f33648a5b42d99233278a99e666bcd7c6602b4e9da12e34c68a5 4124 
libio-all-perl_0.63-1.debian.tar.xz
 8f3d946f66e1f25e9ae7bd75cac3303d2a8e55fc0319fd0a48ba1a26077eb08b 68100 
libio-all-perl_0.63-1_all.deb
Files:
 f19a4c979b235123c9002c73ec150c1b 68100 perl optional 
libio-all-perl_0.63-1_all.deb
 170f670acfccda0315db1c39324b 2359 perl optional libio-all-perl_0.63-1.dsc
 8b08b0d4f7a270c2dc95ef6b89d1f0db 75807 perl optional 
libio-all-perl_0.63.orig.tar.gz
 8f1764762b61aaf1ecfc91b7c3bcec64 4124 perl optional 
libio-all-perl_0.63-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJrBAEBCgBVBQJTmdePThSAAB0AKGlzc3Vlci1mcHJAZ3BnLmNvbW9kby5w
cml2LmF0RDFFMTMxNkU5M0E3NjBBODEwNEQ4NUZBQkIzQTY4MDE4NjQ5QUEwNgAK
CRC7OmgBhkmqBjiPEACdDkzC5XaoFCRUnT/IgwmaUP+VJscjzGZivyffUyFHO7Gw
m5hPxial3BsXVAhwkV0wKB8XobjbHvU328x6fb8LTQf1K2vAXnGmkTZujK7IXCqH
IdywWV/Ins26KDpZuxLSMpJnuQFRV/kdIDnPGTzjN0vyiAVaR7LttsECI0tYlztY
9SNmBQtAuwIaeDjCCLdxCxQfi2DX8fqO9NdgoV/UWNbnxy2fQQXNftmHffVV5f+o
ApZ2Axrcqge58xS15B217TQWJnSeQjXWrTIPKQ6AgBiwkBHRJCspsduNY0jufCWi
Ul2g0Fl6+WATDMEYENGD3dbUawI/xzfYmMrhQnxvF3tUNNFtekB+p5DqgqleM3/s
El8nwPB7uHH2E/LgtFXGO5wi5N8ifv/we4OdVbOLirj/CXT12NGdxOA3bCJt2b7o
LUeaHwjgqYGqRZxH85xDOC1MWHAK96DOKPSX9zwxoZBh6jlJAri1iSDYVFLJ0zVR
hKogH7+G0xzjhnUre62U7AlYCCR9cPE4I7UpeTnPnl4ZubUAEOFfZSol0RSYXt0B
mxwkh9oOk+8mwqsTEi2j7V1zuzylrFMuUHAa8R/0lDK6ixWRrzZLqBHVGKPp4N5g
CC7kKo40bntx2yDXOOQ7X6AEg0hAxr/1kpSNVyybLLU4JKIbA/5NZKp39rt2uA==
=UGB4
-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: https://lists.debian.org/e1wv8ck-0003bo...@franck.debian.org



Accepted lava-coordinator 0.1.5-2 (source all)

2014-06-12 Thread Neil Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 07 May 2014 20:02:59 +0100
Source: lava-coordinator
Binary: lava-coordinator
Architecture: source all
Version: 0.1.5-2
Distribution: unstable
Urgency: medium
Maintainer: Debian LAVA team pkg-linaro-lava-de...@lists.alioth.debian.org
Changed-By: Neil Williams codeh...@debian.org
Description: 
 lava-coordinator - LAVA Coordinator daemon
Closes: 747351
Changes: 
 lava-coordinator (0.1.5-2) unstable; urgency=medium
 .
   * Initial release. (Closes: #747351: ITP: lava-coordinator -- LAVA
 Coordinator daemon)
Checksums-Sha1: 
 583a5bd9bf2faea56074d5e14219f236280ed1b4 2175 lava-coordinator_0.1.5-2.dsc
 c3e4dc05228b8ff54a666e7a9497608c89c1b3b3 15070 
lava-coordinator_0.1.5.orig.tar.gz
 2e70610c776eed280370921ee61115a140ab6149 4484 
lava-coordinator_0.1.5-2.debian.tar.xz
 3841e9ed16573197905df80c45267508f3eec00c 13882 lava-coordinator_0.1.5-2_all.deb
Checksums-Sha256: 
 40f942e95c9895548191dbf6d1d0095c33fd6c49b3c6535c8cad708ac8c30ddf 2175 
lava-coordinator_0.1.5-2.dsc
 abe7e599207d1362862ddcc59538121833253139ec29dea878927d9e6cd86f97 15070 
lava-coordinator_0.1.5.orig.tar.gz
 080ca1dc4e865465d392e9a96caea5eaef89398120b50bdeae536c18dbae1e5e 4484 
lava-coordinator_0.1.5-2.debian.tar.xz
 05edff86bde4e23c41c9e374881625dbe9dcfe772c7265d65b918970271fc071 13882 
lava-coordinator_0.1.5-2_all.deb
Files: 
 f3e62f98227ea17e307e1698e4e07e7f 13882 net optional 
lava-coordinator_0.1.5-2_all.deb
 dd5ddc35f98d001d036c63d2247718f5 2175 net optional lava-coordinator_0.1.5-2.dsc
 dce3b374814867ba9ce4017dd8647e1a 15070 net optional 
lava-coordinator_0.1.5.orig.tar.gz
 07e5cf5bd4f087f85205f02c0f2f2bf0 4484 net optional 
lava-coordinator_0.1.5-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTa7h9AAoJEPFn5DyBQ7aCPy8P/2JhwV1DyDmQ+jTSNjNU+NrK
V4nrxihPj0RARsYqIweU89bAp0SEGjXvEblh+buYxN3wokij/Byetl42fjdB4Q4z
LH046pFWcCHOqrDLH5W2sdZJD+MccKgq5Ve/X41OYVRdA4PsMaE7YZfLoRoLa73a
1z3SM7I3TX+hFaqmYj8GPNEsnGPoOUf+/yBmjXxehPK/j3mY0vHVQtp/hsNbbvdk
a72Mr1Tw+6AqMuXY6HTRbhrHUsORRbKqXgE1hYxtsNUMr8tkfX6TDzuLuOaTh1uM
FZywtkoZBBZCDS7CPgC/kTJeXoCnSUFvforxDsSPyEVJ6YN1/MuUhNlRLTtUwpSD
Re8z4FOFJXkRwGvyKLarBDRGoOsWLJ76CyeeZfJswzukXJhq+6KGaTT2zmGfHO/e
Tquv+wFBwOyorPN0ILFD1iG/6TrfzIyUOwqyBXfe6tQLQTPJoQhrIYA2g2ZOCIli
4bWb2zx7Wxze9IdkRuUthJaVcCDtY0O6QskeSeGYZU3faaFVHLcyWCupCFl1wBfM
plFfiPGfe165WLcxpjSiL77pisveInNBMod5DFrvuqiMr4YaaMKzPfUaDlajRqqe
fWwN5xdLLkkvQsW0xXag3D3BzBStd46VZZg9HesdDgqfsZJ1PxJ22oq2pwNL2IFF
Ct4oyq7GonhtybplFO3/
=lhdT
-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: https://lists.debian.org/e1wv8mb-0004kk...@franck.debian.org



Accepted django-sortedm2m 0.7.0-1 (source all)

2014-06-12 Thread Benjamin Drung
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 13 May 2014 17:46:30 +0200
Source: django-sortedm2m
Binary: python-sortedm2m python3-sortedm2m python-sortedm2m-data
Architecture: source all
Version: 0.7.0-1
Distribution: unstable
Urgency: low
Maintainer: Benjamin Drung benjamin.dr...@profitbricks.com
Changed-By: Benjamin Drung benjamin.dr...@profitbricks.com
Description: 
 python-sortedm2m - Replacement for Django's many to many field with sorted 
relations
 python-sortedm2m-data - Replacement for Django's many to many field with 
sorted relations
 python3-sortedm2m - Replacement for Django's many to many field with sorted 
relations
Closes: 748051
Changes: 
 django-sortedm2m (0.7.0-1) unstable; urgency=low
 .
   * Initial version. (Closes: #748051)
Checksums-Sha1: 
 9c4e5f98aaaf1def3e388f7231a5a8448781041d 2206 django-sortedm2m_0.7.0-1.dsc
 ad584389367d1af0661f7ce0138d643f0c912de8 13883 
django-sortedm2m_0.7.0.orig.tar.gz
 c8d09c28e3fac4795d72fd7db1d338bd98207f0b 2352 
django-sortedm2m_0.7.0-1.debian.tar.xz
 f6aff113ca0a3ef67491c3a1d408d27c1195c0c5 12282 python-sortedm2m_0.7.0-1_all.deb
 7263ee4ded3495758e9721ac6d6573e3a70ed485 12348 
python3-sortedm2m_0.7.0-1_all.deb
 a02a079aa62d07548f5512f1110f3bc82d709fa1 5820 
python-sortedm2m-data_0.7.0-1_all.deb
Checksums-Sha256: 
 09ecbde4f426190fa7af99d04466adf4fe2725c61bcb3207ff0305af5a2da353 2206 
django-sortedm2m_0.7.0-1.dsc
 a8c2b3d17704a66257017d583e64fe5e35c0d9e5fa2f099dea666f30b19bb0a5 13883 
django-sortedm2m_0.7.0.orig.tar.gz
 d5dc8d9e3044bde9420daec5b02273d925e030a3cabd9becec1b502462454585 2352 
django-sortedm2m_0.7.0-1.debian.tar.xz
 2567e31135e4a801c670652bdcc4b8656cf877e902f86e9295e567562852c113 12282 
python-sortedm2m_0.7.0-1_all.deb
 1ad07fa9d1a612e96df060ffd1b94df52095e27a3e6227404ae86b8dd8b625e1 12348 
python3-sortedm2m_0.7.0-1_all.deb
 1e312860f64c4377988c8d99a4e4574fedebfa56fd54bd137838b61ff02cc439 5820 
python-sortedm2m-data_0.7.0-1_all.deb
Files: 
 37ae93fd57263588fde2cd7b2f33f4aa 12282 python optional 
python-sortedm2m_0.7.0-1_all.deb
 0f0e849c007832d09e9f3a5b6f64d2a7 12348 python optional 
python3-sortedm2m_0.7.0-1_all.deb
 8f1c68e71ce43273af459af02c1374bc 5820 python optional 
python-sortedm2m-data_0.7.0-1_all.deb
 a331bb394ede8bf085a1a295239e269c 2206 python optional 
django-sortedm2m_0.7.0-1.dsc
 dc88aa8a530643157e23e5af27cb3843 13883 python optional 
django-sortedm2m_0.7.0.orig.tar.gz
 ac04a00c0fe52fd2a90a37bf1439752f 2352 python optional 
django-sortedm2m_0.7.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJTck1sAAoJEN2M1aXejH56ZY0P/jm6lCOqtj1wNjG/TuP+ZXoo
HB2t4ofSbdXiqHQBS2wHPi4ujb7H57jz8DaOL1My0LlhUu1iZdt452fHdUPDkwnU
4mGJSV5TiAJaQLaX7xfie+8IfULrDGrPNPEZQ8CW2LRgASuY4tiNLtEY1rMA3Lij
za1sQB7eXvhQuLdksc8mrQcNbxs2+W2/0S67pxgTRSAcu1BtniEvaKil5hoQNzrZ
5jKBZuROPWhMBJ4a6dYqeWmYAhXbjW13DX0kH9ikxDvGZcPFr9lgG9L1AOPcFwHV
5naJe8QRVJO4+B3eJ2H7MwSPh3zlrQmNALmX6MITpMKtILUrZcQ/QURsHdGx6aTC
PFZGLOKBHDl1UTNYnbYWkwdc+7rafyxLF9KL64GkWu0vROCgDg1I7jHLMTHgBcfk
GX8ydBp+UCxVHPrlvG8JddnTGai2LXAxPDUxNfNPnrqGRkk8FECwANoBSO0tuIs4
ikQ7mRfApl/Lb/EYMrCcLTTaB0bwiSObWoDqRoo6dyAZO3J45Zh+AHlJs5uYRYoi
TtNvv88oG9Uhg8QzHoD6CrhnHqFMstKi31DSyi/6AGvSJoy62Tdh8utp2dG8/Xrz
QCXzeNrzlpzts5LG89Ovmg7FuOBCWQBHun2h1VKHf4DYVqVxL9t2N3YG4KYKMsNv
XXAfFMEeqrL1t9TCGQDY
=V9dW
-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: https://lists.debian.org/e1wv8mb-0004kp...@franck.debian.org



Accepted pktools 2.5.2+20140505-1 (source i386)

2014-06-12 Thread Francesco Paolo Lovergine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 27 Mar 2014 15:57:15 +0100
Source: pktools
Binary: pktools pktools-dev
Architecture: source i386
Version: 2.5.2+20140505-1
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-de...@lists.alioth.debian.org
Changed-By: Francesco Paolo Lovergine fran...@debian.org
Description: 
 pktools- GDAL add-on tools to perform useful raster processing
 pktools-dev - GDAL add-on tools to perform useful raster processing
Closes: 732531
Changes: 
 pktools (2.5.2+20140505-1) unstable; urgency=low
 .
   * Initial release (closes: #732531).
Checksums-Sha1: 
 3c394726802c9b15e5a7b3706d86106ab5b7719c 2172 pktools_2.5.2+20140505-1.dsc
 ce938ca508bf5b9e3e933b33e0c33c405f1739d9 623833 
pktools_2.5.2+20140505.orig.tar.gz
 edb6bb15e506c2c520f55f67674fb08c62a8fff1 2772 
pktools_2.5.2+20140505-1.debian.tar.xz
 751863002020e05f64896186599b18b2e1a3b3f7 827312 
pktools_2.5.2+20140505-1_i386.deb
 1fb8830f366b82e6465c53721d78add82c5012ca 203658 
pktools-dev_2.5.2+20140505-1_i386.deb
Checksums-Sha256: 
 625026513281f383a6b479fdc55a3fdd1079aa2bfba30f82c9f4e29b66f36a1b 2172 
pktools_2.5.2+20140505-1.dsc
 25007753e21a7939e80a90ff6ac6417c1b43f50694a4d13ec74b90f19522077e 623833 
pktools_2.5.2+20140505.orig.tar.gz
 4de89dd063e548c8d89d5612a56f5edd183c848e953f77cf47f4457da412ec2d 2772 
pktools_2.5.2+20140505-1.debian.tar.xz
 8157466f35c3c1ef5d09ca77da761dfe10914c0d84dccd52845dc165826ad01b 827312 
pktools_2.5.2+20140505-1_i386.deb
 1caa9a0fdddf3b8f244d42933d075659da489c9c39d2c0c12a063315eea8f24f 203658 
pktools-dev_2.5.2+20140505-1_i386.deb
Files: 
 ba30b021210cf74e5afc03a5daf35bb2 827312 science optional 
pktools_2.5.2+20140505-1_i386.deb
 25c2c893abaf29f3efa6e1e2e397c7df 203658 libdevel optional 
pktools-dev_2.5.2+20140505-1_i386.deb
 1eb4a10f9b24a617e7cc95dc90a8ad6e 2172 science optional 
pktools_2.5.2+20140505-1.dsc
 2ea922b396ccb4af3a20cd3f781dc274 623833 science optional 
pktools_2.5.2+20140505.orig.tar.gz
 84c0e721d56dfe325b1d8d8b5af8ac73 2772 science optional 
pktools_2.5.2+20140505-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJTaeP0AAoJEA8CpeEWNoakyq4P/12Q+l+4pEbgVrLk8BLUEolm
MB0tWxc6boqCqPwfMX9Y8BqWuh+WGat2xsLk8rDAf7aEtSTxiVdNU9thUvXUDwDq
wwhnRz17z7D03i1br68CLmKjf13lhIMEJv0AwHBgscVrFIUtPmwr3ixrNBDRi97Z
Qkoo128LpWrJqnnT1Cv5X9lYR7L/d6EoWhS7mYDmYKNO/DEjEAvvaO7W5w8OOEVF
FUveN1Bkaq7rGjgnSa/A9G+dqQZ6RzbGDSI7itsoECITDFbpZWJzMpSQvhKoQRS8
Dn6JyEPT49yxv0tBuZTyISKS+mRqZLFEVGeBzMDGo0OmLenYXgRKI6Xuh0Gsctw8
2uFH3KkScXwXGsiDsZz5d9d3dWq/dJmyn+lEpkdWo2XH/pyEJToc9SbK+cvbFgp8
Xi3DNkiBjbpDGvL5nFBREktTM739Ov3axRnVUMEYfc/WhH/FpOJElM6qyqaVxSIn
DV/rgSmCmpSphKHkGd8mV/Zt9BhEslZY5bU06h/mX8AxJOObxB0DB5cGPM2NhmQj
st1z/NP+M2w3ArzL5FHT3oT/AdD1djauIK6dB9kbIcFUC1GfoQ4xpjVkotKrKtmM
p0fbySslMaBOee8YgJCfAbW3hKChzhMUz+8mUJ7i2PG3DbYPloN0z2rtCLHoO5U2
aq6UufmvElZboT42kMZK
=zkif
-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: https://lists.debian.org/e1wv8mb-0004l6...@franck.debian.org



Accepted ceph-dkms 3.14+git20140429-1 (source all)

2014-06-12 Thread Dmitry Smirnov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 07 May 2014 11:22:53 +1000
Source: ceph-dkms
Binary: ceph-dkms
Architecture: source all
Version: 3.14+git20140429-1
Distribution: experimental
Urgency: low
Maintainer: Ceph Maintainers ceph-maintain...@lists.ceph.com
Changed-By: Dmitry Smirnov only...@debian.org
Description: 
 ceph-dkms  - Ceph FS and RBD Linux kernel drivers (DKMS version)
Closes: 747649
Changes: 
 ceph-dkms (3.14+git20140429-1) experimental; urgency=low
 .
   * Initial release (Closes: #747649).
Checksums-Sha1: 
 e603b3aed30c27b46004328c0bf2adf87c9b29bb 1987 ceph-dkms_3.14+git20140429-1.dsc
 01ec7f9453c716bbb0f007a90fcab5aba065bc12 333292 
ceph-dkms_3.14+git20140429.orig.tar.xz
 77f1916633e801677a10a9c112d790e41df648ac 15680 
ceph-dkms_3.14+git20140429-1.debian.tar.xz
 38db6ec52139aeffbb56d523da190495d5de5dda 372226 
ceph-dkms_3.14+git20140429-1_all.deb
Checksums-Sha256: 
 002f3a2f868d7f91d84b622b3c90b41fcb8ba7d5210af6d44d5f1436d7eff4e8 1987 
ceph-dkms_3.14+git20140429-1.dsc
 a1753ace01c9d4702ad0424fc992c98c51aaf77bec3836aaad8e24e88796554b 333292 
ceph-dkms_3.14+git20140429.orig.tar.xz
 4f8c1dcfb059656a0e24b9632ceff9100e20cad4b990d8a39c1020ca4f49b886 15680 
ceph-dkms_3.14+git20140429-1.debian.tar.xz
 534a53e230024ebbf6fe6b47f2d319c07bc45ceb4d96bdb4725884dcaf384633 372226 
ceph-dkms_3.14+git20140429-1_all.deb
Files: 
 1e4fad13e07d07787801486a8dcb9d15 372226 kernel optional 
ceph-dkms_3.14+git20140429-1_all.deb
 beb7941df115215ae0b03276c4b21a88 1987 kernel optional 
ceph-dkms_3.14+git20140429-1.dsc
 1af730854d6ce77cdd8a2ed21535528c 333292 kernel optional 
ceph-dkms_3.14+git20140429.orig.tar.xz
 18bf33f7535c7b84acbb2633087394ac 15680 kernel optional 
ceph-dkms_3.14+git20140429-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTcBwVAAoJEFK2u9lTlo0blcIQAK7knzpz59ierDNRkh5mX2iY
lYrzvjkQS5uC9LEI421oov0XgIYurtrl0ygsSsfaTOvexJdoH9Pb66ZItgj+zSP9
YDo7sa3SP7i/0ra8zJ80I/o69VnwwI8tI4NkgBhv4zVPH9rMrRlUGcOrepvjJ4LE
Ty2voOYZ8ET5Kju4i8KLvjaSdycS/LJVwHFz5jol9JFnxxywUvztWvKKXZ/d34Xd
5IArI+np1U4Pqbq7yBY6m1rnjuQorFG/L0EvR2ls8ynS88W0QNJM+KmyUCWIqstG
oaNMlbkMEPQJrXbPUaA+WyRucfJue8hL2gVCobWg+P/sUvZvPptwa1Nd7cOPNJ9Q
ttHdSyISLVG+YrV7RZwmDKrohHgAtelGYgi2wNVsK603p0hviOLMUtS+r2YClaTX
hb+O5+53aRFfdDv5jWaoIKlPY/dI7B3uXZsKmkzb5icU+DshBxWkGy7QTrtgNWqo
9Sn8niYE5OXPKWIatncSp/2gVpWdNtoY3WDzxjSfNYe6jORLRYYZAgfySg3uvvuf
15jDlD5GS2SwUwhdzsJ4GwRGgcMl0LmhO64TEKCEvdksZ9Mzy6dK9pjMKZUb7PtN
SG1HwNzQ8QutsptbepZQDk1aHVW/q8o94VSAEZYB5FCIvKEE/LQ0rGOOx+dUgBmJ
PvEbe24uRGdimIw1BfaR
=KxQW
-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: https://lists.debian.org/e1wv8ma-0004jg...@franck.debian.org



Accepted tbdialout 1.7.2-1 (source all)

2014-06-12 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 02 May 2014 18:47:56 +0200
Source: tbdialout
Binary: xul-ext-tbdialout
Architecture: source all
Version: 1.7.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: Daniel Pocock dan...@pocock.pro
Description: 
 xul-ext-tbdialout - facilitates clicking the phone numbers in the address book
Closes: 746687
Changes: 
 tbdialout (1.7.2-1) unstable; urgency=low
 .
   * Initial packaging.  (Closes: #746687)
Checksums-Sha1: 
 d5fbd49bb3c0645b42695754dff8bf188da6dbc4 2038 tbdialout_1.7.2-1.dsc
 6e3a0cf197705edc414d9207c39a0e1a37c4cd1e 45676 tbdialout_1.7.2.orig.tar.gz
 8bf680775ad2f48c3476bc5ea5106506ff315852 11987 tbdialout_1.7.2-1.debian.tar.gz
 485a5e4aca519303ca6906e66af9df17757a7e0d 57130 
xul-ext-tbdialout_1.7.2-1_all.deb
Checksums-Sha256: 
 da22513e53dfeb101fd0699c4f5e59198949d4e6a5036a3e347841343299477c 2038 
tbdialout_1.7.2-1.dsc
 12a701f3af58b9a914df4ff62c961fa8bbc4e107b91f5c1decc2c4bf148a319a 45676 
tbdialout_1.7.2.orig.tar.gz
 b0845602c40aef838f2ad3dd90573c89dc2a025419a04c1c491ea0da205acf91 11987 
tbdialout_1.7.2-1.debian.tar.gz
 0545cfb2475382158d08d63becd43f58ebd5a12f0cf8158eeed3d526eece2f87 57130 
xul-ext-tbdialout_1.7.2-1_all.deb
Files: 
 641c467b924a9a1d3183cd0e1fd716cb 2038 mail optional tbdialout_1.7.2-1.dsc
 1283b153a68a14e1f6dff7eb73a92a69 45676 mail optional 
tbdialout_1.7.2.orig.tar.gz
 85fab32fe0d738105dfdaf836e392c4f 11987 mail optional 
tbdialout_1.7.2-1.debian.tar.gz
 9f98eb28338e04900d66452d0449194f 57130 mail optional 
xul-ext-tbdialout_1.7.2-1_all.deb

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

iQIcBAEBCAAGBQJTY87wAAoJEOm1uwJp1aqDQ14P/2OMq8QDltz7VPvyDUG3UGXO
RF+u9gCtYU3RIu+D0S7RFzznbA6O37rCd1RICVf0LdRyR1grbudJJdJTcl9aztqL
UTTbo9EFGX8OAwvhvPbfcG6N8uQw6caf0EL70s7RVhgbq0Cg+I/F3xVuxV6UM7SZ
BlhYRpxJNTkts26QedfPGtWxLGRaTadtuNP8S8wQm2epo0HoIDBpJZgmyfM505XL
RmCqo01Aq2DyqssG1Ktw+oudtG6jcE8aNf2mtIDctkF4vJlJoqlzxvTPcwlavosD
OhLAfJTRlk7Mu6ij6FfBXIxdDnhsaOwhtr8dgB0uvg3ig7QQIajfdgqh2rzK7/0d
6K5u7btC/pA+6ofDecchUdHI3JMzGZyJkI04tD3FngVL+p1egDtPKw/phkoJ6Ngm
2jQkS+aPKpSZgE/3mmCb/gV4ws9kEEMGNKL66u1ajLjWiZUV/uBOZR61fTK5K8nN
LfGNjbShr9u+GhDnSKj3Qg/2dr6NjVQ5qM9uW1/B8WChGcp25bGanBazfkOW9GIf
FB+6ggMJachhu6/49almQT3aJp44AtTC5Nqlkuxd/O+yeqdbE9Ur/gzMUBIMiIUZ
NGMX2U9NniqBcE5bF8HjyjO5t8zYiNDV1RFENkV4V/ndAtnk0LqY6ApLI66eEzfh
k8qOYyA6oZB9q0grGPVL
=75xu
-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: https://lists.debian.org/e1wv8mc-0004lp...@franck.debian.org



Accepted direnv 2.3.0-1 (source amd64)

2014-06-12 Thread Punit Agrawal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 27 Apr 2014 23:04:40 +0100
Source: direnv
Binary: direnv
Architecture: source amd64
Version: 2.3.0-1
Distribution: unstable
Urgency: medium
Maintainer: Punit Agrawal punitagra...@gmail.com
Changed-By: Punit Agrawal punitagra...@gmail.com
Description: 
 direnv - Utility to set directory specific environment variables
Closes: 743887
Changes: 
 direnv (2.3.0-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #743887: ITP: direnv -- A utility to set
 directory specific environment variables)
   * Update Makefile to respect PREFIX in addition to DESTDIR
   * Update Makefile to skip installing man pages
   * Fix typo in upstream
Checksums-Sha1: 
 8c6a5194657ac958bcddd491cc0b294456939098 1814 direnv_2.3.0-1.dsc
 bac503c51c3579f063454c101b54f73ed1e75bb8 22757 direnv_2.3.0.orig.tar.gz
 9549f7e6a770d4adfbf38574dafab110076c3fbd 2988 direnv_2.3.0-1.debian.tar.xz
 7f1f6f82a889dc357cbfb3f29cedc814bf608cab 586398 direnv_2.3.0-1_amd64.deb
Checksums-Sha256: 
 692a87f4b8291061ce387e2fc9c4077f73e4798e713b0801a011de197530a2c5 1814 
direnv_2.3.0-1.dsc
 d781d412d8a56eb8648a16b4194a1b3f7ba26e7445f5b5f633a6c2b4272d37e6 22757 
direnv_2.3.0.orig.tar.gz
 e158d6f9a8ed48339412266a00962d48121a85f270dbbdc3d4e2e2d561e839ae 2988 
direnv_2.3.0-1.debian.tar.xz
 b13b709855909924afc127c31119ade392630ad3bfebee2ea8e753901bf88206 586398 
direnv_2.3.0-1_amd64.deb
Files: 
 dc179a6ab11bdfb5e54b829120ace215 1814 utils optional direnv_2.3.0-1.dsc
 b6dd726fe967aa5a02431f901ee567e9 22757 utils optional direnv_2.3.0.orig.tar.gz
 0bdaa633cc82bcdb71ed74d7bc2b2b03 2988 utils optional 
direnv_2.3.0-1.debian.tar.xz
 351b4255297063a210ed93fa6b64f995 586398 utils optional direnv_2.3.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTXX9jAAoJEAe0hFJ2jTgk4xUP/2g4zycSAi/Dr8sESMESdumB
KkLkYurMqGpT/o6TFphX+nKrFxL5czquVcvZAaByz1lFsjVDWCAz/Tb9I3TkY62O
Q4RnGEbQbY8i2QnxPEhV6K8I/atlrteLPioPPagd7QHi7XO7NB0hGboH9lJsZl81
aAkTwXOXj9Q7qQfGY/kfbiS0VbCy3WuJ/MMD9qehlOy1LjdE840Zk5o18HYfKWnm
lbjD/cGL25yleXgCDDCq59+vuYVzUxvJYhGQ6pRG4df8nZNn9vWv/Sce5OuZ9041
RnV9n1clRw2Nkni+ngN9KjmDhtU1lE8LPKhXfSWgnJZytItq4zOSzGxtc9k+gm68
Dga2oK3YVWX+D6y0xtDanEbf1CuMsKC7uuPzn5GkeHifJUSkUoLgDXojec4VfYXv
Z0ekJCfUKhbw5WiVjFwERAx77IPQcjSiji7Qxz9nWo3xhMBSmhjroo+kq16Ohf3s
Zw+fQiHdELUtykfUf/HsTKGbZ+B01otrUy/e3Y73ZQ08yxtX7KRRxARkagsf5NTx
9OYM84v588+ZIFYGGyJj/N943u+yIAfC9sUiNRR0VdBQw3tsawJm+TAgmHPA5m8s
m3qQYWy0WwBcum3iiESzpcV4VHDXpvLzeam+TMyNNlDH5YOo1zMruxiThlYRcTDN
blYshvaO6gXNWAYQyd+x
=aeHg
-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: https://lists.debian.org/e1wv8ma-0004k1...@franck.debian.org



Accepted efibootmgr 0.7.0-1 (source amd64)

2014-06-12 Thread Daniel Jared Dominguez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 05 Jun 2014 16:44:45 -0500
Source: efibootmgr
Binary: efibootmgr
Architecture: source amd64
Version: 0.7.0-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Jared Dominguez jared_doming...@dell.com
Changed-By: Daniel Jared Dominguez jared_doming...@dell.com
Description: 
 efibootmgr - Interact with the EFI Boot Manager
Changes: 
 efibootmgr (0.7.0-1) unstable; urgency=medium
 .
   * New version
   * Include commits
 - ae73435f: Get a lot more picky with our compiler warnings.
 - 0800648a: Remove bogus test for optional data length bounds.
 - daa62767: Only free hard drive signatures if we've allocated them.
   * Clean up debian/copyright to follow DEP-5 format
   * Don't touch man file since Peter isn't generating it from docbook source
   * Remove Build-Depends on docbook-to-man
   * Build-Depends on libefivar-dev since we're using efivar now
   * Add README.Debian for description on building source package
   * update debian/gbp.conf to reflect new upstream tag format
Checksums-Sha1: 
 79333ec43feb20f53d9c5e0f3c4383c49204733e 1971 efibootmgr_0.7.0-1.dsc
 ced27a12217a67405f2c2e6976ee9438c48ab847 62675 efibootmgr_0.7.0.orig.tar.gz
 1e734dd409cf46da03022d3b329cc360487723d1 7968 efibootmgr_0.7.0-1.debian.tar.xz
 a505afb066e12199ee98398b2ab15f766b0b1df2 40834 efibootmgr_0.7.0-1_amd64.deb
Checksums-Sha256: 
 d8eb3d644f729116606984f2a02f6f1b3e10eb637fa7fe5366630407d7fa21d1 1971 
efibootmgr_0.7.0-1.dsc
 4fec4bf600f27d0d1d950060ba3b86d2c2cf1da58701bbc82491bd2a16069aee 62675 
efibootmgr_0.7.0.orig.tar.gz
 a2a31fede9059c2aec2409b9ad70133892a87bc96961c17f3965fbd8c39e4bf4 7968 
efibootmgr_0.7.0-1.debian.tar.xz
 958758a38477275407da3d606d73f4ed49fc1159c88bc9a45aee42b4c0fe717f 40834 
efibootmgr_0.7.0-1_amd64.deb
Files: 
 5b6aa48d7e030f2b5f8aa1bddbe4a859 40834 admin optional 
efibootmgr_0.7.0-1_amd64.deb
 bc17e5e1abcb65d8335e80e17ca0ef24 1971 admin optional efibootmgr_0.7.0-1.dsc
 6e69d9bfab99718d6089904c60123f9d 62675 admin optional 
efibootmgr_0.7.0.orig.tar.gz
 a8981821a97a7b338f65a99ae7939fc9 7968 admin optional 
efibootmgr_0.7.0-1.debian.tar.xz

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

iQIcBAEBCAAGBQJTmd9RAAoJEFh5eVc0QmhODykP/3C72ypt3mXDXbOBbl0lZV2K
rNoJY0RwfX0TFWRLr5L+UCOOGyI+K7VWCh5BwOFrX+KudFoWdm+UoIyh5v597FAW
WB8OBm3XBGcJ+vTU5va5SBNLShCjnAgTeRZO7T2t+vvqqeiuo0t/pXsuKXiWuRaC
SJWkdbxPzbz2j1OvEq3M3AC+gKRdnngzGpxfRKoSplirs4u2WFW0qSfc11Q4D+sm
vVMOGyjJ9KEyJtHRlx26M8qTc0DJisyW/bVc1IBK1JfaOyvVYwyaRe0vBhcqNkES
JUsH7NrG5S97H9wdyGaGVVdamXpgc7ibikE/vzOSKef4o0ZTE2kJn/x1jGM2XKz9
XUF9ye/eXtF+eQ2vBsCZOwApEotrCY0WntZKwcIf/l7faVmIrtJRfbR2Zb6QZJhD
COyEt8X4LddQ4oiOLca49qRh5S0Dm1VkxxTjKHfoI03/3y09fjIWNJt2OSmj4kfb
s7OvtrWBcgvHutdS+UwCMegwZ/q0iHFMgHjKKZHHMT5yKYYLp3VhwRTsbFpZjTUz
aJGdEJAKAk+siQ46Ai8MhAv4JuZbrIzEfsGTI8x5TUNIScHc6PnSTl+i6h0Ne1jT
XuRuPR4ZYRUwqiReB9DjUlhwK0vtkqZmqKJv57rIGBfc+WAz2BhCxoonIVufd0Ik
2O6zXt6BpZoJCKownA9M
=nNDl
-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: https://lists.debian.org/e1wv8eu-0003me...@franck.debian.org



Accepted golang-context 0.0~git20140522.1.1f3e8a4-1 (source all)

2014-06-12 Thread Tianon Gravi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 11 Jun 2014 20:20:31 -0400
Source: golang-context
Binary: golang-context-dev
Architecture: source all
Version: 0.0~git20140522.1.1f3e8a4-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Mizyrycki mzdan...@glidelink.net
Changed-By: Tianon Gravi admwig...@gmail.com
Description:
 golang-context-dev - General purpose registry for global request variables
Changes:
 golang-context (0.0~git20140522.1.1f3e8a4-1) unstable; urgency=medium
 .
   * We're hijacking the golang-context-dev bianry because we want a source
 rename to bring it in-line with go policy.
   * Upstream bump to 1f3e8a4 (2014-05-22)
Checksums-Sha1:
 f4aebe86ac4f098a24207e25c9637ce31df5c174 2175 
golang-context_0.0~git20140522.1.1f3e8a4-1.dsc
 e36d64036872e5c1287e3731849385b40d705163 4247 
golang-context_0.0~git20140522.1.1f3e8a4.orig.tar.gz
 9620cb88adcc086f76e1197a49f0cdd188c41e04 4352 
golang-context_0.0~git20140522.1.1f3e8a4-1.debian.tar.xz
 a54e0cec3f6d802a666d20ee2433f7ab8e2a2865 6082 
golang-context-dev_0.0~git20140522.1.1f3e8a4-1_all.deb
Checksums-Sha256:
 c4a880d3d5bfbc8183a56b25175588dbd5d4b98286ca62fc2f9de5a2140107fc 2175 
golang-context_0.0~git20140522.1.1f3e8a4-1.dsc
 fb21fb8f6869da4e93e59700cdb49f106b957d2e5291dc74b85cc3fd29d4e1b7 4247 
golang-context_0.0~git20140522.1.1f3e8a4.orig.tar.gz
 556a4836f0f21a18d6f7437fbcea9d7fa2ceea000fb2090c5f9033616685a486 4352 
golang-context_0.0~git20140522.1.1f3e8a4-1.debian.tar.xz
 45cd000b27c9bac6a8cd81bacf248716ee981df286083cfdde79e6738bbf1e6f 6082 
golang-context-dev_0.0~git20140522.1.1f3e8a4-1_all.deb
Files:
 ef87d7875d777a3efa972461091146c1 6082 devel extra 
golang-context-dev_0.0~git20140522.1.1f3e8a4-1_all.deb
 d15c7425f84f284bed6f7c1073388d6a 2175 devel extra 
golang-context_0.0~git20140522.1.1f3e8a4-1.dsc
 e5adc066a4c2097713fca381308ed2b3 4247 devel extra 
golang-context_0.0~git20140522.1.1f3e8a4.orig.tar.gz
 bb1b6532aa58ed0776fa3ac29dd44d0e 4352 devel extra 
golang-context_0.0~git20140522.1.1f3e8a4-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJTmPMDAAoJEHtYWzCAfCqH/uUP/RdkX4t6XXkN/QSmYzC4mC2S
RVqZ2T2kz4+4cnV7RFKsdWba0mkHQsrkZV58+tKV1Hj4F8Ef7tNao+r7h3yLF84Q
IiiEl+RjPvGGYKjbxcP89u1YDAgI9d6Gcz0TxtmpGLYc2q8Ev9gh6QUtiA0qBEE0
vu3N56D8D+/SylNzeIa0LbkGQ8ErNc3Ocn+bMI3ln1dCvNSB3VfrocO02cGwFHP3
fYcdPi3GHLy0R9ZE8PJnzmG4IaAbAKSm8GbnfdhEsJ3PwiOQPccywKs3+b/di1Gw
e497ohPqUg2UGz5eFQl1iGAyZSgOBbvB2uWTf5JRqvxxOoDCGR1LtCHouY7GgYkk
gf5RLJdhLsXdR57FNH9t5l6yILWY57gfqpGnvNLqLBdF0ANyW85ZMje6PGfrs1hq
Kkl8YUPmz/3rYhVLCJ1+1Mn1dbPQBC8huj0jkisiqUi7T6hxVNsypjh+JySFCCfD
nJFRCY0cFfSuaK7qfrPJ7SkZpzFVDJlLfkmXpKhDbsO7vEuCa64/d91aDiSlhreT
NZRqe4YcITqpbpWolLwuuLd3YHaSXbH8PnZrgKUWy+2brvh2BlSKCOwHQI7VupsJ
9UMhhftXl9dBiH92VT7edfG7m1i9C9O7IdmTFeGasbtupykvUHuulsxFiLbrRW1W
b8h7xDaomPGRDIdaDe3T
=BmLu
-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: https://lists.debian.org/e1wvaeh-0005th...@franck.debian.org



Accepted golang-mux 0.0~git20140505.1.136d54f-1 (source all)

2014-06-12 Thread Tianon Gravi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 11 Jun 2014 21:18:57 -0400
Source: golang-mux
Binary: golang-mux-dev
Architecture: source all
Version: 0.0~git20140505.1.136d54f-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Mizyrycki mzdan...@glidelink.net
Changed-By: Tianon Gravi admwig...@gmail.com
Description:
 golang-mux-dev - URL router and dispatcher
Changes:
 golang-mux (0.0~git20140505.1.136d54f-1) unstable; urgency=medium
 .
   * We're hijacking the golang-mux-dev bianry because we want a source
 rename to bring it in-line with go policy.
   * Upstream bump to 136d54f (2014-05-05)
Checksums-Sha1:
 b1cecdbb8c556ea8d0f370846526df979cf04d0c 2150 
golang-mux_0.0~git20140505.1.136d54f-1.dsc
 5e7766b92ed288ff4d3de88acc7be71d600759ea 18710 
golang-mux_0.0~git20140505.1.136d54f.orig.tar.gz
 9ed9f606edf345c97e4449fd0208fedea3f006ca 4576 
golang-mux_0.0~git20140505.1.136d54f-1.debian.tar.xz
 8982c8eee2f4db4887e75ec6c814023dbe768eed 19090 
golang-mux-dev_0.0~git20140505.1.136d54f-1_all.deb
Checksums-Sha256:
 aa9e659394c65d332ee728ad0767c896353157946eb3d68fe12954ce567bc1c5 2150 
golang-mux_0.0~git20140505.1.136d54f-1.dsc
 97423d9cff4e04a0dfdfc10463468421a79551625d87d595348fb7cdea71f844 18710 
golang-mux_0.0~git20140505.1.136d54f.orig.tar.gz
 1e40ef69c9ffe34aa5eef59beb85f629c7733b3c9ac08022c9990447644e5a76 4576 
golang-mux_0.0~git20140505.1.136d54f-1.debian.tar.xz
 46ccde5eff5d7e6dc0d0455f8c71c44140a118d2025128c6de9a91fc7f0e2fd1 19090 
golang-mux-dev_0.0~git20140505.1.136d54f-1_all.deb
Files:
 6f0929035b652c704ced694a00a81a91 19090 devel extra 
golang-mux-dev_0.0~git20140505.1.136d54f-1_all.deb
 dcf9b6088783535dfd219a324a9b4eac 2150 devel extra 
golang-mux_0.0~git20140505.1.136d54f-1.dsc
 ff1694f1ead6787b23cdfb782a7c07bc 18710 devel extra 
golang-mux_0.0~git20140505.1.136d54f.orig.tar.gz
 bceb9dca3772207a069d2e0d74b0902f 4576 devel extra 
golang-mux_0.0~git20140505.1.136d54f-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJTmQD/AAoJEHtYWzCAfCqHfEoP/isX7rZV5qvA7QEoKclHcOF0
uy9vklcdnqe6r8WPffwjEZgbVJAAFxOifaMrvdcKjpe7+BSqnqTmatQ8V4Lodary
1aElA82zamgVIOQIehfpZ73kSUhTn8o8iK26Ia1B0p8cJRUd6bSZRPqB6uCo6V6K
dLzhQNhGipgmY+IJMgQD6LaZHdFY1AmsPfjnMhAUbSY5LHJK5l3vy8o4cdztkmDF
8he1qmfrNCCIxHlPGkgsFD5fT0k2VL2lUwr1Y4s4fg6o/1mkiz61fMWDKy20KPuV
u60NAdbYcj9ngLDT3Zsq0xdXRFjdw+Nk3ZJKnGbuBrbIm5XR7+1zjrK7EsK48Rbt
5DvoENDhjZ2Wsgjn0K3CrCwrFCBn1OpMd8Rfe7c2mMk823Hy94nQcGJhs+XD1w6M
Jb+8Ecv92CRurfK2vVyu51Kmju4LUM8pY19vGPwzQiOFDGUX1K/KKfeBMcJ+HkyG
xkwuan9/1DztzkaNePgjdgJFxUjgU65G/vu5/E/ptPKxyxrjjXYUlTm/yWZ4jY/V
7A8LftV1nCtPACM/7HQAB6CspXuhI6yAUueEOeYCKDACAIkxEsgreDlxwW8NG+9z
Klc3F67K2ABRltyQMNuKIxx1kJJSfSIOja2mzkdsLV3aFRnLPScGF6Vc1AWbgCQf
FGGg9JjVRIEEm0w9McvR
=qZDs
-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: https://lists.debian.org/e1wvaeh-0005tt...@franck.debian.org



Accepted libsvn-look-perl 0.40-1 (source all)

2014-06-12 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 21:45:04 +0200
Source: libsvn-look-perl
Binary: libsvn-look-perl
Architecture: source all
Version: 0.40-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description:
 libsvn-look-perl - module providing access to svnlook data
Changes:
 libsvn-look-perl (0.40-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream release.
 Fixes a security issue with path names containing $, `,  or \
 characters.
 LP: #1323300
   * Strip trailing slash from metacpan URLs.
   * Update years of upstream and packaging copyright.
   * Declare compliance with Debian Policy 3.9.5.
Checksums-Sha1:
 c4dab749294c631c0e9b66f6a1793d173096c31d 2260 libsvn-look-perl_0.40-1.dsc
 2b7b571b0bb78ddee8c32ccc54278aec3797f887 17123 
libsvn-look-perl_0.40.orig.tar.gz
 2f15b25117cae0142c7db4284af4d0250c1b1f75 2996 
libsvn-look-perl_0.40-1.debian.tar.xz
 20dc85f05cc0c121b7887891ffe3250313de52e4 14618 libsvn-look-perl_0.40-1_all.deb
Checksums-Sha256:
 66a8b550f37aee0deada2567cd95c34d11a6f9fa0fac98967300179ca06d5d07 2260 
libsvn-look-perl_0.40-1.dsc
 ad10e83ef3ca5eb1fbe8baa8505e70822e44c5fc2e34ba8fe92647a6d4759566 17123 
libsvn-look-perl_0.40.orig.tar.gz
 6008148d8c3d5d42dc98d3bc9fde7d338e7e39c9a8c47f9b3741928b835b3a5c 2996 
libsvn-look-perl_0.40-1.debian.tar.xz
 bfd2f937c2ee4cb50474761b8606e099f7015a872c202a28ceb3c8758949f2da 14618 
libsvn-look-perl_0.40-1_all.deb
Files:
 3cc1d67f7936bb4ace5421fc09044a31 14618 perl optional 
libsvn-look-perl_0.40-1_all.deb
 2b7738a81b57c909735c0a0bbf904e5c 2260 perl optional libsvn-look-perl_0.40-1.dsc
 3581d92869a2a1e767f1c61bd4b7ecc1 17123 perl optional 
libsvn-look-perl_0.40.orig.tar.gz
 1ae7b79315e39763904ce7e0c71c19a4 2996 perl optional 
libsvn-look-perl_0.40-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJrBAEBCgBVBQJTmgPFThSAAB0AKGlzc3Vlci1mcHJAZ3BnLmNvbW9kby5w
cml2LmF0RDFFMTMxNkU5M0E3NjBBODEwNEQ4NUZBQkIzQTY4MDE4NjQ5QUEwNgAK
CRC7OmgBhkmqBk3vD/9fm/vwOJ3APKRmoFE4BScbTciFn4n84u3XNmw7qZ7tuAd8
Mgu8J9QXo2JAhjuClL80FCHCOAiIXdq4a4cP9b9DbUW2i8P9R0QoaLrua10Vkm2h
mUL/ZYjVEA/NwcBIbDr6XFQF7l+aSPCep408GmfxvoAU13NsrXeMlcIaqR5U4wZz
PoON3F6kDU6S7qTiIbW5XXAS6xKarVt2x3EMP7iOgxYzDP+CJJmD4Ug1CpEB77PT
4zCFgTZHxxNaEVBWiyJ+nGy6tXF9E1t7SaJMBHt2m5SHYcCW62B+Vt9y9YPEGiYi
H7QeWMVwHaz6c9HiTJO45/ekecTliJGVSxsno7vfZTbSA7HhpAiEXpyyHOgVupoU
47vaxJaBMb9beiWKq3GWO9+K5b7z28hxnZjj11FfSg25vLHPr9WsvyNTTxwGaTaI
wwAmXxaihW6c+0jeg5OEmaw4cxuDg9B8bJrB/X2SPdSvQLsCKXbfz/8pV79awYfe
oBlxZ2p8XneynqPtaLwR6CxkYiLUBbcuZZeJJW0nNvsdka9OMUDAWsBuaXM+M6mz
0JLXi4aGgMctrVuCs6ptjE9DxZHGtj+jbkmj3mj2yzyi6akiVk3lm6BJsNKWopqT
AjBxa+eYPjxHPN3DDBXjhFfVMl/4WXwUb6L9KcTYcYFZen8heBb7x/SZdr2e7w==
=syGD
-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: https://lists.debian.org/e1wvb1i-00035g...@franck.debian.org



Accepted node-source-map 0.1.34-1 (source all)

2014-06-12 Thread Leo Iannacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 12 Jun 2014 22:59:12 +0200
Source: node-source-map
Binary: node-source-map libjs-source-map
Architecture: source all
Version: 0.1.34-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Leo Iannacone l...@ubuntu.com
Description:
 libjs-source-map - mozilla source maps generator and consumer - JavaScript 
library
 node-source-map - mozilla source maps generator and consumer - Node.js module
Changes:
 node-source-map (0.1.34-1) unstable; urgency=medium
 .
   * New release upstream.
Checksums-Sha1:
 ab321fb9b69aca5273621ef1e67b21a406ec1e37 2104 node-source-map_0.1.34-1.dsc
 8f21e94eb5747bce4f1cf9762fd61766e1072dbc 36265 
node-source-map_0.1.34.orig.tar.gz
 ff2942d5dcdccbf8f1faa759755ea1e462e426ed 2296 
node-source-map_0.1.34-1.debian.tar.gz
 d4532d9fa0bb50a3c58b1c38452b6cb095bc9f33 23472 node-source-map_0.1.34-1_all.deb
 0be4b8e8ddc362977bf963cac9357858674a3a65 27870 
libjs-source-map_0.1.34-1_all.deb
Checksums-Sha256:
 4bad19637dadb950a8dd3b400a5f0af195fd40a972f20c2576f2b4e8e8fb593a 2104 
node-source-map_0.1.34-1.dsc
 6c0d0f5f440c31be82fff571c8b7152f2bac64dfa67ca27fd3d52abbae82674e 36265 
node-source-map_0.1.34.orig.tar.gz
 a4c146fdb68e3836e4c267081b1eb8526a0dd14886747ff7ed2ddfc1988cc5d2 2296 
node-source-map_0.1.34-1.debian.tar.gz
 65150428df8b3ceb07dc292983930e6aebf4703ccd6e9077726599ef3ac36218 23472 
node-source-map_0.1.34-1_all.deb
 4f3eda544fc390fa30fdc2807823102b3cc5c43151fa0ea431ceb5ecfbc4f214 27870 
libjs-source-map_0.1.34-1_all.deb
Files:
 396ce49fc68bf21c7230b4408815d08a 23472 web extra 
node-source-map_0.1.34-1_all.deb
 99a2e11c8ca4a062f564169fd78f22d4 27870 web extra 
libjs-source-map_0.1.34-1_all.deb
 dc61f7e4969b1ea54b2f7dfc8fb21c52 2104 web extra node-source-map_0.1.34-1.dsc
 295c15abff3d71bad51aac19031b7721 36265 web extra 
node-source-map_0.1.34.orig.tar.gz
 147bff68ae89c53f346e3be6dbb2eea2 2296 web extra 
node-source-map_0.1.34-1.debian.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJTmhjKAAoJEDMrlP7SgvwlBisQAL5Eisx6dGUXqcKZWPIqPOnp
CyA1NCESfObiCzN6qJwaxhjhbJemVcq/Y7AcwPKuFvyu9wXqjb5RnDJf2+j8OHBX
i/VVj1yOWnwNc9P2+N+CSDS4KThDQZgVNvYQ4rAgpoDk6ciaFICYztFDS38KH4D7
9wWBpt8BUtfmXAlUs2wzjM+bJsxf2zWXGkuVZJB9j8mNXFfaQPUWeRIVak6EqXYc
54/ElkReUc7ryxdNb6IjqwtVi+qs99Ti11CSdT95mo7nHUwcVAWF9t1p1c40dsGa
RD/2o0iea4uB2PdpmYLW/CJ6+9SdN+hdpjxFx/pJFjrJ0US3H8Td3IxSFcaRDvq6
5RIIVjjUPm4iFuzYbycM3nfjwxOWUfDVt3iCUoM0nW2uzb0XRGKsU54LN0THTMN3
jImMCucc4+uOP+UkkcQ8sWQWQk5EwJ09KZ106IByfE+ZP/ymEKgmnuZ5GvBfU0Ai
sN4tVlQf+/PwGfi0M+MIa0BZcUM1YXTVAuAQtE4o4RU2i0VD3BDkVclKfydz+wEe
x+vQXQ4mPa5YWTOFR5VFDAZkO3suf0IkYvs0/46/4JvxTJhhNUOYy+53/CsatPpc
QdMRhBO1R2+Cprh4wBW90WV1duQQj27lxVjAnx5kZ5fWHQgDKf0ybcj8r6iE9GAx
2MLoq+hgxuYfdouMUBUk
=U45k
-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: https://lists.debian.org/e1wvcej-0005zr...@franck.debian.org



Accepted openafs 1.6.9-1 (source i386 all)

2014-06-12 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 12:39:25 -0700
Source: openafs
Binary: openafs-client openafs-fuse openafs-kpasswd openafs-fileserver 
openafs-dbserver openafs-doc openafs-krb5 libkopenafs1 libafsauthent1 
libafsrpc1 libopenafs-dev openafs-modules-source openafs-modules-dkms 
libpam-openafs-kaserver openafs-dbg
Architecture: source i386 all
Version: 1.6.9-1
Distribution: unstable
Urgency: high
Maintainer: Russ Allbery r...@debian.org
Changed-By: Russ Allbery r...@debian.org
Description:
 libafsauthent1 - AFS distributed file system runtime library (authentication)
 libafsrpc1 - AFS distributed file system runtime library (RPC layer)
 libkopenafs1 - AFS distributed file system runtime library (PAGs)
 libopenafs-dev - AFS distributed filesystem development libraries
 libpam-openafs-kaserver - AFS distributed filesystem kaserver PAM module
 openafs-client - AFS distributed filesystem client support
 openafs-dbg - AFS distributed filesystem debugging information
 openafs-dbserver - AFS distributed filesystem database server
 openafs-doc - AFS distributed filesystem documentation
 openafs-fileserver - AFS distributed filesystem file server
 openafs-fuse - AFS distributed file system experimental FUSE client
 openafs-kpasswd - AFS distributed filesystem old password changing
 openafs-krb5 - AFS distributed filesystem Kerberos 5 integration
 openafs-modules-dkms - AFS distributed filesystem kernel module DKMS source
 openafs-modules-source - AFS distributed filesystem kernel module source
Changes:
 openafs (1.6.9-1) unstable; urgency=high
 .
   * New upstream release.
 - OPENAFS-SA-2014-002: Fix use of uninitialized memory in the host
   object in the fileserver.
Checksums-Sha1:
 2811efef593061cdcd772c77918551d99e2c1bb0 3568 openafs_1.6.9-1.dsc
 8c9395f89ce04bbb047480c385b5635828d7bbd6 6631136 openafs_1.6.9.orig.tar.xz
 9e40d3c67b2c3faec554254d7d01756e2c603f2d 129444 openafs_1.6.9-1.debian.tar.xz
 371a49dffe5803c895d170b59f423f9e11bcf45d 2044192 
openafs-client_1.6.9-1_i386.deb
 5902a9addcba8f53e9576acee790cf5de432f580 297176 openafs-fuse_1.6.9-1_i386.deb
 5ba19826c1b9c86006c6207560da2f4342807905 218766 
openafs-kpasswd_1.6.9-1_i386.deb
 773c9b2fdc01e57f92d9d932e51a005560241ecd 1396342 
openafs-fileserver_1.6.9-1_i386.deb
 c0a63bfcaffc8d1ba1f176b918cf6099969603f5 504560 
openafs-dbserver_1.6.9-1_i386.deb
 b717ff895cb33fe8d64c9c29d80479e6353cddde 3987974 openafs-doc_1.6.9-1_all.deb
 2d434a746460353240454674a6b450fa380e51da 278276 openafs-krb5_1.6.9-1_i386.deb
 1565b2520035e639e17f617909da552f130d729a 89802 libkopenafs1_1.6.9-1_i386.deb
 bf0a55920b25f0de928e5316dd71e38c17f3e442 228988 libafsauthent1_1.6.9-1_i386.deb
 2dc313f66688abdb733ed45eee6f069b44d61693 217342 libafsrpc1_1.6.9-1_i386.deb
 a8707c6d86475695419377b42f654814e0160f9d 1524678 
libopenafs-dev_1.6.9-1_i386.deb
 ddc60927b046a4d61bff53509adca702432fecc3 114 
openafs-modules-source_1.6.9-1_all.deb
 4c6323ad37bc6c4e1f6c32ff78a9d99e16649acd 937656 
openafs-modules-dkms_1.6.9-1_all.deb
 c8c507f906c00fe7857a4fe7b6008f3db0d94f15 205796 
libpam-openafs-kaserver_1.6.9-1_i386.deb
 c4341a9e7fbaf1a056131793e2d7333ba1f43b20 18657108 openafs-dbg_1.6.9-1_i386.deb
Checksums-Sha256:
 6fe6c1901d3023d685c623b2fdeb410e3222be41da4ce75a4c84788475abd650 3568 
openafs_1.6.9-1.dsc
 509371a18cf6dee932cf0f58e871e6d4ddf50a05b41eaa635d990a200da39c0e 6631136 
openafs_1.6.9.orig.tar.xz
 eaa07a69ec6f2d90262f38232beecafe83c3a84f614f80fc808df650f8b94339 129444 
openafs_1.6.9-1.debian.tar.xz
 bf0967aa4bc9bb5bd2b2bd5b331992654654ed31ce7c63cdae68f9c3f5f394a7 2044192 
openafs-client_1.6.9-1_i386.deb
 f9f76a9a36cac31e25b3cc01e57fe5fcc2bd9938ab3f113808e252350f7c6cee 297176 
openafs-fuse_1.6.9-1_i386.deb
 b44de42e4a2c0ef161c8ac7aafad1bb44dd79293f3f47b2f0ac2aeeda47bd9aa 218766 
openafs-kpasswd_1.6.9-1_i386.deb
 cc8fc302aa398910a0d720d8f9bdee29235f0de44c3ca815496985d622a36c83 1396342 
openafs-fileserver_1.6.9-1_i386.deb
 bc0a0073ba5110dc8945301e76c0fb79990e9ff9569d4ad490ea6fb551175445 504560 
openafs-dbserver_1.6.9-1_i386.deb
 c51a3e8aff84b25575046adb363ccb404db490131b3f45ee4183604b66aa4d79 3987974 
openafs-doc_1.6.9-1_all.deb
 22e80c398872dfc0f5a0c624ba6132110ca54ffc38a33fa68d97d09022beffc0 278276 
openafs-krb5_1.6.9-1_i386.deb
 b0677de5342740c0a68fbffb820d6ff5cbeec88af0c167a6ba3f3a8d0e4dae49 89802 
libkopenafs1_1.6.9-1_i386.deb
 006107ea9e1934eba664514f73155d7020357804232a9b40de911b170ee64d5b 228988 
libafsauthent1_1.6.9-1_i386.deb
 6b46e728e2769819f9aef746a6b836b55ac2a82cc53877f06beb97bcea549b61 217342 
libafsrpc1_1.6.9-1_i386.deb
 6a52a7b9fe5bf3b6d6a48c054df02634c45fa42d9dab365cd1eabd909e1006c7 1524678 
libopenafs-dev_1.6.9-1_i386.deb
 844a68a56267dde323a429a699b2bd4083ae73667d8d649c561c5d0e41341944 114 
openafs-modules-source_1.6.9-1_all.deb
 a76ddc8d4ae8f4650bc2115379b271a3d9df36cd9a620ca3a9585cc2f4eca035 937656 
openafs-modules-dkms_1.6.9-1_all.deb
 ec24a818591a51a8b8bea96cc14022f86b65e1c27a70971dec81519377f2a813 205796 

Accepted php-parser 1.0.0~beta1-1 (source all)

2014-06-12 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 14:36:41 -0400
Source: php-parser
Binary: php-parser
Architecture: source all
Version: 1.0.0~beta1-1
Distribution: experimental
Urgency: medium
Maintainer: Debian PHP PEAR Maintainers pkg-php-p...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description:
 php-parser - convert PHP code into abstract syntax tree
Changes:
 php-parser (1.0.0~beta1-1) experimental; urgency=medium
 .
   [ nikic ]
   * Release PHP-Parser 1.0.0 Beta 1
 .
   [ David Prévot ]
   * Update packaging to Composer source, and upload to experimental
   * Remove failing tests
Checksums-Sha1:
 b5959a4cf4a0596d3d5e43613baf7ac014ebc0c9 2055 php-parser_1.0.0~beta1-1.dsc
 92ecfd8a83307e9c71ed46cf27401869a13ee152 111769 
php-parser_1.0.0~beta1.orig.tar.gz
 1a4b78502c422c7b9bb99f44b1844e334ea259b2 5780 
php-parser_1.0.0~beta1-1.debian.tar.xz
 9442e421644fe9b1a2eddef4604942f3f7d933a8 65686 php-parser_1.0.0~beta1-1_all.deb
Checksums-Sha256:
 7de608127f1929b47962f287b17af52de6938ecac8cd2be6330d49001ec8c780 2055 
php-parser_1.0.0~beta1-1.dsc
 c8d9abdc5e03a14a66dd9407a2e4e3e774667e5021cd273b3a7a97dc600e85c7 111769 
php-parser_1.0.0~beta1.orig.tar.gz
 a7f67fd542103fa40e054267487cde93cc292aa546f866cd5f6c0c9a74cac0ed 5780 
php-parser_1.0.0~beta1-1.debian.tar.xz
 5ac0d64170f2a42b9cc13274f57e17510d7a4370c2ab2014ba51742f057f2e7b 65686 
php-parser_1.0.0~beta1-1_all.deb
Files:
 93f27852df9a6cb6f608f236811d82ca 65686 php optional 
php-parser_1.0.0~beta1-1_all.deb
 59eb5afdafdab5d56e6c5aa13e9b13ec 2055 php optional php-parser_1.0.0~beta1-1.dsc
 ad21e63eeacb066df453517d0f31cf08 111769 php optional 
php-parser_1.0.0~beta1.orig.tar.gz
 7e13794d5e825acc52c44991fb08f69d 5780 php optional 
php-parser_1.0.0~beta1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmgDZAAoJELgqIXr9/gny+NgP/iKa58yzJLBgRZnI+Wry8k/7
NnEMza1zw4buTDhLy4ggNIuuzB0q05UmM/EpKDoNE2L04x5hikWnhjw+DkhYo4nw
rRitL6pFkFAhuQyaGe5tspakSEKJKPx37F23DMYXa8Eb7U5eKxHjLjdqRYyFVALM
j6tk1xtAj43UYoIjj08+mOpwz8atPkhTpfmm6aGguJR7Zrry4dQXfxLDGLcfGySQ
Lkh/IqEiOVL599x2eGSRVfHBVQtNZ4pfaQixpyeP7kOiTEOnP+OnVEKhbI1ksc/r
etGLmS2F7Ku1pDTah6mh85DptVrssDMY0YcP9FGvNDYJv/jlgWfHOzCgu1JqgPQM
upxb7vBVUWhkZZooYZL9+WBCgQsBLL6KlOFgYRInQUCozMcFWIIrgOkP8SGDnU4q
YyUxVGW+LsP9slDmOrnRnencTD8IRCXwmRiIwSppcfcRGXYeVhzUWBEb5m4WubvD
S3376rC1jz2pfzGi0eUjEj9sfiHDkSSsN5SO23J6Wih1nKCN2gIT78bjGwJniTUb
Ip8Ei/tPAlD5iA1sXk2gyi8brYU3cNpxQnP2qewQlRD8rB7B6auDWfTSppTk41q4
FVre3Jt1ZZYSBbjWzNYkg5VSDFz2ZJ30ep4psXgCWzgAqtuIfJttFClxMPGsY14s
ydbEyZdLg9tUAinfHZhp
=VR2A
-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: https://lists.debian.org/e1wvcfx-0006wy...@franck.debian.org



Accepted pushpin 0.0~20140430-1 (source amd64)

2014-06-12 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 21:58:39 +0200
Source: pushpin
Binary: pushpin
Architecture: source amd64
Version: 0.0~20140430-1
Distribution: experimental
Urgency: low
Maintainer: Jan Niehusmann j...@debian.org
Changed-By: Jan Niehusmann j...@debian.org
Description:
 pushpin- HTTP reverse proxy server for streaming and long-polling services
Changes:
 pushpin (0.0~20140430-1) experimental; urgency=low
 .
   * Merge changes from upstream git. (upstream commit id 6a1518f)
Checksums-Sha1:
 c1506485287b75911f88fa88e73733ce2e4e81c3 1850 pushpin_0.0~20140430-1.dsc
 712c31f44fb41a26ae4bf4969b42c07d5d057e24 142119 
pushpin_0.0~20140430.orig.tar.gz
 d61a761b9b32187415da8460cd48fa42e46d3504 16728 
pushpin_0.0~20140430-1.debian.tar.xz
 df9c6a45b7b05767c858bf9c384624f4e4ca3a77 332080 
pushpin_0.0~20140430-1_amd64.deb
Checksums-Sha256:
 b46c9ea46ee637c324d832c7f6b1a7e940b3bc19cbd08ebf127b12dd49a79005 1850 
pushpin_0.0~20140430-1.dsc
 6118a6848906b8cc6f7a086436221a7db2290d03a5914ef3582d4d9dd59c27d0 142119 
pushpin_0.0~20140430.orig.tar.gz
 7222a624546691d1ceaf025f203ebbd08474dbdeb9b66c784e12064e52641cf7 16728 
pushpin_0.0~20140430-1.debian.tar.xz
 74794877cebd92fd230bb7b0453d1e471377984210d9364bea19b7eea54674fb 332080 
pushpin_0.0~20140430-1_amd64.deb
Files:
 afdaa92e309b54f0579d19a9fb5b5807 332080 net extra 
pushpin_0.0~20140430-1_amd64.deb
 957bfb6f6f114f440e4b50f270a024c7 1850 net extra pushpin_0.0~20140430-1.dsc
 d9464c16e1ff6f37850ab97fcbeb44b1 142119 net extra 
pushpin_0.0~20140430.orig.tar.gz
 0917d477257526a35ce1a399e3cb747a 16728 net extra 
pushpin_0.0~20140430-1.debian.tar.xz

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

iQGcBAEBCgAGBQJTmhZ/AAoJEMJAzpldAmsRM9kL/2gASrH1YgdbOAHxFCuNu+Nb
JTzc0vCg3/O3gZpf17nhWqFok/zcyBkWoeVXyHQIS9FJQQvE/JMO6Xqz1ZJTazPe
L08vY2ICmPHCo60VWLxu0VIEE3G5woFXr10l5eyKjnbCwl+gIUF8Rqqt/IX/KECf
JstJdPgfWHDOn0u9RsEpXTRAvPAgBzF9vQsL652cQox50A8fZK3TbdI/V1cBu4uY
a1KJLwPEA6zer+JeN1WYMhNKaXKiVb4mGUe+X9uBZUY8gXRUVjrx8xV19P6rz7VK
o4RJVCkZkS3KPlktohkp4LdDaLTk7fMysV1weBAzamMOhp03o+nowXheY0Os0Nth
QFwLJFyfei3HCVqeTUwUUcJp0Q3k1YZf98dZAoRwwqYK1NX2PhfBIc956PSMrzlE
p5SCh9Iav0Z0urQi6LfNTkpZj7Ep/TBFfylJA1kol6pAiGgINbuO0tvMyJ6pD8mJ
m565t7EinjZljANdfJZxGUG3AuLnXRPpLOEQK2ja2w==
=5IvW
-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: https://lists.debian.org/e1wvcgi-0006au...@franck.debian.org



Accepted gcc-4.7 4.7.4-1 (source all amd64)

2014-06-12 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 12 Jun 2014 21:39:38 +0200
Source: gcc-4.7
Binary: gcc-4.7-base libgcc-4.7-dev lib64gcc-4.7-dev lib32gcc-4.7-dev 
libn32gcc-4.7-dev libx32gcc-4.7-dev gcc-4.7 gcc-4.7-multilib gcc-4.7-plugin-dev 
gcc-4.7-hppa64 gcc-4.7-spu g++-4.7-spu gfortran-4.7-spu cpp-4.7 gcc-4.7-locales 
g++-4.7 g++-4.7-multilib gobjc++-4.7 gobjc++-4.7-multilib gobjc-4.7 
gobjc-4.7-multilib libobjc-4.7-dev lib64objc-4.7-dev lib32objc-4.7-dev 
libn32objc-4.7-dev libx32objc-4.7-dev gfortran-4.7 gfortran-4.7-multilib 
libgfortran-4.7-dev lib64gfortran-4.7-dev lib32gfortran-4.7-dev 
libn32gfortran-4.7-dev libx32gfortran-4.7-dev gccgo-4.7 gccgo-4.7-multilib 
libgo0 libgo0-dbg lib64go0 lib64go0-dbg lib32go0 lib32go0-dbg libn32go0 
libn32go0-dbg libx32go0 libx32go0-dbg libstdc++6-4.7-dev libstdc++6-4.7-pic 
libstdc++6-4.7-dbg lib32stdc++6-4.7-dev lib32stdc++6-4.7-dbg 
lib64stdc++6-4.7-dev lib64stdc++6-4.7-dbg libn32stdc++6-4.7-dev 
libn32stdc++6-4.7-dbg libx32stdc++6-4.7-dev libx32stdc++6-4.7-dbg 
libstdc++6-4.7-doc gcc-4.7-soft-float gcc-4.7-source
Architecture: source all amd64
Version: 4.7.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description:
 cpp-4.7- GNU C preprocessor
 g++-4.7- GNU C++ compiler
 g++-4.7-multilib - GNU C++ compiler (multilib files)
 g++-4.7-spu - SPU cross-compiler (C++ compiler)
 gcc-4.7- GNU C compiler
 gcc-4.7-base - GCC, the GNU Compiler Collection (base package)
 gcc-4.7-hppa64 - GNU C compiler (cross compiler for hppa64)
 gcc-4.7-locales - GCC, the GNU compiler collection (native language support 
files)
 gcc-4.7-multilib - GNU C compiler (multilib files)
 gcc-4.7-plugin-dev - Files for GNU GCC plugin development.
 gcc-4.7-soft-float - GCC soft-floating-point gcc libraries (ARM)
 gcc-4.7-source - Source of the GNU Compiler Collection
 gcc-4.7-spu - SPU cross-compiler (preprocessor and C compiler)
 gccgo-4.7  - GNU Go compiler
 gccgo-4.7-multilib - GNU Go compiler (multilib files)
 gfortran-4.7 - GNU Fortran compiler
 gfortran-4.7-multilib - GNU Fortran compiler (multilib files)
 gfortran-4.7-spu - SPU cross-compiler (Fortran compiler)
 gobjc++-4.7 - GNU Objective-C++ compiler
 gobjc++-4.7-multilib - GNU Objective-C++ compiler (multilib files)
 gobjc-4.7  - GNU Objective-C compiler
 gobjc-4.7-multilib - GNU Objective-C compiler (multilib files)
 lib32gcc-4.7-dev - GCC support library (32 bit development files)
 lib32gfortran-4.7-dev - Runtime library for GNU Fortran applications (32bit 
development f
 lib32go0   - Runtime library for GNU Go applications (32bit)
 lib32go0-dbg - Runtime library for GNU Go applications (32 bit debug symbols)
 lib32objc-4.7-dev - Runtime library for GNU Objective-C applications (32bit 
developme
 lib32stdc++6-4.7-dbg - GNU Standard C++ Library v3 (debugging files)
 lib32stdc++6-4.7-dev - GNU Standard C++ Library v3 (development files)
 lib64gcc-4.7-dev - GCC support library (64bit development files)
 lib64gfortran-4.7-dev - Runtime library for GNU Fortran applications (64bit 
development f
 lib64go0   - Runtime library for GNU Go applications (64bit)
 lib64go0-dbg - Runtime library for GNU Go applications (64bit debug symbols)
 lib64objc-4.7-dev - Runtime library for GNU Objective-C applications (64bit 
developme
 lib64stdc++6-4.7-dbg - GNU Standard C++ Library v3 (debugging files)
 lib64stdc++6-4.7-dev - GNU Standard C++ Library v3 (development files)
 libgcc-4.7-dev - GCC support library (development files)
 libgfortran-4.7-dev - Runtime library for GNU Fortran applications 
(development files)
 libgo0 - Runtime library for GNU Go applications
 libgo0-dbg - Runtime library for GNU Go applications (debug symbols)
 libn32gcc-4.7-dev - GCC support library (n32 development files)
 libn32gfortran-4.7-dev - Runtime library for GNU Fortran applications (n32 
development fil
 libn32go0  - Runtime library for GNU Go applications (n32)
 libn32go0-dbg - Runtime library for GNU Go applications (n32 debug symbols)
 libn32objc-4.7-dev - Runtime library for GNU Objective-C applications (n32 
development
 libn32stdc++6-4.7-dbg - GNU Standard C++ Library v3 (debugging files)
 libn32stdc++6-4.7-dev - GNU Standard C++ Library v3 (development files)
 libobjc-4.7-dev - Runtime library for GNU Objective-C applications 
(development fil
 libstdc++6-4.7-dbg - GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.7-dev - GNU Standard C++ Library v3 (development files)
 libstdc++6-4.7-doc - GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.7-pic - GNU Standard C++ Library v3 (shared library subset kit)
 libx32gcc-4.7-dev - GCC support library (x32 development files)
 libx32gfortran-4.7-dev - Runtime library for GNU Fortran applications (x32 
development fil
 libx32go0  - Runtime library for GNU Go applications (x32)
 libx32go0-dbg - Runtime library for GNU Go applications (x32 debug symbols)
 

Accepted libsigc++-2.0 2.2.11-4 (source amd64 all)

2014-06-12 Thread Balint Reczey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 12 Jun 2014 17:14:42 +0200
Source: libsigc++-2.0
Binary: libsigc++-2.0-0c2a libsigc++-2.0-dev libsigc++-2.0-doc
Architecture: source amd64 all
Version: 2.2.11-4
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Balint Reczey bal...@balintreczey.hu
Description:
 libsigc++-2.0-0c2a - type-safe Signal Framework for C++ - runtime
 libsigc++-2.0-dev - type-safe Signal Framework for C++ - development files
 libsigc++-2.0-doc - type-safe Signal Framework for C++ - reference 
documentation
Closes: 750154
Changes:
 libsigc++-2.0 (2.2.11-4) unstable; urgency=low
 .
   [ Balint Reczey ]
   * Silence debhelper
   * libsigc++-2.0-dev does not need Pre-Depends
 .
   [ Adam Conrad ]
   * Mark optional weak symbol as optional in the debian/symbols file
 (Closes: #750154)
Checksums-Sha1:
 e869398cb8a3daf76356ebb42356ee449d8b4db4 2237 libsigc++-2.0_2.2.11-4.dsc
 3cb814f4c3db38bdfadce43c884518b94b6e6019 8120 
libsigc++-2.0_2.2.11-4.debian.tar.xz
 43d157f4a0899dfd6ced99e6f93ae569b6d1bccb 42916 
libsigc++-2.0-0c2a_2.2.11-4_amd64.deb
 081af2a42b68f0d781c40642ac24791324ba0c7f 98130 
libsigc++-2.0-dev_2.2.11-4_amd64.deb
 664675b0b456ccf59e6bc5e2fee7cc0503165236 2969590 
libsigc++-2.0-doc_2.2.11-4_all.deb
Checksums-Sha256:
 be24cb3199bef18503ef687b86a22f8e6368dd6481b95b53a406c14e34ae5938 2237 
libsigc++-2.0_2.2.11-4.dsc
 630089d3e44d2e9a5ead6f14d3800e04ee6c9686fd5f76fa2a426d5bf1c2843e 8120 
libsigc++-2.0_2.2.11-4.debian.tar.xz
 ce1c1d97daba292a95bd0147d08e629b21586377e1c0e75c05a9aa8ac0ae48c9 42916 
libsigc++-2.0-0c2a_2.2.11-4_amd64.deb
 eaf41b4b34434afc8cdb6c4608744e37c997b86e679996bc67d61cd62f04eaa1 98130 
libsigc++-2.0-dev_2.2.11-4_amd64.deb
 79f4e340e345dfefcf6f4b837cf050dc0b32b2d0449dd041fc7c62fc5cb2aeb1 2969590 
libsigc++-2.0-doc_2.2.11-4_all.deb
Files:
 1b39b96acc0ce9a0546a7888b6c5a0cd 42916 libs optional 
libsigc++-2.0-0c2a_2.2.11-4_amd64.deb
 65b75e5d82d3c2cddc11b3c26a8a16e8 98130 libdevel optional 
libsigc++-2.0-dev_2.2.11-4_amd64.deb
 7873e6e1448f64ce3ca6dae42ade1e42 2969590 doc optional 
libsigc++-2.0-doc_2.2.11-4_all.deb
 5df9b64c2d33b320ead0b0ad5d80b5c5 2237 devel optional libsigc++-2.0_2.2.11-4.dsc
 803e48a501af67ef8d24019b3bc0a3d3 8120 devel optional 
libsigc++-2.0_2.2.11-4.debian.tar.xz

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

iQIcBAEBAgAGBQJTmiiCAAoJEPZk0la0aRp9Lk8QAIvU99Pj+U4LcIAZ406QfNV8
6ir12eU9T0p8TPgDh0nMU5hEJC9AZcjObke/Kcuytn4vTdJ5wNZ0zKgmrBEAujY4
lhPNYKIXfgMqP79mIW6mjlb6l8x2NLAtbCNUMYZx4qxY5qNjWoqXF2o3u7ar8++e
9ghqaxOArf3p0YRb2D3PZ/2ib090tM0w9Vw5n9sllv+mxPT+EsVslFN4Ae1ud/mS
LhsXFNuLhQblGI2wGtLIH9iqQ8jX7Ei9wTPoYdP7c23Ee6dzMgLVFsfsrLQ2pakx
TSRy3GbyzIEnkbuvZW/jmQAgjpfv9FVHogmlAomwqN6dTCo/gb/6T3vkZ2YFOlG5
YMsILI9+F09I0/2pYf6+LyHvBvLypJ532jeJfP1RZD+TWsXwhaCEIuJJvsJTUO29
B4gUDVaQsSxOlzcLLD+dP29TJdd20P7VrFgtybMOi8S2gT/s9p11qlgErHr/EvXF
/WgOGoWFz8Ff9WiH7NhzDM6GnBPCpQlU0ivy1P3O/lLkQuxvPPMkBfCs3f0/Q+cI
ZWXenyjh+/JtnZLsSFKgie7edDvD+0quEoevi87Bee0umGNtLIfOsx+a5xYIAoGg
z1a6bS00VGlVqGDm4Gt9cN+AQFH6lS2erqDx6aAMylvayz41E7n52q7MOGjRmqaC
H4lcght1zbw9tZmTpQaz
=PQhe
-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: https://lists.debian.org/e1wvdzu-0006ec...@franck.debian.org



Accepted doit 0.25.0-1 (source all)

2014-06-12 Thread Agustin Henze
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 20:17:08 -0300
Source: doit
Binary: python-doit python3-doit python-doit-doc
Architecture: source all
Version: 0.25.0-1
Distribution: unstable
Urgency: medium
Maintainer: Agustin Henze t...@debian.org
Changed-By: Agustin Henze t...@debian.org
Description: 
 python-doit - Automation tool to execute any kind of task in a build-tools fash
 python-doit-doc - Automation tool for executing any kind of task in a 
build-tools f
 python3-doit - Automation tool (Python3) to execute any kind of task in a 
build-
Closes: 747956
Changes: 
 doit (0.25.0-1) unstable; urgency=medium
 .
   * Imported Upstream version 0.25.0
   * Disable test suite at debian package building time (Closes: #747956)
Checksums-Sha1: 
 fc5ea26c853b2a0947eaf19d13b6de16ba8d27f6 2235 doit_0.25.0-1.dsc
 9fde8d94dfe728d99b5efb8833fbe9a25fc49c82 334339 doit_0.25.0.orig.tar.bz2
 28cc87e1ad773ab402a5480581d06f7fe6a2833d 5056 doit_0.25.0-1.debian.tar.xz
 ca76b95c2cd88622b7b5bda37b88288c6d362073 56208 python-doit_0.25.0-1_all.deb
 ec0822c281ff020e27c760e96294c58b1c6539f5 55204 python3-doit_0.25.0-1_all.deb
 4fac83cb2202145c58b62af5a93d11a9e7487503 107660 
python-doit-doc_0.25.0-1_all.deb
Checksums-Sha256: 
 3d78438c27a803c1a2a1a9128260b3912824d4e196ab170e775b40fbe17bd743 2235 
doit_0.25.0-1.dsc
 7d70fc1d6d00972be5985385005789fd6d983e5e55e321f9370964ed094d27d4 334339 
doit_0.25.0.orig.tar.bz2
 bfb9e34928b6e445101945fc953131dc4edff035c43db425dcec24396dae2bde 5056 
doit_0.25.0-1.debian.tar.xz
 32bf466d6776ed31c28db4d802d45c157ac504e0387724fba53d68b620d5812d 56208 
python-doit_0.25.0-1_all.deb
 ca2ca237ebd9462f86578b5972af1268a07ad2505cf2a37302db96aa2f1f6aa5 55204 
python3-doit_0.25.0-1_all.deb
 3f852768127ea784f814451899c011168cae7a91a9c20ab47d8b6127517f5d99 107660 
python-doit-doc_0.25.0-1_all.deb
Files: 
 6c652371ccdfa555748b28b6113e69b1 56208 python optional 
python-doit_0.25.0-1_all.deb
 f426a366884a9ddbf5f3b7c7b58f741e 55204 python optional 
python3-doit_0.25.0-1_all.deb
 b61504326dd51a89baf38543c99c5ff4 107660 doc optional 
python-doit-doc_0.25.0-1_all.deb
 75e2ea0181d6513c12d9fb1007379836 2235 python optional doit_0.25.0-1.dsc
 34401c3f8d530a82180aa371919a5cf5 334339 python optional 
doit_0.25.0.orig.tar.bz2
 acd03aad30c675b928ff131b19b8574c 5056 python optional 
doit_0.25.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJTmjWiAAoJEAIoUhB4kDjy5FgP/0DV8/+NlNxLZNDSnyvZokwV
fwfxaE65MboSRFwb8IMV6s155WaPqxckZd2IndUynC2XhnBgvOXO1aowKs0D8XQf
pchFU/CXVO3eCymTQnzneG9tNeNPY3j4jpLXs3WO7ZtDnhZSv+APL3E8uCoOnVJA
AkEs4N8zqiFXXi+ht1d8q2UTh1QvuTvfqMGFzQF+XF9/XQDo54ktv5V4dz2Q6sFz
s/29vF6JLf2FpifzXLUg0O+ip3GD7xh280C3hsRPQuEkmh8N6veUTh+3pCbSG0Cu
SWmP9Dpzj/VoSIvQwus79DZmvxSW7l2Ve9svmJT+tA+ncs99NEkhKRrrusyQbtbP
JBCPCkbaiQbpEo3lCnKpL3fuiVsMK/uvXgEQD+QEzkhYpi6nWdDuW0Z+8B1mzCVf
q8cpYab9ClyL+EzBCD1+gI3I2GJhlVlCVBOU9uVSHDfclaVe81Tmbo7J6GNYI8JB
cEW98nsxAqOO5ionWdqvKzi21tW98k/HGI+tN3eWTbVRByl6kGRCeEwkWo2Gy4Bj
N0ELpu2ek6dlkMvBRa+pcA+b8sxg6ZojjBU/MRTt0ttDoY0felCXy+MKWJKqqYxC
mkByDKlPfxv+r7uTUDmYpGemga1KpUZNprEY8L/rfiAiC+Z2x5jbLkKqnu9HwITZ
0ul9eZG3/4Tr+sY8XKAD
=Yff8
-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: https://lists.debian.org/e1wvev7-0004ey...@franck.debian.org



Accepted firebug 2.0-1 (source all)

2014-06-12 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 21:22:05 -0400
Source: firebug
Binary: xul-ext-firebug
Architecture: source all
Version: 2.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description:
 xul-ext-firebug - web development plugin for Iceweasel/Firefox
Changes:
 firebug (2.0-1) unstable; urgency=medium
 .
   * Team upload, to unstable
 .
   [ Jan Odvarko ]
   * [firebug-2.0]
Checksums-Sha1:
 ab4438346c6566b6851b11f93a17acdafb80 1995 firebug_2.0-1.dsc
 ceb1c4d4bc35baccb4472372df4f2837236d69c7 1449636 firebug_2.0.orig.tar.xz
 ea44d6b87304789a6d9661995ffb36c028d53a87 20112 firebug_2.0-1.debian.tar.xz
 f46473dc672994a906eeac730a4a988a1cc16b3e 1361702 xul-ext-firebug_2.0-1_all.deb
Checksums-Sha256:
 3e621ab35adabc8bb8bcd13decd2863491a9870df9794bcc542edc898d79fe24 1995 
firebug_2.0-1.dsc
 15867c257f7482aeda1032210758296b77795dfc288b1278bd67805d57cc8e97 1449636 
firebug_2.0.orig.tar.xz
 abfea19e23f6293f11c0e3a55ac5c07772d06ab7b1c40412302c464c5e085392 20112 
firebug_2.0-1.debian.tar.xz
 e1a7ced6b90e6a6086c41e62e148f66ef06a183204bb05648e53bffbc43d7b35 1361702 
xul-ext-firebug_2.0-1_all.deb
Files:
 9055fef91d5f5c81074c54487a65de56 1361702 web optional 
xul-ext-firebug_2.0-1_all.deb
 f0359dfd33e6005ff9b311223c4b4f75 1995 web optional firebug_2.0-1.dsc
 36d281d3ccb892d66fb32249aed78012 1449636 web optional firebug_2.0.orig.tar.xz
 fbbd7a4cda90fbffbcd48836d1685ef3 20112 web optional firebug_2.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmlQCAAoJELgqIXr9/gnySFwQAJMmGT/wQ5rUWjdKM2ElP+hQ
kYRVAyA2Jy3nldG7+92dnw5D4UkUNTw7rYCwJXW7IjbeCpWzvakL/lu5JK1JkpaH
yZkEHbBz563OAz/Dy9hATky4Ah92FjaHvjtjM51EYEhnccEbYu7E8z2x33TCrk57
+iaBg86Tnxs5Z8FKU+Vs+bK1x+zTMGyabkbmRrmh2AT/Ugwq8y7fBDZWnIhVFJ0O
cU3fUh9NcIdKic4vrrr0u5dN1hyF99RatdJwCuzqPZq3544RQP411PMLY+DtrCac
ehBgvVq0XhV1QUPEl85TK4QW0sykYtjjholij35RU4UDkBPbhdufEvq565tRxyQc
IJz7r3KCH2kYRaaVtN48WjQKPiNRHG1tJUM2xxfnhiBuqyuOhUSEsNl26nT4gqmk
aMFWZjvdkszebwF/sRXENfBR9c78QCQtzR+xCFAItyGtQ4vIj5CxOEBIO3LKwCzj
IRF2XJRwVW0vK+wxFm9ooPrDi1at0656Gmyqv7e/ALluZyQB8YkX8hDrJ99WCHzW
a9uqxuW98/lAfWfXr1fNt7jLBxYDwai12o/xU0qTqlN/mxDZK0nR6DR2lqEOrtGF
fksF36QXJauqS0rTP5tyni4TidFNPr3d777N3Ob983yA0RqwBMBaHTCFRRoWMVfX
vPfWF/ujguelmRb63INq
=vDwk
-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: https://lists.debian.org/e1wvgc5-0002qv...@franck.debian.org



Accepted golang-mux 0.0~git20140505.1.136d54f-2 (source all)

2014-06-12 Thread Paul Tagliamonte
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 12 Jun 2014 22:07:36 -0400
Source: golang-mux
Binary: golang-mux-dev
Architecture: source all
Version: 0.0~git20140505.1.136d54f-2
Distribution: unstable
Urgency: medium
Maintainer: Daniel Mizyrycki mzdan...@glidelink.net
Changed-By: Paul Tagliamonte paul...@debian.org
Description:
 golang-mux-dev - URL router and dispatcher
Changes:
 golang-mux (0.0~git20140505.1.136d54f-2) unstable; urgency=medium
 .
   * Team upload.
   * Update copyright to match body of the license, BSD-3, not MIT/Expat.
 Thanks for that catch, alteholz.
Checksums-Sha1:
 ea4a762f8e2245f55286dad7192f5f791abf904f 2150 
golang-mux_0.0~git20140505.1.136d54f-2.dsc
 bdc7cc875d005cd6538ce8c1f20502d68a832969 4660 
golang-mux_0.0~git20140505.1.136d54f-2.debian.tar.xz
 1f24949292b50cf3c01b914893cbd5777b77a2e7 19200 
golang-mux-dev_0.0~git20140505.1.136d54f-2_all.deb
Checksums-Sha256:
 0b5adc82e5cab75052ad2b568a001c4229627ad4615f7bbb6dc353b53c8fc468 2150 
golang-mux_0.0~git20140505.1.136d54f-2.dsc
 a9c88cb612980ed2f1e0c3d313c8352fd872f0893e54ff8e8ff8227cbb829901 4660 
golang-mux_0.0~git20140505.1.136d54f-2.debian.tar.xz
 8e7fe598240906e237d116e3c559d173b7f511e62b2e5fe7aa7cbba50774e478 19200 
golang-mux-dev_0.0~git20140505.1.136d54f-2_all.deb
Files:
 eb228e0faf358f385a64d55ef316e6d7 19200 devel extra 
golang-mux-dev_0.0~git20140505.1.136d54f-2_all.deb
 a7bad282bccfa7407c9b831aa512307d 2150 devel extra 
golang-mux_0.0~git20140505.1.136d54f-2.dsc
 824ca17ce05095ab5f2a3752101c12f7 4660 devel extra 
golang-mux_0.0~git20140505.1.136d54f-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJTml0+AAoJEHtYWzCAfCqHNk4P/3TlCiJqqWJOJh/HED+GFDj9
o989k+iJAYtFOTC/Gv/pGMCE09qhggaArb05McLaIy15TcknRGgL5golpLsYaU1m
9bTp3WgC/4/RslOir50IsJ8p0TkrA+W08Z3YEgsC/cTL0YGxHa5fa1Po71AqtkTi
vNow8X8plp3NqReIZjKuZ0MLVq0op0cc27EW4d76RxP+MpsHizzvQdxdP4i8JsPN
EXrsZ4GTLNls1HoVBtv1tBR8SMq4trjBjY2iw1S11mddRmXcKLEE9OJT3NJnLFkk
ysBopY8BGLJSVVc4yDMl6SFfGmgt0Ks6dY7UX6HO7VRrtS3G5XVxCrYV1wZp6zeN
4xBVew49xDkqaT/9ci1R5NRCGS03Ea02e7glt59TfY2qLI2hlUg0UdAybfh2obn7
BECJsVJWobBuoaJbQ6t8s2l7lAWEcLC+rhZUcBACmDgKrFzAMVazuZjnZnXGfimT
DvA2pC3CT/cloBxmcMkG7Z9jd/aanlETmzRhOPGcZg/2uQteIAo1+JVNoW1gvc0d
k42+MH57amEKkLMqcW57kN5Ss7qGzvsPBvBY9zRc6bolhnzookTM/W5AjZxbQl5l
BApeIJZQBFMeJb7B8MizPxAOXOfcQY8ML8gY36RH+1ec4bpStHNz3mJAtGaSU2oz
Nz0Fk/D6YYp4vdYJyUF8
=LRh7
-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: https://lists.debian.org/e1wviha-0005nf...@franck.debian.org



Accepted golang-context 0.0~git20140522.1.1f3e8a4-2 (source all)

2014-06-12 Thread Paul Tagliamonte
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 12 Jun 2014 21:50:59 -0400
Source: golang-context
Binary: golang-context-dev
Architecture: source all
Version: 0.0~git20140522.1.1f3e8a4-2
Distribution: unstable
Urgency: medium
Maintainer: Daniel Mizyrycki mzdan...@glidelink.net
Changed-By: Paul Tagliamonte paul...@debian.org
Description:
 golang-context-dev - General purpose registry for global request variables
Closes: 751423
Changes:
 golang-context (0.0~git20140522.1.1f3e8a4-2) unstable; urgency=medium
 .
   * Team upload.
   * Update copyright to match upstream (BSD-3 vs MIT/Expat). Thanks for the
 catch, alteholz. (Closes: #751423)
Checksums-Sha1:
 50a9115d9ccdafc3e781713837903cdbd8f05b29 2175 
golang-context_0.0~git20140522.1.1f3e8a4-2.dsc
 450a7ffbb59739f5a0aa5f2e805b303156077607 4436 
golang-context_0.0~git20140522.1.1f3e8a4-2.debian.tar.xz
 c870b07c8d317660ebe9ffac6a7c88c1502d4072 6210 
golang-context-dev_0.0~git20140522.1.1f3e8a4-2_all.deb
Checksums-Sha256:
 9737e02e3b8527e285b1670ecad8dabe1c8e4796b63129f73f1f61f7c9f8bcee 2175 
golang-context_0.0~git20140522.1.1f3e8a4-2.dsc
 4209387f612ac6288a77f9a7581d4a62fa1ffea05d1fdf80138bed2af2bf6256 4436 
golang-context_0.0~git20140522.1.1f3e8a4-2.debian.tar.xz
 125214df2dea80e93abd5eeec4ef126393fdc720c9d02070cceca7f68b2bfabf 6210 
golang-context-dev_0.0~git20140522.1.1f3e8a4-2_all.deb
Files:
 ffe2455dc20770425d1a7c922a47f92e 6210 devel extra 
golang-context-dev_0.0~git20140522.1.1f3e8a4-2_all.deb
 8f0784b573c87fa8874269e55a0b7f9a 2175 devel extra 
golang-context_0.0~git20140522.1.1f3e8a4-2.dsc
 21e014aba7032b945f234888a9d179af 4436 devel extra 
golang-context_0.0~git20140522.1.1f3e8a4-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJTmlzJAAoJEHtYWzCAfCqH56MP/i4giQyz7oDb4ubmUOIqyt7I
bWd051EP5FME8IQVoD2ZdWZuYVdoa3hBB+fWXmgiETgyO4fHqQwi5ZNERccQbjcU
wVd7ypuZDNPKQWDLCvr61WRghnib+qy94hyyyIujZorfcCGw9dkScmt6aWUFqd1h
FnVpAyjNEFVmWq5khDdf39smQFavA6anbBX2HXUI5c9MwrO4r443oofrpotWdm4S
/OhUTwjQekuOyf2gEZjL3zz+0b0hFyY1r+ZB6ZBSspQLC8L5eOI/2M2sd9YEcWHJ
6XKYKcMUiF7ipqi5sSqwCldFLx7xwG+rJMJl7UY6OETZKmFh4Yub3LdTB3AZnh/2
A04B53m1Hl1LTxxnqBS3gqLIragWwPpyZNXWoH2x/iezpqwas7AfOwyP2a2n5KTK
3cLSHjQmz7GQtLJPpt5SJWxRY6Hw6EOymrb4fJZC8QE2uX1pSfEMwQiEO/jyJQ0u
wW8NMtEvZusxHF8idIkBB+nt+mzntzRrEM2HRszzPQiUFMC64f6vGCQtD4YpD9BW
HTGrYyTAKy2iRyZ1W9gb5/VxuuOuV2XCPQgif+rEkooCbI7htmALsNvYCAgeysTf
qLzXFpFg1Yyz0xI9uRiK/i13vmd9TfQqsDx54szSEbpPqYvuH7KgnkB/mQyFN40c
JCKNjw256vogAYjBMCLm
=Sarg
-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: https://lists.debian.org/e1wvih4-0005la...@franck.debian.org



Accepted jd 1:2.8.8-140601-2 (source amd64)

2014-06-12 Thread Hideki Yamane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 08 Jun 2014 00:01:22 +0900
Source: jd
Binary: jd
Architecture: source amd64
Version: 1:2.8.8-140601-2
Distribution: unstable
Urgency: medium
Maintainer: Hideki Yamane henr...@debian.org
Changed-By: Hideki Yamane henr...@debian.org
Description:
 jd - simple browser for 2ch-style web forum sites
Changes:
 jd (1:2.8.8-140601-2) unstable; urgency=medium
 .
   * debian/control
 - upload source to alioth, thus add Vcs-* field
Checksums-Sha1:
 1ecfec3523bffbb1b7ef700c4f9f78b2fc8e443c 1964 jd_2.8.8-140601-2.dsc
 4a30b074d7d86a65fae23c6ce72c08a9e6a9149e 11564 jd_2.8.8-140601-2.debian.tar.xz
 82c5131c3090e8063d72194fe16281a2be1cd6d8 1511552 jd_2.8.8-140601-2_amd64.deb
Checksums-Sha256:
 f4127f16c6a981d8e56a774750d4ce3b971010efeb18c6668b64aba1357caa5c 1964 
jd_2.8.8-140601-2.dsc
 117bd188944f76008e663e32e909e4f04b5344f9eefbbafb45448a83b7349c8d 11564 
jd_2.8.8-140601-2.debian.tar.xz
 68c7daa75aa61027fc779fd25316acbb6ae01f69d4e4e17bf876bec1a433f7b8 1511552 
jd_2.8.8-140601-2_amd64.deb
Files:
 4a7963f8cc913c976b1afe6758443531 1511552 net optional 
jd_2.8.8-140601-2_amd64.deb
 8086106bf4872632b8068731e898094c 1964 net optional jd_2.8.8-140601-2.dsc
 4e0e40ca55896e73e40222b6af7d5002 11564 net optional 
jd_2.8.8-140601-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJTk8zmAAoJEF0yjQgqqrFATiwP/2ufh0cmW0OpVTM1CEhJak0J
ANE/O/aA1BxDJwxfkcrzcD0Vsp+t+BqWCT1aZ2VF3JgZOG3ICxMHY3enws+HK/bF
OK28eiNql7KKpAmCfhtsM83CKJyHp++mtlRVIg/f3BtBjO8TTRLUE9ViAKODRcnn
ziRRYP4gtwmNsjYATSkOT0gpDu4tW/dxJMsn/8NtlGWcjDHf9DpD5TqMk97dFtGc
Mj9S+oyuihoaSwwi4yYVOcOGybqyQOpSOni47Zdkz0RYb7dKxsDb5UmUUkjF8t9O
uGACDbrwJlPDManR6A0NYy4Azy57D5AWgNj7/4/nmqloLztrOds6wYgx7UJK5Ivs
HqI38EysKFNtPiC84HmM9PWzqUrXZKjftu2/ZKIxBZLldb5FHH8hqO2EFm4HRTwd
+JTc/yxEVZZNxKXPAlT3cTGTAHIkc9cDtPru7ttBIixHhsUaBCb3IBytmvk59feT
BOA5e386LIOMbJm8GJZMRXjDDvOF7mK0tJ6ag+dA3GR3ba7TLGnTs1Gt+6XNiXal
XbjlclUQHPz+st5gGYTuD2MoIQn9TzKcHeRvcwOM4VlWfFeew7F8744o0uiRbv79
9Vg8a4nIJpgDZlKjgR9afh3lkcLM5eO1zZqzyT3WedU0rw9NgHwZxqlr5bPvkDJq
bzNsfcP9CNjW0tNMCe6Z
=rVXK
-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: https://lists.debian.org/e1wvihg-0005sc...@franck.debian.org



Accepted xcb-util-renderutil 0.3.9-1 (source amd64)

2014-06-12 Thread Arnaud Fontaine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 13 Jun 2014 11:54:12 +0900
Source: xcb-util-renderutil
Binary: libxcb-render-util0 libxcb-render-util0-dev
Architecture: source amd64
Version: 0.3.9-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Arnaud Fontaine ar...@debian.org
Description:
 libxcb-render-util0 - utility libraries for X C Binding -- render-util
 libxcb-render-util0-dev - utility libraries for X C Binding -- render-util
Closes: 677733 750664
Changes:
 xcb-util-renderutil (0.3.9-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control, debian/rules:
 + Use dh-autoreconf to make porters' task easier. Thanks to Erwan
   Prioul. Closes: #750664.
   * debian/compat:
 + Use compatibility level 9 following bump of debhelper Build-Depends
   in the previous NMU upload.
   * debian/control: Bump Standards-Version to 3.9.5.
 + debian/libxcb-render-util0.symbols: Added to catch ABI changes.
 + debian/copyright: Switch to machine-readable format.
 .
 xcb-util-renderutil (0.3.8-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Enable multiarch (closes: #677733).
Checksums-Sha1:
 f3b37136a813a0878fff408b4bac9971ae244da6 1602 xcb-util-renderutil_0.3.9-1.dsc
 cb533b1d039f833f070e7d6398c221a31d30d5e2 292898 
xcb-util-renderutil_0.3.9.orig.tar.bz2
 52ffd67760364135c38c43edbe2a39ef466696a4 4292 
xcb-util-renderutil_0.3.9-1.debian.tar.xz
 5187af9efe521664e1b4f211caee2d8ee1c59db3 17978 
libxcb-render-util0_0.3.9-1_amd64.deb
 7d9afd5cb881141db4f8ea7cd4b0d4efae709a4f 17838 
libxcb-render-util0-dev_0.3.9-1_amd64.deb
Checksums-Sha256:
 00d89cea2ad48c087126083e49f53b352fbf794931c7a3a9dcde727c4097649f 1602 
xcb-util-renderutil_0.3.9-1.dsc
 c6e97e48fb1286d6394dddb1c1732f00227c70bd1bedb7d1acabefdd340bea5b 292898 
xcb-util-renderutil_0.3.9.orig.tar.bz2
 6febe28c38155aa90ec866dbc8b7446494662cc09f3a38be392f21c90fa0b4ec 4292 
xcb-util-renderutil_0.3.9-1.debian.tar.xz
 8104c70b6e0f25e27e799b625e064a7a7ab743e9e4ea0905e18d6b91b276cf00 17978 
libxcb-render-util0_0.3.9-1_amd64.deb
 a9491274a104cc9e97e24ee0214d0bd6fa645e8a6001c06ddeded539fe7af148 17838 
libxcb-render-util0-dev_0.3.9-1_amd64.deb
Files:
 1599b3506feb7ab205d9ef63811f460f 17978 libs extra 
libxcb-render-util0_0.3.9-1_amd64.deb
 64f3d45bc1cc857887f18c610e2bfaeb 17838 libdevel extra 
libxcb-render-util0-dev_0.3.9-1_amd64.deb
 ec90c2171b9935c16ff227690c3e8038 1602 libdevel extra 
xcb-util-renderutil_0.3.9-1.dsc
 468b119c94da910e1291f3ffab91019a 292898 libdevel extra 
xcb-util-renderutil_0.3.9.orig.tar.bz2
 750440c6d9b6438a888567920853fa4c 4292 libdevel extra 
xcb-util-renderutil_0.3.9-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlOabQ8ACgkQvfKiIF42GdNgvACglWGdzL1U0RCaPm9KMZTXjJ2c
uZEAoIr3WB6N0ymXcHsKPFuQXzNyv2Be
=oLrI
-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: https://lists.debian.org/e1wvijj-0006br...@franck.debian.org



Accepted dms 1.0.1g-4 (source amd64)

2014-06-12 Thread Matthew Grant
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 10 Jun 2014 09:04:39 +1200
Source: dms
Binary: dms-core dms-wsgi dms-dr dms
Architecture: source amd64
Version: 1.0.1g-4
Distribution: unstable
Urgency: medium
Maintainer: DMS Maintainers dms-maintain...@lists.alioth.debian.org
Changed-By: Matthew Grant m...@mattgrant.net.nz
Description:
 dms- bind9 DNS Management System, master server meta-package
 dms-core   - bind9 DNS Management System, core system
 dms-dr - bind9 DNS Management System, DR scripts and setup.
 dms-wsgi   - bind9 DNS Management System, WSGI JSON http RPC backend.
Changes:
 dms (1.0.1g-4) unstable; urgency=medium
 .
   * Remove python3-setproctitle from dependencies.
Checksums-Sha1:
 f8d06499dc6256802a18c4824c3043fd2f077ac4 1953 dms_1.0.1g-4.dsc
 f227c22101891831e75a463d687831d7fc708f6b 2352952 dms_1.0.1g.orig.tar.gz
 413706614275affac4fa5abcba55d1fe31a3fd38 28132 dms_1.0.1g-4.debian.tar.xz
 46e35c329647044c25f83bda1265342c622298d7 169452 dms-core_1.0.1g-4_amd64.deb
 9f702a74811485d204923c4abdf048ff4ba7532b 14424 dms-wsgi_1.0.1g-4_amd64.deb
 01fe70a139d9d6c8d998ef6033ad723c34230e85 18048 dms-dr_1.0.1g-4_amd64.deb
 ec12f31ca920d08d3e5a781d112b7575fabb39e8 11878 dms_1.0.1g-4_amd64.deb
Checksums-Sha256:
 d4c15c9a30047114464bab5c76c7388ea27936d7473c5169893b389fa9fe979d 1953 
dms_1.0.1g-4.dsc
 cbdcea1abfc0d51d9b14497d372b554e95cceb818f44556520167e990364aec9 2352952 
dms_1.0.1g.orig.tar.gz
 f6fcda3edc552a01a0f986023f50dfeb4fc3716cbddf94524a6529fdcc63eca8 28132 
dms_1.0.1g-4.debian.tar.xz
 39537559121d9239a8054df2217a10ca4516166c2b389f526cfeaaacf59de90d 169452 
dms-core_1.0.1g-4_amd64.deb
 d1417b9af6353d450a1c56d5b244d24a6523f9e9690cbb26af008d645646e2d8 14424 
dms-wsgi_1.0.1g-4_amd64.deb
 04c996d1a675c9584016dca8d890de4dce8687533436e4b7f5dc4c67f624df8f 18048 
dms-dr_1.0.1g-4_amd64.deb
 8fa2959f401e6cb53b1690220fad3e4c5f4f8845a1bc910625b4d9b000599710 11878 
dms_1.0.1g-4_amd64.deb
Files:
 3e37c2ba9d5014f42c16962b5d13aa9e 169452 admin extra dms-core_1.0.1g-4_amd64.deb
 78857f4f44a1f78fdd78bbec8a9104b4 14424 admin extra dms-wsgi_1.0.1g-4_amd64.deb
 71add6dd73cc3b4f69851eb13d13329d 18048 admin extra dms-dr_1.0.1g-4_amd64.deb
 811ae64a400f1452601b186293a5630b 11878 admin extra dms_1.0.1g-4_amd64.deb
 a3712c9e17db46c22b57a36db81bf460 1953 admin extra dms_1.0.1g-4.dsc
 893c8082869079b8cf35436720c0b4cb 2352952 admin extra dms_1.0.1g.orig.tar.gz
 c83bc5b57792ca4494203eb542fa61fa 28132 admin extra dms_1.0.1g-4.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTliGRAAoJELx+7lmFzmQ/REUQAKAtensIq7RME9moyltb2Cpg
rgaEIgpTIT/JuSqfYct7Ta7AYdlCVagLjwf74hbDCqziVMJwXzkQmo+GNm3K8kUD
P1N6JMQhpSnsoOS67wiEQGtzt94Sp3mRUQV/yWFitu9ECz26OIqh665UBxvHz16X
RVhWKQTKjHdE03/FUVWMe0K49HWB08WRHC0cXErY27ZSWPis81gRn5jg59td8233
f+rM++90ltHCWDjt0LQZhX+wVK1FKlQOEjrJ+ELczmGSH0s61R2UCWI6YWDdQQoR
Ot0dzJaxKpKLrNINclu2FSPKFzEKbH32lKIKYBMEHqoDZMrmWVDgw0L2LT/msj1M
OyVpBDlUTqTf6bi4UEl8OnLKlR1zuXaVP6FWMvZUDpXCc5d0I7yNApb7DIX2tbmO
RyKqGTXdxK1Omkk3O7FQHLDl8xRp3HN6ra0JnEQx7kC5auuKO4SbsylDJef55dDt
R0pCWTgUFrd6G2YygMkIvhQXR1GEPKGYNTr1i9hv7VpNMxAQoEy0XB8KXrvFVeyA
e3srLSvHdkhb6v9wDkMRvCDpwia00gQLaMhzF05DaCp1BolxIjiz03gf34dCvEJW
F7ahkb2rQzJfg1nKikvofZrt1SiCji4HwVkEyXfJ9wIgDHunJdUAKXqvyVMYSsSl
LUMWqfJIJjYBc6AXplkd
=oqVZ
-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: https://lists.debian.org/e1wviex-000239...@franck.debian.org



Accepted dms 1.0.1g-2 (source amd64)

2014-06-12 Thread Matthew Grant
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 28 Apr 2014 08:52:13 +1200
Source: dms
Binary: dms-core dms-wsgi dms-dr dms
Architecture: source amd64
Version: 1.0.1g-2
Distribution: unstable
Urgency: medium
Maintainer: Matthew Grant m...@mattgrant.net.nz
Changed-By: Matthew Grant m...@mattgrant.net.nz
Description: 
 dms- bind9 DNS Management System, master server meta-package
 dms-core   - bind9 DNS Management System, core system
 dms-dr - bind9 DNS Management System, DR scripts and setup.
 dms-wsgi   - bind9 DNS Management System, WSGI JSON http RPC backend.
Changes: 
 dms (1.0.1g-2) unstable; urgency=medium
 .
   * Make python3-setproctitle a Suggests
Checksums-Sha1: 
 c3cf7610f1957ec033460d49407dc6c0f7ad75f5 1901 dms_1.0.1g-2.dsc
 f227c22101891831e75a463d687831d7fc708f6b 2352952 dms_1.0.1g.orig.tar.gz
 993e3151e65d8229c53f6df4acfcb6b67e1803d4 28068 dms_1.0.1g-2.debian.tar.xz
 e845c1435b916efb51809d0f73e1e8c78eb64bed 169362 dms-core_1.0.1g-2_amd64.deb
 7f79b665913dba64474acc9547e97f8bf3318423 14330 dms-wsgi_1.0.1g-2_amd64.deb
 6d0f33e536191b872a0244fa589e287a17d85459 17962 dms-dr_1.0.1g-2_amd64.deb
 8574272ed9a9c6e18616de94b9d5c3453024f288 11790 dms_1.0.1g-2_amd64.deb
Checksums-Sha256: 
 ba4a5f21b6cdfc3ac4604fe52f5d46c47cf198968112a4fd5836c7ed582e2697 1901 
dms_1.0.1g-2.dsc
 cbdcea1abfc0d51d9b14497d372b554e95cceb818f44556520167e990364aec9 2352952 
dms_1.0.1g.orig.tar.gz
 7eab2b4a4d9b25ca20a1269660a59d3b4c1267b4d597b808b5159887bca3be2b 28068 
dms_1.0.1g-2.debian.tar.xz
 e42bce2c52a4e659165cad0562548309a521b47f8b78bfff00f97340797bec8e 169362 
dms-core_1.0.1g-2_amd64.deb
 1ca8978f9ba151f2e1d4a14310048be0b83657269a197596c8e51c1f1161a844 14330 
dms-wsgi_1.0.1g-2_amd64.deb
 28834f4b2e213d3fa7235a678b55b85072146dc506d3b0746718e2a86d21ef48 17962 
dms-dr_1.0.1g-2_amd64.deb
 7e6a5eb6d52e46ca8b7715e2fdf53380ceac5ff83d67285942ed6e0c484d46ea 11790 
dms_1.0.1g-2_amd64.deb
Files: 
 b9365cb9732338e799da838e6656a8a5 1901 admin extra dms_1.0.1g-2.dsc
 893c8082869079b8cf35436720c0b4cb 2352952 admin extra dms_1.0.1g.orig.tar.gz
 9789ae7e1e7dc2d5d68c1728cbda39e0 28068 admin extra dms_1.0.1g-2.debian.tar.xz
 9aaab3813a0bd1318a3db72597d2b8f7 169362 admin extra dms-core_1.0.1g-2_amd64.deb
 452deb0672ddb4c09df8bedc6ab03795 14330 admin extra dms-wsgi_1.0.1g-2_amd64.deb
 67868d47a5dc56f58fbf02c6c82930b9 17962 admin extra dms-dr_1.0.1g-2_amd64.deb
 28b91cd512ce386ac6c56c8d224759d6 11790 admin extra dms_1.0.1g-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTXW8wAAoJELx+7lmFzmQ/JPUQAKOHyCG5JvIduCT4wZEC2pvs
oT4bTolfrT3X0yVQALfZNnkpKGrdKABPfBi2o2SYGWTB4ejvK4PkULb74PrM2UXT
C4KOx7K/U/2XldEXa+R7V/nQinpAmTCWYtX3G5TQ7kMNeruvBt6x/lLGczt36ULh
V8dyykReSkby46GRTpErWEzoFPOFsiAKyt5X65MXt9vg42b+okLQjNN9j9Hc6CI0
54BKpSAL2l8dP2den6v0n4urw30UE90ICNOiq4IgmqpMMX00RnGOS7wvzXk+Nqlz
n6evH8epKh+H/W8A1M+G8hkCWReMHug79+AxWiF7nVvX81qEN2uWg75M+UVxcldR
ASiXS08JkNuhLer9+KS2KVOQHeWsuAQLb/aKWHMQA2qmh6np+Qm4ZXTeON6qTFHY
uLWcEcK8jiueOSiG9lJqRi2zl1dSCy9Lx/7AbLHgytszYjFUdB8za4xLjfoFT4U7
oAFyFjofeUbSPL/CIPlz9lvzTX4rCDt5zPOzq3Qkuc3yfwGONa0X/5ZG8Mu/fGcU
TluHScNR/tcXnQ2x4WzmVZUBHW6b2I59XgW6rN1Wm+er5Nsplnxpz103RLhskRlQ
3gH56Izyyp5NmArYV2fo9yNuqMehc/5hCqvR7I5/vsgPtl97gImT3aEpmhYs3Ugq
hupZHDAxJRFBgg/GhtAM
=9Aym
-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: https://lists.debian.org/e1wviev-00022h...@franck.debian.org



Accepted dms 1.0.1g-3 (source amd64)

2014-06-12 Thread Matthew Grant
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 04 May 2014 22:32:08 +1200
Source: dms
Binary: dms-core dms-wsgi dms-dr dms
Architecture: source amd64
Version: 1.0.1g-3
Distribution: unstable
Urgency: medium
Maintainer: DMS Maintainers dms-maintain...@lists.alioth.debian.org
Changed-By: Matthew Grant m...@mattgrant.net.nz
Description: 
 dms- bind9 DNS Management System, master server meta-package
 dms-core   - bind9 DNS Management System, core system
 dms-dr - bind9 DNS Management System, DR scripts and setup.
 dms-wsgi   - bind9 DNS Management System, WSGI JSON http RPC backend.
Changes: 
 dms (1.0.1g-3) unstable; urgency=medium
 .
   * Change package maintainer to Alioth DMS team.
Checksums-Sha1: 
 1876bb638e445a3ea8b78afbd72b4657fd229ae2 1957 dms_1.0.1g-3.dsc
 f227c22101891831e75a463d687831d7fc708f6b 2352952 dms_1.0.1g.orig.tar.gz
 6897e115e6998d461c905b79108f87bfada7fd7b 28116 dms_1.0.1g-3.debian.tar.xz
 57a0a5eeef1969487bd1ed19df8534f132a8dd94 169444 dms-core_1.0.1g-3_amd64.deb
 12a6d371d7bdb3931f8e6e67879376e68d0210f5 14390 dms-wsgi_1.0.1g-3_amd64.deb
 cc25e47a3d59b1bb65dd26c5461241afd8a79742 18006 dms-dr_1.0.1g-3_amd64.deb
 250c0c5f61ca14114cf613b8b53c00bbd54a9d63 11846 dms_1.0.1g-3_amd64.deb
Checksums-Sha256: 
 8b4293db132436f0cde9b605d9b496688cb49e03928b0a8f90ae2a77e8757085 1957 
dms_1.0.1g-3.dsc
 cbdcea1abfc0d51d9b14497d372b554e95cceb818f44556520167e990364aec9 2352952 
dms_1.0.1g.orig.tar.gz
 32abd79aaba067694c3708775c9a10b06006579a1d0e53abc5c1d01841c6028d 28116 
dms_1.0.1g-3.debian.tar.xz
 5a3d0263e5c610d27ffe6277519ab78718e9bd033968cc0e737e134c6fbb1815 169444 
dms-core_1.0.1g-3_amd64.deb
 de61fde9c93fdb3a984e4ae78f87449454cb782c996636d75d1dca24786f7318 14390 
dms-wsgi_1.0.1g-3_amd64.deb
 78b80900c42bfd56aeef27f424e9f1761f8628ede1f487b73c71c8fc837844bf 18006 
dms-dr_1.0.1g-3_amd64.deb
 23fad5a9a276118c2a3782e7d72173e78dfb3c66ee32eabf060a4869ee4004ff 11846 
dms_1.0.1g-3_amd64.deb
Files: 
 3124d940332115eb48ce548fe311e350 169444 admin extra dms-core_1.0.1g-3_amd64.deb
 46c2e6cd0bb5cb738ea1912ed2891d7a 14390 admin extra dms-wsgi_1.0.1g-3_amd64.deb
 e2d5dd198f428a6523228f2a3cd7c6ef 18006 admin extra dms-dr_1.0.1g-3_amd64.deb
 55b55fcd317209d253c360a49655612c 11846 admin extra dms_1.0.1g-3_amd64.deb
 6c4d1bb7106433a64302ea6e1671de79 1957 admin extra dms_1.0.1g-3.dsc
 893c8082869079b8cf35436720c0b4cb 2352952 admin extra dms_1.0.1g.orig.tar.gz
 d2744b5639fa30082405c587c5629d53 28116 admin extra dms_1.0.1g-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTZhdTAAoJELx+7lmFzmQ/DikP/ibpw3pYWAorSIssKjoVgQhF
D8ttPW0zGf0uofZKJYSTJJTpHlOwkRFyXR6a0rQ/+P4G54Xd4QznyRFqiRnJUFnB
uitWWgQC0DJOtMfzQkyMFKRYVKvob9Zc38MTE6x6E8VHcjwbOGrIoSfKeQ31hdJ7
jPBbb8xztoH5GdOZduxYAZJ7G09GulOYNW2pznTlQD3+o3g9uKsNnIcQqWnsk/Kd
C3ftwYor4L9g7UJqzfKMeToPXdMPbAvOAPVTxYbzFjGgoMSkriNfXooWG4c4KJ9a
eRZm2LC3JWyxwjxeeGytyMrcn5WYOESKrhdOjAufDMxKOQ8ngAbk3R/48jwFvITt
5XBK7iBUagvSv+F8+OwgvRqyJuBmn9IaTMM6gXkFjeUEdipA0EIdfvdYTnXF4GZQ
OawQJq7qZ2FFZ7EKnTrke1PXrQ3kZm81NLI8TJ/fyiZGHe6nmiKttWoymeHF8MEx
oHrQFh6DesWintq8kE2HDAzd3vLKoa4KUrdjFaYJIkAKslt0qPJzUAgzHcB/htV4
WNi+oQivypmePowBbCjXPzOdckpAM3sDUnPhHP7So8Ph7RkOa3A6GpbalHeootzA
VuW0TDaxhtcFAUxEHkj5avvDgntf89NC4oL5AGVm23u87iPiTbLCpTtmxeoS6v5y
UkpykgT0N5pKyT3f/GTO
=3UZY
-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: https://lists.debian.org/e1wview-00022v...@franck.debian.org



Accepted dms 1.0.1g-5 (source amd64)

2014-06-12 Thread Matthew Grant
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jun 2014 20:14:31 +1200
Source: dms
Binary: dms-core dms-wsgi dms-dr dms
Architecture: source amd64
Version: 1.0.1g-5
Distribution: unstable
Urgency: medium
Maintainer: DMS Maintainers dms-maintain...@lists.alioth.debian.org
Changed-By: Matthew Grant m...@mattgrant.net.nz
Description:
 dms- bind9 DNS Management System, master server meta-package
 dms-core   - bind9 DNS Management System, core system
 dms-dr - bind9 DNS Management System, DR scripts and setup.
 dms-wsgi   - bind9 DNS Management System, WSGI JSON http RPC backend.
Changes:
 dms (1.0.1g-5) unstable; urgency=medium
 .
   * Add required Uploaders line to debian/control
Checksums-Sha1:
 a8095e9cd0f6d957951a3cdfe669b6392a3642c8 2002 dms_1.0.1g-5.dsc
 f227c22101891831e75a463d687831d7fc708f6b 2352952 dms_1.0.1g.orig.tar.gz
 136ab2095e1d8d550154ca8bac96a2d1905f2ffd 28168 dms_1.0.1g-5.debian.tar.xz
 e4ffd4c3cc147c08f9e8ea1b1c260f2c09970403 169516 dms-core_1.0.1g-5_amd64.deb
 4bcede6ed5461e8c5137c9b0fbae59d50ea165e0 14474 dms-wsgi_1.0.1g-5_amd64.deb
 6c546dc75c171497541b76f73b17d1a74a8d8a64 18088 dms-dr_1.0.1g-5_amd64.deb
 ac2579884d0a5444e008bafc3a3786198b7456d8 11934 dms_1.0.1g-5_amd64.deb
Checksums-Sha256:
 e71ce082b2781fe691cd148058c0e1bcff914dd2730ab2304dd30e0234ef0e40 2002 
dms_1.0.1g-5.dsc
 cbdcea1abfc0d51d9b14497d372b554e95cceb818f44556520167e990364aec9 2352952 
dms_1.0.1g.orig.tar.gz
 d44542d5be19d328d63a1628da63980ebd349cbbe52c7ddf156053299b1d53ba 28168 
dms_1.0.1g-5.debian.tar.xz
 f23995f8cb4285f9c7f7d10379c51c3697b7cc67403d1cf7a2ed114ae42510f3 169516 
dms-core_1.0.1g-5_amd64.deb
 f566bfdb1d70b675b978f2b311db853f5154ee2ac71e7f2992bfd8c780b11d04 14474 
dms-wsgi_1.0.1g-5_amd64.deb
 f0207d03fe486866edf88ac17b8836b6fbfc2a1a34a256d7cab8886264b61bde 18088 
dms-dr_1.0.1g-5_amd64.deb
 8e2e75301ff73b5e050e71478806c24d0b705bd3a9c4858bf5c7fdeb037462b3 11934 
dms_1.0.1g-5_amd64.deb
Files:
 1c6938aeaa2d86ec371b254c64b00657 169516 admin extra dms-core_1.0.1g-5_amd64.deb
 f466297af2b3ee8decdfbdc41437b9b8 14474 admin extra dms-wsgi_1.0.1g-5_amd64.deb
 3a982dfbefc865f3b1c559e7c61e6039 18088 admin extra dms-dr_1.0.1g-5_amd64.deb
 78847c95760a9b9f87d90e5bed633c73 11934 admin extra dms_1.0.1g-5_amd64.deb
 deab2fbb61448c645aab67465e97419a 2002 admin extra dms_1.0.1g-5.dsc
 893c8082869079b8cf35436720c0b4cb 2352952 admin extra dms_1.0.1g.orig.tar.gz
 36f81be12c2667594ead24b4438ad2f9 28168 admin extra dms_1.0.1g-5.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTmWGFAAoJELx+7lmFzmQ/ofAQAJgOK/X3it60zTlfQQ7vuJNL
Jeo8V8oCo2waIvuTcXOwnseo7tdWVOdY142ufGQzYsgeU7EVmHlkXDc622hNMJl/
a4N71VnHqjTT+1mrJwgt7rio5iUSS3HnMJdZu9D6nZ10VxKmazlqjvSWr/hcVxqc
MJyJHwcmGp99rkO301C1s2Iq+o6i+0KQ23q/Vk7iRUk6ZbwTJpT6hBnddxB85ywX
9iNRelaEZEDkGVHaMCrSgikWEO9ND1Fi5PGSAW7vdGK5lQDNDcVL97jFnxEvJu28
8Pv7MILC4GXXv3vV0U1RrRQK4hS4qKTh59E/KN0fBue66KRjBeUjJ6hkPNSoYKQO
+QsEm1OTgiQdR02tMARmj/1nXqOh6uknVHzm07vGHwSK9NKVxvCrvCt9b36nRo9z
AT9MNKuC/YZQSewo9vHvFx/Gifdf86K680TQAHcmFZAeBZqgOJABnojfi7WBnsqw
lQPmndDC/LjlQAhlG6f03ba68d5XVsaX87+E0lFyKluEmbg4gD/RhxzLx3qqdVJx
0mCMUxmCXs2UC5J7xAeXZYz08B56ivnFJq2lpdgY0OFBqPctb6Eh+JvIZFUtw7ST
p6/H98mFYw9mzi44QEFIpjC0vhRivYaXbpdwXCfLWl12V0OWwpw3mM/l4vqR3Pej
JBEG3IVDhYFSxSExyl4r
=B8/7
-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: https://lists.debian.org/e1wviey-00023x...@franck.debian.org



Accepted c++-annotations 9.9.1-2 (source all)

2014-06-12 Thread tony mancill
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 20:39:24 -0700
Source: c++-annotations
Binary: c++-annotations c++-annotations-html c++-annotations-txt 
c++-annotations-latex c++-annotations-pdf c++-annotations-ps 
c++-annotations-dvi c++-annotations-contrib
Architecture: source all
Version: 9.9.1-2
Distribution: unstable
Urgency: medium
Maintainer: Frank B. Brokken f.b.brok...@rug.nl
Changed-By: tony mancill tmanc...@debian.org
Description:
 c++-annotations - Extensive tutorial and documentation about C++
 c++-annotations-contrib - Extensive tutorial and documentation about C++ - 
contributed file
 c++-annotations-dvi - Extensive tutorial and documentation about C++ - DVI 
output
 c++-annotations-html - Extensive tutorial and documentation about C++ - html 
output
 c++-annotations-latex - Extensive tutorial and documentation about C++ - LaTeX 
output
 c++-annotations-pdf - Extensive tutorial and documentation about C++ - PDF 
output
 c++-annotations-ps - Extensive tutorial and documentation about C++ - 
Postscript outpu
 c++-annotations-txt - Extensive tutorial and documentation about C++ - text 
output
Closes: 751306
Changes:
 c++-annotations (9.9.1-2) unstable; urgency=medium
 .
   * Switch explicit dependency on g++-4.8 to g++-4.9.  This is only
 needed while sh4 still defaults to g++-4.6.  (Closes: #751306)
Checksums-Sha1:
 02dd3be1a16293a35cc865a6654f885081e76ae7 2706 c++-annotations_9.9.1-2.dsc
 4b23729696ea79f71c879fa81f9d5a84e466503f 7028 
c++-annotations_9.9.1-2.debian.tar.xz
 d2294449ee6f125d3cbdbd7b91994687b7b64d3c 114800 c++-annotations_9.9.1-2_all.deb
 55a6f4640f4f5d7cb8063956b32ba86c59a8cc98 654350 
c++-annotations-html_9.9.1-2_all.deb
 cb218d88ef1d7aafef08bb9a2d706fd96ac89398 533374 
c++-annotations-txt_9.9.1-2_all.deb
 bcb6abfcb98e8af63c715326319d62c40aef7886 1147142 
c++-annotations-latex_9.9.1-2_all.deb
 443cb7097b7630ae4677a44f1d75f20091b00999 8798994 
c++-annotations-pdf_9.9.1-2_all.deb
 8dd71ded8bb3e5e200521978a993cd68837e1ff0 4220438 
c++-annotations-ps_9.9.1-2_all.deb
 00ccac2c5342ffc87f20c991566107275c237416 1926628 
c++-annotations-dvi_9.9.1-2_all.deb
 6609cb4536db5c00869d4640a2503dcbed53f1dc 23214 
c++-annotations-contrib_9.9.1-2_all.deb
Checksums-Sha256:
 fa65fefab4249cf17178e5bb82fa33516da74e27acb31b2f43803788b5472b8a 2706 
c++-annotations_9.9.1-2.dsc
 f462e4159632736399cca9b7caded4efc5065198d5af291e7aa4a8b496cac0d9 7028 
c++-annotations_9.9.1-2.debian.tar.xz
 23713c9084a6274e15e2f5b170be982eeacb95b3114df10533f606c8bd280c78 114800 
c++-annotations_9.9.1-2_all.deb
 781e31334324d74244b62fb68777a39bf428c574a174bfbe7e44b65b972c831b 654350 
c++-annotations-html_9.9.1-2_all.deb
 cf9bbc3501aee4967814270f12872703ca97032fe7924084233c441a6dc8efba 533374 
c++-annotations-txt_9.9.1-2_all.deb
 c2b7d09b0dd8d972e98dd5847c5132db6f8de63f30fb6a617dc14b45b7534c4b 1147142 
c++-annotations-latex_9.9.1-2_all.deb
 f4c9d77b1e899d2a14caacfe5c8e8310fa6f5afc78df52e4d8deec725304a1e0 8798994 
c++-annotations-pdf_9.9.1-2_all.deb
 e0a9a10878c39a58a506f2745563c52496b0ed57de20267e8c2fb014f2c8e7b5 4220438 
c++-annotations-ps_9.9.1-2_all.deb
 2532e77e322523b5bb7b8ed827e2afa08b65adfa904cd52a3d21d30034313ffa 1926628 
c++-annotations-dvi_9.9.1-2_all.deb
 a8a58812cff147894af9c8f12baa88e1d217a2c8d7420862cf3011f6c2c8754b 23214 
c++-annotations-contrib_9.9.1-2_all.deb
Files:
 83633ffc1d503542a08f2792599aa5f8 114800 doc optional 
c++-annotations_9.9.1-2_all.deb
 d3d59ec6974ddc1b26f1ed6deeb3cbc6 654350 doc optional 
c++-annotations-html_9.9.1-2_all.deb
 9513f58e777f8d8f907d246c780c85d7 533374 doc optional 
c++-annotations-txt_9.9.1-2_all.deb
 486cbbf1d17322848b20db3c685b7cb3 1147142 doc optional 
c++-annotations-latex_9.9.1-2_all.deb
 34609640adb76943d45ad2a389a7c506 8798994 doc optional 
c++-annotations-pdf_9.9.1-2_all.deb
 9dde198518e30dfd7240a6df9024caf4 4220438 doc optional 
c++-annotations-ps_9.9.1-2_all.deb
 55b0b3b20b9f248d5c80e0ecd74dac56 1926628 doc optional 
c++-annotations-dvi_9.9.1-2_all.deb
 1040107b86794eec33ef1c14452acd1e 23214 doc optional 
c++-annotations-contrib_9.9.1-2_all.deb
 d72e39428ce8cfdbe8d477bd9e902052 2706 doc optional c++-annotations_9.9.1-2.dsc
 dab27c138e590ee7d2cabf6093a24e17 7028 doc optional 
c++-annotations_9.9.1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJTmnZpAAoJECHSBYmXSz6WMigP/1DothJxnVRZLDH/l+ID47jX
ViGHvk4vG7esBdzcXC6LzTc4i4HNW9KUzqBj9luZO1SEz7bFlewzCrBg1bARNEHD
ixUW9tuZPNvJNQzKTW/Mo4bsMf5D2idsYfh9ZJOwflAMV875GHbyOWSdYLi3PfwY
JPFHhpFKOT0rg22PIMcTsrZS3yo+FmdCz4hCoJpT/0Ul4eBqOIiS+H4LWPq46H6+
GxoIwgvOleKRuSZIHTpnyH679rxfsK4+5f+UnsfLCsa14ikauC4GfN2r3S5q+GlN
+wM/Ug4MaYtshKgkcm8a2xF8Np9QvdxZiig6FHAib38zBTx9niV2znYMzXyMwYi9
j0y/gEQfYut0cZGySYsX04ghWG9D0XpmjYFGnVMqyAKq8XgzVCEf0oZolnPVMxW/
Sk/bFNnUa3vaxI73QoEhTVyW2jZC37NeZpb+OnD2qrst2GoEzWEaJ4z13FIYlV7s
EmkmRkjfhGQXeur5+0lUaQQ2jYXfSVERpQ1C74491P28sjUKXSXHavjHCciiGW1j
Mtj7LlSHk5laQUklYStY/k6GMIvRkgi1wDtfxeYPfxNbDkTimZ9ZXUglmDXt1khL

Accepted stealth 2.11.04-2 (source amd64 all)

2014-06-12 Thread tony mancill
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jun 2014 07:01:07 -0700
Source: stealth
Binary: stealth stealth-doc
Architecture: source amd64 all
Version: 2.11.04-2
Distribution: unstable
Urgency: medium
Maintainer: Frank B. Brokken f.b.brok...@rug.nl
Changed-By: tony mancill tmanc...@debian.org
Description:
 stealth- stealthy File Integrity Checker
 stealth-doc - stealthy File Integrity Checker
Closes: 751332
Changes:
 stealth (2.11.04-2) unstable; urgency=medium
 .
   * Switch explicitly depending on g++-4.8 to g++-4.9.  This is only
 needed because sh4 still defaults to g++-4.6.  (Closes: #751332)
   * Add cm-super-minimal to build-deps. This is needed during the
 build of documentation.
Checksums-Sha1:
 be281f70f8882b3a1886b244c8e34a535665efe3 2177 stealth_2.11.04-2.dsc
 789ae9e6b6003833f005e39a3e693b4846afe729 8996 stealth_2.11.04-2.debian.tar.xz
 704b48c53fe471019c53a6bc3e6563eb94318a2c 77458 stealth_2.11.04-2_amd64.deb
 3fd266b18189d51f2d673e1415088e1117d94e35 523138 stealth-doc_2.11.04-2_all.deb
Checksums-Sha256:
 01e174a74a5bb0fb5ad94719d927b28fd3b17e47a45ea7773eb18044a73baf84 2177 
stealth_2.11.04-2.dsc
 ed32f931b468a9f3ac30eed471c4559a466d538cf1ba8f589c20b9011bbcaa20 8996 
stealth_2.11.04-2.debian.tar.xz
 605899e0e0c64f4b01d99d8ac17051f4780dc7a65e5935c7f472d47b741c09b9 77458 
stealth_2.11.04-2_amd64.deb
 634d4770411878aaafbaf5a820a2aaedd696c34c0a8c5162281c2fc79a2a8c21 523138 
stealth-doc_2.11.04-2_all.deb
Files:
 adb18a870a1fb00b373c425d933cec48 77458 admin optional 
stealth_2.11.04-2_amd64.deb
 c55ec2ecfbc5d5a0b7de6c19c49ffec0 523138 doc optional 
stealth-doc_2.11.04-2_all.deb
 749e44d24b78542d18e2f004fad90244 2177 admin optional stealth_2.11.04-2.dsc
 f01eb3e118be2aaced9667b3d678b6de 8996 admin optional 
stealth_2.11.04-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJTmnGKAAoJECHSBYmXSz6WWKAP/R8EE8jLc2V1kpbSLIk+ULBC
AqngYkkqeLSQAvTvb74gwxwuslcgcLmrSGo5JoWu/hqU1bNSY3fhFY299X/Nubl8
8Ty52siuZ1H9276jj2BznZzm7IcHtdKwAAHMqGKa1a8jBFJBQlMz17w8C3A+CrSH
5KkAJ0OjIXlq/NMe8SiYeQwhTPMsrrZSO+FoNwWj888PvQDEVSPjNOdTCzmb4YI+
u9sKoyCcNtjIvTp45MJ47Q0BICn9IZpNKfXtLdVfgtOpUNeQKl9JcxeKe+HRpXb4
tFG1NhjH/Isou0yiX78757f2kHMLIWjPZS3iPt4h2JeTO8QiIiY/pBrCr+BrLmMr
UFL06L7iAoldhR0j8/nHpRlQaK5TKlEnANeCFvZ9QnqVSBO/adMj9k5X1A5yPPwu
fTOXI1JBQ58VUoXmjHhNLxqF6SMNPdUntLPifTxKcbcG2F9o0yLHgXxpyDbYQzcK
5LaoLG0XxeFM4m6xEFR1CpP33BApVBqpe+XBYZMeW5CwHb5y7HQdUvNy67T1ec1+
qCCNM7O0FghHeHdQnO0ZyviIRxMPF8ciOIc4MLfRurAMkoBXEDPge9P1yXoHsg5A
j8+nZZBKvEaiREtMzcdXlxguPwIFkaeVkyZFyNz9LTDppGuasd6E6kbg6qlk+kHL
GwXvdwyfnXWkzIZ8zHgE
=HRqe
-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: https://lists.debian.org/e1wviyr-0003qk...@franck.debian.org



  1   2   >