Ajouter debconf à un paquet

2014-12-11 Thread Laurent COOPER
Bonjour

J'ai regardé la documentation de debconf et le guide du nouveau
mainteneur debian mais j'avoue ne pas être sur ... aussi avant de faire
des bétises, je préfère demander aux experts.

Voilà, nous utilisons sur des serveurs des paquets debian customs. Au
fur et à mesure, nous avons essayé d'être le plus possible dans l'esprit
debian, et cela passe aussi par l'utilisation de debconf pour une
installation raisonnable des paquets.

Le problème est le suivant

Le paquet en version A n'utilisait pas debconf, et les fichiers de
configuration étaient construit par le postinst.

Le paquet en version B a maintenant les fichiers templates et config qui
vont bien pour une installation avec debconf et le preseed

Pour les nouveaux systèmes, c'est très bien

Le problème, c'est pour les systèmes déjà installé qui vont de la
version A à la version B. Y aurait il un moyen pour pré-répondre aux
questions debconf, la configuration ayant déjà eu lieu ?

Merci d'avance pour vos suggestions

Cordialement

Laurent
-- 
Laurent COOPER
Carmi de l'académie de Grenoble
laurent.coo...@ac-grenoble.fr


--
To UNSUBSCRIBE, email to debian-devel-french-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5489aef5.8050...@ac-grenoble.fr



Re: Ajouter debconf à un paquet

2014-12-11 Thread Roland Mas
Laurent COOPER, 2014-12-11 15:49:25 +0100 :

[...]

 Le problème, c'est pour les systèmes déjà installé qui vont de la
 version A à la version B. Y aurait il un moyen pour pré-répondre aux
 questions debconf, la configuration ayant déjà eu lieu ?

  Oui.  Le principe c'est de parser les fichiers de configuration pour
en extraire les réponses pertinentes, et de les stocker dans debconf
(avec db_set).  Le tout peut éventuellement aller soit dans le .preinst,
soit dans le .config, si ça a besoin d'être exécuté avant que les
nouveaux fichiers soient dépaquetés, mais il faut faire gaffe si le
parser est inclus dans le paquet…

Roland.
-- 
Roland Mas

If you spit in the air, it lands in your face.
  -- Tevye, in Fiddler on the roof


-- 
To UNSUBSCRIBE, email to debian-devel-french-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/87r3w6yuu1@placard.fr.eu.org



Re: Ajouter debconf à un paquet

2014-12-11 Thread Vincent Danjean
On 11/12/2014 18:12, Roland Mas wrote:
 Laurent COOPER, 2014-12-11 15:49:25 +0100 :
 
 [...]
 
 Le problème, c'est pour les systèmes déjà installé qui vont de la
 version A à la version B. Y aurait il un moyen pour pré-répondre aux
 questions debconf, la configuration ayant déjà eu lieu ?
 
   Oui.  Le principe c'est de parser les fichiers de configuration pour
 en extraire les réponses pertinentes, et de les stocker dans debconf
 (avec db_set).  Le tout peut éventuellement aller soit dans le .preinst,
 soit dans le .config, si ça a besoin d'être exécuté avant que les
 nouveaux fichiers soient dépaquetés, mais il faut faire gaffe si le
 parser est inclus dans le paquet…

De toute façon, c'est à faire dans *tous* les cas. Debconf n'est
pas une registry. Si l'admin a fait des modifs locales, ce sont
elles qui doivent être proposées par debconf (pas les précédentes
réponses s'il y en a eu).
  Les réponses par défaut ne servent que la première fois que le
réglage apparaît (et donc jamais quand le fichier de config existait
précédemment)

  A+
Vincent

 Roland.
 


-- 
Vincent Danjean   GPG key ID 0xD17897FA vdanj...@debian.org
GPG key fingerprint: 621E 3509 654D D77C 43F5  CA4A F6AE F2AF D178 97FA
Unofficial pkgs: http://moais.imag.fr/membres/vincent.danjean/deb.html
APT repo:  deb http://people.debian.org/~vdanjean/debian unstable main


-- 
To UNSUBSCRIBE, email to debian-devel-french-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/548a0673.3090...@free.fr



credentials config at pkg install

2014-12-11 Thread Eugene Zhukov
Hi,

I plan to package a perl script to run as daemon. It will update
dynamic DNS provider with IP changes etc., but for that it needs user
credentials registered at provider's web site beforehand.
Is it a good solution to ask for credentials at package installation
step? These credentials and other configurations I plan to put under
/etc.
If that's OK solution, could you please point me to some example
package doing similar thing?

Thanks,
Eugene


-- 
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/CAPqGMfJLcNjkm+TuLSKZmo8=crs1w-ac8d2swzruqnjxeo3...@mail.gmail.com



Re: credentials config at pkg install

2014-12-11 Thread Wookey
+++ Eugene Zhukov [2014-12-11 13:12 +0200]:
 Hi,
 
 I plan to package a perl script to run as daemon. It will update
 dynamic DNS provider with IP changes etc., but for that it needs user
 credentials registered at provider's web site beforehand.
 Is it a good solution to ask for credentials at package installation
 step? These credentials and other configurations I plan to put under
 /etc.
 If that's OK solution, could you please point me to some example
 package doing similar thing?

AICCU asks for similar details IIRC. Have a look at that?

Wookey
-- 
Principal hats:  Linaro, Debian, Wookware, 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/2014123005.gz27...@stoneboat.aleph1.co.uk



Re: credentials config at pkg install

2014-12-11 Thread Antonio Terceiro
On Thu, Dec 11, 2014 at 11:30:06AM +, Wookey wrote:
 +++ Eugene Zhukov [2014-12-11 13:12 +0200]:
  Hi,
  
  I plan to package a perl script to run as daemon. It will update
  dynamic DNS provider with IP changes etc., but for that it needs user
  credentials registered at provider's web site beforehand.
  Is it a good solution to ask for credentials at package installation
  step? These credentials and other configurations I plan to put under
  /etc.
  If that's OK solution, could you please point me to some example
  package doing similar thing?
 
 AICCU asks for similar details IIRC. Have a look at that?

You can look at ddclient as well.

-- 
Antonio Terceiro terce...@debian.org


signature.asc
Description: Digital signature


Bug#772818: ITP: chaps -- PKCS#11 implementation for TPM backed services

2014-12-11 Thread David Drysdale
Package: wnpp
Severity: wishlist
Owner: David Drysdale drysd...@google.com

* Package name: chaps
  Version : 0.1
  Upstream Author : ChromiumOS Authors
* URL : https://github.com/google/chaps-linux
* License : BSD
  Programming Lang: C++
  Description : PKCS#11 implementation for TPM backed services

Chaps is a PKCS #11 implementation, originally created for ChromiumOS,
that provides trusted platform module (TPM) backed cryptographic
services.

It aims to improve speed and reliability of cryptographic token
operations as well as to provide a simpler and more flexible codebase
for future enhancements.  Chaps works with a TCG Software
Stack (TSS).  Typically the TrouSerS TSS implementation is used, but Chaps
is not limited to working with TrouSerS.  The name Chaps has no real
significance other than its fitness as a name for a layer above TrouSerS.

The chaps source package is used to generate two binary packages:
 - The chaps binary package include the Chaps daemon and a PAM
   module which, if enabled, generates a PKCS #11 token for each
   user that logs into the system.
 - The libchaps0 binary package provides the client shared library that
applications link to in order to use the PKCS#11 API.


-- 
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/2014124818.22772.64548.report...@drysdale.lon.corp.google.com



Re: credentials config at pkg install

2014-12-11 Thread Vincent Bernat
 ❦ 11 décembre 2014 13:12 +0200, Eugene Zhukov jevgeni...@gmail.com :

 I plan to package a perl script to run as daemon. It will update
 dynamic DNS provider with IP changes etc., but for that it needs user
 credentials registered at provider's web site beforehand.
 Is it a good solution to ask for credentials at package installation
 step? These credentials and other configurations I plan to put under
 /etc.
 If that's OK solution, could you please point me to some example
 package doing similar thing?

You can do that with debconf and ucf. debconf will ask for the values,
you will build a candidate configuration file from there and use ucf to
prompt the user to accept changes if any.

grub2 is doing that to manage /etc/default/grub. Maybe there are simpler
examples.
-- 
Localise input and output in subroutines.
- The Elements of Programming Style (Kernighan  Plauger)


signature.asc
Description: PGP signature


ITP: iep -- Interactive Editor for Python

2014-12-11 Thread Ghislain Vaillant
Package: wnpp
Severity: wishlist
Owner: Ghislain Antony Vaillant ghisv...@gmail.com

* Package name: iep
  Version : 3.5
  Upstream Author : Almar Klein almar.kl...@gmail.com
* URL : http://www.iep-project.org/
* License : BSD
  Programming Lang: Python
  Description : Interactive Editor for Python

Description:
 IEP is a cross-platform Python IDE aimed at interactivity
 and introspection. Its practical design is aimed at
 simplicity and efficiency. IEP consists of an editor, a
 shell, and a set of tools to help the programmer in various
 ways.

Further information:
 - IEP is similar to Spyder but comparatively much lighter,
 - Supports additional features useful for development, like a
   source tree, builtin loggin, cell support...
 - One of the package dependency is not (yet) in Debian: pyzolib,
 - Pyzolib is also licensed under the BSD license.

I believe this package is a good candidate for inclusion to the
Debian science family, via the Sponsorship of Blends initiative [1].

[1] https://wiki.debian.org/DebianPureBlends/SoB

Cheers,
Ghislain


Re: Announcing a Debian Hamradio Blend

2014-12-11 Thread Jonathan Wiltshire

On 2014-12-11 12:39, Iain R. Learmonth wrote:

[Forwarding to d-d-a on behalf of Iain since he can not sign as DD]


I suspect you forwarded the wrong mail, was it meant to be an 
announcement from Iain about the blend as the subject line implies?


--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51

directhex i have six years of solaris sysadmin experience, from
8-10. i am well qualified to say it is made from bonghits
layered on top of bonghits


--
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/361171ec25f65a2699c3564959baa...@hogwarts.powdarrmonkey.net



Re: Bug#772736: ITP: pathlib -- Set of classes to handle filesystem paths

2014-12-11 Thread Joachim Breitner
Hi,


Am Mittwoch, den 10.12.2014, 17:17 +0100 schrieb Frank Brehm:
 Package: wnpp
 Severity: wishlist
 Owner: Frank Brehm frank.br...@profitbricks.com
 
 * Package name: pathlib
   Version : 1.0.1
   Upstream Author : Antoine Pitrou solip...@pitrou.net
 * URL : https://pypi.python.org/pypi/pathlib
 * License : MIT Licence
   Programming Lang: Python
   Description : Set of classes to handle filesystem paths


this should probably be called python-pathlib, shan’t it?

Greetings,
Joachim

-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: F0FBF51F
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata



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


Re: Bug#772736: ITP: pathlib -- Set of classes to handle filesystem paths

2014-12-11 Thread Benjamin Drung
Am Donnerstag, den 11.12.2014, 14:35 +0100 schrieb Joachim Breitner:
 Hi,
 
 
 Am Mittwoch, den 10.12.2014, 17:17 +0100 schrieb Frank Brehm:
  Package: wnpp
  Severity: wishlist
  Owner: Frank Brehm frank.br...@profitbricks.com
  
  * Package name: pathlib
Version : 1.0.1
Upstream Author : Antoine Pitrou solip...@pitrou.net
  * URL : https://pypi.python.org/pypi/pathlib
  * License : MIT Licence
Programming Lang: Python
Description : Set of classes to handle filesystem paths
 
 
 this should probably be called python-pathlib, shan’t it?

The source is called pathlib, but the binary packages are called
python-pathlib and python-pathlib-doc.

-- 
Benjamin Drung
System Developer

ProfitBricks GmbH - The IaaS-Company
Greifswalder Str. 207
D - 10405 Berlin

Mail: benjamin.dr...@profitbricks.com
Fax:  +49 30 577 008 598
URL:  http://www.profitbricks.com

Sitz der Gesellschaft: Berlin.
Registergericht: Amtsgericht Charlottenburg, HRB 125506 B.
Geschäftsführer: Andreas Gauger, Achim Weiss.


-- 
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/1418305659.4914.8.ca...@profitbricks.com



Weird wrong email (Was: Re: Announcing a Debian Hamradio Blend)

2014-12-11 Thread Julian Andres Klode
On Thu, Dec 11, 2014 at 01:39:29PM +0100, Iain R. Learmonth wrote:
 [Forwarding to d-d-a on behalf of Iain since he can not sign as DD]

This seems to be the wrong sort of email to forward to d-d-a.

(Note: I'm not subscribed to -devel, so CC me on a reply).

 
 Ian R Leamonth,
 
 In Debian GNU/linux they NEVER discussed to port other packages, infact in
 different situations i discuss this on debian-hamradio and on #fsf where
 they said that there was not any necessity to port the packages, and that
 is left to the user the freedom, to take the packages in source code, from
 third parties, to build it, and to use it.
 
 I said: if a user don't find a package in the mirrors, he think that does
 not exist, but they prefeer to ignore what i said, belittling what i said
 to them.
 
 A day i decided to power on my Kenwood TM-255E, i was on 145.750 -600Khz,
 and while i was taking my shower, i listened a radioamateur, which discuss
 with another one, about the fact that on GNU/linux are not available
 enough packages for hamradio.
 
 I finished to take my shower, and again wet, i asked to break the
 communication, i said my callsign: iw0fzw, my name: paolo and my locator:
 jn61fu, and spoke, about the fact that there are 330 packages to port, and
 not again ported on the mirrors, now, Debian Community, all of a sudden
 wake up, and decides to port the packages.
 
 So is very easy, and don't mention who said them to do this.
 
 Awaiting for your reply,
 
 73 paolo iw0fzw
 
 p.s: is very easy to ignore, what say the other people, so that they can
 take all the credits.
 
 to show that they are saying the false, here i upload as attachment the
 file hamradio
 
 i asked too support to my friend Danilo to package all the sowfatware
 availbale only as source code on third parties.
 
 I should now take me for a ride by those of Debian?
 
 how you would feel to be taken for a ride by some people?
 
 



-- 
Julian Andres Klode  - Debian Developer, Ubuntu Member

See http://wiki.debian.org/JulianAndresKlode and http://jak-linux.org/.

Be friendly, do not top-post, and follow RFC 1855 Netiquette.
- If you don't I might ignore you.


pgpOiIlxd8w5R.pgp
Description: PGP signature


Re: Announcing a Debian Hamradio Blend

2014-12-11 Thread Steven Chamberlain
Hi,

 [Forwarding to d-d-a on behalf of Iain since he can not sign as DD]

The quoted message was addressed *to* Iain and didn't make much sense
to me.

Isn't this the announcement here?
https://lists.debian.org/debian-blends/2014/12/msg0.html

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.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/20141211140833.ga5...@squeeze.pyro.eu.org



ITP: pyzolib -- Utilities for the Pyzo environment

2014-12-11 Thread Ghislain Vaillant
Package: wnpp
Severity: wishlist
Owner: Ghislain Antony Vaillant ghisv...@gmail.com

* Package name: pyzolib
  Version : 0.3.3
  Upstream Author : Almar Klein almar.kl...@gmail.com
* URL : https://bitbucket.org/pyzo/pyzolib
* License : BSD
  Programming Lang: Python
  Description : Utilities for the Pyzo environment

Description
 The pyzolib package provides basic functionality for the Pyzo environment.
 It contains a collection of modules and small packages that should be
 imported as from pyzolib import xxx
 .
 The packages currently are:
   * path - object oriented path processing (no more os.path.x)
   * paths - Get paths to useful directories in a cross platform manner.
   * qt - Proxy for importing QtCore et al. from PySide or PyQt4
   * ssdf - the Simple Structured Data Format (for config files and
 scientific databases)
   * insertdocs - a sphynx pre-processor to include docstrings in the text,
 allowing readthedocs.org to host the docs without requiring importing
code.
   * pyximport - for easy on the fly compilation of Cython, using the Pyzo
 environment to establish the location of a gcc compiler.
   * gccutils - used by the above to manage the gcc compiler.
   * interprerers - list the Python interpreters available on this system.
   * dllutils - utilities to set the RPATH in dynamic libararies and
 remove depndencies on the MSVCR from the embedded manifest.

Further information:
 - Pyzolib is a dependency to iep [1],
 - Pyzolib has already been reviewed and packaged in Fedora [2].

I'd suggest to maintain this package as part of the Debian Science
family, together with IEP.

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%23772820
[2] https://bugzilla.redhat.com/show_bug.cgi?id=1064661

Cheers,
Ghislain


Bug#772827: ITP: kerneloops -- kernel oops tracker

2014-12-11 Thread Balint Reczey
Package: wnpp
Owner: Balint Reczey bal...@balintreczey.hu
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

* Package name: kerneloops
  Version : 0.12+git20140509-1
  Upstream Author : Arjan van de Ven ar...@linux.intel.com
* URL : https://github.com/oops-kernel-org/kerneloops
* License : GPL-2
  Programming Lang: C
  Description : kernel oops tracker
 kerneloops is a daemon that collects kernel crash information and then
 submits the extracted signature to the kerneloops.org website for
 statistical analysis and presentation to the Linux kernel developers.

--

I would like to reintroduce the package into Debian.


-- 
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/5489a860.3030...@balintreczey.hu



Re: credentials config at pkg install

2014-12-11 Thread Eugene Zhukov
Thanks for quick replies! I'll go forward with AICCU and debconf way.
Not sure if I will eventually upload my package to Debian though,
since
this dynDNS provider is only for Finland and user base would be small.


-- 
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/CAPqGMfJB3qkcy8j7Ub+ae3=oi0cujzzxedvzb0bdrfjjqwa...@mail.gmail.com



Can/should we have an efi/efi-any platform architecture?

2014-12-11 Thread Leif Lindholm
When working on UEFI kernel support, for both armhf and arm64, we came
across packages (in several distributions) that were manually set to
build for architectures where UEFI was available - and so would not be
built for the ARM architectures.

These are some obvious utilites such as:
- efibootmgr
- efivar/libefivar
- future versions of gnu-efi (upstream support for arm* has not
  trickled back down yet)

But also installer-specific ones like:
- partman-efi

And some weakly related-to, but not really part of:
- dmidecode

... and definitely other ones I haven't come across yet.

The point is, when we add support for another architecture which
supports UEFI, there are a number of packages that you will want to
enable for that architecture. Currently, this means trawling through
all of the packages and explicitly adding entries for 
If we could transition this to be able to specify efi-all (or
whatever) instead of an explicit list of certain architectures, this
would be a lot more straightforward operation.

Most, if not all, of these tools use only standard posix interfaces,
so will build cleanly for any architecture.

An alternative would of course be to simply do like with acpica-tools,
and build all of these tools for all architectures. The problem there
would be with packages which depend on packages that only exist on
architectures that have UEFI - i.e. partman-efi vs. efi-modules.

Would this be useful, desirable, an accident waiting to happen?

/
Leif


-- 
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/20141211180858.gs2...@bivouac.eciton.net



Re: Can/should we have an efi/efi-any platform architecture?

2014-12-11 Thread Simon Richter
Hi Leif,

On 11.12.2014 19:08, Leif Lindholm wrote:

 If we could transition this to be able to specify efi-all (or
 whatever) instead of an explicit list of certain architectures, this
 would be a lot more straightforward operation.

 Would this be useful, desirable, an accident waiting to happen?

Useful, possibly, but there is no mechanism that could be used or
recycled for that, so it would be an entirely new mechanism in the
package management framework, with a fairly limited use case.

As this is something that changes rather seldom, I think it would be
overkill.

   Simon


-- 
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/5489e423.8090...@debian.org



debian-efi mailing list

2014-12-11 Thread Steve McIntyre
Hi folks,

I'm thinking it might be useful to set up a specific debian-efi
mailing list to help as a central space for discussion about (U)EFI
issues and support in Debian.

There's been quite a lot of development in this area recently, and (as
Leif just mentioned on -devel) there are a number of packages that
might benefit from wider discussion and (maybe?) group maintenance. We
could also help out with targeted support for users with EFI-related
problems.

So, pursuant to the HOWTO [1], I'm asking here who else might be
interested in using such a list. Please follow up here and we'll see
how far we get.

[1] https://www.debian.org/MailingLists/HOWTO_start_list

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
We don't need no education.
We don't need no thought control.


-- 
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/20141211190034.ga31...@einval.com



Re: Can/should we have an efi/efi-any platform architecture?

2014-12-11 Thread Steve McIntyre
Simon Richter wrote:
Hi Leif,

On 11.12.2014 19:08, Leif Lindholm wrote:

 If we could transition this to be able to specify efi-all (or
 whatever) instead of an explicit list of certain architectures, this
 would be a lot more straightforward operation.

 Would this be useful, desirable, an accident waiting to happen?

Useful, possibly, but there is no mechanism that could be used or
recycled for that, so it would be an entirely new mechanism in the
package management framework, with a fairly limited use case.

As this is something that changes rather seldom, I think it would be
overkill.

Hmmm, maybe. EFI is a bit of a special case in several respects - in
some places in Debian (e.g. d-i) it's treated like a
sub-architecture. But it's a common sub-architecture across several
architectures, which is very different to m68k/atari and the like.

On a related front... see other mail.

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
...In the UNIX world, people tend to interpret `non-technical user'
 as meaning someone who's only ever written one device driver. -- Daniel Pead


-- 
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/e1xz8pq-0004t6...@mail.einval.com



Re: Can/should we have an efi/efi-any platform architecture?

2014-12-11 Thread Jonas Smedegaard
Quoting Simon Richter (2014-12-11 19:36:19)
 On 11.12.2014 19:08, Leif Lindholm wrote:

 If we could transition this to be able to specify efi-all (or 
 whatever) instead of an explicit list of certain architectures, this 
 would be a lot more straightforward operation.

 Would this be useful, desirable, an accident waiting to happen?

 Useful, possibly, but there is no mechanism that could be used or 
 recycled for that, so it would be an entirely new mechanism in the 
 package management framework, with a fairly limited use case.

 As this is something that changes rather seldom, I think it would be 
 overkill.

Perhaps if framing it more generally instead, it would be relevant to 
work on.  How about a control file hint Arch-Varying: listing features 
known to be crippled for some of the archs they are actually compiled 
on?

Example that popped up recentently is VLC which upstream supports OSS as 
fallback for ALSA, and (as I understand it) for Debian is built 
_without_ support for OSS on Linux archs where ALSA is generally (but 
possibly not for all use cases) superior.

I imagine vlc could be tagged as Arch-Varying: alsa oss

...where the alsa hint can be expected for any package supporting alsa 
but working to some degree without it, whereas the oss hint for some 
would be a reason to inspect closer (e.g. check README file for 
details).

To minimize creativity in feature naming we could put names up on a wiki 
page, and later if/when gaining traction move that to Policy.


 - Jonas

-- 
 * Jonas Smedegaard - idealist  Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: signature


Re: Can/should we have an efi/efi-any platform architecture?

2014-12-11 Thread Neil Williams
On Thu, 11 Dec 2014 19:36:19 +0100
Simon Richter s...@debian.org wrote:

 Hi Leif,
 
 On 11.12.2014 19:08, Leif Lindholm wrote:
 
  If we could transition this to be able to specify efi-all (or
  whatever) instead of an explicit list of certain architectures, this
  would be a lot more straightforward operation.
 
  Would this be useful, desirable, an accident waiting to happen?
 
 Useful, possibly, but there is no mechanism that could be used or
 recycled for that, so it would be an entirely new mechanism in the
 package management framework, with a fairly limited use case.

There is an accepted mechanism: linux-any is a group of architectures
which have one set of packages in common and we have had others.
efi-any would seem to be entirely possible without implementing
something completely new. It would need dpkg and buildd support. With
linux-any it relies on a list of architectures in a table in dpkg - the
same could be done for other groups.

The mechanisms exist, the question is how many other variants would be
created by adopting this?

-- 


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



pgpaT0kgbPNR0.pgp
Description: OpenPGP digital signature


Re: Can/should we have an efi/efi-any platform architecture?

2014-12-11 Thread Sebastian Reichel
Hi,

On Thu, Dec 11, 2014 at 06:08:58PM +, Leif Lindholm wrote:
 When working on UEFI kernel support, for both armhf and arm64, we came
 across packages (in several distributions) that were manually set to
 build for architectures where UEFI was available - and so would not be
 built for the ARM architectures.
 
 These are some obvious utilites such as:
 - efibootmgr
 - efivar/libefivar
 - future versions of gnu-efi (upstream support for arm* has not
   trickled back down yet)
 
 But also installer-specific ones like:
 - partman-efi
 
 And some weakly related-to, but not really part of:
 - dmidecode
 
 ... and definitely other ones I haven't come across yet.
 
 The point is, when we add support for another architecture which
 supports UEFI, there are a number of packages that you will want to
 enable for that architecture. Currently, this means trawling through
 all of the packages and explicitly adding entries for 
 If we could transition this to be able to specify efi-all (or
 whatever) instead of an explicit list of certain architectures, this
 would be a lot more straightforward operation.
 
 Most, if not all, of these tools use only standard posix interfaces,
 so will build cleanly for any architecture.
 
 An alternative would of course be to simply do like with acpica-tools,
 and build all of these tools for all architectures. The problem there
 would be with packages which depend on packages that only exist on
 architectures that have UEFI - i.e. partman-efi vs. efi-modules.
 
 Would this be useful, desirable, an accident waiting to happen?

How about building for arch: any and adding a build dependency
on a new efi-support package, that is only available for
architectures with efi available?

-- Sebastian


signature.asc
Description: Digital signature


Re: Can/should we have an efi/efi-any platform architecture?

2014-12-11 Thread Jonas Smedegaard
Quoting Neil Williams (2014-12-11 21:07:15)
 On Thu, 11 Dec 2014 19:36:19 +0100
 Simon Richter s...@debian.org wrote:
 On 11.12.2014 19:08, Leif Lindholm wrote:

 If we could transition this to be able to specify efi-all (or 
 whatever) instead of an explicit list of certain architectures, this 
 would be a lot more straightforward operation.

 Would this be useful, desirable, an accident waiting to happen?

 Useful, possibly, but there is no mechanism that could be used or 
 recycled for that, so it would be an entirely new mechanism in the 
 package management framework, with a fairly limited use case.

 There is an accepted mechanism: linux-any is a group of architectures 
 which have one set of packages in common and we have had others. 
 efi-any would seem to be entirely possible without implementing 
 something completely new. It would need dpkg and buildd support. With 
 linux-any it relies on a list of architectures in a table in dpkg - 
 the same could be done for other groups.

Elegant!


 The mechanisms exist, the question is how many other variants would be 
 created by adopting this?

Please ignore my use cases - they were about features enabled/disabled 
rather than architectures targeted at all, which is what Leif asks for.

 - Jonas

-- 
 * Jonas Smedegaard - idealist  Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: signature


Re: Can/should we have an efi/efi-any platform architecture?

2014-12-11 Thread Simon McVittie
On 11/12/14 18:08, Leif Lindholm wrote:
 The point is, when we add support for another architecture which
 supports UEFI, there are a number of packages that you will want to
 enable for that architecture.

I've occasionally wished we had a way to make a requiring package
conditionally built depending on availability of another package,
usually an interpreter that needs explicit porting. For instance:

* dbus should ideally Build-Depends: valgrind on precisely those
  architectures where valgrind exists
* C# bindings should ideally be built on precisely those architectures
  where mono exists
* Java bindings should ideally be built on precisely those architectures
  where openjdk exists

At a source package granularity, you can fake it by having a (possibly
spurious) Build-Depends on the required package, which will put the
requiring package in BD-Uninstallable state (e.g.
https://buildd.debian.org/status/package.php?p=gtk-sharp3 explains why
gtk-sharp3 isn't built on mips, which doesn't have mono).

That doesn't work for individual binary packages unless you hard-code
architecture lists, though (e.g. a C library with an optional Java or C#
binding would need to hard-code the Java/C# architectures).

Perhaps this could be a build-profile?

Source: dbus
Build-Depends: ..., valgrind-dev archfeature.valgrind, ...

Source: libfoo
...
Package: libfoo-sharp
Architecture: any
Build-Profiles: archfeature.mono

Maybe we could even use package names as the features, so each feature
in the archfeature namespace is automatically said to be available iff
the package exists in apt? That covers the common interpreter that
needs porting case, although I don't know whether there's anything like
an efi-dev that could act as the flag for EFI architectures.

Other possible colours for this bike shed include pkgexists.valgrind,
with.valgrind, or (with the opposite sense) without.valgrind,
missing.valgrind.

S


-- 
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/548a0373.2030...@debian.org



Re: Can/should we have an efi/efi-any platform architecture?

2014-12-11 Thread Dimitri John Ledkov
On 11 December 2014 at 20:07, Neil Williams codeh...@debian.org wrote:
 On Thu, 11 Dec 2014 19:36:19 +0100
 Simon Richter s...@debian.org wrote:

 Hi Leif,

 On 11.12.2014 19:08, Leif Lindholm wrote:

  If we could transition this to be able to specify efi-all (or
  whatever) instead of an explicit list of certain architectures, this
  would be a lot more straightforward operation.

  Would this be useful, desirable, an accident waiting to happen?

 Useful, possibly, but there is no mechanism that could be used or
 recycled for that, so it would be an entirely new mechanism in the
 package management framework, with a fairly limited use case.

 There is an accepted mechanism: linux-any is a group of architectures
 which have one set of packages in common and we have had others.
 efi-any would seem to be entirely possible without implementing
 something completely new. It would need dpkg and buildd support. With
 linux-any it relies on a list of architectures in a table in dpkg - the
 same could be done for other groups.

 The mechanisms exist, the question is how many other variants would be
 created by adopting this?


And it will require a long time to be used. Imho this smells more like
a build profile e.g.
BuildDepends: does-not-implement-efi !efi

That way on non-efi implementing architectures the package will get
stuck in a dep-wait state.

However, EFI is not that simple as it has it's own architecture
mapping, it's own binary format and execution environment, but it is
unlikely that we will see debian ported to be run in pure EFI
environment. EFI is currently defined for IA32, X64, IA64, ARM, and
AA64. However in practice the support implementing it is ahead on X64
(despite IA64 being the first one). E.g. even things like edk2 - i've
tried to compile it for IA32 but appears to be only partially
implemented for gcc toolchain. Thus even if something is efi-ish and
should build for all efi-like-arches it doesn't mean that it was
ported or builds with efi toolchain.

For some of these things we are stepping into crazy land of ia32-libs
territory where we are considering to introduce and install grub-ia32
 grub-x64 on amd64 systems.

IMHO it would be cool to compile gnu-efi, grub, etc as
gnu-efi:efi-ia32, gnu-efi:efi-x64 etc. packages and have generic
mapping somewhere between debian architectures  efi architectures and
install those things as appropriate. That would be a partial arch.

-- 
Regards,

Dimitri.


-- 
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/canbhlugatff2szaxd+m8nk-k0tb-t7jhhfmickgrcuj_is8...@mail.gmail.com



Re: Bug#772736: ITP: pathlib -- Set of classes to handle filesystem paths

2014-12-11 Thread Ben Finney
Benjamin Drung benjamin.dr...@profitbricks.com writes:

 The source is called pathlib, but the binary packages are called
 python-pathlib and python-pathlib-doc.

Even for the source package name, “pathlib” is IMO too general. This is
specifically a library for Python programmers only; its source package
name should not grab a generic name like “pathlib”.

-- 
 \   “The long-term solution to mountains of waste is not more |
  `\  landfill sites but fewer shopping centres.” —Clive Hamilton, |
_o__)_Affluenza_, 2005 |
Ben Finney


-- 
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/85388lhnsk@benfinney.id.au



Work-needing packages report for Dec 12, 2014

2014-12-11 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: 656 (new: 4)
Total number of packages offered up for adoption: 145 (new: 0)
Total number of packages requested help for: 57 (new: 0)

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



The following packages have been orphaned:

   fig2ps (#772449), orphaned 4 days ago
 Description: Converts xfig files into ps, eps or pdf files using
   LaTeX for processing text
 Installations reported by Popcon: 538

   haskell-doc (#772423), orphaned 5 days ago
 Description: Assorted Haskell language documentation
 Installations reported by Popcon: 415

   haskell98-tutorial (#772424), orphaned 5 days ago
 Description: A Gentle Introduction to Haskell 98
 Reverse Depends: haskell-doc
 Installations reported by Popcon: 435

   libjna-posix-java (#772579), orphaned 3 days ago
 Description: basic POSIX-like functions for Java
 Installations reported by Popcon: 187

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



No new packages have been given up for adoption, but a total of 145 packages
are awaiting adoption.  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 1774 days ago
 Description: maintenance tools for a Xapian index of Debian packages
 Reverse Depends: ept-cache goplay packagesearch
 Installations reported by Popcon: 75787

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

   awstats (#755797), requested 141 days ago
 Description: powerful and featureful web server log analyzer
 Installations reported by Popcon: 4165

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

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

   chromium-browser (#583826), requested 1656 days ago
 Description: Chromium browser
 Reverse Depends: chromedriver chromium-dbg chromium-l10n
   design-desktop-web mozplugger
 Installations reported by Popcon: 25688

   cups (#532097), requested 2014 days ago
 Description: Common UNIX Printing System
 Reverse Depends: bluez-cups chromium cinnamon-settings-daemon
   cloudprint cups cups-backend-bjnp cups-browsed cups-bsd cups-client
   cups-core-drivers (64 more omitted)
 Installations reported by Popcon: 142688

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

   developers-reference (#759995), requested 103 days ago
 Description: guidelines and information for Debian developers
 Installations reported by Popcon: 15207

   ejabberd (#767874), requested 38 days ago
 Description: distributed, fault-tolerant Jabber/XMPP server written
   in Erlang
 Reverse Depends: ejabberd-contrib
 Installations reported by Popcon: 859

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

   freeipmi (#628062), requested 1295 days ago
 Description: GNU implementation of the IPMI protocol
 Reverse Depends: freeipmi freeipmi-bmc-watchdog freeipmi-ipmidetect
   freeipmi-ipmiseld freeipmi-tools libfreeipmi-dev libfreeipmi16
   libipmiconsole-dev libipmiconsole2 libipmidetect-dev (4 more
   omitted)
 Installations reported by Popcon: 5911

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

   gnokii (#677750), requested 908 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: 1543

   gnupg (#660685), requested 1025 days ago
 Description: GNU privacy guard - a free PGP replacement
 Reverse Depends: 0install-core apt aptly arriero bootstrap-base
   cdebootstrap cdebootstrap-static clamav-unofficial-sigs cloud-utils
   debbindiff (58 more omitted)
 Installations reported by Popcon: 

Re: debian-efi mailing list

2014-12-11 Thread Fernando Toledo
El 11/12/14 a las 16:00, Steve McIntyre escibió:
 Hi folks,
 
 I'm thinking it might be useful to set up a specific debian-efi
 mailing list to help as a central space for discussion about (U)EFI
 issues and support in Debian.
 
 There's been quite a lot of development in this area recently, and (as
 Leif just mentioned on -devel) there are a number of packages that
 might benefit from wider discussion and (maybe?) group maintenance. We
 could also help out with targeted support for users with EFI-related
 problems.
 
 So, pursuant to the HOWTO [1], I'm asking here who else might be
 interested in using such a list. Please follow up here and we'll see
 how far we get.
 
 [1] https://www.debian.org/MailingLists/HOWTO_start_list
 
+1

-- 
Fernando Toledo
Dock Sud BBS
http://bbs.docksud.com.ar
telnet://bbs.docksud.com.ar


-- 
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/548a3b91.5060...@docksud.com.ar



Re: Bug#772736: ITP: pathlib -- Set of classes to handle filesystem paths

2014-12-11 Thread Barry Warsaw
On Dec 12, 2014, at 08:36 AM, Ben Finney wrote:

Even for the source package name, “pathlib” is IMO too general. This is
specifically a library for Python programmers only; its source package
name should not grab a generic name like “pathlib”.

Why not first-come-first-served?

Cheers,
-Barry


pgpgKr8SfmhUi.pgp
Description: OpenPGP digital signature


Re: debian-efi mailing list

2014-12-11 Thread David Coe
I'm interested in EFI, and therefore in debian-efi.


David Coe
+1 410 489 9521

On Thu, Dec 11, 2014 at 7:49 PM, Fernando Toledo ftol...@docksud.com.ar
wrote:

 El 11/12/14 a las 16:00, Steve McIntyre escibió:
  Hi folks,
 
  I'm thinking it might be useful to set up a specific debian-efi
  mailing list to help as a central space for discussion about (U)EFI
  issues and support in Debian.
 
  There's been quite a lot of development in this area recently, and (as
  Leif just mentioned on -devel) there are a number of packages that
  might benefit from wider discussion and (maybe?) group maintenance. We
  could also help out with targeted support for users with EFI-related
  problems.
 
  So, pursuant to the HOWTO [1], I'm asking here who else might be
  interested in using such a list. Please follow up here and we'll see
  how far we get.
 
  [1] https://www.debian.org/MailingLists/HOWTO_start_list
 
 +1

 --
 Fernando Toledo
 Dock Sud BBS
 http://bbs.docksud.com.ar
 telnet://bbs.docksud.com.ar


 --
 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/548a3b91.5060...@docksud.com.ar




Linux Kernel 3.17 Features

2014-12-11 Thread Benjamin Przybocki
Hello,
I am aware that Debian Jessie will be using Linux Kernel 3.16, however I
was wondering if there is a possibility of Jessie including some of the
features added in 3.17 such as: getrandom(), support for Acer C720, and
support for Broadwell audio.

getrandom() commit:
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=c6e9d6f38894798696f23c8084ca7edbf16ee895

Acer C720 commit:
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=da3b0ab75aadab63d1ffd5563100c9386e444dad

Broadwell commit:
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=afdb74fd708fb4330485212f76a70b91967b1f70

Thanks,
Benjamin


Re: Bug#772736: ITP: pathlib -- Set of classes to handle filesystem paths

2014-12-11 Thread Scott Kitterman
On Thursday, December 11, 2014 09:23:36 PM Barry Warsaw wrote:
 On Dec 12, 2014, at 08:36 AM, Ben Finney wrote:
 Even for the source package name, “pathlib” is IMO too general. This is
 specifically a library for Python programmers only; its source package
 name should not grab a generic name like “pathlib”.
 
 Why not first-come-first-served?

If it's not for general use, a package name that sounds like it is would be 
potentially confusing.  

If it doesn't ship a python module/extension (in which case python-pathlib 
would be great, since that's what you should call the binary), then pathlib-
python would also work.

Scott K

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


Re: Linux Kernel 3.17 Features

2014-12-11 Thread Ben Hutchings
On Thu, 2014-12-11 at 21:08 -0600, Benjamin Przybocki wrote:
 Hello,
 I am aware that Debian Jessie will be using Linux Kernel 3.16, however
 I was wondering if there is a possibility of Jessie including some of
 the features added in 3.17 such as: getrandom(), support for Acer
 C720, and support for Broadwell audio.
 
 
 getrandom()
 commit: 
 http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=c6e9d6f38894798696f23c8084ca7edbf16ee895

No.

 Acer C720
 commit: 
 http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=da3b0ab75aadab63d1ffd5563100c9386e444dad

Maybe.

 Broadwell
 commit: 
 http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=afdb74fd708fb4330485212f76a70b91967b1f70

Maybe.  (But that's just audio.)

Please open bugs against src:linux for the hardware support.

Ben.

-- 
Ben Hutchings
Kids!  Bringing about Armageddon can be dangerous.  Do not attempt it in
your own home. - Terry Pratchett and Neil Gaiman, `Good Omens'


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


Bug#772908: ITP: pysph -- Open source framework for Smoothed Particle Hydrodynamics

2014-12-11 Thread Anton Gladky
Package: wnpp
Severity: wishlist
Owner: Anton Gladky gl...@debian.org

* Package name: pysph
* URL : http://pysph.googlecode.com
* License : BSD
  Programming Lang: Python
  Description : Open source framework for Smoothed Particle Hydrodynamics

open source framework for Smoothed Particle Hydrodynamics 
It is implemented in Python and the performance critical parts are 
implemented in Cython.
.
PySPH is implemented in a way that allows a user to specify the
entire 
SPH simulation in pure Python. High-performance code is generated
from this high-level Python code, compiled on the fly and executed.
PySPH also features optional automatic parallelization using mpi4py and
Zoltan.


-- 
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/20141212052007.26135.46443.reportbug@debian



Accepted man-pages-it 3.73-2 (source all) into unstable

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

Format: 1.8
Date: Thu, 11 Dec 2014 09:28:18 +0100
Source: man-pages-it
Binary: manpages-it
Architecture: source all
Version: 3.73-2
Distribution: unstable
Urgency: medium
Maintainer: Francesco Paolo Lovergine fran...@debian.org
Changed-By: Francesco Paolo Lovergine fran...@debian.org
Description:
 manpages-it - Italian version of the manual pages
Closes: 756923
Changes:
 man-pages-it (3.73-2) unstable; urgency=medium
 .
   * Fixed watch file.
 (closes: #756923)
Checksums-Sha1:
 a7ca21e1afeb4a76bf4be6bb500f47ffed0a04f6 1740 man-pages-it_3.73-2.dsc
 771b3b97ce7b9d4ceaaba5f1ec6a2b6c28e3ee1d 3804 man-pages-it_3.73-2.debian.tar.xz
 c4bce5197a8def1f1318d16573858a8977ee3f2b 589770 manpages-it_3.73-2_all.deb
Checksums-Sha256:
 ee9823e165f838f561d88e6ab3056eb333b8c8aa49135a6b2200a5e59e0d4b2e 1740 
man-pages-it_3.73-2.dsc
 7b3d423bd2d67f0e3b81d54e2153956f955cce7cb00e22e96b50719cd6daaf82 3804 
man-pages-it_3.73-2.debian.tar.xz
 44bd7a5f98ce7e9e543437ede197c89e7c068fd90f37104919286e8a9d0ee583 589770 
manpages-it_3.73-2_all.deb
Files:
 5793dad1b915c1d7221c24606b22d23a 1740 doc optional man-pages-it_3.73-2.dsc
 33ec780855bfda5c4b3f8c3df7914751 3804 doc optional 
man-pages-it_3.73-2.debian.tar.xz
 9747f95076f7f7d03e0a138edfd4e397 589770 doc optional manpages-it_3.73-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBAgAGBQJUiVXjAAoJEA8CpeEWNoak5bgP/RXQnh7w/1Bq1QoFzugRAR/A
4O5a19HBwdVbwSQZ+WOtjaqxnnB+FBFo1rsL2QklMYtPko0iIoXbkzKbubwnJRb5
V0jb+URx3+cMwoLtuxRjlg5/Jb9O9wfFVhJXbYiiScQXXTQ9hrbZLX0IzxJ/z2Nm
36o+4dvalZQ39qYH2tD3B2RzaTz4Rv+TpTK9XW/vEM6Hk9KciYfMH/jGAy7Xr1me
dRWRaw40F64JeWRXCu9rrcu+Yes32cvInEdX3nmyjKpr9NgJfli8ILOrMI+QPSxG
gwArmys5Q2hjRU2Fly+uCp2++knNCd8l44SCs0HZAw3OsOA/jk830d23buVzNVSp
TrCBmR3ZHe2yiC3lZsAZfvLvYlTlvLLI4z5cTske/Jimv8VDngoDOxKkB1v+XiYl
tMCEjwljXKCgKJ85/4WlCK0Yn9vyE2z4UhzdK65ceiRJ730ntQozlkwYI4CSaJO0
2yzQE0btqscRtFJDDw/EmFo8nnVxOr/cV9aAC5iUt9KUvF4PWDU7DtukCj+QpUFO
TsbvfxOqiIYuR5wjV2LEYHaahmcBYwY2hK6n6Nt1ba7p1r8BdcQIQiYzzj1/PZMR
JuZOQL/StdpaogytQFobJ6pbRY96lI0KcU3bjgmlK1jeUZ6rbQeoCV2KyhViDFuE
0cpngyOQsJ79ZjvSr3qf
=HPtN
-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/e1xyzy4-0004li...@franck.debian.org



Accepted libvirt 1.2.11~rc1-1 (source amd64 all) into experimental

2014-12-11 Thread Guido Günther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 08:15:24 +0100
Source: libvirt
Binary: libvirt-bin libvirt-clients libvirt-daemon libvirt-daemon-system 
libvirt0 libvirt0-dbg libvirt-doc libvirt-dev libvirt-sanlock
Architecture: source amd64 all
Version: 1.2.11~rc1-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Libvirt Maintainers 
pkg-libvirt-maintain...@lists.alioth.debian.org
Changed-By: Guido Günther a...@sigxcpu.org
Description:
 libvirt-bin - programs for the libvirt library
 libvirt-clients - programs for the libvirt library
 libvirt-daemon - programs for the libvirt library
 libvirt-daemon-system - Libvirt daemon configuration files
 libvirt-dev - development files for the libvirt library
 libvirt-doc - documentation for the libvirt library
 libvirt-sanlock - library for interfacing with different virtualization systems
 libvirt0   - library for interfacing with different virtualization systems
 libvirt0-dbg - library for interfacing with different virtualization systems
Changes:
 libvirt (1.2.11~rc1-1) experimental; urgency=medium
 .
   * [8c5ba09] Rediff patches.
 Dropped
  allow-libxl-to-find-default-path-to-pygrub.patch: fixed upstram
  CVE-2014-7823-dumpxml-security-patch: fixed upstream
  util-Prepare-URI-formatting-for-libxml2-2.9.2.patch: fixed upstream
   * [bdb5692] Bump symbol versions
Checksums-Sha1:
 670505dce876653e12ba43d432af5b3676046906 3608 libvirt_1.2.11~rc1-1.dsc
 edb1b2b0a2664646dc44142c148409c93aebe95f 30492154 
libvirt_1.2.11~rc1.orig.tar.gz
 f4ffd0799db9874f65fad7d41bb6e06444e1abb2 47472 
libvirt_1.2.11~rc1-1.debian.tar.xz
 b5ead58b61f5894808857d09d7079b347b1fbc17 35344 
libvirt-bin_1.2.11~rc1-1_amd64.deb
 3e60c117e24564c72a38ac97e20dcdcec918ee27 513346 
libvirt-clients_1.2.11~rc1-1_amd64.deb
 39c26c1e7698a17ccffe95e12f508def730e7bfe 1876760 
libvirt-daemon_1.2.11~rc1-1_amd64.deb
 50f5f11b66be5e496c32f3678f6145bc3a06011d 148960 
libvirt-daemon-system_1.2.11~rc1-1_amd64.deb
 4ff9a4ca435fb86f8725d87a72151b668f72685c 3053124 
libvirt0_1.2.11~rc1-1_amd64.deb
 6de18d7fa08190a2d6bbbe69e8c56778c5e23500 5465072 
libvirt0-dbg_1.2.11~rc1-1_amd64.deb
 7e54b200381acaab72806aa9ed98cf5fc9026601 1180470 
libvirt-doc_1.2.11~rc1-1_all.deb
 74d5de3c9aefb13cc8fd31c89f7d786131210250 147752 
libvirt-dev_1.2.11~rc1-1_amd64.deb
 26ab163a134afc26c6b03f33adb1ce13d82cc6dc 68740 
libvirt-sanlock_1.2.11~rc1-1_amd64.deb
Checksums-Sha256:
 b3b2d24e664287532757579070209fa4286e28a3581ba4373b509728470040f4 3608 
libvirt_1.2.11~rc1-1.dsc
 63c9df8589651d2823b62ad1ae24e110b4749f647271826fbd130a1fd4ce2771 30492154 
libvirt_1.2.11~rc1.orig.tar.gz
 884cf7f581e591d0035d4ed6b6fe9a4db7171022f393174f9baccd3fdae48bf9 47472 
libvirt_1.2.11~rc1-1.debian.tar.xz
 11005179e5f457e606d5c2a9b03d1795d01bb3e5e28814517126948e5d432d72 35344 
libvirt-bin_1.2.11~rc1-1_amd64.deb
 03d5a91c1b94249b138e09e0ab48fdecbf2276172aad6954af5c430b3080494e 513346 
libvirt-clients_1.2.11~rc1-1_amd64.deb
 00d12d91d7e40d702b496dbc8cf461401c24c80a02814254217c20284cf66097 1876760 
libvirt-daemon_1.2.11~rc1-1_amd64.deb
 c5960aa1d3173b2b322ef084f79851499946895b41b2f45beea458476d1a5117 148960 
libvirt-daemon-system_1.2.11~rc1-1_amd64.deb
 dc293db7ccae2cf86b2c95f9c097ec5d647d04827eb293df8e77a35516ff5bba 3053124 
libvirt0_1.2.11~rc1-1_amd64.deb
 76f475b96dbdf332020132d3b4c25f9da16631535f9791e10a43f75292db765f 5465072 
libvirt0-dbg_1.2.11~rc1-1_amd64.deb
 98d7149416693eec1371d838b32c3ffbba7a73d6ddc82a6b61a7c3229b3e3226 1180470 
libvirt-doc_1.2.11~rc1-1_all.deb
 35f2bee3494d3ae8680cfba141a3cdcc9aa8014068e9dd5d7faa6212942a1ae0 147752 
libvirt-dev_1.2.11~rc1-1_amd64.deb
 099a181d00a699c530e9212113731306603cf8cfb2b6e91b5e73a13c56072d43 68740 
libvirt-sanlock_1.2.11~rc1-1_amd64.deb
Files:
 1fc04fa287ee315adfa35ce55b678fb1 3608 libs optional libvirt_1.2.11~rc1-1.dsc
 48a7ecf2521d5af6708ba2a57eb81e00 30492154 libs optional 
libvirt_1.2.11~rc1.orig.tar.gz
 ddaf99059e87f31bc73e15f32d72ac94 47472 libs optional 
libvirt_1.2.11~rc1-1.debian.tar.xz
 a0caa6fc802fcc1c5fe27bbc341d25a2 35344 oldlibs extra 
libvirt-bin_1.2.11~rc1-1_amd64.deb
 75e2cd493f4b104284e768d6fe9f92b9 513346 admin optional 
libvirt-clients_1.2.11~rc1-1_amd64.deb
 d4efe4030082eb344095d8532a3d4d25 1876760 admin optional 
libvirt-daemon_1.2.11~rc1-1_amd64.deb
 4b8de72f55d8ff88217e71f23454 148960 admin optional 
libvirt-daemon-system_1.2.11~rc1-1_amd64.deb
 968f09ae9e33ea1026ee6ce26f206dc3 3053124 libs optional 
libvirt0_1.2.11~rc1-1_amd64.deb
 2a1209a1189f0c572edc7b29f61bd0ea 5465072 debug extra 
libvirt0-dbg_1.2.11~rc1-1_amd64.deb
 66dcbd2d251eeb3ac7ea63699d6d8877 1180470 doc optional 
libvirt-doc_1.2.11~rc1-1_all.deb
 a383da6fbefa8879b5e6a1608c24491d 147752 libdevel optional 
libvirt-dev_1.2.11~rc1-1_amd64.deb
 5c497294d66460d9c825a9ba52e82bcf 68740 libs extra 
libvirt-sanlock_1.2.11~rc1-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVIlMEwe4t7DqmBILAQgxOBAAqCVWnhbJTWR4hMHZBzearjAQKOhR8rPa

Accepted python2.7 2.7.9-1 (source all amd64) into unstable

2014-12-11 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 00:38:09 +0100
Source: python2.7
Binary: python2.7 libpython2.7-stdlib python2.7-minimal libpython2.7-minimal 
libpython2.7 python2.7-examples python2.7-dev libpython2.7-dev 
libpython2.7-testsuite idle-python2.7 python2.7-doc python2.7-dbg 
libpython2.7-dbg
Architecture: source all amd64
Version: 2.7.9-1
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description:
 idle-python2.7 - IDE for Python (v2.7) using Tkinter
 libpython2.7 - Shared Python runtime library (version 2.7)
 libpython2.7-dbg - Debug Build of the Python Interpreter (version 2.7)
 libpython2.7-dev - Header files and a static library for Python (v2.7)
 libpython2.7-minimal - Minimal subset of the Python language (version 2.7)
 libpython2.7-stdlib - Interactive high-level object-oriented language 
(standard library
 libpython2.7-testsuite - Testsuite for the Python standard library (v2.7)
 python2.7  - Interactive high-level object-oriented language (version 2.7)
 python2.7-dbg - Debug Build of the Python Interpreter (version 2.7)
 python2.7-dev - Header files and a static library for Python (v2.7)
 python2.7-doc - Documentation for the high-level object-oriented language 
Python
 python2.7-examples - Examples for the Python language (v2.7)
 python2.7-minimal - Minimal subset of the Python language (version 2.7)
Changes:
 python2.7 (2.7.9-1) unstable; urgency=medium
 .
   * Python 2.7.9 release.
Checksums-Sha1:
 8d98d8905d92217cefa40acdc866865b4ea58ba9 3243 python2.7_2.7.9-1.dsc
 2eca098bdad3b94f94188f5f4cf78a3345444537 15148821 python2.7_2.7.9.orig.tar.gz
 0b3ec1b20697b565aaec7ff803eea85e1066b4f6 264617 python2.7_2.7.9-1.diff.gz
 ec9ffaf05b74884cf48ac890d468dfb5eba3381a 593758 
python2.7-examples_2.7.9-1_all.deb
 1ab63bc191ba436853bc480eaddf2b3ffb17c54e 2714852 
libpython2.7-testsuite_2.7.9-1_all.deb
 6b97f5390ead4d576b0b02dcd0e4b3bb8e376e04 304232 idle-python2.7_2.7.9-1_all.deb
 e121d0699fbc2422bbf340805b392acbc4ac 4337206 python2.7-doc_2.7.9-1_all.deb
 a91018a9e91ee0275549e8f8a3341c1f575c205c 250802 python2.7_2.7.9-1_amd64.deb
 c551d0f4c764989ca40bbe68861ba0651d2fe80c 1846088 
libpython2.7-stdlib_2.7.9-1_amd64.deb
 f978ac9245e3b460519334e3c9433ecc3d24adcf 1402898 
python2.7-minimal_2.7.9-1_amd64.deb
 ab78240f37d4c604339c90767c97ff2066276c98 376614 
libpython2.7-minimal_2.7.9-1_amd64.deb
 c1cdbd27f5f533dd2cc673fe91109a0087c34471 1080422 libpython2.7_2.7.9-1_amd64.deb
 20ff4731225cac8b434668949606f5d32bcab870 278430 python2.7-dev_2.7.9-1_amd64.deb
 802d5274f638f02e13677c3160e9bff4a6d643ee 32215472 
libpython2.7-dev_2.7.9-1_amd64.deb
 586bb5a53c8bfca5b6bfcd98b0bafa4ec00f7674 6297800 
python2.7-dbg_2.7.9-1_amd64.deb
 9fec57b80e3948e7c7b60f5f8f5eb1695b3a929a 3994992 
libpython2.7-dbg_2.7.9-1_amd64.deb
Checksums-Sha256:
 5f2bb817e512408121657ad6d6d6647e6b37f8a4559ad6806bdff7eda8157d4e 3243 
python2.7_2.7.9-1.dsc
 46454dc4cb20e1f9b85aef63985890fa7e247f5941991761afd97d68e69b1901 15148821 
python2.7_2.7.9.orig.tar.gz
 5894faf69f2f439aaedbbdadd1dcdd14efc6b7cc05ce36423ad6b408469a4223 264617 
python2.7_2.7.9-1.diff.gz
 bf8d13f58ae77866f7f27e33e87448c948886634aad2c0aba31a136d85187180 593758 
python2.7-examples_2.7.9-1_all.deb
 fe32fe20a270439564169b17c9470a49b7956ba198f379540c0ecbdfe179829f 2714852 
libpython2.7-testsuite_2.7.9-1_all.deb
 b0b921ee0f96aeec8c5d09b8dcf18d357ee50e6e63d2834d9cb5d0be6e3dcd1f 304232 
idle-python2.7_2.7.9-1_all.deb
 80c35013f67bd53ea9faefbc49ecdc4f59161a929b6696e6fea8256491f22dc1 4337206 
python2.7-doc_2.7.9-1_all.deb
 b812f49c11a2f6de7a3b1197178c15aea0356f08fe6b13ef621870502c9d81ea 250802 
python2.7_2.7.9-1_amd64.deb
 45033f095f78d00fe1b1158f6ccddb7a2f3c6919b43e316a48a22eca6a7955a4 1846088 
libpython2.7-stdlib_2.7.9-1_amd64.deb
 9e97413903d4a9f532b64149b720f43a830bc62c3d660e9f41d9ab0ad3af373f 1402898 
python2.7-minimal_2.7.9-1_amd64.deb
 c30d0859705ef71e3fc773bf066efe18172b89f94f8f5e690ae92b95283bb67f 376614 
libpython2.7-minimal_2.7.9-1_amd64.deb
 e75dd2fa731f3623ba263bbde89b7d804a65197f74c9cf68f483110a2a65b8db 1080422 
libpython2.7_2.7.9-1_amd64.deb
 83ed64baa841cb04f0ded5fd53a0c510721aa148f5786ecadc4297d117e1b7df 278430 
python2.7-dev_2.7.9-1_amd64.deb
 ba781edce9cdd779a3e1c826952b23ea7848dc4c34a891f8d27878dcd1be74fa 32215472 
libpython2.7-dev_2.7.9-1_amd64.deb
 3340ac193a8c08feaaf9341f5db34ca828bf087f9047605464245f2f26a1c751 6297800 
python2.7-dbg_2.7.9-1_amd64.deb
 da468864e28324bee1de0e776c5b13243afa2a0cde9d95466a692ce329a430dc 3994992 
libpython2.7-dbg_2.7.9-1_amd64.deb
Files:
 0ee67d88422e2ec74ad5b58c0404dc11 3243 python optional python2.7_2.7.9-1.dsc
 6c8157ba0f2e705d7ef74593f78e0325 15148821 python optional 
python2.7_2.7.9.orig.tar.gz
 ee8e1dd7a2be954a67cf5157c3711130 264617 python optional 
python2.7_2.7.9-1.diff.gz
 dc7baa3c9610198e193993d90b6c8728 593758 python optional 
python2.7-examples_2.7.9-1_all.deb
 dff6d5e82f473366f561a1e5278204c2 2714852 

Accepted desktop-base 8.0.0 (source all) into unstable

2014-12-11 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 11 Dec 2014 09:10:05 +0100
Source: desktop-base
Binary: desktop-base
Architecture: source all
Version: 8.0.0
Distribution: unstable
Urgency: medium
Maintainer: Gustavo Franco stra...@debian.org
Changed-By: Yves-Alexis Perez cor...@debian.org
Description:
 desktop-base - common files for the Debian Desktop
Closes: 607838 607839 628116 628146 766232 772417
Changes:
 desktop-base (8.0.0) unstable; urgency=medium
 .
   [ Aurélien COUDERC ]
   * Additional support for Lines theme:
 - Add plymouth Lines theme.
 - Add KDM Lines theme and make it default.
 - Add QML Lines theme for ksplash and make it default for new users.
 - Add widescreen alternative for grub background.
 - Add KDE wallpaper.
   * Fix incorrect icon references in desktop files.
 (Closes: #607838, #628116, #628146)
   * Link desktop-background.xml alternative to Lines by default.
 (Closes: #766232)
   * Drop remaining elements from Blueish, Curves and Nightly themes.
 (Closes: #607839)
   * Update copyright file, thanks Francesco Poli. (Closes: #772417)
 .
   [ Yves-Alexis Perez ]
   * Upload to unstable.
Checksums-Sha1:
 49b87bd68311b5d87d81f5a7330b10884740c8ca 1508 desktop-base_8.0.0.dsc
 03d172dcaccffd8c799e5ea12eb139ce72794527 11302872 desktop-base_8.0.0.tar.xz
 86584bb1d1a5c0b1a4fa8baad5da169b4350c976 10189896 desktop-base_8.0.0_all.deb
Checksums-Sha256:
 4975e40714d0ec2475b9fb39acedadcbffc1a0667ba2c62d4e05b52b7d9de41c 1508 
desktop-base_8.0.0.dsc
 0d2e6890280fa3d9a9403edf401c856b1114c7e9f076d1b582f3bad8972ca4cc 11302872 
desktop-base_8.0.0.tar.xz
 5bab2865c2dd9974e3fcd6148b31cfcf3f1fa2adfe72e762692c9255ff2889d1 10189896 
desktop-base_8.0.0_all.deb
Files:
 d8d101223f6f4b7bdd0e4fcf5525fe35 1508 x11 optional desktop-base_8.0.0.dsc
 aa3f4c3acd3881f9389202ac570ec418 11302872 x11 optional 
desktop-base_8.0.0.tar.xz
 aff51b629b1bf39c51973bd91f197488 10189896 x11 optional 
desktop-base_8.0.0_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQEcBAEBCgAGBQJUiX2pAAoJEG3bU/KmdcClF1oH/3mi7Sx3X1CuzzAqc215sRMF
JXveGPW2wL84zX/M9wJxo5YTu8tFEmef7WUhozPzOXco2ORklFzedgr4B98oDJBQ
FHKnHLJUqEIBX/VaTsuHlSoIfWe3QQV5AETjYI2gOhvn22slPV5zKj2aIeOoK8Lg
64lJO1lffx3OKoNOgPGL/kgw7C7KzsBQJi0NewPNmop0gGpXEgRd4XJb2VOM/GiQ
sHayzpZTI5rjSE4QwhOTKkAMw+z/LjASERSUP7l8oyZNic6nTWJ91XVK2RIDt3lX
NROVvsh/UwvBFlCY+SkbHHp7LDWAjsV6vzCWttSmJAqpknE/9cgMeL/KYz2oQYA=
=9kcT
-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/e1xz20g-0005fl...@franck.debian.org



Accepted motif 2.3.4-7 (source all amd64) into experimental

2014-12-11 Thread Graham Inggs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Dec 2014 15:30:59 +0200
Source: motif
Binary: libmotif-common libmrm4 libuil4 libxm4 uil libmotif4-dbg libmotif-dev 
mwm motif-clients libmotif4 libmotif3
Architecture: source all amd64
Version: 2.3.4-7
Distribution: experimental
Urgency: medium
Maintainer: Graham Inggs gra...@nerve.org.za
Changed-By: Graham Inggs gra...@nerve.org.za
Description:
 libmotif-common - Motif - common files
 libmotif-dev - Motif - development files
 libmotif3  - Motif - shared libraries (transitional package)
 libmotif4  - Motif - shared libraries (transitional package)
 libmotif4-dbg - Motif - debugging symbols
 libmrm4- Motif - MRM (Motif Resource Manager) shared library
 libuil4- Motif - UIL (User Interface Language) shared library
 libxm4 - Motif - X/Motif shared library
 motif-clients - Motif Window Manager (transitional package)
 mwm- Motif Window Manager
 uil- Motif - UIL (User Interface Language) compiler
Changes:
 motif (2.3.4-7) experimental; urgency=medium
 .
   * Move custom Unity Greeter badge for MWM to unity-greeter-badges
 package in Ubuntu (LP: #1396851).
Checksums-Sha1:
 4fc77080b27d2a9cc61c5223d9aeed2911c7cc79 2519 motif_2.3.4-7.dsc
 caae91faeb5a915bdc4141449e43b9caa6d0f3d9 49024 motif_2.3.4-7.debian.tar.xz
 82e592a589a5352cc01921907a149723b02417bd 27660 libmotif-common_2.3.4-7_all.deb
 b0081dca9ccd9d59d10b02378754c2d16dbb6554 77128 libmrm4_2.3.4-7_amd64.deb
 56fff6160cfebbd3881a9e97e0bed1b3fb764a02 146684 libuil4_2.3.4-7_amd64.deb
 7af83c41a98b9e645ca29626c92c9135e525d58f 1028822 libxm4_2.3.4-7_amd64.deb
 1b3c32b934f39a6ac0fd6aaedbadd9a0556fe236 25636 uil_2.3.4-7_amd64.deb
 e531b1d8f70afe20144b50291bca096d4763d4f6 4131606 
libmotif4-dbg_2.3.4-7_amd64.deb
 7201001d4478134ea612fda44914592aeda3eae4 2463972 libmotif-dev_2.3.4-7_amd64.deb
 0ac4e93e14372e436abb6fceacc583634c450a5a 182338 mwm_2.3.4-7_amd64.deb
 9cbf1f5f3e6edb9507ccba97d1ac0865940665db 21382 motif-clients_2.3.4-7_all.deb
 f15614dfbd8cdfe16a301f1b3b1d6bc649fb862a 21408 libmotif4_2.3.4-7_amd64.deb
 f01e5acd91aee538a07c5eda337c48aaffdb9c76 21410 libmotif3_2.3.4-7_amd64.deb
Checksums-Sha256:
 a16b11defef0af8c5926e36ab7a89bf8b778e845ad7395e3d9306ef4cd875c7f 2519 
motif_2.3.4-7.dsc
 a4ba6632d5ac2cde0dca2c0e3b842b596f2fc6df205f4b9847aa799385739e00 49024 
motif_2.3.4-7.debian.tar.xz
 dff941ba2657f23370a5cee3d8536c10970f306a5328308526296de66d78c327 27660 
libmotif-common_2.3.4-7_all.deb
 0d8a88da93da3faf5f375431b10734872ae28120e10205233563325015020f80 77128 
libmrm4_2.3.4-7_amd64.deb
 4ebc8c161d5979a64bc950e97585e0e0f7aa218a4450d25bce6577a9c9ad0d75 146684 
libuil4_2.3.4-7_amd64.deb
 bb2e8465395cb54720c71ef188f48d80bd7647a15f82daea6570831a0aff1f29 1028822 
libxm4_2.3.4-7_amd64.deb
 2c29408f02fe3f7e527968583b9985051d826a842158766fe0bf40485b3b41f8 25636 
uil_2.3.4-7_amd64.deb
 77ef2e3b35760997194ecaf967f6bb36172c2e47a14d29cc04e19fd7efa722e7 4131606 
libmotif4-dbg_2.3.4-7_amd64.deb
 60a60a2b232fbef14c840129594b8d98389089d09820bcdfa7e4e4acdcf3111e 2463972 
libmotif-dev_2.3.4-7_amd64.deb
 9fd77deeb923772e77cc873e31b51f6cec3eaefe23e53fc3d4185364b0d0c4f8 182338 
mwm_2.3.4-7_amd64.deb
 c804ae84c454831244f8b6f4def4f67468301a403a5d2ac8ecc5e6ecb819db5d 21382 
motif-clients_2.3.4-7_all.deb
 6167f4a69c155dba7725ffe39388dbdd530ff97cede81e5eea986a326e22c940 21408 
libmotif4_2.3.4-7_amd64.deb
 1089cc6352b0f6c2b8a997240f8fc0d38c3a9bb85423d1f0348951d3679c4ea6 21410 
libmotif3_2.3.4-7_amd64.deb
Files:
 0afa6006e97b99222bfa5f8faaa607f7 2519 x11 optional motif_2.3.4-7.dsc
 c8a796b557a9bc319fc87f484b85ce69 49024 x11 optional motif_2.3.4-7.debian.tar.xz
 1ead9075498d1a57ea64163b1532e697 27660 libs optional 
libmotif-common_2.3.4-7_all.deb
 63e073012b007f5f8785bb00e0dc4799 77128 libs optional libmrm4_2.3.4-7_amd64.deb
 0c2d69df7470b8354c47e02e42ffeebd 146684 libs optional libuil4_2.3.4-7_amd64.deb
 9997aa9b0c53bbf5f993137fc509fb0a 1028822 libs optional libxm4_2.3.4-7_amd64.deb
 5939c315f6cceda9a43d9e4acd28 25636 devel optional uil_2.3.4-7_amd64.deb
 1bfbe02232a0be4a0f72802e15bdc238 4131606 debug extra 
libmotif4-dbg_2.3.4-7_amd64.deb
 0f827f48762e9f6c26cb4b1abe6e81fa 2463972 libdevel optional 
libmotif-dev_2.3.4-7_amd64.deb
 451583eab865fc6f868e1cdc329318d8 182338 x11 optional mwm_2.3.4-7_amd64.deb
 329fcf0b51c5cdfa526118a47f6592a2 21382 oldlibs extra 
motif-clients_2.3.4-7_all.deb
 d2451cee532b1dbb059e939ec0314099 21408 oldlibs extra 
libmotif4_2.3.4-7_amd64.deb
 9a63e4fbf5ca461162915b12d2a442aa 21410 oldlibs extra 
libmotif3_2.3.4-7_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUiWkxAAoJEK/P7I5mnOHCGbsP/R8U4Cx6FZK+f58zhWKl9rES
RhIqGyfQUB9SINpsyQ2cDr8/z9hknJrLRJ1yjDcmXT4rcLuXE86lH0XNUwDIKsdZ
X5B9bjBGO5i/3vAm9PSvN90DLob7qPNJmxMKCq3kcbK8Ac9+aLAHpT10PJP/bi0z
diRZ8qe3CVm6lSWw2uSBabYdNIBS9myuWfAqztxCcMuNgMR+2nw3wlYnrhxnpZOC
VMHBAQ1IxLJ9a8cVclUXGnf8IS13qYQQqocIqGYdOTC5Z7FAUnd7gp7O6VNp3z4L

Accepted mpfr4 3.1.2-2 (source all amd64) into unstable

2014-12-11 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 12:32:33 +0100
Source: mpfr4
Binary: libmpfr4 libmpfr4-dbg libmpfr-dev libmpfr-doc
Architecture: source all amd64
Version: 3.1.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Matthias Klose d...@debian.org
Description:
 libmpfr-dev - multiple precision floating-point computation developers tools
 libmpfr-doc - multiple precision floating-point computation documentation
 libmpfr4   - multiple precision floating-point computation
 libmpfr4-dbg - multiple precision floating-point computation (debug symbols)
Closes: 772008
Changes:
 mpfr4 (3.1.2-2) unstable; urgency=medium
 .
   * QA upload, properly orphan the package. See #771884.
   * Bump standards version to 3.9.6, fix lintian warnings.
   * Build using dpkg-buildflags.
   * Fix buffer overflow in mpfr_strtofr. Closes: #772008.
Checksums-Sha1:
 71dc1a9bd11b749cdee9ac9011dc3e4606a4dd8b 2116 mpfr4_3.1.2-2.dsc
 adf8f20893d5e64fc0fed442791f37b861de46ea 12804 mpfr4_3.1.2-2.debian.tar.xz
 37deb0380c542a0377825ed894733795c249aa03 916744 libmpfr-doc_3.1.2-2_all.deb
 3e942834201bcd61182095c8697a3bb1c864acfa 527336 libmpfr4_3.1.2-2_amd64.deb
 aa514888fefaa66cf1ed2fdaaaea4183417420c6 678050 libmpfr4-dbg_3.1.2-2_amd64.deb
 c2a244845905a06b771b34940c4e3a1990067f60 559204 libmpfr-dev_3.1.2-2_amd64.deb
Checksums-Sha256:
 fcbf025b0daf6dc95715ac226d4e4a8f86cda4b796115ad5b9d8271da6de9c7b 2116 
mpfr4_3.1.2-2.dsc
 49efd1d2032c8576868b64419e3403869dd5a62e1974b341f836852f7f2fd097 12804 
mpfr4_3.1.2-2.debian.tar.xz
 90d41c47192df55b3c9ee49f792214926412c88cf7f64f0660323beeca2b4e06 916744 
libmpfr-doc_3.1.2-2_all.deb
 1b6ef16024e7850c4f2d47dbe06cba1143ac36d5584db515f63d5fbd873e3eb2 527336 
libmpfr4_3.1.2-2_amd64.deb
 1430d9e4ff37a018587a2dc8a058682a8cd8baee8e2f55115df8f2bc70871ef8 678050 
libmpfr4-dbg_3.1.2-2_amd64.deb
 76bf8471b28ed1e5f5fdbfb190c81c560fadc0227df4b823c10b8a81ea000ff2 559204 
libmpfr-dev_3.1.2-2_amd64.deb
Files:
 8f2e5c932f8d1ae697471abe40a0624d 2116 math optional mpfr4_3.1.2-2.dsc
 d9855b0be103b4f662a301b1f0630353 12804 math optional 
mpfr4_3.1.2-2.debian.tar.xz
 ca0e9eb3649c38daffa9d94b8cea426b 916744 doc optional 
libmpfr-doc_3.1.2-2_all.deb
 c3cec2c064105c9c123013e416939a7a 527336 libs optional 
libmpfr4_3.1.2-2_amd64.deb
 e41f68a5d2cd208d13ac5c7fd792d4d7 678050 debug extra 
libmpfr4-dbg_3.1.2-2_amd64.deb
 9e56ce0cc40d7e9e9e03a2974a83543b 559204 libdevel optional 
libmpfr-dev_3.1.2-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUiYgAAAoJEL1+qmB3j6b1sJ8QALiUcO1eRR5qLg7Ud8g/Tnjf
M32I7iGuUhqw/UmUJ0SehH4RmNcTkp7KqARs0vb6EXcthzOWR7KhQZni1QXWIVTf
ykwFeSPw6zCIVUBF6dp2PvVeyrBSxNXE9dQdRZzci7uJAz4UKYoNIBtH7gGOgzW2
BoCD8+Htv9USNxxoNaHXLmmc06yUq8HTuuxkgESOoNdlPZ8G50SxFlyjHcgD+8w2
OqhokFLqaki4P0FSc9Gqu5CvbBcIYJSQPn+8AElORZn2GlT6FtMU1uNioRMJzG0x
ZQg6dTwpnT2gDaUuKBTqEaf4XqaPMhPczolcn22E3GUTxct2dCrL+d4xSx8UXmHl
LzOzDaygSW305GYzBUmJDE1V5if02/1sJYrrIPJqZ5qwK14YXnDle9vgzvzdgqz2
JLRIHVEx7uisCU6WvBUxV1R2kPCZYzw6CU4G4cMjnu3KENtjUtntaM+/G1w/4jFp
BhYrhSkNCXsN3h95MR/j2CSx7h7Bk+8rrQ8gQTBX6RvGbJQm9wY+uWmGdToWQSLB
C8ZQPxt5fA3/zENUNDhTObXbPQq8ElCiGivJw32DtBYMRweb43tbZXhsq2ne63HB
10bDW86Rk8kMJVx8B3+MzN3ysHXzUgxr6dOLUZNyrPxds4KYkLu9TP8bfcCsFYl6
k0eb7hOuWDd6m5yNemnA
=XvRq
-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/e1xz2iy-00030y...@franck.debian.org



Accepted gnome-flashback 3.14.0-4 (source all) into experimental

2014-12-11 Thread Dmitry Shachnev
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 Nov 2014 15:03:19 +0300
Source: gnome-flashback
Binary: gnome-flashback gnome-flashback-common gnome-flashback-dbg 
gnome-session-flashback
Architecture: source all
Version: 3.14.0-4
Distribution: experimental
Urgency: medium
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Dmitry Shachnev mity...@debian.org
Description:
 gnome-flashback - GNOME Flashback application
 gnome-flashback-common - GNOME Flashback application - common data files
 gnome-flashback-dbg - GNOME Flashback application - debugging symbols
 gnome-session-flashback - GNOME Session Manager - GNOME Flashback session
Changes:
 gnome-flashback (3.14.0-4) experimental; urgency=medium
 .
   * Merge 3.10.0-3 upload from unstable branch.
   * Move gnome-screensaver from Depends to Recommends (it is no longer
 in RequiredComponents list).
   * Make gnome-session-flashback depend on gnome-flashback 3.14,
 to make sure that gnome-flashback-init.desktop is available.
Checksums-Sha1:
 e2dcd382c74bd728c2092bbee40cfce8afaa4f53 2551 gnome-flashback_3.14.0-4.dsc
 af3273c8cffae78f15548f51523a3b6d7ab06035 10692 
gnome-flashback_3.14.0-4.debian.tar.xz
 0196cc0de1ac247fedb2bd56fbf438160784cd8f 20168 
gnome-flashback-common_3.14.0-4_all.deb
 c7071d972a3a559b67f9adea78112257cae0e313 7122 
gnome-session-flashback_3.14.0-4_all.deb
Checksums-Sha256:
 cc8ea457e4e2de73f31d6e6bcf18e127a46e3f75072d0ee4811b0cdbbbfdc847 2551 
gnome-flashback_3.14.0-4.dsc
 56c178d44a411a306dbc194d008807902c79789f568772df946ce31c57be8dd4 10692 
gnome-flashback_3.14.0-4.debian.tar.xz
 fd45d745f17a25b8ecf74a232dcf2094f5f347738742518d660f32a70818a9d8 20168 
gnome-flashback-common_3.14.0-4_all.deb
 bf40971743efef9f7dbb8a13a420bdd325bab95aff73365b6135d8aeed12efcc 7122 
gnome-session-flashback_3.14.0-4_all.deb
Files:
 7a1b84bf65ddb56a19060ea319230a22 2551 gnome optional 
gnome-flashback_3.14.0-4.dsc
 2f8e8b955ea9ad8e1c6abdfa7ee461d9 10692 gnome optional 
gnome-flashback_3.14.0-4.debian.tar.xz
 4f5edae29030b54915fe92cb4ca8f21e 20168 gnome optional 
gnome-flashback-common_3.14.0-4_all.deb
 fe5fb10bb7d596471b9d97ee2f3387e1 7122 gnome optional 
gnome-session-flashback_3.14.0-4_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUiY3lAAoJEGAmk20vHIrgEX4P/0KX0RrpXxaPKp2pIqHZTSW3
TlOfw4LTBd0tX8DjXXzMn5vbp94oEzwJeBhVkjWZErvhP0oNNDBQ1AdxVhzc96af
8GAl8eAzDuKhIVp5RN0TE3IODp5+DXF3vQWCaKWWATXEVK9r1DYULrSveSbzl+KV
1wIJq96mSWVJU4SJfwQ+vC47MbCaoGpLamMuobSrbx6Eh2QgMjt2D7ScnrPoEMB5
QtwN7DBG59gpcAiRHJ+VhOXbeyEHbLDbE4m+iYws7wZkQk/TvaCa2sykwstTXZav
avz6O0Ej2aFGPHawbCuLuHHp5ipsQMHZkdLHBpkQnJuRANrwKrgoaj2NU8zIWoIb
O+ye2hComN/M9jqRfw0/S54bQfDqRH6382iuPfejvEC+om0CTrlgk84oSYbCAPgz
p4caee+MeuXzQmSErBHirgMM2RugBGcAuCtLoDQIirWF7vxK7eSYlXt+ELPIcMVU
U3+zJ9H4F7WIq/sUWqwEqDSbdolylmAZO1P/On/0oZDTZ9Vf+hD4NykbEFvGDFRo
u8xXgN95gjbsnXXI4xH5fDSDfmBbb6JKsO2ioysEjJgQ1MQZnbYEtGOw47Hg49zu
ZEXMk/lJYG4w4SMcnIEr4QZJPpt5+z1lzhCyZES8cdhJjTqQnwKCsgJ+uL5LPLI9
TyzcUYcJBTerzTcCDIlA
=4C+3
-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/e1xz2wb-0007nt...@franck.debian.org



Accepted redis 2:2.8.18-1 (source amd64) into unstable

2014-12-11 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 11 Dec 2014 12:19:43 +
Source: redis
Binary: redis-server redis-tools
Architecture: source amd64
Version: 2:2.8.18-1
Distribution: unstable
Urgency: low
Maintainer: Chris Lamb la...@debian.org
Changed-By: Chris Lamb la...@debian.org
Description:
 redis-server - Persistent key-value database with network interface
 redis-tools - Persistent key-value database with network interface (client)
Changes:
 redis (2:2.8.18-1) unstable; urgency=low
 .
   * New upstream release.
 - Sync debian/redis.conf.
   * Attempt to make build reproducible by dropping timestamp/uname name from
 release.h.
   * Bump Standards-Version to 3.9.6.
Checksums-Sha1:
 49109262122de142d2865713a38a0a70b89abdf1 1242 redis_2.8.18-1.dsc
 129629262fea2bc60daa542f52457e65e6aa7fd5 1254077 redis_2.8.18.orig.tar.gz
 c209bb503d325bfd983f9c195d970d7e346e1a2f 23392 redis_2.8.18-1.debian.tar.xz
 ac722d75e3ba856dfb676880da5b33ac9564b02b 316182 redis-server_2.8.18-1_amd64.deb
 7d860835f1e4df5f38c7d38179f0a02d5a9425cb 79306 redis-tools_2.8.18-1_amd64.deb
Checksums-Sha256:
 f72d6ba07b97636cd37074534dc0a87dd90e980c9e50ac09547399a44aa35bbd 1242 
redis_2.8.18-1.dsc
 aa86eab586e4133728396273b671efae35dd70bdcc746e4e3f986e7600d0050d 1254077 
redis_2.8.18.orig.tar.gz
 5c050aa06f138b1ca787a1a8170ac30b01a0cff04456437b96c043e5482c6762 23392 
redis_2.8.18-1.debian.tar.xz
 72f9e6e58737a8fb89958f2916778fc055cbdf0b593ead338a4e181f6247ecf6 316182 
redis-server_2.8.18-1_amd64.deb
 00b9d0b217c66dc81f144d62cb01ff249dfdaef8c7219df1d852c35dcd57f490 79306 
redis-tools_2.8.18-1_amd64.deb
Files:
 13ad4115ab19325395375750a013f3dc 316182 database optional 
redis-server_2.8.18-1_amd64.deb
 97a69267f68e74cf72512f89224e61b1 79306 database optional 
redis-tools_2.8.18-1_amd64.deb
 b2cd81d893d08dc296b7dfc27f5aae39 1242 database optional redis_2.8.18-1.dsc
 1ba2df52c6761edb010b8976c84aebd6 1254077 database optional 
redis_2.8.18.orig.tar.gz
 593bd06aa1de4d22726d6b1f46640ad3 23392 database optional 
redis_2.8.18-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlSJjBIACgkQ5/8uW2NPmiDo5wCgqni381FUXx4CE2V3RKL18zeN
12EAn3gy20c2iuoz17JQNtub3VSFwSOk
=MMm+
-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/e1xz2xc-0007du...@franck.debian.org



Accepted mpclib3 1.0.2-2 (source amd64) into unstable

2014-12-11 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 13:12:14 +0100
Source: mpclib3
Binary: libmpc-dev libmpc3
Architecture: source amd64
Version: 1.0.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description:
 libmpc-dev - multiple precision complex floating-point library development pac
 libmpc3- multiple precision complex floating-point library
Closes: 771882
Changes:
 mpclib3 (1.0.2-2) unstable; urgency=medium
 .
   * New maintainer (Debian GCC Maintainers). Closes: #771882.
   * Bump standards version to 3.9.6, fix lintian warnings.
   * Build using dpkg-buildflags.
   * Add a watch file.
Checksums-Sha1:
 cf4edd64b87ad02d1ae35ecb93bb9c643ced11b3 1940 mpclib3_1.0.2-2.dsc
 e0253714f26455d34a749f1733d72add0172d425 3600 mpclib3_1.0.2-2.diff.gz
 8bb7f9a0112c4922c0e2e11a8e124b3ab4c70956 49108 libmpc-dev_1.0.2-2_amd64.deb
 cad4bee6b49fb4986724ef19cf3c6d33a5ff4258 40090 libmpc3_1.0.2-2_amd64.deb
Checksums-Sha256:
 fa9af74cda2f4a421d2dd5dbbc0d0af3720cfcd274a40c7e39a4c92632ef6d11 1940 
mpclib3_1.0.2-2.dsc
 57ee42b1f1383113c4983cd52aa082887cdd8edf17e27cf445d53e0b82b81e8f 3600 
mpclib3_1.0.2-2.diff.gz
 cd7a5842302cde1bcd19ca4c33633d213c1fbeb68262c37eaff4217b792e392f 49108 
libmpc-dev_1.0.2-2_amd64.deb
 fb8a87ab2e23886263c1571bc09119f415f3afe7dd19d2024efd25c5c8d92c92 40090 
libmpc3_1.0.2-2_amd64.deb
Files:
 32bdc81b33000a8e710f556178e22e18 1940 libs extra mpclib3_1.0.2-2.dsc
 bb24fe1b8abad91f7f5701f22a5a6038 3600 libs extra mpclib3_1.0.2-2.diff.gz
 fd0efdc8ee391a5739e33d8acbf35704 49108 libdevel extra 
libmpc-dev_1.0.2-2_amd64.deb
 75ca7b5c7603b77513fbaec66589dbbe 40090 libs extra libmpc3_1.0.2-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUiYtEAAoJEL1+qmB3j6b177UQAMBuM6F3B4m3FqYYRDkxek+M
P/dbZCK0MrPnQK7GiCOR8PBry9MSo14xfr6MoxkN9FpVggt8IpLslCyNhr5mF+ZO
H57DG/2Y0Ev+VFT8ZCup3J9X1aEsX/lXM2t1Ai8bgYVJlgD7J2nT17rQnoe89feC
SIEMtK2wCXOJNuXko51/ppm4J/vOlB7tBd4y8l41RbshFXq/hoDoeFSZjZOfeCTa
XSjqwbeTcGEnOsUY4MDOtMQocIummW55q0UlTXEkeaQoyRYlB9wI/Q18q6wFDad5
6BHO+nU5Rt61cMwqECYWVXi5/F+1YcuaIiq1+djdcSHd04vFqsYqnIIKBQ2hrrHS
93omULCyphx/yVEFl/oIg65Q5xasVQDVBfrZOi+Aqrw9k+3fxLkze35L7O1QypB2
+Gp1bYepoXYeOTMLmlYACfKiJU3Wwhm7/3F0GLrk9wWk3cQzdTPA73bfpZEicnGK
6p7E3i094azfyEJ/QyDDgPv7k8tAOzM1TxmvBdTS8cTKWMicUu6DaAYSrb+ljulw
9rLlrCuvd0PGVO+mecvXnw+CuKyrWoLXF5+FF/jSu+3qMf+Uz5m1BLPaoQEauOLh
sgpJn9Fj8/kWYRr04PzjlVIMZ0v18jcb9KBwEnePsD5kPZPjxNiOzVNMJZG85Xce
eQC2JdDa3w3eFHgOUZe9
=ywFK
-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/e1xz2ws-0007v0...@franck.debian.org



Accepted percona-xtradb-cluster-galera-2.x 1:2.11.2675-1 (source amd64) into unstable

2014-12-11 Thread James Page
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 12:25:51 +
Source: percona-xtradb-cluster-galera-2.x
Binary: percona-xtradb-cluster-galera-2.x
Architecture: source amd64
Version: 1:2.11.2675-1
Distribution: unstable
Urgency: medium
Maintainer: Debian MySQL Maintainers pkg-mysql-ma...@lists.alioth.debian.org
Changed-By: James Page james.p...@ubuntu.com
Description:
 percona-xtradb-cluster-galera-2.x - Synchronous multi-master replication 
plugin for transactional app
Changes:
 percona-xtradb-cluster-galera-2.x (1:2.11.2675-1) unstable; urgency=medium
 .
   * New upstream release.
   * Bump epoch to align with actual upstream release versioning.
   * d/control: Bumped Standards-Version to 3.9.6, no changes.
Checksums-Sha1:
 ce33fd3f1904a088a70793f9262c24903da3ded4 2326 
percona-xtradb-cluster-galera-2.x_2.11.2675-1.dsc
 ea7dd810cf62fd8bd732c7272ae0ed98719de0d3 2815836 
percona-xtradb-cluster-galera-2.x_2.11.2675.orig.tar.gz
 91e8e7857f7a923ea1f73cfd2a755ab659229e8e 5200 
percona-xtradb-cluster-galera-2.x_2.11.2675-1.debian.tar.xz
 9104c559ef02b047f5a7437e2f05a0c9fe10caec 1098284 
percona-xtradb-cluster-galera-2.x_2.11.2675-1_amd64.deb
Checksums-Sha256:
 6dcee2f80c70ea0b7029c199da98a3df57e2a8e57a9019256fdc438e591d7e23 2326 
percona-xtradb-cluster-galera-2.x_2.11.2675-1.dsc
 c14470269d267773e957bde08bd9308079d29a7043a8b249399c95837b4d5b19 2815836 
percona-xtradb-cluster-galera-2.x_2.11.2675.orig.tar.gz
 4696b4bf518174ee0e3093f59e6ec5c6eb8a5483aa933c19bb9d5b67954b1c2f 5200 
percona-xtradb-cluster-galera-2.x_2.11.2675-1.debian.tar.xz
 d9bc5cab652a5acfe3617839553fdb94f765054864ec2a416be316b3d799577d 1098284 
percona-xtradb-cluster-galera-2.x_2.11.2675-1_amd64.deb
Files:
 f4af5a297a52a41eee6da310401e6889 2326 database extra 
percona-xtradb-cluster-galera-2.x_2.11.2675-1.dsc
 91b872cc865f855153aedfe55561612c 2815836 database extra 
percona-xtradb-cluster-galera-2.x_2.11.2675.orig.tar.gz
 91096edfc4be3eef50c07b6cf3a415cd 5200 database extra 
percona-xtradb-cluster-galera-2.x_2.11.2675-1.debian.tar.xz
 e51f32f3e72ee6b2868941d48f748652 1098284 database extra 
percona-xtradb-cluster-galera-2.x_2.11.2675-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUiZAuAAoJEL/srsug59jDUjcP/i7EDazcOrI06l1atKcguBls
b5+apo7FJlO5dlpMLZHpj7/L30Cezo8MejDQg4MgUSC4pRM6XAyF+r6HOSlDm1S6
f1vKTVEfVpJKJSwK4c9dJLOaedmFTuFAUi+rskEXDAFf8gorFXPpvoB/NP/B1SOe
tLIakLNk52MtlvvcnKuZGjOkhQQAPblvWfcNZz6m2PjH7LlG8N+u4zcOxewEVWGE
PIey3zX8NnKs+cCThPE5auyk3neDCC1k1gM61oWqGi+AgYJmQuNwkLedeIpjvyQ/
x2yDXqrSmvACIJ2hm5ane2uncPxx+24EP1+mexlAn3Vbt8b1AMfZF8DbKv9oN0Iu
0YGhYyGVGHQkgUPpy3n8zmYolxAn6hIiDE8f3NlQD77kISdYeNzBerngLOrzDqaj
Wt0GRRmftSCKI24hCuJ28dzWBe6Ri1bhcJIUQ01QhnWzDhxDi8oq+FnRhNsGtojF
F/TGG7j0ANWqEgsUXb8BLBWeZRT1eHkmjVYfgy1DvesKetTaB7T7ArMa3Tpk29Yk
3h+WE/lIZTl+imiJ6BFW/w50MJKWP9ke4fFv0Jfz1++JF/o2AZcQRkXb76h2xOcE
MnQak+S5PYnC+KjEs6r5XT2PdvxwMNzBgFT/ez5knfZriHHBOhfFLnxSI+9M5EGd
Gw8hbcutk+c1D02juaBs
=/rdi
-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/e1xz3es-00011w...@franck.debian.org



Accepted php-sabre-http 3.0.4-1 (source all) into experimental

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

Format: 1.8
Date: Wed, 10 Dec 2014 21:59:34 -0400
Source: php-sabre-http
Binary: php-sabre-http
Architecture: source all
Version: 3.0.4-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-sabre-http - library to ease the work with HTTP protocol
Changes:
 php-sabre-http (3.0.4-1) experimental; urgency=medium
 .
   [ Evert Pot ]
   * Releasing sabre/http 3.0.4
 .
   [ David Prévot ]
   * Update watch file
   * Use php-symfony-class-loader instead of php-symfony-classloader
Checksums-Sha1:
 771172ca95da6dca1dcc329b5b012ee9e99aea16 1837 php-sabre-http_3.0.4-1.dsc
 3a9c489e8ce2df8e0f5a693dd2cc1b3e9275899d 39875 php-sabre-http_3.0.4.orig.tar.gz
 782368daf8cb15b22278d5e9c7a893bd85f4eb68 3940 
php-sabre-http_3.0.4-1.debian.tar.xz
 86b82dd4873a91bfdfba242a02f85d00235716ef 31036 php-sabre-http_3.0.4-1_all.deb
Checksums-Sha256:
 7557298c096ca8c6cdb3aa193d7a2a5293b9b132c731cb5f0c04d7a02f0d1c43 1837 
php-sabre-http_3.0.4-1.dsc
 8e5ae75f7dffed9a1755205f8e20518dedbe66c9bdcc9afad5f4479fb75c 39875 
php-sabre-http_3.0.4.orig.tar.gz
 da9c1ee58a4c51e536e2b1800f0364ae48fb6937997d4ba21a76cd7f83281934 3940 
php-sabre-http_3.0.4-1.debian.tar.xz
 18c97c191488bae34f3674a4624a8197c18c235b9768045876e0f21238c0e2dc 31036 
php-sabre-http_3.0.4-1_all.deb
Files:
 412a55489512984fb00d9d06dce6b113 1837 php optional php-sabre-http_3.0.4-1.dsc
 b8450e1b7a98b8a9b1c35268e97eeddc 39875 php optional 
php-sabre-http_3.0.4.orig.tar.gz
 8fce714965a10cdbe2f9de3f3e935436 3940 php optional 
php-sabre-http_3.0.4-1.debian.tar.xz
 53db16ca9a883a47e17099a8a1c98166 31036 php optional 
php-sabre-http_3.0.4-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCAAGBQJUiPzXAAoJEAWMHPlE9r08ye4H/0KycTz6AjXW9nP++5qDBvmN
PwLy3JjdFqa/D/rTAxFi+TJ48M7L3LcuHuk2cIQ71vf2k4y+/bOdSmAsDWHXTGEu
ZAVVGXBLRoba/Y2rjzT45GzjYq61b5gIgmYjStzEP9p7gtsaB3+VbIxsKNrdgWUm
bz0cExuUadR0yyDZdH/PCM4HzHwL273Fvy251K+xBe3KhvevEeSTV6yCSvubh8pD
jNIKrZX7mKaiWERtUOGtRre2MsX/J08+F3tHxBa8sopra9PVCmM55l7HcpLh9/3i
9wzk1JeFl5WUfERM80Y6rHUK1KB8JDSFoENKJ9LMl/RNh6CjKWfunA1YRZhrjaQ=
=zNuR
-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/e1xz5ai-z2...@franck.debian.org



Accepted php-sabredav 2.1.2-1 (source all) into experimental

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

Format: 1.8
Date: Thu, 11 Dec 2014 10:39:24 -0400
Source: php-sabredav
Binary: php-sabre-dav
Architecture: source all
Version: 2.1.2-1
Distribution: experimental
Urgency: medium
Maintainer: ownCloud for Debian maintainers 
pkg-owncloud-maintain...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description:
 php-sabre-dav - ${phpcomposer:description}
Closes: 743111
Changes:
 php-sabredav (2.1.2-1) experimental; urgency=medium
 .
   [ Evert Pot ]
   * Releasing 2.1.2
 .
   [ David Prévot ]
   * Update watch file
   * Drop now useless patch (Closes: #743111)
Checksums-Sha1:
 946d2c75b8555fc27b6837908dfe337ab81dd14b 1887 php-sabredav_2.1.2-1.dsc
 8cf912ce4b803584ed4d229955d54121ee682c60 423409 php-sabredav_2.1.2.orig.tar.gz
 cc2ebc60dcbdde93f54ac0a2ed43cd0411090446 7120 
php-sabredav_2.1.2-1.debian.tar.xz
 a9209c06b41ccc3730457bee63618ed4553369a9 226858 php-sabre-dav_2.1.2-1_all.deb
Checksums-Sha256:
 5100bf3b6cf72eb521bed45c0f06b357499b490816446e2c981e9dd109027c5e 1887 
php-sabredav_2.1.2-1.dsc
 a290e301786f380ede8e033b996a17559464956ad63d184d62c4e55ce2492c9c 423409 
php-sabredav_2.1.2.orig.tar.gz
 4cadc7ae318711e00c6ec703a85b193a2ea065ee966fb47bd9f6bcdb3219e17d 7120 
php-sabredav_2.1.2-1.debian.tar.xz
 c3e3fab4911e7f3966085ea6e4358f15271f40849029e8f908049f5024dd9291 226858 
php-sabre-dav_2.1.2-1_all.deb
Files:
 27c0c08e52f4b7424cb13cfcbd0620d1 1887 php optional php-sabredav_2.1.2-1.dsc
 7376bc249fd7fe6669c7edbdf9f46fb9 423409 php optional 
php-sabredav_2.1.2.orig.tar.gz
 631522f9cc6bad4daa82b54757e8587d 7120 php optional 
php-sabredav_2.1.2-1.debian.tar.xz
 0ce3b782f5d6a48d936249eabf45bc82 226858 php optional 
php-sabre-dav_2.1.2-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCAAGBQJUibMlAAoJEAWMHPlE9r08FCQH/3a2WFPjokpsgOYNS3ElSd9X
LoDuATCM7mIxJGTBErQfrtv2mO+10QX8jMWo7J6+uz+2KrH4HwcGA8u1Bu1cgbSM
u5nVoW9jsDiVpHr/+nXN9AJgaOzsVVrd3QcbPstXs+LFnZJcbPz0e1GgKC2Yw20W
qViG5c5uSkxOGAjmFmSNPb3UhSeiVj+E6ITuDs2u/+B1G1ZtF5OD2dEJMwCeVu1l
2MVLrQW3SXDt+Sq+LjertM+sC2/1SkihNkUMIAjcgbC40WhrmiQbkHhXm9dzjwq/
u+H4bJ/+9H3Aw3a7rIVSoASNl0VM3jrwMrmIWXxrupKIl9xJbhJlePN2XmTevs0=
=i4+z
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xz5aq-at...@franck.debian.org



Accepted xen 4.4.1-6 (source all amd64) into unstable

2014-12-11 Thread Bastian Blank
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 11 Dec 2014 15:56:08 +0100
Source: xen
Binary: libxen-4.4 libxenstore3.0 libxen-dev xenstore-utils xen-utils-common 
xen-utils-4.4 xen-hypervisor-4.4-amd64 xen-system-amd64 
xen-hypervisor-4.4-arm64 xen-system-arm64 xen-hypervisor-4.4-armhf 
xen-system-armhf
Architecture: source all amd64
Version: 4.4.1-6
Distribution: unstable
Urgency: medium
Maintainer: Debian Xen Team pkg-xen-de...@lists.alioth.debian.org
Changed-By: Bastian Blank wa...@debian.org
Description:
 libxen-4.4 - Public libs for Xen
 libxen-dev - Public headers and libs for Xen
 libxenstore3.0 - Xenstore communications library for Xen
 xen-hypervisor-4.4-amd64 - Xen Hypervisor on AMD64
 xen-hypervisor-4.4-arm64 - Xen Hypervisor on ARM64
 xen-hypervisor-4.4-armhf - Xen Hypervisor on ARMHF
 xen-system-amd64 - Xen System on AMD64 (meta-package)
 xen-system-arm64 - Xen System on ARM64 (meta-package)
 xen-system-armhf - Xen System on ARMHF (meta-package)
 xen-utils-4.4 - XEN administrative tools
 xen-utils-common - Xen administrative tools - common files
 xenstore-utils - Xenstore command line utilities for Xen
Changes:
 xen (4.4.1-6) unstable; urgency=medium
 .
   * Fix starvation of writers in locks.
 CVE-2014-9065
Checksums-Sha1:
 07ef16ce2aef8be8d287427530e6bebebac3ef82 2600 xen_4.4.1-6.dsc
 f30b16699d0cdf7682c2955dbc52043fdb4e4e2f 66984 xen_4.4.1-6.debian.tar.xz
 7a3f69e645d23d9a5e68192413f7157be65e0999 120790 
xen-utils-common_4.4.1-6_all.deb
 e59a86a6d1064b6a6086f946be0cd8def98c2c02 1671258 
xen-hypervisor-4.4-amd64_4.4.1-6_amd64.deb
 7fe668ffebbf1589e8bd09a1ac69fe00d634b4c9 19694 
xen-system-amd64_4.4.1-6_amd64.deb
 11e353e7f3308518d55ab406b93575a3dd331cfb 30618 libxenstore3.0_4.4.1-6_amd64.deb
 1cf1a31bc2debd4b326b473ec098fa32e25d5c5a 295976 libxen-4.4_4.4.1-6_amd64.deb
 8d7d38481a64a41700c349f8ec8f3fa54b3f00bb 476214 libxen-dev_4.4.1-6_amd64.deb
 befeed13d4d3f27131d3749bf1ae94009d18bb74 393148 xen-utils-4.4_4.4.1-6_amd64.deb
 36249f88aefab4c1d88b63791bd58ebfea20fcd8 26242 xenstore-utils_4.4.1-6_amd64.deb
Checksums-Sha256:
 fce5665d11939ec363f177999e99277bf929b35ed3816963c7c57d5e0aaae788 2600 
xen_4.4.1-6.dsc
 946d6131281983ca24541325d85230185564bf3399cbc42ee9f0db8015d6f9a8 66984 
xen_4.4.1-6.debian.tar.xz
 d9a95f6fac470282f62a21d14476a2d45de66f4d511652f698cbcd8699e02958 120790 
xen-utils-common_4.4.1-6_all.deb
 71cfa82922bf1305ead6f227e24ed4f5bd8632be86e7c653b5bfc52c1190db43 1671258 
xen-hypervisor-4.4-amd64_4.4.1-6_amd64.deb
 058452e65b77a6d1d3bbf58e29ef4ec78f7829a042f8d7a56247ba4b0b677f27 19694 
xen-system-amd64_4.4.1-6_amd64.deb
 7d895305834e221d91c27abe91a8eb46c468a2f2611ce1310b1ee1eddd81f384 30618 
libxenstore3.0_4.4.1-6_amd64.deb
 5a17063799333cb82e9b68c46cd0a0c45bfde0eb9b3e0c6c13560f58e8278763 295976 
libxen-4.4_4.4.1-6_amd64.deb
 fa13f0264f1c21c691c91c61e5437b1742ee7068f42f7ab86b93980120c51f8c 476214 
libxen-dev_4.4.1-6_amd64.deb
 7446e18223508308b7aa7f7e4b8478276027f4a582b942cb3fd34e556f997b9e 393148 
xen-utils-4.4_4.4.1-6_amd64.deb
 53b4068f05ec0b54f85fecdfa484888c2a3c30b77d6ead520bf0cd11f21d179a 26242 
xenstore-utils_4.4.1-6_amd64.deb
Files:
 bc514778c13f3a0f68ae76f914ad427e 2600 kernel optional xen_4.4.1-6.dsc
 1dd47bd3907c1b10dbd80ed00ffdfb6d 66984 kernel optional 
xen_4.4.1-6.debian.tar.xz
 34a2415f23bebf9a016e3fd2d38f714d 120790 kernel optional 
xen-utils-common_4.4.1-6_all.deb
 e65de6ce02effd81f6e14e591bb5f2a9 1671258 kernel optional 
xen-hypervisor-4.4-amd64_4.4.1-6_amd64.deb
 1c8df65d7ba299da8f5f18a6478f567c 19694 kernel optional 
xen-system-amd64_4.4.1-6_amd64.deb
 82e6d104fd064be904550dd61aefa3a1 30618 libs optional 
libxenstore3.0_4.4.1-6_amd64.deb
 ebbcf22ee7362531ba35f4d80e966478 295976 libs optional 
libxen-4.4_4.4.1-6_amd64.deb
 b8b1956f85b1221387a4942aa80d07f0 476214 libdevel optional 
libxen-dev_4.4.1-6_amd64.deb
 c319b04ca8a630d5e98db286e4bb01b7 393148 kernel optional 
xen-utils-4.4_4.4.1-6_amd64.deb
 afbe0eaef34de211beb088c02b4d816b 26242 admin optional 
xenstore-utils_4.4.1-6_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCgAGBQJUibS3AAoJEG2TiIWKaf5RLYAH/3XG1bDQ6NkEoyjS91qVkfcv
h1e79VzQXWwPYxj6fxyoBapBMm31cNkH2NDITRz8rh6j4ZAmVRJL61NbkHnB2ifP
XKDHBa1RP0GrpQR829Kt/fFMJUiFygKBLx543w8Gy6vGYNByRECdAcXcK3oY1J22
2F6ZoSS/dF+payeEaLK7phWbPmaDQ3pXEesbM/varkBdx2ZmJ/IWpbzbHB3OGpXc
LGTEL6s8rtoPvnqx8vYZ4ZJO/Z9wuIjee3DzoappWTm3hpk9g7vOrvAat7vipJ5Y
WCCyDAWOoNU6lozXDPBKrnUaix62rkMsAYGV/8cvlaNxDgquasEz2zDa+a1K8TY=
=84HI
-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/e1xz5ba-xu...@franck.debian.org



Accepted jquery-minicolors 2.1.9-1 (source all) into experimental

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

Format: 1.8
Date: Thu, 11 Dec 2014 11:01:10 -0400
Source: jquery-minicolors
Binary: libjs-jquery-minicolors
Architecture: source all
Version: 2.1.9-1
Distribution: experimental
Urgency: medium
Maintainer: Debian JavaScript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description:
 libjs-jquery-minicolors - tiny color picker built on jQuery
Changes:
 jquery-minicolors (2.1.9-1) experimental; urgency=medium
 .
   [ Cory LaViska ]
   * Switched from tabs to spaces
   * Updated version
 .
   [ David Prévot ]
   * Bump standards version to 3.9.6
Checksums-Sha1:
 977000d6eea25833e9ec6805a5cf59007c286e24 1795 jquery-minicolors_2.1.9-1.dsc
 5dd991cac5f50d343470eacade592053b24c4a6d 173910 
jquery-minicolors_2.1.9.orig.tar.gz
 3ef5817bd1dd1683fe0ebe92b6e1cf02323f0a4f 2796 
jquery-minicolors_2.1.9-1.debian.tar.xz
 8efeb31ff7a5ba224f439d8ed4ffadf6bcebac28 174570 
libjs-jquery-minicolors_2.1.9-1_all.deb
Checksums-Sha256:
 e8a284ec164d1ddc896e8415351adf259967b7f289160cc252ddad569aeeea0e 1795 
jquery-minicolors_2.1.9-1.dsc
 3ad36c55c56e457a489d102c17156794cd174503fc7ce23055d3fe02989adc2c 173910 
jquery-minicolors_2.1.9.orig.tar.gz
 1c29f9a726d5cce182e8c55c21eb9582ec1f41b075dc6700282c356193e41981 2796 
jquery-minicolors_2.1.9-1.debian.tar.xz
 5653accce31faabfd2c741aeef26b6a958012fe28d5f8daf93057b9b6d12a657 174570 
libjs-jquery-minicolors_2.1.9-1_all.deb
Files:
 1f3103faa9491b9236df2aeb9f9664e9 1795 web optional 
jquery-minicolors_2.1.9-1.dsc
 4b7812adad6199e3a494f7d80cd9949e 173910 web optional 
jquery-minicolors_2.1.9.orig.tar.gz
 c44e3fe4d583356a5ad4c8a6c763c0a2 2796 web optional 
jquery-minicolors_2.1.9-1.debian.tar.xz
 7c90d2c6e9b8e0cc8a4d68d9f25b5884 174570 web optional 
libjs-jquery-minicolors_2.1.9-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCAAGBQJUibXQAAoJEAWMHPlE9r08UMwH/2y+c1piAEAPJj6FEJm+f2uk
tZHEvBDrl89ZH3EVVjQfCUkRL/CUXKeL9McUt9GifzfzxswGJzo3YH+U8/VRYEaO
RA1cJNp0B45VUFASigzswFhfk+I0Lu9SRa/HrQMW+nN5LIW29v9uzKyiQUrVEH7r
eH2t2TUHSe+hM0mccNvjZj9v3hSwyrs02cWy6cCeY8pfhavNugJiYpQ2R9cJMPuW
tk94Y4PkM9jX0+EAk59yQjd+EpnGp5tiurkXlnawJeQGeLLNdw3UMYLA+9CH+j9o
kE7hhvTPWSkpgk8WofDBH816W4pluAIJQhJ7u4SQXPnfv89TE97uMsRb7V2ZOz8=
=tP7/
-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/e1xz624-0003xn...@franck.debian.org



Accepted antelope 3.5.1-3 (source all) into unstable

2014-12-11 Thread Emmanuel Bourg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 11 Dec 2014 15:34:12 +0100
Source: antelope
Binary: libantelope-java libantelope-java-doc
Architecture: source all
Version: 3.5.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Emmanuel Bourg ebo...@apache.org
Description:
 libantelope-java - graphical user interface for Ant
 libantelope-java-doc - graphical user interface for Ant - documentation
Closes: 748039
Changes:
 antelope (3.5.1-3) unstable; urgency=medium
 .
   * Team upload.
   * Fixed a build failure with Java 8 (Closes: #748039)
   * debian/control:
 - Co-maintenance with the Java Team
 - Added the Vcs-* fields
 - Standards-Version updated to 3.9.6 (no changes)
   * debian/copyright: Updated to the Copyright Format 1.0
   * debian/rules: Improved the clean target
Checksums-Sha1:
 1b18e043a8f9389ffd5164a198affba60d33279b 2045 antelope_3.5.1-3.dsc
 4d5f08deea6a3ba0b543f940f4e8334e1e73e43e 5616 antelope_3.5.1-3.debian.tar.xz
 a73cc58c91a4931352867fedefdf14cf4b50df06 249394 
libantelope-java_3.5.1-3_all.deb
 86bdb134f0e2486bb7816975a6bafb36edff7125 345120 
libantelope-java-doc_3.5.1-3_all.deb
Checksums-Sha256:
 1903248b78dbd41450ee8810451bc33c574704c8711165e1479a24ee4ffbc848 2045 
antelope_3.5.1-3.dsc
 34d172a005f5ccd5a2fdc5bff218472f94080221c57b9006acd7ed3966012935 5616 
antelope_3.5.1-3.debian.tar.xz
 f19fb4c2737b7a4728c31ce5845c9578c7f5213122099c617d3945834cf24300 249394 
libantelope-java_3.5.1-3_all.deb
 7f1e71e97562b8707cdad1c8578110311b76133c3e4da6380c8d9cc5f0daed46 345120 
libantelope-java-doc_3.5.1-3_all.deb
Files:
 51452fb9d5e30974c6616f3e9e71dcf9 2045 java optional antelope_3.5.1-3.dsc
 feddb01649df0544d94e4b0f59287334 5616 java optional 
antelope_3.5.1-3.debian.tar.xz
 5f2197ea659f4638417c07259bed4de1 249394 java optional 
libantelope-java_3.5.1-3_all.deb
 67b09ec5197dcf92360864f7027bde66 345120 doc optional 
libantelope-java-doc_3.5.1-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUibNMAAoJEPUTxBnkudCseDoP/3LmQxQaFpiFbrGC+ELKJ3wq
d+oNJhfDPhZ4McCnovFLZNaNethaz1UQhSIgBeC6IeHLlEuwiRExx6Fcqp4ljLkP
27U1Lbc/1Xm8ogutIr/gIKJB7F19daepVcdH9JSzYMCuzpa5NjRaz48CH3b26k2L
jmemP6d/SareFw4HJ892s2wJTuZ1G8G5a5biBnWMUuk8V3jntUuNPQCi3tRn4EZY
4dgwMWxfl81QhCO+5Wv3qktLjiRqaUs1esKow8i5vJojcU4OXwm1RvAPiGse+j8O
/xiR5DIn6/Vp6yR5UpT/OH1+Iw4hO0pkhBtLEzVyLAlkL0b88W2zkS2Pj+NdPfOf
+dWdzaxxpjCfxK1WzayGkb4UvQVu6uKw/J9kuhgtlL1T63ypi0F4G3ngN/cte72b
wZJQs6QJJLd3C0hzu7h0wVx/op6bRgQLOBSPMykp6/ErbmLq3Z30pFQ69rIfHzZM
QdTKcvY+EifrfFrzQk/PVv5qu4bsesRfcUTsCth8TBpQkVJhJgWNBD0/w8hPHqF1
9vbBL4pWsrdnxEdu6WtJOUn1PjMEXzChIE2okn6Su1IfwpEvZDJ+A3Ix0Vhu71Oz
/Svu6G4d7bn0UeRlXy+SChvUNbLA7EHlmRAMnqnwsGnbVmuqzpBcEXX07pQ3QvT0
d2pS1bqK4ZiwMs37dccd
=Oqhd
-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/e1xz61q-0003vl...@franck.debian.org



Accepted binpac 0.42-1 (source amd64) into unstable, unstable

2014-12-11 Thread Hilko Bengen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 25 Nov 2014 23:56:18 +0100
Source: binpac
Binary: binpac
Architecture: source amd64
Version: 0.42-1
Distribution: unstable
Urgency: low
Maintainer: Hilko Bengen ben...@debian.org
Changed-By: Hilko Bengen ben...@debian.org
Description:
 binpac - high level protocol parser language
Closes: 752792
Changes:
 binpac (0.42-1) unstable; urgency=low
 .
   * Initial release (Closes: #752792)
Checksums-Sha1:
 527dae6eb40a658219642774c729c84e92a4c7cd 1177 binpac_0.42-1.dsc
 b5e4b2511dfcbeb2240428911f7a4ebc82a245a0 132091 binpac_0.42.orig.tar.gz
 c774f5667353c39952034c1246acfc2c46fe5a5d 1996 binpac_0.42-1.debian.tar.xz
 7a6ad93be9b0c72629e2c0e147cbe06fd93eabe7 145382 binpac_0.42-1_amd64.deb
Checksums-Sha256:
 ca6b47173de2769906bf5a099aa9e47314de0e5a59f1fe3f3a8986b215c3acd0 1177 
binpac_0.42-1.dsc
 31edbc8a322328c49a190c0370fd4222e44f47ba77ecb23402d3a01710fa00c4 132091 
binpac_0.42.orig.tar.gz
 866bf533b486e0ddc6467adfe3801d9235e540cdb71dd682bfc3944c09572ccc 1996 
binpac_0.42-1.debian.tar.xz
 4312c69f4e4f65510f94a62f39d163214d181e7491982ae2f8e3e94be38d6f61 145382 
binpac_0.42-1_amd64.deb
Files:
 e83a3a140602812d1aae2a01e8b06ee6 1177 devel optional binpac_0.42-1.dsc
 67e46427025814090e380a9315cc4fe1 132091 devel optional binpac_0.42.orig.tar.gz
 ec6072c4204bdd07c7987ce9f445b48b 1996 devel optional 
binpac_0.42-1.debian.tar.xz
 9d90db44e6a64cf0301e57190f30e4f8 145382 devel optional binpac_0.42-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlR1CjcACgkQUCgnLz/SlGhWcQCg77VWRQ1Tsu8tjOiGnfu6Ob9x
reoAoMufAjjt61ccog/5q03hG9BIEd1C
=u0jB
-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/e1xz69x-0004us...@franck.debian.org



Accepted fonts-aksharyogini2 1.0-1 (source all) into unstable, unstable

2014-12-11 Thread Balasankar C
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 16 Nov 2014 16:20:09 +0530
Source: fonts-aksharyogini2
Binary: fonts-aksharyogini2
Architecture: source all
Version: 1.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Changed-By: Balasankar C balasank...@autistici.org
Description:
 fonts-aksharyogini2 - aksharyogini2 devanagari normal style font
Closes: 770058
Changes:
 fonts-aksharyogini2 (1.0-1) unstable; urgency=low
 .
   * Initial release. (Closes: #770058)
Checksums-Sha1:
 a984d7c73ad08a962977cae5b68e4054951121b7 2002 fonts-aksharyogini2_1.0-1.dsc
 37c04fbb956d9a6998fb429db52fe025a516421e 67488 
fonts-aksharyogini2_1.0.orig.tar.gz
 fcac2707cf0209aa499a7ba52fed4a489dba52f8 3152 
fonts-aksharyogini2_1.0-1.debian.tar.xz
 709af40c0cff512fadac6b6db373afa121b7a0d1 62068 
fonts-aksharyogini2_1.0-1_all.deb
Checksums-Sha256:
 ac3703ce012b5dfe1afe46361bc01c11193db453bfb18405ed279082cd069bdf 2002 
fonts-aksharyogini2_1.0-1.dsc
 8f2f1ffa732e479c65b9f743e2f9d9c72afa1e5e3e803b30f6173572a19c68a9 67488 
fonts-aksharyogini2_1.0.orig.tar.gz
 c8c481f53a33dbc29d16bc97a2a314d0fe59d9ae67d9e7a68c13d6b08afc8982 3152 
fonts-aksharyogini2_1.0-1.debian.tar.xz
 d941cb4471d61899055e0ddead67a0d3d555f86384a6e0eeed76da3f737e31d1 62068 
fonts-aksharyogini2_1.0-1_all.deb
Files:
 9cbe7d5c1dab0d7a0e56269aa73e724c 2002 fonts optional 
fonts-aksharyogini2_1.0-1.dsc
 10fd8d0dadc89fdbc735e3b3b7a3ce4e 67488 fonts optional 
fonts-aksharyogini2_1.0.orig.tar.gz
 edff0587109cf452e6af42ed9aa30d0f 3152 fonts optional 
fonts-aksharyogini2_1.0-1.debian.tar.xz
 80619676073045b006f5f3887fdee355 62068 fonts optional 
fonts-aksharyogini2_1.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUa494AAoJEM4fnGdFEsIqQpUQAI0K5V2IelIwd2uA5jREaF7S
YL3u+FkfhU/4yBjIY7bwS9KgLYaoIMR+z/DCO72D4KcoBJeo4uwhY9hJzwvKS7y0
qjX0qSrWeSOMwCksRuNK46RjPQwpE9cjdyaVeaHn7FavqMlWdW+EoEHGNC3b52sy
GXQp9nsBdWnvaRSS7HawuT8+0OBFdDh8Z2KtWAGetJpQk6TY38D/RWFXiJyLTAEU
yvnQwzQR3SZoYCXZE9gUfm3aUZUFRlOUZIw9UgKMdgsIQqBLW1US9fyMPbyRoDfa
hh/UTIbw28YdlPkhpH82qYQLR9xFFKGSPHO3e67aOZpeEm+ZJy/85FbrbTb4MG8i
Qx9JCUHBbn8sF38JoTTr3hRYnoSwAl5zOEZkHhcDBJYhZaPRdCEqhI0KdkRFTZRq
Reg9QmwiSVuFH+u1b/PaBv2oW0RfVuX7GJgKdo8WOtpDr9opeiAlqC/PyjnJ973t
aAak/wqFdKVffdgdV/byuibzOfQTcyOEGk3YqNHyRhLqWr7BKIkZiP3VSRDCv4dA
W+ACnfjodE7tFBlnjSinDr+BIKUOoW+nX8nydbWlSONiT9RrP+WetFJDrS9hPkV5
6z5qSqbJJ3DQDifw+WxZb+G/lHiXW/RSQfidQalIEEvXq98pwvlUWeqWMRzAiA8N
YU87nbRIsPbxyuc0qwA3
=A4un
-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/e1xz69y-0004vf...@franck.debian.org



Accepted fonts-ricty-diminished 3.2.3-1 (source all) into unstable, unstable

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

Format: 1.8
Date: Mon, 24 Nov 2014 00:30:24 +0900
Source: fonts-ricty-diminished
Binary: fonts-ricty-diminished
Architecture: source all
Version: 3.2.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Hideki Yamane henr...@debian.org
Description:
 fonts-ricty-diminished - font based on Inconsolata and Circle M+ 1m for 
programming
Closes: 769566
Changes:
 fonts-ricty-diminished (3.2.3-1) unstable; urgency=medium
 .
   * Initial release (Closes: #769566)
Checksums-Sha1:
 42b075efa268315c1a93f7a7cc6b2f17b0c5d88a 2071 
fonts-ricty-diminished_3.2.3-1.dsc
 cb1afb9fc6aa0553e29dbf2b67078ffc8387b137 7750166 
fonts-ricty-diminished_3.2.3.orig.tar.gz
 039e48bf36e4ebbabde41a656088457bc678c9e7 3732 
fonts-ricty-diminished_3.2.3-1.debian.tar.xz
 f977aac2b8d4f46f67c767182b62e64f5fcd79c2 2758254 
fonts-ricty-diminished_3.2.3-1_all.deb
Checksums-Sha256:
 2f380f2e005bd90155e07db60e7cafd22fd865007e1b5bdb8fb748179ee7f24e 2071 
fonts-ricty-diminished_3.2.3-1.dsc
 4569555415e6b04c6cddc4cd715c7c91aae9ffc2ce5c0ea37d7bd40a5161ac0a 7750166 
fonts-ricty-diminished_3.2.3.orig.tar.gz
 077b8ad6cc8ddb8fe91c73b408d2de4d03d9e988f9c690845801f782489fb42e 3732 
fonts-ricty-diminished_3.2.3-1.debian.tar.xz
 e33ace05c41e2a6ffc46c08cb4051cc6e3a9ed6d640b934f037c44aa284f7dd5 2758254 
fonts-ricty-diminished_3.2.3-1_all.deb
Files:
 4de07ea02b4f9bbf4e2bb1892f441909 2071 fonts optional 
fonts-ricty-diminished_3.2.3-1.dsc
 5ac70bdb848355d689b88a17d6293839 7750166 fonts optional 
fonts-ricty-diminished_3.2.3.orig.tar.gz
 0032de1c206d7f739a7b65ecab973291 3732 fonts optional 
fonts-ricty-diminished_3.2.3-1.debian.tar.xz
 cc08934beaf533c77b803a0a0021e878 2758254 fonts optional 
fonts-ricty-diminished_3.2.3-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUcgFVAAoJEF0yjQgqqrFAdPcP/0QYzFTx0oC6beBpKOjf9MJK
6DOZ0sg6LdCDRFsB9jEEgx4r/hNzu1aIudAxN+wyiP5F/HdZ+wbpm7NbxJBVHRfV
rupyhCCURL6GVVsakwP6KEax33v+Afc9fWK0L06il4XwkfJb9TL7ZQ4UNLFjGDDZ
dE2T9ZvAAlMijIORqGItjsEI50QW684dnw/xolWKhctU0gOYv1BppzXTQJaOw+5e
FrI0c0XvECUrR2dwBUVbq8WQnQZuYCjeU/2kQT2cEfeKo29m5XFl7apZ6xtSzr+n
HAqr480Y9DkGUk1yffQHAyKA9Lkvy22sF9oEeIR1R46aQPQbkLerK2jyUDpOwEwz
dyHh96A1nR/tXXYbKPQGHZOAzo8O+PXB3zZ8mxes5tFu7vBR9iMDoeBiPyc7+9/4
wAqc6vGAWC+u5kZEAI6dEyY2UF8rTo5GjPZ3sJI+6Gvu0lIJrovrmDhsC/K20VJx
uy7Wr2DGAgbOyN4GLSL+wsQ8Y7O6BDz342p38gD+gcOePRzMWaAEQf0YGBNKQxOX
xnXRUL6jxfOqqwkfY8s6Y3oiq+DGF5FWGYtfkoaqTqtyO2Fp0lgim3kBFfw8dgdV
q/+1LPVs72FqlzOCi8hhvx8MXfFPNMv+WR+LKSbafL3sIzKjbgeryQS/Tip7iTR0
Hggg1CFjUiTjk7FuJW/t
=E3jp
-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/e1xz69z-0004w3...@franck.debian.org



Accepted libvterm 0~bzr618-1 (source amd64) into experimental, experimental

2014-12-11 Thread James McCoy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 30 Nov 2014 20:32:10 -0500
Source: libvterm
Binary: libvterm-dev libvterm0 libvterm-dbg libvterm-bin
Architecture: source amd64
Version: 0~bzr618-1
Distribution: experimental
Urgency: low
Maintainer: James McCoy james...@debian.org
Changed-By: James McCoy james...@debian.org
Description:
 libvterm-bin - abstract terminal library (utility programs)
 libvterm-dbg - abstract terminal library (debug symbols)
 libvterm-dev - abstract terminal library (development files)
 libvterm0  - abstract terminal library
Closes: 740400
Changes:
 libvterm (0~bzr618-1) experimental; urgency=low
 .
   * Initial release (Closes: #740400)
   * Fix crash in specific scroll scenarios
   * Bounds-check number of rows in screen-state before calling
 vterm_state_get_lineinfo
   * Set Version in vterm.pc to DEB_VERSION_UPSTREAM
Checksums-Sha1:
 24840b436c72c188f8bc206aef9870f388802aea 2155 libvterm_0~bzr618-1.dsc
 e70d47631c5d2a2ebb49b9a90bc65fd8fcff3ad3 63313 libvterm_0~bzr618.orig.tar.gz
 ed7d6c69bccf452e88a1f8d47d6fefe4976b078d 3644 libvterm_0~bzr618-1.debian.tar.xz
 4a953b73662d4927ad3913d9f89619950325aa0b 32766 
libvterm-dev_0~bzr618-1_amd64.deb
 571e5687a2985b84afb09ad71afa61f69f55bac8 28022 libvterm0_0~bzr618-1_amd64.deb
 dac54030ed3dd483213e1161eaa796c3924dd196 75796 
libvterm-dbg_0~bzr618-1_amd64.deb
 d87086bc168948e4e648bdecd211cad11cb2a700 10876 
libvterm-bin_0~bzr618-1_amd64.deb
Checksums-Sha256:
 50d132fa6998e5c593fec3436768a8be970e478f23eacd870d1bda396efba542 2155 
libvterm_0~bzr618-1.dsc
 dabaf9f9e48970cf27d2e712972f2c43ab7db7be55bcaf35eed6ed3e47298a72 63313 
libvterm_0~bzr618.orig.tar.gz
 9fa620fa372488108fe44faf84aaf6d839d43f506b1d01be1ff9ba52d5731807 3644 
libvterm_0~bzr618-1.debian.tar.xz
 498206816b94949a41190ee940d890a855065b3b289e284dec0323b576c0aebf 32766 
libvterm-dev_0~bzr618-1_amd64.deb
 511c5ce28de4097631b73c5b2543286090b4180a1bb707ae9eebd30ddaccc50f 28022 
libvterm0_0~bzr618-1_amd64.deb
 5444174c89559869be6cbcea78655d39e2e48fe26a2001fcfac8fabb3a3db64a 75796 
libvterm-dbg_0~bzr618-1_amd64.deb
 97d9a7ecf1747923fcf20f2e3dc42cb00f5e6b34461b02d72e09a7df762bb3b8 10876 
libvterm-bin_0~bzr618-1_amd64.deb
Files:
 330852cd309273649d48bf777ee9c6b4 2155 libs extra libvterm_0~bzr618-1.dsc
 804746d2c47f70420c984fbd9ca2e830 63313 libs extra libvterm_0~bzr618.orig.tar.gz
 611f731cfbeddd04848f5b35458f6ba2 3644 libs extra 
libvterm_0~bzr618-1.debian.tar.xz
 93b4b868a0965b5bbde12f65ac46d9ff 32766 libdevel extra 
libvterm-dev_0~bzr618-1_amd64.deb
 0e26e0d4007817d75f02594a4e2e6bd4 28022 libs extra 
libvterm0_0~bzr618-1_amd64.deb
 1452baf1847548f481581789a2ea7345 75796 debug extra 
libvterm-dbg_0~bzr618-1_amd64.deb
 f30e9b6080cb1cc8018f8a96e252c573 10876 misc extra 
libvterm-bin_0~bzr618-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAEBCgBmBQJUe8aFXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ5MUJGQkY0RDY5NTZCRDVERjdCNzJEMjNE
RkU2OTFBRTMzMUJBM0RCAAoJEN/mka4zG6PbDl0QALspkCvlgHALGRTQbfeovaSK
Gn1e28dadGqxSJRofVl99E8GT4sM5GTyQSoSKHXCvJRZRexJ3cTaolO2m1HwjwW9
WPoa+CPprmO7WsoVAnT8e7hJoF+3a3ElELE/gB6zgslf7hZseeqhC4nUCeH4wM97
AHXRlqvw/M6o6h0CcawZmYKFkb6jhl66wZG91oYnCW1EaLEr+91qxZEPKVj0ftQp
lac2Iv665Uqgqo38NKArx6tKrcYTMPrDZQmJ2LQ87BXUmyOGskjowgJHUTH2DyRe
amEqZe2CG/t8AsRAqyZt6b9zKe9wcLqujbKBeAuMvPE9CQOxTeBtyYxJ73ypcKhE
USwzZdgHcdl9LMWn08ENeHNXANGQllCdCt99aaNZPjy7lRqlQzLS5QWdCcVdD20w
KowAk1CmwFuAT7v9+cIta7NdSJFL26DXafY/jkR20cSIshBaPnEIT9Z/pfeLcQQj
2jX/S2HVtJOLV6Qa7UpFZTa5El307ojc2L72zY7b3OjdUbJWHR1nP1Pnf8VrJFM6
e8D+2KEbFbGcuTbz0YrmDwGwDMnqt5VWVZZybjEenuncw3x32i4//YXObYYIr24w
41BvgRxgmbNbFOXIF9b2VNy24YTakKqKmvCi7zy9cLzjUqBZ+9C8kZddRl/n4vsq
c0x3dLs1JJC/N9V4BP6G
=nV5j
-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/e1xz6a1-0004wl...@franck.debian.org



Accepted willie 4.5.1-1 (source all) into unstable, unstable

2014-12-11 Thread Antoine Beaupré
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 29 Nov 2014 17:49:27 -0500
Source: willie
Binary: willie
Architecture: source all
Version: 4.5.1-1
Distribution: unstable
Urgency: low
Maintainer: Antoine Beaupré anar...@debian.org
Changed-By: Antoine Beaupré anar...@debian.org
Description:
 willie - simple, lightweight, open source, easy-to-use IRC utility bot
Closes: 771403
Changes:
 willie (4.5.1-1) unstable; urgency=low
 .
   * Initial release (Closes: #771403)
Checksums-Sha1:
 43c6ced745ff30ed891c78c3e2bfd45b47eb0918 1838 willie_4.5.1-1.dsc
 3ef60f5172adc42cc9aef2abbd5051828aec404b 104564 willie_4.5.1.orig.tar.xz
 113c7529e58582ca014e82fbadddc7cb70754659 5496 willie_4.5.1-1.debian.tar.xz
 b9f66a74360ab11cfbf51f6073d5d1cd44abd20d 100204 willie_4.5.1-1_all.deb
Checksums-Sha256:
 f738d4bc1cf33d86ce189e6c81db6064f2f1d84bee6081001f9750500c4b137c 1838 
willie_4.5.1-1.dsc
 743abccef834714a09fed2a118432aa2e198908a7d4d209b938b33bd5f1f739c 104564 
willie_4.5.1.orig.tar.xz
 fda148785fb1522884a4332f90c30c516a0d22ea2f882f36d273d458a3f952e2 5496 
willie_4.5.1-1.debian.tar.xz
 abfb84ea9587e132a720841b7cc3b18f2397bff9a28f51c17848a31838459fcd 100204 
willie_4.5.1-1_all.deb
Files:
 bb27f72c8a41777428d01c885dac117e 1838 net optional willie_4.5.1-1.dsc
 3cdbfa09c84ba531f5bb05f6178fe923 104564 net optional willie_4.5.1.orig.tar.xz
 451fe72e46c7c5a65650ce299aea25c0 5496 net optional willie_4.5.1-1.debian.tar.xz
 26f41d15b854dae6173c2fca98c395fb 100204 net optional willie_4.5.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUfVdJAAoJEHkhUlJ7dZIeLuEP/198lK33ovog18l1rGpA62ji
jpu7uQEFDPfEXYsis61ln4Xn1rdw02k6qRCyOmLW7Id11L581L1uZm7p/w/+qDNT
PIoquBo3emDsBzgA863mLIlpbU0T5N+cp0nhgtGmpFXH6J1sNlO64bFcwJcTBA4h
K4DSNvLSewRP4nGPc7OqyG9Hj7MdG6B9u+Hj3FPPVW57GDLtt3FKHMF6gRNiisoY
NZTdRFbpATEcWR+YrTWpMy2GI3jRUDU9g3PII23+ig5y4ZEtBGK0F3205EdgLnLT
KcBhw2QQn6D7E3oAobCWf5yPL1Wdmz3CyMLAUdC3OI7K1FtiguiPEUyWeXFs0qMd
S04c/uzkwa70R+66Bv+J56KvpL7XU0SckcpBq+XetwjFfF9anLaxBRYrsXYfv1dp
bBOQ5Y/e2PrZmO0Lzt/SfY8I5Bm5Xng+6DXmWUmK4uzyC+AmtOJt4Zhs137zFIcN
fue4POJLjjtY5/MaHKZwBtaAIxk87CdyFVFHoZs1hXoyrD2gKVikSSj5lBUsZ9is
axZ1y8VXQNGUC15qfxZTSlhyEcNkyvdA51PPopxPcpcSLSkRDsgBKdxw4ZsWA1KB
hnlxayMBQpLzuU4IkQbTly0+kna/8EsgAJU1VAvA0BqjpDcf0AtWINVJwpFoutQU
7lM0UKBd18GWMD+xJUjp
=6N7b
-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/e1xz6a2-0004xr...@franck.debian.org



Accepted afl 0.65b-1 (source i386) into experimental, experimental

2014-12-11 Thread Jakub Wilk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 24 Nov 2014 10:07:02 +0100
Source: afl
Binary: afl
Architecture: source i386
Version: 0.65b-1
Distribution: experimental
Urgency: low
Maintainer: Jakub Wilk jw...@debian.org
Changed-By: Jakub Wilk jw...@debian.org
Description:
 afl- instrumentation-driven fuzzer for binary formats
Closes: 766760
Changes:
 afl (0.65b-1) experimental; urgency=low
 .
   * Initial release (closes: #766760).
Checksums-Sha1:
 390f8e6a80ab7fd88f5bda89f21ebe0c5c95e432 1708 afl_0.65b-1.dsc
 42e08b667fbbb9828a766c9beae69cf0d14e8668 684003 afl_0.65b.orig.tar.gz
 a4f4bc9edf57f3235e538b27cf96a43511f3dd2c 2446 afl_0.65b-1.debian.tar.gz
 6fb45b3103ad738e92f23011208ea31c634375fc 100964 afl_0.65b-1_i386.deb
Checksums-Sha256:
 30d2f15a943d7b849798e48feb91a0d0ca8535d9199b868e3d83c08a2b498a45 1708 
afl_0.65b-1.dsc
 13c50ed2b3d1f461275df46494bd6b58a5e970da421560801f398442e024f290 684003 
afl_0.65b.orig.tar.gz
 0a5e630814c6c09b77d91bed78013c85bd7c3a99fefdd49524dad48700457462 2446 
afl_0.65b-1.debian.tar.gz
 e1418ba04a3a610a5838b41206a139da4c02a67193e8113cb669db288a0c845d 100964 
afl_0.65b-1_i386.deb
Files:
 183a327e8868e61a341b43d9cd182bf0 1708 devel optional afl_0.65b-1.dsc
 9cd0fbea278291cfa11e8d69a9bcc900 684003 devel optional afl_0.65b.orig.tar.gz
 3b4637c2f9503cebac7568159db74dfb 2446 devel optional afl_0.65b-1.debian.tar.gz
 0ac6bf1f077ac36e91567c81382167ef 100964 devel optional afl_0.65b-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUcvtUAAoJEC1Os6YBVHX1fo0P/jLVWxewJeHtipms2oPlF32D
a9X1Xaup9gIxwZp33/XTBNbmWFBOCx3bU3gGvU9qCkD2Jz7rqSWCLumrPNOIZRcs
3l9dWg7xS66S/QBqF0fRAxadsKzwuGIqMpjmlAjg+71k+YJHW14OwcJiJ6avng7z
Aiy+wkjQu779M7KLZHdCBsrNp5tMNsIEv1xsN/246EsKMKFccUBx22K5+8IF6qwO
ZrKqv7csBObAjtZNUTNNOwoJw/IuEHvsA+9iQUwepG9koibH1YshKYn4iyiQtd+U
ImaeDvNjUYyiINR1SpWGtWkdjvDLnMu0mcdvUoOVi79gYnUkiCTy78vQFw89oKX7
B+xkGHYyXbkI5xcAJIEBTWIUyknINSSdLbSyNDNJ5EwPcZ8uCgS7Dyc50vfkXsvh
6MIK7aEdPVYbozR+t+B2ICYkxL/HE/3rginz8DoPBFC7/xnKcrUnCIJzAcBBChjZ
E7lBqDljSlkaQ439idp1ldvSTv1c0IQxJsu4yemFNhFVryWH14tbud2nDFZ8trfk
Pyk8m2j03r6/VqliuRC5rQkNSrpxI8p/ilaSt+vo5CX4+lHcFDZHlyojW5abPPVm
udOFLa+oXpp42dojgD+R7wXgwCNcHAMU1AEKC1dlKEjQn/yglOv05RQDgfZT32Fa
XiBOehRPdAbTVAKYVWAQ
=buHH
-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/e1xz69w-0004u5...@franck.debian.org



Accepted apt-transport-s3 1.1.0-2 (source all) into unstable, unstable

2014-12-11 Thread kuLa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 14 Aug 2014 08:43:59 +0100
Source: apt-transport-s3
Binary: apt-transport-s3
Architecture: source all
Version: 1.1.0-2
Distribution: unstable
Urgency: low
Maintainer: Marcin Kulisz (kuLa) deb...@kulisz.net
Changed-By: Marcin Kulisz (kuLa) deb...@kulisz.net
Description:
 apt-transport-s3 - APT transport for privately held AWS S3 repositories
Closes: 756022
Changes:
 apt-transport-s3 (1.1.0-2) unstable; urgency=low
 .
   * Initial release (Closes: #756022)
Checksums-Sha1:
 2dad52d2fa46bd1063a37e835b13fdb279229a2e 1368 apt-transport-s3_1.1.0-2.dsc
 dffa3d9a20622e77f3af310765f0793ece5f0421 13405 
apt-transport-s3_1.1.0.orig.tar.gz
 e5cf3f2a736e94aee063e7f827e5340d87af34be 3184 
apt-transport-s3_1.1.0-2.debian.tar.xz
 813392d66d4ec5f320cec5406c61dc4bf06b5127 5336 apt-transport-s3_1.1.0-2_all.deb
Checksums-Sha256:
 4b6cda829ebf9cdadc88a0a7d322a9ac3cc7bbe2355ffe5339d567e319d18fe9 1368 
apt-transport-s3_1.1.0-2.dsc
 e31e86244b75cb2294acdf781ccd5869c9d5e24d8ac996c9ac041385099eb8a5 13405 
apt-transport-s3_1.1.0.orig.tar.gz
 3ce949039408ab82f125028f7c04a829e7d33015bdaa57707853628a58efe542 3184 
apt-transport-s3_1.1.0-2.debian.tar.xz
 2b541d8d10e69a3e1e1f3ce07a042228f24f93af5b26098b194e7cbea213a2ec 5336 
apt-transport-s3_1.1.0-2_all.deb
Files:
 c2ff86ffa40ed6d51711309ab15bb4c1 1368 admin optional 
apt-transport-s3_1.1.0-2.dsc
 1df088b4803c9dc85a17926d695d1c92 13405 admin optional 
apt-transport-s3_1.1.0.orig.tar.gz
 3b3a56b0552a3157393247b9594c9d88 3184 admin optional 
apt-transport-s3_1.1.0-2.debian.tar.xz
 6d7716adaa5d73dc3eaf83998d540b97 5336 admin optional 
apt-transport-s3_1.1.0-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1
Comment: GPGTools - https://gpgtools.org

iEYEARECAAYFAlSIObUACgkQDeh5nqfWrnl3kQCg45uAbJGLlT0ml414gMJPCuE6
YcQAn1lROw7b0M/Y2DAgHoVNEXD1Kjko
=55lc
-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/e1xz69w-0004ux...@franck.debian.org



Accepted willie 4.5.1-2 (source all) into unstable, unstable

2014-12-11 Thread Antoine Beaupré
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 09 Dec 2014 00:06:48 -0500
Source: willie
Binary: willie
Architecture: source all
Version: 4.5.1-2
Distribution: unstable
Urgency: medium
Maintainer: Antoine Beaupré anar...@debian.org
Changed-By: Antoine Beaupré anar...@debian.org
Description:
 willie - simple, lightweight, open source, easy-to-use IRC utility bot
Closes: 771403
Changes:
 willie (4.5.1-2) unstable; urgency=medium
 .
   * switch to python3
   * remove comments
   * create the watchfile
   * remove hidden directory in dirs
   * remove README.source template
   * make git-dch work
   * remove geoip recommends: willie needs pygeoip, which is different
 from GeoIP, the C extension
 .
 willie (4.5.1-1) unstable; urgency=low
 .
   * Initial release (Closes: #771403)
Checksums-Sha1:
 b0bcefacd8415b045b19ef04ee74c8dbdaaafc84 1862 willie_4.5.1-2.dsc
 73ba304d9f7a2ac12a18f5cc0953ad5b36ed 5084 willie_4.5.1-2.debian.tar.xz
 df5a541075333432c06c8e661c0af252a4cd494a 100392 willie_4.5.1-2_all.deb
Checksums-Sha256:
 9ab59887649de6489e70f7983f9d63c10b94f6c42b4ad7022ed4329a6ad9ea8d 1862 
willie_4.5.1-2.dsc
 3638d083d50ee554ee50b823e6903d011ce777b7fe7101b9f0146885563c8d70 5084 
willie_4.5.1-2.debian.tar.xz
 34469a72e83bd9a4c6a062de08d66ea67fafd98690c1d97983bafd320465a3b2 100392 
willie_4.5.1-2_all.deb
Files:
 4f09cc8640f8f7e16c686068adbdc13f 1862 net optional willie_4.5.1-2.dsc
 af24a50c195574a64e6d90ab29992721 5084 net optional willie_4.5.1-2.debian.tar.xz
 d50bfed4fed163b1aaa2ee9c52c54b4a 100392 net optional willie_4.5.1-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUhpjPAAoJEHkhUlJ7dZIepxkQAK5+N/IPdoRbNSW/DVFwS84Z
1yUn4LRzM6RJ9jmceAz+9TY6RvoxogBvx8f1iW7k9qipSoiubbigfdQFoTYmfzIw
VbkZQcc530FU487M8XdoEfMs0SkTKonYZhcS1fK6oum1ORV/ZzXRun9+wBJUAb6D
lOHsMEmt7ShgrIYG1ydrKK2r3pFgpkSjfyvRQLYxy4pIHcHqlLePVc4qMQAo74jx
NJ5unL1cu6scMtwAL15zqFc6A/EKrxy4fYed5yzpk94G4oNex5TgGwONjAjpaCgb
Aux+ceUA4irYWvCRhXa5T1dPqrvQTJwfn3Qd3bnP3OloYytzuQU9yqORVop9eChP
Fqmf3q3r8FmkY6VxZmeo9TIOW9Cq4MzoHPKXZI9Mfh6+m1daKnvFrd4d6Gwz81cP
pYzd+3gaaC9LDWij0kiGrSJFE9fg1VE2HRESt3C9unMFHQ+TYmXeOE3NurqSqUO8
LGUZ/IgBojx3Ewtw8VOllMxjz/GMl/CavRVxMUFuRlLmIDJymLJPLas1JzKNx4Y7
D8aZNjPPxtSFEKkUBcoyHPBjAnXHN6GQ9sAAbYprIUNtkIx3lXQeaqnVa+4t85c9
tptNKwZrk9PHNrgxsjD7gdhW3Z+M4SwqE1z+y9R0BPijKvCC9xjwJEEjVllIKjj8
fPN01vM3p5rJX5GJxUNS
=+9K7
-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/e1xz6a3-0004xm...@franck.debian.org



Accepted fest-assert 2.0~M10-1 (source all) into unstable, unstable

2014-12-11 Thread Tim Potter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 19 Nov 2014 14:14:03 +0100
Source: fest-assert
Binary: libfest-assert-java libfest-assert-java-doc
Architecture: source all
Version: 2.0~M10-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Tim Potter t...@hp.com
Description:
 libfest-assert-java - Java library that provides a fluent interface for 
writing asserti
 libfest-assert-java-doc - Documentation for libfest-assert-java
Closes: 769077
Changes:
 fest-assert (2.0~M10-1) unstable; urgency=low
 .
   * Initial release (Closes: #769077)
Checksums-Sha1:
 6b2e547fa013aaa8d67fdf213d88cbcd7e945701 2176 fest-assert_2.0~M10-1.dsc
 b24ea977e89e9053946e2685e01e399e08b13336 337989 fest-assert_2.0~M10.orig.tar.gz
 8124458b35fb613348dd3051cc84b62518384d3e 2900 
fest-assert_2.0~M10-1.debian.tar.xz
 4f470ab52d69b14bd82cde5c6c95e0447945c63a 233612 
libfest-assert-java_2.0~M10-1_all.deb
 908277bb94f1bdca4fa5ba3862cf6787122c6909 1478734 
libfest-assert-java-doc_2.0~M10-1_all.deb
Checksums-Sha256:
 9c87367baabd0de523e0719cf02266d07de49d6bcb69d53e2312116dfc4b231a 2176 
fest-assert_2.0~M10-1.dsc
 e0e3b1e1bb9243312c8852c9c79269485b727d2fed98f0c5cc4f7c260af2e925 337989 
fest-assert_2.0~M10.orig.tar.gz
 86f75152142f91a3b663115fb6948257876d2deb353ce423d5697ebe85733187 2900 
fest-assert_2.0~M10-1.debian.tar.xz
 3d6db776fcd691dedd3f54bcf872ca35dcdf854de2a5300c685fe7d0e9aeafab 233612 
libfest-assert-java_2.0~M10-1_all.deb
 27f9448a6311c5ebc1bc8865953f09967ab4d5ac69a3aa976e2c2905f90ede16 1478734 
libfest-assert-java-doc_2.0~M10-1_all.deb
Files:
 36437bc938928f857513e75baeddcafa 2176 java optional fest-assert_2.0~M10-1.dsc
 ce47c5ea3b83e53e0079fa1782edf9cd 337989 java optional 
fest-assert_2.0~M10.orig.tar.gz
 4369223471f6be9c6a96806443fa293e 2900 java optional 
fest-assert_2.0~M10-1.debian.tar.xz
 a9925ea1ef30d8cd141bbcc7c6df276c 233612 java optional 
libfest-assert-java_2.0~M10-1_all.deb
 4078f22c627281f61c166130d0b6a210 1478734 doc optional 
libfest-assert-java-doc_2.0~M10-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUbKwKAAoJEPUTxBnkudCscOkP/087QP1fOlavwKvhRem01F1r
X8ll+Y7O/g903WqD8MeDWpQusRgshFhwD7s6lrXpHLSCRsH1IRfmblEZvSvFIxxt
JEOqMhsDiPBy718J2LCmajSNN7BQhMAuTvls7rwy94IjKSc6T1A9a1P9wZKqflWH
T1oeU6rDRzBMbRi0yRD6AONo/P/QpMzgcMdFlrEC5Uuc4d0f+HYRxJRgsiP5UaOV
/z/smji/G6cb7SimMEHZgIjJieOuV6LRB6yJudTu/NvGmGo7BkRwvdrPOOrSCHtK
DvwO1mRZPQ9zNmoAU9tiWcYeU2rGo81W9wr7K8lfdiR9mdSRmsi5rIfbebCgDRxB
sBWm9uFR199yHe1HMCcoXW51Mjd/FA0wevG3sshBydhOPU3yviEuHzq771SUYcKc
hPDP92mEqI2KV8tA8cdoXCmE4g9PESorLMfNjE8Cu6A67TMkqwJ1SBIo0tnMkXdM
FZJ39pBk0dQL+he5eIwcGry1prTEPuHhWBgOMhevagKVhOQYJ3mqi30giowtsI4b
13fQeNNi3VX9ChDOIxPmKkcfH/KOOxFgAZN4hT7AioVO0hCV8YT1kTyto/hpAWgc
/qRS84l9KUuVr6WxBR68KXEIxY7z1obyO06/nveSIntZQKjZvA1yi92BnBqWRBqr
Hjk5mNvQH5dGjJMuAgUp
=mePm
-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/e1xz69y-0004vl...@franck.debian.org



Accepted nfstrace 0.3.0-1 (source i386) into unstable, unstable

2014-12-11 Thread Andrew Shadura
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 18 Nov 2014 15:39:40 +0100
Source: nfstrace
Binary: nfstrace
Architecture: source i386
Version: 0.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Andrew Shadura andre...@debian.org
Changed-By: Andrew Shadura andre...@debian.org
Description:
 nfstrace   - NFS tracing/monitoring/capturing/analyzing tool
Closes: 769397
Changes:
 nfstrace (0.3.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #769397).
Checksums-Sha1:
 34c6fae87693dbd4761a660a31ba16f428c66818 1779 nfstrace_0.3.0-1.dsc
 ffac4c81f76f36d6f4483962595866294ee794d5 20237007 nfstrace_0.3.0.orig.tar.gz
 56b65321e3d25031d072011c55eb2fdbd22addc1 5688 nfstrace_0.3.0-1.debian.tar.xz
 bb9117ce59b1e31930124621dd83ab4e2bef0109 371542 nfstrace_0.3.0-1_i386.deb
Checksums-Sha256:
 bf86714ec97ba195d4d814e12f010195091af60cca291fa5e03bd062b21a06c7 1779 
nfstrace_0.3.0-1.dsc
 ad6e07a46fa62c16c564bf07ec8f184ce37da471f8f6bafbc0783a0bc7160e26 20237007 
nfstrace_0.3.0.orig.tar.gz
 3c2e472fe22982e2d522116fcf4c807b112ae3676a16ad506b93da5e0bd3fd43 5688 
nfstrace_0.3.0-1.debian.tar.xz
 ccb01292fabfd4600e5e3940413dfc5abe8b2d67cbe1e807d46c9a2304dfc56b 371542 
nfstrace_0.3.0-1_i386.deb
Files:
 26b17a61b509b4f11d63ec07ad605f1b 1779 net optional nfstrace_0.3.0-1.dsc
 37e04056738c410ab2471443c7bddde1 20237007 net optional 
nfstrace_0.3.0.orig.tar.gz
 2f79ffb2a9b966552a4e166afd32acdb 5688 net optional 
nfstrace_0.3.0-1.debian.tar.xz
 75dfecafbe343b38366e58b60c6c6bf4 371542 net optional nfstrace_0.3.0-1_i386.deb

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

iQIcBAEBCAAGBQJUa2fCAAoJEG6k0jEaLSaNDDYQAMJmkeWO/jRBvummSGc8j+0z
1f/++tFMZHYG0wuRv7zzAQUUCzCmHcBBVjjHF4yy9eUqPI25g82ONBc93JahQI+1
vXqJIxpUwSWDazA//zSlkJpxUQfug/N5Vh2dwlRVk78BsVcmo7yA38CRR48IhIdS
IBeRSBLbtOVPkuTn7XCIaSSdyA5JOrXbraTmMCnr3Fr5E5Vy4w0CNO6IKCqIyFob
+2Om5dqUpAafg6Y4ElsJHm500DB9LOruYVJC95/AC1D/a20Kn3EsZ6TC8fmYP/A5
X1+BjRb+wUWmSQkN3HAeBSlkjztp/hn7uS1uQbDOfdEyxsTq8/RJQbTv9jjS0xyP
oqsizlpKhIdbTJzlkw0hZDSZ7D4sCDrL5jpex0jjkC6bsW/KRqbZLNwHLHEsbpa5
jOeZpAMboevYtfeeOyjapQStCxTR8710R1pXRowh/eStKNVb75EgwYbMI80Vxkd3
J/CAy83lytA7Rpx5Isxflbt2XSu4JRTtA5qwniOxJKK4/oGq/4xDR8ujN53WTO3B
S4cinbRslmjChxTyEH2NWM/IUwEL5JwwQIUsWKpoOhP2ffC1ImYNUIIP95amzdLS
XStSUhf4o77gyRN/swQ4SQbYIbCE8Mvj/Hi1tLN1UDzgs3acHL3lcoMPxRRK0FGL
/sMP82VFJMfwx6+q8ZDh
=3ly5
-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/e1xz6a2-0004x8...@franck.debian.org



Accepted jdcal 1.0-1 (source all) into unstable, unstable

2014-12-11 Thread Yaroslav Halchenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 10 Dec 2014 00:24:56 -0500
Source: jdcal
Binary: python-jdcal python3-jdcal
Architecture: source all
Version: 1.0-1
Distribution: unstable
Urgency: low
Maintainer: Yaroslav Halchenko deb...@onerussian.com
Changed-By: Yaroslav Halchenko deb...@onerussian.com
Description:
 python-jdcal - Julian dates from proleptic Gregorian and Julian calendars
 python3-jdcal - Julian dates from proleptic Gregorian and Julian calendars
Closes: 772689
Changes:
 jdcal (1.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #772689)
Checksums-Sha1:
 fe7569325b09ba000876522faa66b1c17d352b85 1855 jdcal_1.0-1.dsc
 4b5cb8eca5e8e907ec3bcd3880082a1d93065aab 5211 jdcal_1.0.orig.tar.gz
 873fbdeca4ad41f09644ad23db8a9590ae40b1ab 2172 jdcal_1.0-1.debian.tar.xz
 849ff453b54d486b347617a84c68483b4dfd3358 7536 python-jdcal_1.0-1_all.deb
 102df858c41c5d51455a6268575efb0cedc311e1 7338 python3-jdcal_1.0-1_all.deb
Checksums-Sha256:
 81197303754e6bea75148cd74d203bb4c39ff26c6d75bd253f5c4107d101cebe 1855 
jdcal_1.0-1.dsc
 5cd68fdb0fbf2176defdc5640488c1c711ab2a6c069933bbd20e9f5fc6b1db7e 5211 
jdcal_1.0.orig.tar.gz
 650887bfbce95aa7f6d68c86d665ac6f50d7f65089e42ab3bfeaba5e6f0d3da0 2172 
jdcal_1.0-1.debian.tar.xz
 ca24870875b2689842d7a38f7cd024ccaea006dbc12ba369be3a8f00decbea99 7536 
python-jdcal_1.0-1_all.deb
 6b6c25d7aa988b43dd3883c4175f57b9dc98960530b6655f8dc5d57fbcef4e44 7338 
python3-jdcal_1.0-1_all.deb
Files:
 382cb6db591e37a022a6ed1e78ef035f 1855 python optional jdcal_1.0-1.dsc
 5867f133301a941abd5cbe89dfed0367 5211 python optional jdcal_1.0.orig.tar.gz
 efc7c812d1872abdc336df6b02034d50 2172 python optional jdcal_1.0-1.debian.tar.xz
 645269f53968bda9c57b0873567cff44 7536 python optional 
python-jdcal_1.0-1_all.deb
 0a101c2aa764b301f495a5faa5764a8e 7338 python optional 
python3-jdcal_1.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUiGXoAAoJEKLeI1Bi2jP6lRIP/3pt5nJkIca6DNuyBxE3iS0l
59TYr4zxUtLlikSqmVMOHEsBc5dxxwOvtqSjBLKHahmnKLQUpACWJo6vSPP7nTVG
4M8jYQ8gLX+Z2D5CDZcLAnXuL4CkPKIed3xbAMBlzkFl6hmBS9AqjqcbGTV/Cefs
KCOnH/rfiF3xNDSWEz9VJyBd2aVjkMCHs4No7iQydGvTnHns+KvXXSSOjLYTdBaW
o9H3CsPZay0eO34N6a97KZvGSCq2x/XgklWsYjbVtTfw+USvqd3t96symz51/oIp
AjxWRbCdjcT6Q1A4XjVCHqh81nYIoFqJBhlzd4AANQ6wX7zemqTfN6FMMDlb9Ys0
/H2XiwnAaW5xglwQSwhvf//yZBPVgbjfKDM/Dqtk2WwhvfTfQWKeSLS2MNRbPUxa
yyeEwHSZ4a8LzuAmbucQiJXjbtPrCu4Be3JxN7XXxbRMylfGL52eJs0aFtV69G8r
BNqPzcD4GTuqYioa34i0T7Hj9Q+jfhZhmb7yLCV/aFH7RU6tkUqhviNJEsdLpbiy
mW+YOY6xgE2citFUtd5OHVzKw7RWp9h/SG/ak+RRGkCpSIExxoEcV/9OHzT6A2S9
tBZoiFB7SE3OmidRsBmPC9cPCKbWpXad3yF2q+DJuiZtAXpqb5emqqxhSel08b4x
nb+GBWsq+kcdnjpwXlUs
=WMdG
-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/e1xz6a0-0004wm...@franck.debian.org



Accepted vinetto 1:0.07-1 (source all) into experimental

2014-12-11 Thread Joao Eriberto Mota Filho
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 08 Dec 2014 23:21:24 -0200
Source: vinetto
Binary: vinetto
Architecture: source all
Version: 1:0.07-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Forensics forensics-de...@lists.alioth.debian.org
Changed-By: Joao Eriberto Mota Filho eribe...@debian.org
Description:
 vinetto- forensics tool to examine Thumbs.db files
Closes: 470862 569796
Changes:
 vinetto (1:0.07-1) experimental; urgency=medium
 .
   * New maintainer and co-maintainer. Thanks a lot to Danny van der Meeren
   da...@illogic.nl, the initial maintainer of this package.
   * New upstream release. (Closes: #569796)
   * Using epoch to fix the version of the program in Debian.
   * Migrations:
   - debian/copyright to 1.0 format.
   - debian/rules to new (reduced) format.
   - DH level to 9.
   - DebSrc to 3.0 format.
   - Standards-Version to 3.9.6.
   * Manpage:
   - debian/manpage/: created to stuff the manpage files.
   - debian/manpages: created to install the manpage.
   - debian/vinetto.1: moved to debian/manpage/vinetto.1.old.
   - The original manpage was improved and adapted to use the
 genallman.sh script.
   * debian/control:
   - Added Homepage field.
   - Added ${misc:Depends} dependency.
   - Added python-pil as dependency. (Closes: #470862)
   - Added Vcs-* fields.
   - Added X-Python-Version field.
   - Removed leading article from short description.
   - Removed version of the python in Build-Depends field.
   - Replaced python-support to dh-python.
   - Some adjustments in long description.
   * debian/copyright: updated upstream and packaging years.
   * debian/README.Debian: added to say about some URLs that can be used as
   reference to users.
   * debian/watch: created.
Checksums-Sha1:
 51d4966c345d452ffb97bae2e8ca3216a424d4ac 1886 vinetto_0.07-1.dsc
 5f53a4ce6985a7d6a387c09d79038124d88b796e 15800 vinetto_0.07.orig.tar.gz
 2df6ab2f6c9c581ef85693d6bda83d1548388d27 4956 vinetto_0.07-1.debian.tar.xz
 bc2586df5cddf33f3a2f8b7674dedc2945a1748e 13760 vinetto_0.07-1_all.deb
Checksums-Sha256:
 548eede32e5c4c7de3dd9952223942253d4d73dde5fa4acbc8b736af52b37953 1886 
vinetto_0.07-1.dsc
 1dccf3385e5654d4cb3bbf6a757e3639b142249f8e4badbdc7f8f2388a1f6367 15800 
vinetto_0.07.orig.tar.gz
 b6fd853a8f5d4405ffc97b0ef9d5e08356ac0063b4cca93526938238f43126cf 4956 
vinetto_0.07-1.debian.tar.xz
 eb137c98bd2cae9fc9c04e273e75d99f690b7a8fb9f9d56d4d662a6d53901fb4 13760 
vinetto_0.07-1_all.deb
Files:
 ad0b1e75596d26e42e54e5b687b7aaa9 1886 utils optional vinetto_0.07-1.dsc
 3bfab4eaacde52a66a6829dddc7511cc 15800 utils optional vinetto_0.07.orig.tar.gz
 264e66ed0d8a5ca2ee292166c1540401 4956 utils optional 
vinetto_0.07-1.debian.tar.xz
 bd99034c44f4bf61b6fd6061f4dc37dd 13760 utils optional vinetto_0.07-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUicNpAAoJEN5juccE6+nv0JEP/0PSt6TDq/H9Pt25O0Nf7TI1
Ufw4UVUqboGhNt9d12yXLISDKfODDMkyzSuw+yO8owukj/a+VSSGeHgKOQz5RHru
9x3OGdMNmHTWuxZNn95XthZil5Q0y21qYC0j5E+7z8gPfYtXTdRKcOyUIe3RFV98
JTkS5L5HK3f51+46kJzt5DKdiFD+FWfwhVGIYjId/TymnvGK5axhQSQriOVu0NN9
HSOvkatbQ7GgaYxrlJLtVO6kK1d1CBhLAaqD4VJJE9WXKbSzR+PT4mnDh9SxwhvH
uqL4vnMaO9RvlI3H/nq5l8l0i8VWsbhynTKZanaBMIzwGAYG+ohtH4HH9Ngo+aYg
tXLXcN4UCTcyoXjWlB+fhg2CIgweP5ZLjFLs33gfKaD5l+LLEOW8NAVHdb56FsO/
CYr8LJYj9sNiSXdYyQOJpd9DNKqfl2HnqdDOSYb+BlcjltAOSWgDJ+NS/HOmIpyJ
SMS/QXijuhMGAM47oeAzEkhx8D5XrD4/uayRNNGsSJXG7e4eyd/gX4LDJhXTheGo
ViBzgPLH1LsaUSNGU+UcZz9JneVReZ/X1OHvwXUYsQlvgMq5agAupXe1xJo0jmQX
q62MY+9GeumavpdKU2MMgokU9HVab4HJFYZ7sq/uDaSxF/CGX6pEb9TtWu+tMbEF
tXB4n8w7IN+vB5tNGsiT
=sNbJ
-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/e1xz6lc-g2...@franck.debian.org



Accepted systemd 217-4 (source amd64) into experimental

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

Format: 1.8
Date: Thu, 11 Dec 2014 18:06:54 +0200
Source: systemd
Binary: systemd systemd-sysv libpam-systemd libsystemd0 libsystemd-dev 
libsystemd-login0 libsystemd-login-dev libsystemd-daemon0 libsystemd-daemon-dev 
libsystemd-journal0 libsystemd-journal-dev libsystemd-id128-0 
libsystemd-id128-dev udev libudev1 libudev-dev udev-udeb libudev1-udeb 
libgudev-1.0-0 gir1.2-gudev-1.0 libgudev-1.0-dev python3-systemd systemd-dbg
Architecture: source amd64
Version: 217-4
Distribution: experimental
Urgency: medium
Maintainer: Debian systemd Maintainers 
pkg-systemd-maintain...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description:
 gir1.2-gudev-1.0 - libgudev-1.0 introspection data
 libgudev-1.0-0 - GObject-based wrapper library for libudev
 libgudev-1.0-dev - libgudev-1.0 development files
 libpam-systemd - system and service manager - PAM module
 libsystemd-daemon-dev - systemd utility library (transitional package)
 libsystemd-daemon0 - systemd utility library (deprecated)
 libsystemd-dev - systemd utility library - development files
 libsystemd-id128-0 - systemd 128 bit ID utility library (deprecated)
 libsystemd-id128-dev - systemd 128 bit ID utility library (transitional 
package)
 libsystemd-journal-dev - systemd journal utility library (transitional package)
 libsystemd-journal0 - systemd journal utility library (deprecated)
 libsystemd-login-dev - systemd login utility library (transitional package)
 libsystemd-login0 - systemd login utility library (deprecated)
 libsystemd0 - systemd utility library
 libudev-dev - libudev development files
 libudev1   - libudev shared library
 libudev1-udeb - libudev shared library (udeb)
 python3-systemd - Python 3 bindings for systemd
 systemd- system and service manager
 systemd-dbg - system and service manager (debug symbols)
 systemd-sysv - system and service manager - SysV links
 udev   - /dev/ and hotplug management daemon
 udev-udeb  - /dev/ and hotplug management daemon (udeb)
Closes: 771122
Changes:
 systemd (217-4) experimental; urgency=medium
 .
   [ Martin Pitt ]
   * Reinstate a debian/extra/rules/50-firmware.rules which immediately tells
 the kernel that userspace firmware loading failed. Otherwise it tries for a
 minute to call the userspace helper (if CONFIG_FW_LOADER_USER_HELPER is
 enabled) in vain, which causes long delays with devices which have a range
 of possible firmware versions. (LP: #1398458)
   * debian/systemd.postinst: Don't always restart journald, as this currently
 can't be done without losing the current journal and breaking attached
 processes. So only restart it from upgrades  215-3 (where the socket
 location got moved) as an one-time upgrade path from wheezy.
 (Closes: #771122)
   * Revert Modify insserv generator to mask sysvinit-only display managers.
 This is still under dispute, a bit risky, and might get a different
 implementation. Also, nodm really needs to be fixed properly, working
 around it is both too risky and also too hard to get right.
 .
   [ Didier Roche ]
   * Add display managers autopkgtests.
   * Reset display-manager symlink to match /e/X/d-d-m even if
 display-manager.service was removed. Adapt the autopkgtests for it.
 (LP: #1400680)
Checksums-Sha1:
 2f0bea4bf5f5d40ab37c1fb54a5884c962d8a4ed 4103 systemd_217-4.dsc
 1cbdc2cc56a4ec057ce51cceab4039b3d8e6fcdf 139888 systemd_217-4.debian.tar.xz
 0898cb1cd090ce0eb1a393c8ff2ead9e0db6a51c 2899228 systemd_217-4_amd64.deb
 eff161823ceafaec9451483e0fb1a77342891dcf 31604 systemd-sysv_217-4_amd64.deb
 52e220d796e718f72eece907d5f1f5859e2273ac 122080 libpam-systemd_217-4_amd64.deb
 b551b7bab192e000d0a2d3e25884d0409d9dfbe4 85660 libsystemd0_217-4_amd64.deb
 f806bf0ea79de80da04111d6092899387217f33d 92220 libsystemd-dev_217-4_amd64.deb
 d452ff423edd3708b6d40585f4fd4582a3558763 44904 
libsystemd-login0_217-4_amd64.deb
 e3ef942cba2c371b40f4fd04e8e546c4f2cb1ed3 27210 
libsystemd-login-dev_217-4_amd64.deb
 d565e4c0aae7ed41d262a3210e2f0bad979fe855 33842 
libsystemd-daemon0_217-4_amd64.deb
 6a7bec2740a47bad0e002d8529326ea3ee830406 27232 
libsystemd-daemon-dev_217-4_amd64.deb
 b6fb83e039328d4040461aeabb219b9c5ed6c280 70138 
libsystemd-journal0_217-4_amd64.deb
 b88abc3b117fd14c7dc9e84df61181b271119f48 27208 
libsystemd-journal-dev_217-4_amd64.deb
 3ce63da4cc78fafd26c3435e8c125088c7751932 32798 
libsystemd-id128-0_217-4_amd64.deb
 d3123533630a429961a5d46c90821ecfa57ed463 27204 
libsystemd-id128-dev_217-4_amd64.deb
 a3bb9dbff2e567f16e7e490ec1e6db353ceb68a2 896600 udev_217-4_amd64.deb
 9e27a1c8dafd743c007a712c43639da52624f386 52148 libudev1_217-4_amd64.deb
 ec2350fff1d479516d0827fa2385ad6afaaf3d4f 23080 libudev-dev_217-4_amd64.deb
 8b3550ecf7dfc82830960c55be97afae9e17bbcc 211130 udev-udeb_217-4_amd64.udeb
 f022293f028fcfa4cd4ef74a09bfe90b04943734 25178 libudev1-udeb_217-4_amd64.udeb
 34e1273b63e433126797ea395010b26babf78985 37550 

Accepted t1utils 1.38-2 (source amd64) into unstable

2014-12-11 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 17:58:11 +0100
Source: t1utils
Binary: t1utils
Architecture: source amd64
Version: 1.38-2
Distribution: unstable
Urgency: medium
Maintainer: Niels Thykier ni...@thykier.net
Changed-By: Niels Thykier ni...@thykier.net
Description:
 t1utils- Collection of simple Type 1 font manipulation programs
Closes: 772774
Changes:
 t1utils (1.38-2) unstable; urgency=medium
 .
   * Apply patch to avoid infinite loop on some fonts files
 in t1disasm.  Thanks to Jakub Wilk for reporting and the
 American fuzzy lop tool for creating the crafted font
 file.  (Closes: #772774)
Checksums-Sha1:
 ce6280aff6d3c24eab627f896be612a07c06bf22 1707 t1utils_1.38-2.dsc
 0516b792f839bd82a67efb06b3c6e59ee33becf3 6288 t1utils_1.38-2.debian.tar.xz
 537cd9fa20d5d465690441d146586931bfe68637 129238 t1utils_1.38-2_amd64.deb
Checksums-Sha256:
 b9d6f73d28baafeb3cb86c98cac828b60dd66b6246cc422667fd40eaed57 1707 
t1utils_1.38-2.dsc
 09367d1167a02b173eaf783a729b9147f32e3151112a32e6348c21a1def598dc 6288 
t1utils_1.38-2.debian.tar.xz
 7e43ac05ab8ec181b2f634386b3a69a85c974316b1fafee3f09dd351f42d5db7 129238 
t1utils_1.38-2_amd64.deb
Files:
 1fff559d8d5d0b3f174e454214911ead 1707 text optional t1utils_1.38-2.dsc
 dbdf84fe983262e1222c360db60541ca 6288 text optional 
t1utils_1.38-2.debian.tar.xz
 29c10a4f9af4d914cff94c1dddb07262 129238 text optional t1utils_1.38-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUic2fAAoJEAVLu599gGRCICMP/2z2L8MBToyHyhxST3TBfsnS
qUFODzTMtrw+tRB6gyiZiSjAAX4cSFXyXddF4lgHLPEWLpfCTbIF43IY6cy+GQSm
jfTXmpG2RmSqShk1hd+c4kNjtsnH+4LQKMRY4c76RSCIYHeRdQrBXwN1qlAuWWxq
5kowhoKuYkf5AIFsSr54e0mPwEw0EboHbNYlWlZMnKrOExxVgh/bBLv7LmzNWeze
XlrYRz1wyZh399fBtF3fMNr3SmqvnNSxvD4T5j6quOYFhglvZBJ2sTxeea1TV9ve
xqqz7vEuhosLBzS57WD+4uanGATkJnRk/CZMYLpyyXwYcYC8rINpj6IG6mil1TB8
PkEKUQeVle3Spey/cUEImGH8zigK7df4GO1SJ9ftbKTat+K4m7GLzn7xOh/ZirFH
E3Yr7SbkK/Br7A05vk2ICJaV30gAWgZ2LyBv5nAzOVL8N33e/wCCEXKJJll62M46
ckWWyL8CnCFqnudR+QhV+l/ooJDFGogNbcQfFZP/xxxEvywq/sYh3+9K3n4BifO7
c06gKSbavUnJTTBnJf+jAbBKqje4uSDIqSz0Yrfa407urrjVkA44XZw94YyKolw0
OC9NCbbzorZJa2c79IuFS7YU+BR8Ja2jb5S3ccbEsbnTNaQSUyNySkqxmNEQLmbY
PBgnuRsjppO6KEkhav0w
=+GPy
-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/e1xz7os-0005nh...@franck.debian.org



Accepted afl 0.89b-1 (source) into experimental

2014-12-11 Thread Jakub Wilk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 18:09:45 +0100
Source: afl
Binary: afl
Architecture: source
Version: 0.89b-1
Distribution: experimental
Urgency: low
Maintainer: Jakub Wilk jw...@debian.org
Changed-By: Jakub Wilk jw...@debian.org
Description:
 afl- instrumentation-driven fuzzer for binary formats
Changes:
 afl (0.89b-1) experimental; urgency=low
 .
   * New upstream release.
   * Remove commented line from debian/rules.
   * Update debian/copyright:
 + Add the Upstream-Contact field.
 + Update the Source field.
   * Update Lintian overrides.
Checksums-Sha1:
 d7aa9ad82783adfc5b5c283a314df28959fc345c 1708 afl_0.89b-1.dsc
 a004f80489b94882b202b907fd58471bca0859fa 696971 afl_0.89b.orig.tar.gz
 90c028b337ade704048941a550db1534ceb25080 3204 afl_0.89b-1.debian.tar.gz
Checksums-Sha256:
 3a3d930b781162454054b5822da3a21ef3e3d37fedfd4dfde5023749e3f5f868 1708 
afl_0.89b-1.dsc
 495b265b4a7e45b793cfe1854599a92d2b30a9e6a27b97a40a05986fa372fd3b 696971 
afl_0.89b.orig.tar.gz
 797976ac0f1f816a38d0f2698afe8124dae8428bd69b2930ed698ac1b0a3a906 3204 
afl_0.89b-1.debian.tar.gz
Files:
 4e657e2e82f690790499e60845bfdbee 1708 devel optional afl_0.89b-1.dsc
 2d6d565ee1b3e6b2bedad0b98ee6e8a0 696971 devel optional afl_0.89b.orig.tar.gz
 ab9f270840ddaf93489f6cdf6c61ca37 3204 devel optional afl_0.89b-1.debian.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUidXjAAoJEC1Os6YBVHX1I2oQAKdorlXkXb0+uWSUjckocvp1
vMjCYw1nmt5Op1wxbT2OeY2/G5VyjIw2cpM3Ze0Kxc5x0JXhBjGoj1peF2+xh+2I
H27yYCvPkVQmvnXaqqh/tPsSx9gwSBG4KjTzt3GJfzZd51dp41xR6jlaDobhj9Ee
Ld/PFvkKpu2I4HrMY0KrJoSVdxAFb15T4Lvm+SoZflD/9nVz0qdEHufexq2t7scF
2hUE9ocP04KO/BTDOyaK3DgnEct+AP991kQHjFCsQdKUVp4Q56tnQUeAKLtHsRqD
r5tgPjdEQOr1CsK9Mhzrw3Foevtdci//gfsiXm9UO8ur1jfdJYYca0mv+eZV8CNk
d4pGmnPhh3ZR5IE/X1itkvqHCucYCJzjBbuuf/hggFN/KGN4zniX6/xzBECu+tRG
Nsp9Uolcy8M7PLyiSrb1rpjqReYWsQN/nPvEkVniAXc8FOzD+e2KBaSMCF17MJsk
cbi8rcetVF18LFpaOpM8WvvQZYGcmtjaUMZ4nY09gujq+dSWRo6hxD2ORKxYQDWf
FJuSJuGl8MAY+BoPTKxD9e8350SrX5XUsTuIcIz5z4safmxv73xtScex/z0P1CYs
/jzCv8IT4kO95Wm44Kxn+Ek4OQ02ICRnj80BprIFqoyDuH+OM6zRyAO9xNDn10tU
DsuZrvzq9LO2ZPLcg01T
=CHal
-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/e1xz7rh-0001cu...@franck.debian.org



Accepted t1utils 1.38-3 (source amd64) into unstable

2014-12-11 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 18:43:27 +0100
Source: t1utils
Binary: t1utils
Architecture: source amd64
Version: 1.38-3
Distribution: unstable
Urgency: medium
Maintainer: Niels Thykier ni...@thykier.net
Changed-By: Niels Thykier ni...@thykier.net
Description:
 t1utils- Collection of simple Type 1 font manipulation programs
Changes:
 t1utils (1.38-3) unstable; urgency=medium
 .
   * Replace the Debian patch for #772774 with upstreams
 own version for the same issue.
Checksums-Sha1:
 fc2dfa478403df2938da7fab8938cdf3dc2b5812 1707 t1utils_1.38-3.dsc
 960e2f9ee4e240805e95490d235de1fc896ea75f 6756 t1utils_1.38-3.debian.tar.xz
 22cdbc047561fd2a5bcdad2ec99371cf0e20afe2 129724 t1utils_1.38-3_amd64.deb
Checksums-Sha256:
 4739f3cc6db83f899c6744fece9d34249676b8da4d29a8d260b18298a6ac1af6 1707 
t1utils_1.38-3.dsc
 6491eafa7ac887c723381ac6aa7c2358167d8802ced509ced784be2ba75e656b 6756 
t1utils_1.38-3.debian.tar.xz
 41425d6736e34efb78765c93821bb44e3e052b9366264bffd369c531b14be281 129724 
t1utils_1.38-3_amd64.deb
Files:
 65541221d7568c9b7e1d7cb3fae4661c 1707 text optional t1utils_1.38-3.dsc
 0f65a9a607852e2997062735b3282d4a 6756 text optional 
t1utils_1.38-3.debian.tar.xz
 fa3b475d92cbdf90f304621c88669242 129724 text optional t1utils_1.38-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUidgrAAoJEAVLu599gGRCySQQAIQmSgdN4kyF6eAp6X1su3t+
gpzR5A9UcRUZKc4JG7FX/Oom/ldxgeMSB8Vyd41Jqyfyawl7fI2CY/6lEm2rHeQ0
JPoTcvdQmNueASgt2UF3aYQhnMBMvzdBQRuMMCJj3effSpwm96Y32NCi6FUSvial
DtXlOgHSyemMYvg+uxaJy9z3gj4ifET9c6NzOOEZTDqieW1bArXd7o2PjU6nkKHs
XpCR/fY8OIdsxomrZhqiF1QS2MiBf0rBalYGOvHaC+JjW5FFH4utmay7UvrNct6W
DlznZWIkmfOu++yz1EUHMsWiCSi+KPp503CB99zn6N4nG8s/2meAwhbxduB/5Fqz
h7xxpTS1ugOGNyfdCDajKg68xqOqridjzhLEGwsd2JHd7e9s4wh7qk5FYybT8RkR
n2bMl44hoFfhFB6vqVzToGYfCj2TbniC+XP7KSUwu9DViTAUG9DM247bBj/9Qs45
Lj52TXHFHU3czGkF3/78zdE7FpipdM87OKHeTyAumX0f2r1tIQwX79hSvCIxvpxe
ATbCpgoW+0TfLyT1n+PtgS2xXii4gWmdTd2jYro5ebl0TET0F4+kNwTUX4VxLl9Q
9FBKtlhNOHUbz7+s7UAUMLlbox/CAKCSn39D19yqCEpGDfqFa+A3vG+3XDzc8cGb
k8RZBuYY3+OV4dcvAFg6
=6cW4
-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/e1xz7rr-0001ii...@franck.debian.org



Accepted pidcat 1.4.1-2 (source all) into unstable

2014-12-11 Thread Hans-Christoph Steiner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 18:15:38 +0100
Source: pidcat
Binary: pidcat
Architecture: source all
Version: 1.4.1-2
Distribution: unstable
Urgency: low
Maintainer: Hans-Christoph Steiner h...@eds.org
Changed-By: Hans-Christoph Steiner h...@eds.org
Description:
 pidcat - Colored adb logcat that shows entries for specific apps
Changes:
 pidcat (1.4.1-2) unstable; urgency=low
 .
   * add bash completion (forwarded upstream)
Checksums-Sha1:
 58073adc834006896a73ed376c01708be5b5abcc 2048 pidcat_1.4.1-2.dsc
 8330a79df11294e1d7ede119c39b8dca1aa2bdb2 3148 pidcat_1.4.1-2.debian.tar.xz
 07581ab2ef4e6e999f722a0f49770d275dceba87 6774 pidcat_1.4.1-2_all.deb
Checksums-Sha256:
 f44698534dd7c0fb604a2b3dc755ec6e614106cbaa5844f72ef2962d7bb774e2 2048 
pidcat_1.4.1-2.dsc
 7d4dd0cce7912df11871ceaddcce55e140a61e08e5ac180f45fabce0b3e82d9c 3148 
pidcat_1.4.1-2.debian.tar.xz
 f56a81fb9c2c62f20f75b8bda537d94414d10eb5b835b91381f47bc2871d6a19 6774 
pidcat_1.4.1-2_all.deb
Files:
 d1f0291be775d5ac210476ddd1c39bc7 2048 devel optional pidcat_1.4.1-2.dsc
 412ae3faddc4638bb6efc2d2de25f45a 3148 devel optional 
pidcat_1.4.1-2.debian.tar.xz
 1b9975c08c18c50a9391e1888d234096 6774 devel optional pidcat_1.4.1-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: GPG for Android - https://guardianproject.info/code/gnupg/

iQIcBAEBCAAGBQJUidiDAAoJEJ8P5Yc3S76B6GYP/2NkYddZIFAadld/XM72WXYM
Khz0XzDmb8onM3I/qD3Pcc1uzPzS+iXZ5tVP5poa3tPEfzo+Rf1bZnllj3quzpwM
YuKb1ZW28azmnRDIITivODBHHmUB/rCpRfJ1RGH7C3wbtAf/EDbJRMlJMlhyZVi5
4nbeQy1e2dbahufuZn/ULNZKQ44Mn11v7cOwDBPAx//gIWkusIEmf3px5ogflnE0
+d1LttArgWZivDP3672kl8LmakIVJMt7+MIAM/HdB33puDLsq0qSavDwjMz6pjrz
0LwnQKMXS6nYs2qLGlZVOONlsXSQuixhAGdq+W5D5jyq/9zF6W4XXAtMpCgM3KGg
omukTiFI7ElkRJidrxWDT11IA4IBCFpro+by5v1VPxyCg7k+BKEWz/TbwitkCcAX
d5O3/LrXBbPkiHyLkq7yuy6MRi7R+u0QUp1D3KcWANvP/pkLp4kJ59zGLWZC5YkI
FpoFFE2tmiMfqdV5y5XFSWrIjFg7hq6ffTehzrH+zT5XB4qr6Xqh+xbBqSuAxUiB
2HdjYU6HPwzI97Zwm3xcbC1MxB0yjBxDvsTGb3YRpBMhWJ/md80zPXBczbphvKW/
Iqcv25lQrepbugQ6KsQeIBXOnWtZfd6E14APeG9lo1WHqvym+tok3mo8/24tG3He
pm6vhKaBSG2ESwczonrF
=PZp2
-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/e1xz860-00033i...@franck.debian.org



Accepted gnutls28 3.3.11-1 (source i386 all) into experimental

2014-12-11 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 11 Dec 2014 19:07:23 +0100
Source: gnutls28
Binary: libgnutls28-dev libgnutls-deb0-28 libgnutls28-dbg gnutls-bin gnutls-doc 
guile-gnutls libgnutlsxx28 libgnutls-openssl27
Architecture: source i386 all
Version: 3.3.11-1
Distribution: experimental
Urgency: medium
Maintainer: Debian GnuTLS Maintainers pkg-gnutls-ma...@lists.alioth.debian.org
Changed-By: Andreas Metzler ametz...@debian.org
Description:
 gnutls-bin - GNU TLS library - commandline utilities
 gnutls-doc - GNU TLS library - documentation and examples
 guile-gnutls - GNU TLS library - GNU Guile bindings
 libgnutls-deb0-28 - GNU TLS library - main runtime library
 libgnutls-openssl27 - GNU TLS library - OpenSSL wrapper
 libgnutls28-dbg - GNU TLS library - debugger symbols
 libgnutls28-dev - GNU TLS library - development files
 libgnutlsxx28 - GNU TLS library - C++ runtime library
Closes: 772055
Changes:
 gnutls28 (3.3.11-1) experimental; urgency=medium
 .
   * New upstream version.
 + Includes fix for OCSP response parsing issue. Closes: #772055
Checksums-Sha1:
 f57a389bb0ab8d616c9a49f16e929589f44679b2 2920 gnutls28_3.3.11-1.dsc
 82db10dc9b10d03cacbb86b567ef692401f34add 6176080 gnutls28_3.3.11.orig.tar.xz
 c787edb1547a69470e247a7dbce35dccf7529162 84056 gnutls28_3.3.11-1.debian.tar.xz
 63b183bd0bbd97e9b61f4682e82857ac34a2a97b 688890 
libgnutls28-dev_3.3.11-1_i386.deb
 3f3a059331de7993d3d06abfe6676ff6680b9daf 717712 
libgnutls-deb0-28_3.3.11-1_i386.deb
 03291a15b155648607eebb78102cb5bb7fb43d1f 1935872 
libgnutls28-dbg_3.3.11-1_i386.deb
 ac6eeda1dc91d0e578616e544ff2f6af736af93e 318700 gnutls-bin_3.3.11-1_i386.deb
 a505ccc0c3cd109414f7dc580d222a916c49fc0a 3639394 gnutls-doc_3.3.11-1_all.deb
 dda60925d867310bb25e1056a3ab47eab193da7f 181432 guile-gnutls_3.3.11-1_i386.deb
 ceccc8b04cfaed8fca23ba4759430b383ea91ffe 15434 libgnutlsxx28_3.3.11-1_i386.deb
 fede6cf5b501d530722ef535638206bd1980 148316 
libgnutls-openssl27_3.3.11-1_i386.deb
Checksums-Sha256:
 4749cf4ca90fc05498dc700792e70613341841414a16be3b087826d0a8547242 2920 
gnutls28_3.3.11-1.dsc
 aef28d629b6ba824bd435f9b23506525e657e3746d4aa021296b13cbaaa6ae71 6176080 
gnutls28_3.3.11.orig.tar.xz
 2962721264b94c0a6cc7109b2e7ac46f1cd84aea191794893825df2880152999 84056 
gnutls28_3.3.11-1.debian.tar.xz
 7c8ff73ca1d114926f2dd7c2f34353eb26ae826874b33085cd14197d436c4635 688890 
libgnutls28-dev_3.3.11-1_i386.deb
 c0b950839af6af8d589961ec5ac4ff4e6cf0fb4cd95035d56c42a4d5cccea391 717712 
libgnutls-deb0-28_3.3.11-1_i386.deb
 8746d5b06d2285e27181ae1d6a147484b4a004b4919edde59de9a8ebf918cced 1935872 
libgnutls28-dbg_3.3.11-1_i386.deb
 48eabf5d0b49bd6500504a98a467e993d8393512e7542f70fabc6a3cd110e555 318700 
gnutls-bin_3.3.11-1_i386.deb
 92c235f316f1879c3700f3c2255028af70b900390d635cd2e5ba783961a81737 3639394 
gnutls-doc_3.3.11-1_all.deb
 a07662891e14effd9de838e9f9c29d9ba6bf8ba58cde7e8a07a1722b24a739b3 181432 
guile-gnutls_3.3.11-1_i386.deb
 8ef4beb0d09cdd7469b2ea3cbb7e29c91a678200700cda6f2a4d73899b4756b6 15434 
libgnutlsxx28_3.3.11-1_i386.deb
 3b9d2039f9ee0b4423c955b9b09bd90faca18cc04a0bb375e2737010ffb75cc0 148316 
libgnutls-openssl27_3.3.11-1_i386.deb
Files:
 f8a2f6806d98ea08905ef9f7331a 2920 libs optional gnutls28_3.3.11-1.dsc
 b657e3010c10cae2244e7ce79ee3d446 6176080 libs optional 
gnutls28_3.3.11.orig.tar.xz
 b37667b7dd6cd823ef3c46bd66bd1782 84056 libs optional 
gnutls28_3.3.11-1.debian.tar.xz
 3fd7beedee55d883660c2adde8188e51 688890 libdevel optional 
libgnutls28-dev_3.3.11-1_i386.deb
 232202565c37d168b1f293d0d4676342 717712 libs standard 
libgnutls-deb0-28_3.3.11-1_i386.deb
 e67fcad256117df8efbd3232efecbff9 1935872 debug extra 
libgnutls28-dbg_3.3.11-1_i386.deb
 854115918b386ff65870ad9be510282b 318700 net optional 
gnutls-bin_3.3.11-1_i386.deb
 0972adfef070f876e69d310aafb814fc 3639394 doc optional 
gnutls-doc_3.3.11-1_all.deb
 10e68099c4820c070e6dc48467e169c7 181432 lisp optional 
guile-gnutls_3.3.11-1_i386.deb
 296c511cbdc680440d1deedcefc0306e 15434 libs extra 
libgnutlsxx28_3.3.11-1_i386.deb
 a6f24fc3ea1d571c66ec34f3c13f58a0 148316 libs standard 
libgnutls-openssl27_3.3.11-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUieDqAAoJEKVPAYVDghSEw/MP/0suZxSH7PTBwp3FfXXULhlL
FlgJ/62MT8E/I5kSElDoPUBXK4xDvaLA4Iaati6T3AUnNOMk6uymWC3e+u9WvNOB
u1wcfm6ZGNOk+PgkXtxBu5o2zJwAuvXB8Aas2RqI/9ucPCilmevFEJeZU5vfFrA4
isJZw7J+b9Td/uFy3v1KT1oenqFUK99Y0fUwHsveYT0buxPFaKUMdMMnrRYDMS26
ZJExlC7/OOK3EI/VMpEUJndqMZZabmxzDB3yX8qt7VxhYVpKj9SNodgftT6UCy9S
uWZgg9LkeSD36St0eC5Zr9w008hGPiVmjL0IiOb5U9hFhGlWb19W5UuKJHhJp0o/
dmR8NFSrPZeGCe4sacdpP7p/v3rVboIw/vlDj7NhH1h2FPDoP0H6PbY9YVA6oaRG
1ZBl7ZNZdqckDbcGDoZgb0cdWcdfnazBvRaUO+Kh7u6+VzIw3hXGIsR0exliuqD0
Z6M4YnoY2hNhnwIZkZE6j2z4L+xFtwUlphPdfFbmz8GAkHwvykod1m4iOVyDFZSO
FEU+kZjaynUyJjQVL+UEUeNG9/oJIeLL7zQkg4W/Xc7r7PrRVWGul9BLyrmsVEM6
oyLLWJ8gPKuHPIUrxLR9i47znMAu4poAXyuWhuKY4dm2OH2WfwxXcppfLWIMsNj/
Isqpi0Goh17NjcQbt2vV
=/6hE
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to 

Accepted php-opencloud 1.12.1-1 (source all) into experimental

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

Format: 1.8
Date: Thu, 11 Dec 2014 12:11:36 -0400
Source: php-opencloud
Binary: php-opencloud php-opencloud-doc
Architecture: source all
Version: 1.12.1-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-opencloud - library to work with OpenStack clouds
 php-opencloud-doc - library to work with OpenStack clouds - documentation
Changes:
 php-opencloud (1.12.1-1) experimental; urgency=medium
 .
   [ David Prévot ]
   * Update watch file
 .
   [ Jamie Hannaford ]
   * Adding NetworkInterface
Checksums-Sha1:
 82c851e18d6720f07b7c08fd869207243651b8c3 1872 php-opencloud_1.12.1-1.dsc
 8c79a590808e96f86dd9621c21fd121413a32b07 435482 
php-opencloud_1.12.1.orig.tar.gz
 1c9a410039d1713533c7cd207edb6f05ca42cac8 16312 
php-opencloud_1.12.1-1.debian.tar.xz
 a5fa2e0ac22591f0c7e63214e46afeffe943161f 143892 php-opencloud_1.12.1-1_all.deb
 f075f2a85f28e8b88da5787b3e9a5c9399b20017 2178502 
php-opencloud-doc_1.12.1-1_all.deb
Checksums-Sha256:
 6b943169c7e71be2d7bbf399c2560ffe3360a9443948a01a4b5a9a7f9adc6c57 1872 
php-opencloud_1.12.1-1.dsc
 07be5d98728fef8e4eb757232358cfd3c8dc019945139c82e771412ce5de4950 435482 
php-opencloud_1.12.1.orig.tar.gz
 2832c875e2239b86682905a5c403489e58142566cb58975ab37a55d82ff1c3bc 16312 
php-opencloud_1.12.1-1.debian.tar.xz
 761dc96f8654ac0f744091b506255a28702654b3a879219cdba6022c47beb448 143892 
php-opencloud_1.12.1-1_all.deb
 6d127b6933c32050ae52b974eaef4b94d88cf591f4d8404cf22036a58e2b1b63 2178502 
php-opencloud-doc_1.12.1-1_all.deb
Files:
 bfb8e8dc3b116937b00f89e2820c858d 1872 php optional php-opencloud_1.12.1-1.dsc
 05f8663177876c1a554f4e61582911f2 435482 php optional 
php-opencloud_1.12.1.orig.tar.gz
 e3f99ca93bb805f1abc02fc176fefaba 16312 php optional 
php-opencloud_1.12.1-1.debian.tar.xz
 93b6b455fd2783d40c1efd17dc2a5012 143892 php optional 
php-opencloud_1.12.1-1_all.deb
 824c91046e7055eb42bd3f7e995d68b1 2178502 doc optional 
php-opencloud-doc_1.12.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCAAGBQJUic5lAAoJEAWMHPlE9r08M3UIAKKanyR+RC1lcRJLRzug9E0I
J5mNoeUrYyRM7LTSkHKxuAXe3YT31GnbxefUBskWm6kRypeTqWf5ScAyXXWBlMaQ
MTzeZmC/AB8VIDGdr7pNzXVR4wZjwxe75NTBZTwDoL1GRI7RcGv2mBBuJJd7lSSS
ivvHNBmg6sR6rc7T9VH66/N2HAwOeOEAPL6IILRTeyuzNUCNTuPNVSeJ2ruQVG3U
ekizmrjI+2AQw+cUAyBA8wEd2UENqtq49pHPKKnJ6k1s8O+k35bNrOH6Cmd04doz
3Te+zKyrB+p4zyRPTTK5sChloIGcKAw+GA2r7T2Kp9QrPGExYcvmrPZuovw5o/s=
=1NHu
-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/e1xz8zf-0006fr...@franck.debian.org



Accepted cross-gcc-4.9-arm64 7 (source amd64) into unstable

2014-12-11 Thread auto_build_all.sh script by Dima Kogan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 10 Dec 2014 21:18:34 -0800
Source: cross-gcc-4.9-arm64
Binary: cpp-4.9-aarch64-linux-gnu gcc-4.9-aarch64-linux-gnu 
g++-4.9-aarch64-linux-gnu gfortran-4.9-aarch64-linux-gnu
Architecture: source amd64
Version: 7
Distribution: unstable
Urgency: medium
Maintainer: Wookey woo...@debian.org
Changed-By: auto_build_all.sh script by Dima Kogan d...@secretsauce.net
Description:
 cpp-4.9-aarch64-linux-gnu - Cross-gcc (cpp) targetting arm64
 g++-4.9-aarch64-linux-gnu - Cross-gcc (g++) targetting arm64
 gcc-4.9-aarch64-linux-gnu - Cross-gcc (gcc) targetting arm64
 gfortran-4.9-aarch64-linux-gnu - Cross-gcc (gfortran) targetting arm64
Changes:
 cross-gcc-4.9-arm64 (7) unstable; urgency=medium
 .
   * rebuild for 4.9.2-7
Checksums-Sha1:
 6f0b0c9df73df2016e59dfaee87c4677676c0951 1850 cross-gcc-4.9-arm64_7.dsc
 cc9cd8ea69f7d400b2f3c51fa7ba965d6cc983a9 11708 cross-gcc-4.9-arm64_7.tar.xz
 5cee16c25b7d29b9b68673e6993c50b3f37bd56a 4581904 
cpp-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
 beb65cff03962ce72aa32e0ed44c35669b435126 4567492 
gcc-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
 7c0b7f177e75d9c3c4623406c67f334e27734f03 4856990 
g++-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
 bc55f649f7f679880dfb6367215a4f201ae84d42 4724934 
gfortran-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
Checksums-Sha256:
 1b9420a0b8e151bf96f2668e08b2e30568a6a8c97f523a32fb0df5489a0d4310 1850 
cross-gcc-4.9-arm64_7.dsc
 e0f22be82a04dda4e804ff4fced1a7dfc37ab8be7a12a3d93e264299f0b27022 11708 
cross-gcc-4.9-arm64_7.tar.xz
 7902b106d8169de42328b12b550e057820a642e2841b0971d3a5a3697990fda4 4581904 
cpp-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
 e24573a6c6067d21d3803dcbb8a8304baf2b79c99d750c4e0ff823c360687825 4567492 
gcc-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
 8295a4489e8a92ad55ab7a97cf6718ce38dc1a897b8c6e4dbc6752ab11df753d 4856990 
g++-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
 5b4cbf5c0be195380fdfe669433daaf8e6d2c930d78859de587b2dcfe1906711 4724934 
gfortran-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
Files:
 a5d7558a0975aadd5cdf7d68c3c89753 1850 devel extra cross-gcc-4.9-arm64_7.dsc
 c1f9ad9bdac3dda659e10840d2b915de 11708 devel extra cross-gcc-4.9-arm64_7.tar.xz
 ad6f58b6255b0bd7cbd8ce3899b0154b 4581904 devel extra 
cpp-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
 55e0ffcb49e7fac0103e2d0824119887 4567492 devel extra 
gcc-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
 7ad28b2d643f0e56dded43ff5567b4c9 4856990 devel extra 
g++-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb
 50d75e5df84773f766c31d6396e5323d 4724934 devel extra 
gfortran-4.9-aarch64-linux-gnu_4.9.2-7_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBAgAGBQJUifJlAAoJEADolDnyKCkraH8H/18EfVcypMqkenILbjZh6Y50
J3pQfJpbwUk8XAuCRjipO07W0/5nOqIglXNMAzYKsGZj+9J7snTPG7WIFNZ8IaoS
vUzmJ3mxKknWNb5xI0XLcj60x3GTSg5pPnhbUwfh7/uoYDpsSRdi502/YFIfL15f
8DvkFvsWNhWIgl6vCnI9XcgL9lYL7QXtXL6qSXzXxla/dFQMvCSMd8YyEm/gcAlR
mc5+zC9wqIbgj3DQPbxBTqmcTahanYXJVZ4SKvqb1OI4qqM8W148HGdPKqEvRSWW
gkrRIMaNxrisasTNF263vIgnkumZkFgiGY5JmTycaYMEMJlbwMHv/M5bmz1oi/E=
=eNq+
-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/e1xz9jw-00076k...@franck.debian.org



Accepted cross-gcc-4.9-armel 7 (source amd64) into unstable

2014-12-11 Thread auto_build_all.sh script by Dima Kogan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 10 Dec 2014 21:18:34 -0800
Source: cross-gcc-4.9-armel
Binary: cpp-4.9-arm-linux-gnueabi gcc-4.9-arm-linux-gnueabi 
g++-4.9-arm-linux-gnueabi gfortran-4.9-arm-linux-gnueabi
Architecture: source amd64
Version: 7
Distribution: unstable
Urgency: medium
Maintainer: Wookey woo...@debian.org
Changed-By: auto_build_all.sh script by Dima Kogan d...@secretsauce.net
Description:
 cpp-4.9-arm-linux-gnueabi - Cross-gcc (cpp) targetting armel
 g++-4.9-arm-linux-gnueabi - Cross-gcc (g++) targetting armel
 gcc-4.9-arm-linux-gnueabi - Cross-gcc (gcc) targetting armel
 gfortran-4.9-arm-linux-gnueabi - Cross-gcc (gfortran) targetting armel
Changes:
 cross-gcc-4.9-armel (7) unstable; urgency=medium
 .
   * rebuild for 4.9.2-7
Checksums-Sha1:
 3f95b92d35cd46b9394f7f719f31d84ba5df0647 1850 cross-gcc-4.9-armel_7.dsc
 f440b76d2a5961eba09b31f41729de124e98c802 11696 cross-gcc-4.9-armel_7.tar.xz
 c58995db760167310ba9101c8d295d3775715cea 5202662 
cpp-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
 ffb02124ee3d99ce22aa1c1825537a8ca34209d9 5210046 
gcc-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
 d38f8a25d15feb6b670c4635c967502f969e2072 5475860 
g++-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
 8d1094b8a4486f4182564b1f606561cfcd9abc13 5339468 
gfortran-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
Checksums-Sha256:
 1bad2632740271b3bec401c607102f950b1eb63e893318a38a8fe5eb889a81fb 1850 
cross-gcc-4.9-armel_7.dsc
 737accec2a7cff35f6e5439aa9bdc404c3d322645bfd0a5800392c4bf13098e6 11696 
cross-gcc-4.9-armel_7.tar.xz
 d877f337704bc395a9b4fba4697124151fb1f404d09a239ba3c53375ec5a8832 5202662 
cpp-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
 ce9dfacce99446edb0ba448af334e40418031021bb14189c5f2820b35fb0bf9a 5210046 
gcc-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
 12191e2c09715c532ef3f0f85a71191160923659a78265e24249e00103bbd470 5475860 
g++-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
 7abf112fbef1144e32566548634442e863a3881096d854961ca5adf5a024be28 5339468 
gfortran-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
Files:
 832e5036cc4bce69440329386285364e 1850 devel extra cross-gcc-4.9-armel_7.dsc
 caeb0cd904b938ee02e51a132ae22335 11696 devel extra cross-gcc-4.9-armel_7.tar.xz
 b907d5ffa063cf074b2d88b1ad997358 5202662 devel extra 
cpp-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
 b7ebce91925a1df02fe6440dde539c1a 5210046 devel extra 
gcc-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
 b34de2e3b3ca9ea73f7518a7b7e3e73c 5475860 devel extra 
g++-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb
 186167aba4245bb6c327ffd14de1c738 5339468 devel extra 
gfortran-4.9-arm-linux-gnueabi_4.9.2-7_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBAgAGBQJUifJlAAoJEADolDnyKCkr1+YH/Rh66Mw7ekTvDXzv5VUOXHUw
3/PJ+nVuPthx6Sals9SOJXBZ+ok1Xpch0TN9Hp/IazQ2Bcz1zftoAjMmNQVzu3z2
u9Zs5UbZJUOL47FhYaTVkbmLUl7/5ROQCerD0G07+AX4In5MPS3MTPT+Rgj1emXn
HO2ZQ7BZqXo1gfg6qHDxgDqvEPFkpoGger8AARBd6p5L62WGaWi8qNFrdKqyAcW0
DrtakW+bOZWCjLkvGB2HkZ0xPbE4fvC/yzQ9MO3SunPVRYO2a074/pa0mtpeyIbC
OXPHEGWdFqf3vV7iPn0oihRlgziuaGe5gWFwo7zOU9ACCXTrRr7qYgk6qAbnC8o=
=U2WV
-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/e1xz9jk-0007dz...@franck.debian.org



Accepted cross-gcc-4.9-ppc64el 7 (source amd64) into unstable

2014-12-11 Thread auto_build_all.sh script by Dima Kogan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 10 Dec 2014 21:18:34 -0800
Source: cross-gcc-4.9-ppc64el
Binary: cpp-4.9-powerpc64le-linux-gnu gcc-4.9-powerpc64le-linux-gnu 
g++-4.9-powerpc64le-linux-gnu gfortran-4.9-powerpc64le-linux-gnu
Architecture: source amd64
Version: 7
Distribution: unstable
Urgency: medium
Maintainer: Wookey woo...@debian.org
Changed-By: auto_build_all.sh script by Dima Kogan d...@secretsauce.net
Description:
 cpp-4.9-powerpc64le-linux-gnu - Cross-gcc (cpp) targetting ppc64el
 g++-4.9-powerpc64le-linux-gnu - Cross-gcc (g++) targetting ppc64el
 gcc-4.9-powerpc64le-linux-gnu - Cross-gcc (gcc) targetting ppc64el
 gfortran-4.9-powerpc64le-linux-gnu - Cross-gcc (gfortran) targetting ppc64el
Changes:
 cross-gcc-4.9-ppc64el (7) unstable; urgency=medium
 .
   * rebuild for 4.9.2-7
Checksums-Sha1:
 e9992d7fc2f5b4ea9055cab57c542d795ceb8ad8 1900 cross-gcc-4.9-ppc64el_7.dsc
 07adf34f7c1ce6066dd0b21ffacae472083fe8ab 11744 cross-gcc-4.9-ppc64el_7.tar.xz
 edd87cb446065f0f1c344db05ddbd15885ed04c9 5110762 
cpp-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
 a6830b866be7aa6662055cbc24e0ad7902e5c8f5 5123476 
gcc-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
 634675f3b40c5fe9eee5ff23f471f6c99c5deae7 5382842 
g++-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
 9dc7425119e450ec6d7bfa74aba72c8f1a0cbc78 5242974 
gfortran-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
Checksums-Sha256:
 17da4e469ebda7503dbd1ce81e0ed32b6531d726c9d959ed6319147e73924efd 1900 
cross-gcc-4.9-ppc64el_7.dsc
 b287461cec0938916094f5063475ea186ee4d7a9c70cf4ee15ce4c458bd2280a 11744 
cross-gcc-4.9-ppc64el_7.tar.xz
 b139dd8439d9c6634691342dddab4f45df0d1f3d0b8e17c71cc807995a8a98dd 5110762 
cpp-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
 3f7232df2c66fa79abc9efd38f13bc0019410d7b86fca14cf5213b472be9ff5a 5123476 
gcc-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
 43baeee4562ce21dd9cb7152f768138dff643fac4d31e2bd25957fe9d33bf11e 5382842 
g++-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
 6390b14ac45ebd6dec065b463c1fd549f02f130859a831644d706a3b81f7b7dd 5242974 
gfortran-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
Files:
 52f3c077369e2a1c8b17a8fc865024f5 1900 devel extra cross-gcc-4.9-ppc64el_7.dsc
 d892a11beac441bb7d08b5d109abc1fb 11744 devel extra 
cross-gcc-4.9-ppc64el_7.tar.xz
 27591b26263c7f3d34d783f0373df16c 5110762 devel extra 
cpp-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
 1ba7e6b03ec822ebe8aa9bc89416b9cf 5123476 devel extra 
gcc-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
 f2881ee3552e6eb80b2be117781764d2 5382842 devel extra 
g++-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb
 ecd42d1f75a661d8bd45a3a8f5e5ff4a 5242974 devel extra 
gfortran-4.9-powerpc64le-linux-gnu_4.9.2-7_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBAgAGBQJUifJlAAoJEADolDnyKCkrJf8H/3J8ckTRK3e2sCAZT0ZY+wW5
YIPQ6zd8kLQFsPmAbG3uOY8pgXtkOwby/I2ctoEJka6oos49E5Uh9fCfXx5xAxTA
5g/MBqmMSQ7RYLRZkNtU0x1EthEYMTmE2njNY9lqtVYvvKXRLt6bYEz2pSg2MaDH
opVUv2GnQJ8Z4slTqLoqUdK2gCL1WmE6ibD5q/7YQrCxoEMrGIo/bglvkTMKoN0A
w3+B+n51XHBDazwqmJ5+bqphn0NfzFv4HgyQyjZifsEMhQnVAYYPfbXgeUP1Lcm1
UE6sZkjs2HogFyWFKVnugDkuFPUGfAw2THRDXJviCmN78dEo5wFmAK7sXakWVLY=
=1eDH
-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/e1xz9jz-0007kd...@franck.debian.org



Accepted josm-plugins 0.0.svn30838+ds1-1~exp1 (source all) into experimental

2014-12-11 Thread Bas Couwenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Dec 2014 22:32:09 +0100
Source: josm-plugins
Binary: josm-plugins
Architecture: source all
Version: 0.0.svn30838+ds1-1~exp1
Distribution: experimental
Urgency: medium
Maintainer: Debian GIS Project pkg-grass-de...@lists.alioth.debian.org
Changed-By: Bas Couwenberg sebas...@xs4all.nl
Description:
 josm-plugins - Plugins for JOSM
Changes:
 josm-plugins (0.0.svn30838+ds1-1~exp1) experimental; urgency=medium
 .
   * New upstream SVN snapshot.
   * Bump JOSM dependency to 7778.
   * Refresh patches.
Checksums-Sha1:
 63388a5bb33522ef13934a8d80620d8a0901c55f 2389 
josm-plugins_0.0.svn30838+ds1-1~exp1.dsc
 d04df084b367e9238b83543b703c9972b14e42c9 152609 
josm-plugins_0.0.svn30838+ds1.orig.tar.gz
 8a1fa7dbb87482cfe02ac62ce321ee3b323296c1 10652 
josm-plugins_0.0.svn30838+ds1-1~exp1.debian.tar.xz
 f7bd79ebab3d2001eaddcf6f670a276a9592b902 196580 
josm-plugins_0.0.svn30838+ds1-1~exp1_all.deb
Checksums-Sha256:
 a46ae2f6d9c10e33b790f0550a19be23c46e097457f37e21905c0b6e9938cd86 2389 
josm-plugins_0.0.svn30838+ds1-1~exp1.dsc
 6da1f39fe8b3c4482ca727999ee754d07b8379303f44c9205a895e3930977b86 152609 
josm-plugins_0.0.svn30838+ds1.orig.tar.gz
 d8285a0271e0557c328fd9554eba3c4f370392387e95253f6e48b404c2e8f872 10652 
josm-plugins_0.0.svn30838+ds1-1~exp1.debian.tar.xz
 d8c8b85064c629b9746a92600834c51ffe9e68a6a7646a9582eede2acd1ba4fe 196580 
josm-plugins_0.0.svn30838+ds1-1~exp1_all.deb
Files:
 d2b4a03f694ca3192c36b311835f9053 2389 science optional 
josm-plugins_0.0.svn30838+ds1-1~exp1.dsc
 9da24632eeff8086125de08c515b139d 152609 science optional 
josm-plugins_0.0.svn30838+ds1.orig.tar.gz
 b6b36ae38a0141fb9d3267a4a1f578ce 10652 science optional 
josm-plugins_0.0.svn30838+ds1-1~exp1.debian.tar.xz
 183f147eee3b1e4a2a753efc07854aba 196580 science optional 
josm-plugins_0.0.svn30838+ds1-1~exp1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUifG3AAoJEFeKBJTRxkbRzoEP/0IFCIPGQ3JUBgLx6juSE0YZ
r7loHfp5wi/FW0/5DVze49kWyyZJ2JoMJcsvzQ010nQzUoSW+jTxHxzJgRNbrhV0
mhpeDLX1nC2NR6zWwiV2n/XoVf8JvDIh6ubZOQJTsGwnTdT++MSiPXHOuJ2URGPs
oHaQdG8yNKHfVVJ05U2x5463a0OjV/QcU3Jy8U/YHBsyXVprgV3a3BGLNPwZ0L5R
U64UFiQYzHLbNuxyoMFPgVoSGSl8RlLPAiniO3Jh9x2EjVj/Woutuhihxz3LXc5Q
5ljvsmh+Cu3OzWQZe6v2N64Kqt+q8dhBgQILlO7Ap/ASRzgUCgikb3wIJZWhbBSx
GhguoEzf9xpHym9xWbHzLFs37LJe8s1z6Io9ppJIq/HmXwh0rUjhKDXoUYTQvn5F
hBSI1vJve3OLEmLdYq/FbRuG+ioLhxJM8Ggu48kftPg5gdhrunEpDHJDS5xeX+Cj
vvawrj3ZjYkvPkj/GWsv05kYDbvsfj1F4xHshKP2IV356CXizSKuU4V8TjiiMfvB
51x7/QYMrFFYNpALktz1dOld2anZ6kbAt6ZvOZG+4OPL8wva51K/uMjHrJ68XDLY
isW+cQWnpFtrFbUJtZ4Uya270boa52Draaz+30dLEwPTIWELf6QbYoUoRd3sdM+L
GAvksIP/vPBY4qqYE2K2
=E9aD
-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/e1xz9kr-0007ni...@franck.debian.org



Accepted php-apigen 2.8.1+dfsg-1 (source all) into experimental

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

Format: 1.8
Date: Thu, 11 Dec 2014 16:41:47 -0400
Source: php-apigen
Binary: php-apigen
Architecture: source all
Version: 2.8.1+dfsg-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-apigen - ${phpcomposer:description}
Changes:
 php-apigen (2.8.1+dfsg-1) experimental; urgency=medium
 .
   * Upload to experimental to respect the freeze
 .
   [ Jaroslav Hanslik ]
   * PEAR is dead
 .
   [ David Prévot ]
   * Adpapt to Composer source
   * Make php-texy and php-nette dependencies more permissive
   * Bump standards version to 3.9.6
Checksums-Sha1:
 e355979777282a78c03c52a6c2f88d7c3d18e7ae 1699 php-apigen_2.8.1+dfsg-1.dsc
 406a19ed60c59befa9d43ef714c59dbcc2f21308 120720 
php-apigen_2.8.1+dfsg.orig.tar.gz
 e1888528a11a77c8a8b2dd6fd2c03f33d83dc2fd 5612 
php-apigen_2.8.1+dfsg-1.debian.tar.xz
 cfb18f4f35085fd10e026b0241d32fefce35512b 90878 php-apigen_2.8.1+dfsg-1_all.deb
Checksums-Sha256:
 57f959b5557b30afab471babc6b109422555d28f002df89f9907f7d74d7b903d 1699 
php-apigen_2.8.1+dfsg-1.dsc
 3aeddabd36a97dc4e616a39650a06bf462522d9d6f4f5b0b33a79d9ee535de23 120720 
php-apigen_2.8.1+dfsg.orig.tar.gz
 a2c6a7c49f15c17fc4858f2278aa2a1f091d4a266fa531d3f69c6148e57023c1 5612 
php-apigen_2.8.1+dfsg-1.debian.tar.xz
 4e19ebfe3f0a8d6d0bd13db46990817b90eac5ce9c21d03e67c2586afdca6230 90878 
php-apigen_2.8.1+dfsg-1_all.deb
Files:
 2f5d47fd18d8b665e269cbc92a1414e3 1699 php optional php-apigen_2.8.1+dfsg-1.dsc
 fd0f8406fc4388f0338c25f1a8332e4b 120720 php optional 
php-apigen_2.8.1+dfsg.orig.tar.gz
 b03d5eadc5254d8ef56172a5b0c57edb 5612 php optional 
php-apigen_2.8.1+dfsg-1.debian.tar.xz
 b655cc439f27dd120b96f1fc8013e67c 90878 php optional 
php-apigen_2.8.1+dfsg-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCAAGBQJUigNHAAoJEAWMHPlE9r08E0AH/jghqxGDNpY79kAeoZiA8dnb
pAZe++XjfLVrGUMhTiedCYbGAgQqmUV4pVsJrq6QK2WWYa/wcJwvbfSPB1QaKDZN
4cZcQHSwt4WomAfejImo3eDkcfTzP1lR8upm98nmlLa1MZOjcetxfNoXVc12T+jB
r39/jqKzhvXenf74Pftq7bJGe+72AtExkoAPMJPWUjBNBtRQ0cptHVw5P3Q06bTo
B4slJMpT0ck0N2Vdwa4kCCM3Ub9u3ZpPyN5+V8aMHK69G1snoVwc4ndeIR2ZDrpN
02d+gzu6POwZ2+k2RRKstv1QOzQaQkQGAysaspoc8UsFOPiFE+ca0xM5EJPY3ew=
=IYn0
-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/e1xzbb4-0001en...@franck.debian.org



Accepted waffle 1.4.3-1 (source amd64 all) into unstable

2014-12-11 Thread Jordan Justen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 09 Dec 2014 16:04:52 -0800
Source: waffle
Binary: libwaffle-1-0 libwaffle-dev libwaffle-doc waffle-utils
Architecture: source amd64 all
Version: 1.4.3-1
Distribution: unstable
Urgency: low
Maintainer: Jordan Justen jordan.l.jus...@intel.com
Changed-By: Jordan Justen jordan.l.jus...@intel.com
Description:
 libwaffle-1-0 - Waffle library utilities
 libwaffle-dev - Waffle library utilities
 libwaffle-doc - Waffle library utilities
 waffle-utils - Waffle library utilities
Changes:
 waffle (1.4.3-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1:
 c92f294332999e12582e50c785422465cead85e6 2148 waffle_1.4.3-1.dsc
 28301cb3014fc68e93f9d762886a00f49ad1c2c2 158416 waffle_1.4.3.orig.tar.xz
 4824d35f4a1c6f58a921b9f0e4d021a91fa240e8 2764 waffle_1.4.3-1.debian.tar.xz
 17b6387f9dc236c936a503615b6ef5820f492e06 21754 libwaffle-1-0_1.4.3-1_amd64.deb
 6e7c538ff1fc298b890c2d2eb1c6915a7e8bc584 5396 libwaffle-dev_1.4.3-1_amd64.deb
 449be015a10b6aa7278a3ce8834afcc5b798263f 36722 libwaffle-doc_1.4.3-1_all.deb
 7e03023126623f8ca615c14096e068ada4410144 10672 waffle-utils_1.4.3-1_amd64.deb
Checksums-Sha256:
 f935467e9620cb347a2b46e7e6c0ec9ce3e345bd42fa66d6c9f97c96c84d5de1 2148 
waffle_1.4.3-1.dsc
 7975456b8028731ee0fe9294251fca0b20089f8303e815c9f4612ebb0e1a2c04 158416 
waffle_1.4.3.orig.tar.xz
 cacc57b53c1086d7bbf877ddad0bb27e94d0444b5b98ac204b61cd0fd55d9d5b 2764 
waffle_1.4.3-1.debian.tar.xz
 e443d58f15decd576499450468921493d8e5cd058917ca6664a967e9055d42f9 21754 
libwaffle-1-0_1.4.3-1_amd64.deb
 ef510ddd8711b97efedc15e23b62fc2b52d6201e03efe24693116d648246411c 5396 
libwaffle-dev_1.4.3-1_amd64.deb
 a2810837d74e4e45f15f0712ecb9c6ec5f9a0998c8e573a31b435ba7f75d14c6 36722 
libwaffle-doc_1.4.3-1_all.deb
 3c985cf16bbacf7e924c4558a4d2ecf6cd2b89d7d6cf98cdd2c9a6c5ae7be409 10672 
waffle-utils_1.4.3-1_amd64.deb
Files:
 08bec5467ac611ee2537ad2bb2f0ff85 2148 libs optional waffle_1.4.3-1.dsc
 a8c9a9da242b463d6af7f3d850588069 158416 libs optional waffle_1.4.3.orig.tar.xz
 a7bd36d4640f0b96aee68c07a27c3733 2764 libs optional 
waffle_1.4.3-1.debian.tar.xz
 c25ddba93e76196223177b3e4799fe3a 21754 libs optional 
libwaffle-1-0_1.4.3-1_amd64.deb
 311630bb617716f509b257ddb0060842 5396 libdevel optional 
libwaffle-dev_1.4.3-1_amd64.deb
 71a17a2417f2ea014bbec10a785b3edd 36722 doc optional 
libwaffle-doc_1.4.3-1_all.deb
 0c0b79c070706eedf054b90144ccb13b 10672 utils optional 
waffle-utils_1.4.3-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUigG7AAoJEDf5n2jK+ZLru+YP/R3YPVePs8U5CZugOgHz6uK7
+3uNz/3nlIzIsWxGrIse1M8uZuEZtB+yX/ZAgvap8hQbfJ2AoQghywIr8vZXZXAF
Oic8kR9MqUf0DlCQ8DWhG8QuG5toOMogF6ZgdmjI1HNFYMZOHWFBB2ggQKLXt4kg
LAihnePdVcJON1z6bZ/54RNkfQe1luvs96I9r0YXwmCJ222vVkU1+jSPdaCXJ6Ja
a+yOqNKKBloud5JSCpXdOL9liJCzloJ0u00KYubI3f/J6JsPnAONtvgDgXTjQuUj
giCXZkmu20c361y6yiJ6ixTyIa5kow5OqwWde29/sIOCikayW3sRitya7ms4JLPJ
3b+Hbtaohu09xRBevfO593Cj7gCRv1DzizFijZasMULOIri2PhpnHeSs42Gi8Ip/
46O0utLKOerETUEAwor564fj70IW1EDWQftUivsdAHcRFVXKX3iOO/lSILUJjDB9
CqUZVRZBenLIWU9IDwghbWJ1IEAJNFBifmiI/C7VcU0YDj1uvozOiU/+Eik1jdAE
bom2AH902VA+z2Zk1KzK0MUifkMomrmNa4zu2D8tFRBuUMvgUW0yA+x9fMveGg2A
Tjmqm7MEOaEHQwLuka+fMh45Jn1hc8CA2611PJ80vfpLNziYLU0JZVILq97HueBT
ag93msuLpVIxBO49osGq
=RGLr
-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/e1xzbbg-0001os...@franck.debian.org



Accepted sxiv 1.3.1-1 (source amd64) into unstable

2014-12-11 Thread Daniel Echeverry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 11 Dec 2014 14:29:36 -0500
Source: sxiv
Binary: sxiv
Architecture: source amd64
Version: 1.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Echeverry epsilo...@gmail.com
Changed-By: Daniel Echeverry epsilo...@gmail.com
Description:
 sxiv   - simple X image viewer
Changes:
 sxiv (1.3.1-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control
 + Add libexif-dev in B-D.
 + Bump standard versions 3.9.6 (no changes.)
   * debian/patches
 + Remove allow-cflags-override.diff patch.
   + Merge with upstream.
 + Refresh all patches.
Checksums-Sha1:
 66fd41764ab5e10ed701dcb3dfad1afaf9f611cb 1685 sxiv_1.3.1-1.dsc
 35d6cbdca52ad8a54044b5f0f473d9469c5e0682 47171 sxiv_1.3.1.orig.tar.gz
 5ae53e14ce50b8fb72b7f1b7b25601f1bca774fb 4360 sxiv_1.3.1-1.debian.tar.xz
 d63df03a8a336880ec2271b6bc07899beeba0566 42630 sxiv_1.3.1-1_amd64.deb
Checksums-Sha256:
 b4cc05652f6cec8ce7c80fe188d83f4e3e8a517138f1b83165aaa904bfb48e70 1685 
sxiv_1.3.1-1.dsc
 9a30a1b036e1c17212128554709da3f2d65d3beaef2e0a73097af5e35cf11d0e 47171 
sxiv_1.3.1.orig.tar.gz
 77d04673179ab8409198e4a39d596eb9c118f96dafc7b52fd64a4523c946df3d 4360 
sxiv_1.3.1-1.debian.tar.xz
 2692c33187ad395637c598db2bb47b6dbeb8515a084389474a40df09a3f26b86 42630 
sxiv_1.3.1-1_amd64.deb
Files:
 7d7cebb820405eb2927badceb578c885 1685 graphics extra sxiv_1.3.1-1.dsc
 3255d0d47e0a4cddd752ec03ee4bddaf 47171 graphics extra sxiv_1.3.1.orig.tar.gz
 2fecb6d41f79a8e49104265e76943960 4360 graphics extra sxiv_1.3.1-1.debian.tar.xz
 5acd4f40f39ecf9db0b28c0d64b6f6db 42630 graphics extra sxiv_1.3.1-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUigO2AAoJENX9/BVhaL9goJoQANfDLiOjnXoxCkV7pLhJXK0N
6AKKgXrlmFe1oBLGQ+H+kw8z6EkAI42RctyrsZnA340bz63If/DA+Q/T0SjcH1g/
VAzWu1TS+OVbqqSK+W5/6f7ZgAMBD1PwEl0Bc/CD9bJ8m9frsU2rdnSe8Z8gTPHc
oTHtnvp+ZJ8CPwJmdc0LtSxbQujgmp7ir9zd1dih8ywPnADxY2Sk+Ys/PtyHT3rz
3FSXYcoZNGsCtNrRmDKWNzvMpB/HE+oR0FHOjyDmdahCENWbC/4tE3aaR6C7UWDS
sQhEvd4LayCaBYQEXFVCpZq9o38fXQPuduXhN4XcnbvoyUTMc6BAkiuHsWJp8iho
Qiw6C844YQW2qKzKzIhIBuLefcWO1cgOHtDz0QbFCxTAEMWUxkH7WubXFwZbeLvj
TZfZWk013Pax6H8lkuKL+LMyjP9DlaLNLEp9cjbmUu2jZAxEqaNEV6Mnf8G/buES
XwzSuW8YoqBF8VD3SxvfejkR+VJWZm+1WVrQqB1tNK7W3i3Nlq5DaeAHyMGjtSqb
j/5H+3r5nMeW3KSx63HcZnHdePAZDuU/HXOJv3YCIo7fzVW1nY7BSIGgKaDCUAT9
ooXZ97gA92hzAVNJnCs92FBlbO+YDijfNVOfy43a5bSAxmj6Wzh2VMg2fOV2pAjo
2kaxcxERFmwXNfFVWu2D
=XkNe
-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/e1xzbbv-0001jc...@franck.debian.org



Accepted 0xffff 0.6.1-1 (source amd64) into experimental

2014-12-11 Thread Sebastian Reichel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 21:52:53 +0100
Source: 0x
Binary: 0x
Architecture: source amd64
Version: 0.6.1-1
Distribution: experimental
Urgency: medium
Maintainer: Sebastian Reichel s...@debian.org
Changed-By: Sebastian Reichel s...@debian.org
Description:
 0x - Open Free Fiasco Firmware Flasher
Changes:
 0x (0.6.1-1) experimental; urgency=medium
 .
   * New upstream release
- Contains a few security related fixes (memory corruptions  leaks)
- Support for -t (filter by type) for -e (dump images)
- reattach kernel driver
- minor fixes
Checksums-Sha1:
 18fb5d2ec53a16f431c107f00b7b92b2d50b9de5 1808 0x_0.6.1-1.dsc
 898d5c05c0835c340b63ff3e8e2c458d29b93bd8 58863 0x_0.6.1.orig.tar.gz
 14db5280407103f95e5af782534d9b13b322e986 4144 0x_0.6.1-1.debian.tar.xz
 fdf43a757c3565880496ea2a96add21b0aa3e7f7 51756 0x_0.6.1-1_amd64.deb
Checksums-Sha256:
 b448baf88aa14a9a17ba0e70d01c06a3267f775e4fdfd6e937663bd851b85807 1808 
0x_0.6.1-1.dsc
 42bfe4ecf0465f2f74d3624530f9ec18ce1dbd53646ce393d6d57b0e3289d69c 58863 
0x_0.6.1.orig.tar.gz
 78c75a606c8135e29cf30d10999ae9ea8ddec3da6e602ef9e6f8d3d763271aa5 4144 
0x_0.6.1-1.debian.tar.xz
 f25359842305b26fe1bb753501c5a1f7234419c2dc1eddd360ad5830b1fee43e 51756 
0x_0.6.1-1_amd64.deb
Files:
 163ee212dccf39b701be744a36a3ccfe 51756 misc extra 0x_0.6.1-1_amd64.deb
 2acbcd7ca47b750d89ad201fda83644f 1808 misc extra 0x_0.6.1-1.dsc
 83b7929d3930062c42fcf7e4e359c997 58863 misc extra 0x_0.6.1.orig.tar.gz
 67e3b5635c0de6c89d2874e19c03d5a3 4144 misc extra 0x_0.6.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUig5HAAoJENju1/PIO/qaZisQAKj+689+UF84akbCbYvdSdcs
7MQv0bIPfNsYHEbnB8/jr2oEvpm0Igql9iLne9c7c5NpgBT4otcN8YShVoWd2WzJ
eRUnkCupX6Oo3kBjPSHJvshFdmm4eudxodIZuDzouPZdFV5W7/q6QybRbdT9i/2I
C+Ektl6zHC2uosoONKiwGcRPexAm8mmrnSH+LMj2TUoxuITiPOsnfPIUxPPB6Jym
6oLd/63gE+rk0m4p95uf2DDQgohZNs7CN4OxIldGNidvr8rkaF5hlXwHsl22zJ1d
1twbCVsnvN57qe2MNXnOf9IlBi1qdOTnbJsh332yelv7tVIV9/wbD1KGVOvvws7Q
PsATa4qiSHE485CcGqhnZdAExMelOM027kRI2Id1EpVA+Q8cdBiBjiBuTQqJ0ekY
R8lpk6JXcAxOlxY+vlglZhLd5nXyUI0W/a6SBGcDFD80q6y3nspGwCaLNCP2VHre
8371tGOySnX8zHiulAJPwNartdra/Vng4OlGHnS7Atn+x2ZeXh4Rml3J0LoBBR7V
abjTOo5Q394I3JdUjoOuVGIjfOfOjd1As+s29DmXu47OBX7PpYpYTH/U/aHzKEk5
m8lIuOIB+LKEAVeEQE6JSmnrdPSkjjh9u1tHCD2cSQvj57d9jrd4IJRujaomj1rV
pCWpaCSvVOw1FUrgczKB
=8kI8
-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/e1xzbba-0004g1...@franck.debian.org



Accepted cross-gcc-4.9-powerpc 7 (source amd64) into unstable

2014-12-11 Thread auto_build_all.sh script by Dima Kogan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 10 Dec 2014 21:18:34 -0800
Source: cross-gcc-4.9-powerpc
Binary: cpp-4.9-powerpc-linux-gnu gcc-4.9-powerpc-linux-gnu 
g++-4.9-powerpc-linux-gnu gfortran-4.9-powerpc-linux-gnu
Architecture: source amd64
Version: 7
Distribution: unstable
Urgency: medium
Maintainer: Wookey woo...@debian.org
Changed-By: auto_build_all.sh script by Dima Kogan d...@secretsauce.net
Description:
 cpp-4.9-powerpc-linux-gnu - Cross-gcc (cpp) targetting powerpc
 g++-4.9-powerpc-linux-gnu - Cross-gcc (g++) targetting powerpc
 gcc-4.9-powerpc-linux-gnu - Cross-gcc (gcc) targetting powerpc
 gfortran-4.9-powerpc-linux-gnu - Cross-gcc (gfortran) targetting powerpc
Changes:
 cross-gcc-4.9-powerpc (7) unstable; urgency=medium
 .
   * rebuild for 4.9.2-7
Checksums-Sha1:
 3f6f82343870e8bcdd93ce5f9f6212db4ef40461 1864 cross-gcc-4.9-powerpc_7.dsc
 fef64ca5823dd1ec3dfc369f313d6554b230f443 11740 cross-gcc-4.9-powerpc_7.tar.xz
 b082d75db6136f672b49e6a590df3ec5688b9b9b 5066618 
cpp-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
 7b3c585a852ceb7db52bc569675531cddf75d9de 5072704 
gcc-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
 f330f97c401bff1c99bef8e7e60496c0669c3ce0 5341754 
g++-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
 35233ae4920991adc213efd3a765e9c0c898bdd1 5203998 
gfortran-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
Checksums-Sha256:
 af7584a0d508894a21fed7acca3962a646ccecb3f1889d9f15f0621861c7e176 1864 
cross-gcc-4.9-powerpc_7.dsc
 0e2fde8123dd3af27554d729d953055c54768007144307aa058e09a1169c8612 11740 
cross-gcc-4.9-powerpc_7.tar.xz
 60add89d2e229878025ae63c7618bc5394046cecfbf4658e559472251c24b71b 5066618 
cpp-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
 0483b26bad4ee0faaad34142f6227dbcc055110938d04ee871dd5309c79aa2f6 5072704 
gcc-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
 19c2a5ef5586c5cbe8d2706f7b16b2067555846d11a9c87ba7fc49531aa79fb1 5341754 
g++-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
 12579e8500952cc4ee1c4b6fa284308a11231322451d6943daaf52abd49b5fd1 5203998 
gfortran-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
Files:
 dc4345265cd5f7188939c91a13665124 1864 devel extra cross-gcc-4.9-powerpc_7.dsc
 162ffca89fec7d309438f5ae5aac9ed5 11740 devel extra 
cross-gcc-4.9-powerpc_7.tar.xz
 412a820e19f4adff1e27a973ca1055b3 5066618 devel extra 
cpp-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
 728eeb7c72d48538990b6afa1fc88c99 5072704 devel extra 
gcc-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
 ca95e80f3df05f840183e177064ce292 5341754 devel extra 
g++-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb
 1385e5d441e589a1d814f23a7bad9a04 5203998 devel extra 
gfortran-4.9-powerpc-linux-gnu_4.9.2-7_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBAgAGBQJUiiGFAAoJEADolDnyKCkrqRIIAIedBlEiCeFYsTOllydF4KXN
pOzGAb9JrBFJ9Zi2Lpx7ZWMcR7oY//hNRGmtu9TS/pRF2ophUK68A52Y1sL1H+sT
RfKfVQH4BtY2oVUWBPMxvh6EoNvBY5m1uNpFq++3duc9Spgs0o+LgJQ2GfWLKdjW
qTLMg/dqiQ9pJUVGt6g3YPyO40RCCjNnIANvVbg/oEUKLxWtE2hkwfxiqLI9giYt
4p8oO2KXY2H/qjWRZpyW53r01XPAsfXjZBAJvGuAWT7wZ2BFKseu4N6UqS0yH8oq
PjkhMViXKhZbbU0h0/quVQAvGB73iJIPcMIvFfLshBO8zVTmtmK4aORnlEO+od4=
=Q+6h
-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/e1xzcmv-0006y2...@franck.debian.org



Accepted cross-gcc-4.9-armhf 7 (source amd64) into unstable

2014-12-11 Thread auto_build_all.sh script by Dima Kogan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 10 Dec 2014 21:18:34 -0800
Source: cross-gcc-4.9-armhf
Binary: cpp-4.9-arm-linux-gnueabihf gcc-4.9-arm-linux-gnueabihf 
g++-4.9-arm-linux-gnueabihf gfortran-4.9-arm-linux-gnueabihf
Architecture: source amd64
Version: 7
Distribution: unstable
Urgency: medium
Maintainer: Wookey woo...@debian.org
Changed-By: auto_build_all.sh script by Dima Kogan d...@secretsauce.net
Description:
 cpp-4.9-arm-linux-gnueabihf - Cross-gcc (cpp) targetting armhf
 g++-4.9-arm-linux-gnueabihf - Cross-gcc (g++) targetting armhf
 gcc-4.9-arm-linux-gnueabihf - Cross-gcc (gcc) targetting armhf
 gfortran-4.9-arm-linux-gnueabihf - Cross-gcc (gfortran) targetting armhf
Changes:
 cross-gcc-4.9-armhf (7) unstable; urgency=medium
 .
   * rebuild for 4.9.2-7
Checksums-Sha1:
 251f1bfe8f43a4ee775517061a7c73e3d94e686a 1868 cross-gcc-4.9-armhf_7.dsc
 2891c261b674e24512d83ed49b0a545b79315091 11696 cross-gcc-4.9-armhf_7.tar.xz
 fadbb22d40e142f1e1f0147ce2b30139e5cfdefa 5200362 
cpp-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
 9bcf595cd7fa83ef6a8ad3fddf2b32dda63a9e15 5213938 
gcc-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
 a153bcdc30c363f4af23d905eb54012f2a58997d 5473510 
g++-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
 1389271996f19cf22b87b4772d3804333b4b753a 5341636 
gfortran-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
Checksums-Sha256:
 347bc256713ba37dbbc79bb1614016212cbf4d9905b77beb042b3b14dce76ca3 1868 
cross-gcc-4.9-armhf_7.dsc
 be689c006cb17021cfef40f8e2062261ee91f3f988031a4bffb882ddc5b22e6b 11696 
cross-gcc-4.9-armhf_7.tar.xz
 74b91814fa3f1d04e505bafe893999f33e98b34368176bc2311f065a20cb58d9 5200362 
cpp-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
 163c6ff0ed28ecc72758387927ec5009d5a42b102be16578d47fe114e0ddd4e9 5213938 
gcc-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
 d8c5352aa4669ab8a095574864463db3832c6d786cc4371f9a500d96fb2e51bf 5473510 
g++-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
 b0a902976bb83d88d3acf660cb3ede3a550569780f53d4c5df73bef0ce8bd44c 5341636 
gfortran-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
Files:
 39e5ca832916a76646a0a76cf02ba0ea 1868 devel extra cross-gcc-4.9-armhf_7.dsc
 481af2e65234d1a3d242b5c23c6b9f86 11696 devel extra cross-gcc-4.9-armhf_7.tar.xz
 6db3eb8684c78576e2fe6bbf1a7d570c 5200362 devel extra 
cpp-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
 58467687f1896630e4a11a3e3ba2ec7d 5213938 devel extra 
gcc-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
 89ce8cea4cf48f1206ac7dc5bcf7 5473510 devel extra 
g++-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb
 4cda3b2bc4104d63fe8118dbba73bed4 5341636 devel extra 
gfortran-4.9-arm-linux-gnueabihf_4.9.2-7_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBAgAGBQJUiiB6AAoJEADolDnyKCkrlHcH/3bXJnLFFTE93TcEptNBZzl7
S3NJ7Zk9exkauoyp6XHqlSUodzdMsly0W4BrVF1ukomtN5qJzeI8BkYDdp8rn8dL
t+rYq/kigdg3sEr9K2T7P1/7q/sNzmTuJMMtgN05R+mhjtmYUDH6EAT/0SSoeUqs
UGlVPayyCkM22IWSY7DUL6f5/LoCvqc8JIXrZhO5CSCcVDThJ9JCXcsK0RZKLTi1
C4wyEgJbBDSsjn1JvGIJM3MuhlMBl2xOIfonSGPO4av5vVbLYVto8kp+MB9UVx4g
2Fu6RlIa6Za4xglMk1lD4yDVSF7ajUCWSSyyxrXFrGZOTZN+6UEp+9uh5PBPzqo=
=lwRc
-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/e1xzcmg-0006qw...@franck.debian.org



Accepted python-mne 0.8.6+dfsg-2 (source all) into unstable

2014-12-11 Thread Yaroslav Halchenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 11 Dec 2014 09:33:18 -0500
Source: python-mne
Binary: python-mne
Architecture: source all
Version: 0.8.6+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Yaroslav Halchenko deb...@onerussian.com
Description:
 python-mne - Python modules for MEG and EEG data analysis
Closes: 768730
Changes:
 python-mne (0.8.6+dfsg-2) unstable; urgency=medium
 .
   * debian/{rules.patches/changeset_b9d4d*}
 Absorb upstream patch and specify not using HOME directory for generated
 pre-computed data, but instead use tempdir. (Closes: #768730)
Checksums-Sha1:
 0af07e8e0007a380e8b1408186e627afa165451e 2358 python-mne_0.8.6+dfsg-2.dsc
 e07839e85c15a8ac544cd0094ae95b0ea60af0d8 31812 
python-mne_0.8.6+dfsg-2.debian.tar.xz
 805894b59a26f787043f443d8f6256e354e794c3 4022908 
python-mne_0.8.6+dfsg-2_all.deb
Checksums-Sha256:
 6aca37b287151dd0560fb915f071f84073f0a6efb08ab693251ba5950e1fa60a 2358 
python-mne_0.8.6+dfsg-2.dsc
 186ac789bd2ad181529f90a710888ebd6ae83c26215785eb366ca5acc1372a0b 31812 
python-mne_0.8.6+dfsg-2.debian.tar.xz
 a6d647212567477d64a585262361e707dda7a11624a7b15927c32713599e88a3 4022908 
python-mne_0.8.6+dfsg-2_all.deb
Files:
 40cf8dc244eff6133fc3cb2bc3f8aac4 2358 python optional 
python-mne_0.8.6+dfsg-2.dsc
 176049eeb5decf4504a980d43b792847 31812 python optional 
python-mne_0.8.6+dfsg-2.debian.tar.xz
 281f5332911786728f87fe326ca61b44 4022908 python optional 
python-mne_0.8.6+dfsg-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUijL4AAoJEKLeI1Bi2jP67IYP/3rthuijua0X6vRWP8pg2lbj
HHTuSKSOC1nUbwB0C5D/NH2+wpCsTKSyF7kMb+DkimWUUZQXDZFhGD3ORkj83l1i
wzgOn/nR/1tKkBfHxaJbPVi4i3MJGHYORlLeC+eP6np1MaRK/MAdlxs2hiBzSYVC
YFYoCQWJNsIdsaUFMsZhIvSq/DsoRua8th3CbZIJusf41y88NhZDQTusnHulthAw
Ut5Pblek+DDso4sTisXCxeubYnes+oqI8sk/YFWU+Pbk2qtk3OgOaIRpKDcweVjp
BVsEysPaK9EZr/VMJE7GIcHysBVwidw+riFnSOAvizW/3IAhUcROxh4Elgklniwc
XE3HO2e6kUNHs0hV4JQe+lS+kE+7IdAVx2eNcWcrVtYfSWaglSqpiFxiGWRQOJMS
AJJPScWf3Kt+TfqP5CTOyE2mkjErMrWFnFPvcehMeCVwiN1aXb3VqgqEuDib+yVg
4HFA2dbEOlJVYcffvVYQCirw1UcgNR1a4iRCnaC13byRGoQ4GKz6jWm3yLqhgKT3
VpKc77YP8+5L6TvhNx8DQHZLANCwiLIrWRJnoiK8km9SSp0+LBT/U5VD763YUpT3
uXZUKo/XBIXNyC/Z6elTrxjUNLozt9Tnn8ltf9LOIVjy4qsBSs1JIHczmdHct5C0
B+rZ6vgO+zed5wGA+xjR
=2h3F
-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/e1xzdws-00061i...@franck.debian.org



Accepted xfonts-traditional 1.7 (all source) into unstable

2014-12-11 Thread Ian Jackson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 12 Dec 2014 00:20:18 +
Source: xfonts-traditional
Binary: xfonts-traditional
Architecture: all source
Version: 1.7
Distribution: unstable
Urgency: low
Maintainer: Ian Jackson ijack...@chiark.greenend.org.uk
Changed-By: Ian Jackson ijack...@chiark.greenend.org.uk
Closes: 692144 770366 772860
Description: 
 xfonts-traditional - Traditional fixed-width fonts for X
Changes: 
 xfonts-traditional (1.7) unstable; urgency=low
 .
   * Use interest-noawait to fix dpkg trigger cycle.  Closes: #772860.
 Thanks to report from Guillem Jover.
 .
   [ victory victory@gmail.com ]
   * Japanese debconf translation.  Closes: #692144.
 .
   [ Adriano Rafael Gomes ]
   * Brazilian Portuguese debconf translation.  Closes: #770366.
 .
   * Source package now contains .gitignore which git-buildpackage
 mistakenly had dpkg-source strip out.
Checksums-Sha1: 
 f5e636962e466a9c6ee4d2886e7d2fbf5f64ff4c 1185 xfonts-traditional_1.7.dsc
 df2e1a871ec343d3ed3aba420e6b0b2978e731ec 404736 xfonts-traditional_1.7.tar.gz
 5c14f2078547a35f7a2d1c6c1afa0e472576ecda 26252 xfonts-traditional_1.7_all.deb
Checksums-Sha256: 
 bab1e5c5fe05daeb0dc6e36613408bdbbdcce7dd476acabd22aaed61909ef3d1 1185 
xfonts-traditional_1.7.dsc
 ef649d272eaf14d9e914f52ff22a1b03fef621286bb73383b13a275b933a458f 404736 
xfonts-traditional_1.7.tar.gz
 195fe1d19e4e550c7250c58292d8845006b478ce49fac058e9d5e39407bd3a9f 26252 
xfonts-traditional_1.7_all.deb
Files: 
 b4cef4e495dd03f5befd2badc34bc62a 1185 x11 optional xfonts-traditional_1.7.dsc
 6552e42c170a0e4a0ba3b3f4a005dfa1 404736 x11 optional 
xfonts-traditional_1.7.tar.gz
 54f1a9e234dba933d5cb653cbd0b90d4 26252 x11 optional 
xfonts-traditional_1.7_all.deb

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

iQEcBAEBCAAGBQJUijX5AAoJEOPjOSNItQ05lmoH/3r5vPDIULlfp0IAVr6RlYX4
5uvmVrJWwB6PodF8KokAJdk59NJaRRUwAAOklDtS4OrXQbWA7d60dfaTiEYCOFyq
2jXSl19pC0TyRoVVKGkTGqnOyWYAyDowAfxfpddmCy0wj1ZpURmRR8YVEUV6aZmF
fggp7E4ZmL3yXNEFgcVkv1/DsdT2hhqBWlZaBuuqlmuJqjyB1LkljL/bFkQRbu7v
ZkC9kUCH4OMIaaKskqs6Y05wkjfpDIP4GiIdd0526XBv2+BvEE/38k5LXSaIK5yN
QtFec2uT49heqp5vZmKo+oq3SQgUJ35MJpVBRQEjqWrBRWLQefbvY++5LO/ufBM=
=upPv
-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/e1xzebc-0007dg...@franck.debian.org



Accepted hurd 1:0.5.git20141210-2 (source hurd-i386 all) into unstable

2014-12-11 Thread Samuel Thibault
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 11 Dec 2014 12:08:08 +
Source: hurd
Binary: hurd-libs0.3 hurd hurd-dev hurd-dbg hurd-doc hurd-libs0.3-udeb hurd-udeb
Architecture: source hurd-i386 all
Version: 1:0.5.git20141210-2
Distribution: unstable
Urgency: medium
Maintainer: GNU Hurd Maintainers debian-h...@lists.debian.org
Changed-By: Samuel Thibault sthiba...@debian.org
Description:
 hurd   - GNU Hurd
 hurd-dbg   - GNU Hurd (debugging files)
 hurd-dev   - GNU Hurd (development files)
 hurd-doc   - GNU Hurd manual
 hurd-libs0.3 - GNU Hurd (libraries)
 hurd-libs0.3-udeb - GNU Hurd (libraries) - udeb (udeb)
 hurd-udeb  - GNU Hurd - udeb (udeb)
Changes:
 hurd (1:0.5.git20141210-2) unstable; urgency=medium
 .
   * patches/ports_h_loop.patch: Fix header inclusion loop.
Checksums-Sha1:
 0079b6ec8f5f9fb23c293f26a8c2740c381e66e5 5055 hurd_0.5.git20141210-2.dsc
 bed6cffcb73229c095a6dfae65a82ca794420ac1 103143 
hurd_0.5.git20141210-2.debian.tar.bz2
 5d4700f642aafdab48f73d5a564fd78d576fb86b 291064 
hurd-libs0.3_0.5.git20141210-2_hurd-i386.deb
 a0a28aa14950e20d2b7cf62fcde51d21a3a724f3 1425156 
hurd_0.5.git20141210-2_hurd-i386.deb
 64f09e9eae0c49cfdd99c71865c3ce4506b73418 3187670 
hurd-dev_0.5.git20141210-2_hurd-i386.deb
 a81a39d12c0d1d76420d2c071f3ba9617af8c1bf 3308828 
hurd-dbg_0.5.git20141210-2_hurd-i386.deb
 c9e02a10c9eba80bb4e44e968b3f460b91eecfeb 164608 
hurd-doc_0.5.git20141210-2_all.deb
 de57a7d5ebbd99ecd5d12622bad6945c40b1c7d2 269474 
hurd-libs0.3-udeb_0.5.git20141210-2_hurd-i386.udeb
 f1073d149285848dae218d120e2444611f23ace4 1436322 
hurd-udeb_0.5.git20141210-2_hurd-i386.udeb
Checksums-Sha256:
 1743b904be4767f2345f6fc067c315c0d18419d625068403dfb06f1c54fb662c 5055 
hurd_0.5.git20141210-2.dsc
 3ef633f525fe60f644b0fe8be5d041dd2c292d30d3e8386c6c9768a271d44a8c 103143 
hurd_0.5.git20141210-2.debian.tar.bz2
 d7bd937180003de8e8e0e051b1da77184bb295452fb90eba7e3baad1abe88aee 291064 
hurd-libs0.3_0.5.git20141210-2_hurd-i386.deb
 794028c7e97bfeeae81e641d7771f6251fa8bf0e07dd627180c0fa655fe265f6 1425156 
hurd_0.5.git20141210-2_hurd-i386.deb
 be9009c6752301819d5189bdfe30d78bbbe4231b28d5cfee69ea3151a418e416 3187670 
hurd-dev_0.5.git20141210-2_hurd-i386.deb
 8e9940d1e2588dfec01a3e7af3121c359424f8e99a41b8e837072d8550311e4d 3308828 
hurd-dbg_0.5.git20141210-2_hurd-i386.deb
 ff5ba9ce3a0d889ae09adf08e1a1d3967f921d2db64399fb7cfe5bd5cfad3e42 164608 
hurd-doc_0.5.git20141210-2_all.deb
 147b20d913778ea857c9ad0edcc0fde2821b688c63c69137d30a7fea0599e906 269474 
hurd-libs0.3-udeb_0.5.git20141210-2_hurd-i386.udeb
 2e838622bfe47a5577c0172161fc9a285d36b46f42ff9c4a193b28c62a4d09ff 1436322 
hurd-udeb_0.5.git20141210-2_hurd-i386.udeb
Files:
 e888ee4d172e3d4f1214a64dea82d7bb 5055 admin required hurd_0.5.git20141210-2.dsc
 cc8f6695fe63e91ff6a8891e1aba7237 103143 admin required 
hurd_0.5.git20141210-2.debian.tar.bz2
 ddabae105ddd0a7dbe389823b2616b92 291064 libs required 
hurd-libs0.3_0.5.git20141210-2_hurd-i386.deb
 587d3b0588d8af010c45c021c3ad68c4 1425156 admin required 
hurd_0.5.git20141210-2_hurd-i386.deb
 469fa89d930ceac3ddfaecfe8c93945e 3187670 libdevel standard 
hurd-dev_0.5.git20141210-2_hurd-i386.deb
 00124aad83a4feb82d2b9e48bee0e94f 3308828 debug extra 
hurd-dbg_0.5.git20141210-2_hurd-i386.deb
 feaeac5f43055e8f6c14ff51d8d37a3e 164608 doc optional 
hurd-doc_0.5.git20141210-2_all.deb
 13c7c91e25809de3ab335dc15ce52ccd 269474 debian-installer optional 
hurd-libs0.3-udeb_0.5.git20141210-2_hurd-i386.udeb
 621844e5d773a0fa725d1854a0ce5653 1436322 debian-installer optional 
hurd-udeb_0.5.git20141210-2_hurd-i386.udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUii0eAAoJEBH0lP5vGG7NTRgQAJqxCtED9dqBjNCNAkPkBeui
E3nd2Yfa6RqEuUpLnKqOnUu9bdwlibj1ANL/A3udEy6kG7UJbODoNlxSgA/iH/uI
X6kkripmzE3fZKBiToGkkwrJWONZDRIFXxXgupH4bU9XR8ef3EmUbYurLYuAlONw
9TwlZb1EJs1htjYBei7XXVbQivwr7hAWZIBvyYuczgPg/XN9FiY8UelvEJi4R68H
NsJdHUkFrQPc2I1/3wz7JMlmd1l4/jamF+Zi3HmUM226f55tZ/Xw7VTddJuvO2+t
7lGKqb3D1ccX3P/7P2b2VrrrugqFHzLourqvn9NG0INqLbP1L6j15OeiXWfKmwxT
HcWWofl0UdKY3tpFWi9CjwW0d5GHhh/dNyyqTCd6W5D7bT5zUCFBm4kTsesZUhXf
BOx8DP55ZdWgswpT/L50rdEXGDZoBiqjBEMTgsk8rTSdEJddAFx83bZhd0Pcc/yA
1vmbyBp7R0qwjeiy9mVmALyo25vsJQw5/zruj93a11WzV5Tix6kM4cd8JN1sApvM
BkTHS8QyqTwl5smFPEkv070n8YEVd4nk2AFzmnn1rv+sZDsuVTlLzFpfK2Z2pTG7
mUlToDqcJXPDM+R+EbmQpQr7Pxc7/GbNYeQV1tlPi2K6sPJXsPun/1VTlaCYM9i7
+IjA1b2t1gCJ8NUKhR57
=YVjC
-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/e1xzeq4-0001jl...@franck.debian.org



Accepted php-sabredav 2.2.0~alpha1-1 (source all) into experimental

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

Format: 1.8
Date: Thu, 11 Dec 2014 11:38:09 -0400
Source: php-sabredav
Binary: php-sabre-dav
Architecture: source all
Version: 2.2.0~alpha1-1
Distribution: experimental
Urgency: medium
Maintainer: ownCloud for Debian maintainers 
pkg-owncloud-maintain...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description:
 php-sabre-dav - ${phpcomposer:description}
Changes:
 php-sabredav (2.2.0~alpha1-1) experimental; urgency=medium
 .
   [ Evert Pot ]
   * Deleted long-deprecated classes.
   * Removed deprecated Client methods.
   * Releasing the first 2.2 alpha.
Checksums-Sha1:
 8fcbc758d11314e28ec720073f114585f1739de5 1936 php-sabredav_2.2.0~alpha1-1.dsc
 974448c468d9056baf5c97cd0c1fdc3c980a2680 425910 
php-sabredav_2.2.0~alpha1.orig.tar.gz
 b0a2ef18a68f5a16821f95403facda9526707704 7168 
php-sabredav_2.2.0~alpha1-1.debian.tar.xz
 09d94db7ab973fabd1b156fb013cb1c9797cb452 227310 
php-sabre-dav_2.2.0~alpha1-1_all.deb
Checksums-Sha256:
 ed4d7c3108ddaf67feda4c8fd3800ac73a1548864ab472765283d26682c6a7dc 1936 
php-sabredav_2.2.0~alpha1-1.dsc
 6e23e81eea0bde702d15fc4d1405953ecd90cd01ac2b7117fb872565e79ad57d 425910 
php-sabredav_2.2.0~alpha1.orig.tar.gz
 4ff0dc3f00c100861fd5dc1399a936dd39b2b29e6d0a47aa20574e338087c110 7168 
php-sabredav_2.2.0~alpha1-1.debian.tar.xz
 04c02628f9d028720d587b1cb34280572790546fc4fd63f118fb24c441acf139 227310 
php-sabre-dav_2.2.0~alpha1-1_all.deb
Files:
 e652dbb0e36495aa3db523391d771ea9 1936 php optional 
php-sabredav_2.2.0~alpha1-1.dsc
 28a7103d78dc0f6753c52aaac74ca87b 425910 php optional 
php-sabredav_2.2.0~alpha1.orig.tar.gz
 11d6a0ab017eda449a663209bfd75287 7168 php optional 
php-sabredav_2.2.0~alpha1-1.debian.tar.xz
 55b930b02900e7749424820ab3c28678 227310 php optional 
php-sabre-dav_2.2.0~alpha1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCAAGBQJUicscAAoJEAWMHPlE9r08btcH/A0hxP2cb9e6g+Z81xSRV242
y3vpxj3tMsZP1z4SoYZfYpvjBzVGVqNod36eOCvip2G2RlRZKJgxkvFtEd9Yu1w9
vqpNMWiKQZFP14ORgs7McOlG11cmOseZa8ziD3D2P8vjfSI1z0OoSn3Xzm/TgApl
iTiBmpJInxki6RlhctGU+EJ5o+/+gh6/466I9pk2au6dLvndh5V/cBd6fKehSLwr
b8FEKy3ceCL0MnkbjsPp9Ejo9a+T8TQ1bQYDLkR/O8PhTCnMuxy32FRNNz5oKe7I
HQA6o9OGuRarM7kjfwiVvki3q5evrbOr+WAX/bn+OiInAhLDfYNa5Y6327fXmns=
=ZeIA
-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/e1xzf7k-00070l...@franck.debian.org



Accepted snort 2.9.7.0-4 (source i386 all) into unstable

2014-12-11 Thread Javier Fernández-Sanguino Peña
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 09 Dec 2014 20:37:03 +0100
Source: snort
Binary: snort snort-common snort-doc snort-rules-default snort-common-libraries
Architecture: source i386 all
Version: 2.9.7.0-4
Distribution: unstable
Urgency: low
Maintainer: Javier Fernández-Sanguino Peña j...@debian.org
Changed-By: Javier Fernández-Sanguino Peña j...@debian.org
Description:
 snort  - flexible Network Intrusion Detection System
 snort-common - flexible Network Intrusion Detection System - common files
 snort-common-libraries - flexible Network Intrusion Detection System - 
libraries
 snort-doc  - flexible Network Intrusion Detection System - documentation
 snort-rules-default - flexible Network Intrusion Detection System - ruleset
Closes: 770882
Changes:
 snort (2.9.7.0-4) unstable; urgency=low
 .
   * debian/control: Updated deprecated VCs URL to
 git://anonscm.debian.org/pkg-snort/pkg-snort.git
   * Include Snort tools u2boat and u2spewfoo to parse Unified2 log format
 files (Closes: #770882):
  - debian/snort.install: Install the files in the Snort package
  - debian/{u2boat,u2spewfoo}.1 create new manpages for the tools
  - debian/snort.manpages: add the new manpages to the package
  - debian/snort.dirs: create usr/bin/ for the new tools
   * debian/rules:
  - Use dh_prep instead of dh_clean -k
   * debian/snort.manpages: Add the manpage for snort-stat, which was not
 included in the snort package (but the script was)
   * Rebuild with the latest daq library upstream (libdaq2). Libdaq0 is
 deprecated/obsolete and not maintained upstrea
Checksums-Sha1:
 9c8329f097e028c64251f16c5f29d9f8a39cc143 2407 snort_2.9.7.0-4.dsc
 cb8f4436afc94c14c09b52fa9b42fcb36e5ae977 678692 snort_2.9.7.0-4.debian.tar.xz
 4905ee74731d1e8f54932278d30f14c9d37df743 861576 snort_2.9.7.0-4_i386.deb
 d2cbb02de91694fc0cd2e57c6e3299fc42860255 690916 
snort-common-libraries_2.9.7.0-4_i386.deb
 bea598a80b9f40e25766aaab25f27c9230c3567d 242754 snort-common_2.9.7.0-4_all.deb
 0187cf56efdf0c24218424efc832adb520e6cc47 2097782 snort-doc_2.9.7.0-4_all.deb
 cd69fa1ad61f06b1b22d60b534bc29eb4e47e728 340458 
snort-rules-default_2.9.7.0-4_all.deb
Checksums-Sha256:
 6de36257b932a5c56ad7c910858307689a0c120b7accae76268bd63f7baa469d 2407 
snort_2.9.7.0-4.dsc
 63f8debfea1f9a98c551e5f7db75ad2d985621b8366a70719fc3bcd7efdea6b9 678692 
snort_2.9.7.0-4.debian.tar.xz
 d044181ddbdab7bfca003acd3a9812934c0767c1d7716c0e7d941cb4e4d46af7 861576 
snort_2.9.7.0-4_i386.deb
 d03baf793ce35bee9f9715cbb21db3ad783dc3a0207322bcca7a0348aa7be5bd 690916 
snort-common-libraries_2.9.7.0-4_i386.deb
 e787626685df219eae9470e249240c494584294c61decd9f8f992a671fe319df 242754 
snort-common_2.9.7.0-4_all.deb
 d6972c837660161886ff887c3ec037979f223bd0e6ad3e76ade51712f3a515ca 2097782 
snort-doc_2.9.7.0-4_all.deb
 d8c3dfb58b8ff32575a77be33774b410e37903af0a7b69adc0dd6b8f2fce3cb4 340458 
snort-rules-default_2.9.7.0-4_all.deb
Files:
 3c2a2852752c39db60accade30b2728d 2407 net optional snort_2.9.7.0-4.dsc
 350e3178d316a2958e4c4021f4e8862d 678692 net optional 
snort_2.9.7.0-4.debian.tar.xz
 b8edaddaca0e060c7363dbd484ce04af 861576 net optional snort_2.9.7.0-4_i386.deb
 b5e6ea76095ccc4fe39045dbd1000623 690916 net optional 
snort-common-libraries_2.9.7.0-4_i386.deb
 8409b0879b5117c3b4837841a93ba62a 242754 net optional 
snort-common_2.9.7.0-4_all.deb
 9ec2dbe455271ca30c9cf001d89a2261 2097782 doc optional 
snort-doc_2.9.7.0-4_all.deb
 24126907f552a33cefd4e69bda8b85f6 340458 net optional 
snort-rules-default_2.9.7.0-4_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVIpCgTg8os7RvajdAQgPhQ//SLQdsZ5UB8QpgWyg3X7V538DnuiSSbXn
dkUxqtL4Sz7zUPwVDhk7fXBuE7oXDgqhR2zQ5gcVEuCx8m//QlT+5EjyOIBYXNWD
YTClINWlkjPgNMjoGETjvVVkx9HIHJ4NWrWcPaxAbCPS9brJji3KVdmgbX61ZzRe
TAmyidrjZsRdmtI6MJHWS0xmVRAd5oOOOWCzPNtPMhlWVVfN3WruWzyQtQ88JA9/
kTsQmnXUvIItAihKuQApUtiK1J6WTu3uUolkwsv6klNVOOMXgKovVVP0ONYhVbX+
2P87AEsbbOhKqy3bnqEVIVwCAdjMfiUWcbCDJ1DRDtx2y05dsRhhBT4uX84hrcAA
gzGQJ4SYGD7Krx8+HimTTEItC+ckikA+6+KoXgtDqe4JROwKSxrNUXK9bK67C+cT
+Hk2pJCv3Aw72B2toHbZa57oHXJSKbF4vHI9OoywD31ReukJmoODxdomp18ftJy8
2iBUn0lBf7lODoBe8hG1CONJLkgPe1llARB/QtEw5aMWlqkFbEiIzMMsUwfQuwqT
5hlzdA4RgQGB0NNct9nAxfKhb77Ml37mhoafGPOa2TCzV/oH0mPuT6/I5kTeD6TI
09ys5xwQDWBzOV7HgS7TRn6YwMbxcu+wSdo0LxFltC07AsOxak1PVSaTrNO2xY37
Oi3/zRUq7b8=
=AStF
-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/e1xzf89-00077w...@franck.debian.org