Re: Non-identical files with identical md5sums on Debian systems?

2013-08-05 Thread Michael Welle
Hello,

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

 Fabian Greffrath fab...@greffrath.com writes:

 I do occasionally check for identical files on different systems by
 comparing their md5sums. So, just out of interest, could someone tell me
 (how to find out) how many non-identical files with identical md5sums
 there are there on a typical (say, amd64) Debian system?

 Unless you have a collection of MD5 collision attacks, or have installed a
 package that includes a sample MD5 collision, the changes are quite good
 that the answer is zero.  MD5 is no longer considered cryptographically
 strong, but that doesn't mean it's not a fairly random 128-bit hash.  You
 need a *lot* of files before even the birthday paradox will give you much
 likelihood of an MD5 collision that wasn't intentionally constructed.
exactly. And why don't you run a experiment, Fabian? I guess you have a
typical Debian system at your hands and calculating the MD5 hashes of
all distribution files burns only a few IOPs and CPU cycles ;).

Regards
hmw

PS: Let us see the results ;)


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/8761vkljwm@luisa.c0t0d0s0.de



Re: Non-identical files with identical md5sums on Debian systems?

2013-08-05 Thread Chow Loong Jin
On Mon, Aug 05, 2013 at 06:44:49AM +0200, Fabian Greffrath wrote:
 Hi all,
 
 I do occasionally check for identical files on different systems by
 comparing their md5sums. So, just out of interest, could someone tell me
 (how to find out) how many non-identical files with identical md5sums
 there are there on a typical (say, amd64) Debian system?

How about this?


#!/bin/sh
cat /var/lib/dpkg/info/*.md5sums | sort -u  md5sums-files.txt
awk '{print $1}' md5sums-files.txt | uniq -c | awk '$1  1 {print $2}'  dup.txt

while read md5; do
grep ^$md5 md5sums-files.txt | sed -re 's/^[a-f0-9]+[[:space:]]+//' |
(
read file
shasum1=$(sha256sum $file | awk '{print $1}')

while read file; do
if [ $(sha256sum $file | awk '{print $1}') != $shasum1 ]; then
echo $md5 $file
fi
done
)
done  dup.txt


I tried running it, didn't find anything on my Ubuntu installation.

-- 
Kind regards,
Loong Jin


signature.asc
Description: Digital signature


Re: Non-identical files with identical md5sums on Debian systems?

2013-08-05 Thread Helmut Grohne
On Sun, Aug 04, 2013 at 10:24:59PM -0700, Vincent Cheng wrote:
 On Sun, Aug 4, 2013 at 9:44 PM, Fabian Greffrath fab...@greffrath.com wrote:
  I do occasionally check for identical files on different systems by
  comparing their md5sums. So, just out of interest, could someone tell me
  (how to find out) how many non-identical files with identical md5sums
  there are there on a typical (say, amd64) Debian system?
 
 The closest thing to what you want may be dedup.debian.net, but I
 don't think it lets you filter out non-identical files.

Indeed this task can be solved with the software backing
dedup.debian.net. The general assumption is that sha512 is
collision-free. I can give a rough idea on how to do that:

1) Obtain the software.
2) Modify schema.sql to add md5 to the functions table.
3) Modify importpkg.py to record md5 hashes.
4) Follow the steps in README to import a local Debian mirror.
   (This takes about 7 hours on a quick 8 core box and 3 days on a
   slower single core.)
5) Look for files, that have same md5 hash, but different sha512 hash.
   Something like this SQL query will give you an answer (untested).

   SELECT h1.cid, h2.cid FROM hash AS h1 JOIN hash AS h2 ON h1.fid = h2.fid AND 
h1.hash = h2.hash JOIN hash AS h3 ON h1.cid = h3.cid JOIN hash AS h4 ON h2.cid 
= h4.cid AND h3.fid = h4.fid JOIN function AS f1 ON h1.fid = f1.id JOIN 
function AS f3 ON h3.fid = f3.id WHERE h3.hash != h4.hash AND f1.name = 'md5' 
AND f3.name = 'sha512';

   It gives keys into the content table to look up the actual filenames
   and packages.

In case you have any questions, just ask (mail or #-qa on oftc).

Helmut


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130805084636.ga10...@alf.mars



Re: Finding correct component for Virtual Box / Debian / screen resolution issue

2013-08-05 Thread Paul Wise
On Sun, Aug 4, 2013 at 3:09 PM, Cyril Brulebois wrote:

 Doesn't look like something to be run in d-i.

As I understand it, isenkram is just a proof of concept of the idea.
It also seems to be a reimplementation of discover?

 discover already pulls virtualbox bits in. Mentioned not so long ago in:
   https://lists.debian.org/20130726091036.gb22...@mraw.org

Aha, so that is where I should file a patch for installing
thinkfan/etc on Thinkpads when installing with d-i.

It appears that discover and isenkram uses a hard-coded list (in
discover-data) of mappings between devices. If DEP-11 support were to
be added to the archive and to discover, maintaining the list of
mappings between devices and packages would be delegated to individual
maintainers of the packages in question. discover/isenkram/PackageKit
would then use apt data to discover which packages to install on which
hardware.

BTW, virtualbox-ose-guest-x11 got renamed to virtualbox-guest-x11 in
2011 so the discover-data package needs updating for that transition.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Bug#718769: ITP: clsync -- live sync tool based on inotify, written in GNU C

2013-08-05 Thread Artyom A Anikeev
Package: wnpp
Severity: wishlist
Owner: Artyom A Anikeev anik...@ut.mephi.ru

* Package name: clsync
  Version : 0.0
  Upstream Author : Dmitry Yu Okunev dyoku...@ut.mephi.ru
* URL : https://github.com/xaionaro/clsync
* License : GPL-3+
  Programming Lang: C
  Description : live sync tool based on inotify, written in GNU C

Clsync recursively watches for source directory and executes external
program to sync the changes. Clsync is adapted to use together with rsync.
This utility is much more lightweight than competitors and supports such
features as separate queue for big files, regex file filter and
multi-threading.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20130805090403.15637.78167.report...@icarus.mephi.ru



Re: Non-identical files with identical md5sums on Debian systems?

2013-08-05 Thread Adam Borowski
On Sun, Aug 04, 2013 at 10:21:09PM -0700, Russ Allbery wrote:
 Fabian Greffrath fab...@greffrath.com writes:
 
  I do occasionally check for identical files on different systems by
  comparing their md5sums. So, just out of interest, could someone tell me
  (how to find out) how many non-identical files with identical md5sums
  there are there on a typical (say, amd64) Debian system?
 
 Unless you have a collection of MD5 collision attacks, or have installed a
 package that includes a sample MD5 collision, the changes are quite good
 that the answer is zero.  MD5 is no longer considered cryptographically
 strong, but that doesn't mean it's not a fairly random 128-bit hash.  You
 need a *lot* of files before even the birthday paradox will give you much
 likelihood of an MD5 collision that wasn't intentionally constructed.

Let's assume every hard drive produced so far in human history is combined
in a single RAID0 array, and formatted using a typical filesystem without
an inode limit, then filled with small files.  If my estimate is correct,
thanks to the birthday paradox there's around 0.001% chance there will be
at least one non-constructed MD5 collision.

Also, there is no known preimage attack against MD5; collision attacks are
quite less dangerous as the attacker would need to first give you a
legitimate version of the file she wants to replace.

-- 
ᛊᚨᚾᛁᛏᚣ᛫ᛁᛊ᛫ᚠᛟᚱ᛫ᚦᛖ᛫ᚹᛖᚨᚲ


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130805100834.ga2...@angband.pl



Bug#718775: ITP: clojurehelper -- Helper scripts for packaging Clojure programs

2013-08-05 Thread Eugenio Cano-Manuel Mendoza
Package: wnpp
Severity: wishlist
Owner: Eugenio Cano-Manuel Mendoza eugenioca...@gmail.com

* Package name: clojurehelper
  Version : 0.1
  Upstream Author : Eugenio Cano-Manuel Mendoza eugenioca...@gmail.com
* URL :
* http://anonscm.debian.org/gitweb/?p=pkg-clojure/clojurehelper.git
* License : MIT
  Programming Lang: Python
  Description : Helper scripts for packaging Clojure programs

Clojurehelper contains several scripts which help in packaging Clojure
programs:
 * lein_makepkg generates a template for a Debian Clojure package.
 * lein_builddocs creates html documentation from Markdown format.
 * lein_build creates jar files from Clojure sources.
 * lein-xml is a plugin for Leiningen that exports project.clj files to xml.
This package provides a dh sequence that can be used along javahelper to build
clojure packages.


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



Re: new hashes (SHA512, SHA3) in apt metadata and .changes files?

2013-08-05 Thread Ian Jackson
Ondřej Surý writes (Re: new hashes (SHA512, SHA3) in apt metadata and .changes 
files?):
 SHA512 doesn't bring any advantage over SHA256.

AIUI SHA-512 is faster than SHA-256 on many processors, and not
usually slower on the others.  If the hashes are too long, they can be
truncated.

Ian.


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



Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Ian Jackson
Paul Tagliamonte writes (Re: We need a global decision about R data in binary 
format, and stick to it.):
 On Mon, Aug 05, 2013 at 09:57:35AM +0900, Charles Plessy wrote:
  it is the common practice in upstream R packages to store data in binary
  objects.  Those objects can be modified with R, and exported into various
  formats.  The Debian archive if full of them.
 
 This is not unlike a Python pickle.
 
 However, even more to the point, with *this* package, that was a
 *generated data table*. These *generated* values are clearly not prefered
 form of modification. I asked the uploader to point to where they came
 from. I don't think this is unfair.

We need to separate these two issues.

One is the file format question.  It doesn't seem to me that there is
anything wrong with a binary format as the preferred form for
modification, in principle.  For a file which is typically edited
using R, including by upstream when they what to edit it, then there
is no problem.

The other is the assertion that this particular case involves a
generated data table.  If this is the case then the source package
needs to contain the source code which generates the table - and,
really, it should regenerate the table during the build.  (The source
might be in the form of another R binary object.)

(Of course there is a third issue: it is probably not the best
engineering decision to use a binary save format rather than text
source code.  But that's not something the Debian maintainer
necessarily gets to choose and it's not a reason for an ftpmaster
reject.)

  The question asked by Paul is a recurrent question that comes each
  time the FTP trainees rotate (basically once per release cycle,
  because during the Freeze the FTP trainees find other exciting
  tasks to do, and then do not seem to have much time to process NEW
  anymore).
 
 This must mean many people who care deeply about this topic see this as an
 issue.

I don't think this is a helpful response to someone who is raising
what they see as a systematic problem.

Paul, would it be possible to update the ftpmaster assistant reference
materials to discuss R's binary files ?

Ian.


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



Re: Non-identical files with identical md5sums on Debian systems?

2013-08-05 Thread Ian Jackson
Russ Allbery writes (Re: Non-identical files with identical md5sums on Debian 
systems?):
 Unless you have a collection of MD5 collision attacks, or have installed a
 package that includes a sample MD5 collision, [...]

For the sake of sanity of our (still) MD5-based tools, I hope that
no-one uploads into our archive a package with an example MD5
collision.  (Unless the colliding files are wrapped up somehow, to
protect our infrastructure from any untoward behaviour.)

Ian.


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



Bug#718791: ITP: mikutter -- Simple, powerful and moeful twitter client

2013-08-05 Thread HIGUCHI Daisuke (VDR dai)
Package: wnpp
Severity: wishlist
Owner: HIGUCHI Daisuke (VDR dai) d...@debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

* Package name: mikutter
  Version : 0.2.2.1318
  Upstream Author : Toshiaki Asai
* URL : http://mikutter.hachune.net/
* License : GPL-3, CC-BY-SA-3.0
  Programming Lang: Ruby
  Description : Simple, powerful and moeful twitter client

 Mikutter is a simple, powerful and moeful twitter client.
 .
 Mikutter provides several advanced features:
   * Multi pane
   * Reply view
   * Thread view
   * Followee, Follower list
   * Profile view
   * Search view
   * List view
   * Activity view

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

iQIcBAEBCAAGBQJR/6n/AAoJEHg5YZ3UOWaOH6UP/j2X6ah9YciPXy9hn8wJrWTZ
Y0DqZYeixC4fkiBQiR6bHK2VyhdxIUBs04zg9hUek1CXZuIlLuxB3nLIkBHRAL16
jhSOHd4C3LGUWE1Tx4aqW/Y3mE5E/ynzYvvl4vWcfpSrwgo86UUbOVPf85XWwPfA
HRySAnj0GGznfHchRIh/B/ULjOlxLEdvHCXVTY0W+uJDODDiGUFuRXyqUH5+kPb8
/mAp74Cz9TXxxiways9+Oj7tfrZmH0Jinfmz5CbVy4bHkLx4C5UcXHxk8k5+BKDQ
kPrix1hNxp5pmuUeIJ9d+4Zqlto+XoFy1lmcIuVdyd0DcflOU4AFf3fKW/SSnIav
FcXHioA6lqmh9kPCCePyTnIQpWAaGBLh5tSH8rqGLlyPv8QK0QAMuIZT0ZHBPTdZ
lW/gqoPIhMPf7FXVVRctEPGzHtZFJ0Eu+cd6DUFs9wjLXu+XcC1Hjo7IUQQasG6E
N2+MyY1Dana4F6Jo9D57NMUhjkXPh2pBB9WaQG79levqyFdM0+fNBjjTn13lSMvt
4xs4lG8b8xU3l76BsBzi8RmUJ/LJuIBGtiqDkWvD1uE7ieDMfp9a0jci8J9EXpt+
iGWrKlXO7dyMye3EsYSDhY5KwUspjCbKGBajwwHxJ0FEeJWGOTZbxhTquwcv8GE+
Sw7kK/CjGhL5UNclNi43
=1+ro
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20130805133501.29901.57302.report...@lilith.infoblue.home



Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Paul Tagliamonte
On Mon, Aug 05, 2013 at 02:13:15PM +0100, Ian Jackson wrote:
 We need to separate these two issues.

Aye.

IMVHO, this is the same as how we should treat images (I mean, for any
data format, not just this one case of a pickled object) - if the image
was a photo, clearly the .jpg or .png or whatever we get is the best way
to communicate this data, but if the image was generated off an .svg,
it should be distributed with it (and even rebuilt at build-time).

 One is the file format question.  It doesn't seem to me that there is
 anything wrong with a binary format as the preferred form for
 modification, in principle.  For a file which is typically edited
 using R, including by upstream when they what to edit it, then there
 is no problem.

Sure. If this data wasn't collected off some scientific
instrument or lovingly hand-made, I strongly believe that we should
rebuild such objects at build time, and use those in the binary
packages.

 The other is the assertion that this particular case involves a
 generated data table.  If this is the case then the source package
 needs to contain the source code which generates the table - and,
 really, it should regenerate the table during the build.  (The source
 might be in the form of another R binary object.)

I completely agree.

 (Of course there is a third issue: it is probably not the best
 engineering decision to use a binary save format rather than text
 source code.  But that's not something the Debian maintainer
 necessarily gets to choose and it's not a reason for an ftpmaster
 reject.)
 
   The question asked by Paul is a recurrent question that comes each
   time the FTP trainees rotate (basically once per release cycle,
   because during the Freeze the FTP trainees find other exciting
   tasks to do, and then do not seem to have much time to process NEW
   anymore).
  
  This must mean many people who care deeply about this topic see this as an
  issue.
 
 I don't think this is a helpful response to someone who is raising
 what they see as a systematic problem.

I'm sorry, Charles. Ian's right. That was a poor tone.

 
 Paul, would it be possible to update the ftpmaster assistant reference
 materials to discuss R's binary files ?

I would be happy to document what is and isn't OK with these files. I'll
have to seek a bit of consensus from the rest of the ftp-team, but I
think treating them as if they were any other data format should be
fine.

 
 Ian.

Thanks, Ian,
  Paul




-- 
 .''`.  Paul Tagliamonte paul...@debian.org
: :'  : Proud Debian Developer
`. `'`  4096R / 8F04 9AD8 2C92 066C 7352  D28A 7B58 5B30 807C 2A87
 `- http://people.debian.org/~paultag


signature.asc
Description: Digital signature


Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Bastien ROUCARIES
Le 5 août 2013 15:42, Paul Tagliamonte paul...@debian.org a écrit :

 On Mon, Aug 05, 2013 at 02:13:15PM +0100, Ian Jackson wrote:
  We need to separate these two issues.

 Aye.

 IMVHO, this is the same as how we should treat images (I mean, for any
 data format, not just this one case of a pickled object) - if the image
 was a photo, clearly the .jpg or .png or whatever we get is the best way
 to communicate this data, but if the image was generated off an .svg,
 it should be distributed with it (and even rebuilt at build-time).

Could we made an exception for specially crafted image in order to exercice
buffer oveeflow ? (I think particularly art libpng ImageMagick)

  One is the file format question.  It doesn't seem to me that there is
  anything wrong with a binary format as the preferred form for
  modification, in principle.  For a file which is typically edited
  using R, including by upstream when they what to edit it, then there
  is no problem.

 Sure. If this data wasn't collected off some scientific
 instrument or lovingly hand-made, I strongly believe that we should
 rebuild such objects at build time, and use those in the binary
 packages.

  The other is the assertion that this particular case involves a
  generated data table.  If this is the case then the source package
  needs to contain the source code which generates the table - and,
  really, it should regenerate the table during the build.  (The source
  might be in the form of another R binary object.)

 I completely agree.

  (Of course there is a third issue: it is probably not the best
  engineering decision to use a binary save format rather than text
  source code.  But that's not something the Debian maintainer
  necessarily gets to choose and it's not a reason for an ftpmaster
  reject.)
 
The question asked by Paul is a recurrent question that comes each
time the FTP trainees rotate (basically once per release cycle,
because during the Freeze the FTP trainees find other exciting
tasks to do, and then do not seem to have much time to process NEW
anymore).
  
   This must mean many people who care deeply about this topic see this
as an
   issue.
 
  I don't think this is a helpful response to someone who is raising
  what they see as a systematic problem.

 I'm sorry, Charles. Ian's right. That was a poor tone.

 
  Paul, would it be possible to update the ftpmaster assistant reference
  materials to discuss R's binary files ?

 I would be happy to document what is and isn't OK with these files. I'll
 have to seek a bit of consensus from the rest of the ftp-team, but I
 think treating them as if they were any other data format should be
 fine.

 
  Ian.

 Thanks, Ian,
   Paul




 --
  .''`.  Paul Tagliamonte paul...@debian.org
 : :'  : Proud Debian Developer
 `. `'`  4096R / 8F04 9AD8 2C92 066C 7352  D28A 7B58 5B30 807C 2A87
  `- http://people.debian.org/~paultag


Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Ian Jackson
Bastien ROUCARIES writes (Re: We need a global decision about R data in binary 
format, and stick to it.):
 Le 5 août 2013 15:42, Paul Tagliamonte paul...@debian.org a écrit :
  IMVHO, this is the same as how we should treat images (I mean, for any
  data format, not just this one case of a pickled object) - if the image
  was a photo, clearly the .jpg or .png or whatever we get is the best way
  to communicate this data, but if the image was generated off an .svg,
  it should be distributed with it (and even rebuilt at build-time).
 
 Could we made an exception for specially crafted image in order to exercice
 buffer oveeflow ? (I think particularly art libpng ImageMagick)

I think this is something of a red herring corner case, and not really
related to the question about R binary objects.

If the last thing that happened to the image file was that upstream
edited it with a hex editor to introduce a buffer overflow, then the
resulting binary file is the preferred form for modification (after
all, that's how the last person to do so modified it...)

Ian.


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



Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Sune Vuorela
On 2013-08-05, Paul Tagliamonte paul...@debian.org wrote:
 IMVHO, this is the same as how we should treat images (I mean, for any
 data format, not just this one case of a pickled object) - if the image
 was a photo, clearly the .jpg or .png or whatever we get is the best way
 to communicate this data, but if the image was generated off an .svg,
 it should be distributed with it (and even rebuilt at build-time).

Whattabout svg files that are converted into png's and then manually
adjusted?

/Sune


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/slrnkvvdku.j0.nos...@sshway.ssh.pusling.com



Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Jeremy Stanley
On 2013-08-05 14:13:15 +0100 (+0100), Ian Jackson wrote:
[...]
 The other is the assertion that this particular case involves a
 generated data table. If this is the case then the source package
 needs to contain the source code which generates the table - and,
 really, it should regenerate the table during the build.
[...]

No argument on the first, but the second sets a bad precedent if
interpreted strongly. For example I have a program which relies on a
fairly large set of correlative data requiring hours of expensive
computation to generate. In the source package I include the
original data on which the resulting tables are based and provide a
means to regenerate it on the fly at package build time, but disable
it by default so that it doesn't chew up build resources
unnecessarily.

Since I need to generate the correlation data for other (non-Debian)
users of the software anyway, I ship the generated files in the
source package too and just include them in the binary package
(along with instructions and tooling for the end user to be able to
build datasets they can use to override the default ones provided).
While my example is Python rather than R, I expect it's
representative of situations for many scientific tools. Perhaps some
guidance on when this tactic is or is not appropriate would be
beneficial.
-- 
{ PGP( 48F9961143495829 ); FINGER( fu...@cthulhu.yuggoth.org );
WWW( http://fungi.yuggoth.org/ ); IRC( fu...@irc.yuggoth.org#ccl );
WHOIS( STANL3-ARIN ); MUD( kin...@katarsis.mudpy.org:6669 ); }


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130805151657.gd1...@yuggoth.org



Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Ian Jackson
Jeremy Stanley writes (Re: We need a global decision about R data in binary 
format, and stick to it.):
 No argument on the first, but the second sets a bad precedent if
 interpreted strongly. For example I have a program which relies on a
 fairly large set of correlative data requiring hours of expensive
 computation to generate. In the source package I include the
 original data on which the resulting tables are based and provide a
 means to regenerate it on the fly at package build time, but disable
 it by default so that it doesn't chew up build resources
 unnecessarily.

That makes sense, and is IMO a good reason for not doing the complete
from-scratch build each time.

 Since I need to generate the correlation data for other (non-Debian)
 users of the software anyway, I ship the generated files in the
 source package too and just include them in the binary package
 (along with instructions and tooling for the end user to be able to
 build datasets they can use to override the default ones provided).
 While my example is Python rather than R, I expect it's
 representative of situations for many scientific tools. Perhaps some
 guidance on when this tactic is or is not appropriate would be
 beneficial.

There should IMO be a standard way to request a source package to do
from-scratch rebuilds for this kind of thing, for QA purposes.

Ian.


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



Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Paul Wise
On Mon, Aug 5, 2013 at 4:28 PM, Sune Vuorela wrote:

 What about svg files that are converted into png's and then manually
 adjusted?

I'd say the source is the combination of the SVG files plus the adjusted PNGs.

I guess you are thinking of a particular case here? What is the reason
for manually adjusting them?

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Jeremy Stanley
On 2013-08-05 16:41:13 +0100 (+0100), Ian Jackson wrote:
[...]
 There should IMO be a standard way to request a source package to do
 from-scratch rebuilds for this kind of thing, for QA purposes.

I absolutely agree. If there were a standard make target or envvar
for this purpose I would gladly implement it in my debian/rules.
-- 
{ PGP( 48F9961143495829 ); FINGER( fu...@cthulhu.yuggoth.org );
WWW( http://fungi.yuggoth.org/ ); IRC( fu...@irc.yuggoth.org#ccl );
WHOIS( STANL3-ARIN ); MUD( kin...@katarsis.mudpy.org:6669 ); }


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130805155503.ge1...@yuggoth.org



Re: Finding correct component for Virtual Box / Debian / screen resolution issue

2013-08-05 Thread adrelanos
Paul Wise:
 This question is about Virtual Box / Debian / screen resolution without
 having guest additions installed.
 
 I see, is there any reason to not do that?

Security reasons. It weakens isolation between guest and host. See also
[1]. Another reason is, guest additions are every now and then not
installable.

 Anyway, looking at the Xorg.log you posted, it is using VESA. It
 rejects (various reasons) all the modes returned by the virtual
 firmware and uses some hard-coded built-in modes instead. Probably
 this is either #566153 or #563203 and I think has been present
 forever;

Maybe. Have they been forwarded upstream? Are there workarounds?

 (It should work. Grub can do higher resolutions in grub boot menu as
 noted in my bug report. Why Linux can not?)
 
 I missed that point. Do you know which driver/module grub is loading
 to achieve that? I expect it is using VESA and trusting the virtual
 firmware instead.

In /etc/default/grub using GRUB_GFXMODE=1280x1024 works, but only for
the grub boot menu.

I don't know which driver/module grub is loading to achieve that. Other
then the GRUB_GFXMODE=1280x1024 change, no other changes. So grub
default, whatever that is. Any way I could find out? Probably indeed
vesa. (Because other standards available at that early phase don't even
support higher resolutions in principle as far I know.)

[1] http://www.phoronix.com/scan.php?page=news_itempx=OTk5Mw


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51ffcfa1.8010...@riseup.net



Re: new hashes (SHA512, SHA3) in apt metadata and .changes files?

2013-08-05 Thread Helmut Grohne
On Mon, Aug 05, 2013 at 01:33:24PM +0100, Ian Jackson wrote:
 AIUI SHA-512 is faster than SHA-256 on many processors, and not
 usually slower on the others.  If the hashes are too long, they can be
 truncated.

Not that, I think it matters, but this got me interested. It appears
that in practice this depends entirely on the word size. So SHA-256 is
faster on 32bit architectures and SHA-512 is faster on 64bit
architectures. The other aspect is that a block update of SHA-256 uses
64 rounds for a 64 byte block. Whereas SHA-512 uses 80 rounds for a 128
byte block update. So SHA-512 lowers the rounds/byte ratio. Now what can
we do with this knowledge? Probably negligible.

Helmut


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130805162104.ga32...@alf.mars



Fwd: /etc/hosts and resolving of the local host/domainname - 127.0.0.1 vs. 127.0.1.1

2013-08-05 Thread Thomas Hood
Sorry I'm a bit late contributing to this discussion.

Christoph Anton Mitterer wrote:
 The eventual result[1] was that Debian nowadays ships
 /etc/hosts like these per default:

 127.0.0.1 localhost
 127.0.1.1 host_name.domain_name host_name

 As also described in the Debian reference[2].

That's not entirely accurate. Wheezy and Ubuntu Desktop install
an /etc/hosts like the following, without a domain_name.

   127.0.0.1 localhost
   127.0.1.1 host_name

The Debian Reference is out of date.

Some years ago it was the case that if a machine had a static
external IP address then this was listed instead of '127.0.1.1'.
I presume that this is still the case but I haven't checked
(and I am on the road, so can't easily check, sorry).

 The hostname is not necessarily a domain name, at least not
 de jure.

Right. Ideally nothing would blindly treat the system hostname
as a domain name. I don't know how that practice ever got
started, but it overlooked the fact that machines can have
multiple domain names and multiple IP addresses, any of
which can be externally administered and any of which can
be changed at any time. The machine itself doesn't even know
when its domain names change.

 But in reality, many programs and people rely or are at least
 used to the hostname being resolvable.
 That practise won't change and we cannot do much about it.

That seems too pessimistic to me.  If there are broken programs
we can patch them.

 - Most applications that listen to the loopback actually
 only listen to 127.0.0.1 (and perhaps ::1) but often not
 to 127.0.0.0/8.

Last time I checked, most applications that listen on 127.0.0.1
listen on all addresses, thus including 127.0.0.0/8.  This is why
resolving the hostname to 127.0.1.1 actually causes few if any
problems in practice.

 = so the overall proposal (I) is:
 If no one has any technical reasons against, can we stop using
 127.0.1.1 and let the hostname point to 127.0.0.1 as in:
 127.0.0.1   localhost
 127.0.0.1   foobar[.bar.net foobar]

Strictly speaking, each IP address in /etc/hosts should be
represented by no more than one line.

Your proposal has the consequence that 'localhost' is the
canonical name for 'foobar'. Please don't do this. I don't
want to return to the days of 'localhost' appearing in log
files and command line prompts.

Simon McVittie wrote:
 libnss-myhostname is basically this, and is packaged. It tries
 to return a public address if possible, only falling back to
 127.0.0.2 (upstream), 127.0.1.1 (as patched in Debian) or ::1
 (IPv6) if there's nothing more suitable.

This is exactly what you need if you need the system hostname
to be resolvable to an IP address. (And I am prepared to believe
that we still need that, even though I haven't tested it recently.)

With the nsswitch configuration

hosts:  files ... dns ... myhostname

myhostname resolves the system hostname if nothing else does
so first. So it can be overridden either by DNS or by /etc/hosts.
If the system hostname changes, no file has to be edited.  Nice.

Also nice is the fact that myhostname resolves the system hostname
to an external address if there is one, increasing the chances that
the result is similar to what would be obtained from DNS.

Wouter Verhelst wrote:
 The right way, in my opinion, is that /etc/hosts should
 look like this:

 127.0.0.1 localhost
 127.0.0.1 hostname.domain hostname

Strictly speaking there should be no more than one line per
IP address, so that would be

127.0.0.1 localhost hostname.domain hostname

in which case 'localhost' is the canonical name for alias 'hostname'.

 or, alternatively:

 127.0.0.1 hostname.domain hostname localhost

In that case 'hostname.domain' is the canonical name for alias 'localhost'.

Before any move is made to conflate the system hostname with
'localhost' in this way I'd like to see some proof that this no longer
causes any malfunction, or if it does cause malfunction (e.g.,
'localhost' appearing in log files) then I'd like to see the
malfunctioning packages fixed in advance of the transition from
127.0.1.1 to 127.0.0.1. And before making this potentially disruptive
change, I'd like to see evidence that the current practice actually
causes problems --- problems that can't easily be solved by patching
individual packages either to make them listen on 127.0.1.1 on the one
hand or to make them talk to localhost on the other.
--
Thomas Hood


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



Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Tollef Fog Heen
]] Ian Jackson 

 Bastien ROUCARIES writes (Re: We need a global decision about R data in 
 binary format, and stick to it.):
  Le 5 août 2013 15:42, Paul Tagliamonte paul...@debian.org a écrit :
   IMVHO, this is the same as how we should treat images (I mean, for any
   data format, not just this one case of a pickled object) - if the image
   was a photo, clearly the .jpg or .png or whatever we get is the best way
   to communicate this data, but if the image was generated off an .svg,
   it should be distributed with it (and even rebuilt at build-time).
  
  Could we made an exception for specially crafted image in order to exercice
  buffer oveeflow ? (I think particularly art libpng ImageMagick)
 
 I think this is something of a red herring corner case, and not really
 related to the question about R binary objects.

Agreed.

 If the last thing that happened to the image file was that upstream
 edited it with a hex editor to introduce a buffer overflow, then the
 resulting binary file is the preferred form for modification (after
 all, that's how the last person to do so modified it...)

Or more precisely, it's no longer an image that you tend to use for,
well, displaying something.  It's a test for a buffer overflow that also
happens to be an image.  (Saying that just because somebody last edited
a file with a hex editor then that's the preferred form for modification
leaves a pretty large hole.  If I make a change to a blob and change a
2012 to 2013 in a copyright notice, it's obvious that the blob isn't its
own source.)

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/m2siyoqa93@rahvafeir.err.no



Re: We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Don Armstrong
On Mon, 05 Aug 2013, Ian Jackson wrote:
 The other is the assertion that this particular case involves a
 generated data table. If this is the case then the source package
 needs to contain the source code which generates the table - and,
 really, it should regenerate the table during the build. (The source
 might be in the form of another R binary object.)

I know of almost no cases where someone actually generated the R binary
object directly.

In general, you have a data table represented as some kind of text file,
and then you do operations on it, which result in a R binary object
being created from a collection of text files. Subsequently, you might
load the R binary object and modify it within R, but for some
modifications, you might want to go back to the original data table.

It's unfortunately common practice for R upstreams to ship the binary
object instead of the combination of original tables and R source
necessary to generate the actual R binary save data, but this is
something that should be changed, and Debian should be working to lead
the charge to do this.

In almost all cases, dropping the R binary object(s) do not appreciably
change the functionality of the R module; it just means that it is more
difficult to use the examples because there is no example data.

-- 
Don Armstrong  http://www.donarmstrong.com

in Just-
spring  when the world is mud-
luscious the little lame baloonman 

whistles   far   and wee 
 -- e.e. cummings [in Just-]


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130805224955.gd14...@rzlab.ucr.edu



Re: [Debian-med-packaging] We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Charles Plessy
Hi Joerg and Paul,

thank you for your prompt answers and thank for everybody's contribution.

I would like to focus my questions on R binary objects that represent data that
was not entirely computer-generated (that is, for which the source code can not
be summarised by a mathematical formula and simple starting values).  Note also
that a large number of other software, like LibreOffice for instance, allow to
store unformatted textual data as a binary object.  Therefore binary object
does not mean that the content is impractical to retreive.

My first question is: to what extent do we need to verify that the object can
be regenerated.

  - The starting point is a source package with a R binary object.
  - With this starting point only, it may be impossible to know if it has a
source or not.  Has the upstream developer typed the results by hand
in a R session, for instance when collecting data from a table in a
printed report, did he collect his data in a file, not provided
in the source package, or does he need a combination of data and scripts
to regenerate the binary object ?  Unless the answer can be found on the
Internet, one has to ask the author directly.
  - If we have to ask, how long do we need to wait for the answer, and what
is the conclusion in case there is no answer.

My second question is: to what extent do we need the source.

  - When the R binary object is a table that has been generated by hand,
my understanding is that it does not matter whatever format Upstream
prefers, since it is trivial for anybody to export the R object into
his favorite format for modification.
  - When the data in the R binary object has been produced by processing
another data file, to what point do we need to go backwards ?  This
is an important question, because at the end of the chain of
rebuildability, there can be gigabytes of data.
  - When the source of the binary object is not strictly necessary for
making relevant modifications, can we distribute the package in Debian ?

My last question is, given the answers to the previous questions, what do we do
with the R packages that are already in the archive and also contain data that 
is
editable as is but do have an original source, who will do it, and what is the
timeline in case of inaction.

Also, since the case of pictures have been discussed, here is a parallel
between R objects and PNG files is the following.

1) In the PNG file's metadata, there is a field that can indicate if for 
instance
it was made by Inkscape.  However, in presence of that field, one can not
conclude if the SVG source is still existing, or if it exists on the computer
of a contributor, but the upstream developers decided to discard it.

2) If a program displays an image in PNG format and does not use its SVG
source, while one can regret that the source is not available, it does not
prevent from editing the PNG, or even replacing it entirely.

3) One could consider to scan the Debian archive for PNG files made with
Inkscape with no corresponding SVG file in the source package.  Would such
packages be non-Free ?  If yes, how long would you wait before removing the
package ?

While writing this answer, I also read Don's email advocating for Debian to
take the lead and change the current practice in the R community, that prefers
to ditribute data as R binary objects in the source packages.  This is
laudable, but I expect that it will take time, and it needs people who have
roots in both communities.

In the current situation, that I describe as active bitrotting, we do not
apply the same rules to the packages that enter the archive and the packages
that are already in, which cause the packages under active development to
become obsolete each time new dependancies can not enter in Debian.  Given the
rotten tomatoes that fly on my face because I can not update anymore the
r-cran-ggplot2 package, I do not feel fit to the task of negociating with the
R community to change its traditions.

In any case, I think that we need clear guidelines, that help to foresee if a R
package is acceptable or not in Debian, so that we can better decide if we
undertake the work at all.

Currently, my take would be to move packages to non-free.  This would also
allow us to ship the PDF documentation that we currently delete.

Cheers,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130805232904.ga8...@falafel.plessy.net



Re: Bug#718791: ITP: mikutter -- Simple, powerful and moeful twitter client

2013-08-05 Thread Chris Bannister
On Mon, Aug 05, 2013 at 10:35:01PM +0900, HIGUCHI Daisuke (VDR dai) wrote:
 Package: wnpp
 Severity: wishlist
 Owner: HIGUCHI Daisuke (VDR dai) d...@debian.org
 
 * Package name: mikutter
   Version : 0.2.2.1318
   Upstream Author : Toshiaki Asai
 * URL : http://mikutter.hachune.net/
 * License : GPL-3, CC-BY-SA-3.0
   Programming Lang: Ruby
   Description : Simple, powerful and moeful twitter client
   ^^

  Mikutter is a simple, powerful and moeful twitter client.
  ^^

I can't find any definition of moeful and therefore is more of a
hindrance to understanding the description than an aid.


* Followee, Follower list
   
   No such word.

-- 
If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing. --- Malcolm X


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130805235929.GC23885@tal



Re: [Debian-med-packaging] We need a global decision about R data in binary format, and stick to it.

2013-08-05 Thread Don Armstrong
On Tue, 06 Aug 2013, Charles Plessy wrote:
 My first question is: to what extent do we need to verify that the
 object can be regenerated.
 
   - The starting point is a source package with a R binary object.
   - With this starting point only, it may be impossible to know if it
   has a source or not. 
[...]
   Unless the answer can be found on the Internet, one has to ask the
   author directly.
   - If we have to ask, how long do we need to wait for the answer, and
   what is the conclusion in case there is no answer.

We should ask if there is any question. If we get no answer, we should
use our best judgment as to the likely case. Non-responsive upstreams
also should cause us to question whether we should be distributing the
package at all.
 
 My second question is: to what extent do we need the source.
 
   - When the R binary object is a table that has been generated by
   hand, my understanding is that it does not matter whatever format
   Upstream prefers, since it is trivial for anybody to export the R
   object into his favorite format for modification.

The original table in any form is source, then. But if there are any
subsequent alterations to the table, we should distribute those
subsequent alterations. In many cases, you take the original raw data,
and then alter it. If the code to do that exists, we should take the
original raw data, and do the alterations. [This should really be SOP
for all modules in R, because to do otherwise means that it is very
difficult to reproduce your alterations in the event of wrong data or
new data.]

   - When the data in the R binary object has been produced by
   processing another data file, to what point do we need to go
   backwards ? This is an important question, because at the end of the
   chain of rebuildability, there can be gigabytes of data.

This is a far more difficult case, but if this data exists and can be
digitally distributed Debian should have it and distribute it. Perhaps
not in the source package, but almost certainly in a data package
somewhere. [And honestly, there are very few interesting R packages
which we can actually distribute where this is really the case. I can't
think of any we currently distribute, and the main ones I can think of
involve databases of sequences for microarrays, and there you actually
want the complete data anyway.]

   - When the source of the binary object is not strictly necessary for
   making relevant modifications, can we distribute the package in
   Debian ?

If the source isn't strictly necessary, we should remove the binary
object, and distribute the package.
 
 My last question is, given the answers to the previous questions, what
 do we do with the R packages that are already in the archive and also
 contain data that is editable as is but do have an original source,
 who will do it, and what is the timeline in case of inaction.

The package maintainer should handle it; in the case of inaction from
upstream, the package maintainer can then either remove the data, split
the package, move the package to non-free, or remove the package from
Debian entirely. The timeline should be the standard one that is used
for all RC bugs.

 In the current situation, that I describe as active bitrotting, we
 do not apply the same rules to the packages that enter the archive and
 the packages that are already in, which cause the packages under
 active development to become obsolete each time new dependancies can
 not enter in Debian.

We actually do and should apply the same rules. Sometimes violations of
the rules are missed for a while, though, and we have to come back and
file bugs with severity serious to deal with the problem.

 Currently, my take would be to move packages to non-free. This would
 also allow us to ship the PDF documentation that we currently delete.

In these cases, we should split the package out into a non-free
component and a free component.

I should note that I'm currently distributing via debian-r.debian.net a
few hundred packages which probably have this particular problem too.

-- 
Don Armstrong  http://www.donarmstrong.com

in Just-
spring  when the world is mud-
luscious the little lame baloonman 

whistles   far   and wee 
 -- e.e. cummings [in Just-]


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130806004416.gf14...@rzlab.ucr.edu



Re: Non-identical files with identical md5sums on Debian systems?

2013-08-05 Thread Chow Loong Jin
On Mon, Aug 05, 2013 at 02:15:41PM +0100, Ian Jackson wrote:
 Russ Allbery writes (Re: Non-identical files with identical md5sums on 
 Debian systems?):
  Unless you have a collection of MD5 collision attacks, or have installed a
  package that includes a sample MD5 collision, [...]
 
 For the sake of sanity of our (still) MD5-based tools, I hope that
 no-one uploads into our archive a package with an example MD5
 collision.  (Unless the colliding files are wrapped up somehow, to
 protect our infrastructure from any untoward behaviour.)

What in our infrastructure would break on an MD5 collision anyway? The closest
thing I could think of is dedup.debian.net, but that appears to use SHA512.

-- 
Kind regards,
Loong Jin


signature.asc
Description: Digital signature


Re: Bug#718791: ITP: mikutter -- Simple, powerful and moeful twitter client

2013-08-05 Thread Chow Loong Jin
On Tue, Aug 06, 2013 at 11:59:29AM +1200, Chris Bannister wrote:
 On Mon, Aug 05, 2013 at 10:35:01PM +0900, HIGUCHI Daisuke (VDR dai) wrote:
  Package: wnpp
  Severity: wishlist
  Owner: HIGUCHI Daisuke (VDR dai) d...@debian.org
  
  * Package name: mikutter
Version : 0.2.2.1318
Upstream Author : Toshiaki Asai
  * URL : http://mikutter.hachune.net/
  * License : GPL-3, CC-BY-SA-3.0
Programming Lang: Ruby
Description : Simple, powerful and moeful twitter client
^^
 
   Mikutter is a simple, powerful and moeful twitter client.
   ^^
 
 I can't find any definition of moeful and therefore is more of a
 hindrance to understanding the description than an aid.

Probably a conjugation of moe and -ful. Just moe would probably better
describe this.

 * Followee, Follower list

No such word.

-- 
Kind regards,
Loong Jin


signature.asc
Description: Digital signature


Accepted nss 2:3.15.1-1 (source amd64)

2013-08-05 Thread Mike Hommey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 14:41:14 +0900
Source: nss
Binary: libnss3 libnss3-1d libnss3-tools libnss3-dev libnss3-dbg
Architecture: source amd64
Version: 2:3.15.1-1
Distribution: unstable
Urgency: low
Maintainer: Maintainers of Mozilla-related packages 
pkg-mozilla-maintain...@lists.alioth.debian.org
Changed-By: Mike Hommey gland...@debian.org
Description: 
 libnss3- Network Security Service libraries
 libnss3-1d - Network Security Service libraries - transitional package
 libnss3-dbg - Debugging symbols for the Network Security Service libraries
 libnss3-dev - Development files for the Network Security Service libraries
 libnss3-tools - Network Security Service tools
Changes: 
 nss (2:3.15.1-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/patches/*:  Refresh patches.
   * debian/patches/lower-dhe-priority.patch: Removed, as it was only necessary
 for Iceweasel 3.5, which is long gone.
Checksums-Sha1: 
 5664588b876c7fe0b55ee2329f438d2a820516c5 2176 nss_3.15.1-1.dsc
 1aa7c0ff8af7fb2c8b6e4886ae2291f4bfe0d5c0 6286561 nss_3.15.1.orig.tar.gz
 a4183b3a41afe54d6762c280716850b7d11ecfc0 36995 nss_3.15.1-1.debian.tar.gz
 b55083d8c6c069ce340d8a230b8b52becd9792b4 1088846 libnss3_3.15.1-1_amd64.deb
 d6a7fbc9bcc178737b930347162b5072b233 20072 libnss3-1d_3.15.1-1_amd64.deb
 70d27c6c73665558b959a85a5d00750ea58f7cd8 230502 
libnss3-tools_3.15.1-1_amd64.deb
 86a7a886554659e7a56a117f0778c4869783b547 219728 libnss3-dev_3.15.1-1_amd64.deb
 9932d61f014ad66e2d6c1404c2478ade24a09f53 4755882 libnss3-dbg_3.15.1-1_amd64.deb
Checksums-Sha256: 
 032888c27f98d75c8a75efdb460eaf0b94fae94aab87b33c7a32d73d3c487c10 2176 
nss_3.15.1-1.dsc
 f994106a33d1f3210f4151bbb3419a1c28fd1cb545caa7dc9afdebd6da626284 6286561 
nss_3.15.1.orig.tar.gz
 d8c013807dbfb836972aaf5c0e1150a82a8fb46b0c4d9f04754f0f11d058eca2 36995 
nss_3.15.1-1.debian.tar.gz
 025da4234b26212519e4747de96956f34156af2f109e246b7cc5ceb707e7f433 1088846 
libnss3_3.15.1-1_amd64.deb
 34fe83d6151412c7ed41fa204d1b3299afbf8d9479b81807eac973bf73ce3a2c 20072 
libnss3-1d_3.15.1-1_amd64.deb
 fc7a0c45e3657cf47aedbbd509276d93f79f5de473551d41eef31dbb957bce1c 230502 
libnss3-tools_3.15.1-1_amd64.deb
 595c7b9ab2b3de2e9e65643be6a397751f4a0ec3118341965a34a2084b8bab57 219728 
libnss3-dev_3.15.1-1_amd64.deb
 8f196b6c56b21148f4748a8ff1fe04b4f30c6235f8cdc7ed07980fec01071658 4755882 
libnss3-dbg_3.15.1-1_amd64.deb
Files: 
 85c0df83424f5307eab43fcec9870006 2176 libs optional nss_3.15.1-1.dsc
 fb68f4d210ac9397dd0d3c39c4f938eb 6286561 libs optional nss_3.15.1.orig.tar.gz
 83b9eae9a12a8f3b98cdef6c1dbb03b6 36995 libs optional nss_3.15.1-1.debian.tar.gz
 100736365e9fb2cd5105f4b1c69e29f6 1088846 libs optional 
libnss3_3.15.1-1_amd64.deb
 33d7d89d3b105dee417c52c17515ecf3 20072 oldlibs extra 
libnss3-1d_3.15.1-1_amd64.deb
 15405b30b0b76a2fd9b061055f8253e0 230502 admin optional 
libnss3-tools_3.15.1-1_amd64.deb
 ba8dc811518f8e8df8ceb084807a5cb3 219728 libdevel optional 
libnss3-dev_3.15.1-1_amd64.deb
 d7c624c0d4dfb857c77a8df34f3bd30c 4755882 debug extra 
libnss3-dbg_3.15.1-1_amd64.deb

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

iQIUAwUBUf8/AuQqoE+mqoxyAQjQfQ/2K7UMH/b0eOoXz3CCJfQ+/xJ1th50cWtR
o0ePxDVjRYlkrw97G+BhzSUWsW4Z/OAr53yd+IPgeM8otg+tXjGot8/IWsUzO0uz
5Od3NO4BMxr9Tly9PQjvUS+BGyCsUNTB3jzIchyoNiR+cBoPeTkDEJbcr5zhMp1x
4XFpdr5zVzcZqgEtmoLJPH31wFQjiYib1rC+/Ya5WeI3unB4+8S0y+zMCYeQZ1Lq
rX/x5qewk7OKRi0eXe23bh0hS0rWGmieaHn+dHAXVM2hDluXEur5TuF7fCI7qRDT
9r+sydEPorv2ShWKSpvqVjwPRsuzAMhsecEabOEJ1c/pvre32IMKt4kKWkldzGO1
c6/Yn3gK0/WXGW28bnMIz9jr/xOa51K3JShZKGIGElzmHsWoaJsV4DfydPpWxAcg
Lvc+EHCOfFlrlKbuknDAO+zsWOT1adYf4RaehUUvDMRp1NVY1OgyITiAkH7/iWKM
Qi5XnV5+Y/f6EK1Q8JQrvmgL7tBd0UGHLRKezc9Y4QlkXdQoE+X3yM/NtN4iCqM1
zaxN0i/YrdOqZKakz+7qffj85eboRpJEe9KBtcRHcr5qFpRgpYQ4lm9BwcKJwXwX
Xpa8cRJMV6wGq9VpvNL1NmhHwtnhyxAIiyzIopgL7XEkj8qtlVyCBJxqKMmgrCfm
zVCeluTwIQ==
=56cB
-END PGP SIGNATURE-


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



Accepted python3-defaults 3.3.2-13 (source all i386)

2013-08-05 Thread Scott Kitterman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 02:25:13 -0400
Source: python3-defaults
Binary: python3 python3-minimal python3-examples python3-dev libpython3-dev 
libpython3-stdlib idle3 python3-doc python3-dbg libpython3-dbg python3-all 
python3-all-dev python3-all-dbg libpython3-all-dev libpython3-all-dbg
Architecture: source all i386
Version: 3.3.2-13
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Scott Kitterman sc...@kitterman.com
Description: 
 idle3  - IDE for Python using Tkinter (default version)
 libpython3-all-dbg - package depending on all supported Python 3 debugging 
packages
 libpython3-all-dev - package depending on all supported Python 3 development 
packages
 libpython3-dbg - debug build of the Python 3 Interpreter (version 3.3)
 libpython3-dev - header files and a static library for Python (default)
 libpython3-stdlib - interactive high-level object-oriented language (default 
python3
 python3- interactive high-level object-oriented language (default python3
 python3-all - package depending on all supported Python 3 runtime versions
 python3-all-dbg - package depending on all supported Python 3 debugging 
packages
 python3-all-dev - package depending on all supported Python 3 development 
packages
 python3-dbg - debug build of the Python 3 Interpreter (version 3.3)
 python3-dev - header files and a static library for Python (default)
 python3-doc - documentation for the high-level object-oriented language Python
 python3-examples - examples for the Python language (default version)
 python3-minimal - minimal subset of the Python language (default python3 
version)
Closes: 718734
Changes: 
 python3-defaults (3.3.2-13) unstable; urgency=low
 .
   * Bump python3-minimal Breaks/Replaces python3 versions to 3.3.2-13~ to
 account for files moved in -4 and later (Closes: #718734)
   * Fix broken libpython3-all-dbg symlink
Checksums-Sha1: 
 cba35a0026a86525e7aa4cc70c26ff63f6e88862 1906 python3-defaults_3.3.2-13.dsc
 fe7ad3915524c22c7479809c6fdaeadb4c39da78 127233 
python3-defaults_3.3.2-13.tar.gz
 16232df6aa5e29533139843cdde3af621f95efec 906 python3-examples_3.3.2-13_all.deb
 8b1631d341baa58fe10d38d8fb442e7fc9c711af 3036 idle3_3.3.2-13_all.deb
 e905a8ba0a9227341162a811d8236abc2191810f 17526 python3-doc_3.3.2-13_all.deb
 1434bc39b2f24bad387c05da390f89e2149e4b06 20364 python3_3.3.2-13_i386.deb
 eac3b56f2b30500daf882a11bc1f7cc0244e0719 33760 
python3-minimal_3.3.2-13_i386.deb
 d5fc487d0275df78a3b32fddfc1bad8a98b3f7fa 1138 python3-dev_3.3.2-13_i386.deb
 9455a1f9b337759f76d09672383ab3a2589b4f97 17522 libpython3-dev_3.3.2-13_i386.deb
 050b889e7988e618974d87301c689bd92207a70e 17400 
libpython3-stdlib_3.3.2-13_i386.deb
 0352cbb6801ca384a9f43caeb1a2daee07545b55 1194 python3-dbg_3.3.2-13_i386.deb
 2347c1290e0c490d1d2aeb32035d51c9b0247f7b 17464 libpython3-dbg_3.3.2-13_i386.deb
 fac21054979b113b2452673ce9dc7f7952c392b5 920 python3-all_3.3.2-13_i386.deb
 c95204f1c068aeb50e3c4da0537b2e0c0ba1172d 946 python3-all-dev_3.3.2-13_i386.deb
 9232042cab9b2c19d11d387d3a9c47320089eeb0 944 python3-all-dbg_3.3.2-13_i386.deb
 ed692e4ea7765e9756a2161b309507841d706da5 952 
libpython3-all-dev_3.3.2-13_i386.deb
 98894134aa25fccc109cdb7a05342c486f0fa789 952 
libpython3-all-dbg_3.3.2-13_i386.deb
Checksums-Sha256: 
 b112769aa4c3f7d77c3606ffd7f4bbac9561f7c3fd50ba7729edcb7b41cb27a5 1906 
python3-defaults_3.3.2-13.dsc
 21683c0d2d053560d2ddef1643cc65da9c50ebab89d91202f69c267ab2361a50 127233 
python3-defaults_3.3.2-13.tar.gz
 2b2b69ac85030eac972b22460549f1de739519115250f91039c611a57e351aef 906 
python3-examples_3.3.2-13_all.deb
 04a466cedc1992647e02ef24bc72695a5b1ce072ad67d718fda24a107fb58069 3036 
idle3_3.3.2-13_all.deb
 0d6d2cc9a98aa27821f9e74dcf308530da5406d4f5c034b8c0a354bba0ce53c0 17526 
python3-doc_3.3.2-13_all.deb
 f2c8a0b718168ffece9d5eb525dcd46e6e2d280002e01a028a60147c9a5900dc 20364 
python3_3.3.2-13_i386.deb
 4bffa437d5df2916881547946517c1277929fadae748e2186d3d32d15390baf0 33760 
python3-minimal_3.3.2-13_i386.deb
 1821f2959a031b3b2a7acd371c585fa8ba683692218ccfb851b641b27907431e 1138 
python3-dev_3.3.2-13_i386.deb
 f73c5dec7919b0e8f9330cc9858c05078b9b1501d0d175629123f9b3491a64ec 17522 
libpython3-dev_3.3.2-13_i386.deb
 4be752f373e0b4f34587c7bb2e8da1c8231bddfb0e47706a7647de5b3b9355b4 17400 
libpython3-stdlib_3.3.2-13_i386.deb
 c4caeea466090ad4aa28aeeaa4970f1ca5b9dd390339a984823f1c84e6ba51da 1194 
python3-dbg_3.3.2-13_i386.deb
 d7971774d9d9eb316577e25402537eca9187d4b1067abe107c401c14e289cdec 17464 
libpython3-dbg_3.3.2-13_i386.deb
 2fca811009da23326562bdb34c15fca9eedd3bb2d81d5d9f5b7a2de320118225 920 
python3-all_3.3.2-13_i386.deb
 014d23503b9658e9f88c021942f89f482f4dbdb010e0faf88005e9b33941252f 946 
python3-all-dev_3.3.2-13_i386.deb
 f6b5507345939bf0bf601c1751d034cd71ab1ffddce760bd433158eca20dfd3a 944 
python3-all-dbg_3.3.2-13_i386.deb
 c15e4f49a2b253a1fe4a668db53f0c84fc3a17d94b65c398c7ce184e340c727d 952 

Accepted libedit 3.1-20130712-1~exp2 (source amd64)

2013-08-05 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 10:15:59 +0200
Source: libedit
Binary: libedit2 libedit-dev libedit2-dbg
Architecture: source amd64
Version: 3.1-20130712-1~exp2
Distribution: experimental
Urgency: low
Maintainer: LLVM Packaging Team pkg-llvm-t...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 libedit-dev - BSD editline and history libraries (development files)
 libedit2   - BSD editline and history libraries
 libedit2-dbg - BSD editline and history libraries (debug package)
Closes: 718721
Changes: 
 libedit (3.1-20130712-1~exp2) experimental; urgency=low
 .
   * Use system functions instead of embeded's (Closes: #718721)
   * Remove deprecated fix_gcc_warnings.diff
   * Remove useless 01-Makefile.diff
   * Thanks to Guillem Jover for these 3 fixes
Checksums-Sha1: 
 1ce6c894f5da397e6ad085be4bfb5ee17fe801f8 1609 libedit_3.1-20130712-1~exp2.dsc
 a01fc294d2159f719222bae9c5d3f788a60c76d6 12217 
libedit_3.1-20130712-1~exp2.debian.tar.bz2
 6846e8b3650ec89a0b237dd6a9e31c952ae09df3 75796 
libedit2_3.1-20130712-1~exp2_amd64.deb
 ac4b3534a20beb22709d32e61ec8ad4e8d2693b4 86226 
libedit-dev_3.1-20130712-1~exp2_amd64.deb
 b8423fa6ada39a2de042d5a624d4e04952a1e191 157548 
libedit2-dbg_3.1-20130712-1~exp2_amd64.deb
Checksums-Sha256: 
 61070a0895a225f3d3b1ce1823e96b1f6f24abf87fdacca0ed08f2265280c999 1609 
libedit_3.1-20130712-1~exp2.dsc
 a98d0993ce353864f39b4b4ad0f8d3ee5a11e5178eec9e2217ba7970d39b9c3f 12217 
libedit_3.1-20130712-1~exp2.debian.tar.bz2
 88df5550da81fda78d6f1dccee48cf854c4377360c8e3bc23bda9db69b988bce 75796 
libedit2_3.1-20130712-1~exp2_amd64.deb
 28437048b00228529cc0af31f0f6c496e719b5d17fa4aab377cb46f220d38478 86226 
libedit-dev_3.1-20130712-1~exp2_amd64.deb
 00df099fe82875878d68892fb556868055671cf2e41c3d0189784e47430d201b 157548 
libedit2-dbg_3.1-20130712-1~exp2_amd64.deb
Files: 
 ecd3513e0ba8cdc5aaa3a21bc6ee8c65 1609 libs standard 
libedit_3.1-20130712-1~exp2.dsc
 0c6ceb7ee85b29356066e023e3d92b50 12217 libs standard 
libedit_3.1-20130712-1~exp2.debian.tar.bz2
 4f4cdfa2d6bd2e3bdda23fb492ccd18e 75796 libs standard 
libedit2_3.1-20130712-1~exp2_amd64.deb
 8d884d848c5f538f736e5157dae1cd0a 86226 libdevel optional 
libedit-dev_3.1-20130712-1~exp2_amd64.deb
 63829b56b7a182910142ad25a7ecfa9f 157548 debug extra 
libedit2-dbg_3.1-20130712-1~exp2_amd64.deb

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

iEYEARECAAYFAlH/Y54ACgkQiOXXM92JlhDAPgCfdLmxrMxxR3zdI2bPlNuTKXHf
5m4AnibFXvw1RtdV4mOXZWhnZUlu3CmC
=04Th
-END PGP SIGNATURE-


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



Accepted key-mon 1.16-1 (source all)

2013-08-05 Thread Andrea Colangelo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 19 Jul 2013 10:39:15 +0200
Source: key-mon
Binary: key-mon
Architecture: source all
Version: 1.16-1
Distribution: unstable
Urgency: low
Maintainer: Andrea Colangelo war...@ubuntu.com
Changed-By: Andrea Colangelo war...@ubuntu.com
Description: 
 key-mon- Utility to show live keyboard and mouse status
Closes: 681699
Changes: 
 key-mon (1.16-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control:
 + update Vcs-* tags. (Closes: #681699)
 + change Priority to extra (depends on python-xlib, which is extra).
 + bump Standards-Version, no changes required.
Checksums-Sha1: 
 534e2a10febf493f0f53aa5d8282ed7cd9b96442 1909 key-mon_1.16-1.dsc
 eef1489a690de4f5b01cfd90c8d57254aa65ca80 146492 key-mon_1.16.orig.tar.gz
 a559f1b197e7fe550f436cc3046501d3408aab40 2853 key-mon_1.16-1.debian.tar.gz
 4ae8d97f7b5c236e618d60c46756b7df048a886e 166824 key-mon_1.16-1_all.deb
Checksums-Sha256: 
 00775d68032598c24940eda8534958f8f676bb9afd2ceb94e0e5aee83256f590 1909 
key-mon_1.16-1.dsc
 2b7d0035494b6ffa17b423aa96b33ecd6dcc49981c5ae4adb206456cceade559 146492 
key-mon_1.16.orig.tar.gz
 722fc4ebdda19f7b8a218ae4cc8062e901d41226e723e4819911ba20aeb50930 2853 
key-mon_1.16-1.debian.tar.gz
 33a84025bc993855069602c263c1a14023e4b46e9be238bccd76353eecc378a7 166824 
key-mon_1.16-1_all.deb
Files: 
 e128f5bdddf661f1738c98f91e63f27b 1909 utils extra key-mon_1.16-1.dsc
 38498ea7eb10392243d28da0cbc77abe 146492 utils extra key-mon_1.16.orig.tar.gz
 874c60c57c3f2211ed16bc0a0a55ecb7 2853 utils extra key-mon_1.16-1.debian.tar.gz
 98e8bcca9e44ffd56831a2feddeb704f 166824 utils extra key-mon_1.16-1_all.deb

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

iQIcBAEBAgAGBQJR/1ZXAAoJECcT5nkIRlGvsHIP/2G6UQfJa0DvlI01ScbJuCrT
TNftyzd0xqirzLcSG6UGEitKgd9Mi2t/v/vYTBXZOm02VkX+FV2mZoximw/+d0yO
8UWng7kSGrN8+ZGA50F1BJ39Ysl3Juv5wWPRISP6xjcMJyqNF/XeQLh8MyT/Sv3e
v4vCKyw8D0QJqcI5a2Cr9spaVDDkIKGSNQ+rKsOrspfeGZ56F1pH2UISk1LCScw5
YPGqkldSPy3B/52u8bRsonUikRXfr2o4qCY2935CETE56BomhqM4rdm0JVVCbId6
/XDTE3apwnTAQxJH9V81imNAI3+ehwCEuB1FRjx3jLtS8/ONfybZaG42TeAGGqvv
/5rBzI14KFiUA12I4LbySvqZNVNFBHaPoniuTtdy3yRLv7rxuI+SXnTc78Ea/8lm
ct0RkOvcjkzRz/jzlYB/TpwXbv200a4K533GYBL7dJvH+Ay89pPXXNXHhPyrDCPs
oChAGSCl6aPKAItWG5DEczhUeFf4ECF0dLyRKLfRAEiGiWxn330J1rQ/sit3wlQF
el3rCKf41Ye+9DOfCHrgvAIUtswvYfZtTOEIuSd5/ULqR7y1iBiMJPqvbb7/T1Dz
SA/2x1O+R+ZN4Zlu9iBtJQIEAc6DKopEcM6pQZUMNoKH+s75U2BWe8wLsgqeuoji
LpQBoekIrKG6PMElrD1F
=2Bkf
-END PGP SIGNATURE-


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



Accepted llvm-toolchain-3.3 1:3.3-4 (source amd64 all)

2013-08-05 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 01 Aug 2013 14:06:38 +0200
Source: llvm-toolchain-3.3
Binary: clang-3.3 clang-format-3.3 cpp11-migrate-3.3 clang-3.3-doc 
libclang1-3.3 libclang1-3.3-dbg libclang-3.3-dev libclang-common-3.3-dev 
libllvm3.3 libllvm3.3-dbg llvm-3.3 llvm-3.3-runtime llvm-3.3-dev 
libllvm-3.3-ocaml-dev llvm-3.3-doc llvm-3.3-examples lldb-3.3
Architecture: source amd64 all
Version: 1:3.3-4
Distribution: unstable
Urgency: low
Maintainer: LLVM Packaging Team pkg-llvm-t...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 clang-3.3  - C, C++ and Objective-C compiler (LLVM based)
 clang-3.3-doc - C, C++ and Objective-C compiler (LLVM based) - Documentation
 clang-format-3.3 - Tool to format C/C++/Obj-C code
 cpp11-migrate-3.3 - Tool to convert C++98 and C++03 code to C++11
 libclang-3.3-dev - clang library - Development package
 libclang-common-3.3-dev - clang library - Common development package
 libclang1-3.3 - clang library
 libclang1-3.3-dbg - clang library
 libllvm-3.3-ocaml-dev - Low-Level Virtual Machine (LLVM), bindings for OCaml
 libllvm3.3 - Low-Level Virtual Machine (LLVM), runtime library
 libllvm3.3-dbg - Low-Level Virtual Machine (LLVM), debugging symbols library
 lldb-3.3   - Next generation, high-performance debugger
 llvm-3.3   - Low-Level Virtual Machine (LLVM)
 llvm-3.3-dev - Low-Level Virtual Machine (LLVM), libraries and headers
 llvm-3.3-doc - Low-Level Virtual Machine (LLVM), documentation
 llvm-3.3-examples - Low-Level Virtual Machine (LLVM), examples
 llvm-3.3-runtime - Low-Level Virtual Machine (LLVM), bytecode interpreter
Closes: 717346
Changes: 
 llvm-toolchain-3.3 (1:3.3-4) unstable; urgency=low
 .
   * llvm-config-3.3 --libdir reports wrong directory (Closes: #717346)
   * Backport of upstream patch to fix the FTBFS under kfreebsd i386
   * binutils-gold no longer exists. Use -fuse-ld=gold instead.
   * Use the static library libjsoncpp.a instead of the ship library in polly
Checksums-Sha1: 
 ff1966a043dd7c0d8a175639d336629a20b67a3e 4124 llvm-toolchain-3.3_3.3-4.dsc
 085e66cdfb7aead239483d845367e86fc0f6d3fb 168853 
llvm-toolchain-3.3_3.3-4.debian.tar.gz
 f88e48789bcd26e7604a68d5572a7768d9cba6cc 7839774 clang-3.3_3.3-4_amd64.deb
 2b9c5d65ae8f4f973550506b75c74cce48767dbc 2916028 
clang-format-3.3_3.3-4_amd64.deb
 e17425ad7b3f490573e41aba668adb5557faca2d 3033314 
cpp11-migrate-3.3_3.3-4_amd64.deb
 86b21616449f3f82200c2e9df6f7679c41b18b24 412342 clang-3.3-doc_3.3-4_all.deb
 e47ffe61d4de0d7763b7e882acda4d867a83c895 3312446 libclang1-3.3_3.3-4_amd64.deb
 9c11f41ebf65a7c7b07937542dd398f495d64217 92658406 
libclang1-3.3-dbg_3.3-4_amd64.deb
 9192e30d4885ed21c9b549491d1b1ff7da7fb5cc 6816502 
libclang-3.3-dev_3.3-4_amd64.deb
 0aae8e0c820d23d384b05e7ed7366b0e5f7bafef 289586 
libclang-common-3.3-dev_3.3-4_amd64.deb
 9bbb6b6d7523ff57fdf60f92c7a711ba65360e87 6085628 libllvm3.3_3.3-4_amd64.deb
 33f82c39d6f353d68d1a6c08ad213e15461d4da5 122945352 
libllvm3.3-dbg_3.3-4_amd64.deb
 ae2f667d9347d8cc2a07e0d7963a5f51e46e 1109414 llvm-3.3_3.3-4_amd64.deb
 0fb2c46c0e318c5d9e6376082a30ccd91b62c554 33560 llvm-3.3-runtime_3.3-4_amd64.deb
 c70c1988682e3462700ad7c00ab4e3027b8cc3b8 9183388 llvm-3.3-dev_3.3-4_amd64.deb
 88a5e7bc3634b59050f78dabe64689834b2c7ae5 189018 
libllvm-3.3-ocaml-dev_3.3-4_amd64.deb
 81957f151b9838329ce1d11cb7663dde88b601c5 918012 llvm-3.3-doc_3.3-4_all.deb
 bb876e47e87f8cb5ad4838d707fab95173186703 97682 llvm-3.3-examples_3.3-4_all.deb
 ef4a15d3cb8205c94b9d86b681cea3dd84c673df 5947738 lldb-3.3_3.3-4_amd64.deb
Checksums-Sha256: 
 7e5e955d8ae8c2757f68b1bb03b2b2dce267e0c126956fe640796e4a6a6efd97 4124 
llvm-toolchain-3.3_3.3-4.dsc
 3e6695d970914ad8e2b8d185d1ec1e22cb3e371c7e17968a665e59abb9f927ee 168853 
llvm-toolchain-3.3_3.3-4.debian.tar.gz
 59e8e635aa9504eecc502a58545bf538a7e1f937c985fc4c288faed2dff04d77 7839774 
clang-3.3_3.3-4_amd64.deb
 47b3b127f858ed913b1f76cf5a006c6fe771ab3e33f3061ae88ad8bd5772de29 2916028 
clang-format-3.3_3.3-4_amd64.deb
 4162f5763d3e36255ee69431254fc3f777568784cbbc37b56f184da3a4be2201 3033314 
cpp11-migrate-3.3_3.3-4_amd64.deb
 0c32fb452f95663dc1dc474177889e9f227e1c4ec3e946c3fc42e5cd0ae8d48d 412342 
clang-3.3-doc_3.3-4_all.deb
 7b11cabb74c9b9082311834ac3cb3248ecb7930e530706894e5d1e6ef95aeb1b 3312446 
libclang1-3.3_3.3-4_amd64.deb
 303fef9306e4813ab57f1b26857022f6542a3c19f6a2559d748935700d049f76 92658406 
libclang1-3.3-dbg_3.3-4_amd64.deb
 e825269f63295b78095f6321818ef0d980a4331168b162f01c236c33e081c7c6 6816502 
libclang-3.3-dev_3.3-4_amd64.deb
 1c1abb831a49ffaeb6c4ee24b0c21750cd4c5d307bb83a0f047ae6932a733b6d 289586 
libclang-common-3.3-dev_3.3-4_amd64.deb
 db524aba19ffda9bfe99622256dc04505ca4a87671337f6498aabe77cc293e8e 6085628 
libllvm3.3_3.3-4_amd64.deb
 71710581441f56993b66d0b457246df1f83cec88b7ab782354943d56e39fb40c 122945352 
libllvm3.3-dbg_3.3-4_amd64.deb
 e6264e992ee6c6765bfc3ff8e258078e810481016d6c31dd1613c9b9f7a94a85 1109414 
llvm-3.3_3.3-4_amd64.deb
 

Accepted phyml 2:20120412-2 (source amd64)

2013-08-05 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 09:56:27 +0200
Source: phyml
Binary: phyml
Architecture: source amd64
Version: 2:20120412-2
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 phyml  - Phylogenetic estimation using Maximum Likelihood
Closes: 718747
Changes: 
 phyml (2:20120412-2) unstable; urgency=low
 .
   * debian/patches/sse_only_if_supported.patch: Check architecture before
 deciding to build using -msse
 Closes: #718747
Checksums-Sha1: 
 156620134ecb909d68d88ba14a3f117cf407762e 1378 phyml_20120412-2.dsc
 3f466e2fb3078684331b76184b87a32591f8d82e 12058 phyml_20120412-2.debian.tar.gz
 c1b1212b5c17dc9b03365b476aaf8945ba718384 939294 phyml_20120412-2_amd64.deb
Checksums-Sha256: 
 a51336916db935d0feb7aadc58d2d9a96c3260b77173bf1ec5aba6a8307da0cd 1378 
phyml_20120412-2.dsc
 d2d6bd6baca0e6e3491e58d49e68f849e57d8c628dc57490ee071934e3fa138a 12058 
phyml_20120412-2.debian.tar.gz
 7c79c0be206e1b660698b368dae2855529fc1b64d93f0a8aed38cb4669fd30ea 939294 
phyml_20120412-2_amd64.deb
Files: 
 0f10a5b900038a9db7e6560055998ead 1378 science optional phyml_20120412-2.dsc
 c472f30c51b13cfc9df976580c0d6f74 12058 science optional 
phyml_20120412-2.debian.tar.gz
 40f05b86ecf50f6f493bedaa04d4c3b3 939294 science optional 
phyml_20120412-2_amd64.deb

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

iEYEARECAAYFAlH/W+8ACgkQYDBbMcCf01rZbQCgi5JdJ1YUOPQLR+KdTAftW9QJ
R5oAn2TJwn7OkVE5hJ7ptHKEOOre75ym
=R73T
-END PGP SIGNATURE-


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



Accepted python3-stdlib-extensions 3.3.2-1 (source amd64)

2013-08-05 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 10:06:54 +0200
Source: python3-stdlib-extensions
Binary: python3-tk python3-gdbm python3-tk-dbg python3-gdbm-dbg
Architecture: source amd64
Version: 3.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 python3-gdbm - GNU dbm database support for Python 3.x
 python3-gdbm-dbg - GNU dbm database support for Python 3.x (debug extension)
 python3-tk - Tkinter - Writing Tk applications with Python 3.x
 python3-tk-dbg - Tkinter - Writing Tk applications with Python 3.x (debug 
extensio
Changes: 
 python3-stdlib-extensions (3.3.2-1) unstable; urgency=low
 .
   * Bump version to 3.3.2.
   * Stop building for python3.2.
Checksums-Sha1: 
 86350d8198822c08c3d630518d81eb01c19949b7 1173 
python3-stdlib-extensions_3.3.2-1.dsc
 42a3064cc736cdcabd5cdfb90a451380b7727314 49757 
python3-stdlib-extensions_3.3.2-1.tar.gz
 a9481c1a50ca8c5f1cc3a228ac30ca5cd9722ca7 24238 python3-tk_3.3.2-1_amd64.deb
 58396ba96dcc8513a60c59c0dba1fd9a84a10ff2 12844 python3-gdbm_3.3.2-1_amd64.deb
 c53444de204373f9c258cc10a09c21f2ead538c8 65024 python3-tk-dbg_3.3.2-1_amd64.deb
 c50dcd508a2cf7e5acccfc2522a9bedaa7b135e3 20054 
python3-gdbm-dbg_3.3.2-1_amd64.deb
Checksums-Sha256: 
 de26a3bd96f5e87d57416deed708664b1768fd4797e0b17b4bb4768954085e16 1173 
python3-stdlib-extensions_3.3.2-1.dsc
 71b95dbfd91229cc0f546c1e618a797a9744304931d400848a4d4add0eeda3a4 49757 
python3-stdlib-extensions_3.3.2-1.tar.gz
 26416b8f36bf590df10976b2ec4cafb1dc26fa6f94a27f1a8589fbf8bdf201f4 24238 
python3-tk_3.3.2-1_amd64.deb
 67bbeda6367e021298da5d238dd735fc2b9e077d199d376958c1d6e6a6441c11 12844 
python3-gdbm_3.3.2-1_amd64.deb
 bb1ec5e1ede23d4a1280937c99a62259cf8cf17a3c503bd79b1946c72ad99bd8 65024 
python3-tk-dbg_3.3.2-1_amd64.deb
 79e8292962d35a5c9d9360c83b0fbe9894ea9fb8cf62571b9414f59ee5adcc2a 20054 
python3-gdbm-dbg_3.3.2-1_amd64.deb
Files: 
 4dfceb64cead370f853a79a6662344ae 1173 python optional 
python3-stdlib-extensions_3.3.2-1.dsc
 e5b9eb9c04a6592fd41b172cb90ed39e 49757 python optional 
python3-stdlib-extensions_3.3.2-1.tar.gz
 6eaf670e34e5a18c31b6808be73bf879 24238 python optional 
python3-tk_3.3.2-1_amd64.deb
 f07e6b9fd831755f7d11defcd375be7a 12844 python optional 
python3-gdbm_3.3.2-1_amd64.deb
 26994330d313608b23f8ccf3d6e463fa 65024 debug extra 
python3-tk-dbg_3.3.2-1_amd64.deb
 5f2b7c472c6133fd8ee7527355bbf3f5 20054 debug extra 
python3-gdbm-dbg_3.3.2-1_amd64.deb

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

iEYEARECAAYFAlH/XqwACgkQStlRaw+TLJxgAQCgilSWpF19ckSIyBL+rQhBG8sV
LEsAoKKjW/fXvzwOL6UBC6xTolgHoIqp
=oMu4
-END PGP SIGNATURE-


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



Accepted strigi 0.7.8-1 (source amd64)

2013-08-05 Thread Pino Toscano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 00:08:36 +0200
Source: strigi
Binary: strigi-daemon strigi-client strigi-utils libstreams0 libstreams-dev 
libstreamanalyzer0 libstreamanalyzer-dev libsearchclient0 libsearchclient-dev 
libstrigihtmlgui0 libstrigihtmlgui-dev libstrigiqtdbusclient0 
libstrigiqtdbusclient-dev strigi-dbg
Architecture: source amd64
Version: 0.7.8-1
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Pino Toscano p...@debian.org
Description: 
 libsearchclient-dev - development files for libsearchclient
 libsearchclient0 - searchclient library for Strigi Desktop Search
 libstreamanalyzer-dev - development files for libstreamanalyzer
 libstreamanalyzer0 - streamanalyzer library for Strigi Desktop Search
 libstreams-dev - development files for libstreams
 libstreams0 - streams library for Strigi Desktop Search
 libstrigihtmlgui-dev - development files for libstrigihtmlgui
 libstrigihtmlgui0 - library for writing html clients for Strigi Desktop Search
 libstrigiqtdbusclient-dev - development files for libstrigiqtdbusclient
 libstrigiqtdbusclient0 - library for writing D-Bus clients for Strigi Desktop 
Search
 strigi-client - Qt4 client for Strigi Desktop Search
 strigi-daemon - fast indexing and searching tool for your personal data 
(daemon)
 strigi-dbg - debugging symbols for strigi
 strigi-utils - command-line tools for Strigi Desktop Search
Closes: 680641 707525 715819 718373
Changes: 
 strigi (0.7.8-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
 .
   [ Maximiliano Curia ]
   * Remove patches applied upstream:
 - upstream_gcc47-fix-unistd.h-header-required-unconditionally-f.patch
 - id3_crash_fix.diff
   * Bump Standards-Version to 3.9.4.
   * Add myself to uploaders.
   * Update vcs fields.
   * Avoid symbols for internal so files.
   * Add a watch file.
   * New patch: deepgrep_mayhem_fix.diff (Closes: #715819) fix for
 http://www.forallsecure.com/bug-
 reports/18bb7c6dfe2b4ae87a2937f9678b812bb1bd5c8d/
 .
   [ Pino Toscano ]
   * Force the libdir to the non-multiarch path, to keep compatibility with
 what has been done so far.
   * Update libstreams-dev.install to not rely on a specific cmake build type.
 (Closes: #707525)
   * Bump cmake build dependency to 2.8.9, as requested by the upstream build
 system.
   * Minor touches to some descriptions, including a typo fix.
 (Closes: #680641)
   * Update .install files.
   * Require clucene = 2, and adapt strigi-daemon.install to the new indexer
 (lucene2indexer instead of luceneindexer). (Closes: #718373)
   * Explicitly build depend on pkg-config, instead of relying on it being
 installed by something else.
   * Link in as-needed mode.
Checksums-Sha1: 
 05eaf10c181332000ae83b6274321e25eee258ba 2351 strigi_0.7.8-1.dsc
 7250fb15109d33b0c49995a2cc3513ba7d937882 810574 strigi_0.7.8.orig.tar.bz2
 fed0c4ea08311ccfb924370246b54375472c8c91 10006 strigi_0.7.8-1.debian.tar.gz
 88aa7548df4c0be7775e4b9bc4e4b55f65b47324 134324 strigi-daemon_0.7.8-1_amd64.deb
 96ee50ec8586cb659a2d201403cc9354056816a9 102490 strigi-client_0.7.8-1_amd64.deb
 e86768cc54105fe1d381b546c4d3d35cf7223f1e 72112 strigi-utils_0.7.8-1_amd64.deb
 5ce53fa8e3e2dd9d17b9cece608c7931c3aba254 89432 libstreams0_0.7.8-1_amd64.deb
 3e61566bf25c575f2d887fedb30ecfe9874b04db 33958 libstreams-dev_0.7.8-1_amd64.deb
 a90d40673d251e65cac062fe2197d734b4290518 298892 
libstreamanalyzer0_0.7.8-1_amd64.deb
 c090a3172e9c187e4abdd3047407bbc0fac5b253 33408 
libstreamanalyzer-dev_0.7.8-1_amd64.deb
 e912aa5a91869cd539b9ad8c9f9251098a22f633 39422 
libsearchclient0_0.7.8-1_amd64.deb
 a628b2675213976ac27fc064bdaa55e148e09e2d 17274 
libsearchclient-dev_0.7.8-1_amd64.deb
 4d023b5475a4cabf4e552dc99443b2d8448fc825 38896 
libstrigihtmlgui0_0.7.8-1_amd64.deb
 4f39a183c647e10cae3cc3cacff5268985a9265c 15716 
libstrigihtmlgui-dev_0.7.8-1_amd64.deb
 d10c5fa2f1a7a353b60e11e847f5f389075fae2d 50276 
libstrigiqtdbusclient0_0.7.8-1_amd64.deb
 c43b8875a62447686a9364ac50e424e7e13041e7 17224 
libstrigiqtdbusclient-dev_0.7.8-1_amd64.deb
 dedd4d1360096d9d161caa7f0d090bd009d41050 8784324 strigi-dbg_0.7.8-1_amd64.deb
Checksums-Sha256: 
 3fe4df3df33bd7a2220a63b6b2f293dcc4c3ffd818cedfbe0c2bdd99c30f9f90 2351 
strigi_0.7.8-1.dsc
 43e461a625acdefa59bf58cc9d10aebda9eba920dfbe800fc77e6dcbf1eff989 810574 
strigi_0.7.8.orig.tar.bz2
 c3f3ddae8b511084dcaf04bd91ccc6cc67c375280b46974081ec0828bea5e23c 10006 
strigi_0.7.8-1.debian.tar.gz
 b77aeb19620f5c5cb579494fa8134ae417dec979bb73e77dcd62ed81f50544c7 134324 
strigi-daemon_0.7.8-1_amd64.deb
 a0b37bef4ec4899fc660df17d3b3a3637af67f1249bd41f9594bf3c848671d0f 102490 
strigi-client_0.7.8-1_amd64.deb
 09afed038d7cbb28fcdd1916ec3b7a28ddf9afe74a52711f1c4ad22a362e3c6c 72112 
strigi-utils_0.7.8-1_amd64.deb
 8d8c432b86f70dbaab789cd6b6412ee510628fdc273605df84d83edf99404fb5 89432 
libstreams0_0.7.8-1_amd64.deb
 

Accepted boost1.53 1.53.0-6 (source amd64 all)

2013-08-05 Thread Dmitrijs Ledkovs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 10:03:13 +0100
Source: boost1.53
Binary: libboost1.53-dbg libboost1.53-dev libboost1.53-all-dev libboost1.53-doc 
libboost-atomic1.53.0 libboost-atomic1.53-dev libboost-chrono1.53.0 
libboost-chrono1.53-dev libboost-context1.53.0 libboost-context1.53-dev 
libboost-date-time1.53.0 libboost-date-time1.53-dev libboost-exception1.53-dev 
libboost-filesystem1.53.0 libboost-filesystem1.53-dev libboost-graph1.53.0 
libboost-graph1.53-dev libboost-graph-parallel1.53.0 
libboost-graph-parallel1.53-dev libboost-iostreams1.53.0 
libboost-iostreams1.53-dev libboost-locale1.53.0 libboost-locale1.53-dev 
libboost-math1.53.0 libboost-math1.53-dev libboost-mpi1.53.0 
libboost-mpi1.53-dev libboost-mpi-python1.53.0 libboost-mpi-python1.53-dev 
libboost-program-options1.53.0 libboost-program-options1.53-dev 
libboost-python1.53.0 libboost-python1.53-dev libboost-random1.53.0 
libboost-random1.53-dev libboost-regex1.53.0 libboost-regex1.53-dev 
libboost-serialization1.53.0 libboost-serialization1.53-dev 
libboost-signals1.53.0
 libboost-signals1.53-dev libboost-system1.53.0 libboost-system1.53-dev 
libboost-test1.53.0 libboost-test1.53-dev libboost-thread1.53.0 
libboost-thread1.53-dev libboost-timer1.53.0 libboost-timer1.53-dev 
libboost-wave1.53.0
 libboost-wave1.53-dev
Architecture: source amd64 all
Version: 1.53.0-6
Distribution: unstable
Urgency: low
Maintainer: Debian Boost Team pkg-boost-de...@lists.alioth.debian.org
Changed-By: Dmitrijs Ledkovs dmitrij.led...@ubuntu.com
Description: 
 libboost-atomic1.53-dev - atomic data types, operations, and memory ordering 
constraints
 libboost-atomic1.53.0 - atomic data types, operations, and memory ordering 
constraints
 libboost-chrono1.53-dev - C++ representation of time duration, time point, and 
clocks
 libboost-chrono1.53.0 - C++ representation of time duration, time point, and 
clocks
 libboost-context1.53-dev - provides a sort of cooperative multitasking on a 
single thread
 libboost-context1.53.0 - provides a sort of cooperative multitasking on a 
single thread
 libboost-date-time1.53-dev - set of date-time libraries based on generic 
programming concepts
 libboost-date-time1.53.0 - set of date-time libraries based on generic 
programming concepts
 libboost-exception1.53-dev - set of date-time libraries based on generic 
programming concepts
 libboost-filesystem1.53-dev - filesystem operations (portable paths, iteration 
over directories
 libboost-filesystem1.53.0 - filesystem operations (portable paths, iteration 
over directories
 libboost-graph-parallel1.53-dev - generic graph components and algorithms in 
C++
 libboost-graph-parallel1.53.0 - generic graph components and algorithms in C++
 libboost-graph1.53-dev - generic graph components and algorithms in C++
 libboost-graph1.53.0 - generic graph components and algorithms in C++
 libboost-iostreams1.53-dev - Boost.Iostreams Library development files
 libboost-iostreams1.53.0 - Boost.Iostreams Library
 libboost-locale1.53-dev - C++ facilities for localization
 libboost-locale1.53.0 - C++ facilities for localization
 libboost-math1.53-dev - Boost.Math Library development files
 libboost-math1.53.0 - Boost.Math Library
 libboost-mpi-python1.53-dev - C++ interface to the Message Passing Interface 
(MPI), Python Bind
 libboost-mpi-python1.53.0 - C++ interface to the Message Passing Interface 
(MPI), Python Bind
 libboost-mpi1.53-dev - C++ interface to the Message Passing Interface (MPI)
 libboost-mpi1.53.0 - C++ interface to the Message Passing Interface (MPI)
 libboost-program-options1.53-dev - program options library for C++
 libboost-program-options1.53.0 - program options library for C++
 libboost-python1.53-dev - Boost.Python Library development files
 libboost-python1.53.0 - Boost.Python Library
 libboost-random1.53-dev - Boost Random Number Library
 libboost-random1.53.0 - Boost Random Number Library
 libboost-regex1.53-dev - regular expression library for C++
 libboost-regex1.53.0 - regular expression library for C++
 libboost-serialization1.53-dev - serialization library for C++
 libboost-serialization1.53.0 - serialization library for C++
 libboost-signals1.53-dev - managed signals and slots library for C++
 libboost-signals1.53.0 - managed signals and slots library for C++
 libboost-system1.53-dev - Operating system (e.g. diagnostics support) library
 libboost-system1.53.0 - Operating system (e.g. diagnostics support) library
 libboost-test1.53-dev - components for writing and executing test suites
 libboost-test1.53.0 - components for writing and executing test suites
 libboost-thread1.53-dev - portable C++ multi-threading
 libboost-thread1.53.0 - portable C++ multi-threading
 libboost-timer1.53-dev - C++ wall clock and CPU process timers
 libboost-timer1.53.0 - C++ wall clock and CPU process timers
 libboost-wave1.53-dev - C99/C++ preprocessor library
 libboost-wave1.53.0 - C99/C++ preprocessor library
 libboost1.53-all-dev 

Accepted knot 1.3.0~rc5-2 (source amd64 all)

2013-08-05 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 10:39:48 +0200
Source: knot
Binary: knot knot-dbg knot-dnsutils knot-host knot-doc
Architecture: source amd64 all
Version: 1.3.0~rc5-2
Distribution: unstable
Urgency: low
Maintainer: Ondřej Surý ond...@debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description: 
 knot   - authoritative domain name server
 knot-dbg   - Debug symbols for Knot DNS
 knot-dnsutils - Clients provided with Knot DNS (kdig, knslookup, knsupdate)
 knot-doc   - Documentation for Knot DNS
 knot-host  - Version of 'host' bundled with Knot DNS
Changes: 
 knot (1.3.0~rc5-2) unstable; urgency=low
 .
   * Pull some pre 1.3.0 patches (mainly to test before release):
+ Initialize secondary groups for user user.group.
+ Reworked CH TXT records support (RFC 4892).
+ Fixed inactive xfers may be disconnected depending on the previous
  result.
+ Add server starting information to log.
Checksums-Sha1: 
 467aba0077819beb2544c7fa8d272d58c49368c4 1411 knot_1.3.0~rc5-2.dsc
 4b81ca5dae65815e2727d7a4e129759aea8f683d 17108 knot_1.3.0~rc5-2.debian.tar.gz
 5ee67ce5249e9a70c10f46d12a08111a24e6c118 281990 knot_1.3.0~rc5-2_amd64.deb
 f1b2c60a9384443d18488aee59d554cdeb615d52 2291156 knot-dbg_1.3.0~rc5-2_amd64.deb
 6413e2e2ac068a99be930bf9e6ffe31a2091b640 148252 
knot-dnsutils_1.3.0~rc5-2_amd64.deb
 b71295d07b9c618c164898ed055acb9cb0d75a18 125350 knot-host_1.3.0~rc5-2_amd64.deb
 b6af23f3055f5e25f2aa6ab32e640e6318a8f639 297036 knot-doc_1.3.0~rc5-2_all.deb
Checksums-Sha256: 
 241a67be0cab48b9fc221906511385f405ba6adf7e1fa14747d26de54e0cd8c4 1411 
knot_1.3.0~rc5-2.dsc
 e5d923973b26bca5474ff9f733bc5994359db92b36f0b9d4af09a3238f37756f 17108 
knot_1.3.0~rc5-2.debian.tar.gz
 570be2b81195ef6de34fd584db503673cc85dd3e0855b42769bcac701c180372 281990 
knot_1.3.0~rc5-2_amd64.deb
 4afd18cec3e4934af7d062eb2b40043b82fd66884adc0ae44b4ec79bf3fc8bed 2291156 
knot-dbg_1.3.0~rc5-2_amd64.deb
 07e9f1df99bfecf65354f673a627eff769c54fc8e49aa0de153cdb943ab2610b 148252 
knot-dnsutils_1.3.0~rc5-2_amd64.deb
 253974c28d506d14589883360d4f5fa3220bd81e3ee132274c50cb365e0b8ad8 125350 
knot-host_1.3.0~rc5-2_amd64.deb
 d380f103ac719b9a81a559908ed4407f7d1dfd8373ac068fe0c97d2005f65664 297036 
knot-doc_1.3.0~rc5-2_all.deb
Files: 
 8ed90294f0e3d79484f77d7d5ea18cff 1411 net extra knot_1.3.0~rc5-2.dsc
 f1fa7cab4bd8a24fb43dbdca034c8cfa 17108 net extra knot_1.3.0~rc5-2.debian.tar.gz
 43710abb242464b94f22b3ee98260cbd 281990 net extra knot_1.3.0~rc5-2_amd64.deb
 f4f766c45351978ef20c891e08fbd6af 2291156 debug extra 
knot-dbg_1.3.0~rc5-2_amd64.deb
 421b1c693c18e62b9850294ffaa31012 148252 net optional 
knot-dnsutils_1.3.0~rc5-2_amd64.deb
 a0db35d4e69355ef052d3c6dceeb02a2 125350 net optional 
knot-host_1.3.0~rc5-2_amd64.deb
 5ff0042d3c5c5b39df317bc5e6684965 297036 doc optional 
knot-doc_1.3.0~rc5-2_all.deb

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

iEYEARECAAYFAlH/b1gACgkQ9OZqfMIN8nMzVQCdEM4Fnpyn6uaMUea4B1is/NEi
D08An06XnGNrc2TssQPYgxFkPU9K9evF
=wUMw
-END PGP SIGNATURE-


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



Accepted r-bioc-edger 3.2.4~dfsg-1 (source amd64)

2013-08-05 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 19:26:22 +0900
Source: r-bioc-edger
Binary: r-bioc-edger
Architecture: source amd64
Version: 3.2.4~dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description: 
 r-bioc-edger - Empirical analysis of digital gene expression data in R
Changes: 
 r-bioc-edger (3.2.4~dfsg-1) unstable; urgency=low
 .
   543a589 Imported Upstream version 3.2.4~dfsg
   846128f Normalised VCS URLs.
   735a2e9 Signal autopkgtest suite with XS-Testsuite field.
   a429231 Correct the autopkgtest as the test files are compressed.
Checksums-Sha1: 
 1f1ccba61f8f7c6eba88339f686150cb48fafee7 2120 r-bioc-edger_3.2.4~dfsg-1.dsc
 8c3dcbaa709899a4352bce78833611fa77080796 421866 
r-bioc-edger_3.2.4~dfsg.orig.tar.gz
 4509304634ffcef8488f6cd8b39e8ee862043eb7 4414 
r-bioc-edger_3.2.4~dfsg-1.debian.tar.gz
 07f661e2db54616e49296ad16e98031b8e173ea2 584498 
r-bioc-edger_3.2.4~dfsg-1_amd64.deb
Checksums-Sha256: 
 a0d79f67eba5e999cf9263815024fd77bfc9364475a4119b54a99095c3514c6d 2120 
r-bioc-edger_3.2.4~dfsg-1.dsc
 75dc5d96c5a7a96065b0522f421586ecd9605742bde8cda22d90fcb2eca9bd61 421866 
r-bioc-edger_3.2.4~dfsg.orig.tar.gz
 55b8027b398cfcee504dc9448d0eb54c0bbcae9d126255c25272792bafca 4414 
r-bioc-edger_3.2.4~dfsg-1.debian.tar.gz
 ec4a6e859913eae76977ea7942928f252d05b633bc50c26a37be60b0e7bd8dec 584498 
r-bioc-edger_3.2.4~dfsg-1_amd64.deb
Files: 
 a93350e55198bfd28ef6e1f223b82111 2120 gnu-r optional 
r-bioc-edger_3.2.4~dfsg-1.dsc
 c2495c24f15835a62ce2ed61decfae00 421866 gnu-r optional 
r-bioc-edger_3.2.4~dfsg.orig.tar.gz
 79b7e2cc5f7c0293aa4bd5933fc4b833 4414 gnu-r optional 
r-bioc-edger_3.2.4~dfsg-1.debian.tar.gz
 d477c91ba22d4662bfcc7223ce64dd49 584498 gnu-r optional 
r-bioc-edger_3.2.4~dfsg-1_amd64.deb

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

iQIcBAEBCAAGBQJR/39rAAoJEMW9bI8ildUCDQoQAJZPyx5Eyqgdq7LSXxKC8PFy
iauJjhl0pzVjW01x7Mg+fCXdyapPrilsTtpXP4drhdSn0qL7wak7PvYBhgYKpRvT
RmyYt7rOvOLLN/MFzZefKSLLE69G/tKsj0jlUHyKOx1JAldS2wipQQXzngMctwwB
7cEyvZPQWmOm9ZPv83mCCJZfN+2/Tj3a7Xoo7Y9jEIFr+MuMOfLvhjPSGjsDvZje
vSuy3TpS3ENtfjw+BUPA5A+cDmrwqcNwAB95ZQWrRtz/QyEsAhRTnvBSercm+j5u
DF6OzGUj7iJGCXl1GSVSJSD6JIQWf9rY5WPPcjLtGZ4P9Nps4xgAJjHkQcxWNLu3
BLY3AgE2J8EEMs860DI1mLddQEVA2Xrh4wDpcjyVZhh6ab2QsZwtmpt5j1OkQZ5I
WXt9p5S2Cj7j5uZvE/5uHavzkJvmjCvUR0RxYdwV2qFkdWmCmLRa3PaL06evx2RH
TysLtLLkRZhOiKJpg5eIAfY9QDxuCQZCxNd1naw8EEahCgKW51XkIv6mSxFnw0i9
MOxFh2ayNVEvwzasuhKzWgVeFkeujfcIS7H0XnhdIusxP53IPq+xMg3LOL+29s3k
mP2eOl+WonhjLEidTE05tnnGy7Y9OINGPC5gCOjWtagAfaVvx4kxDn1gyAnysEzD
GkmXePse0EVnN+1Pk9ny
=xd9V
-END PGP SIGNATURE-


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



Accepted cpanminus 1.6936-1 (source all)

2013-08-05 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 13:07:50 +0200
Source: cpanminus
Binary: cpanminus
Architecture: source all
Version: 1.6936-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 cpanminus  - script to get, unpack, build and install modules from CPAN
Changes: 
 cpanminus (1.6936-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
Checksums-Sha1: 
 1c15aa1b8f55539e9e74b67e74d80e4890ae0342 1982 cpanminus_1.6936-1.dsc
 cb9f7fa62e646be8c705ffc66202727979053f58 280778 cpanminus_1.6936.orig.tar.gz
 11ae1a592d7b7494f653b0c7bb20cbae302ec933 3881 cpanminus_1.6936-1.debian.tar.gz
 7fe7048c22c7e598b5843b080c0b11be8c57159b 201404 cpanminus_1.6936-1_all.deb
Checksums-Sha256: 
 a1449f81446f75b2fe22d7d0a368e9f68bdf1c4af8738fcb55b542a5dbdf158e 1982 
cpanminus_1.6936-1.dsc
 f469d97cbc85b6c38a4bd898ad47c1aabe1bd91740930d8f62166d7ff4a71b9a 280778 
cpanminus_1.6936.orig.tar.gz
 944f1ce20c37d74438ccd8011f0d5456d25399e3eb88db77f30bc41bfc5f6c96 3881 
cpanminus_1.6936-1.debian.tar.gz
 dca4b0cde7b7e4964253ce10c0da54670559bc84addfb237bb8f006e7dbf034a 201404 
cpanminus_1.6936-1_all.deb
Files: 
 635275e332b2a133070d6a32652355d1 1982 perl optional cpanminus_1.6936-1.dsc
 cc3495f1797eb762c480c560419f6a1f 280778 perl optional 
cpanminus_1.6936.orig.tar.gz
 e445a7451391b0b9c85068ee809519f2 3881 perl optional 
cpanminus_1.6936-1.debian.tar.gz
 4f456abe7515d8624162d4ceba125272 201404 perl optional 
cpanminus_1.6936-1_all.deb

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

iQIcBAEBCAAGBQJR/4e/AAoJELs6aAGGSaoGRcYP/jhvBB0WuvNPfET41JBABRLQ
zxOLqQIwMpqKITD2cJty1PXCUgIRivSA3f8YSJ7OqbPMqXaKLtv04wIAH98zYd2M
AMSCN47qRLyrCWNXuiMVYOEyClrzL4awlNXUkg3zNK2ZRuBGJsnS7nmKg4E7mNmo
sv5HH5oTBcBVXd6nY2/yPP7/b6S2Xmf9UVWzlCxY2K1clNsATeA3mq/lmKIwIe2v
/Wz+tAq3MipnJnH+NCzzTIG3LdCmb9AQL6R3IeBCvA48uda3O/6tfrN0uuipSmPF
wCFFt8XVHyB+OyjaAj9KJff4MkYN1cweY/ZKx/JzHGpQBq7MxdDlPEi31GbucqR6
nI1uLCm1LclA+HBy42+MvBZoldxiZwh9mR2okdL0+FVn4Q+/E73fNU35O1LEKlzb
bLwr+CvhEBCx94BMGCVtI/8/RgzvLUzX0hsU4hV8pFJBFp0iV+Q6FwayZBKWJLSH
zP9q//WkPnFyYcnW2sOkEfA2VM7t9DqooRmo30UwyfV78cHDkw+HpVP6e7HU3S60
7zxKiW1qtnX+WHMzlkiyK2siZc4/i3HFWlueyNCZrBR04CiloApU4NE7gI3HNAFg
ifeFE63IxgO5HJIyTFLXR4tfw3OsqTcY8QmjHEJMO56tykaJuskiLwv9mFkhitUe
tE5llsGMIFqke3kIzNDI
=nbiL
-END PGP SIGNATURE-


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



Accepted pelican 3.2.2-1 (source all)

2013-08-05 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 13:25:38 +0200
Source: pelican
Binary: python-pelican
Architecture: source all
Version: 3.2.2-1
Distribution: unstable
Urgency: low
Maintainer: Ondřej Surý ond...@debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description: 
 python-pelican - blog aware, static website generator
Closes: 711875 714781
Changes: 
 pelican (3.2.2-1) unstable; urgency=low
 .
   * New upstream version 3.2.2 (Closes: #711875)
   * Add hard dependency on python-markdown (Closes: #714781)
Checksums-Sha1: 
 ce5d673e3c02bcd43043a034f9229b1226ddd2ad 1088 pelican_3.2.2-1.dsc
 8e240e9862ec5bc7c6cb6e51f9de4fc934425063 164313 pelican_3.2.2.orig.tar.gz
 463b26bd2e7a538e8f1619ba761edd77d5a8119e 12799 pelican_3.2.2-1.debian.tar.gz
 0376a27e6a5ff1c92223f00eb0de9f1c688008f5 103736 python-pelican_3.2.2-1_all.deb
Checksums-Sha256: 
 c86411fc5caaa9d6d5a3ee1b3e2c1a3de66b812075f0d7a4201965479b7225f5 1088 
pelican_3.2.2-1.dsc
 858ea2a887dd10c8bacb45ce0c6e61cab4988545ad31c14432f02033895f76d6 164313 
pelican_3.2.2.orig.tar.gz
 65dac1164b9c5957c23695242bf934eadc833fa70edcb96a7e94a0327d581d10 12799 
pelican_3.2.2-1.debian.tar.gz
 fb3c65fa0d28b52295f98c1f96bf22e663c36f83a12a215eb528bb91a9a7bcb1 103736 
python-pelican_3.2.2-1_all.deb
Files: 
 49687c466d9610acad156088bfb92adb 1088 python optional pelican_3.2.2-1.dsc
 cf9af2669dbd84c3e83b546b70b1a78c 164313 python optional 
pelican_3.2.2.orig.tar.gz
 3e12a020b1e0cf6ae0467d28cd18bdab 12799 python optional 
pelican_3.2.2-1.debian.tar.gz
 5092c829276644ec4bfdd7bbacf6ef06 103736 python optional 
python-pelican_3.2.2-1_all.deb

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

iEYEARECAAYFAlH/jG4ACgkQ9OZqfMIN8nNxbwCglQ5TlNAN7Ajm1uG5OuslLM+7
ot8Anjev/Qoez2t2dk3rpuXUpEOxcz/x
=1Guh
-END PGP SIGNATURE-


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



Accepted tellico 2.3.8+dfsg.1-2 (source amd64 all)

2013-08-05 Thread Regis Boudin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 20 Jul 2013 13:02:17 +0200
Source: tellico
Binary: tellico tellico-doc tellico-data tellico-scripts
Architecture: source amd64 all
Version: 2.3.8+dfsg.1-2
Distribution: unstable
Urgency: low
Maintainer: Regis Boudin re...@debian.org
Changed-By: Regis Boudin re...@debian.org
Description: 
 tellico- Collection manager for books, videos, music, etc
 tellico-data - Collection manager for books, videos, music, etc [data]
 tellico-doc - Collection manager for books, videos, music, etc [doc]
 tellico-scripts - Collection manager for books, videos, music, etc [scripts]
Changes: 
 tellico (2.3.8+dfsg.1-2) unstable; urgency=low
 .
   * Disable tests for now, which should at least temporarily address #716982.
Checksums-Sha1: 
 60632bc5f4afd8f8cbe86b4fd0d2e4e9ed021092 1559 tellico_2.3.8+dfsg.1-2.dsc
 5f69f7a7eea7a10aa0f6d1b55183ace2ced5dd7b 11977 
tellico_2.3.8+dfsg.1-2.debian.tar.gz
 6ea2843c6e0fa67e008cb7743c482981281fb2ae 905002 
tellico_2.3.8+dfsg.1-2_amd64.deb
 9fb1c76df8bd1e9b408d68a2502ea5e0225fde5a 3290934 
tellico-doc_2.3.8+dfsg.1-2_all.deb
 be45ec49e71c142fbea6ea4adb16c452349b5943 806464 
tellico-data_2.3.8+dfsg.1-2_all.deb
 3dc75c2201587ec2f28447d5f3abdb963193b835 59680 
tellico-scripts_2.3.8+dfsg.1-2_all.deb
Checksums-Sha256: 
 dc774d4404f20d3b02b6216b1875b26c06cf29e7bbe635cb4775427df5daae50 1559 
tellico_2.3.8+dfsg.1-2.dsc
 4971e368da4bca8de97af88684554e00743ea432dc03c06e905748d71f5de27c 11977 
tellico_2.3.8+dfsg.1-2.debian.tar.gz
 306523e04baf4c07c5453a75b3afcdc0f0aad37fcd4d4441b14539c44b3be987 905002 
tellico_2.3.8+dfsg.1-2_amd64.deb
 36e2bd660fcf5ad87df9a21ccc8a323708776aebbfe90f9e6a83c07df40197fd 3290934 
tellico-doc_2.3.8+dfsg.1-2_all.deb
 17abdc482bccca1465cb82612d4b15cfff62fa61a9944b5f74611ee3a33d06ac 806464 
tellico-data_2.3.8+dfsg.1-2_all.deb
 8c0a1e6c9e2f33f6ee33ace06b5ed24aabbf8f239cfaffae75abd37ce53850db 59680 
tellico-scripts_2.3.8+dfsg.1-2_all.deb
Files: 
 6fe94da727d486d00fbb4f308a63109b 1559 kde optional tellico_2.3.8+dfsg.1-2.dsc
 3a772107dd3495c2625faca4de02500c 11977 kde optional 
tellico_2.3.8+dfsg.1-2.debian.tar.gz
 35d5dd930421bf3e5b30cb97d9d66eac 905002 kde optional 
tellico_2.3.8+dfsg.1-2_amd64.deb
 0e7f9afc9643f23275e37ba6a780c254 3290934 doc optional 
tellico-doc_2.3.8+dfsg.1-2_all.deb
 da8ccf585f954b91aa71733e0cc0c25c 806464 kde optional 
tellico-data_2.3.8+dfsg.1-2_all.deb
 ff5ab8e8f61830b801f7eaa0420fb4e8 59680 kde optional 
tellico-scripts_2.3.8+dfsg.1-2_all.deb

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

iEYEARECAAYFAlH/izIACgkQVE17sLEtWVrkgACglGUEPjHDYUKa+1LX084eohh9
HT4AoKuwnmjxSRWNUSN26pQOExx9WlCn
=JA77
-END PGP SIGNATURE-


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



Accepted infernal 1.1~rc4-1 (source amd64 all)

2013-08-05 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 12:06:12 +0200
Source: infernal
Binary: infernal infernal-doc infernal-dbg
Architecture: source amd64 all
Version: 1.1~rc4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 infernal   - inference of RNA secondary structural alignments
 infernal-dbg - debug information for infernal
 infernal-doc - inference of RNA secondary structural alignments – documentation
Closes: 718742
Changes: 
 infernal (1.1~rc4-1) unstable; urgency=low
 .
   * New upstream source
   * debian/source/format: 3.0 (quilt)
   * debian/control:
  - cme fix dpkg-control
  - debhelper 9
  - do not Build-Depend: quilt since source format implies this
  - The package builds only on architectures with SSE instructions.
Quoting from build log on armel:
configure: WARNING: Infernal 1.1 requires VMX or SSE capability for
   parallel instructions.
configure: error: It appears your platform has neither and will not
   support Infernal.
So all non i386/amd64 architectures were excluded
Closes: #718742
  - use anonscm in Vcs fields
   * debian/rules:
  - remove redundant setting for flags which is handled by debhelper 9
automatically
  - use xz compression
   * debian/copyright: DEP5
Checksums-Sha1: 
 6e8f0dc9739eb8f3bafe32a7b4fb06c0a8013ad6 1579 infernal_1.1~rc4-1.dsc
 a4d62c853e8ed1e5b773961b0c0b4d6ee1562e4b 19169671 infernal_1.1~rc4.orig.tar.gz
 709bb4069879968601a1ee3c77627bedf2aab58e 7612 infernal_1.1~rc4-1.debian.tar.gz
 ddd04928df8cd37075488e83712a9851a37f2020 1818872 infernal_1.1~rc4-1_amd64.deb
 e169d71f1c650aac2afa1df483f2927bf4ce8666 825282 infernal-doc_1.1~rc4-1_all.deb
 152eecfd66caae4230e27d5896bdce1e50a20984 18459820 
infernal-dbg_1.1~rc4-1_amd64.deb
Checksums-Sha256: 
 be93f51cd874bdd159935dc3eecb253b2f76d75b5600b84b9b6181ac0c52fbf7 1579 
infernal_1.1~rc4-1.dsc
 8891822c7935bdfb4fc9a28e6a563584a0564c17745a54984ef3242af704b3f8 19169671 
infernal_1.1~rc4.orig.tar.gz
 2e8b0d4f907574f02fc4ef5245e411fefc09a87ebe53d3344adf34242b0ab4e6 7612 
infernal_1.1~rc4-1.debian.tar.gz
 90fc58688b6f9b5c182374f73585bb1c2896320f31ae9da258f37a6b709203ce 1818872 
infernal_1.1~rc4-1_amd64.deb
 806291cfc03285a43073b04fc2d67a9de7fec48727371ccf5f6b7fc90825c868 825282 
infernal-doc_1.1~rc4-1_all.deb
 5cdc276b8d38824cc06e7e06c8bf8bf16d325453b22b83260361ff415e86f791 18459820 
infernal-dbg_1.1~rc4-1_amd64.deb
Files: 
 158aece9f291649f174d71715efb804c 1579 science optional infernal_1.1~rc4-1.dsc
 c9d17cda40c9e70f40ad0cc1c6deaba4 19169671 science optional 
infernal_1.1~rc4.orig.tar.gz
 af9466322ae3cb8534807280e2ce1037 7612 science optional 
infernal_1.1~rc4-1.debian.tar.gz
 1e6beed7948eee0c17dd0a25d9dc494a 1818872 science optional 
infernal_1.1~rc4-1_amd64.deb
 c8525e4ae4492ae619abbbcd7b5416a8 825282 doc optional 
infernal-doc_1.1~rc4-1_all.deb
 a59cc0804f68d996eb3489ef3c84e046 18459820 debug extra 
infernal-dbg_1.1~rc4-1_amd64.deb

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

iEYEARECAAYFAlH/jp4ACgkQYDBbMcCf01r4VgCfWOd/oGztqFQpDVZ10dtCn3b3
C1AAnA2NrT7wChs6cundvlgWPQRooofH
=hHDi
-END PGP SIGNATURE-


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



Accepted libeval-closure-perl 0.11-1 (source all)

2013-08-05 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 13:30:31 +0200
Source: libeval-closure-perl
Binary: libeval-closure-perl
Architecture: source all
Version: 0.11-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Alessandro Ghedini gh...@debian.org
Description: 
 libeval-closure-perl - Perl module to safely and cleanly create closures via 
string eval
Changes: 
 libeval-closure-perl (0.11-1) unstable; urgency=low
 .
   * New upstream release
   * Build-Depends and Recommends libdevel-lexalias-perl
Checksums-Sha1: 
 832545356be02ec33a7dd7361317e9863b06029f 2240 libeval-closure-perl_0.11-1.dsc
 95bc949c9a7e1e67a46585a2511b8fcd1e1c1c49 18126 
libeval-closure-perl_0.11.orig.tar.gz
 306a03843bdd4ceb42ff7f3e7ea05eba3b5ee242 2299 
libeval-closure-perl_0.11-1.debian.tar.gz
 94d6c6adeba2d99d7c95dd5ad64147123bf6e59c 11642 
libeval-closure-perl_0.11-1_all.deb
Checksums-Sha256: 
 120776cc120885a9cdabe6e9c253bf8db3dd998b6744381bb74b0d81131d7712 2240 
libeval-closure-perl_0.11-1.dsc
 a1923d3aeac0cf4a6cc9ed748ef548085e3ec3f3d14d669504d1fb56756279ac 18126 
libeval-closure-perl_0.11.orig.tar.gz
 9a82dd31099bb578e8c7df46c9af4cbefffd24c472e4c081ef56967be4d049b6 2299 
libeval-closure-perl_0.11-1.debian.tar.gz
 cd2962e30896631e10a85ab962667756d38f5213caa91e25b18d172985cf12a2 11642 
libeval-closure-perl_0.11-1_all.deb
Files: 
 aa0d34b251ce805d5e5c940096ef8f7f 2240 perl optional 
libeval-closure-perl_0.11-1.dsc
 2172fed13527589d6b4fda2d9f2de2bc 18126 perl optional 
libeval-closure-perl_0.11.orig.tar.gz
 43ca32d8bf52ccc792d4496a26399fe7 2299 perl optional 
libeval-closure-perl_0.11-1.debian.tar.gz
 83003d166a53cb903fae7627f8540674 11642 perl optional 
libeval-closure-perl_0.11-1_all.deb

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

iQIcBAEBAgAGBQJR/43TAAoJEK+lG9bN5XPLS3MP/2eHrgX4C5+NZDFaG6Y5Pe9w
l/349Zlh4mLnU/cR9wM7SsIcIkiEVosmHEhzm92O6jp1dAr7dN2ULr1iaqx7D+l1
4e+rc8P9UMvcyArdTJJ6kU7Nd/XOh0G0BUgPd+y6wS8vI14mpkrXrfcPZv3lSKQQ
YtWQAsPFgDNisgGx/2CvgXOe8mriY6KfmcPfX76WRkgkfk0OQOtiNjmy/y5OUQ8Z
KBF7+N33K/qfhNXF9uLoRHsXqM0CwPqRH0OAaar6EKUheECmW7YXK4uFaK2k+XQZ
0mEqpKM5GCWomY/1SD8SLm/3CcfBPnEXZtOQhLrgXW6fzi2P+LX2A7yhxluA1PYm
CQn4kgD+EObywnmfa8UK5yr67E6PfqXzgDm3YwMObojvlRxnq2dp6qpvK9QLXESR
zBZ33fIDEPxHcFp03x9jcWVPWwQ9ggnZAb1+zAbZ5RspZyMmD/8qvYyWC9mCF/ro
OdiWGTCnqZJJj/Qn+tuZGDYF/f6kKwP/OPKMM/E1860l7byKlG81wjsFvGxiBkK0
SUsJ/N1R8viPTpkyZ6Xb0XTMSh1dubIwfiurB639BEifcsawhE8eMaCLrPjy5zHa
EYRCLzsDxTaG8DsfVgytQsP3p4R+91RIdi1mvnO8OEdKetGu3g57uKod7swFgKOT
cYTeVwsUdkURotjwBiOd
=F6v1
-END PGP SIGNATURE-


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



Accepted armadillo 1:3.900.7+dfsg-1 (source amd64)

2013-08-05 Thread Kumar Appaiah
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Aug 2013 07:30:51 -0400
Source: armadillo
Binary: libarmadillo-dev libarmadillo3
Architecture: source amd64
Version: 1:3.900.7+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Kumar Appaiah aku...@debian.org
Description: 
 libarmadillo-dev - streamlined C++ linear algebra library - Headers
 libarmadillo3 - streamlined C++ linear algebra library
Changes: 
 armadillo (1:3.900.7+dfsg-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 797be3d6ce4a4cfaa60ba9fc982e519728b7e09d 2159 armadillo_3.900.7+dfsg-1.dsc
 5341d358a696e9409a7e95b3dd7f353489ece356 405500 
armadillo_3.900.7+dfsg.orig.tar.gz
 76e6422ae4c72fba363cdea60316a6cf67bc28c9 15063 armadillo_3.900.7+dfsg-1.diff.gz
 60d20bc89088fe3708d1cd259a8bd3d9afeed8f2 235054 
libarmadillo-dev_3.900.7+dfsg-1_amd64.deb
 fc29375b7fdf18d3db306e1035eb553352d6f419 63326 
libarmadillo3_3.900.7+dfsg-1_amd64.deb
Checksums-Sha256: 
 03f412fe203721ce6978aa6308f5defc47c31c9f37179d6c819dff3f3f34e9dc 2159 
armadillo_3.900.7+dfsg-1.dsc
 6a34120660658a3c472724f1605793791ca9f2bcd1241f29566e058d4da0d79e 405500 
armadillo_3.900.7+dfsg.orig.tar.gz
 47fcf104129bde0e6ba0d382452c957dfd8b416d8cd668cd364dcd2689af6322 15063 
armadillo_3.900.7+dfsg-1.diff.gz
 3fb47a50066d53584fc62bdf948e5bc7825aef57afe3104f771489200b035389 235054 
libarmadillo-dev_3.900.7+dfsg-1_amd64.deb
 3e1b02bf2a81285ad84024f17b9d6636d5844a6badbee5944261b1950c7aca2c 63326 
libarmadillo3_3.900.7+dfsg-1_amd64.deb
Files: 
 3409aa8ed6a9e51f53f48b02bdde4f59 2159 libs optional 
armadillo_3.900.7+dfsg-1.dsc
 07651567507a947fe99c958c166aed9d 405500 libs optional 
armadillo_3.900.7+dfsg.orig.tar.gz
 ea1ce33fc21ef01876b874008659c527 15063 libs optional 
armadillo_3.900.7+dfsg-1.diff.gz
 06e5fd9058be89af24a2cfd09af2ce2d 235054 libdevel optional 
libarmadillo-dev_3.900.7+dfsg-1_amd64.deb
 24c9136a9608cf9aaab8ea1006f44773 63326 libs optional 
libarmadillo3_3.900.7+dfsg-1_amd64.deb

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

iQIcBAEBCgAGBQJR/5EqAAoJEHqPSei2NIC+8IQQAJjhENzH49LzkhbRJPqWsXoS
jz139BdDS86l0z9uPEbp4Y6kyXYT61FynO9Cq+PTeFFL0Im1bkJED1PlpRqqJRWw
RFyDTQLEmI6alfQDX45P4A24bQr0vDsYSBR6CgA47on0IstKhUaeXgiygvGryCgA
2N2yErFwjc9rh6OsVO8rr4WeHrq3wdocSb6mCXt7e7ewlgyCXNn5yC8p9O21/mhf
FS1U5VLH6yTkC/EFPrV8qGkzGBl3c3+f8mkf2H8DRiKzYcdU9THVvp4oOCtmPsdT
pD3Q3HA62VIIqma533gO8h18a+2b34z5RIb4q0NFEariHztPwLzHqO/FZnoDzaZG
Z8pSg6yqVDhHl/WSagWyQ9//7uWdZ1lPHtLn3qI5JEOrY2JYD6sppGgIGYsJSR4j
/Zvh9e18iHFPC+HWzk/XOWlOp+iIPYDCkr1fwN1VBN8WTBEv27b76aDHgFdsXVRX
HQ7eJYhOMhqEq7qu3IjJcraa4K7Y76gYdXCA3OT9Ppbw+JNzS3yIr2Ph07qtwS2m
vTPNZZT2bacx1kqXUROuSWsVi6rGdIvfGDuI5mQdDmp1UnbP2u1Mvh7NdVG8x8km
RNuqLXhjeTFR9TRElSDByo5sefaVYcecPYronYgt46KxLnTdio+Te+Y8EuqAXmSu
DLkXuKCe/6rQEuvtNDkS
=xeRH
-END PGP SIGNATURE-


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



Accepted libmoose-perl 2.1004-1 (source amd64)

2013-08-05 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 13:41:16 +0200
Source: libmoose-perl
Binary: libmoose-perl
Architecture: source amd64
Version: 2.1004-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Alessandro Ghedini gh...@debian.org
Description: 
 libmoose-perl - modern Perl object system framework
Changes: 
 libmoose-perl (2.1004-1) unstable; urgency=low
 .
   * New upstream release
   * Document API change regarding Num builting handling in NEWS
Checksums-Sha1: 
 5f15f5a5e0a21f4f4442e0a1660612d9f14fa6a1 3178 libmoose-perl_2.1004-1.dsc
 4cdb9fe30605f10c0028a56fbfbaf1ec92004adb 711617 
libmoose-perl_2.1004.orig.tar.gz
 c344206d07e8e75e4b069dddc06efae2024c0359 13146 
libmoose-perl_2.1004-1.debian.tar.gz
 44d6db1b4f7ce7eabd0d5de496ca90fbd81f39aa 796530 
libmoose-perl_2.1004-1_amd64.deb
Checksums-Sha256: 
 abf1fcdda9c5d4c1808f40f31e53deb432965b8dd473abdeea0c971df4d71902 3178 
libmoose-perl_2.1004-1.dsc
 0293470dff6a2abfe76c789f342678ab29c15e537093d88135c4b31697517e1b 711617 
libmoose-perl_2.1004.orig.tar.gz
 6852c47e48972fb7f3f17bbb0bd9c6eb2044282a541a7184ef859298c78ecec3 13146 
libmoose-perl_2.1004-1.debian.tar.gz
 7ec9f93c7cf74ec262008b17f6e2107b72ccf7eeacbdcc1afdb4cbc4529fc59e 796530 
libmoose-perl_2.1004-1_amd64.deb
Files: 
 6d51590ae553e4938826ce0ad8aa6cf0 3178 perl optional libmoose-perl_2.1004-1.dsc
 2641353fa7f1ef03d2bd38ba83318c75 711617 perl optional 
libmoose-perl_2.1004.orig.tar.gz
 9ac7fde13b4c250f7bdcbe34cdf39eae 13146 perl optional 
libmoose-perl_2.1004-1.debian.tar.gz
 db7c58941a6076201d308d5d6d0a9c7b 796530 perl optional 
libmoose-perl_2.1004-1_amd64.deb

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

iQIcBAEBAgAGBQJR/5GtAAoJEK+lG9bN5XPLNbAP/0pca+gxC8pA8lnfMq+YaPHR
wYSZDr8xZWb+BLoWtY4teXCkDNYPOcMHc9yGN0zbbidKlWEMxfO20I/zlDgYbf3W
BHCkjewTXpQFPipHNApGeudEpEbNUBdgwnoSrwLCRdQdLd78vy09IJ+OyoDhQht8
6GciWwwVx/qpUeyfe0DgbhZvhx8hBCp1RZOGSDMJ8oFyOoc1Cl+Z167B8Y55vK6V
tHSR3wNIqIFqi3kUXibCRSHiZirjtcdsGXaPTq1mz8tzpSus255B74BwUpjVUqhl
AgFbWOgZ3tvt6TNcibg3YnsCVXCY8PeOzaHfLQzkbeXEz4hLpJLZ6ybjG8ImMPct
+QHtAm6/T8DIt0FJno9hB/rXd7PzDWcqQDrowTxXdIDqe0QkPiOIeENkEMWEUqE2
Y/XUFw42zLmfdo+4YCAsmzHOA7W5DQwaijwMk9MQa029MmJ1xiJrFIkE75ndeEYN
Nq9mbyOAehp1sUBWpc4fSw60m1jR3MUs2Hx81zoQZtk8hNWI7p4wL9D6E6jxS+0Z
ytiXXKVrB8ev1c0xtkuPFdeX8qhqN/kpJEFzzZKjZlnxnBoAxy+qC8YERwDZ9p0+
bndH6hgtrwk+GLSesNBOIIVfVuyEK4UZBZoStGMO7amd+nW33Z321UnwqPjOwX6U
TcIDx9SjtutegiJL90DG
=FBcM
-END PGP SIGNATURE-


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



Accepted samba 2:3.6.17-1 (source amd64 all)

2013-08-05 Thread Ivo De Decker
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 13:46:23 +0200
Source: samba
Binary: samba samba-common-bin samba-common samba-tools smbclient swat 
samba-doc samba-doc-pdf libpam-smbpass libsmbclient libsmbclient-dev winbind 
libpam-winbind libnss-winbind samba-dbg libwbclient0 libwbclient-dev
Architecture: source amd64 all
Version: 2:3.6.17-1
Distribution: unstable
Urgency: high
Maintainer: Debian Samba Maintainers pkg-samba-ma...@lists.alioth.debian.org
Changed-By: Ivo De Decker ivo.dedec...@ugent.be
Description: 
 libnss-winbind - Samba nameservice integration plugins
 libpam-smbpass - pluggable authentication module for Samba
 libpam-winbind - Windows domain authentication integration plugin
 libsmbclient - shared library for communication with SMB/CIFS servers
 libsmbclient-dev - development files for libsmbclient
 libwbclient-dev - Samba winbind client library - development files
 libwbclient0 - Samba winbind client library
 samba  - SMB/CIFS file, print, and login server for Unix
 samba-common - common files used by both the Samba server and client
 samba-common-bin - common files used by both the Samba server and client
 samba-dbg  - Samba debugging symbols
 samba-doc  - Samba documentation
 samba-doc-pdf - Samba documentation in PDF format
 samba-tools - Samba testing utilities
 smbclient  - command-line SMB/CIFS clients for Unix
 swat   - Samba Web Administration Tool
 winbind- Samba nameservice integration server
Closes: 718781
Changes: 
 samba (2:3.6.17-1) unstable; urgency=high
 .
   * Team upload.
   * New upstream security release. Closes: #718781
 Fixes CVE-2013-4124: Denial of service - CPU loop and memory allocation
Checksums-Sha1: 
 578cc6d52a57863afe6cacf02d6af895fa5f361a 3095 samba_3.6.17-1.dsc
 187819684a8d32c9a3349229339867c1c6c37893 26224592 samba_3.6.17.orig.tar.xz
 c34a50e677516aaacffcf734d4de55cc31291764 358314 samba_3.6.17-1.debian.tar.gz
 2843b09d4f51d7bfeac7abf1c143633e92b11cf9 4218342 samba_3.6.17-1_amd64.deb
 3735ff0ef598cbad0d4bca8ffac14c200c008a24 3645460 
samba-common-bin_3.6.17-1_amd64.deb
 9f43c2c7011c03c5545a683aba665fbab504113d 219166 samba-common_3.6.17-1_all.deb
 670a7a433606ac71614a7f9e6b4f998e1d70dc30 5247502 samba-tools_3.6.17-1_amd64.deb
 8aa8ae0d2a3c975fcc737b7cf41b0ebbd9512be0 5734008 smbclient_3.6.17-1_amd64.deb
 38fc23d3387f1f201c72b59300c5bfdb81957132 1707696 swat_3.6.17-1_amd64.deb
 39b6bf528aa95e1de873d4de7c99729a0c6f2e03 5769894 samba-doc_3.6.17-1_all.deb
 e0d4930f9ab78be9d89d155ea6b6680c484bdea2 7066288 samba-doc-pdf_3.6.17-1_all.deb
 16ccce64d14b2c15830412fe44a0a726b4ec09ea 671836 
libpam-smbpass_3.6.17-1_amd64.deb
 f7795b28af5158c1bc1816a56d94830bc3f3088d 1524050 
libsmbclient_3.6.17-1_amd64.deb
 039029327f21fa9394199a5deede8ca8732fe6cb 1845664 
libsmbclient-dev_3.6.17-1_amd64.deb
 3eb96d601f4c14098b6bb35ae379007a28ff75d0 2550806 winbind_3.6.17-1_amd64.deb
 0b07c5958cefaea5c9aa2f44a2da00c7e8da034a 102466 
libpam-winbind_3.6.17-1_amd64.deb
 51edacbfde036dc88a52b39fb79ca4e3d4e91255 541078 
libnss-winbind_3.6.17-1_amd64.deb
 247cc3785560375e7dde3dc962e3d656684cab4a 66870848 samba-dbg_3.6.17-1_amd64.deb
 02fc8a6a14293b8c81424cd8a07fa7af4c4b0f4c 95314 libwbclient0_3.6.17-1_amd64.deb
 48e3eecca692f8debcaaf1e41a4431d9adee008a 83532 
libwbclient-dev_3.6.17-1_amd64.deb
Checksums-Sha256: 
 05103a9e0068566dffdd393bd2480ea822b31eebcd5f312c8ee9aaf9264c0f65 3095 
samba_3.6.17-1.dsc
 5f83d3d96350538986d5b2ea66c58ffc7b71ab8fa5eac856895b418d954116e3 26224592 
samba_3.6.17.orig.tar.xz
 9f011f7ddd5393a4850cb86d95e0fa835bdc33e15a6ee24cdad29cc7b4cf8da2 358314 
samba_3.6.17-1.debian.tar.gz
 ab3e2dec0a0bf9eacb948fcb89f8843e5de296c49ba32cd71e9787f5698c4137 4218342 
samba_3.6.17-1_amd64.deb
 a3f53ffb64b387d2e80d244ea87a833f3bbd2016d74ac7a491fd0fea553912d8 3645460 
samba-common-bin_3.6.17-1_amd64.deb
 f5508a3f787f83f2428aef1fa1e7c0f885428f1a23da51dbbbce8b3fc4273e7f 219166 
samba-common_3.6.17-1_all.deb
 9154541ca2a39bee8478346d47a6aa59c84c14615f794e7102f96b65eac0a798 5247502 
samba-tools_3.6.17-1_amd64.deb
 950335be15a2744509e96f0aff40be9174d5d668cedc35063578e3d2469b723a 5734008 
smbclient_3.6.17-1_amd64.deb
 41d5aff7a92c5e483884ece152b3d182bffafd0b4af09f29fa4f5875c9aef170 1707696 
swat_3.6.17-1_amd64.deb
 9b8bb08544dcf7162fb4a903c23dd31e2ce49c15f475e5fd586b1600cfb53793 5769894 
samba-doc_3.6.17-1_all.deb
 ed8a4d337a311d170a251f1e1deb92baaf3577b5cb416509f21c0910fec8cda6 7066288 
samba-doc-pdf_3.6.17-1_all.deb
 839c14854be81ef2b3710ac67211890c16d76bbc18ca58e9f2f0d7759eba00c0 671836 
libpam-smbpass_3.6.17-1_amd64.deb
 4e2942f33577558ca22705143a0f94ceb9ab5dbe2484d5166d9f46312fb76792 1524050 
libsmbclient_3.6.17-1_amd64.deb
 fc506423808545743c9d81e95e0e8386a35fbef414e2fb986171608f9c28d9ee 1845664 
libsmbclient-dev_3.6.17-1_amd64.deb
 9ec3998e105a4c294efae1b4b243288c144b68c2801e9501fb74f72470226b18 2550806 
winbind_3.6.17-1_amd64.deb
 0a4c3e083cb80d95df36b6540f96818d87ffce509bce8d0fb2dd750c9c9773bf 102466 

Accepted feedgenerator 1.6-1 (source all)

2013-08-05 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 14:15:58 +0200
Source: feedgenerator
Binary: python-feedgenerator
Architecture: source all
Version: 1.6-1
Distribution: unstable
Urgency: low
Maintainer: Ondřej Surý ond...@debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description: 
 python-feedgenerator - Syndication feed generation library
Changes: 
 feedgenerator (1.6-1) unstable; urgency=low
 .
   * New upstream version 1.6
Checksums-Sha1: 
 b06ac4afc106b71cf82a504944e8754799a5f7d9 1118 feedgenerator_1.6-1.dsc
 9c648f9196847d2496a10fac63a5414a6359ee36 21517 feedgenerator_1.6.orig.tar.gz
 247a62282b9eded687902d7cbe23a4948fc38c78 2297 feedgenerator_1.6-1.debian.tar.gz
 bf4d4a2b45eb4dcd5e152b1e2da70d7b0931d356 19920 
python-feedgenerator_1.6-1_all.deb
Checksums-Sha256: 
 4d1d6448893131fe7ec3ce6bdcb308805153f8ad714dbf62a16a28bed7742725 1118 
feedgenerator_1.6-1.dsc
 ec66b671a946381e02ee97b5f4746959c4bda960be4994ce39be5a7f5eb445fe 21517 
feedgenerator_1.6.orig.tar.gz
 2e980933e478917e4aa7c80ca921577171b3c6e9960fd8e4cb117eadd7ebd0e2 2297 
feedgenerator_1.6-1.debian.tar.gz
 d2793f6812d27c54de3108cab64fc23f7d5cfcebf345f075021142261c6f48e9 19920 
python-feedgenerator_1.6-1_all.deb
Files: 
 81d47cb4e1f9f090d12f2165e6bc430c 1118 python optional feedgenerator_1.6-1.dsc
 63f6f8529a1ae877715124328edea196 21517 python optional 
feedgenerator_1.6.orig.tar.gz
 6810344f170e4744b2f25657e9dd15d5 2297 python optional 
feedgenerator_1.6-1.debian.tar.gz
 ea21d47e11151b31f8240563a43bd332 19920 python optional 
python-feedgenerator_1.6-1_all.deb

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

iEYEARECAAYFAlH/l8oACgkQ9OZqfMIN8nPvtwCdFp+v9bBpnf6uGZYAEj5Y5Oz6
NlAAoIsKDRFWGTnqgOQYaJmB6rvR/ze9
=S7PA
-END PGP SIGNATURE-


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



Accepted libjgraphx-java 2.1.0.7-1 (source all)

2013-08-05 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 14:09:28 +0200
Source: libjgraphx-java
Binary: libjgraphx-java libjgraphx-java-doc
Architecture: source all
Version: 2.1.0.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 libjgraphx-java - Java Swing Diagramming Library
 libjgraphx-java-doc - Java Swing Diagramming Library - API documentation and 
manual
Changes: 
 libjgraphx-java (2.1.0.7-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 79cc7c53b13985d4cb358a558c8f7f050f89e5ed 1462 libjgraphx-java_2.1.0.7-1.dsc
 278a1946c9bf6211cbfcda7fe78797d0f25fe913 2635630 
libjgraphx-java_2.1.0.7.orig.tar.gz
 853f9f33e57492d012945a39bd780c25976c4286 3578 
libjgraphx-java_2.1.0.7-1.debian.tar.gz
 06f6c4cc24e8c5710e85198144828968b628c5e0 759028 
libjgraphx-java_2.1.0.7-1_all.deb
 cd60ee08bc2550104ff0e4ada7148599491934aa 529442 
libjgraphx-java-doc_2.1.0.7-1_all.deb
Checksums-Sha256: 
 b790a89b769e39f9190341e05c4e01475780dbad9d071fe0b9d4a796c177aaad 1462 
libjgraphx-java_2.1.0.7-1.dsc
 ecda9422f77314f796f41c73a758d0b5168b28cca5f45950969143d4e0900a36 2635630 
libjgraphx-java_2.1.0.7.orig.tar.gz
 0ab12e3ce844ce630b39f3ee0346c79d586e0430ece4660bb72860cab740aa8a 3578 
libjgraphx-java_2.1.0.7-1.debian.tar.gz
 bc96214562dddcbc06c5662a03dee12cfd79607cd5aa81f00fbd42f9b9bff267 759028 
libjgraphx-java_2.1.0.7-1_all.deb
 54f066c79b00ae8c6101ef6acae1b2626dd7001ce26ba2c2b13d3cc9a1df7a89 529442 
libjgraphx-java-doc_2.1.0.7-1_all.deb
Files: 
 bff8646621e83723ba66cde642cc21cc 1462 java optional 
libjgraphx-java_2.1.0.7-1.dsc
 0d03b5b7e92e5cfc027b58f4110d4d55 2635630 java optional 
libjgraphx-java_2.1.0.7.orig.tar.gz
 3ce8c65fca626cba2631fdb9430dbd02 3578 java optional 
libjgraphx-java_2.1.0.7-1.debian.tar.gz
 27a1cd0d055d3872b674bf4f290190f4 759028 java optional 
libjgraphx-java_2.1.0.7-1_all.deb
 0e436138aa6df9f76a9e66638650698a 529442 doc optional 
libjgraphx-java-doc_2.1.0.7-1_all.deb

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

iEYEARECAAYFAlH/l7gACgkQiOXXM92JlhCWPACfY5rXFviRPI7nBR6vFHkZnsYq
4coAoNBvZuFFImM4zKfzLayEfMZhwjh+
=dW+r
-END PGP SIGNATURE-


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



Accepted pidgin-musictracker 0.4.22-3 (source amd64)

2013-08-05 Thread Craig Small
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Aug 2013 21:08:43 +1000
Source: pidgin-musictracker
Binary: pidgin-musictracker
Architecture: source amd64
Version: 0.4.22-3
Distribution: unstable
Urgency: low
Maintainer: Craig Small csm...@debian.org
Changed-By: Craig Small csm...@debian.org
Description: 
 pidgin-musictracker - Plugin for Pidgin which displays the current music track 
in your
Closes: 633174 707449
Changes: 
 pidgin-musictracker (0.4.22-3) unstable; urgency=low
 .
   * Updated to standards version 3.9.4
   * Update to debhelper 9
   * Removed musictracker.la file Closes: #633174
   * Patched mpris to remove GValueArray Closes: #707449
Checksums-Sha1: 
 b8620329e6227c3e1a3ca3a3e5169fdd1776c598 1842 pidgin-musictracker_0.4.22-3.dsc
 53e1d778c4fd589872827b671a35fdf472e6dde7 5713 
pidgin-musictracker_0.4.22-3.debian.tar.gz
 e3106aececb1b67d7a81ec809275637b631877f3 85630 
pidgin-musictracker_0.4.22-3_amd64.deb
Checksums-Sha256: 
 7c3bed4e7c68728033501e24ab998a23c55be3b325f71d74834c6ff4e1fe7c9e 1842 
pidgin-musictracker_0.4.22-3.dsc
 2166e6dc86f4180b5aaec564899142465477cec215439590f78d88f377c488cf 5713 
pidgin-musictracker_0.4.22-3.debian.tar.gz
 b3ed733077d230304d392996427d344bdfdfd05f66043b5e98becc5bdacef7c9 85630 
pidgin-musictracker_0.4.22-3_amd64.deb
Files: 
 5be24c094769c0dddc33ace0daccc267 1842 net extra 
pidgin-musictracker_0.4.22-3.dsc
 fa27b71c9046484bf8e670807a492b7b 5713 net extra 
pidgin-musictracker_0.4.22-3.debian.tar.gz
 de03aa232ec4ce74fca152ed5c4759ff 85630 net extra 
pidgin-musictracker_0.4.22-3_amd64.deb

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

iQIcBAEBCgAGBQJR/5rhAAoJEDk4+WvfUP6l7n8P/RAKvYV4qrSGicTuf17tFpi4
a6FO1E/xcO+VyXJLyN41bzoZ2Kf1DMkw28mjpW2rubfQqzheT2vY94mwQ4O/0jRG
gW7824I7mWJiM/i2ENPP0sq/sFung7Hwi3aEVkJw2KzPw4F2UD5uLued8wZMlz/B
a0KxDv2iRHtS+0MyCdkDTDuUIHiQC9Cpl4X7TywFP7II5+5xVhptEgIYdeaXXpQ6
DEgQRRgloLEZz9qFIz6XlTA2TObZvEH/NqW+l+lQ4GAkC3t7hrjA0Gc/AYpy8vpk
am6kY/TcsHGiyVi967OjUuUJENPSBim0ZP7L+yAESx10HRvyK3ULEnFr7wp78AKW
9VbIrHoC3RDXS0BEYfb5UbUgP1x4ITgmWeP5kIrkEP07yTdh9seWfZFgKHmyW+7R
9ZtFt/5GWBIdBr/e5ZE2rrD1HhBWEI4Nrp3WLN2Etg+44yqPEBrI6pL0mdxlC9wC
/ZG27I0f7m7p+IjJfNJSRSsqr8Gb6LOmngVXuLOROiMLZrdQFByNOYShL9hbAcLe
otwl9fgoGaEM7eTe1vANdGPVHKqyjHrK3WN1aXbybWiOvqI16pvdPUoDVPtY3chl
WYGpn1fu/iGYpVrh4fWgM7uYOkrRuWLuXfDz0Fbx4GY6FQdtvokV8n7uQsVCzqRc
8dw+rxiaMA+cEvNODkFR
=q/2E
-END PGP SIGNATURE-


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



Accepted libdrm 2.4.46-1 (source amd64)

2013-08-05 Thread Maarten Lankhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 13:44:46 +0200
Source: libdrm
Binary: libdrm-dev libdrm2 libdrm2-udeb libdrm2-dbg libdrm-intel1 
libdrm-intel1-dbg libdrm-nouveau2 libdrm-nouveau2-dbg libdrm-radeon1 
libdrm-radeon1-dbg libkms1 libkms1-dbg libdrm-omap1 libdrm-omap1-dbg
Architecture: source amd64
Version: 2.4.46-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Maarten Lankhorst maarten.lankho...@ubuntu.com
Description: 
 libdrm-dev - Userspace interface to kernel DRM services -- development files
 libdrm-intel1 - Userspace interface to intel-specific kernel DRM services -- 
runt
 libdrm-intel1-dbg - Userspace interface to intel-specific kernel DRM services 
-- debu
 libdrm-nouveau2 - Userspace interface to nouveau-specific kernel DRM services 
-- ru
 libdrm-nouveau2-dbg - Userspace interface to nouveau-specific kernel DRM -- 
debugging s
 libdrm-omap1 - Userspace interface to omap-specific kernel DRM services -- 
runti
 libdrm-omap1-dbg - Userspace interface to omap-specific kernel DRM services -- 
debug
 libdrm-radeon1 - Userspace interface to radeon-specific kernel DRM services -- 
run
 libdrm-radeon1-dbg - Userspace interface to radeon-specific kernel DRM 
services -- deb
 libdrm2- Userspace interface to kernel DRM services -- runtime
 libdrm2-dbg - Userspace interface to kernel DRM services -- debugging symbols
 libdrm2-udeb - Userspace interface to kernel DRM services -- runtime (udeb)
 libkms1- Userspace interface to kernel DRM buffer management
 libkms1-dbg - Userspace interface to kernel DRM buffer management -- debugging
Closes: 712515
Changes: 
 libdrm (2.4.46-1) unstable; urgency=low
 .
   [ Sven Joachim ]
   * New upstream release.
   * Bump libdrm2's and libdrm-intel1's symbols and shlibs.
   * Build libdrm-intel1 on x32 (Closes: #712515).
   * Disable silent rules.
Checksums-Sha1: 
 b804fcc0e06dee36e61cdac21d4fa8bacea1f5d4 2642 libdrm_2.4.46-1.dsc
 dbd99aca49db5fa87e49fec5fa3d2eba5a781185 725985 libdrm_2.4.46.orig.tar.gz
 8a2461f270ec3664816ade7aac836abddeaf5c91 460582 libdrm_2.4.46-1.diff.gz
 5bac5172098f6e3d6ceceec89c192afd61164a97 612906 libdrm-dev_2.4.46-1_amd64.deb
 19099ecb216d6bd4e0995df7ab8e95219992a7b3 466374 libdrm2_2.4.46-1_amd64.deb
 59fbf44d142c1b4ea19c37ccefb187aefbf4d747 18118 libdrm2-udeb_2.4.46-1_amd64.udeb
 673180e4d634358dfbbafa874f45fe391a1008f3 492872 libdrm2-dbg_2.4.46-1_amd64.deb
 5fa31504382cb9c20b3eb9b46c48a4d4a6f1e872 497876 
libdrm-intel1_2.4.46-1_amd64.deb
 fed4dd7bf85b2ebc25764d7f70d5504518cfa33f 538322 
libdrm-intel1-dbg_2.4.46-1_amd64.deb
 d8fef40e1bd51260e2d27b8a9a825750253ea8cd 458132 
libdrm-nouveau2_2.4.46-1_amd64.deb
 cd1b319a5aa95adc0ed56bc6066e315514c98fda 471352 
libdrm-nouveau2-dbg_2.4.46-1_amd64.deb
 08ded818d2a9c32b1f1d69c1828b966563b989da 467182 
libdrm-radeon1_2.4.46-1_amd64.deb
 134af61a3629dabda9d2fa945f8e9b6f3090a927 489578 
libdrm-radeon1-dbg_2.4.46-1_amd64.deb
 09252f0b4c5ba8f95db371d941c3d867a8f77b16 452684 libkms1_2.4.46-1_amd64.deb
 0c62e0657d95e6fe3e38e389a7ccf54d98ea768a 465110 libkms1-dbg_2.4.46-1_amd64.deb
Checksums-Sha256: 
 2300de359f709f6b77bcb850337a8b9779f7061fac74077eef31589d3b9e14c2 2642 
libdrm_2.4.46-1.dsc
 75dda05aa7717594d48f215d598525ffb7d4c60f60cc3fc2084672ca5d3ae039 725985 
libdrm_2.4.46.orig.tar.gz
 f0de686fb3c0d167abbba2d603dda4b3ddcc716a682863173c63f82a6794bb01 460582 
libdrm_2.4.46-1.diff.gz
 604e719fb9d0fa894765a9291ce402d30e21f477fe6dc6400767aa69184847d5 612906 
libdrm-dev_2.4.46-1_amd64.deb
 c5063dd2e3bcd42ac788f98b82ea745a1a2370401485fe12ca4c1a39691b8e88 466374 
libdrm2_2.4.46-1_amd64.deb
 8e4e875a07d697f5bcad3cea12e828db7f0eb438cd145a6a1f03758bf2ff07be 18118 
libdrm2-udeb_2.4.46-1_amd64.udeb
 2a56d11c6970054ae8337421e115d83d4ca5643f073c43e0bd6f8be469fb8c44 492872 
libdrm2-dbg_2.4.46-1_amd64.deb
 2a651b120c5b359b48ee3d718e03ff645ca589262d081782edbe29a029de4334 497876 
libdrm-intel1_2.4.46-1_amd64.deb
 7a9353cadf2d4e3f54928010f0151b73ffab9897bfb6a50d8542cbf07b4fb15e 538322 
libdrm-intel1-dbg_2.4.46-1_amd64.deb
 1acdd4b37f8f73c2cc47c0f3f068d23f4eeaccc7b83a74396a23f394bf341bf6 458132 
libdrm-nouveau2_2.4.46-1_amd64.deb
 ea03fcc59633e4148cc9042306a5d70504feee1a2e992b065a466e709e2a46d7 471352 
libdrm-nouveau2-dbg_2.4.46-1_amd64.deb
 39f106a19d6be1dfc10d65258cd32013c61eab1e28879a21fd9d84a276b5be6a 467182 
libdrm-radeon1_2.4.46-1_amd64.deb
 51ccb8e95fede78a955e60a5f1beb219b71c8497b3ede7dcfdf428d295d88b81 489578 
libdrm-radeon1-dbg_2.4.46-1_amd64.deb
 90d569a9948c6cab6d41d097d9b75c4fc0184b6d22888c777a87492e7a30e47a 452684 
libkms1_2.4.46-1_amd64.deb
 5648bf8c7c52fd7865ab3f880291a8231b147dbf1401abdf3a759f670b6688fe 465110 
libkms1-dbg_2.4.46-1_amd64.deb
Files: 
 cfcdde7017ee239452b339760063c9e8 2642 libs optional libdrm_2.4.46-1.dsc
 b454a43366eb386294f87a5cd16699e6 725985 libs optional libdrm_2.4.46.orig.tar.gz
 fdc43bc9c455a0e0e7d9cc8409c2f5c9 460582 libs optional libdrm_2.4.46-1.diff.gz
 

Accepted libflexdock-java 1.2.4-1 (source all)

2013-08-05 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 14:42:59 +0200
Source: libflexdock-java
Binary: libflexdock-java libflexdock-java-doc libflexdock-java-demo
Architecture: source all
Version: 1.2.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 libflexdock-java - Swing Java docking framework
 libflexdock-java-demo - Swing Java docking framework - demos and examples
 libflexdock-java-doc - Swing Java docking framework - demos and examples
Changes: 
 libflexdock-java (1.2.4-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 8acfc6c3b007f9482f218e55c8e6e0528ab45342 1654 libflexdock-java_1.2.4-1.dsc
 2354f8749c11cb439fef7679a84efa6fc52ed6b4 2618368 
libflexdock-java_1.2.4.orig.tar.gz
 97815c5d5fc5fec5a36c2fbf21d7d6c8d1ffa351 5422 
libflexdock-java_1.2.4-1.debian.tar.gz
 d1ac6544a3f06190499211b03d4b2ac35484bc25 390184 
libflexdock-java_1.2.4-1_all.deb
 3db74a4f500296bf0fa6b275dd600ab0ab65 674494 
libflexdock-java-doc_1.2.4-1_all.deb
 164936880f3f7a2e232f9129b93d7ec2a87a1ffe 1704384 
libflexdock-java-demo_1.2.4-1_all.deb
Checksums-Sha256: 
 5976cf47d25ae5dd878d5f357dc0913bc86ab729f7e8130a10b86c976c50949f 1654 
libflexdock-java_1.2.4-1.dsc
 d6e7c1988b4864e02cf194b4da0dd1e9615f5c0dcd9e93b7f68827194891e27a 2618368 
libflexdock-java_1.2.4.orig.tar.gz
 485bc2e56f489fbc9a88afad5deb772fa214d02b1b2cee969f5c6a25f3ed4b47 5422 
libflexdock-java_1.2.4-1.debian.tar.gz
 675b867dda41ff35737793bc1a37bceb92f1ff8911af04969220c59fe227ecc9 390184 
libflexdock-java_1.2.4-1_all.deb
 2d19b9f8b328219f00dad0cec0a20d9a1cfa4d47d9f2b244bd67c956190938d0 674494 
libflexdock-java-doc_1.2.4-1_all.deb
 1bc6c17efa72aa0a3dd3abd9669a2e838ff405843d6e0ace278c02eaa3c83181 1704384 
libflexdock-java-demo_1.2.4-1_all.deb
Files: 
 dd0d408f5d960e9d846a35031f4f653c 1654 java optional 
libflexdock-java_1.2.4-1.dsc
 122389e9e80e822a13ea3a4a2fd45eb3 2618368 java optional 
libflexdock-java_1.2.4.orig.tar.gz
 da0fecaf8ab95be1e4a9a0f93a79c9b6 5422 java optional 
libflexdock-java_1.2.4-1.debian.tar.gz
 353c3e78ce0b1240659f0f3c1c8afaab 390184 java optional 
libflexdock-java_1.2.4-1_all.deb
 056e94b08b640262025ea3015e97e937 674494 doc optional 
libflexdock-java-doc_1.2.4-1_all.deb
 cfc504d52c87e78b64a65436d0614067 1704384 java optional 
libflexdock-java-demo_1.2.4-1_all.deb

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

iEYEARECAAYFAlH/pH0ACgkQiOXXM92JlhDrSACg4oraVSmxYEncaFdJV3JAe/M+
UDwAnAqrSo+f7u+BRpJJA+oV1tLxgPol
=Ju96
-END PGP SIGNATURE-


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



Accepted geis 2.2.16-1 (source amd64 all)

2013-08-05 Thread Stephen M. Webb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 27 May 2013 16:40:06 -0400
Source: geis
Binary: libgeis1 libgeis-dev python3-geis libgeis-doc geis-tools
Architecture: source amd64 all
Version: 2.2.16-1
Distribution: unstable
Urgency: low
Maintainer: Stephen M. Webb stephen.w...@bregmasoft.ca
Changed-By: Stephen M. Webb stephen.w...@bregmasoft.ca
Description: 
 geis-tools - Gesture engine interface support - test tools
 libgeis-dev - Gesture engine interface support - dev files
 libgeis-doc - Gesture engine interface support - documentation
 libgeis1   - Gesture engine interface support
 python3-geis - Python3 bindings for libgeis
Closes: 663882
Changes: 
 geis (2.2.16-1) unstable; urgency=low
 .
   * New upstream release.
   * initial Debian release (closes: #663882)
Checksums-Sha1: 
 c9f63ff8d74bc5414fa198d9d06aaa7eee64a768 2217 geis_2.2.16-1.dsc
 4c029751366ad83b76fff07a35a70fbdd3b64ba4 449092 geis_2.2.16.orig.tar.xz
 d9404822537e75866f079bf5bd5562ce26afa281 5520 geis_2.2.16-1.debian.tar.gz
 35f71e0ebfc98eb21751f520d2328c591494efbe 80082 libgeis1_2.2.16-1_amd64.deb
 b616443182b9c32034acdbecdfa47a4366c3f621 125944 libgeis-dev_2.2.16-1_amd64.deb
 6110b1fb6dcb6d951f72f39327cdbdf6dffa2c1b 26032 python3-geis_2.2.16-1_amd64.deb
 9d51437e2d0fad1204873b3852f6e1c543097be9 232400 libgeis-doc_2.2.16-1_all.deb
 3bb87e71a6c28295828534a7b3d1d1da87a4a3e9 39140 geis-tools_2.2.16-1_amd64.deb
Checksums-Sha256: 
 d8c993cc9c6e3c9437ca1e27e951c5a1a3964b845eed21f05064f0e0e66cf560 2217 
geis_2.2.16-1.dsc
 40a694092c79f325a2fbf8a9f301177bc91c364f4e637c2aa8963ad2a5aabbcf 449092 
geis_2.2.16.orig.tar.xz
 258d94f82a6d0bbeb70a1a9e4c7e971e9f843c8ce6f2ea77a5a86350452c2485 5520 
geis_2.2.16-1.debian.tar.gz
 4a59b367a799d44879113f47769a1efa57e3cfae2a3c922b754ad61aa6b656a5 80082 
libgeis1_2.2.16-1_amd64.deb
 b22c4addaf2871cc50c60443d1edd1b8547ac7d555a4513f084d67ce44c66337 125944 
libgeis-dev_2.2.16-1_amd64.deb
 4f18a85635d09c6e53e1a284da424e4d64df938f50beb5b0d39b3b40c27cd0f6 26032 
python3-geis_2.2.16-1_amd64.deb
 ae4a21fbc72c579cf6047d0aa7c3167e09e505c432e48cd20c535403715fcfbe 232400 
libgeis-doc_2.2.16-1_all.deb
 0730b2a4a7ae9c6a6d9e189d0cac4d4f71f7e2fbd0f98782c4d8ccd000f35995 39140 
geis-tools_2.2.16-1_amd64.deb
Files: 
 2ca2274ab6bf2a1c171cadd941b9278f 2217 libs extra geis_2.2.16-1.dsc
 f70af0887a5585539406d8737b231b5e 449092 libs extra geis_2.2.16.orig.tar.xz
 a05d9cea2ff2156b37c42b5194013fb0 5520 libs extra geis_2.2.16-1.debian.tar.gz
 7250a5305ce72572343ed9590570bd18 80082 libs extra libgeis1_2.2.16-1_amd64.deb
 e128d4e1f3954737eb01a8948a7f568e 125944 libdevel extra 
libgeis-dev_2.2.16-1_amd64.deb
 88945c0fa414c30e197a72df88264cac 26032 python extra 
python3-geis_2.2.16-1_amd64.deb
 a686ff14fadee1fec2a068e3d08b7a88 232400 doc extra libgeis-doc_2.2.16-1_all.deb
 95e576ab5bd10184b4a18fd6453df781 39140 utils extra 
geis-tools_2.2.16-1_amd64.deb

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

iQIcBAEBCAAGBQJRuWMyAAoJEDIkf7tArR+m110P/212oHObq+/J/b/J5Mv31taz
c1lZzkeq2dJQcs7VKrWvu3K+CazqBoX9viPuMOiQ2hxcNSEf8MtiCT637HUiTc1o
cyFTDEGZ0EKdeTUnYfZQ7BKzQ2um2I8hM1CM4sjiBN/Ll42j2cPVLrKDr4s5jQoQ
VMruP4Ai0wp+Rbr5BEN+muEmz+8Zz1qZ9QEUJqNE5JS8GhAZMaqND385h73Id/Aw
CPH5wkkfGGr5oGaCpFT9hoVRZ9m1yf4JvBkmje9Pn3igMtP02dFO2zTyaF4n4qLi
fOKSOKhcDOUevqt4zRXWt/r8QN+X2MXKec50B7CO+spU29+QJsFZq2VFWSfF3i3n
VUsiGEMen2fZlG6jvEE8c+jHh+Mj+flIB/ZHWxJZHAKD7E/E3wRIDb6JQ+bSMfih
7/8M3GUwbgI5zJqDHE3SNuzfGuwm0qc/Jj0HIYEbIbsffgUpwzTNp9xDaz30sp7N
NqYtKrPzMleC1iSL+osf7lnRKFihKDwKuSM/nr0rdKKqnQ9Qp3T/B5SxDVOy5NLU
/36yucK+sLlMTEYJbJ+0nwK4tYWgpocC+fEzHcp5UY2+/NiKyC5LpJXRkUfXDWOp
9/b7+Y1+iBdLiE+WSWb1jEymy5AAOe8NPXXxO+GFpuqvR5p/vmawG98bCx9DCwDd
KniI0WNOUcjL2TnJ4w67
=WMKZ
-END PGP SIGNATURE-


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



Accepted fcitx-unikey 0.2.2-1 (source amd64)

2013-08-05 Thread Aron Xu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 22:19:58 +0800
Source: fcitx-unikey
Binary: fcitx-unikey
Architecture: source amd64
Version: 0.2.2-1
Distribution: unstable
Urgency: low
Maintainer: IME Packaging Team pkg-ime-de...@lists.alioth.debian.org
Changed-By: Aron Xu a...@debian.org
Description: 
 fcitx-unikey - Fcitx wrapper for Unikey engine
Changes: 
 fcitx-unikey (0.2.2-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 f9f61683ea637bddb8da790b64c394ac7332108d 1696 fcitx-unikey_0.2.2-1.dsc
 4543ced66cadc5ca19aa1aec206cd873d945377c 71612 fcitx-unikey_0.2.2.orig.tar.xz
 148459a41be1a7da63cec44c6777fa6346353f4d 1963 
fcitx-unikey_0.2.2-1.debian.tar.gz
 0b4b39d5baa0b0f8b2b1917990384c5b51b5d3a0 44584 fcitx-unikey_0.2.2-1_amd64.deb
Checksums-Sha256: 
 1f4374ca6b9ced8450e2db86e6df114e3575b30e1c5184cd03606645c2b71402 1696 
fcitx-unikey_0.2.2-1.dsc
 d9f6f634aed376d230f0cbea1ccde1eea92760d442af05a00884fa5527b0e378 71612 
fcitx-unikey_0.2.2.orig.tar.xz
 3e2c65e3358f4c510d480d433973a58e541b902a9c07c977789a5d6517dacc18 1963 
fcitx-unikey_0.2.2-1.debian.tar.gz
 fa811be3854a5e83b5f2d69e156edec96a03c27f89c981874b4c61ba925b8414 44584 
fcitx-unikey_0.2.2-1_amd64.deb
Files: 
 57fe882848c9f6db13b69ab2a04d04d8 1696 utils optional fcitx-unikey_0.2.2-1.dsc
 d697001f3d2069ac02666de5c10a7e90 71612 utils optional 
fcitx-unikey_0.2.2.orig.tar.xz
 f11ec8197f902abef6d0c826a211cac2 1963 utils optional 
fcitx-unikey_0.2.2-1.debian.tar.gz
 0d395ed79c18ec026c368a92ae91c76e 44584 utils optional 
fcitx-unikey_0.2.2-1_amd64.deb

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

iQEcBAEBAgAGBQJR/7XKAAoJEGa1A/2e4BN5iS4IAKeniJmOxU5NLgJdoX0lPzTa
BqGGewI821bMyrQd58OOy9VSuTyAk95sipzJYEKSJvzfFkLyL/vrVEM9QJSDZWU/
nAzGa+gq9us7UML8L+rFbjVIpoMaSE73zFd0yK+2M/5bPk8o9uXHyKz1xSQVv8Ue
CH0ePzf8us1rsFSVZrd1cJqJjy1+K/+kPtpvndPZX5mXwooU69iHSB6JHOtHHWrV
lZRIim5bbnvYb8SfASQ2lwU1YFe4oknVgkY6JH1NC/emMxMJaeGeYv4BYpuZuCao
uoPSDeXlJunfQVf38nDF8HNSS2JN1Cr6nYw1rP69HiLhbtB6fT/3ZOA7GkeakwY=
=y1xI
-END PGP SIGNATURE-


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



Accepted php5 5.5.1+dfsg-2 (source all amd64)

2013-08-05 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 15:58:01 +0200
Source: php5
Binary: php5 php5-common libapache2-mod-php5 libapache2-mod-php5filter php5-cgi 
php5-cli php5-fpm libphp5-embed php5-dev php5-dbg php-pear php5-curl 
php5-enchant php5-gd php5-gmp php5-imap php5-interbase php5-intl php5-ldap 
php5-mcrypt php5-readline php5-mysql php5-mysqlnd php5-odbc php5-pgsql 
php5-pspell php5-recode php5-snmp php5-sqlite php5-sybase php5-tidy php5-xmlrpc 
php5-xsl
Architecture: source all amd64
Version: 5.5.1+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Debian PHP Maintainers pkg-php-ma...@lists.alioth.debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description: 
 libapache2-mod-php5 - server-side, HTML-embedded scripting language (Apache 2 
module)
 libapache2-mod-php5filter - server-side, HTML-embedded scripting language 
(apache 2 filter mo
 libphp5-embed - HTML-embedded scripting language (Embedded SAPI library)
 php-pear   - PEAR - PHP Extension and Application Repository
 php5   - server-side, HTML-embedded scripting language (metapackage)
 php5-cgi   - server-side, HTML-embedded scripting language (CGI binary)
 php5-cli   - command-line interpreter for the php5 scripting language
 php5-common - Common files for packages built from the php5 source
 php5-curl  - CURL module for php5
 php5-dbg   - Debug symbols for PHP5
 php5-dev   - Files for PHP5 module development
 php5-enchant - Enchant module for php5
 php5-fpm   - server-side, HTML-embedded scripting language (FPM-CGI binary)
 php5-gd- GD module for php5
 php5-gmp   - GMP module for php5
 php5-imap  - IMAP module for php5
 php5-interbase - interbase/firebird module for php5
 php5-intl  - internationalisation module for php5
 php5-ldap  - LDAP module for php5
 php5-mcrypt - MCrypt module for php5
 php5-mysql - MySQL module for php5
 php5-mysqlnd - MySQL module for php5 (Native Driver)
 php5-odbc  - ODBC module for php5
 php5-pgsql - PostgreSQL module for php5
 php5-pspell - pspell module for php5
 php5-readline - Readline module for php5
 php5-recode - recode module for php5
 php5-snmp  - SNMP module for php5
 php5-sqlite - SQLite module for php5
 php5-sybase - Sybase / MS SQL Server module for php5
 php5-tidy  - tidy module for php5
 php5-xmlrpc - XML-RPC module for php5
 php5-xsl   - XSL module for php5
Closes: 690395 711454 718627
Changes: 
 php5 (5.5.1+dfsg-2) unstable; urgency=low
 .
   * Move apache2 (= 2.4) from Pre-Depend to Depends (Closes: #711454)
   * Install the headers from CGI build to get mysqlnd headers into
 php5-dev package (Closes: #690395)
   * Use small helper script instead of shell blog to check FPM
 configuration (Closes: #718627)
Checksums-Sha1: 
 9c8fedfff0a6799b8178e4d78243135718375a53 3934 php5_5.5.1+dfsg-2.dsc
 0df54b96b4db2366f679d910bd209cf24651fe3a 163498 php5_5.5.1+dfsg-2.debian.tar.gz
 70591652c3175c4527b1cba9d2a17ab2eb694a6d 1260 php5_5.5.1+dfsg-2_all.deb
 171337a28bb4ae317e6db7c8a1b2012308f81e41 266832 php-pear_5.5.1+dfsg-2_all.deb
 be35f842faa20acd9e4ad8880ed1be7f7e593c59 346386 
php5-common_5.5.1+dfsg-2_amd64.deb
 3a8992ba167a440c6e7b3972084902fc94dd911a 2140440 
libapache2-mod-php5_5.5.1+dfsg-2_amd64.deb
 8ba96a82284fb4ddb811bd0a0f5bbda4277c9ef8 2136640 
libapache2-mod-php5filter_5.5.1+dfsg-2_amd64.deb
 1333ff88f3df030a80094e718452c668e3a664d6 4092732 
php5-cgi_5.5.1+dfsg-2_amd64.deb
 6c1b85597cf41bf8fb65d6b3706c5d2cc684d319 2089194 
php5-cli_5.5.1+dfsg-2_amd64.deb
 14ccb189a171a6ab4f5acb3ed1f2334c5d70db05 2117396 
php5-fpm_5.5.1+dfsg-2_amd64.deb
 3db4a51d9897ac423584be4a2e06f27b8583fcd9 2134544 
libphp5-embed_5.5.1+dfsg-2_amd64.deb
 aaa96524e7c008bfe1e710801382199945b62a02 347762 php5-dev_5.5.1+dfsg-2_amd64.deb
 8595f95577527e95d43f475031e4d22b128343ca 30214642 
php5-dbg_5.5.1+dfsg-2_amd64.deb
 5a8f65948cf73e67935ba38e60afe9b511d43bbd 26942 php5-curl_5.5.1+dfsg-2_amd64.deb
 c32b4477a0aa93b4ee772c5f7eccbb4a5cbac898 9068 
php5-enchant_5.5.1+dfsg-2_amd64.deb
 a069e88b65222ae45c491167e2101535ac92a538 27404 php5-gd_5.5.1+dfsg-2_amd64.deb
 953c80eeba93e0028583f3c680c2f3d3f7e416a1 14660 php5-gmp_5.5.1+dfsg-2_amd64.deb
 614c71c835f1ea2831b2fbf66e323fc4d5d6f25b 30054 php5-imap_5.5.1+dfsg-2_amd64.deb
 a06867f44ea9facdd1707ce05a8db1b689c8b55a 41474 
php5-interbase_5.5.1+dfsg-2_amd64.deb
 ea518f1c5db2fa18af9283b586be83ea2c7a98c6 108494 
php5-intl_5.5.1+dfsg-2_amd64.deb
 f4bc0c325367faa46928d3fda81ffa224b0cf2aa 18884 php5-ldap_5.5.1+dfsg-2_amd64.deb
 b96e80e52b68f9134d9b141e06a5734cf6e29645 14008 
php5-mcrypt_5.5.1+dfsg-2_amd64.deb
 dfc44329a1e6abbc698f6af15e0fb26f330182e7 11994 
php5-readline_5.5.1+dfsg-2_amd64.deb
 41dc7ba9409f3b5dd97092b68573d18077bcb37b 62910 
php5-mysql_5.5.1+dfsg-2_amd64.deb
 f1847b7e064d6b2734f400cd2cf5dba106c53cee 134610 
php5-mysqlnd_5.5.1+dfsg-2_amd64.deb
 c8a530137b7b5d796dcc6da7ba454c124afc7d24 30134 php5-odbc_5.5.1+dfsg-2_amd64.deb
 748501476bb101ea00d5b3d0ec42845daffba818 50290 
php5-pgsql_5.5.1+dfsg-2_amd64.deb
 

Accepted python-docutils 0.11-1 (source all)

2013-08-05 Thread Michael Schutte
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 16:47:43 +0200
Source: python-docutils
Binary: python-docutils python3-docutils docutils-common docutils-doc
Architecture: source all
Version: 0.11-1
Distribution: experimental
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Michael Schutte mi...@debian.org
Description: 
 docutils-common - text processing system for reStructuredText - common data
 docutils-doc - text processing system for reStructuredText - documentation
 python-docutils - text processing system for reStructuredText (implemented in 
Pytho
 python3-docutils - text processing system for reStructuredText (implemented in 
Pytho
Closes: 685509 712284 714317 714319 714880
Changes: 
 python-docutils (0.11-1) experimental; urgency=low
 .
   [ Jakub Wilk ]
   * Remove martin f. krafft and Ben Finney from Uploaders at their requests.
 .
   [ Michael Schutte ]
   * New upstream release 0.11, closes: #712284, #714880.
 - Drop patch math-output-html.diff: Fixed upstream.
 - Drop patch fix-buildhtml-progress.diff: Applied upstream.
 - Drop patch strict-csv-parser.diff: Fixed upstream.
 - Drop patch unknown-url-exc-use-repr.diff: Applied upstream.
 - Update patch move-data-to-usr-share.diff: Default stylesheet paths for
   writers/html4css1 have changed.
 - Refresh the remaining patches.
 - New patch no-local-roman.diff: Use the roman module from python-roman
   instead of the copy shipped with docutils.
 - Update information about upstream version control in debian/copyright.
   * Change my e-mail host in Uploaders and debian/copyright to @debian.org.
   * New patch rst2odt_prepstyles-elementtree.diff: Port the rst2odt_prepstyles
 utility to ElementTree.  Drop Recommends: python-lxml.  Closes: #714319.
   * New patch odt-writer-ascii-filenames.diff: Only use ASCII for filenames of
 images embedded in ODT files, closes: #714317.
 .
   [ Dmitry Shachnev ]
   * Use dh_python2 instead of deprecated dh_pysupport.
   * Add XS-Testsuite header, and replace XS-Python-Version with preferred
 X-Python-Version (closes: #685509).
   * Add myself to Uploaders.
Checksums-Sha1: 
 1635a8eef8ae59b1f96a79a45a40319f336164dd 2037 python-docutils_0.11-1.dsc
 3894ebcbcbf8aa54ce7c3d2c8f05460544912d67 1611755 
python-docutils_0.11.orig.tar.gz
 dcc96f65d672880a29b8372ddd4538ea69ee81eb 35952 
python-docutils_0.11-1.debian.tar.gz
 eb4428f38deea8d007fe62722f69d164daafb976 362104 python-docutils_0.11-1_all.deb
 7fa77d825e6b183928b258e5c3f70b5faf63e7d3 358588 python3-docutils_0.11-1_all.deb
 3b7252aae2557ebb6dbf05223d03fe6226858164 185622 docutils-common_0.11-1_all.deb
 d3e9f3b8530b1cf5f8a5d4bd506571cf5e35a4f9 897410 docutils-doc_0.11-1_all.deb
Checksums-Sha256: 
 3a8cb4a829abb2400753be853fc97bf4c05c4d98e06dff05fd15dd51e128f4e9 2037 
python-docutils_0.11-1.dsc
 9af4166adf364447289c5c697bb83c52f1d6f57e77849abcccd6a4a18a5e7ec9 1611755 
python-docutils_0.11.orig.tar.gz
 965a4a4bcc5f5122551f8374b690b7073a46553fe90f832c274e6f8702e7d060 35952 
python-docutils_0.11-1.debian.tar.gz
 e9ee5186fd1d6861772a0c21115846ff716de84af7e549f34e0d54ad19fa46a2 362104 
python-docutils_0.11-1_all.deb
 b26ae27c18ff0b68a78d942941081d3a65e94fc6a9b36bc7c533261035a79b12 358588 
python3-docutils_0.11-1_all.deb
 4ed630df20b248a0dd1f328648c310339ce50fff46dca94f825568c37b3146b2 185622 
docutils-common_0.11-1_all.deb
 833a66cf4b96c411c5e7f1217fff717d11611855ae8138b2d959e474eb4c6641 897410 
docutils-doc_0.11-1_all.deb
Files: 
 ac24a38cddd9a17de60c80075a01e8c4 2037 python optional 
python-docutils_0.11-1.dsc
 20ac380a18b369824276864d98ec0ad6 1611755 python optional 
python-docutils_0.11.orig.tar.gz
 c29ec8b6345d2453a42af0e1d65fce45 35952 python optional 
python-docutils_0.11-1.debian.tar.gz
 acdd6dbd9583bc60df8bee0b0757dfe6 362104 python optional 
python-docutils_0.11-1_all.deb
 e5f726b384eaa3197ecd3225dc060b55 358588 python optional 
python3-docutils_0.11-1_all.deb
 d386a6a227fcc01bcbba07db1ebad73e 185622 python optional 
docutils-common_0.11-1_all.deb
 c459d3f4885bfa5554832fd7a2d41b4c 897410 doc optional 
docutils-doc_0.11-1_all.deb

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

iQEcBAEBCAAGBQJR/7yqAAoJEPPkEi8djCYaxGMH/RrVR3xvNeN452NKfwb9qhaY
7xNoB8T0laLau5SKkh15jrzMQOs2yrBNjhMpfKInWER0SNAk9ThCQeg+LmfTOFgZ
lmTum/uhC7v4Hz5naF8btfdrkj7Suq9giiuVf7jJw9fe5fM9J86VYyxN0Ef6Vx4V
mNsg29EAUX5qBlWwVXBlnx9h2bmQpklUZbK4hKfuRZqtlqcZR7zORxhnMOP7cqJS
msm3aQHQ+dhntWYBfLm7XnCVC0OhuOEhSnPsH2fcYysc4zBQxELbyoRKO7DE5uNk
29p5uGQCtH3Vtgvpoxg5f4kQBDAmk5rDk8NXOVPTIhRJQyFlkXXJ5jgl4ZfKb0o=
=g6Rw
-END PGP SIGNATURE-


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



Accepted ruby-slop 3.4.6-1 (source all)

2013-08-05 Thread Youhei SASAKI
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Aug 2013 22:55:46 +0900
Source: ruby-slop
Binary: ruby-slop
Architecture: source all
Version: 3.4.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Youhei SASAKI uwab...@gfd-dennou.org
Description: 
 ruby-slop  - Simple DSL for gathering options and parsing the command lineOpti
Changes: 
 ruby-slop (3.4.6-1) unstable; urgency=low
 .
   * Imported Upstream version 3.4.6
   * Bump Standard Version: 3.9.4
Checksums-Sha1: 
 ef7bd1486d80be585e3e5e75d7081397e57a09e7 2066 ruby-slop_3.4.6-1.dsc
 6a990678a831e365cf17c88b750622235088a064 20135 ruby-slop_3.4.6.orig.tar.gz
 38d8c2dc7c68c1690d3434eb7ead2a9a1dce8a7d 2448 ruby-slop_3.4.6-1.debian.tar.gz
 ba2f52991a2e39f23b9197e573ca7e6f649b0954 18088 ruby-slop_3.4.6-1_all.deb
Checksums-Sha256: 
 06105160c1a873898558f5682c0fd2f3007403d08bac23e3850d30970923079d 2066 
ruby-slop_3.4.6-1.dsc
 97df59df69a489e3c252c77defaa1c30dbe2c816bef46030163f2e9bf41937e1 20135 
ruby-slop_3.4.6.orig.tar.gz
 bb8f6b8485e9d424c541a1f3e698b177fc54d1a7eae285b984ee41011e106594 2448 
ruby-slop_3.4.6-1.debian.tar.gz
 e21409b10c6cc8543c7859737f33708de05dfbffca1ba1f4cb8c93dbc8c34a2e 18088 
ruby-slop_3.4.6-1_all.deb
Files: 
 1b93df5bf71b27f3a8ec8f0006810d86 2066 ruby optional ruby-slop_3.4.6-1.dsc
 30c7c131bab8c7703cf2e65c4c46f7b2 20135 ruby optional 
ruby-slop_3.4.6.orig.tar.gz
 ee572c67b2e14808eef92663f672b4c1 2448 ruby optional 
ruby-slop_3.4.6-1.debian.tar.gz
 79d4b90db565a68bae86130874d8d599 18088 ruby optional ruby-slop_3.4.6-1_all.deb

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

iQIcBAEBCgAGBQJR/69YAAoJEJOU81SJHX4HOdIP/j55zhd/FnaTWo0Ztsht/KHy
BmjLlL6Peo6k9ShHW8GtirWZ7DTCgJvec4TQhdJ3bfHsjntr9GAp7nPNRijYgqQ0
FV+gDaAb0E8LvvFBQxw3sO4c5IDWYwpYIRwo7O/SkFjOmkWaLZ75ibgw4MqPKMVn
TvfS0AwQ/da2kVoKkm/rouBzbQkbXnz19804egTYmZzhy+/UxKQLVkwSvpj6pviV
u3FMdQwVkOLS+I9VFPeZ5ghXUQKxVUESpYEel128gZqSalZNMLjRD/F8kjN0Zpwx
TWYg6tARWBF1dmYpu3BRMzUDEYFJBzqAWJYCeHE+OhwrloGi+MXZKDyRw/zS2Ocg
yDUbQlIBcA1Xm2WgEaHH9OsQQgJ5+dRSF48b+q+ln72L4nSEN/dD3nlGwwy1tWMM
a0jcMWZicG0efs3wIzrtlDOZc7xkg0RRnErrfIgzYYs2wTDsGlZaJU+uvSTLBgcV
biLqe6BKlBGdmPGob5GUXO1djI9jFe+e6hs2bYY08GPjU9AGnMLGuLG8dBP5OG2u
CR4ZCYWWbhf2Phuwut+TRExFgKnjpP4HjMxOl+/9bFmzCvO3zFMUvYXg2Lcc3g5U
jzBMqfkNqoL6TxyM0iUtepm7ifkdQ5hoFbB0EJSL+sUfwkOLlGagLb7Dc9HRX5QC
zOLZdUo79iAzUFuQKlXo
=OT1s
-END PGP SIGNATURE-


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



Accepted knot 1.3.0-1 (source amd64 all)

2013-08-05 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 17:01:23 +0200
Source: knot
Binary: knot knot-dbg knot-dnsutils knot-host knot-doc
Architecture: source amd64 all
Version: 1.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Ondřej Surý ond...@debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description: 
 knot   - authoritative domain name server
 knot-dbg   - Debug symbols for Knot DNS
 knot-dnsutils - Clients provided with Knot DNS (kdig, knslookup, knsupdate)
 knot-doc   - Documentation for Knot DNS
 knot-host  - Version of 'host' bundled with Knot DNS
Changes: 
 knot (1.3.0-1) unstable; urgency=low
 .
   * New upstream version 1.3.0
   * Remove upstream patch from 1.3.0~rc5-2 as it is included in
 this release.
Checksums-Sha1: 
 9155b93cd64958a1f6daad6a51a777a6e9390b2b 1383 knot_1.3.0-1.dsc
 3f23211bb5e40a32e9d89ab259875134e46d7ba4 812764 knot_1.3.0.orig.tar.xz
 301bfda3aee7b52373eaee97f8af3d7d7397a831 11730 knot_1.3.0-1.debian.tar.gz
 fbb700ba2b986ceb8dd10f225b5bbec1d864596f 281732 knot_1.3.0-1_amd64.deb
 aab94e868a8f2e46b40046279fc0641f76d0d3a5 2290214 knot-dbg_1.3.0-1_amd64.deb
 1ce798f069e17a2498ac584d0fafc35d1d27553d 148198 knot-dnsutils_1.3.0-1_amd64.deb
 3f20d20dcfe52840b62f34b11f95cdadbdb390bb 125246 knot-host_1.3.0-1_amd64.deb
 846d0b7c68d9a4f1c31794d492bdd1d160138b92 297122 knot-doc_1.3.0-1_all.deb
Checksums-Sha256: 
 5edd1ece5132e78b7a5ade4e5f0a0b84e198ef025e777eb41b2fd90318c5ac26 1383 
knot_1.3.0-1.dsc
 b551e6e7150ee627a1a0278dbf870e4cdd14b288d7cab48a627fae98a92f4637 812764 
knot_1.3.0.orig.tar.xz
 4f25b864f0c031ff78edf342eacf32e52eb11a0a777dbca738832fbe7ee2bb8c 11730 
knot_1.3.0-1.debian.tar.gz
 dda8fcb0edcdd18a855dcc411ffa6b4e847db4a2630dc5cbfca6db711ef3ffda 281732 
knot_1.3.0-1_amd64.deb
 cf16e049baa045bd4bcf0aff220bde24868b8a82ad8f7eed8ba1265be05804b0 2290214 
knot-dbg_1.3.0-1_amd64.deb
 3282323b8721c5b869bcec4224b2c723a539fe260ed1f051df500aea1af51068 148198 
knot-dnsutils_1.3.0-1_amd64.deb
 162f810fc31e6241b9d77f122336c082b1f3d2912b5c8fcb6c39ad3621ebb678 125246 
knot-host_1.3.0-1_amd64.deb
 f6e77f8aab4a2bc89363ad9e8131beb93d897b8da3701616df8169bbde50f196 297122 
knot-doc_1.3.0-1_all.deb
Files: 
 27bbc4e4f9841e1f28963a8b90ab6e58 1383 net extra knot_1.3.0-1.dsc
 87015e632a08630b1c507001751489b3 812764 net extra knot_1.3.0.orig.tar.xz
 f7a1044d09096966340a1cda711bf0af 11730 net extra knot_1.3.0-1.debian.tar.gz
 a20a43c63d7011df0d578f63d3221879 281732 net extra knot_1.3.0-1_amd64.deb
 36f54c6d68b5cae0e149b9b0ec3b79b3 2290214 debug extra knot-dbg_1.3.0-1_amd64.deb
 de290dfe52c7bcd14ce604c1b2ed07f3 148198 net optional 
knot-dnsutils_1.3.0-1_amd64.deb
 d0eb7127955e73db6c0b776b8ad1be1d 125246 net optional 
knot-host_1.3.0-1_amd64.deb
 93a5f5e23629c09b01d0c7ef012e4d1e 297122 doc optional knot-doc_1.3.0-1_all.deb

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

iEYEARECAAYFAlH/wEIACgkQ9OZqfMIN8nMhSACfYyZ7TeZnR/B5v5AAtuMJeR5A
yJ4AnjIwWnxpV6Ki5RDHGg2vMLkLvJfi
=8ITi
-END PGP SIGNATURE-


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



Accepted soapdenovo2 240+dfsg-1 (source amd64)

2013-08-05 Thread Olivier Sallou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 27 Jun 2013 16:23:26 +0200
Source: soapdenovo2
Binary: soapdenovo2
Architecture: source amd64
Version: 240+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Olivier Sallou osal...@debian.org
Description: 
 soapdenovo2 - short-read assembly method to build de novo draft assembly
Changes: 
 soapdenovo2 (240+dfsg-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 c55acabdf9c65343eb933f8f111b192eddba0f6b 2105 soapdenovo2_240+dfsg-1.dsc
 c3e347e5bcb91123c8119257cf8756a9e7544cba 544000 
soapdenovo2_240+dfsg.orig.tar.gz
 1e7c020712f09213b0ab9bb25f6b6f8c0e1e1b19 8000 
soapdenovo2_240+dfsg-1.debian.tar.gz
 040043d5b94a94889b4c727c479b18e0aa5cab6e 665960 
soapdenovo2_240+dfsg-1_amd64.deb
Checksums-Sha256: 
 4fa4c8352833cd9220d04dea290306f9ec2b463767e5a86e28eb339b9639bef4 2105 
soapdenovo2_240+dfsg-1.dsc
 bbb5a0c82011d434ae5cb92af63247300c2580b801f33a7d563dbb56eb78e543 544000 
soapdenovo2_240+dfsg.orig.tar.gz
 86f074b88a2c88038ab7c6db051b6fc9422b0b97f3fe4bc28b24187ce7e7b642 8000 
soapdenovo2_240+dfsg-1.debian.tar.gz
 7363e3efb67fbbf6a9ee55b38df62684b9b1305ec4adf125c3d12a98d1d4b102 665960 
soapdenovo2_240+dfsg-1_amd64.deb
Files: 
 58b21703ccdd304b8f6453008489934f 2105 science optional 
soapdenovo2_240+dfsg-1.dsc
 9b429216e6a3629fb2c7a4585ac04ada 544000 science optional 
soapdenovo2_240+dfsg.orig.tar.gz
 db0222d77ee4559adba13f2d2f36689d 8000 science optional 
soapdenovo2_240+dfsg-1.debian.tar.gz
 70bab3737dd8bf5f8682cd7d612cb315 665960 science optional 
soapdenovo2_240+dfsg-1_amd64.deb

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

iQIbBAEBCAAGBQJR/78gAAoJEHjcaNsybYQ4/eUP9jPPLDxN6yxq0dw3cCRwJ8Ol
TEUyKSgxDasuEhhl/0bNK2XuIlpOXcYE3OcBlRfThzVCr1xj0JoP/GncZqoVC3uF
v54jmCHbr8FdayrCl8JUG5ugjFLexlSzBjOlsG7TyPKBtJ5mQBApAdl+BG1SOchx
E2lsryTabEWbYza+Ijs3sPrtu9Fi8BsQEUDv6tSBprDkM/10AobPVFAkr1CuMrCE
fTIHHj+ghYgOzrnGeQKe/tkoIYPua9CtatVlZH5SMKWORloYjG8nAhs3cgrqNwp0
3rHHkvbUvOdvk5/F6hmgSMVQfI5f+q9kXZf0sm5a7PH+smrVzW//aADZzzUhbIV7
z0DrQNjNwUhTgizma5fN2At2P3CprsexSgnDTPekN+qHpkAdKHXeGNb412aN4eEi
0DYa1S8NUupt1262YoIkn574kpu2C8nFIYltpDanvPukYkcSfZBINsifycKT3goR
l18emoqY99gAxHXR8JCgP6KEOIDjKs6iHn20y3dE5S+Pwu0dHQo7TEui9WcD3vOz
v3HHU+a8HobtxGJe3SNFspWe6fRX3sb3i73R1AK9Mip9i3eyl/ZIWdRTbZH8Q4Ts
uWnlDN0ebKEwVOrc9MYSPF5ccjkw4ozMSYZ2Ve1G4A30vmThFtpD0772R7pXAV9S
7JSBEtYZdBW2+CJHV7A=
=gLT8
-END PGP SIGNATURE-


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



Accepted dhcpcd5 6.0.5-1 (source i386)

2013-08-05 Thread Roy Marples
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 4 Aug 2013 08:00:44 +0100
Source: dhcpcd5
Binary: dhcpcd5
Architecture: source i386
Version: 6.0.5-1
Distribution: unstable
Urgency: medium
Maintainer: Roy Marples r...@marples.name
Changed-By: Roy Marples r...@marples.name
Description: 
 dhcpcd5- DHCPv4, IPv6RA and DHCPv6 client with IPv4LL support
Changes: 
 dhcpcd5 (6.0.5-1) unstable; urgency=medium
 .
   * New upstream release
Checksums-Sha1: 
 e203c9076b705b8e9f9e41c80df7f30b90e30ebd 1061 dhcpcd5_6.0.5-1.dsc
 433555ac1166944d7ec80120f3ccdd0fcae5 110259 dhcpcd5_6.0.5.orig.tar.bz2
 5934e7217fb48ba5c552012cfe36584fd9947637 3224 dhcpcd5_6.0.5-1.debian.tar.gz
 af44b239bc31bc6592720ba48183e8973a9b33ff 105194 dhcpcd5_6.0.5-1_i386.deb
Checksums-Sha256: 
 d7e8b239253d85564dfe82c2075286c1eaba1afe41a7ad6295b2d860b7eaf414 1061 
dhcpcd5_6.0.5-1.dsc
 191d0bfd7fdfa05a580a4671c0489cd782828251b5ea0b41b6d17f026a36493c 110259 
dhcpcd5_6.0.5.orig.tar.bz2
 65d1292a2ae17144a5ec55f5bf902e1cb0031f98e8280a983ab310d31cbd3a6e 3224 
dhcpcd5_6.0.5-1.debian.tar.gz
 4560b8737ef959396ba819eceecbbbe58e8bbf15d1b9f0109775d15fd2c51706 105194 
dhcpcd5_6.0.5-1_i386.deb
Files: 
 eceb1944115359aa098635890d575005 1061 net optional dhcpcd5_6.0.5-1.dsc
 a65ed99460a61f42c05f652c2eaafe7c 110259 net optional dhcpcd5_6.0.5.orig.tar.bz2
 f49ee2d3f69a2208267ab154d9ebad0d 3224 net optional 
dhcpcd5_6.0.5-1.debian.tar.gz
 41090751ad3dcb841ae9b8091ab3f8aa 105194 net optional dhcpcd5_6.0.5-1_i386.deb

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

iEYEARECAAYFAlH/v08ACgkQKPyGmiibgrf+IgCfVtVr5ER1S3Oq1zxa+GahmhtQ
ud0AoI73c/I7gywe34sK3ymswwOCnCKA
=DpSK
-END PGP SIGNATURE-


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



Accepted apel 10.8+0.20120427-4 (source all)

2013-08-05 Thread Tatsuya Kinoshita
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 23:55:36 +0900
Source: apel
Binary: apel
Architecture: source all
Version: 10.8+0.20120427-4
Distribution: unstable
Urgency: low
Maintainer: Tatsuya Kinoshita t...@debian.org
Changed-By: Tatsuya Kinoshita t...@debian.org
Description: 
 apel   - portable library for emacsen
Closes: 718765
Changes: 
 apel (10.8+0.20120427-4) unstable; urgency=low
 .
   * Update 010_ikazuhiro.patch, sync on 2013-07-06
   * Remove 040_Upstream-not-in-ikazuhiro.patch (merged ikazuhiro)
   * New patch 040_make-temp-file-for-Emacs-24.3.50.patch (closes: #718765)
Checksums-Sha1: 
 4049645241281cdf46ed07997893807e66ebe53a 1868 apel_10.8+0.20120427-4.dsc
 565fbf0922f2855bc3dac32c85476662a4389128 20848 
apel_10.8+0.20120427-4.debian.tar.gz
 41031644c96feb14a6bbc199a9caf8c949d54d5d 142826 apel_10.8+0.20120427-4_all.deb
Checksums-Sha256: 
 8048f394b0f8a61fb8c725a578078b2a6d29eaa707c8b0643f555caef4d7d60e 1868 
apel_10.8+0.20120427-4.dsc
 5f5368f364e47fafbc808c774e87fa1d5d44a2d0dd4a0d68537d2a0a9189a0aa 20848 
apel_10.8+0.20120427-4.debian.tar.gz
 9785670793b217f6454678018757e22ef7048cf2398d1ad2f2a31d230aa80c0d 142826 
apel_10.8+0.20120427-4_all.deb
Files: 
 201302eb1e9123ca383de052cf27ac86 1868 lisp optional apel_10.8+0.20120427-4.dsc
 ffeecb1b42442c7b37ca27500680b7ed 20848 lisp optional 
apel_10.8+0.20120427-4.debian.tar.gz
 8c965285ccc47a8cf50486f5eedce9bb 142826 lisp optional 
apel_10.8+0.20120427-4_all.deb

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

iQIcBAEBCAAGBQJR/8N8AAoJEOXvq5AIDqY8gecP/3RcgzGeTjdz2fGD4fijOn+1
X3QBKO7gyhotMEvOJFPfZIRnH7Nvz0lUQCqu4C+2Dnovl8VcyZojZ8qNFh0paAHb
835V0wXz3EqHiwqdiOFv0w+xaRyKpBBTSt2lRTjFOTqP6rU2nwxxKZV1a3Pl4eNR
rk/NAVNBAz6Rtb3r0vWIHw933K1dBWU1VuoLpcnYUcCkcB7OzCE2fCS+8iGmiKrc
/uOT1pj4ByzPgliR5tdray5omshe843UrFd1rIfT7SqaPgd2KGBgO4GXFDw+Dn3h
U9Eot5GrO0H+WrgRV1apuH+mCMTv/2vwkAIwK2ovGE5yqhZXoujOIBjuHE4KC9TQ
9gUmVHmtlMfJZQVxKk3ZvJqhSzXMsjSuZcR1l+PEhPaLiHDiu++7LO6EHq7g0+XU
ySqz4p9VXUnrf5LXDntRmCMdHGxriEq9/I+e1F6aNLjAZcvWegUXsTkEnzUh2ijt
EoMjhb+edjeoGufRqpkoCtofxvTmVXNnzOFL9iKb3NzAt7SSOU0MgRdjbvBKh6ZA
Zj51IdfS1f0dXBvRtprSdvrEYi7P00MBSCdSzDClddcim4A5DGtR6gW9Goqv1BFF
lYaxY3MHmh+Tdc+nz3amR/m3mnjz1g9J6JLgPZfkovWfjBTxKnU7PXsbaeO6u/l0
WFA8yJuuwHuWelWLqyCs
=wLzW
-END PGP SIGNATURE-


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



Accepted gxtuner 2.0-3 (source amd64)

2013-08-05 Thread Jaromír Mikeš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 02:14:33 +0200
Source: gxtuner
Binary: gxtuner
Architecture: source amd64
Version: 2.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description: 
 gxtuner- Tuner for Jack
Closes: 713646
Changes: 
 gxtuner (2.0-3) unstable; urgency=low
 .
   * Bump standards.
   * Set dh/compat 9
   * Update copyright file.
   * Added Keywords entry to desktop file.
   * Removed DMUA.
   * Fix VCS canonical URLs.
   * Added patch to fix undefined reference to symbol. (Closes: #713646)
   * Added spelling fix patch.
   * Added patch to fix hardening.
Checksums-Sha1: 
 1165859e516fdb2e0a168df8d95cdea6fdc8d662 2002 gxtuner_2.0-3.dsc
 72c422bc42fbe97af4d811f586bc1dc597ef3c48 7816 gxtuner_2.0-3.debian.tar.gz
 c5c8dd97f7211c0384323978489117b3be04a372 43376 gxtuner_2.0-3_amd64.deb
Checksums-Sha256: 
 307c18cb65d8d6ce21b5cf54b7af7ca13459bc323cf7a505fbca882eb18ee305 2002 
gxtuner_2.0-3.dsc
 c6330a6772f0403816db2b10d68e3b27f5607a41547cbfeb77a0c9aea9a593d8 7816 
gxtuner_2.0-3.debian.tar.gz
 bc79b7719333b486202b7ccba5cc865614775a672a9c228b0c7a550006d1a517 43376 
gxtuner_2.0-3_amd64.deb
Files: 
 1662d8371b6a8b0b1942d80aeb7c29f7 2002 sound optional gxtuner_2.0-3.dsc
 ee2fb66b3ecf9b3f2780240f65020d89 7816 sound optional 
gxtuner_2.0-3.debian.tar.gz
 71ceb2f9dd6e14a1bf111d05cf278e0c 43376 sound optional gxtuner_2.0-3_amd64.deb

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

iQIcBAEBAgAGBQJR/8H9AAoJEFsBlFXiuE+lSAAP/0BjS61JJN3zDCgbi2MIjBjs
fc746q+zPiu7+EeHWoKkzdiwPsxgrarp6Q3YxdYSPyVimJzK7Q6apKcrLP5Zdy3x
75DEEtK5ZKcixmhIhErXmVrXl2iy5u6aDZWi6s2jdxfl5N97Ya4SmoHM94Gy+u3R
/X44ZmWNA1rPMeLa5nQAmL/dqpzcapX+5rGye+9WesheKWHcAG/uQd1nrREZIi8b
hLQs2wGeGVnVoL9Q4R23m2W5lQFSz84ypc0sbnNadI8rOYQ/WKwazjys901cMNIj
08slEbF+4rODcBK4+e469V6L209N5Tgtv3WB4lkOLX410SriJhQSe7QAjH7/YGHx
ChWssqTAWPQyZz5QPwQuLB5EhLbbbF38/LA2Jdk5dGXszrogSy/S7QR/WAcD67RB
yLnnuqoHNOtbFvV93N/y+D5sviYDTipwQ5DXmiJjZuZm16vs9KlitAjaOm8xxfl0
6p1ZLoZmTF/PYfCW/1qqe1GRB7h7G3mPNDTz41gi9f+w9CcDeorosZAUSSeE4LeJ
5PjOOxwF5gISasJ2zFh/QEdlN+mFZ+LBxHAwNWgJDvA6jqp0jKDhz3lCsZlCNTTD
5BbeDHUy4lurgn3BXwrn+geEr159WgIkkPRDNqlSTRLt9yv2x1ofyHOCW0QybBy3
qQ2frnq8rgQpsus9ACTG
=5jBN
-END PGP SIGNATURE-


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



Accepted libvirt 1.1.1-1 (source i386 all)

2013-08-05 Thread Guido Günther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 11:31:05 +0200
Source: libvirt
Binary: libvirt-bin libvirt0 libvirt0-dbg libvirt-doc libvirt-dev 
python-libvirt libvirt-sanlock
Architecture: source i386 all
Version: 1.1.1-1
Distribution: unstable
Urgency: low
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-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
 python-libvirt - libvirt Python bindings
Closes: 15510 715320
Changes: 
 libvirt (1.1.1-1) unstable; urgency=low
 .
   * [58c2a29] New upstream version 1.1.1 (Closes: #15510, #715320)
   * [0a06224] Move directory creation form dh_auto_build to dh_auto_install
 since this isn't part of the building but the installing process.
   * [a1c747a] Update symbols
   * [90a1881] Update patches.
 Dropped patches fixed upstream
 CVE-2013-4153-qemu-Fix-double-free-of-returned-JSON-.patch
 CVE-2013-4154-qemu-Prevent-crash-of-libvirtd-without.patch
 Create-directory-for-lease-files-if-it-s-missing.patch
 Fix-crash-when-multiple-event-callbacks-were-registe.patch
   * [1308542] virGetGroupList: always include the primary group
 otherwise we're lacking the group to access /dev/kvm
Checksums-Sha1: 
 dd34526b069fa1ed9a7784d895325147f7252e4e 2511 libvirt_1.1.1-1.dsc
 a0c72cd89f702fe23974bc4e14f73756ad721571 25420278 libvirt_1.1.1.orig.tar.gz
 5690d22b11f109e3196eec4f8e8249ee8a149f83 41603 libvirt_1.1.1-1.debian.tar.gz
 2ff0cd765974fa9db43e4d0de8e503055448d9b1 3105942 libvirt-bin_1.1.1-1_i386.deb
 9c73a23df1d47584f0a0fa43633bd3b30232c865 2256882 libvirt0_1.1.1-1_i386.deb
 d9724b47b14be22f53def7b248ddc5e25e89b044 6721846 libvirt0-dbg_1.1.1-1_i386.deb
 0fb684713aaed73e04cba95520508442b3763c04 2522302 libvirt-doc_1.1.1-1_all.deb
 482d9146a06f3eb9aaf17f71f8ea198a4b383979 1550322 libvirt-dev_1.1.1-1_i386.deb
 aae88bb8f8360e9170b4d63e16aab46c2041f723 1637386 
python-libvirt_1.1.1-1_i386.deb
 6d07b55fecd0cdfb1cb1a2a64e23334884d99d81 1547512 
libvirt-sanlock_1.1.1-1_i386.deb
Checksums-Sha256: 
 683a37698f1e1497b1b9ce3869b96f4944ea1beac6127c8196c6229181435438 2511 
libvirt_1.1.1-1.dsc
 dc6f1e1e15b9b190eaa706e76edabcfc94b239c012f5afc22b22357a4b3b22c2 25420278 
libvirt_1.1.1.orig.tar.gz
 0ab6f4b74496938f2cdc072a5b646d80b7e05a3c3dd3547e5b5c96c740cebf02 41603 
libvirt_1.1.1-1.debian.tar.gz
 b7380fc6f0435fe3cd2ecb20710b06a45195080af425c15d0dab5f4288b02e00 3105942 
libvirt-bin_1.1.1-1_i386.deb
 c3749d47c4b0eb971e13cf3adc8f9c730d71455c9888ddb4c032eebce9971356 2256882 
libvirt0_1.1.1-1_i386.deb
 2e7638ada1247c6f3aac406b962e0057d67ab20594f51c427b2c52f1c8f32127 6721846 
libvirt0-dbg_1.1.1-1_i386.deb
 5f7d41c8008828048c9cf9084392fe74728bf4d872cdf7662baa9ccc7ac33783 2522302 
libvirt-doc_1.1.1-1_all.deb
 488a8bec889643df9021ca69befda6082e9f62f3e6599d8dc16e7535db426cde 1550322 
libvirt-dev_1.1.1-1_i386.deb
 494e2a6b27f1ef15f8579eb85bb8ee462fb6c915e22af6ae98f600c5432b754c 1637386 
python-libvirt_1.1.1-1_i386.deb
 489f85e8e2c5f8d8b0b468f3220572b45fbd35614829063bc3f189737e2a6051 1547512 
libvirt-sanlock_1.1.1-1_i386.deb
Files: 
 dbb6039cc3fed2c8c7eb80cce3dd70b5 2511 libs optional libvirt_1.1.1-1.dsc
 632f30a2f22fbb404b8e10702d7f55ca 25420278 libs optional 
libvirt_1.1.1.orig.tar.gz
 08c41e9d348db38e491c17c3c7647901 41603 libs optional 
libvirt_1.1.1-1.debian.tar.gz
 7d2641d0476a5fdd04b259e62d82c6c0 3105942 admin optional 
libvirt-bin_1.1.1-1_i386.deb
 a87073c6852d7f1f0474f7a8f4e3c30c 2256882 libs optional 
libvirt0_1.1.1-1_i386.deb
 7f3a51f85329582d33e544a3e307388a 6721846 debug extra 
libvirt0-dbg_1.1.1-1_i386.deb
 5640a239bdeb1e84e968153bf613e222 2522302 doc optional 
libvirt-doc_1.1.1-1_all.deb
 7b04feeaca4b9ba61f6c01f60ec15bea 1550322 libdevel optional 
libvirt-dev_1.1.1-1_i386.deb
 876d0e37bd838f39cf389390bb22dd1d 1637386 python optional 
python-libvirt_1.1.1-1_i386.deb
 7487eb16fd325a88e47e9345ba8f18c0 1547512 libs extra 
libvirt-sanlock_1.1.1-1_i386.deb

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

iD8DBQFR/3gZn88szT8+ZCYRAm+9AJ9nAcHcR55kGn06+TUVyjfKj+u8VgCeNOSc
x+C//iKnRaTHFSgKrkMbeas=
=kZ15
-END PGP SIGNATURE-


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



Accepted gpsd 3.9-2 (source amd64)

2013-08-05 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 16:23:10 +0200
Source: gpsd
Binary: gpsd gpsd-dbg gpsd-clients python-gps libgps20 libgps-dev libqgpsmm20 
libqgpsmm-dev
Architecture: source amd64
Version: 3.9-2
Distribution: unstable
Urgency: low
Maintainer: Bernd Zeimetz b...@debian.org
Changed-By: Bernd Zeimetz b...@debian.org
Description: 
 gpsd   - Global Positioning System - daemon
 gpsd-clients - Global Positioning System - clients
 gpsd-dbg   - Global Positioning System - debugging symbols
 libgps-dev - Global Positioning System - development files
 libgps20   - Global Positioning System - library
 libqgpsmm-dev - Global Positioning System - Qt wrapper for libgps (development)
 libqgpsmm20 - Global Positioning System - Qt wrapper for libgps
 python-gps - Global Positioning System - Python libraries
Closes: 714199 718741
Changes: 
 gpsd (3.9-2) unstable; urgency=low
 .
   [ Bernd Zeimetz ]
   * [649f6e3b] Fix symbols file for m68k and others without unsigned long.
 (Closes: #718741)
 .
   [ Michael Stapelberg ]
   * [d41eaabd] switch to dh-systemd for proper systemd maintscripts
 (Closes: #714199)
Checksums-Sha1: 
 95589daf6e4997314fc0390bbcde9d2885646c3a 2476 gpsd_3.9-2.dsc
 3ae79963be5d132816a74ca748920e3e3a8e71b2 50042 gpsd_3.9-2.diff.gz
 d2225eca7f680db02b170bc53fedea5db8151d81 106282 gpsd_3.9-2_amd64.deb
 aa4faab221a297ef84299c0f6c8a6ea015aee778 1230906 gpsd-dbg_3.9-2_amd64.deb
 9e17248eed2ba36fd16e5ad1277b984f2562d957 125088 gpsd-clients_3.9-2_amd64.deb
 a8845e3ca356a6200f87271c4af3e4f9cee2b7c5 91480 python-gps_3.9-2_amd64.deb
 db6a98d8cbab032f8ecc2121b4f2a6d1d621ce21 197776 libgps20_3.9-2_amd64.deb
 7dc968aa119be779c63a208292181a42f08f1e16 125378 libgps-dev_3.9-2_amd64.deb
 570ea67ba838edb4c67c4d0910e8f7622a35c237 83352 libqgpsmm20_3.9-2_amd64.deb
 d62ac0e9531db7ba299aa8c504bbe77b7bfdb300 40900 libqgpsmm-dev_3.9-2_amd64.deb
Checksums-Sha256: 
 83c210e598a1c2c480156fb6bf85d1d1aabccd781db508d66bece408f098a776 2476 
gpsd_3.9-2.dsc
 40b3462480b32cd2c4644a102185c9db6ba78c0d328f8fc4da50e12679f56c15 50042 
gpsd_3.9-2.diff.gz
 938ae1cd82fa2145942dc1dfc9f44dbc67e169b0df7885d305eb6668e99e7d4a 106282 
gpsd_3.9-2_amd64.deb
 d51d78775e10124ca4c7f0bc0daaccff1f73b35ae29206814ffe5169787c5dfb 1230906 
gpsd-dbg_3.9-2_amd64.deb
 41931a0b216a6354ef4b46de52e781fb7c1307c8e5f2e65749dae67e27a9870a 125088 
gpsd-clients_3.9-2_amd64.deb
 33cf80e99c04c4bee547e50de0787d47a9180c95e9893eb15347acd5d07ebdd7 91480 
python-gps_3.9-2_amd64.deb
 f1d0e6b59340dfcc08f329f70f479336011ab2fd24c9967ed681600aef27ede0 197776 
libgps20_3.9-2_amd64.deb
 d0ef6efa1405ff294ffe29726b4c982655e47d256e8359e2f6cd8a619f4fad98 125378 
libgps-dev_3.9-2_amd64.deb
 7043600fb348764ff9a16b8d42230511f9f7df5931864d266ae3d02315eeb0a2 83352 
libqgpsmm20_3.9-2_amd64.deb
 7f810a85968a54c59dae55239b15f0254b5fa4e8fd873301d43b62a0bae7d5cc 40900 
libqgpsmm-dev_3.9-2_amd64.deb
Files: 
 434f0bc768fa88a0d4dfa6c18dec8d13 2476 misc optional gpsd_3.9-2.dsc
 89f5dbc84f6469d8b1e8426bf8a529cf 50042 misc optional gpsd_3.9-2.diff.gz
 243a82a04f39b8686897760ab442f7ae 106282 misc optional gpsd_3.9-2_amd64.deb
 0db8a69c1220d768f7b65cb1d215b83d 1230906 debug extra gpsd-dbg_3.9-2_amd64.deb
 44904ec8c75c6596ea37603fb8d5bfda 125088 misc optional 
gpsd-clients_3.9-2_amd64.deb
 9b3960c5f4b8c45d9f3153de1b154ba7 91480 python optional 
python-gps_3.9-2_amd64.deb
 0fff36cd7bef3d94d51afc32191e8f6f 197776 libs optional libgps20_3.9-2_amd64.deb
 689130c207c20ce20a42deed72073d09 125378 libdevel optional 
libgps-dev_3.9-2_amd64.deb
 ba01756f5b002061fb78f7489f4bd75e 83352 libs optional 
libqgpsmm20_3.9-2_amd64.deb
 b9aa2d54d9f940eab7fb0a9e3ae19b0d 40900 libdevel optional 
libqgpsmm-dev_3.9-2_amd64.deb

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

iQIcBAEBCAAGBQJR/8WsAAoJEOs2Fxpv+UNfTlMQAIxre5m+PpRfAqzRK5rotoAI
KYsdkRAUGKS/EFVt5LVl8X9uW1OXmvANoWwEKjbE32vyRf21NauqFu4Rx59+RsSi
VKiCZBuq6qSvPpkoIH26p07uhCUsGPgXTNGD+JKhHvWVSDpeR+cg4wq9SQvY5qCT
Lbm+IdC6KaTLRYH96xz6DMbpcEe+FUjfsm4eImnEsmTDbMiI2Kiky7O6MIm3ENpx
mK648XWF77dts3WDevVGY7FC+5TXVwmPmOA8tAPPMZRhFLTcU6tboucd5wnoDo9B
mQxDqqNkzO+OCPghOcHR+bBAU9IuD1SwpOm+Qt8YsoGMxQ35fNxdwG5V/CfiLw9U
D+4EyFQ8tJ/ptKeA9muKOiCr9/zC+I5BQB7EAMTmmJ6VYoTxqVaycC3ioY9kyMbS
IHzi+xNwoctqhP6foyruNs5UZucf3bMwBgukHw/PaJDZjnv+L+gCWJIFVrKWloBO
M6BG0S169mQ9d01VrHBxXLUNKTPQK+G+3beaV28c+3IP7PpKajtwbCGJHr3N17CW
hPLeypi7fYqLGmWGNf8nWeJxHscHqpotAdt9RdLLz+3iVlwuGkrYehNkcC8lXVZJ
PJDOFc6P5uf9Z3dfZ4ZqPyKovh4maI2Og5af3cbMUZ+NqTwYno2FU20XspOoAYKD
x6aT8w3KF2v33g7vhC+q
=p/xT
-END PGP SIGNATURE-


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



Accepted ruby-fast-stemmer 1.0.2-1 (source amd64)

2013-08-05 Thread Youhei SASAKI
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 06 Aug 2013 00:26:46 +0900
Source: ruby-fast-stemmer
Binary: ruby-fast-stemmer
Architecture: source amd64
Version: 1.0.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Youhei SASAKI uwab...@gfd-dennou.org
Description: 
 ruby-fast-stemmer - Fast Porter stemmer based on a C version of algorithm for 
Ruby
Changes: 
 ruby-fast-stemmer (1.0.2-1) unstable; urgency=low
 .
   [ Cédric Boutillier ]
   * debian/control: remove obsolete DM-Upload-Allowed flag
   * use canonical URI in Vcs-* fields
   * debian/copyright:
 use DEP5 copyright-format/1.0 official URL for Format field
 .
   [ Youhei SASAKI ]
   * Imported Upstream version 1.0.2
   * Bump Standard Version: 3.9.4
Checksums-Sha1: 
 d86346b5784f83bece4b25d0fb7bd89f19ded88c 2105 ruby-fast-stemmer_1.0.2-1.dsc
 c3621289e81003f33c30c69caa955edcd0e91d00 9121 
ruby-fast-stemmer_1.0.2.orig.tar.gz
 764bb3934a68f8a9bb44c870227f12fa6da3d5e8 2372 
ruby-fast-stemmer_1.0.2-1.debian.tar.gz
 c2f6810bbca4727eb4b2f6584b15198d1e19be27 11342 
ruby-fast-stemmer_1.0.2-1_amd64.deb
Checksums-Sha256: 
 eec9ac34b2fcde20dac6cf6095934c50a79f6191f8f7351d6eb2a9d2383a3e54 2105 
ruby-fast-stemmer_1.0.2-1.dsc
 94ea3657f2fd63e80b3233697ece9c58fcf9f04ae1a140d818bf60e610a455cb 9121 
ruby-fast-stemmer_1.0.2.orig.tar.gz
 f0ccfaa477282d38b778441e5745ea6050d1ec0974c0e057929350f370dbee68 2372 
ruby-fast-stemmer_1.0.2-1.debian.tar.gz
 6a564ec9406d7d0d2c4f42ea76f33d4065bee8715e815b83eeef89b140753f37 11342 
ruby-fast-stemmer_1.0.2-1_amd64.deb
Files: 
 83cae655de8c9e5d86fd3bde12d48779 2105 ruby optional 
ruby-fast-stemmer_1.0.2-1.dsc
 937815397a2e45d9782a91ef74c0810f 9121 ruby optional 
ruby-fast-stemmer_1.0.2.orig.tar.gz
 810d8a02c55e6c042537c7317b3b999d 2372 ruby optional 
ruby-fast-stemmer_1.0.2-1.debian.tar.gz
 f32d362a7a1552b6e6c4977806c1d971 11342 ruby optional 
ruby-fast-stemmer_1.0.2-1_amd64.deb

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

iQIcBAEBCgAGBQJR/8bZAAoJEJOU81SJHX4HbPAP/2IjIERfRxhM22KVjbIcLVnl
9LrrG1/aZJtm5OqnebVjZ5e0U5UpWwO/iXxSURusE/z56ioFeqQNM8sScyP0Khir
ee09xxgas+SXTmNZHnJfZTT8eArd7ahlFviZSWi3/slrbeG7dr4T+xSKgEYKd/I6
IsHfT6VJRvC9WSKHQLybbsR5Mszus17mV3BySN+NDJ0HjIGC3ruqrvWo5hM/M57q
0tVXtKiU5l+MIbO+bJgkGxfRfod8MD0bk7tvs40JiBT1eeQOMeFbiK7ZpjI1Q5yR
W8UXKGpeU5rkVa619P0NxqhmfwYXupzd2AsogjCnTk2dpnKyK4dkRag8wSrpLS0H
5gn0T7yKTaO0flEG3Ir6SNxQSvj9ae9rdohoCcdbIai5RdtJgpQ6uW1LxOhKDCRi
a5QlengOTNha5I35vYAjCt0kiTH6JyBPGXC6K8n5Jprd2yVbUh2JJpJTgvp3zfzx
YdiYY4u9qvxPA1T2T82WDf6jmmvLUdI3pDG+Os0zk5/LCHMcCLkPxvbhZI5FG6oE
/m0A70qLIKVZwKryuY9I1JQuEKfdB/7CmsgbO0Gx4KpFQs/T0dTA2ZfTB3Ysj2bK
50R+XRuylwE/ljoCQeYlHVkGjEqwnlszowOdZSUlBetf9xU9UC4fKWc5kyGUMX5L
+PycgsGv5DT8E6/FtrwB
=y46Q
-END PGP SIGNATURE-


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



Accepted ruby-ole 1.2.11.7-1 (source all)

2013-08-05 Thread Youhei SASAKI
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 06 Aug 2013 00:14:52 +0900
Source: ruby-ole
Binary: ruby-ole libole-ruby libole-ruby-doc libole-ruby1.8 libole-ruby1.9.1
Architecture: source all
Version: 1.2.11.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Youhei SASAKI uwab...@gfd-dennou.org
Description: 
 libole-ruby - Transitional package for ruby-ole
 libole-ruby-doc - Transitional package for ruby-ole
 libole-ruby1.8 - Transitional package for ruby-ole
 libole-ruby1.9.1 - Transitional package for ruby-ole
 ruby-ole   - Ruby library for read/write access for OLE compound documents
Changes: 
 ruby-ole (1.2.11.7-1) unstable; urgency=low
 .
   [ Cédric Boutillier ]
   * debian/control: remove obsolete DM-Upload-Allowed flag
   * use canonical URI in Vcs-* fields
   * debian/copyright: use DEP5 copyright-format/1.0
 official URL for Format field
 .
   [ Youhei SASAKI ]
   * Imported Upstream version 1.2.11.7
   * Bump Standard Version: 3.9.4
   * Update debian/rules:
 - simplify override_dh_auto_install
 + add ruby-ole.examples
   * Drop obsolete patch
Checksums-Sha1: 
 7da8dfae224576ea75de38fe4ef3b619b1795da7 2280 ruby-ole_1.2.11.7-1.dsc
 7bc3f5970594b711bf821d436de1c8c08785bf95 56539 ruby-ole_1.2.11.7.orig.tar.gz
 fde8dd3eed5eb33ce84e98286db87256d8f238ad 5286 ruby-ole_1.2.11.7-1.debian.tar.gz
 3b473e95953cf47910da84c1fae6a519f46acf74 37614 ruby-ole_1.2.11.7-1_all.deb
 b2bef3b8c214a0c11747b57adc6225674d0b6d6a 6076 libole-ruby_1.2.11.7-1_all.deb
 767ba7d0b30dc54f882d3c3e3b7e7e93de45eea3 6082 
libole-ruby-doc_1.2.11.7-1_all.deb
 aae557b38fc1fefae5d76fec4a49425ed2dd5e51 6078 libole-ruby1.8_1.2.11.7-1_all.deb
 be02ea187c11983eda87aa497288908001343376 6082 
libole-ruby1.9.1_1.2.11.7-1_all.deb
Checksums-Sha256: 
 f9429e05b4540753dc351d3eabf76e56772a755887c7e8e00adcc77e07aca9ec 2280 
ruby-ole_1.2.11.7-1.dsc
 0dfa881e19d692f45275f2b4e506059625137d5715cba21bf16f376583ae84de 56539 
ruby-ole_1.2.11.7.orig.tar.gz
 a68e10575991dbd9fda75f5fdd3449574fbd2f2c51d59e8e882561003023f621 5286 
ruby-ole_1.2.11.7-1.debian.tar.gz
 2960df27268672f22acca131b549629ed5b002baa3bbf25c3961797cc695b487 37614 
ruby-ole_1.2.11.7-1_all.deb
 3382be7f889d5eba59c686d2de19fec419d55ad2e9b0f2e70f72b18efccbd6ed 6076 
libole-ruby_1.2.11.7-1_all.deb
 eb22907ce89e7c5af1a708f43386686ca362890fde1a6e69cbd763f8850f573a 6082 
libole-ruby-doc_1.2.11.7-1_all.deb
 a7558855b566ab2c87fde0aff641e31e84f38e5f9d5ccdd8aab9ec3161a454f0 6078 
libole-ruby1.8_1.2.11.7-1_all.deb
 682a078a0a330cc66740c87df43d132ad4be98e56ffcc1a3a3083cba078c95a7 6082 
libole-ruby1.9.1_1.2.11.7-1_all.deb
Files: 
 30fa567c613ba070df4db98f4b94e661 2280 ruby optional ruby-ole_1.2.11.7-1.dsc
 85705fb8247ca57073101035f7c5ad5b 56539 ruby optional 
ruby-ole_1.2.11.7.orig.tar.gz
 fd57905b0fc79b8cdd81d3021b257987 5286 ruby optional 
ruby-ole_1.2.11.7-1.debian.tar.gz
 0f55a8c6291e5938858f338821481a12 37614 ruby optional 
ruby-ole_1.2.11.7-1_all.deb
 59185bfb17bb6c09cf6a0a2f47c84a97 6076 oldlibs extra 
libole-ruby_1.2.11.7-1_all.deb
 ebc6361012fbb893ae15282bfd92f161 6082 oldlibs extra 
libole-ruby-doc_1.2.11.7-1_all.deb
 f1cf01947db56f98e9ad07e4bbdbc10e 6078 oldlibs extra 
libole-ruby1.8_1.2.11.7-1_all.deb
 55ac5520bf6b56b85c282e01c28f1eb0 6082 oldlibs extra 
libole-ruby1.9.1_1.2.11.7-1_all.deb

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

iQIcBAEBCgAGBQJR/8PpAAoJEJOU81SJHX4HksUP/0RVNDoUPJud710DVBSI/0BH
6BSE/tywmY23yVwtkXxTlr7+lUQ+irxElc6pXCtlv90Vilhtc02DyPqPLI4zmyOn
57xhszI5rljgL2KsxHZZ1TPe3wiPUdu3Wp0Zdi0SwMrGrf+bzmykrz1LYtTziz+/
CJx3pclQDkzBNtExsKMT+AOIH0VcTbmWdIsvZCyl6TDzo/VgJyY3gyKHk7tk4cCd
nojrulNMdezaypq9PGMmiOgJV7fJfupAPf8RJ5UAuGj9XPKTsTNGMWyY1a86SDed
TR4YuZC5u5PThoH5K/ayZHvjdtBo/w9UAoJN7KXpVoEzd8g8NTQhRRmLmsiXqcbm
ACqGskjqiBHTqpoyjntyy1rZVyE8OKvZc/2JVgnCwQLghyZQ7EMqk1awCMBY2pHf
RyquTUHmL+PbqoshRanoYBxdILypgJePrZ5DIdy7+BzYFBSdIFGA8rCO1YvDsQgI
HgEsBvupokBzH+rSuvdCl+4Gp1v90HxjwHz6AqglQn1+PolWNnEqDHsbiL3xX3mP
NNkEbnKk5oEheqQdMfNB5/Q1SkZibdRokaG+NBP+dB0A4zDAXHmJOeUg5yV3/wHP
x8E5wV2ToES3/VliidZgHJF+WpNL26TCdI1ZslmwOK7zJ8nsnjfXP6YFDDGQqx/o
rfjjvWvKWGQCJ4adPFuU
=6QxJ
-END PGP SIGNATURE-


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



Accepted boost1.53 1.53.0-6+exp1 (source amd64 all)

2013-08-05 Thread Dmitrijs Ledkovs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 15:44:56 +0100
Source: boost1.53
Binary: libboost1.53-dbg libboost1.53-dev libboost1.53-all-dev libboost1.53-doc 
libboost-atomic1.53.0 libboost-atomic1.53-dev libboost-chrono1.53.0 
libboost-chrono1.53-dev libboost-context1.53.0 libboost-context1.53-dev 
libboost-date-time1.53.0 libboost-date-time1.53-dev libboost-exception1.53-dev 
libboost-filesystem1.53.0 libboost-filesystem1.53-dev libboost-graph1.53.0 
libboost-graph1.53-dev libboost-graph-parallel1.53.0 
libboost-graph-parallel1.53-dev libboost-iostreams1.53.0 
libboost-iostreams1.53-dev libboost-locale1.53.0 libboost-locale1.53-dev 
libboost-math1.53.0 libboost-math1.53-dev libboost-mpi1.53.0 
libboost-mpi1.53-dev libboost-mpi-python1.53.0 libboost-mpi-python1.53-dev 
libboost-program-options1.53.0 libboost-program-options1.53-dev 
libboost-python1.53.0 libboost-python1.53-dev libboost-random1.53.0 
libboost-random1.53-dev libboost-regex1.53.0 libboost-regex1.53-dev 
libboost-serialization1.53.0 libboost-serialization1.53-dev 
libboost-signals1.53.0
 libboost-signals1.53-dev libboost-system1.53.0 libboost-system1.53-dev 
libboost-test1.53.0 libboost-test1.53-dev libboost-thread1.53.0 
libboost-thread1.53-dev libboost-timer1.53.0 libboost-timer1.53-dev 
libboost-wave1.53.0
 libboost-wave1.53-dev
Architecture: source amd64 all
Version: 1.53.0-6+exp1
Distribution: experimental
Urgency: low
Maintainer: Debian Boost Team pkg-boost-de...@lists.alioth.debian.org
Changed-By: Dmitrijs Ledkovs dmitrij.led...@ubuntu.com
Description: 
 libboost-atomic1.53-dev - atomic data types, operations, and memory ordering 
constraints
 libboost-atomic1.53.0 - atomic data types, operations, and memory ordering 
constraints
 libboost-chrono1.53-dev - C++ representation of time duration, time point, and 
clocks
 libboost-chrono1.53.0 - C++ representation of time duration, time point, and 
clocks
 libboost-context1.53-dev - provides a sort of cooperative multitasking on a 
single thread
 libboost-context1.53.0 - provides a sort of cooperative multitasking on a 
single thread
 libboost-date-time1.53-dev - set of date-time libraries based on generic 
programming concepts
 libboost-date-time1.53.0 - set of date-time libraries based on generic 
programming concepts
 libboost-exception1.53-dev - set of date-time libraries based on generic 
programming concepts
 libboost-filesystem1.53-dev - filesystem operations (portable paths, iteration 
over directories
 libboost-filesystem1.53.0 - filesystem operations (portable paths, iteration 
over directories
 libboost-graph-parallel1.53-dev - generic graph components and algorithms in 
C++
 libboost-graph-parallel1.53.0 - generic graph components and algorithms in C++
 libboost-graph1.53-dev - generic graph components and algorithms in C++
 libboost-graph1.53.0 - generic graph components and algorithms in C++
 libboost-iostreams1.53-dev - Boost.Iostreams Library development files
 libboost-iostreams1.53.0 - Boost.Iostreams Library
 libboost-locale1.53-dev - C++ facilities for localization
 libboost-locale1.53.0 - C++ facilities for localization
 libboost-math1.53-dev - Boost.Math Library development files
 libboost-math1.53.0 - Boost.Math Library
 libboost-mpi-python1.53-dev - C++ interface to the Message Passing Interface 
(MPI), Python Bind
 libboost-mpi-python1.53.0 - C++ interface to the Message Passing Interface 
(MPI), Python Bind
 libboost-mpi1.53-dev - C++ interface to the Message Passing Interface (MPI)
 libboost-mpi1.53.0 - C++ interface to the Message Passing Interface (MPI)
 libboost-program-options1.53-dev - program options library for C++
 libboost-program-options1.53.0 - program options library for C++
 libboost-python1.53-dev - Boost.Python Library development files
 libboost-python1.53.0 - Boost.Python Library
 libboost-random1.53-dev - Boost Random Number Library
 libboost-random1.53.0 - Boost Random Number Library
 libboost-regex1.53-dev - regular expression library for C++
 libboost-regex1.53.0 - regular expression library for C++
 libboost-serialization1.53-dev - serialization library for C++
 libboost-serialization1.53.0 - serialization library for C++
 libboost-signals1.53-dev - managed signals and slots library for C++
 libboost-signals1.53.0 - managed signals and slots library for C++
 libboost-system1.53-dev - Operating system (e.g. diagnostics support) library
 libboost-system1.53.0 - Operating system (e.g. diagnostics support) library
 libboost-test1.53-dev - components for writing and executing test suites
 libboost-test1.53.0 - components for writing and executing test suites
 libboost-thread1.53-dev - portable C++ multi-threading
 libboost-thread1.53.0 - portable C++ multi-threading
 libboost-timer1.53-dev - C++ wall clock and CPU process timers
 libboost-timer1.53.0 - C++ wall clock and CPU process timers
 libboost-wave1.53-dev - C99/C++ preprocessor library
 libboost-wave1.53.0 - C99/C++ preprocessor library
 

Accepted colortest-python 2.0-1 (source all)

2013-08-05 Thread Jari Aalto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 11:30:05 +0300
Source: colortest-python
Binary: colortest-python
Architecture: source all
Version: 2.0-1
Distribution: unstable
Urgency: low
Maintainer: Jari Aalto jari.aa...@cante.net
Changed-By: Jari Aalto jari.aa...@cante.net
Description: 
 colortest-python - utility to test color capabilities of terminal
Closes: 718752
Changes: 
 colortest-python (2.0-1) unstable; urgency=low
 .
   * New upstream release (Closes: #718752).
   * debian/control
 - (Vcs-*): Update to anonscm.debian.org.
   * debian/colortest-python.1.pod
 - (OPTIONS): Update to current release.
Checksums-Sha1: 
 a96eab652079e96a866f3be8d56df5b7ab708b98 1330 colortest-python_2.0-1.dsc
 bd091ce5d7fa1d8008ebd566f02b9646f9c971fd 4790 colortest-python_2.0.orig.tar.gz
 6cdebbdfe7b13caaa9c7fb45496357b8af943081 4656 
colortest-python_2.0-1.debian.tar.gz
 d9ceb6aeb7c0de5b7b5b13af8586b27a1c501e41 9436 colortest-python_2.0-1_all.deb
Checksums-Sha256: 
 3a57831e7eefba2e2c626420d85cb57bd608a6a127b7a9185cba1e4eb95761d8 1330 
colortest-python_2.0-1.dsc
 23d49ff192735d27252993d6041c7aedef5f2de9a3bb740b28d186f365e97e43 4790 
colortest-python_2.0.orig.tar.gz
 06cdfbf7e94cd84dd9e86c753f9c3a2a91e00b38938d99f43258fe79ea4d14be 4656 
colortest-python_2.0-1.debian.tar.gz
 7b310ced383598392c649079a25798bd35e6c41bbbdfce2e1a8d03f86b657e58 9436 
colortest-python_2.0-1_all.deb
Files: 
 98342cbd1815488c10b8800e53728d19 1330 utils optional colortest-python_2.0-1.dsc
 dfcd4759e6126d0249bb25312d6211d1 4790 utils optional 
colortest-python_2.0.orig.tar.gz
 ce7565afb339eb13c1dd8e35be21d6e7 4656 utils optional 
colortest-python_2.0-1.debian.tar.gz
 c6b477925e28e81ddac9de0c4ce0e6db 9436 utils optional 
colortest-python_2.0-1_all.deb

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

iEYEARECAAYFAlH/zw0ACgkQLARVQsm1XazyDwCgg8iyLGrCg96mf4Zj/j/ju65/
vCIAnj+t0iVCmyggnypcvILeGebL/cAL
=NBIG
-END PGP SIGNATURE-


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



Accepted ruby-bluefeather 0.41-2 (source all)

2013-08-05 Thread Youhei SASAKI
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 06 Aug 2013 00:48:59 +0900
Source: ruby-bluefeather
Binary: ruby-bluefeather
Architecture: source all
Version: 0.41-2
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Youhei SASAKI uwab...@gfd-dennou.org
Description: 
 ruby-bluefeather - Extend Markdown Converter written in Ruby
Changes: 
 ruby-bluefeather (0.41-2) unstable; urgency=low
 .
   [ Cédric Boutillier ]
   * use canonical URI in Vcs-* fields
 .
   [ Youhei SASAKI ]
   * Move from experimental to unstable
   * Bump Standard Version: 3.9.4
   * Add doc-base support
Checksums-Sha1: 
 1a193862428249c6956ac542dffa9bdaf21ddb17 2114 ruby-bluefeather_0.41-2.dsc
 4e563cead114cef30a02398296cbc184ec3e024c 5667 
ruby-bluefeather_0.41-2.debian.tar.gz
 85a6a5c9d5c0bbe0ae66fefd5e17e6b60a10310f 67178 ruby-bluefeather_0.41-2_all.deb
Checksums-Sha256: 
 d6ec42f6a3cd3265e047d6d69e8a8ae4cf5b157cd8aca0b52aac4ced874eb81a 2114 
ruby-bluefeather_0.41-2.dsc
 d25b7d47e022358ecf568408188f842d96b0ccf050443bce2be8d83c56b7ad0f 5667 
ruby-bluefeather_0.41-2.debian.tar.gz
 c0aeb2e3f874b7ddf5eaabcffeb535e381d1b92c2a6b14a44506bb34074888da 67178 
ruby-bluefeather_0.41-2_all.deb
Files: 
 ab2ef04d09de204f958a9f593265a1c1 2114 ruby optional ruby-bluefeather_0.41-2.dsc
 42e00d6fd3bd177bcf0417957b15e056 5667 ruby optional 
ruby-bluefeather_0.41-2.debian.tar.gz
 d5f8d3e0745c9214c560d58d20579307 67178 ruby optional 
ruby-bluefeather_0.41-2_all.deb

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

iQIcBAEBCgAGBQJR/82cAAoJEJOU81SJHX4Hh48QAJplgXmggZOD15kqJutfD1kg
gd++IYfEVyMqBaO74X6Kn/3T0QJvWTaIr4shffPl5M0OORPDh00XbGeumB0RXw2B
eacbUU+SP2qNmPw+bcoV2spp39DZ0nBaIRry9tZbRsyKRKDzC94RaDT2BzlK1P+X
3/8TC/BtQ/IATsWIrBMLKH0E51ZguxKUYXhl7kArVYcC49mx8MsJ/Mo5ISLame2K
3rq9gZkmxk3uMrq7Qj6my6jnI1opXxa6Ks15El3KysxQpSXkRUOQPciMlrhGVFzg
av4MUi55Mk0eFc95NfmFFvrNRpWAG9nzN3LdU1t+s9BbED9iw0mYl5fkk8e1qP0/
ac5kY9Iztjx7PDr5bsTixfEsMZf8gDWezajf4VS9frj8TfrhoZPWNtZzgFKNIi1z
4aAK8RizPH13gCAIKO/8a0eJh0RkBZXpGMlUVO5FLhw1PSUUkQORDC74BM7vNSZl
yIzwcDP5p42lnTiIjlkhWu+7QL2fF9/CTm75iPxZcBBUOWZ7xAtQCTteai6p2xg2
KqptSR2TuBCBOOrKymBHM4W8f0EHJwRc121NiyCyHVIR3EJbsn5aTQP+qcvnW3lK
RphgAZp3eE15YNCscehWa84lv1DotosRdTEgPCWaPPBQWc7zaP0A+8nVHBEkxuvC
zeee34HcPyFVFgKCCCL+
=ehrz
-END PGP SIGNATURE-


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



Accepted java-common 0.49 (source all amd64)

2013-08-05 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 17:18:05 +0200
Source: java-common
Binary: java-common default-jre default-jre-headless default-jdk 
default-jdk-doc gcj-native-helper
Architecture: source all amd64
Version: 0.49
Distribution: unstable
Urgency: low
Maintainer: Debian Java Mailing List debian-j...@lists.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 default-jdk - Standard Java or Java compatible Development Kit
 default-jdk-doc - Standard Java or Java compatible Development Kit 
(documentation)
 default-jre - Standard Java or Java compatible Runtime
 default-jre-headless - Standard Java or Java compatible Runtime (headless)
 gcj-native-helper - Standard helper tools for creating gcj native packages
 java-common - Base of all Java packages
Closes: 687841
Changes: 
 java-common (0.49) unstable; urgency=low
 .
   [ Sylvestre Ledru ]
   * Team upload.
   * Finalize the upload to switch to OpenJDK 7.
 See http://lists.debian.org/debian-devel-announce/2013/08/msg0.html
   * Fix empty-binary-package on gcj-native-helper, default-jre  default-jdk
   * Remove local variables in the changelog
   * Update of the Debian Java FAQ (was starting to become obsolete)
   * Update of the Java policy:
 - Recommend default-jre  default-jre-headless for Java libraries
 - Create a section Building Java packages
   - Promote default-jdk
   - Advice to use javahelper
   - Recommend maven-debian-helper
 - Remove some deprecated references to java-runtime{1,2}
 - Minor improvements
 - State the license of the policy (Closes: #687841)
 .
   [ tony mancill ]
   * Upload to unstable to make openjdk-7 the default on architectures
 where it is supported.
   * Bump Standards-Version to 3.9.4.
   * Update Vcs-Svn URL.
 .
   [ Matthias Klose ]
   * Don't blindly update to OpenJDK7 on architectures where it is not
 supported or not even built.
   * Provide a /usr/share/java/java_defaults.mk makefile fragment for
 supported java architectures and versions.
Checksums-Sha1: 
 c7e782a865fb8020714e0b5c3958768cddc90201 1368 java-common_0.49.dsc
 7380054a29b9fd5e4ffd45fa0ce1974dd59b6f1e 52190 java-common_0.49.tar.gz
 6aa5d21877e3627edd768de48fda5d467965ea51 135230 java-common_0.49_all.deb
 c6e74b369b9221c6da2cd85a8d92ff439fc9ded4 8210 default-jdk-doc_0.49_all.deb
 f61b19234735ea6a0132c403c23e3659912b2efd 900 default-jre_1.7-49_amd64.deb
 d19319b193fe229437c2d35a8369b014ff26901a 8478 
default-jre-headless_1.7-49_amd64.deb
 03a278de7fe2c20ddc38804f1a0b9d000b7b456f 894 default-jdk_1.7-49_amd64.deb
 d8c6884d0bf843830218cdd32020ab28d73ba5bc 1040 
gcj-native-helper_1.7-49_amd64.deb
Checksums-Sha256: 
 cdbce79e7ec3382ca4c382244eaf85083fe2dfda2c3f7732b1d8535d175d3c01 1368 
java-common_0.49.dsc
 4c4c5f2fffedb921cc0fba19cc334a193014b1065867aefdefbb856d5e7bf716 52190 
java-common_0.49.tar.gz
 fb9cb7216f61e6f7d2f3c4ac8fb8b1ea7be284ab73c1203ef4ae48e0323ae293 135230 
java-common_0.49_all.deb
 3ea3327e24bb82717cb0e58e180680f4f8cefa4ad72a15da344b3abb923967ba 8210 
default-jdk-doc_0.49_all.deb
 eab2ca3e75f67dc92f0387a8c38a3ffb005cc09d0d2c57fe8277d51357c1cf75 900 
default-jre_1.7-49_amd64.deb
 dce01ae4c59abfd3fe9300c0c358e5938d2f6bb40c6bf67baa71d948afcea22c 8478 
default-jre-headless_1.7-49_amd64.deb
 1ec715b69707bda16811f27a1abf11818235d3c576a9b6a282154ad8a891d57d 894 
default-jdk_1.7-49_amd64.deb
 b1b9e094d990894b82bb8d8840bd4a0fa19be048ee54e2260fb25b2b8ad30fad 1040 
gcj-native-helper_1.7-49_amd64.deb
Files: 
 02417040c5d73d48bb836e6a07b45aa5 1368 java optional java-common_0.49.dsc
 6a1c8eea1c23963eb8ceede9c3afbf2a 52190 java optional java-common_0.49.tar.gz
 8048228a8239a1cc5d1b53d1531457d7 135230 java optional java-common_0.49_all.deb
 080e5a3f6792126192909f647ade91f1 8210 doc optional default-jdk-doc_0.49_all.deb
 0ecaa3ce0d49c77c89c064c6b86e0931 900 java optional default-jre_1.7-49_amd64.deb
 f561dd093a3be95bd26bc749abc2126f 8478 java optional 
default-jre-headless_1.7-49_amd64.deb
 e9f551bd063997119527bd01701601e0 894 java optional default-jdk_1.7-49_amd64.deb
 6719c116be3b193539f42f7d9074306b 1040 java optional 
gcj-native-helper_1.7-49_amd64.deb

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

iEYEARECAAYFAlH/0fMACgkQiOXXM92JlhCx8ACfVTjGxlptd5GAI0jNclZsX0Er
IgsAn3sfIrLVhCYKINcJsi9x0iqYN6qB
=j6CB
-END PGP SIGNATURE-


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



Accepted httpcomponents-core 4.3-1 (source all)

2013-08-05 Thread Emmanuel Bourg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 18:52:34 +0200
Source: httpcomponents-core
Binary: libhttpcore-java
Architecture: source all
Version: 4.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Emmanuel Bourg ebo...@apache.org
Description: 
 libhttpcore-java - set of low level HTTP transport components for Java
Changes: 
 httpcomponents-core (4.3-1) unstable; urgency=low
 .
   * New upstream release.
 - Added a build dependency on libbuild-helper-maven-plugin-java
 - Added maven-checkstyle-plugin to the list of ignored dependencies
 - debian/rules: Generate Java 1.5 compatible bytecode
   * Updated debian/copyright
   * Install the upstream changelog as /usr/share/doc/*/changelog.gz
Checksums-Sha1: 
 68608115b03056419a713d10172c0d7cd1ebc340 2357 httpcomponents-core_4.3-1.dsc
 9cf4483c2762b2f3fcc96a0426db885e4b30acc6 500108 
httpcomponents-core_4.3.orig.tar.gz
 0c9131ccc63db415bf9d71ddfa4b798c9b805b96 5056 
httpcomponents-core_4.3-1.debian.tar.gz
 3dcbb90e780b49862aea0dfbbea95e7e04f4a190 535818 libhttpcore-java_4.3-1_all.deb
Checksums-Sha256: 
 bfef7bc1048000a6d1f696fb535376e10c7fc5cc50ee3b1c9e50a9dd731a5bcb 2357 
httpcomponents-core_4.3-1.dsc
 a572703cec2a68438f1afe7a11689df68011bae4e083d132dec3b8e48009d618 500108 
httpcomponents-core_4.3.orig.tar.gz
 0038dce6f1aec772b43e386450b840158b3e939a7646a783381a5f4aa0dd3253 5056 
httpcomponents-core_4.3-1.debian.tar.gz
 85f2bdf8e1e05a30af86aab6728cf6c3ca186a7c33467ce531bf7f7c25dedd41 535818 
libhttpcore-java_4.3-1_all.deb
Files: 
 7e2d9628d190c8de2257f35063671ab1 2357 java optional 
httpcomponents-core_4.3-1.dsc
 3d97636e1d0f56c97771552933cd4729 500108 java optional 
httpcomponents-core_4.3.orig.tar.gz
 a55a5d9a6918f86559133abab2604c9c 5056 java optional 
httpcomponents-core_4.3-1.debian.tar.gz
 f279dab489482a323c4787732606a50f 535818 java optional 
libhttpcore-java_4.3-1_all.deb

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

iQIcBAEBAgAGBQJR/9iGAAoJEPUTxBnkudCsYr4P/1SCOL4IkYEP7LCWeY7FoqQI
Cgp65+axERMEGb+mQtSKcaaE2oHSR3yDkqfpTze3FhzvsZrff8mBd9DPw6NAjETE
C6w/gMXluc37zfcn5UDFHEJH4viH674rNIMJVHkDX9mXz+8v3/9RY5dtv7R3qOXt
B2CjI0SmlvgNHn1z/rpLkK/f5BGG/Pu/K7jZLUeTxPf2TLXLTXF7EhwMp1OjV7z9
b0/oBY5YQMZimUn0bOjsS2fDzTICg8DB/lzrlDxf+KYmP2a7uhAOYmrkbLNK+tgg
rp+1JEHrMfSQ6WadKgIWynd1JXRX3xKVhjvgxHsKQdv2q+b6Pgdg3+Yx6jg2gmf5
VBlcQDs5d+DGVGpQLEh6nmIGSu3d6v6ugRWE3M954GkaIUXw/m9oPeVLYqeWd/M3
XTCKsewEyWhftdbM6NCsLTAOFUPWa9aKZk6S7OqwztLz+XPXcpJ7GV4ffLLYaeg3
ru2QSbuKZdjrqq+NXBiXfcPHqmbzENTXOBgZnDxA6NsrCOS9T8VcaaJrOy7HSre6
rypY7t4sz458x3Qi9u4hqCukRN1kwwmVtwdR05DlzbVGFK9tbqpPnESpHxBrHnMK
tifdwm2A4ddVsCy+LuFtyuflfVykYoBbDhEQNywLQ/SWvHGEhxHBWHxITSg0vWpr
yt7h0N8NuLmu9f+hMPL0
=ZjUQ
-END PGP SIGNATURE-


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



Accepted fio 2.1.1-1 (source amd64)

2013-08-05 Thread Martin Steigerwald
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 16:47:21 +0200
Source: fio
Binary: fio
Architecture: source amd64
Version: 2.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Martin Steigerwald m...@teamix.de
Changed-By: Martin Steigerwald m...@teamix.de
Description: 
 fio- flexible I/O tester
Closes: 700580
Changes: 
 fio (2.1.1-1) unstable; urgency=low
 .
   * Imported Upstream version 2.1.1
   * debian/patches/ftbfs-fix-for-mips-architecture:
 Dropped. Applied upstream.
   * debian/patches/makefile-clean-delete-config-log-and-d-files:
 Delete config.log and *.d files as leaving them behind make
 repeated dpkg-buildpackage builds fail with:
 dpkg-source: info: local changes detected, …
   * debian/patches/manpage-spelling: Fix lintian tag
 spelling-error-in-manpage.
   * debian/control: Added build dependency zlib1g-dev as fio can use
 zlib to compress client/server communication.
   * Switched to xz compression. Saved almost 37 KiB on binary package.
   * Updated to Standards-Version to 3.9.4, no changes needed.
   * debian/patches/fio_generate_plots-gnuplot:
 Make test for gnuplot work with empty strings (Closes: #700580).
 Thanks to Hervé Werner for providing bug report and fix.
Checksums-Sha1: 
 7ae0dab1f833d866ccf0dc71b4147044c3b312d4 1906 fio_2.1.1-1.dsc
 27d7fc1b3336d1a7cb5cb0bbf09933df8f8391c3 391715 fio_2.1.1.orig.tar.gz
 e4e5ec67434ddd35c915bad93611b2840ccbc55c 6832 fio_2.1.1-1.debian.tar.xz
 eb08235955eaeeaee955528801d356f48ee1822d 247272 fio_2.1.1-1_amd64.deb
Checksums-Sha256: 
 869dbe87a9cfca85b659d23dff0e8cb32972a50fd29a744414cd66796597347e 1906 
fio_2.1.1-1.dsc
 9be444f45a9a646cda08b50f0fe91a3d39fa2fe56f394ebfb64ba437480b2abc 391715 
fio_2.1.1.orig.tar.gz
 c0c9c5b3a71e65a4562b72f5e3c89084d13b97f0119be09c05fad747e9dcbd4b 6832 
fio_2.1.1-1.debian.tar.xz
 5a8c581d2c92d39401fa02a8bd5f300b26f040c1d1cca598983006ba90e23f77 247272 
fio_2.1.1-1_amd64.deb
Files: 
 a2151426d902aac497a02ff8a2260193 1906 utils optional fio_2.1.1-1.dsc
 5658f59035ce4b211d3a51f973bdcead 391715 utils optional fio_2.1.1.orig.tar.gz
 45d27657bddbfa1205d8b33383ec5c4a 6832 utils optional fio_2.1.1-1.debian.tar.xz
 3b59ae3fe229b383fecba0de591bf7ae 247272 utils optional fio_2.1.1-1_amd64.deb

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

iQIcBAEBCAAGBQJR//PfAAoJEKbcJNnaJJPRVOsQALfSlKlxG3/pL8dLYassMdnx
TQxJodUYqKpa6o3vzBI29dyPcPC33+KigJDHh8AJGlOOye1OOMhOcbllAFbriTXB
tTEf6nwadF01O8wMmWzr0RnMaMhFNTTF8cSnWVIS5hmt1pNjfi0gXgMs6hw82Vf2
T+dt2jB0rJLo7hc++C+vYcSEU7MuwC0XwzaxuTeAmkIqXT9PPc27Sksky6lyj0yp
DFwsNoM7SrSRaaSczxHDuGaLwgYrDEJOqSnxXY7yIQ9E8yqU3YA35ehWZsgE/FSU
YMNE6mpV+AdW+3lAiMpJFcRJKWRaRW0DAAXOjifqI3iwGGeXh+qMoF0EOg5IYc+U
BiIFm52o+kzgW/DgS3Jtny9DA3HSfc7QG24zWPZkUBXATtUSgDblxiCnFTVdUPfd
eaudtJShcAb1Zh27eqDmWTF2ycxc5Ut+CDCSlZ6KCE4DXHGiLmbWDcKSBoXxeiaP
UjGWsRJsiMtCiSeH3d5AOHAwM+7UEKHqRkjK8lRfEMeiLM1Hg2RqbVyxrFi22WAX
EXt3NsUhzL9izPYQebEukw8CgppkHMKD4YIVG4Wt+hZ/uBTu/FKVngDbFtpkMygW
mmO24u21GtF6pEZhra9gU8+CtXoiUVyqojQYKulO6X3rB7MGNUk3xzimp+Q4QT/2
GFUNJ3CNG0LdlqjxdZcj
=yb4R
-END PGP SIGNATURE-


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



Accepted gcl 2.6.7+dfsga-39 (source all amd64)

2013-08-05 Thread Camm Maguire
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 17:38:22 +
Source: gcl
Binary: gcl gcl-doc
Architecture: source all amd64
Version: 2.6.7+dfsga-39
Distribution: unstable
Urgency: high
Maintainer: Camm Maguire c...@debian.org
Changed-By: Camm Maguire c...@debian.org
Description: 
 gcl- GNU Common Lisp compiler
 gcl-doc- Documentation for GNU Common Lisp
Changes: 
 gcl (2.6.7+dfsga-39) unstable; urgency=high
 .
   * lower initial contiguous and relblock allocations, set *ihs-top*
 properly on startup, protect memory-cfd.cfd_start initialization from
 gc
Checksums-Sha1: 
 ebfa76f08c05e53d74fc574b43c98755bea7c3dc 1220 gcl_2.6.7+dfsga-39.dsc
 115dcea50ccd32884a24e556e89cc76a50a1413d 5551131 
gcl_2.6.7+dfsga-39.debian.tar.gz
 b1572314612db9e49b877c66527821e8b3b5f095 839926 gcl-doc_2.6.7+dfsga-39_all.deb
 c6e6ca99f8b7086cf3fb882b23e0a52d6703bbe4 19852756 gcl_2.6.7+dfsga-39_amd64.deb
Checksums-Sha256: 
 d14cf242d665277b89f58db21bf36fe45fd14a510c546f9aaef09380118a33ef 1220 
gcl_2.6.7+dfsga-39.dsc
 0bbcf709bbc214d9f0d488a805b1eb567d39f7a87e8978f6d6f22b71d5952153 5551131 
gcl_2.6.7+dfsga-39.debian.tar.gz
 c8077a5a40763c0b82f71b68f3a6db6983c995be5eecc532e2ef862451ca1c4a 839926 
gcl-doc_2.6.7+dfsga-39_all.deb
 4615f747f2655b2942563a06c6dad4e3847f6cbd692d56c3926ef6309ca386d5 19852756 
gcl_2.6.7+dfsga-39_amd64.deb
Files: 
 3eb482ebc436201c9ce3f627e4d90c80 1220 lisp optional gcl_2.6.7+dfsga-39.dsc
 66d7028d6289ed96f6b0f9c4108861a2 5551131 lisp optional 
gcl_2.6.7+dfsga-39.debian.tar.gz
 e63df589014771398f4bdd20a22721d8 839926 doc optional 
gcl-doc_2.6.7+dfsga-39_all.deb
 7113b113f7e725774db925d9aecc3985 19852756 lisp optional 
gcl_2.6.7+dfsga-39_amd64.deb

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

iEYEARECAAYFAlIAAPkACgkQczG1wFfwRdy0wgCghvvHd46kSJxYqkXYpK/iP2r0
JUcAn2WW6a578ZPrG9RBXhRyx8cRKyf9
=W/F+
-END PGP SIGNATURE-


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



Accepted jasperreports3.7 3.7.6+dfsg-1 (source all)

2013-08-05 Thread Emmanuel Bourg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 23:08:26 +0200
Source: jasperreports3.7
Binary: libjasperreports3.7-java libjasperreports3.7-java-doc
Architecture: source all
Version: 3.7.6+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Emmanuel Bourg ebo...@apache.org
Description: 
 libjasperreports3.7-java - Java reporting generator library
 libjasperreports3.7-java-doc - Java reporting generator library - documentation
Changes: 
 jasperreports3.7 (3.7.6+dfsg-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
   * Refreshed the patches
   * Removed the Eclipse project files from the upstream tarball
Checksums-Sha1: 
 6e7b9c8a7e95028950fcd7f42fbde698008f582b 2744 jasperreports3.7_3.7.6+dfsg-1.dsc
 aa1a26cbf19ea04cc4822b5f29567040fc06d801 157 
jasperreports3.7_3.7.6+dfsg.orig.tar.gz
 5a56f8fee94d6e4f00ace78f009cc37b9281d85c 9940 
jasperreports3.7_3.7.6+dfsg-1.debian.tar.gz
 8e1f306b8972be6a5ce3653458ad5d340b385b8b 2774122 
libjasperreports3.7-java_3.7.6+dfsg-1_all.deb
 04bb1489400ede165afc6194e81700a8f01d3d01 2305476 
libjasperreports3.7-java-doc_3.7.6+dfsg-1_all.deb
Checksums-Sha256: 
 cf8c5d50a1c3d957912270edd22756e3e7270d8ef2efd592598f699aef38a4dd 2744 
jasperreports3.7_3.7.6+dfsg-1.dsc
 6ac5dccbbb36d00e05c6bef3fa42ed2da2bb7823470f03d329af1d7d223a3f97 157 
jasperreports3.7_3.7.6+dfsg.orig.tar.gz
 912d1bced78b092a82b20b8ac114a2f1124bb1cf2c99a0e8f35825498791fa9e 9940 
jasperreports3.7_3.7.6+dfsg-1.debian.tar.gz
 19c38042cc34cfd60d66539d2ee13c74f3fdfea5a76a3240dd63adba9a7bf048 2774122 
libjasperreports3.7-java_3.7.6+dfsg-1_all.deb
 6a7281e8328a42f94ad71dbf54c3a3f56ec603f9f08380193f1910eddd3f76ab 2305476 
libjasperreports3.7-java-doc_3.7.6+dfsg-1_all.deb
Files: 
 accac8b759046b4e047b78f89fc8d99d 2744 java optional 
jasperreports3.7_3.7.6+dfsg-1.dsc
 63bd47a00ed4ffb5c0fcd729fb3793f1 157 java optional 
jasperreports3.7_3.7.6+dfsg.orig.tar.gz
 aed7781a10e2f0ee61d64a43ba656dc8 9940 java optional 
jasperreports3.7_3.7.6+dfsg-1.debian.tar.gz
 75c4bae58bb9802374ec3182541121ca 2774122 java optional 
libjasperreports3.7-java_3.7.6+dfsg-1_all.deb
 5fa5644368eaa8a1df43e8a405b12fd7 2305476 doc optional 
libjasperreports3.7-java-doc_3.7.6+dfsg-1_all.deb

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

iQIcBAEBAgAGBQJSABV0AAoJEPUTxBnkudCsZ3oQAJmy9J84RqjXPjqk3B5j4EaJ
1ZPSb+qDJL6PlZDT9N+6dEWtlT6z35qbVtAV7YLnWryRMnhun9dO5V68Qg9hEQr0
rUeiGaj9R1vlNkRm++qN0B3yjvt1bhOaMOYn0dq4t/9w/WIOvskWAIxk3I43UEvw
9fcI0etidBmFhZTuWdG7H76NXEzqRx5bNHbQL+NyegBBkfJ/e2czYah4GIrrNdnj
D0Ep5YDucrs93zqJHlqeXAzZ4n/L7AIocZCCe8wcdSrSs5C0yfqOiCcPP3RWZ36+
cUbViUhTXraSw3KGbzOl5agtxyDfWrxKpkGWtvzxwy5H5YKlq7p+cl9ejuyc5mWn
gn4ZCePtPhk61jln6Za9vrGLfqC1AD7fxt6YrqyxNnZMX6bgTop4YsA2gCtElWvj
uKt1rFPXH8PRitItKHJKcwpaldH5Sa5Bllrq6wFFqnv42CbVKTrpUGKxBL8JgQzo
s2b6Mi/rxZY9oF2dI6+Bva3OULGYFuRuGbJQIdsPEY8mZFFwyX8292cxSVGyNCdD
5pXQl53DTqZv6LAe6OR57RbLux3SSJSOTCvrJNJSzYAvJ9oobEEl0wMWdxzwl4rN
weRRwxiSdOD+j9MvllIpmw5EykYv7R/66x4lC1ejPvR4CFscooIXKMx8ChzfcIW4
JqfHxE4KyAQj0gcul++X
=IlMW
-END PGP SIGNATURE-


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



Accepted lua-mode 20130419-2 (source all)

2013-08-05 Thread Hilko Bengen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 22:26:40 +0200
Source: lua-mode
Binary: lua-mode
Architecture: source all
Version: 20130419-2
Distribution: unstable
Urgency: low
Maintainer: Hilko Bengen ben...@debian.org
Changed-By: Hilko Bengen ben...@debian.org
Description: 
 lua-mode   - Emacs mode for editing Lua programs
Closes: 718811
Changes: 
 lua-mode (20130419-2) unstable; urgency=low
 .
   * Fixed install file (Closes: #718811)
Checksums-Sha1: 
 4773355fdac25ff02fbf53af03ce274818be3a52 1085 lua-mode_20130419-2.dsc
 cae3f41206a867c2f658eabed572abc181d4de02 4076 lua-mode_20130419-2.debian.tar.gz
 4faf5a78681927dc1bff125496820f8aa6caa1d3 23436 lua-mode_20130419-2_all.deb
Checksums-Sha256: 
 f1480860f30cbd4a51a7a714ebe6afa5f1eb62d3af595f62b54987e924e8ec4c 1085 
lua-mode_20130419-2.dsc
 2556f6b186faa64879f778f2ea9c63f73e0d298c5d0f995f83221997bce3b63e 4076 
lua-mode_20130419-2.debian.tar.gz
 e1150b5e36418cbca72a50dd90dee00db156856522dc4644b25f950c0c3f39ed 23436 
lua-mode_20130419-2_all.deb
Files: 
 ae68328a22381acd3509dc3eb3738a5d 1085 editors optional lua-mode_20130419-2.dsc
 4b80e7e494089e64bfe5cae058366b8a 4076 editors optional 
lua-mode_20130419-2.debian.tar.gz
 61937e3f14e54bb1e6d64737851d4c66 23436 editors optional 
lua-mode_20130419-2_all.deb

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

iEYEARECAAYFAlIACscACgkQUCgnLz/SlGgIQACgrZ787UzOa75JXO2kjGiH7Suv
oOoAoLMFjNlCbuoPzeXH7yBftO2cWnoR
=b1DD
-END PGP SIGNATURE-


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



Accepted resiprocate 1.8.12-1 (source amd64)

2013-08-05 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 22:26:40 +0200
Source: resiprocate
Binary: libresiprocate-1.8 libresiprocate-1.8-dev librecon-1.8 librecon-1.8-dev 
libresiprocate-turn-client-1.8 libresiprocate-turn-client-1.8-dev repro 
resiprocate-turn-server sipdialer
Architecture: source amd64
Version: 1.8.12-1
Distribution: unstable
Urgency: high
Maintainer: Debian VoIP Team pkg-voip-maintain...@lists.alioth.debian.org
Changed-By: Daniel Pocock dan...@pocock.com.au
Description: 
 librecon-1.8 - reSIProcate conversation manager - shared libraries
 librecon-1.8-dev - reSIProcate conversation manager - development files
 libresiprocate-1.8 - reSIProcate SIP stack - shared libraries
 libresiprocate-1.8-dev - reSIProcate SIP stack - development files
 libresiprocate-turn-client-1.8 - reSIProcate TURN client (reTurn) - shared 
libraries
 libresiprocate-turn-client-1.8-dev - reSIProcate TURN client (reTurn) - 
development files
 repro  - reSIProcate SIP stack - lightweight SIP proxy daemon
 resiprocate-turn-server - reSIProcate SIP stack - ICE/TURN server
 sipdialer  - reSIProcate SIP stack - click-to-call utility
Changes: 
 resiprocate (1.8.12-1) unstable; urgency=high
 .
   * New upstream release
   * Upstream has fixed various issues, Debian patches dropped
Checksums-Sha1: 
 c998c790839707d7106610ba565805bf57fdce17 2701 resiprocate_1.8.12-1.dsc
 65bbd3a99574aa33fc6970321085628e08acb80c 9459757 resiprocate_1.8.12.orig.tar.gz
 71ded5b76349cba1ab0eb5c6b4ec95405e476e0e 22447 
resiprocate_1.8.12-1.debian.tar.gz
 4db17cc20b08529924104336e693caf90bced7e6 1569298 
libresiprocate-1.8_1.8.12-1_amd64.deb
 7aaef9f7e472b2044cf8c182d8ae9e9ac00ee8b5 320772 
libresiprocate-1.8-dev_1.8.12-1_amd64.deb
 ede145b6e9608673863a52ebfef450ca38c7053e 383152 librecon-1.8_1.8.12-1_amd64.deb
 56873a2a2852b07419ed42792faf6e95dbd2591a 72912 
librecon-1.8-dev_1.8.12-1_amd64.deb
 cd980e145edbec36a5cf2aa6a4ec35bac7e12a4a 396736 
libresiprocate-turn-client-1.8_1.8.12-1_amd64.deb
 a518bd13dc7c2aee8d63dd65f59930b406bff01d 40132 
libresiprocate-turn-client-1.8-dev_1.8.12-1_amd64.deb
 bb924e711cce09dd0dd8efd31c11d8a43bf304f3 417238 repro_1.8.12-1_amd64.deb
 49498c9724204a7a43bec540fd301abe362be249 316860 
resiprocate-turn-server_1.8.12-1_amd64.deb
 1984994c6a769306a225ed8b343c07e87d10b702 30824 sipdialer_1.8.12-1_amd64.deb
Checksums-Sha256: 
 7653e94c4526f62db1091ad71d2e54595ca8ea5dbab8895e71134bb15910272d 2701 
resiprocate_1.8.12-1.dsc
 c2639ebf580e5cb8ae155d4c81096b3ff8c36d673919e6ea71658b24f9a31ca7 9459757 
resiprocate_1.8.12.orig.tar.gz
 f6ab3ed517aa8f72b34f701c4ea9aa01c64a3ec8ec09d893bcc6620668029f62 22447 
resiprocate_1.8.12-1.debian.tar.gz
 2145d7ee1c9031c783c4b925b84919b495da8f9cdae581d1deb388f724cc2867 1569298 
libresiprocate-1.8_1.8.12-1_amd64.deb
 8866f694f6c7f72b2206982eede337a115ff03a15695f723dde1383fe811f100 320772 
libresiprocate-1.8-dev_1.8.12-1_amd64.deb
 03b5d048f0d21e5931fb99a3b4ccd278931f3f0dc0419dc59edd797758d3a37b 383152 
librecon-1.8_1.8.12-1_amd64.deb
 baf866e7bc71070a107d44921074d6f0d676c27ff77eb7249b61b9ae39e8061b 72912 
librecon-1.8-dev_1.8.12-1_amd64.deb
 c6a54753447fd9bf5a6dfd8121948039297d21a64aa98d58ab40658e7dcdc7a4 396736 
libresiprocate-turn-client-1.8_1.8.12-1_amd64.deb
 226f503ce4a8ce55b297391e94ca5e704963709f3d997c1f3ac707f2e1611601 40132 
libresiprocate-turn-client-1.8-dev_1.8.12-1_amd64.deb
 77b10f91bd1691f8a0a164ed9df175f74f4dc8b4a6f1e4dd6261bb2c683a4909 417238 
repro_1.8.12-1_amd64.deb
 cae2a8cfc892abef83c86a6ce14c2c8df60dfe5fd47e3e2afe4dc4362677c931 316860 
resiprocate-turn-server_1.8.12-1_amd64.deb
 f48fbfc62fe6e2e99ec0bade3b0659ee9c10e7970fa24ed3c1e67811c9df082a 30824 
sipdialer_1.8.12-1_amd64.deb
Files: 
 5192db20a0e9086fc1c6c7ef515a311a 2701 libs extra resiprocate_1.8.12-1.dsc
 d0f12790916e109d8c1a185c98e9e5be 9459757 libs extra 
resiprocate_1.8.12.orig.tar.gz
 981aca398f924b57ac9a267559da399c 22447 libs extra 
resiprocate_1.8.12-1.debian.tar.gz
 72dcff3faf1d2165128e14a835c0772b 1569298 libs extra 
libresiprocate-1.8_1.8.12-1_amd64.deb
 ef832b7d3cec5e7bd3f5e34ccf63803e 320772 libdevel extra 
libresiprocate-1.8-dev_1.8.12-1_amd64.deb
 ea89445953298cb5a90ded276bb77370 383152 libs extra 
librecon-1.8_1.8.12-1_amd64.deb
 d701c30e18eef31fe651638fb99bd24b 72912 libdevel extra 
librecon-1.8-dev_1.8.12-1_amd64.deb
 f597a4a0d944467aa0b12c619e89c5e0 396736 libs extra 
libresiprocate-turn-client-1.8_1.8.12-1_amd64.deb
 4d0f3dd0d4106b7a4c50986e493a2c10 40132 libdevel extra 
libresiprocate-turn-client-1.8-dev_1.8.12-1_amd64.deb
 1b972c6bf6e8117d7ca8ef3ccce83b7f 417238 net extra repro_1.8.12-1_amd64.deb
 4ae399e83d12889f1d180c06173bca25 316860 net extra 
resiprocate-turn-server_1.8.12-1_amd64.deb
 7955f098f748a5e9c4c786578461b401 30824 net extra sipdialer_1.8.12-1_amd64.deb

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

iQIcBAEBCAAGBQJSAA76AAoJEOm1uwJp1aqDsF0QAI5bYeiWaAK4xYmGvET1v+ky
z8iNoVDzP45O1UgnMknroy2ZKoX9lRUTgXCoNg4hfFRwm6dOgG04EdCiw7ObKmkU

Accepted singularity-music 007-1 (source all)

2013-08-05 Thread Kari Pahula
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 23:06:54 +0300
Source: singularity-music
Binary: singularity-music
Architecture: source all
Version: 007-1
Distribution: unstable
Urgency: low
Maintainer: Kari Pahula k...@debian.org
Changed-By: Kari Pahula k...@debian.org
Description: 
 singularity-music - Music for Endgame: Singularity game
Changes: 
 singularity-music (007-1) unstable; urgency=low
 .
   * New upstream release
   * Standards-Version 3.9.4 (no changes necessary)
Checksums-Sha1: 
 37982694c02aa207900625245464ef6044c65227 1781 singularity-music_007-1.dsc
 ee271aee69a1e125b149ce187d41e9396b211e53 51773475 
singularity-music_007.orig.tar.gz
 41ac6b3550835c249987359ed6fe47ecdb279ab4 8642 
singularity-music_007-1.debian.tar.gz
 c241779a7c7a4d48863b45386fcddb83968e924d 51627010 
singularity-music_007-1_all.deb
Checksums-Sha256: 
 e00ca909ea5b35b22c6d2aecdc97a3ccee66457f2db9051dbda31c3f1eee35e3 1781 
singularity-music_007-1.dsc
 7d81fea03578d8da6e1c57070208aad1bdaf19b5fad7da6fdc532f564163bcdd 51773475 
singularity-music_007.orig.tar.gz
 74ab74f874554b8ac3cb1ca7a5ed27195dddc47df55fcf3ba70b8a8955226129 8642 
singularity-music_007-1.debian.tar.gz
 ab6300df17e87b819dce0f1366600c069cd8d052055d451be1354c87481728c0 51627010 
singularity-music_007-1_all.deb
Files: 
 54c6cfe660b83f37e0105ea7bb892ab7 1781 games optional 
singularity-music_007-1.dsc
 6002dc586b25b39278808b5841117299 51773475 games optional 
singularity-music_007.orig.tar.gz
 d4b5b40b5ad26a962eff5e510df36533 8642 games optional 
singularity-music_007-1.debian.tar.gz
 3d18a7a20ff5e3d6f5bc46e98a5745e3 51627010 games optional 
singularity-music_007-1_all.deb

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

iQIcBAEBCAAGBQJSAAimAAoJEIQIZ+6djyZcLbsQALabPof+DpC/vSV5xwpbWh7Y
YlZ0TgDxWQOuxqLy7RfnAGGHQ8+sEhNjJiFnf2LJOncTjML56oM+nwenr91oDcUt
ukr03jvEydRsYAR2Ul5juags1HBgCtAVVfXW3XSYunUiXBkXPA5XbLqoZSBN+MZ6
qX0WQH1/x0HjvpBdThuHPv2SV97FMM/BVNN+XTM+JQc2BhfhSMo6P5q3BbmakAxo
kvvRCV5BK6zZu/gTLPuN4DJLxLFw24c+17HLYNDyQ0p0gUb8+5HRbhngr3oEZCqG
Oivay9HYPPQ+MlSWB/1byI+KTPWS9sfaAfXMt48mSEAFHkpmWPqnpPhnDtAkB0SG
EKx0YQmRtYPdw6REjPnF0Rwhtslho/rrcQSnN2ojs23gC4viGTDDuQnhKX3YtjNn
x4ICFoKGcFcolYIUI+LzvNPTQqSgwf4dkpy9uPF0gBNYhRWREqMhG93uFU1PLcKZ
rogIaj3M6KjlGWLdbaVmgf72ZprGGDRgls0+VFyb5KhFgeaSg1LjdBl8RV62XeQm
ATTa337be1Fw6X2qhUoSbQwD6MwWZgXCY2l/vxf9KawG9wsJHr70sQV4SeD6aIY7
m5bM4E++6UcuA4Q7evIAcHD4StQcAKq+BmHEBxWjQhOujDyZ9jFLHABeG4uppkgo
HW+VwQSW6eCuIEn8PsgX
=1WcM
-END PGP SIGNATURE-


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



Accepted aliki 0.3.0-1 (source amd64)

2013-08-05 Thread Jaromír Mikeš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 22:31:06 +0200
Source: aliki
Binary: aliki aliki-dbg
Architecture: source amd64
Version: 0.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description: 
 aliki  - Measurement tool for Impulse Responses
 aliki-dbg  - Debugging symbols for aliki
Closes: 715628
Changes: 
 aliki (0.3.0-1) unstable; urgency=low
 .
   * New upstream release.
   * Set dependency on libclxclient 3.9.0 to fix a crash. (Closes: #715628)
   * Fix VCS canonical URLs.
   * Update copyright file.
   * Added Keywords for desktop files.
   * Tighten depedency on zita-alsa-pcmi.
   * Don't sign tags.
Checksums-Sha1: 
 8285fcf353298f370de3147c7f6c47e594d18be6 2156 aliki_0.3.0-1.dsc
 03bde96618a21d8c233ba6f36cfb0b79791bd7f9 359425 aliki_0.3.0.orig.tar.bz2
 4fede362fae8f4ddcccdcadbf62898f0b7c91c02 4945 aliki_0.3.0-1.debian.tar.gz
 686da435176d9aca59552c17d8d138c328f2986b 81884 aliki_0.3.0-1_amd64.deb
 ec037590f7afcb9845e5f19d5c0e28cdede49508 364716 aliki-dbg_0.3.0-1_amd64.deb
Checksums-Sha256: 
 eed634cd622afb7101fa8fd608abda2424c1b2380c9a414677e50585c2eb2528 2156 
aliki_0.3.0-1.dsc
 b97c45d8fcbdc3b75846adf341f861a498fc52f9c13e78ad4e6d7bc8d952bc2b 359425 
aliki_0.3.0.orig.tar.bz2
 718dc01f57d548ec33a1a758746a362f88b9ec6f7a59be4e3e100795bbeaf3c5 4945 
aliki_0.3.0-1.debian.tar.gz
 95aa8f60d33d53607d2d53cc085d71c2fe1454453cd2a408563e178b76a2a017 81884 
aliki_0.3.0-1_amd64.deb
 c240dc2305b96f34d4702cb6d346cf513d68c9ee1061aa92b6b2dbdb987bc781 364716 
aliki-dbg_0.3.0-1_amd64.deb
Files: 
 917a058a237b8172f5851bf10cefe04b 2156 sound optional aliki_0.3.0-1.dsc
 b0c3db7dd921bc69be53ef6d0f72c9c0 359425 sound optional aliki_0.3.0.orig.tar.bz2
 bd171f6be1b56d730a51a693858ece71 4945 sound optional 
aliki_0.3.0-1.debian.tar.gz
 08c433adb14c979721a7e0daa0ce770f 81884 sound optional aliki_0.3.0-1_amd64.deb
 1e01d6213ada33ee58c3830895c53cd2 364716 debug extra aliki-dbg_0.3.0-1_amd64.deb

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

iQIcBAEBAgAGBQJSABchAAoJEFsBlFXiuE+lvk8P/1OZ6Q10FhEbbrKzNKU/wnWd
+UJCCECzgiqLWOpwTwLvpKhWTbMjMuQmXe2N01rPl1Eixl+sNLXfflqDGljTwtRS
dMqGLtZM4hE7zDBfAjFhBtC5bhmHQROwXmLz0vXnCS07h+qxsuYnhwp2hkN89fGw
zidOCybqiyw2PtULxH8Joh0meY+AhZ8vFcVw5BMtGmpMRYVDCmjnKLM82SUs4HbF
whRcyrHPCRKAsSx066iLs+9eIQLM+bkW0FwYrvpMeUhYQneT9E01IAOj5mzKs2Uj
Dp+RcWzo7dJgPi20tGhLSqADg3Sp+r1EDTI8rJfwwxsPVwvtQlXv36bcRHGUlb2x
90PS821oKIoO7XNOBXMqSOrqNHSFi2gsyTGK8ie97x1lwxYVGrwPpLulujYdDotA
qPJSnhu0cSnjlrioH6H5gpkXAayq9QnbARFOSDy33oJbx1XBvdZbDl7QEP5pZmNx
fcqueWEBbNnOZmL2Tx4H7fz5/O125HBBNhYzn0EnByJhcpA5QYZfuG8jt+RsmYqz
pJdUbFwUJbMYPkdcnLw0pGcNTFegHG5kLJ3dgCPWxpMGtpuNKufbFbRtkXOExWgu
BL1EPCzt4CB1lQUXUC8NOl47vLaBatpv4+zuSGzhvvXTEtbQLEbQJy2WL3N9DsVq
GALV9BqtNLGhFfV0PnX6
=YFFt
-END PGP SIGNATURE-


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



Accepted guitarix 0.28.2-1 (source amd64)

2013-08-05 Thread Roland Stigge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 22:41:16 +0200
Source: guitarix
Binary: guitarix
Architecture: source amd64
Version: 0.28.2-1
Distribution: unstable
Urgency: low
Maintainer: Roland Stigge sti...@antcom.de
Changed-By: Roland Stigge sti...@antcom.de
Description: 
 guitarix   - Rock guitar amplifier for Jack
Changes: 
 guitarix (0.28.2-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 f0c68ecf973f4174e70b6aa03238fec3cb915488 1385 guitarix_0.28.2-1.dsc
 43f1a6296e417e50dff28b6bef0a3e9998df22c3 20151777 guitarix_0.28.2.orig.tar.bz2
 10c81f3cb6c9caefe4c262c5415e9ec2ac0ef9f8 4817 guitarix_0.28.2-1.debian.tar.gz
 94594df1cd0b7afb5dba06ce7edcd6607e77a315 17797438 guitarix_0.28.2-1_amd64.deb
Checksums-Sha256: 
 087c13e5a125113e13770237fc7a9538b0ae980bafd1618c427a0f8ad7baef5a 1385 
guitarix_0.28.2-1.dsc
 25178be5c6c9804c7f2fe17f669a97478cea4cbdccb6d626ee8f3efc792b953c 20151777 
guitarix_0.28.2.orig.tar.bz2
 c68b7213966196531bf6f74e08d382f51411f15910b422e8571fc27a0aad65a0 4817 
guitarix_0.28.2-1.debian.tar.gz
 04be7f1e52cc36e38c8d2f0a7b2df787bba51cc8cfe2fb8c60a727e4451ddac2 17797438 
guitarix_0.28.2-1_amd64.deb
Files: 
 192a4a4b8ef92ccb1ea5e8d8729d12b4 1385 sound extra guitarix_0.28.2-1.dsc
 d957c28e4d68318427f2478257307235 20151777 sound extra 
guitarix_0.28.2.orig.tar.bz2
 bae4a506fabd82eeeddcc7bdff00825c 4817 sound extra 
guitarix_0.28.2-1.debian.tar.gz
 a30980fb1bb4c1160d8be47af4067422 17797438 sound extra 
guitarix_0.28.2-1_amd64.deb

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

iD8DBQFSABQEcaH/YBv43g8RAhfyAJ4x3hQk81bScp8JQCNqNJd22kEP8ACfdCKw
MWNqvXwwzcGjZ5YmBQZKqjs=
=4208
-END PGP SIGNATURE-


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



Accepted libquvi-scripts 0.4.17-1 (all source)

2013-08-05 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon,  5 Aug 2013 23:26:40 CEST
Source: libquvi-scripts
Binary: libquvi-scripts
Architecture: all source
Version: 0.4.17-1
Distribution: unstable
Urgency: low
Maintainer: Alejandro Garrido Mota garridom...@gmail.com
Changed-By: Ansgar Burchardt ans...@debian.org
Description: 
 libquvi-scripts - library for parsing video download links (Lua scripts)
Changes: 
 libquvi-scripts (0.4.17-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha256: 
 bc9605383fef065ab2f73bee8e30da19f1b72c73ad6a61f36d4baa4ca49a53ce 37874 
libquvi-scripts_0.4.17-1_all.deb
 e1631b8ff746e285b55c2b038ead11eaf8a0ead60413289bff7a895cafd57620 1953 
libquvi-scripts_0.4.17-1.dsc
 be023b2fb44367207faa716197e71cfabe9020345a258b0bfc6ba109090807fc 118208 
libquvi-scripts_0.4.17.orig.tar.xz
 55209439fe93fae06c0614f9069729093b648bb7f35ef7a6c6dd4a1693950842 2718 
libquvi-scripts_0.4.17-1.debian.tar.gz
Checksums-Sha1: 
 204c577f95461e6a6b305a6547e9369ff0cac01b 37874 libquvi-scripts_0.4.17-1_all.deb
 8e40d5404da623c985c42b5405afb5ec904967f1 1953 libquvi-scripts_0.4.17-1.dsc
 1b6dbab8af77aa9b260aee69cd6216d218109fc8 118208 
libquvi-scripts_0.4.17.orig.tar.xz
 1d375175065559e9612506043017573fcfbfc0e7 2718 
libquvi-scripts_0.4.17-1.debian.tar.gz
Files: 
 383ce8566aaef6a1d9e0dbd252330ad3 37874 libs extra 
libquvi-scripts_0.4.17-1_all.deb
 b41f1256565c71babbe7644a148c5f00 1953 libs extra libquvi-scripts_0.4.17-1.dsc
 8a887905a368bf31e0ace28e49b5c800 118208 - - libquvi-scripts_0.4.17.orig.tar.xz
 64d403bac87a2741fd3009908219a06d 2718 - - 
libquvi-scripts_0.4.17-1.debian.tar.gz

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

iQIcBAEBCgAGBQJSABlPAAoJEIATJTTdNH3I6LcQALyW24DpHZ9zTDr92HCD6yl2
dqoSObGDUjUzlr3pfijffEsII/9hkH4IIzlwS5zbuUCvIRNTM4bv7wntbtGuE2ri
geeV0FSEFPe0kJN/k34Y9pLv5mWV9AcrDFyXPR6RtrTK03NKYU9jBuewjHrxOibU
Az6pTCNhN0mVEh/XSMQqXQb1yhgKiTT+fzfvJt9SeyJcaaKM7XPSvD6HevoFip/m
mFrO8v/gctZ9sbh7L+9ZkzSLCnmoNnjNf/GTQvGhwmBEg8YV85WscIIrYWMyLFVi
rQRembTrWZ+HqBlcPzhSTHdnqHpcvkMbabsMCjQIiF/TOwsn3mOMMcClmiDsexDW
+Oo9wS170mVIm1xscceJ9Ci3YmIs4rkiGdcGTuMCAt5I7B2tkyhYxlwyQ7BN81th
/ceS7274DQEiD15ASkUg4TV5AQXH6yQeQ1TeKuVyyR1B5XUWS+/8PGPMKgSStOqu
sd3XBw4tvYYHh+f5lRcwAh9vSc2pahI1Ln+zAnOzNTyRk4JK5NRFMrjuyz1PRrrV
ablFwVzZd2lS1MhOxOfIglD41ScUscpLXwHn9SsZNdkM9V6VrwAg7ziST2QLH6PK
2d2pPOrnDnMymNFxuY4vjjWuIqC2fHBLFE8wtjY96qvxMnccxx86rOY177saQ07X
HoVtsav7Qkhgd4ff+eph
=bujI
-END PGP SIGNATURE-


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



Accepted maxima 5.30.0-15 (source all amd64)

2013-08-05 Thread Camm Maguire
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 20:42:36 +
Source: maxima
Binary: maxima maxima-src maxima-test maxima-doc xmaxima maxima-emacs 
maxima-share
Architecture: source all amd64
Version: 5.30.0-15
Distribution: unstable
Urgency: low
Maintainer: Camm Maguire c...@debian.org
Changed-By: Camm Maguire c...@debian.org
Description: 
 maxima - Computer algebra system -- base system
 maxima-doc - Computer algebra system -- documentation
 maxima-emacs - Computer algebra system -- emacs interface
 maxima-share - Computer algebra system -- extra code
 maxima-src - Computer algebra system -- source code
 maxima-test - Computer algebra system -- test suite
 xmaxima- Computer algebra system -- x interface
Changes: 
 maxima (5.30.0-15) unstable; urgency=low
 .
   * build-dep against latest gcl
Checksums-Sha1: 
 3db99d9cd0bbd1490181af04a061cb1caf3ddab6 1467 maxima_5.30.0-15.dsc
 6819f55200ec17ecbfc5c4b05693afc3cb5fd411 1808897 maxima_5.30.0-15.debian.tar.gz
 4245864bcba0c1ef15bef196909d4fef1b7dec40 989778 maxima-src_5.30.0-15_all.deb
 f6da7d492d21e15de44d1684d2e9ec7fb28c5ade 273214 maxima-test_5.30.0-15_all.deb
 d7ac57196f0b0c0e7293c20323d2520806a515c4 3932056 maxima-doc_5.30.0-15_all.deb
 881dd3d19ccb247a4f0f885e897168e1fe67f776 101556 maxima-emacs_5.30.0-15_all.deb
 02779209b7e1b21c4e56bed5019601e2109ebed4 4434626 maxima-share_5.30.0-15_all.deb
 c0b535d92f92a0705ca767f162ce2a166cec04ff 5941108 maxima_5.30.0-15_amd64.deb
 79797db2550523419ee50c901ad4a76368ac47c4 364920 xmaxima_5.30.0-15_amd64.deb
Checksums-Sha256: 
 1a157d748c317438e66e9c586093d62a78e7f3c779a34b2bb9e32ec69f295f62 1467 
maxima_5.30.0-15.dsc
 3d46f163b52ba897070f8610add25480e3c1d8f947dbc3cb8ffcfd94ed4fd8d7 1808897 
maxima_5.30.0-15.debian.tar.gz
 1e1798e9b63473dcba7ce823232079ec2643f3fab380ea66bf6848f3b40df74c 989778 
maxima-src_5.30.0-15_all.deb
 574db61746bf72fc335d685c4715b7a134f5a3c22b4421bb52f338e492a0d765 273214 
maxima-test_5.30.0-15_all.deb
 ed856c073be0060d10c2aa2bb56748863fb3ab7c04142827b96950c82dcd12a4 3932056 
maxima-doc_5.30.0-15_all.deb
 dcefc5fdca3d44aa994734e6c94c1327a6a6ae030f3b776a505b63d5cab90be4 101556 
maxima-emacs_5.30.0-15_all.deb
 5016f36b0ea202a3fb634bf0ca4d71bf8ca63e32b790b743eb21a0f693556bba 4434626 
maxima-share_5.30.0-15_all.deb
 8dce853f2ad6bad9fa3368f95c937924be4312521cc51cbfc1fe5724fcfa6bc5 5941108 
maxima_5.30.0-15_amd64.deb
 dfac239a413c803bd6d7d5cb3c57bfac50eb8edc12f4686246fa4d81174a3d5d 364920 
xmaxima_5.30.0-15_amd64.deb
Files: 
 cde692264eed9f6a5e428dd350c13161 1467 math optional maxima_5.30.0-15.dsc
 6ce71760d2079a7a740c1ce9f25ccdef 1808897 math optional 
maxima_5.30.0-15.debian.tar.gz
 b683258af9cc96049212d3e343109cb8 989778 math optional 
maxima-src_5.30.0-15_all.deb
 c137ea1728141d92b8a67a37e2a120ec 273214 math optional 
maxima-test_5.30.0-15_all.deb
 1e8cbf9dddf315532505308a68950775 3932056 doc optional 
maxima-doc_5.30.0-15_all.deb
 01d3b9e62e9e9fd9df77227703f39061 101556 math optional 
maxima-emacs_5.30.0-15_all.deb
 68d1f0725a15c94f1b3952a37d0acd46 4434626 math optional 
maxima-share_5.30.0-15_all.deb
 ffa8813c6d5c616e977feb17ae692beb 5941108 math optional 
maxima_5.30.0-15_amd64.deb
 2268631db3c419385748c7b1d7aadb54 364920 math optional 
xmaxima_5.30.0-15_amd64.deb

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

iEYEARECAAYFAlIAFX8ACgkQczG1wFfwRdxvCwCgvd2Pic1woHJlXJxg/qlUbd6f
ZHYAoJ1ButKr8wfNMrK4SEJvv/FYnMxg
=OBAU
-END PGP SIGNATURE-


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



Accepted subtitleeditor 0.41.0-1 (source amd64)

2013-08-05 Thread Philip Rinn
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Aug 2013 18:35:01 +0200
Source: subtitleeditor
Binary: subtitleeditor libsubtitleeditor0 libsubtitleeditor-dev
Architecture: source amd64
Version: 0.41.0-1
Distribution: experimental
Urgency: low
Maintainer: Philip Rinn ri...@inventati.org
Changed-By: Philip Rinn ri...@inventati.org
Description: 
 libsubtitleeditor-dev - subtitleeditor lib - development files
 libsubtitleeditor0 - subtitleeditor lib - runtime files
 subtitleeditor - Graphical subtitle editor with sound waves representation
Changes: 
 subtitleeditor (0.41.0-1) experimental; urgency=low
 .
   * New upstream release.
   * Remove debian/patches/01-glib-single-include.patch, it's included upstream.
   * Remove Lintian overrides as Lintian knows about the false-positives now.
   * Use section 'libs' for libsubtitleeditor0.
Checksums-Sha1: 
 b0f8f0424ebeb96ad0be426e9696e23662ea7f49 2235 subtitleeditor_0.41.0-1.dsc
 78b2a5dfcd9e9ea3c2d6785cc2f109a23064e38e 1637527 
subtitleeditor_0.41.0.orig.tar.gz
 dfdca7e2241971a4719c6e75aaac7fdda4408043 6648 
subtitleeditor_0.41.0-1.debian.tar.gz
 7bfed833c7b3f3122d6951c282c8ecdbabe4854b 320104 
subtitleeditor_0.41.0-1_amd64.deb
 103c6deac92bf3a166850c0fbd1ca8afeed67197 933308 
libsubtitleeditor0_0.41.0-1_amd64.deb
 5c013825aaa2377ff097c7104a5c78e6a6c9e011 30222 
libsubtitleeditor-dev_0.41.0-1_amd64.deb
Checksums-Sha256: 
 5edcd6851bcc3d8d6173a1837515140bb893140f17d16eb225f54733a5101842 2235 
subtitleeditor_0.41.0-1.dsc
 30e7fc29e8a6e714f6b0eedf80b2b387099957b9d70093fa0032fd5528b14e62 1637527 
subtitleeditor_0.41.0.orig.tar.gz
 f2a33de19e13b1c3ccc41f37a3a3a73ef11093e14d84f4c9319fc859462212c5 6648 
subtitleeditor_0.41.0-1.debian.tar.gz
 7ca4291536262fcb33cb54337fba3fb61750178219419e17ed44988db388ad56 320104 
subtitleeditor_0.41.0-1_amd64.deb
 6de5de242c69ffbcf82b00a055f2c78938c1bb3328214500e2818220d7b9839b 933308 
libsubtitleeditor0_0.41.0-1_amd64.deb
 4e936a02e61cf2f5a4c5e3d35af598b964846aed17fc151da90c5523dd1e5ddd 30222 
libsubtitleeditor-dev_0.41.0-1_amd64.deb
Files: 
 cc683b1e0f36c8625135cb12fffc33c5 2235 gnome optional 
subtitleeditor_0.41.0-1.dsc
 3c21ccd8296001dcb1a02c62396db1b6 1637527 gnome optional 
subtitleeditor_0.41.0.orig.tar.gz
 2065f69d0a1d6a5988cc1c40db500092 6648 gnome optional 
subtitleeditor_0.41.0-1.debian.tar.gz
 54af60094eb894a65d7198e9f96496d7 320104 gnome optional 
subtitleeditor_0.41.0-1_amd64.deb
 29632de682698ec8b4ea49114f307771 933308 libs optional 
libsubtitleeditor0_0.41.0-1_amd64.deb
 70df5d42ff002279efa115487f3338c8 30222 libdevel optional 
libsubtitleeditor-dev_0.41.0-1_amd64.deb

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

iQIcBAEBCgAGBQJSABobAAoJEK728aKnRXZFZxAQAMW9wyhsZBXHDtlC1jgvrM+P
gK5G/e03ATkmMFR14jW73R/u0CwJBojH/4lSAfBcQ5B6SJMj6vmmkRQ/koj47VUg
Ewpi3cCiay4Wzc+QXESgJmq0XgJohWMfKiwxgo0c0o06pJufKJ+s+8ao2z8mVu1v
6LhTDPRr88ijQZPUqoEabt0RoglK/xx/6+YVqUYjlK7jNknxXWGRTbQWZgzsUJ6s
9pjcT1Le7jOml9Pbd6S0ZKn+gZU2BVeQYHaDpaw9vGAdVEXWlXt57kLnDne1QTB5
gV82AplPDnSwqbFNAXyVWODMry25skPlBWNY3zQqoW3Klm8qmn0eRfdoIu8w0fVq
aSR+Wl3ZL6ZG87UDCmCdQ6Pdg2m9W0/9BK1juMJ68o/te8+dhPxwDPsEF461/kHt
UeFNmF9FQO/W3Il6pZGC1weKNQBQwasduP1nymAKG/5BqTwy3IwDP+ujMh8GgTAS
mU4d0GloLjDTkGTtsD+wo3Lde/2zznRo/ZttGtxQgzZ9VQDByfda6OG9qsxd6cRn
Izf8sEh4MSzhg1mmLsM6iZClaGW475Ho99GYRbnOnET8qV8t0zGA4axkNE2d1a3j
dwdJtWhTxheUIcuEx7831SCvJaFPbl7ZpTdrN/KZaUasgbEh9S2cIGhmDXzoG8OG
MMXzQhjieN9VmUhUzZgS
=RAvo
-END PGP SIGNATURE-


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



Accepted python-pygraphviz 1.2-1 (source amd64)

2013-08-05 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 23:36:04 +0200
Source: python-pygraphviz
Binary: python-pygraphviz python-pygraphviz-dbg
Architecture: source amd64
Version: 1.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Sandro Tosi mo...@debian.org
Description: 
 python-pygraphviz - Python interface to the Graphviz graph layout and 
visualization p
 python-pygraphviz-dbg - Python interface to the Graphviz graph layout and 
visualization p
Changes: 
 python-pygraphviz (1.2-1) unstable; urgency=low
 .
   [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 .
   [ Sandro Tosi ]
   * New upstream release
   * debian/watch
 - updated for new upstream tarballs location
   * debian/copyright
 - update upstream copyright years and author email
 - extended packaging copyright years
   * debian/control
 - bump Standards-Version to 3.9.4 (no changes needed)
Checksums-Sha1: 
 b9d0a5676ba8709a45e58755e7e2e296822f4551 1615 python-pygraphviz_1.2-1.dsc
 6583abf0d682ce71888289ba3e5aab7481c70aca 90913 
python-pygraphviz_1.2.orig.tar.gz
 7fe8b4a026d5bc51da9f5d16171850e89abfd832 8885 
python-pygraphviz_1.2-1.debian.tar.gz
 099c4c23c0c15320cadc4c0a9a0172735e39801d 89944 
python-pygraphviz_1.2-1_amd64.deb
 8a0f14fc34f930304b9a007e575bd0e9bb81cc71 75632 
python-pygraphviz-dbg_1.2-1_amd64.deb
Checksums-Sha256: 
 4dfd0e339896d9d1b10f47a74166418d7036a534aa01c2e6dc69c19da487ba21 1615 
python-pygraphviz_1.2-1.dsc
 2e8a82a07dcf006b9558d22c5a6357c012193d4cc681776845e515fffeccc6b3 90913 
python-pygraphviz_1.2.orig.tar.gz
 556a73e2d46c6e699beee5813a237e422064cc9bd49b6f326c1482bab0334e3f 8885 
python-pygraphviz_1.2-1.debian.tar.gz
 b18dd5e40d484fc4758d0207af581c64f3e5f7a826554befc2279c2ed5d0b908 89944 
python-pygraphviz_1.2-1_amd64.deb
 6cd9b803be3ec5f9c39d7080057b76bd4861f39e9835644d5da9ebf3c558e9b0 75632 
python-pygraphviz-dbg_1.2-1_amd64.deb
Files: 
 6b08cb8bc4820380d6b60f84814871a3 1615 python optional 
python-pygraphviz_1.2-1.dsc
 dbe3fa55e59a5d7e3bd924511b3275c4 90913 python optional 
python-pygraphviz_1.2.orig.tar.gz
 4844ea1e931b043088c89812ca2616c0 8885 python optional 
python-pygraphviz_1.2-1.debian.tar.gz
 f6fccfdf632e73553b78fcfd15cc4869 89944 python optional 
python-pygraphviz_1.2-1_amd64.deb
 318c38640ecbbd43b8ce10daebf16ef2 75632 debug extra 
python-pygraphviz-dbg_1.2-1_amd64.deb

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

iEYEARECAAYFAlIAG2YACgkQAukwV0RN2VAMWQCfYOPBaghLvjVwM6MRnCAOKo03
DTcAnilE3NkPWImNtrtGaSYEky0T22FT
=ofvc
-END PGP SIGNATURE-


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



Accepted ambdec 0.5.1-3 (source amd64)

2013-08-05 Thread Jaromír Mikeš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 23:37:58 +0200
Source: ambdec
Binary: ambdec
Architecture: source amd64
Version: 0.5.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description: 
 ambdec - Ambisonic decoder for first and second order
Closes: 715631
Changes: 
 ambdec (0.5.1-3) unstable; urgency=low
 .
   * Set dependency on libclxclient 3.9.0 to fix a crash. (Closes: #715631)
   * Update copyright file.
   * Removed DMUA.
   * Bump standards.
   * Set dh/compat 9.
   * Fix VCS canonical URLs.
   * Tune gitignore file to handle rather dir.
   * Don't sign tags.
Checksums-Sha1: 
 eef2e038e216c0051ed799931f07bba5b051dc01 2081 ambdec_0.5.1-3.dsc
 85179f8fe0eadc969299a65e055c1ec9aa04d760 4755 ambdec_0.5.1-3.debian.tar.gz
 508f827f1d9cdaa725a5727850127ad1d336d575 77422 ambdec_0.5.1-3_amd64.deb
Checksums-Sha256: 
 9db6a9af8acaccd84f69bebf9774e874c368e247080303f24f638f9ebc0e1989 2081 
ambdec_0.5.1-3.dsc
 653d1a2d347d298609c5903eaa92535477b4f5b2ac939006b472e186ad146194 4755 
ambdec_0.5.1-3.debian.tar.gz
 c166d2399b40427d634fd8230cb8615289f795636bcaf4b2c46f74523ddd459e 77422 
ambdec_0.5.1-3_amd64.deb
Files: 
 157532b27ce69f852fa9ea362f5bc65f 2081 sound optional ambdec_0.5.1-3.dsc
 a47dacd155e4d6a06b9b5374f469c708 4755 sound optional 
ambdec_0.5.1-3.debian.tar.gz
 893cdf237f1452fced28b61a7b037e0e 77422 sound optional ambdec_0.5.1-3_amd64.deb

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

iQIcBAEBAgAGBQJSACBFAAoJEFsBlFXiuE+lVggP+wfHDx5qIC4Esoy8bkt+vBeD
F5ywXxzS1yBKvCC+3YZdhOwGbpclbcFG6ql6zuovFpMvmmpjltZUtl+biBMfPSTJ
yQkKRQU+/xCBV9CdGsAziYJEHcqaU9eQbz1UWMQGc111Sc/IDYamoFKT5HCBCdoH
LVLCPNs2ZNNQkP1037E1dtaPtXWgXw5wl6hqPKhe41+TeFSwXC/2T2OrloSFQyz4
NSYO2CgleHVjPqxq21Coa91f8wWsVNScSbr+Ploqd42n9yztMlDSdFvcUF12ihY1
5MlntMisiCg7IyT6ea6O2uyiZISo1b+TsvljLnSjVrfJFq2DPIM5EVHiRH4eI3aK
NMdgyu1YB5chzQwVgiiXMdmyq2pbU9jXwaoZmyslo7xLaKSNcL/trEsL55K245c+
jgcV6H95BnqftO0hm6rnQChOQ8qmSX2k6CVXXZJ2K7Rr/vrslVI6XQa8/dDcDdW2
cVmas7tCy/euj0psu6LMjsKwr+75Bjg49m6qktk0y70LMWQpLm5haUxV/hxnzMcn
kvfCGa13n5/AL9k+uKD9q1b2Wc+WglXG2eCRAQitedWdKio5nLy+JgMzNAmI//9K
3EluBITGjdMv06sjERTBU+KhT9GILgOOhlkmVHUp54SqR0QcqGj9ntb2c41+XziV
cQaXJ2LNFAFCQZntgL5f
=d6mf
-END PGP SIGNATURE-


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



Accepted evolution 3.8.4-1 (source all amd64)

2013-08-05 Thread Laurent Bigonville
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 06 Aug 2013 00:02:42 +0200
Source: evolution
Binary: evolution libevolution evolution-common evolution-dev evolution-dbg 
evolution-plugins evolution-plugins-experimental
Architecture: source all amd64
Version: 3.8.4-1
Distribution: experimental
Urgency: low
Maintainer: Debian Evolution Maintainers 
pkg-evolution-maintain...@lists.alioth.debian.org
Changed-By: Laurent Bigonville bi...@debian.org
Description: 
 evolution  - groupware suite with mail client and organizer
 evolution-common - architecture independent files for Evolution
 evolution-dbg - debugging symbols for Evolution
 evolution-dev - development library files for Evolution
 evolution-plugins - standard plugins for Evolution
 evolution-plugins-experimental - experimental plugins for Evolution
 libevolution - evolution libraries
Changes: 
 evolution (3.8.4-1) experimental; urgency=low
 .
   [ Jeremy Bicha ]
   * New upstream release
 .
   [ Laurent Bigonville ]
   * debian/control:
 - Bump Standards-Version to 3.9.4 (no further changes)
 - Drop obsolete Dm-Upload-Allowed field
 - Use canonical URL for Vcs-Svn field
 - Add myself to the Uploaders list
   * debian/rules:
 - Pass --as-needed to dh_autoreconf
Checksums-Sha1: 
 c840f385daa338f488ca36fb6ad887403cbf0307 3594 evolution_3.8.4-1.dsc
 14dc0fe3bf2b15b5d4a2ffb4cf13e7616adfa812 12324844 evolution_3.8.4.orig.tar.xz
 fe0187c6d18858012aee103978ac2b8ec25d4004 51832 evolution_3.8.4-1.debian.tar.gz
 ae49e75f4ccc55102f5df0a9ea4e397cbc2346c3 7615230 
evolution-common_3.8.4-1_all.deb
 01876a6af6ee14a4800d5a679a8441b5529883f1 238182 evolution_3.8.4-1_amd64.deb
 8937387218fab355f21db96d93a99f3a8b47f5b1 2097270 libevolution_3.8.4-1_amd64.deb
 cbde804089ef0acf9d4ba05ebe63bdb5c01a6a78 655650 evolution-dev_3.8.4-1_amd64.deb
 a92e3dbe3ed4d685317c9e83d3545e9365919a94 10559806 
evolution-dbg_3.8.4-1_amd64.deb
 734350821a9262a7d30efd845712e8df1decea70 261798 
evolution-plugins_3.8.4-1_amd64.deb
 0652e2c414aacaf7c49d6ef38688a068be9952c6 187544 
evolution-plugins-experimental_3.8.4-1_amd64.deb
Checksums-Sha256: 
 cc6f881b1e04dd0716bca8a08f5dcb57d74eb24b389d3a54964d72a2f4b5a801 3594 
evolution_3.8.4-1.dsc
 d5cfd0cb68ed8bf6e9515a5a44f566e3d26d3813a22ee6e5b0f86029039b1766 12324844 
evolution_3.8.4.orig.tar.xz
 5d42ab6985390a91e5ab3b87912378e70ab310d10f1ad1f492887d09de21f945 51832 
evolution_3.8.4-1.debian.tar.gz
 3be96f8082bde8fb52a88d4b30043dd9188fa23a1ed74de2d50298594b259c61 7615230 
evolution-common_3.8.4-1_all.deb
 c0db0dce24ad26232cbdf581e9970bd3a9052886cb249b139a6b8bd278a7bed9 238182 
evolution_3.8.4-1_amd64.deb
 89b58c2b43fe67a63504e561d379bdd704ebd87ae47a9c56f26339543db3f5ab 2097270 
libevolution_3.8.4-1_amd64.deb
 805efa61e0e7c211d79d8ef64767c07ec436c71e36819323a99c0297adc736ac 655650 
evolution-dev_3.8.4-1_amd64.deb
 9218d33730c4bdda67fbc7994b2925c391cd4b7aa844f9fb703fa1b1992138db 10559806 
evolution-dbg_3.8.4-1_amd64.deb
 a85514c3e2796135fccebb03d5af3bfdfbe668dcb0d646ad74b979468801c52b 261798 
evolution-plugins_3.8.4-1_amd64.deb
 56670e1ad64a75202bfd49bc60b62f150846888a5a70e03182d778f605dedd7a 187544 
evolution-plugins-experimental_3.8.4-1_amd64.deb
Files: 
 2542ffafdd658657dd4bb5b1aa89611b 3594 gnome optional evolution_3.8.4-1.dsc
 a2fa3270da291fbc54573d3778b74e93 12324844 gnome optional 
evolution_3.8.4.orig.tar.xz
 47b6f2a45a80880f66d4e5169501a20d 51832 gnome optional 
evolution_3.8.4-1.debian.tar.gz
 60ba3836436c456c6004f3b90876f9c2 7615230 gnome optional 
evolution-common_3.8.4-1_all.deb
 e0b30af8946635f4032b9cecd45a1bcf 238182 gnome optional 
evolution_3.8.4-1_amd64.deb
 f64a3b8b7ff3eb4c74a956cbc3e04cbc 2097270 gnome optional 
libevolution_3.8.4-1_amd64.deb
 ae20cd3fede916b907da5b9595c39d4f 655650 devel optional 
evolution-dev_3.8.4-1_amd64.deb
 e1ad75f3b21e13ee0fdb32572faeb649 10559806 debug extra 
evolution-dbg_3.8.4-1_amd64.deb
 dae94d8c991fbffc47d027e76d73ef1b 261798 gnome optional 
evolution-plugins_3.8.4-1_amd64.deb
 4f62c06034ee60d05950556a44c36f2a 187544 gnome optional 
evolution-plugins-experimental_3.8.4-1_amd64.deb

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

iQEcBAEBCAAGBQJSACVCAAoJEB/FiR66sEPVz80H/1NSE81SFfovV/sD/Ca3SzTv
r/wb/rkOdEXUXamoAV/aG8WxqnYGMYLH3qr2Giu8sSg5EcStO+NBJC0Arz9CDDIL
iLsUPMbv57wZ4K+WmeRNQZSYIxiAoD53WWbjuXXENOVWmJqtn5iVLT//Qyf20PeA
9KnG28auIdExTGEmbFBfrpcrvmMJaDtcdRFGCLo3UERCxqMsiLOcNfzAWTnBBlCm
4tQ1dyL4lDPyNdtGKZY3ynYlyY4um2bcmqO7DBlOLilI2cZv6JSl243cpOo4Crgf
0hNG9KN70029BKgZhlhHsW+dEuhIe24axTrNAJlASSf5cyEUgvjtHmmuILXKtJs=
=Ewjm
-END PGP SIGNATURE-


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



Accepted libcommons-digester-java 1.8.1-4 (source all)

2013-08-05 Thread Emmanuel Bourg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 23:39:11 +0200
Source: libcommons-digester-java
Binary: libcommons-digester-java libcommons-digester-java-doc
Architecture: source all
Version: 1.8.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Emmanuel Bourg ebo...@apache.org
Description: 
 libcommons-digester-java - Rule based XML Java object mapping tool
 libcommons-digester-java-doc - Rule based XML Java object mapping tool 
(documentation)
Closes: 654052
Changes: 
 libcommons-digester-java (1.8.1-4) unstable; urgency=low
 .
   * debian/control:
 - Use canonical URLs for the Vcs-* fields
 - Removed Michael Koch from the uploaders (Closes: #654052)
 - Updated Standards-Version to 3.9.4 (no changes)
   * debian/rules:
 - Install the upstream changelog
 - Improved the clean target
   * debian/watch: Updated to check archive.apache.org
Checksums-Sha1: 
 2af78e40eaf24c24e7515880a39f6125c056ada6 2385 
libcommons-digester-java_1.8.1-4.dsc
 845cf8c124929ffa4814435ecd2a5df79df07415 5327 
libcommons-digester-java_1.8.1-4.debian.tar.gz
 28e68ffe8f6c6f872ae9a5aa6a198e5173ff6186 168772 
libcommons-digester-java_1.8.1-4_all.deb
 9fd1c6e467ae0f59a88dfed1164ea7766709ddd1 148736 
libcommons-digester-java-doc_1.8.1-4_all.deb
Checksums-Sha256: 
 9b3606b3c408fae25ef302d92744f9410733b74a743806d844324455896d4a91 2385 
libcommons-digester-java_1.8.1-4.dsc
 0dfaf07455c8451f892faa5afe81abd517c21cfdf96e1f3bf3bc81970b68a515 5327 
libcommons-digester-java_1.8.1-4.debian.tar.gz
 e0a93428a8f1e52ccdb6cc1817b19cc2417d55049a8275277b26b9d07a7b9773 168772 
libcommons-digester-java_1.8.1-4_all.deb
 8b89a03563d5e64e9fbb02f7b5ddb18e66a5d6df00ca995f10ee72041f1bd650 148736 
libcommons-digester-java-doc_1.8.1-4_all.deb
Files: 
 e69a975642be040c60069f754333f01d 2385 java optional 
libcommons-digester-java_1.8.1-4.dsc
 6a11b3fd34e4057a3cda51bce1666a7f 5327 java optional 
libcommons-digester-java_1.8.1-4.debian.tar.gz
 29a9fb330973de2d9dd25ce606d0068c 168772 java optional 
libcommons-digester-java_1.8.1-4_all.deb
 de6d14bfc3dca5af06a6f220f71596ae 148736 doc optional 
libcommons-digester-java-doc_1.8.1-4_all.deb

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

iQIcBAEBAgAGBQJSACdmAAoJEPUTxBnkudCsgTEQAK94YcP2UOOsqxNkXrZP+Fxi
bP5y4Ayi7nbu8wprilZpSmhSu7r+QNrM28z6sBK06acplXd9u0CYSEOao1F6cxfd
RrFsJ8kfyXJELSshB9e4MlI6O27gnTuI3ydFDfgHhyjxzC2GSHExOHQjtesgLrWX
LIN4Uv64LzdsKrBo+lKqKqIVfVQRnnpCCrGnuN8uXY8f1PNcnDWL8HmiGQB3AFVE
65EDQT9dYNONiW9aWt1yDx/Jb1ceU56h1PHro+Rdrhx6nOy+jZ1qlmAeWZGu8dDc
OYaBWX9R6F5sTzAV7p8EO8+J1AK4naI1PvNeyI7QQgeSV8kajbOWxonE2v/PZF10
zM0TiYe38awyxabAfr3NoyIqgvyFMG04UYj7G5OdYobgfHX3pD9AvQUowYuwSOOY
+TTKIwmNYcEe6ZSwXT/pWWjX3kUopdN5YVETsZxkveABS34jwv/hQKnTP7waQFMJ
/YfOFz4SZXCrpv0x+rumF8yje9tBRzmV9PmkrrI3KvUWdFjyReRY4AmanlPffz+5
JyEw/j73hKhmihTCdf5CFI54JigLoxCIQlnS/yWJM4l6WMfbVGjYrpayio0gNdM7
8eM67MAz93Mp1n8OLZk4FUt3xlFi/8Ys/NRczrbBsHZRnB+eSXMHVTOokMNVx7c8
sj0vOPlTiis3eCPkOG2v
=393N
-END PGP SIGNATURE-


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



Accepted brp-pacu 2.1.1+git20111020-3 (source amd64)

2013-08-05 Thread Jaromír Mikeš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 06 Aug 2013 00:12:42 +0200
Source: brp-pacu
Binary: brp-pacu brp-pacu-dbg
Architecture: source amd64
Version: 2.1.1+git20111020-3
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description: 
 brp-pacu   - audio analysis tool
 brp-pacu-dbg - audio analysis tool (debug)
Closes: 712878
Changes: 
 brp-pacu (2.1.1+git20111020-3) unstable; urgency=low
 .
   * Removed DMUA.
   * Fix VCS canonical URLs.
   * Don't sign tags.
   * Added local-option file.
   * Fix build-depends on libgtkdatabox-dev. (Closes: #712878)
   * Added Keywords entry to desktop file.
Checksums-Sha1: 
 469c481363ea42dd8a8a2300272eda376cfe992d 2225 brp-pacu_2.1.1+git20111020-3.dsc
 c729713a81770b1d603f377e660256030164aa1f 6070 
brp-pacu_2.1.1+git20111020-3.debian.tar.gz
 6e432f24e8d4a1b938e8ff11c085c8491ee78228 40298 
brp-pacu_2.1.1+git20111020-3_amd64.deb
 60a3e65c6df15ad68249d7b9a42bc8af1e8ccc45 52606 
brp-pacu-dbg_2.1.1+git20111020-3_amd64.deb
Checksums-Sha256: 
 b168df698b8c5ef252a4bb5087c52c91c8dfab19034d650524921b2dcbd6b717 2225 
brp-pacu_2.1.1+git20111020-3.dsc
 223ba06d3e9274eb967b1ffde828e4ceab7997309e2167929b4df7767f8275f2 6070 
brp-pacu_2.1.1+git20111020-3.debian.tar.gz
 1ca26429d40fefb0b46eb44abe7bf525e46380b645a26b83c7a2ec9a4d9b0d35 40298 
brp-pacu_2.1.1+git20111020-3_amd64.deb
 927842b0626f8bcdbe8e1ac9dbedf3e9e24dabd4306e153f958eb16ea770dd4b 52606 
brp-pacu-dbg_2.1.1+git20111020-3_amd64.deb
Files: 
 5835bbb318ba5254938849e69c38d3fa 2225 sound optional 
brp-pacu_2.1.1+git20111020-3.dsc
 3bc79ac56a60dd29a5c390da68825c5a 6070 sound optional 
brp-pacu_2.1.1+git20111020-3.debian.tar.gz
 0e02e6b563251e8e86959773be29ce8a 40298 sound optional 
brp-pacu_2.1.1+git20111020-3_amd64.deb
 5329cd7f81ae676556fcbe4bf53ee1eb 52606 debug extra 
brp-pacu-dbg_2.1.1+git20111020-3_amd64.deb

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

iQIcBAEBAgAGBQJSACv7AAoJEFsBlFXiuE+lTn8P/14v1+VPzLPFQ8EospAxDb8Y
4QDFpxkqhcSZriMfWcgV8gC3RbxSPG0B4Cs14CWXiwhu81HUSItw66vsi0dsdvff
ZmqEB/Pfj7/XoxV0xd7qSsBNJHauuQOlHSauJPzPbsZbSKvwUMU9CXiSUXJKAq5y
/A4HtSSzq0oxFUWswQrFU7JEcZdu9q8wEzXaldRf8hm2k4CR7votv1smUqTbjm6B
9TaOW0KpPMnv7+wBKAzjrzUswY2P3WgvcYN6UrOkwSqX926dWQ0uqNORMHNIVm48
ml/rL+WD6oGzqXD9VGSOU8i+rxycMtB721c+GBHPEyOrR5+9fPCGQFbQ42+5U573
8JF7y0DGXT2ikkuzsLrzrHj+nePQcjxTUonp8RxN9dBp1gbYzazYA0XwjHN+Y+0y
XquLNIH7wunva2+E8194WUdjzEE9Rtoo9SsLi3w4Tb2MK0gIYQBO49gc9iXOK/ZK
U5Qdj573hlJz6pUUU6MpeexWexRyNjTh2PFt3uP9kApR3MoqMlrt0oYkNkrl9pZ9
er81TM6tkO5osgh8+TIXYTeErUinAcfRyGwSVvSf2tWUIc1fPo252PG2HFPzBZzK
k1AnYOsRwUSLXbnOky+o9LwbP5tVRMaqQsvHNw8JmZzppc5dG7BRmG/OMl24aOZG
l900+FzmKpOn5KfYBMA7
=M76R
-END PGP SIGNATURE-


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



Accepted debian-edu-config 1.711 (source all)

2013-08-05 Thread Holger Levsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 06 Aug 2013 00:49:32 +0200
Source: debian-edu-config
Binary: debian-edu-config debian-edu-config-gosa-netgroups
Architecture: source all
Version: 1.711
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: Holger Levsen hol...@debian.org
Description: 
 debian-edu-config - Configuration files for Skolelinux systems
 debian-edu-config-gosa-netgroups - netgroups plugin for GOsa²
Closes: 718484
Changes: 
 debian-edu-config (1.711) unstable; urgency=low
 .
   [ Petter Reinholdtsen ]
   * Remove SystemGroup block from cupsd-debian-edu.conf, as this
 option now is in cups-files.conf and modifying it in our
 cupsd.conf file have no effect (Closes: #718484).  Thanks to Mike
 Gabriel for discovering this.  Also remove all the other options
 now moved to cups-files.conf (AccessLog, DataDir, DocumentRoot,
 ErrorLog, FontPath, PageLog, Printcap, PrintcapFormat,
 RequestRoot, RemoteRoot, ServerBin, ServerRoot, ServerCertificate,
 ServerKey, User, Group and TempDir).
Checksums-Sha1: 
 2087977ee8dbc365cf682bb141f64faaebc02550 2015 debian-edu-config_1.711.dsc
 f5eeac5ba181248116723870816e11e6617759c9 530386 debian-edu-config_1.711.tar.gz
 2e4ef022fab1f5ab885a281ac6f48b91f49a7a9c 361404 debian-edu-config_1.711_all.deb
 0f3ec0c408346c3bcf0c7a8070232f4c7e285300 116612 
debian-edu-config-gosa-netgroups_1.711_all.deb
Checksums-Sha256: 
 76e8b2ff04c8ac79e30b11287c3ea2aeed3f91cc8effdea3da8a389a35805d7b 2015 
debian-edu-config_1.711.dsc
 8fdf110b9aa7f1701a9e288adbf0fa82ff3760284188099fe5341093b56136ad 530386 
debian-edu-config_1.711.tar.gz
 d7a09205ab8f3c0c7c3448ea5bc51e91eec0df33d3eb92344d1fbf12c1987648 361404 
debian-edu-config_1.711_all.deb
 2ea5806da35af750a3c684570b2bcc5b6e67e48a441c8b48dea6345823419489 116612 
debian-edu-config-gosa-netgroups_1.711_all.deb
Files: 
 7bfe8a56b7039dbaecd11a4f95631dc8 2015 misc extra debian-edu-config_1.711.dsc
 a4488e35afa9abad0cb8fc7eacfe4881 530386 misc extra 
debian-edu-config_1.711.tar.gz
 504d52858fcdcf80aed74a89e178727d 361404 misc extra 
debian-edu-config_1.711_all.deb
 7e77b2d043d8413cca60cbc6407d5a11 116612 misc extra 
debian-edu-config-gosa-netgroups_1.711_all.deb

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

iQIVAwUBUgAv0QkauFYGmqocAQgIqhAAnTpTbUJV3/X/keCu9kzRG2l8bUKbRUFU
+tdxaPLmO+US/pv1m0kcKhuhTI59LyXBUYRVABGApAh4df3V+7o8UbXSf4+hfaZr
PscbuxKRwvPSWK+gZ9a6QwqjUZ6ntRruTzMwsxZED23JdgfCv2sfJqCAEEcMsSeB
8Eudq+IxIo0GUx1QbFO60eIKGYGuW8i2FoAI/F2HnX0BP3pt22IoZcJmOVO6jCCb
zPTAzW1Og9OlWyqYGyw8bU6byDPfNbnNswE45wHMHcKano6bt8bUTI8wyw66dYMV
8uy3t8TxBLBj5UPrJksqLhzrBb/bshrwTUN52hBX1E/JQwzCoGM62ccTPvOrHUF2
n5gzN9nNqI+tj74VPZsc23gSmnjeVHmdDGSZHbOG0tjRTZkAtfRXfssk487xE18D
NGZH/sZUoXGNoWMA4Msse7AwtGJhQTJ5gMA0neVmW5a73BYrQnsLjB2X1ul6mhVo
A/FmqSUngg1f2PJN2w7BPjqgS8Eq7PJ2+t1+ADeRyxOTop0z8M2sJu2P6uAOt3t1
AlVyzigL1KNkDcxQZ4fQ60R5aiL4rPlQq3B9r8vlCg6PRNC4Ht4JdvbjbmW/hFsD
apDuZRuOT01XJylKxGzG7nlRho/3dS9UOpoYf5/Z6Tmea0vcEBszu0wZGW+rYFL9
uJn/2q7cXGw=
=F/vi
-END PGP SIGNATURE-


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



Accepted https-everywhere 3.3.1-1 (source all)

2013-08-05 Thread Jérémy Bobbio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 06 Aug 2013 00:39:09 +0200
Source: https-everywhere
Binary: xul-ext-https-everywhere
Architecture: source all
Version: 3.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: Jérémy Bobbio lu...@debian.org
Description: 
 xul-ext-https-everywhere - extension to force the use of HTTPS on many sites
Changes: 
 https-everywhere (3.3.1-1) unstable; urgency=low
 .
   * New upstream release.
   * Update 01-enable-cacert-rules.diff against new upstream version.
Checksums-Sha1: 
 8e233cf739032d111abda1f3b2b47b6853883420 2127 https-everywhere_3.3.1-1.dsc
 615d066d53463c88013fed6fd4dd41ee135d33ca 1017781 
https-everywhere_3.3.1.orig.tar.gz
 e405e681e6cc3919f351c1b5b347d89af7d9acd0 7303 
https-everywhere_3.3.1-1.debian.tar.gz
 ad6bcc8e74b30a8d5427b6d69aa3d8bd07450d04 454946 
xul-ext-https-everywhere_3.3.1-1_all.deb
Checksums-Sha256: 
 ef34b86b2a2d2f3c944c104959282bbee1c378e3bf5e6e0fcf5f684c5165de14 2127 
https-everywhere_3.3.1-1.dsc
 2912ae31845ae4bc9a76ff80df74d102851b7475829662775172cfa94d5525cc 1017781 
https-everywhere_3.3.1.orig.tar.gz
 b81bce2674f644d80698d968b513a2d55943c610a0689fd8a91cdea031c440a1 7303 
https-everywhere_3.3.1-1.debian.tar.gz
 22646facca6faafaf7498f571fc3c5a8ae838efa9952fc5f2f8a029d97637613 454946 
xul-ext-https-everywhere_3.3.1-1_all.deb
Files: 
 0e7c3c2114c918c3e694ca87e01645c2 2127 web optional https-everywhere_3.3.1-1.dsc
 079a8a900f4ac0060d7b68d06742656a 1017781 web optional 
https-everywhere_3.3.1.orig.tar.gz
 4280797d47d692ad0f008075d3d343e7 7303 web optional 
https-everywhere_3.3.1-1.debian.tar.gz
 083d23f384a733c0797ab5e5caad335c 454946 web optional 
xul-ext-https-everywhere_3.3.1-1_all.deb

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

iQIcBAEBCAAGBQJSADD4AAoJEEgU3sIrMHw8xJIP/jVuj6y9uX8OZUYGwikIsKA2
yU2T3j2OyFojiZslK9QXG8jGuBsqUo21g2ZywbocJdD712/7Cu4CPmqKx6YXvoLc
va5q2ccwGT9ZD/aWYTkqEK77ZByCOdyo0WJmulsUEJfpGPSPb/nTKrMuvJx+9rGB
xFArb83XWRNViFpplZlUOnq8c4WcV49EoqelJoBymD5uMDYS/rr3gYivD5a1DZqF
w3zBUkjC1jxchF15qVMCvVycsdpQ0KCwQ6u9pn+lNHN2Orc5Rn47fbgJ1eeKOe9K
oNhZ2pPaTLbbhtcq5NxLs1tRityl/xn6sWhq5RFUMDQa9t9uRgHcrhwxwRDhVtj3
BVtH1EkleL+UR/6lsws4cd9V9v5v5Ornry9eGYDonAMlGt05XGOhQAscP5kR99Ya
hxo2KLsxqpPlxmDACT8/Z2IR4ReLKN7xT6gf8+yQh5Syw4f0roRund5IIkQC4LJC
my2Ez256EZ3qBdkk26unxu5e6mTWPaL+FAYN882y5vIul/+rgDaV5+a8jOuvVnv8
R/r0/sDMa8ijvT4UzeX9fVKF3LrRX0uwoE6Cq30exsgwmlQlrfNdi78g8RNvMgri
uRWx8Pf6768ua2F99cIpHWcKUUBoADwzVE5rqAEt8VJiX5mmciGNQFFm1+PKi9sb
65f5EGUoBbF1rXaol32S
=TT90
-END PGP SIGNATURE-


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



Accepted debian-edu 1.712 (source amd64)

2013-08-05 Thread Holger Levsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 06 Aug 2013 00:48:06 +0200
Source: debian-edu
Binary: education-tasks education-menus education-astronomy education-chemistry 
education-common education-desktop-gnome education-desktop-kde 
education-desktop-lxde education-desktop-other education-desktop-sugar 
education-desktop-xfce education-development education-electronics 
education-geography education-graphics education-language education-laptop 
education-logic-games education-main-server education-mathematics 
education-misc education-music education-networked education-physics 
education-services education-standalone education-thin-client 
education-thin-client-server education-workstation
Architecture: source amd64
Version: 1.712
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: Holger Levsen hol...@debian.org
Description: 
 education-astronomy - Debian Edu astronomy related applications
 education-chemistry - Debian Edu chemistry related applications
 education-common - Debian Edu common packages
 education-desktop-gnome - Debian Edu GNOME desktop applications
 education-desktop-kde - Debian Edu KDE desktop applications
 education-desktop-lxde - Debian Edu LXDE desktop applications
 education-desktop-other - Debian Edu non-GNOME- and non-KDE-specific desktop 
applications
 education-desktop-sugar - Debian Edu sugar desktop environment
 education-desktop-xfce - Debian Edu Xfce desktop applications
 education-development - Debian Edu software development related educational 
applications
 education-electronics - Debian Edu electronics related applications
 education-geography - Debian Edu applications for geography
 education-graphics - Debian Edu graphics related applications
 education-language - Debian Edu language related educational applications
 education-laptop - Debian Edu laptop packages
 education-logic-games - Debian Edu logic games
 education-main-server - Debian Edu main server packages
 education-mathematics - Debian Edu mathematical applications
 education-menus - Debian Edu menu reorganization
 education-misc - Debian Edu miscellaneous applications for education
 education-music - Debian Edu music and sound applications
 education-networked - Debian Edu networked minimal packages
 education-physics - Debian Edu physics related applications
 education-services - Debian Edu services for educational institutions
 education-standalone - Debian Edu standalone workstation packages
 education-tasks - Debian Edu tasks for tasksel
 education-thin-client - Debian Edu networked thin client packages
 education-thin-client-server - Debian Edu networked thin client server packages
 education-workstation - Debian Edu networked workstation packages
Changes: 
 debian-edu (1.712) unstable; urgency=low
 .
   [ Holger Levsen ]
   * Really remove Werner from uploaders - thanks again, Werner!
   * Use canonical Vcs-fields: in debian/control.
 .
   [ Petter Reinholdtsen ]
   * Recommend ksshaskpass in the desktop-kde task, ssh-askpass-gnome
 in the desktop-gnome task and ssh-askpass in the desktop-lxde and
 desktop-xfce tasks, to make sure ssh login work also for GUI
 users.
   * Make a note in the roaming-workstation task that the dependency on
 libpam-cracklib should be removed in jessie.
   * Recommend command-not-found in the common task, to make it easier
 for new command line users find the packages they need to install
 to get the program they want to run.
   * Allow xfce4-terminal on the ISOs to make sure desktop=xfce
 installs work with the USB stick ISO.  Thanks to Wolfgang Schweer
 for discovering the problem.
 .
   [ Wolfgang Schweer ]
   * Replace tftp with tftp-hpa in the thin-client-server task to get
 tftp-hpa contained in the USB iso file. (See bug #718727)
Checksums-Sha1: 
 5945aeede39fc0f2fdd86259a74ae6d843c5db9c 3723 debian-edu_1.712.dsc
 20556a92300d475d27b9d677d29b3e5fe5ba7585 137830 debian-edu_1.712.tar.gz
 344a36deb8f809adf5b6fcf4e604fdcc8539 49122 education-tasks_1.712_amd64.deb
 6fd14f9596619511293387220cdeeec659a1808a 81014 education-menus_1.712_amd64.deb
 21b8390ed8012ada6a20949bae20d08772aabc95 46548 
education-astronomy_1.712_amd64.deb
 c2fb569485616c6addc14c35cd6a599a1bb48644 46530 
education-chemistry_1.712_amd64.deb
 9f27749738f4d26eb46ab3536ebef81716b0d390 47126 education-common_1.712_amd64.deb
 86e5a2a0fbd4069fc173dbadf8fdf4cc4ea61ebb 46732 
education-desktop-gnome_1.712_amd64.deb
 1cb5b9ca42bc199f88443b276ea3c6693f7dbb70 47020 
education-desktop-kde_1.712_amd64.deb
 07edf8dc1006c900907a7212432fdd164157a9bc 46706 
education-desktop-lxde_1.712_amd64.deb
 64797d2dfcb89d7a676d37159477b2e719cc4fa5 48246 
education-desktop-other_1.712_amd64.deb
 b8d4afde68cd5597d97cf1318bc175d71bc21848 46858 
education-desktop-sugar_1.712_amd64.deb
 2e63ff6637c5ab02550bc362ded1c6c1431f0e5a 46576 
education-desktop-xfce_1.712_amd64.deb
 

Accepted dh-rebar 0.0.2 (source all)

2013-08-05 Thread Nobuhiro Iwamatsu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 06 Aug 2013 08:32:18 +0900
Source: dh-rebar
Binary: dh-rebar
Architecture: source all
Version: 0.0.2
Distribution: unstable
Urgency: low
Maintainer: Nobuhiro Iwamatsu iwama...@debian.org
Changed-By: Nobuhiro Iwamatsu iwama...@debian.org
Description: 
 dh-rebar   - helper tools for maintaining Erlang package which is using rebar
Changes: 
 dh-rebar (0.0.2) unstable; urgency=low
 .
   * Fix Vcs-Git and Vcs-Browser field.
   * Change the turn of rebar_compile.
Checksums-Sha1: 
 236b310e141ae2ba4a308f70ccf8feee1e03c50d 1537 dh-rebar_0.0.2.dsc
 1e21a394e95a2cfb2f1407a3f7244f8cf093b783 4690 dh-rebar_0.0.2.tar.gz
 06da248aebbc86f1e3e2ba97b9a72444d30589dc 6980 dh-rebar_0.0.2_all.deb
Checksums-Sha256: 
 1931717dce0ef0a634b7045f5711598c17b2f4a60a5719ab6aa80d5f9712f689 1537 
dh-rebar_0.0.2.dsc
 1f6ee77458ae11d6bfff906eb59409b62df6fe9d9ed1b974738a8ad4be7e9f7d 4690 
dh-rebar_0.0.2.tar.gz
 ce2b7434cfbb91c2e3b0cfca53c1dc9d9bf7b48403d7b3fb57284e7f0d3ce23c 6980 
dh-rebar_0.0.2_all.deb
Files: 
 e487f5c2da422e98ed051d0526df61f0 1537 devel optional dh-rebar_0.0.2.dsc
 6d558b24752ce64e452a9505889fd75a 4690 devel optional dh-rebar_0.0.2.tar.gz
 8ca74f18a62763ea75c27c713a0bc1be 6980 devel optional dh-rebar_0.0.2_all.deb

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

iQIcBAEBCAAGBQJSADdVAAoJEDIkf7tArR+mmTcQAIK1bza7GHKIswdm9iO1kY/F
w0h/oqsTP9kJsLjkyDpXqHNPxit+DRzdgxwS2V0HKwQcgFpvx3hmUXWhgibl2yDr
MmbID4GNFq3pJ5mTYwdT19V+Qh2ewsuHqlrutb5pYZL7KzllgR6O6aQAF5XEoFiq
t1wfVempwm6FMry9IhS8CP73f1tepgSjHDHQIXl0s7UVzYzeqcKdvSS+RQSkDjlv
8Hzw3zdEcFOjnqcT9mBxIQxIN/ZrBoXZ/jfsMJmQ9Qqqg43flo418VB/sk4cDIRc
hTmniyNXHK1i4FBsVW21ZFMByXBdKo71ISNqY5d+RrPGdMWInfdXdWsxaah6zc8P
ktxhQWCBPQlkR7dA7uUm2lnhYAQ9txUv/bhb+QFq6llDyriMWcWY4UVlmMTTFMHH
4OKf6cAzssBccZq3dRirZl2+skWL/PUalaUJaFUA3FYISbK6F2thyEn9uTI0mk4l
Yy9nft37tACXjpRLXBaw78FaHIa9dgiwYfMn/XNf4QfoIYy40BgEMfOJLaEUFMpI
FC7flsnYHzB/U6T/CB3ovKAlBQgwDW4abQJTI3c6ppjpQWooluNdNjZssYFKPnTj
erT99t6KKhA+T45CHsz2w+ogrt/NJQOPhphMvyJ5tdZFa0nCKvfasTL4TEaIj2w0
Gr0XASX9kpKY4My4OsDk
=oCNi
-END PGP SIGNATURE-


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



Accepted joblib 0.7.1-1 (source all)

2013-08-05 Thread Yaroslav Halchenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 12:47:58 -0400
Source: joblib
Binary: python-joblib
Architecture: source all
Version: 0.7.1-1
Distribution: unstable
Urgency: low
Maintainer: Yaroslav Halchenko deb...@onerussian.com
Changed-By: Yaroslav Halchenko deb...@onerussian.com
Description: 
 python-joblib - tools to provide lightweight pipelining in Python
Changes: 
 joblib (0.7.1-1) unstable; urgency=low
 .
   * New upstream release
   * debian/control
 - boost X-Python-Version to =2.6 (for squeeze backport builds)
 - rename XS-Vcs-* to Vcs-*
Checksums-Sha1: 
 9af8f76ddd2e934914b0f290e5ddcf308a548d4d 1272 joblib_0.7.1-1.dsc
 8eb502d25c9155725d139674c097d14b399622f8 70920 joblib_0.7.1.orig.tar.gz
 d50b16f30745f6bed6e6ad95046963b2292aedc2 4684 joblib_0.7.1-1.debian.tar.gz
 1c9952a962414322fe98b096516e7e47a0ce1548 47006 python-joblib_0.7.1-1_all.deb
Checksums-Sha256: 
 b63d171c589d30532c7640b4c255e1f45eb512b66fc09626bfcb97ee919a545e 1272 
joblib_0.7.1-1.dsc
 d3be25e1609587bf1acec90fdebab5f34edafc940362fdff1d1ba7e5fce78ed0 70920 
joblib_0.7.1.orig.tar.gz
 27fc9ef070713f480351c30591663d65154ac284f5613d3ae4d96e9881a2072a 4684 
joblib_0.7.1-1.debian.tar.gz
 5196358a0ed2b91981924f65fb0fb2b0e44bee4ed3422b63945722ac9612b18b 47006 
python-joblib_0.7.1-1_all.deb
Files: 
 3e07383ef37c1d3df30c998d8b9b05ec 1272 python optional joblib_0.7.1-1.dsc
 19e63d8e48b7452aaba87467708e1f40 70920 python optional joblib_0.7.1.orig.tar.gz
 adca2d6b6831574a1d69b3fecb09b565 4684 python optional 
joblib_0.7.1-1.debian.tar.gz
 7c0f0890e6ff6a57408089f051083a6b 47006 python optional 
python-joblib_0.7.1-1_all.deb

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

iEYEARECAAYFAlIAOQYACgkQjRFFY3XAJMhAJQCgk0IC+bKh31L2W0v9iIQE/j7T
cdwAnjSkbySpEXk96awfNQOXfztHvNPZ
=2elW
-END PGP SIGNATURE-


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



Accepted haskell-yesod-default 1.2.0-1 (source all amd64)

2013-08-05 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Aug 2013 19:55:53 -0400
Source: haskell-yesod-default
Binary: libghc-yesod-default-dev libghc-yesod-default-prof 
libghc-yesod-default-doc
Architecture: source all amd64
Version: 1.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-yesod-default-dev - default config and main functions for your Yesod 
application
 libghc-yesod-default-doc - default config and main functions for your Yesod 
application; doc
 libghc-yesod-default-prof - default config/main functions for your Yesod 
application; profili
Changes: 
 haskell-yesod-default (1.2.0-1) unstable; urgency=low
 .
   * New (deprecated) upstream version.
Checksums-Sha1: 
 fd3e9104c4cdfac9d6d57a1d5725703a37617a42 2373 haskell-yesod-default_1.2.0-1.dsc
 702188a3be704430d1a3b2cfb223c3100b9c0c52 1397 
haskell-yesod-default_1.2.0.orig.tar.gz
 16bbf7031bfea4cd895c3b01b9aa0d15bcacb036 2269 
haskell-yesod-default_1.2.0-1.debian.tar.gz
 cb8ad978a4286478a08db1c958187cc67df4bb99 27112 
libghc-yesod-default-doc_1.2.0-1_all.deb
 130933b5b42da0380b09499aaf76ba5a8a4056b4 8180 
libghc-yesod-default-dev_1.2.0-1_amd64.deb
 077543fc8e9aa479a9a6204096934f0a1ac0cf47 7808 
libghc-yesod-default-prof_1.2.0-1_amd64.deb
Checksums-Sha256: 
 cdf265d8e69655eec72280e5d40ea9e024cd0aadaf753fefa463de3545f1993b 2373 
haskell-yesod-default_1.2.0-1.dsc
 f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96 1397 
haskell-yesod-default_1.2.0.orig.tar.gz
 1bf05baf48f10a95c4c6cf735e552baacc7bb20f3f3edd55c0f5c957374b5f01 2269 
haskell-yesod-default_1.2.0-1.debian.tar.gz
 ec1a2fd9a8e5fd4e6fabcea8705302dd72f651bac2f3da6f92b25126ad45355a 27112 
libghc-yesod-default-doc_1.2.0-1_all.deb
 b6ea9a566145df0bc08237e8a9f7dc99cf7a116d137c3ec9f62e54d023457023 8180 
libghc-yesod-default-dev_1.2.0-1_amd64.deb
 2ee591e462087b30166087a63ef728deb3f38262462046b29829fdc99669b3dc 7808 
libghc-yesod-default-prof_1.2.0-1_amd64.deb
Files: 
 32405980b176888ad08fb631db1fd72d 2373 haskell extra 
haskell-yesod-default_1.2.0-1.dsc
 bc9779176812b2a4e466801108c02a21 1397 haskell extra 
haskell-yesod-default_1.2.0.orig.tar.gz
 d771a9e784d9c01a491ec15bb2b5f4a1 2269 haskell extra 
haskell-yesod-default_1.2.0-1.debian.tar.gz
 1d7d5650326e0259f886d91e620c8423 27112 doc extra 
libghc-yesod-default-doc_1.2.0-1_all.deb
 5a637120622c3addd08056a051218398 8180 haskell extra 
libghc-yesod-default-dev_1.2.0-1_amd64.deb
 46b9ed516c6de1b49b0e603ad463327f 7808 haskell extra 
libghc-yesod-default-prof_1.2.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.14 (GNU/Linux)
Comment: Debian!

iQIcBAEBCgAGBQJSAD2zAAoJEFWSMx4ZnTionFwP/2XRAnRholp5xtCM1Y5TaBpy
b9aTIhfjm/cpsz4LOmffH4W+LyJzOsC68Q634Ca6UHO14tyb5qFL2WNG1QxgrtxN
qUBKLASmqDqRafobEFxmYToyryUYlKPWn+NitHIILNi5DxchhwFSTz9qKi38DO/B
gy21CTDl16hgN/uBWJ0IUNJacZVf/h8mob6c5LJLbNoCJY+pF/NpOA85v+vf6rUr
RuhMC5PCMvPEwd+hyjPMK7+hYe38sr/tpzZL5YdV8gz29kBxSQMS+GOVt699H7cI
yb1+4A9RmDaVgJFmIXrZErgkATc48kXV0BFWy9MO9gEcCyDBFUx9kRQ8mAISvTYc
nWoUxZrFhc6b06HbYqWN8EWY/ideeCuqVoXpaCYeraOmYrXu8J0UmA5BOTZuCT+T
Ko3pThM0jqdb+0oTufX903dptyLUNbFp68TsRjS8Flgw6/UJ/W30OvT3SwQSOcCY
kmrZoktXP4e08phKSHNspV97uPG3GwHbapd0GzRTOtf7/QUz3qMB4NUvo5ECxeBq
hTd5E0J5kMohRroQVZIc+uKiqtzvN1BTy0ZhbCCUmIoXrUGE9t30fbqT4ZAYzpjU
Ysi13zdVjFFREuFOq1E02s/ZRQI6roFHIJg04eOTe/4e/kXHKaG0e5K7LWBWVfyW
zay0/YI7i2IiBdDaxCfu
=VRkU
-END PGP SIGNATURE-


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



Accepted goldencheetah 3.0-2 (source amd64)

2013-08-05 Thread KURASHIKI Satoru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 01 Aug 2013 08:45:55 +0900
Source: goldencheetah
Binary: goldencheetah
Architecture: source amd64
Version: 3.0-2
Distribution: unstable
Urgency: low
Maintainer: KURASHIKI Satoru lur...@gmail.com
Changed-By: KURASHIKI Satoru lur...@gmail.com
Description: 
 goldencheetah - set of analysis tools for cycling performance
Closes: 711723 718371
Changes: 
 goldencheetah (3.0-2) unstable; urgency=low
 .
   * debian/watch: switch from githubredir. (Closes: #711723)
   * fix build with clucene 2.x: set multiarch include dir and use
 -lclucene-core instead of -lclucene. (Closes: #718371)
 (patch from Rene Engelhard r...@debian.org)
   * boost1.54 transition.
Checksums-Sha1: 
 d44fe867505719ef530c2c87b434f5f2d3a690dc 2335 goldencheetah_3.0-2.dsc
 559b53852ca1b96e6b05a95df609774a6e4c1d37 15183 
goldencheetah_3.0-2.debian.tar.gz
 d66710a5b1788f9f9dba5696a8ddc4497726232d 9102804 goldencheetah_3.0-2_amd64.deb
Checksums-Sha256: 
 fe391a2c07ac667891a04d55a562e4811123184903a8cac97ee749b997eeca8e 2335 
goldencheetah_3.0-2.dsc
 b204bb01ae524eaae42e38737700acc716861c8f8b47bf9f0ea4bc61cfdd252c 15183 
goldencheetah_3.0-2.debian.tar.gz
 3e3d1dbb7939ea4b87ecb68c2ba42a950fb379feb5ddc7b458769962d6234faf 9102804 
goldencheetah_3.0-2_amd64.deb
Files: 
 c569cf1a992f809bc7fe1daf665643fd 2335 misc optional goldencheetah_3.0-2.dsc
 8aa999d45cd70d06c77722a41c406f9f 15183 misc optional 
goldencheetah_3.0-2.debian.tar.gz
 5235318983f8ab9a4e83f86121b55162 9102804 misc optional 
goldencheetah_3.0-2_amd64.deb

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

iQIcBAEBCAAGBQJSAD1AAAoJENJ93hFAovETEkoQAMOvdXlt9I1wnmydomByq7YN
RIsmIznz3UcCK1U9Q91wPzqgXF0/U/Cc2FSwuC0Nyz0RP7eEmL4kSpgzRPgmqYzr
GS6DjV652fACIVsQoysn/s4FMyoAXVrtmUpqIm9ZrO2vKvyivKvLvTgLBtnNWrH9
gGI98gbByAfPjslxAyxAxELkXNRptRrIKGMneXgHedaG9ctep0evclOgh1ceqN1g
VB201OU3IhihqlimbUf8ohLZBb5UHSwvmkaA+ZBHVPYFRew1oixy5q7YZUxyZQED
WaDu47XVSS3NgajthchSpaZQR6kVpx9depjhAORWSr6qdqp/Sn1RovQxwTis+naw
cfJ9eroqPJk8XclEX3vRgUeYWiN06nzN7YCqnHJ4f+HjEy3pbKlm7ZMJ2OjLoKF4
+nP2YcYFFo8wvj0asyp6XsykO6vwB0fb8DHj3OhIqlHoTemdSVxvCd2Z/4ukCwsK
Pl+0856QqBGZqqyw84ymkUWDJF1zOYYBWpaFDM4H1bpwAtZrzSDHLndUHwmATodI
ojeWvwhRpN3dgXMDCRa7sL5ZXK+CgoEPlQV9i45CHrfOYPNaBl1TppCg8NEopivM
w9e08mF9QDpp0tvVvWhm2scR3Xnr2swk1G4jrvJkrq7lqueomtSAKaxxOTn4z/FW
hwV5Z8N/qkS6U1qy3LGF
=CuBV
-END PGP SIGNATURE-


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



Accepted texinfo-doc-nonfree 5.1-3 (source all)

2013-08-05 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 06 Aug 2013 10:08:45 +0900
Source: texinfo-doc-nonfree
Binary: texinfo-doc-nonfree
Architecture: source all
Version: 5.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian TeX maintainers debian-tex-ma...@lists.debian.org
Changed-By: Norbert Preining prein...@debian.org
Description: 
 texinfo-doc-nonfree - texinfo and info documentation that is non-free
Closes: 718824
Changes: 
 texinfo-doc-nonfree (5.1-3) unstable; urgency=low
 .
   * add dummy prerm script to avoid upgrade failures (Closes: #718824)
 (thanks to Andreas Beckmann)
   * bump standards version, no changes necessary
   * add vcs information to debian/control
Checksums-Sha1: 
 7e941a667d3cdc38c6de706c58859cc3ab3a12ab 1379 texinfo-doc-nonfree_5.1-3.dsc
 bad6313a26a5ec8f7cbf425078cdd48da35dc03a 2479 
texinfo-doc-nonfree_5.1-3.debian.tar.gz
 1043a7f2aca78e6567a0adb23b26baa9f7cad762 633238 
texinfo-doc-nonfree_5.1-3_all.deb
Checksums-Sha256: 
 5d4cd1b5dce435da35169d7403589b7230693758a59564c1f163f8b8545febfd 1379 
texinfo-doc-nonfree_5.1-3.dsc
 9e835dd8975155e90f2255bba59a63d15514c9e087cf3c9428601788bcfe410f 2479 
texinfo-doc-nonfree_5.1-3.debian.tar.gz
 d015f8c48edeae9b2ae7cb5746f176b152e79a4533528b61945e876872281de2 633238 
texinfo-doc-nonfree_5.1-3_all.deb
Files: 
 91b79506ffe08c097ec8e003f929d52e 1379 non-free/doc optional 
texinfo-doc-nonfree_5.1-3.dsc
 5f059a4c1c4c6f7990d9fc4b8fe77b7f 2479 non-free/doc optional 
texinfo-doc-nonfree_5.1-3.debian.tar.gz
 c1b6ff0165e04136cc3fb68eb24f2aa5 633238 non-free/doc optional 
texinfo-doc-nonfree_5.1-3_all.deb

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

iEYEARECAAYFAlIATPUACgkQ0r9KownFsJQXCgCdF0ugVBlzsTkS9jCgvVn4FGqI
5JAAniYZYwbmu326EoDEEhD+u7yZ/52E
=zWbg
-END PGP SIGNATURE-


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



Accepted pychess 0.12~beta3-1 (source all)

2013-08-05 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 05 Aug 2013 19:53:19 -0400
Source: pychess
Binary: pychess
Architecture: source all
Version: 0.12~beta3-1
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Varun Hiremath va...@debian.org
Description: 
 pychess- chess graphical user interface for several chess engines
Closes: 657494 685473 703560 708827
Changes: 
 pychess (0.12~beta3-1) unstable; urgency=low
 .
   * New upstream release (Closes: #708827, #657494)
   * d/control: Add gstreamer0.10-plugins-base to Depends
 (Closes: #703560, #685473)
   * d/control: add libgaviotatb1 and gaviotatb to Depends
   * d/patches: remove executable.diff; update setup_docs.diff
Checksums-Sha1: 
 a8b0154aacb86f5ede4851b21870516a386f68f9 1870 pychess_0.12~beta3-1.dsc
 315b7bf5ab0ffce47d22ee7e10ff956009efe9fe 3573813 pychess_0.12~beta3.orig.tar.gz
 923c1eb460418c2dbfd183a78a9ff934b8c33dc1 4266 
pychess_0.12~beta3-1.debian.tar.gz
 95d1f216d1bb3ef4416c2cca9f4012d72395b3e6 2504272 pychess_0.12~beta3-1_all.deb
Checksums-Sha256: 
 f30ce6efabcb1b9ec18b707c65e31ac2477f5be4e59a49f4f263f0a60b89a79a 1870 
pychess_0.12~beta3-1.dsc
 8c7a8f0968a0d02db478598ca3128e864f083e9669d7dd5300edbd122a70685d 3573813 
pychess_0.12~beta3.orig.tar.gz
 9a57ef5beaabffb724b345ed1de534caf4cbb9ce3622c39a85b62b3d318e37b0 4266 
pychess_0.12~beta3-1.debian.tar.gz
 f23c1ef1dd64bd59b85692cfb3f16c2e578c0331921c0279bf060239a677fdf9 2504272 
pychess_0.12~beta3-1_all.deb
Files: 
 c25657f5c126de25855f6c98395abb3f 1870 games optional pychess_0.12~beta3-1.dsc
 767bcc356055ceb1f3db8081f97214d6 3573813 games optional 
pychess_0.12~beta3.orig.tar.gz
 d3de53fbd588b2ca41e2ad1d3f380a64 4266 games optional 
pychess_0.12~beta3-1.debian.tar.gz
 78274a33209beaaa9bee25cf339428c9 2504272 games optional 
pychess_0.12~beta3-1_all.deb

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

iQIcBAEBCgAGBQJSAGazAAoJEHA3PPEpDbnOUsEP/3QR7msH4F26T+wYwfvh3x18
GUGQETmGcPxWBOC/li+Vt1B4ildOpvVPP+uBY0dX2dgBTw1dLh7iQGSL1wx8iSMR
HnC4IW+MASJ93aDhXpHD6JAGHL80jG/VP12tjopzq9S+bPHj6L+jormrTatMIxQf
FDiV/FOyU0NB/iLx+t9DpdDPVxpJqg/e1hrwgPHZw7qzjNfjeNmM5375BziF67uw
e2aZw/IlqKqiHWduRkvFICz/vPkjn9+yb7bAGmx4m87Blzu9Bhm9rqxSaZQ7gukG
FvyC3KP7uN8XxUe07hwPlA8yWUJyllwXnU46DjWr/a9M9kYMnYkE2TQnVc2h47DT
35YSQNjLp65fK7mKbtzMfQW+Xntp7nUnvSP5A4IyLUnnAr+YlKmknBiB7UeeNUdN
MhalgKCBKU9bEuGHuHisk9l6n91H374ja1dw9akB/ujlN1HoOWsrjs2v5NQ2Nfvc
Nk2WcGCG5mMfKfOuopEAizaJM/M3jiChkv/0P6Z+NiZ6zImN627v05pGnOtVEBiQ
CrPIGNw6wq83nofWxDNl1h2xQrLsoLdzOG8wwuFcilrzY4qUtx/z4jpx1vlkAjCc
SSOzf9qDf9cl11+fbXAGbjhSZundsTCC1VRCvaLKE7DAEf6jP3Rpk5CJL6HhE3CQ
kI/bFFMSs+ifzgapSvoQ
=OlFq
-END PGP SIGNATURE-


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



Accepted bzr-pipeline 1.4-6 (source all)

2013-08-05 Thread Andrew Starr-Bochicchio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Aug 2013 23:38:33 -0400
Source: bzr-pipeline
Binary: bzr-pipeline
Architecture: source all
Version: 1.4-6
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Andrew Starr-Bochicchio a...@debian.org
Description: 
 bzr-pipeline - Bazaar plugin for managing a pipeline of changes
Changes: 
 bzr-pipeline (1.4-6) unstable; urgency=low
 .
   * Add Restrictions: allow-stderr to debian/tests/control
 so an autopkgtest run isn't reported as a failure even
 when all the tests pass due to there being output to stderr.
Checksums-Sha1: 
 3727cc9b2850015fa03121dd493dcd2cdc9a5191 2144 bzr-pipeline_1.4-6.dsc
 0a584f89cbf510c1e6d5be59905600b29640c105 3922 bzr-pipeline_1.4-6.debian.tar.gz
 2eb6caa9274288de1cb309b03d9051ec3e85a29b 25902 bzr-pipeline_1.4-6_all.deb
Checksums-Sha256: 
 08831300c5d9b634c97d60f1e2fe42c9d0d9e97ff26eedbe1e14415f22d23282 2144 
bzr-pipeline_1.4-6.dsc
 ca2e40271ccd8b412af8c9a13102f5743e4bf7031facd93b56c2cb982d073296 3922 
bzr-pipeline_1.4-6.debian.tar.gz
 d2bcd902ac03aa8a68e2d224f6588906c30a86d1740eb94239e4a7cdd73eaafa 25902 
bzr-pipeline_1.4-6_all.deb
Files: 
 2a2311d80fd084fdb628518226ad7e78 2144 vcs optional bzr-pipeline_1.4-6.dsc
 6b9fe056a9aca6ad773c2ba0bfe80951 3922 vcs optional 
bzr-pipeline_1.4-6.debian.tar.gz
 b01022ed2ec80fce52262b8028c8e0db 25902 vcs optional bzr-pipeline_1.4-6_all.deb

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

iQIcBAEBCAAGBQJSAHC3AAoJEDtW4rvVP9yxYc8QAJKIADTDwbGKLsTZSgrEl+vG
rbospL1OxdP9abR/gN9gOGXC49iikbB9RkFNTqrapucFD1NlBf1ZuvmkksDZs2Kv
67zAFxN7HWcoeH3qRx4o+MvqcIoi66iQOEyM3kPmldFuaDrye/urTIUOyHSRH61I
LhMayCyFU/oaTJIG6wMfURwOU1u540wHUVkSOFhTU0CYsrep9FfvywQgOsPvw6s3
erkfY40Cct/stmJ+b/8gJ9py8YtUjrcu4quKmQoLmBTgxfHMXdkotFxapbiJs3zl
5/2t1+1mBtthdZoifBkmK5m/tR9hEdHsBIsYge+eC6+x9uZ/XBT36Iqot6tr9km9
g7/HzquPXyzA2ph2tbkAKQPls0zyD1QoLCObgqPHESC9VlegXB3XcS4XAlTZiygB
zaQ5Kb93oRCN8YfAwJjewjr1UJlOrn9/+TH56CQGrE6uPegmG8KmCHJF3Dvrn0nt
y9urYeruEIKiOQTnPXyQF0OTs0o7nspyf4XwtCGf0L1miAehqYWE/kb7XLnMyEHq
MQ72lWjlMnj/pgDbDO3wWh8S/NU4UAK/Fn6HcpTraDRjzMsqY8WWnrX8CO4NhFnw
NVLjXav+axj1mxcnOpI0JS5YPzLU6314c4yZOmyLN6GTiXPrGqsETPmhoLo1Pmc9
mKDzKXAIFcoKq6W2K6Ot
=bU39
-END PGP SIGNATURE-


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



Accepted bindfs 1.12.2-1 (source amd64)

2013-08-05 Thread Eugene V. Lyubimkin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 19:42:03 +0300
Source: bindfs
Binary: bindfs
Architecture: source amd64
Version: 1.12.2-1
Distribution: unstable
Urgency: low
Maintainer: Eugene V. Lyubimkin jac...@debian.org
Changed-By: Eugene V. Lyubimkin jac...@debian.org
Description: 
 bindfs - mirrors or overlays a local directory with altered permissions
Changes: 
 bindfs (1.12.2-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/watch:
 - The project's home is now bindfs.org, fix download URL accordingly.
   * debian/control:
 - Homepage: changed to 'bindfs.org'.
Checksums-Sha1: 
 c8f69ce9d1ec7b0d5c5afbd35a7421849860b936 1057 bindfs_1.12.2-1.dsc
 ea16ccc68161d737c5393faf105aca0c8d463c22 349691 bindfs_1.12.2.orig.tar.gz
 caf1e09b7d2996aa977640e7e16e530c077e8187 4270 bindfs_1.12.2-1.diff.gz
 d5a6a6573134e444b3db67451d989d744234e901 24934 bindfs_1.12.2-1_amd64.deb
Checksums-Sha256: 
 b47394f74812c4e62945c7bab936802f306dcfc6ee2418dbfab14cd6b3353fd0 1057 
bindfs_1.12.2-1.dsc
 e0e540ce8adfbb2955e7ac2f86589f913443a8c5425a729acf2a5b7563c39312 349691 
bindfs_1.12.2.orig.tar.gz
 d7a0c8c0b790c0f8475b0207f37f3bb1ffde0860793b6bcdfc1d08c97f9e9c00 4270 
bindfs_1.12.2-1.diff.gz
 ede84480e283f335a688562bd41278ea10d3e08fecdc020946b0078d78e4dd6d 24934 
bindfs_1.12.2-1_amd64.deb
Files: 
 11da80d2de59d57e9799b034c127dd1c 1057 utils optional bindfs_1.12.2-1.dsc
 54bfeb073c82bf63fbbb263464ec52d2 349691 utils optional 
bindfs_1.12.2.orig.tar.gz
 9da7a69e9a2abd0761be692ecd59f10f 4270 utils optional bindfs_1.12.2-1.diff.gz
 c3fa78e924dd64ddcf7118c3eb2e9933 24934 utils optional bindfs_1.12.2-1_amd64.deb

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

iEYEARECAAYFAlH/4doACgkQchorMMFUmYyljwCffoov7LgI6dg6z7Sa6eAj9fJK
DgUAnA6DVYBsbm2VM+bZlCLKgGruFmBg
=IpTm
-END PGP SIGNATURE-


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