Bug#730851: ITP: ruby-rspec-puppet -- RSpec tests for your Puppet manifests

2013-11-30 Thread Thomas Bechtold
Package: wnpp
Severity: wishlist
Owner: Thomas Bechtold thomasbecht...@jpberlin.de

* Package name: ruby-rspec-puppet
  Version : 0.1.6
  Upstream Author : Tim Sharpe
* URL : https://rubygems.org/gems/rspec-puppet
* License : Expat
  Programming Lang: Ruby
  Description : RSpec tests for your Puppet manifests

Puppet lets you centrally manage every important aspect of your system
using a cross-platform specification language that manages all the
separate elements normally aggregated in different files, like users,
cron jobs, and hosts, along with obviously discrete elements like
packages, services, and files.
.
This ruby module contains RSpec tests for Puppet manifests.


-- 
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/20131130094903.18853.73235.reportbug@steinpilz



Bug#730871: general: Filesystem? Some problems with sizes of files.

2013-11-30 Thread Евгений Просветов
Package: general
Severity: important

Dear Maintainer,

When I copied 15.2G file to free 64G flash, I've encountered the next error:

root@home-desktop:~# cp backup272291.tar /media/84D0-F52A/
cp: запись «/media/84D0-F52A/backup272291.tar»: Файл слишком
велик
cp: не удалось расширить
«/media/84D0-F52A/backup272291.tar»: Файл слишком велик

(Cannot expand the file, it's too big). Here is the source file properties:

root@home-desktop:~# ls -l backup272291.tar
-rw-r--r-- 1 root root 15195166720 ноя 30 18:30 backup272291.tar

And here is the result of df -h (after unsuccessful try to copy):

root@home-desktop:~# df -h
Файловая система
Размер Использовано  Дост Использовано%
Cмонтировано в
rootfs   106G  60G
41G   60% /
udev  10M0
10M0% /dev
tmpfs254M 680K
253M1% /run
/dev/disk/by-uuid/bc250faf-ac7a-46e0-a5a9-a456790ab1ff   106G  60G
41G   60% /
tmpfs5,0M0
5,0M0% /run/lock
tmpfs1,5G0
1,5G0% /run/shm
/dev/sdb1 60G 4,1G
56G7% /media/84D0-F52A

(Only 4.1G of 60G is filled on /dev/sdb1 now).
My LXDE filemanager (pcmanfm) declares, that size of the file on flash is 4.3G,
but its size on the disk is more then 137G. What does it mean and how is it
possible for 64G drive? And what is the operation to expand the file which is
failed?

It's not the problem only of this flash drive. In properties of many files on
harddrive I see, that their sizes on the disk exceed their real sizes ten
times or something about.

It's actually critical problem, because now  I can use only about 10-20% of
disk space. I hope you help me.

Regards,
epros.



-- System Information:
Debian Release: 7.2
  APT prefers testing
  APT policy: (600, 'testing'), (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-4-686-pae (SMP w/2 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
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/20131130153741.4495.99289.report...@home-desktop.home-net



Bug#730871: general: Filesystem? Some problems with sizes of files.

2013-11-30 Thread Konstantin Khomoutov
On Sat, 30 Nov 2013 19:37:41 +0400
Евгений Просветов e-p...@yandex.ru wrote:

 When I copied 15.2G file to free 64G flash, I've encountered the next
 error:
 
 root@home-desktop:~# cp backup272291.tar /media/84D0-F52A/
 cp: запись «/media/84D0-F52A/backup272291.tar»: Файл слишком
 велик
 cp: не удалось расширить
 «/media/84D0-F52A/backup272291.tar»: Файл слишком велик
 
 (Cannot expand the file, it's too big). Here is the source file
 properties:
 
 root@home-desktop:~# ls -l backup272291.tar
 -rw-r--r-- 1 root root 15195166720 ноя 30 18:30 backup272291.tar
[...]
 /dev/sdb1 60G
 4,1G 56G7% /media/84D0-F52A
 
 (Only 4.1G of 60G is filled on /dev/sdb1 now).
 My LXDE filemanager (pcmanfm) declares, that size of the file on
 flash is 4.3G, but its size on the disk is more then 137G. What
 does it mean and how is it possible for 64G drive? And what is the
 operation to expand the file which is failed?

May be the file you're trying to copy is sparse [1]?  GNU tar does
support this.  Flash drives typically contain FAT32 on them which
doesn't support sparse files, so when copying such a file from a real
file system to FAT32 the kernel's copying routine has to stuff the
file.

Try running

$ du --apparent-size -h backup272291.tar

to see how much disk space it's worth taking into account its
sparseness, if any.

1. http://en.wikipedia.org/wiki/Sparse_file


-- 
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/20131130195607.82a1248c91e2abf0f48ef...@domain007.com



Bug#730871: general: Filesystem? Some problems with sizes of files.

2013-11-30 Thread Thomas Goirand
On 11/30/2013 11:56 PM, Konstantin Khomoutov wrote:
 May be the file you're trying to copy is sparse [1]?  GNU tar does
 support this.  Flash drives typically contain FAT32 on them which
 doesn't support sparse files, so when copying such a file from a real
 file system to FAT32 the kernel's copying routine has to stuff the
 file.
 
 Try running
 
 $ du --apparent-size -h backup272291.tar
 
 to see how much disk space it's worth taking into account its
 sparseness, if any.
 
 1. http://en.wikipedia.org/wiki/Sparse_file

If it was FAT32, then it wouldn't even accept files bigger than 2GB.
That is by the way an information which we miss here: what kind of
filesystem is on that flash medium?

Thomas


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



Bug#730871: general: Filesystem? Some problems with sizes of files.

2013-11-30 Thread Konstantin Khomoutov
On Sun, 01 Dec 2013 00:13:06 +0800
Thomas Goirand z...@debian.org wrote:

  May be the file you're trying to copy is sparse [1]?  GNU tar does
  support this.  Flash drives typically contain FAT32 on them which
  doesn't support sparse files, so when copying such a file from a
  real file system to FAT32 the kernel's copying routine has to
  stuff the file.
[...]
 If it was FAT32, then it wouldn't even accept files bigger than 2GB.

4 GiB - 1 byte, actually.  But you're correct on this anyway.


-- 
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/20131130203413.5d7000ac7cedfb2b8ad18...@domain007.com



Re: Role of Release Goals (Was: Release sprint results - team changes, auto-rm and arch status)

2013-11-30 Thread Jakub Wilk

* Steve Langasek vor...@debian.org, 2013-11-29, 12:01:
What do you propose as a mechanism for agreeing to a reduced NMU delay for 
archive-wide changes?


My proposal is to realize that reduced delay for archive-wide changes is not 
needed.


Seriously, such changes will take months or years anyway, so what does reducing 
a 10-day delay buy you?


--
Jakub Wilk


--
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/20131130164034.gb2...@jwilk.net



Bug#730871: general: Filesystem? Some problems with sizes of files.

2013-11-30 Thread Konstantin Khomoutov
On Sun, 01 Dec 2013 00:13:06 +0800
Thomas Goirand z...@debian.org wrote:

 If it was FAT32, then it wouldn't even accept files bigger than 2GB.
 That is by the way an information which we miss here: what kind of
 filesystem is on that flash medium?

Oh, by the way, the OP had this observation after copying failed:

 /dev/sdb1 60G
 4,1G 56G7% /media/84D0-F52A

 (Only 4.1G of 60G is filled on /dev/sdb1 now).

Isn't this the 4GiB FAT32 limit (plus the file alocation overhead
accounting for another 0.1GiB) here?  That is, file copying might has
stopped just after hitting the max file size limit.

Regarding the original error messages (in Russian):

root@home-desktop:~# cp backup272291.tar /media/84D0-F52A/
 cp: запись «/media/84D0-F52A/backup272291.tar»: Файл слишком велик

This one is cp: write «...»: file is too large

 cp: не удалось расширить «/media/84D0-F52A/backup272291.tar»: Файл
 слишком велик

This one inedded uses the verb расширить which does translate from
Russian as to expand, and that what had deluded me into thinking
we're seeing a sparse file limit.
Might be a coreutils localization issue in fact.


-- 
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/20131130204110.f8dd0ce067b20c6466658...@domain007.com



Re: Release sprint results - team changes, auto-rm and arch status

2013-11-30 Thread Jakub Wilk

* Niels Thykier ni...@thykier.net, 2013-11-28, 21:04:
Starting today, all non-key packages with RC bugs in Jessie for more than 15 
days will be considered for auto-removal, even if they have reverse 
dependencies. This also means that the removal of these packages will cause 
the removal of all their reverse dependencies.


I can see these headlines:
Jessie, The Smallest Debian Release Since Potato.


Default Urgency
===

We believe that it should be acceptable for most uploads to unstable to be 
uploaded with medium urgency, to reduce the delay for testing migrations.


Huh. §5.6.7 says that Urgency “is a description of how important it is to 
upgrade to this version from previous ones”. How can possibly RT decide that 
from now on it's more important to upgrade most packages?


--
Jakub Wilk


--
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/20131130165651.gc2...@jwilk.net



Re: Release sprint results - team changes, auto-rm and arch status

2013-11-30 Thread Sven Hoexter
On Sat, Nov 30, 2013 at 05:56:51PM +0100, Jakub Wilk wrote:
 * Niels Thykier ni...@thykier.net, 2013-11-28, 21:04:

Hi,

 We believe that it should be acceptable for most uploads to
 unstable to be uploaded with medium urgency, to reduce the delay
 for testing migrations.
 
 Huh. §5.6.7 says that Urgency “is a description of how important it
 is to upgrade to this version from previous ones”. How can possibly
 RT decide that from now on it's more important to upgrade most
 packages?

I've to agree with Jakub here. It feels wrong to abuse the urgency
to lower the staging periode in unstable before a testing migration.

If the package is not fit for a release, or disruptive, or whatever I
had the feeling that there is a mutual understanding within the project,
to use experimental. If a transitional period within unstable is required
without breaking testing we often enough used rc bugs against our
own packages. And now we start to fiddle with urgency settings and place
bets on the required testing periode in unstable?

We can of course discuss lowering this hold back time archive wide, but
working around the discussion with this proposal feels not right.

Sven
-- 
There we were, the three of us, the thief the king and I.
Finally, we were forced to see, we were equals in the night.
[Streetlight Manifesto - The three of us]


-- 
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/20131130174112.gb17...@garkbit.lan



Re: Release sprint results - team changes, auto-rm and arch status

2013-11-30 Thread Joey Hess
At DebConf there was an interesting proposal by Colin and Steve to
reduce testing migration times for packages that have an succeeding
autopkgtest. This would increase motivation for adding autopkgtests to
packages. More importantly, it would speed up testing propigation,
without a sacrifice in test quality.

The only blocker seemed to be setting up a system to run the
autopkgtests and communicate the urgency hints to britney.

Reducing the upload urgency to medium by default both seems to have hard
to quantify risks in reducing the quality of testing, and undercuts the
motivation for this proposal. So I'm curious why this result came out of
the RM team meeting.

-- 
see shy jo


signature.asc
Description: Digital signature


Re: Release sprint results - team changes, auto-rm and arch status

2013-11-30 Thread Ian Jackson
Joey Hess writes (Re: Release sprint results - team changes, auto-rm and arch 
status):
 Reducing the upload urgency to medium by default both seems to have hard
 to quantify risks in reducing the quality of testing, and undercuts the
 motivation for this proposal. So I'm curious why this result came out of
 the RM team meeting.

I've heard it observed that it's rather odd that a developer doing an
upload can only reduce the delay from the default, and not increase
it.

I found this a moderately convincing line of reasoning but arguably it
should be accompanied by a change to the migration times associated
with each of the urgency levels.

 At DebConf there was an interesting proposal by Colin and Steve to
 reduce testing migration times for packages that have an succeeding
 autopkgtest. [...]

I agree that that was an interesting proposal but it seems separate to
me.  It's certainly a lot more work.

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/21146.20827.702731.661...@chiark.greenend.org.uk



Re: Release sprint results - team changes, auto-rm and arch status

2013-11-30 Thread Niels Thykier
On 2013-11-29 09:22, Aurelien Jarno wrote:
 On Thu, Nov 28, 2013 at 09:04:56PM +0100, Niels Thykier wrote:
 Note that s390x and powerpc could also do with more porters, but at
 this time we are not giving an official warning for them.
 
 I see on http://release.debian.org/jessie/arch_qualify.html that you are
 concerned by the fact s390x is still using gcc 4.6. This has been
 decided to switch to gcc-4.8 a few weeks ago and it has been already
 implemented in the SVN. It's only waiting for an upload from Matthias
 Klose.
 

Great; I have updated the table to list this pending fix.

~Niels



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/529a551e.6020...@thykier.net



Bug#730871: marked as done (general: Filesystem? Some problems with sizes of files.)

2013-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 30 Nov 2013 22:31:55 +0100
with message-id 20131130213155.gn6...@jadzia.comodo.priv.at
and subject line Re: Bug#730871: general: Filesystem? Some problems with sizes 
of files.
has caused the Debian Bug report #730871,
regarding general: Filesystem? Some problems with sizes of files.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
730871: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=730871
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: general
Severity: important

Dear Maintainer,

When I copied 15.2G file to free 64G flash, I've encountered the next error:

root@home-desktop:~# cp backup272291.tar /media/84D0-F52A/
cp: запись «/media/84D0-F52A/backup272291.tar»: Файл слишком
велик
cp: не удалось расширить
«/media/84D0-F52A/backup272291.tar»: Файл слишком велик

(Cannot expand the file, it's too big). Here is the source file properties:

root@home-desktop:~# ls -l backup272291.tar
-rw-r--r-- 1 root root 15195166720 ноя 30 18:30 backup272291.tar

And here is the result of df -h (after unsuccessful try to copy):

root@home-desktop:~# df -h
Файловая система
Размер Использовано  Дост Использовано%
Cмонтировано в
rootfs   106G  60G
41G   60% /
udev  10M0
10M0% /dev
tmpfs254M 680K
253M1% /run
/dev/disk/by-uuid/bc250faf-ac7a-46e0-a5a9-a456790ab1ff   106G  60G
41G   60% /
tmpfs5,0M0
5,0M0% /run/lock
tmpfs1,5G0
1,5G0% /run/shm
/dev/sdb1 60G 4,1G
56G7% /media/84D0-F52A

(Only 4.1G of 60G is filled on /dev/sdb1 now).
My LXDE filemanager (pcmanfm) declares, that size of the file on flash is 4.3G,
but its size on the disk is more then 137G. What does it mean and how is it
possible for 64G drive? And what is the operation to expand the file which is
failed?

It's not the problem only of this flash drive. In properties of many files on
harddrive I see, that their sizes on the disk exceed their real sizes ten
times or something about.

It's actually critical problem, because now  I can use only about 10-20% of
disk space. I hope you help me.

Regards,
epros.



-- System Information:
Debian Release: 7.2
  APT prefers testing
  APT policy: (600, 'testing'), (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-4-686-pae (SMP w/2 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
---End Message---
---BeginMessage---
On Sat, 30 Nov 2013 22:48:34 +0400, epros wrote:

  Isn't this the 4GiB FAT32 limit (plus the file alocation overhead
  accounting for another 0.1GiB) here?
 Thank you, I didn't imagine such a thing. I did mkfs /dev/sdb1 and then 
 have the file successfully copied on this flash.

Good to hear that it works.

Closing the bug now.

Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Kings of Convenience: Rule My World


signature.asc
Description: Digital signature
---End Message---


Re: Release sprint results - team changes, auto-rm and arch status

2013-11-30 Thread Russ Allbery
Ian Jackson ijack...@chiark.greenend.org.uk writes:

 I've heard it observed that it's rather odd that a developer doing an
 upload can only reduce the delay from the default, and not increase it.

 I found this a moderately convincing line of reasoning but arguably it
 should be accompanied by a change to the migration times associated
 with each of the urgency levels.

Yes, this is the same reaction that I had.  I was a bit surprised at
first, and then realized that this means that things like early-release
translation updates, typo fixes, or (from a different direction) major new
releases that would benefit from extra testing can be set to low, and
others can be set to medium, and that will actually make more sense.

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/874n6tr1ib@windlord.stanford.edu



Bug#731008: ITP: libhtml-prettyprinter-perl -- module that generates nice HTML files from HTML syntax trees

2013-11-30 Thread Radu-Bogdan Croitoru
Package: wnpp
Owner: Radu-Bogdan Croitoru croitoruradubog...@gmail.com
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org,debian-p...@lists.debian.org

* Package name: libhtml-prettyprinter-perl
  Version : 0.03
  Upstream Author : Claus Schotten schot...@gmx.de
* URL : https://metacpan.org/release/HTML-PrettyPrinter
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : module that generates nice HTML files from HTML syntax trees

HTML::PrettyPrinter produces nicely formatted HTML code from a HTML syntax
tree. It is especially usefull if the produced HTML file shall be read or
edited manually afterwards. Various parameters let you adapt the output to
different styles and requirements.

If you don't care how the HTML source looks like as long as it is valid and
readable by browsers, you should use the as_HTML() method of HTML::Element
instead of the pretty printer. It is about five times faster.

The pretty printer will handle line wrapping, indention and structuring by
the way the whitespace in the tree is represented in the output. Furthermore
upper/lowercase markup and markup minimization, quoting of attribute values,
the encoding of entities and the presence of optional end tags are
configurable.


-- 
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/1385851541.423281.11289.nullmailer@dotix



Re: Release sprint results - team changes, auto-rm and arch status

2013-11-30 Thread Ben Hutchings
On Fri, 2013-11-29 at 15:12 +0100, Aurelien Jarno wrote:
 On Fri, Nov 29, 2013 at 01:57:39PM +, Ben Hutchings wrote:
  On Fri, 2013-11-29 at 09:22 +0100, Aurelien Jarno wrote:
   Some precision about the MIPS machines:
   
   On Thu, Nov 28, 2013 at 09:04:56PM +0100, Niels Thykier wrote:
 * [mips, mipsel] buildds/porterboxes run on hardware which is very old 
or has known defects:
   - mips octeon is unstable
   
   Better me more precise there, Octeon machines in general are very
   stable. That said out of the three machines we have in Debian, two are
   unstable, the other one is very stable. We never really understood why,
   we only have remarked they have different CPU revision number.
  
  Whatever, mips has one reliable buildd which is not enough.
 
 Two actually with ball.d.o which is not an octeon.

 My point is to say that Octeon boxes are not unstable, but the Octeon
 boxes *we have* as part of the Debian infrastructure are unstable. This
 of course has to be fixed.

Yes.

   - mipsel loongson have CPU bugs
   
   I see on http://release.debian.org/jessie/arch_qualify.html that it
   concerns the NOP implementation error from Loongson 2F. Debian is
   using Loongson 2E for buildds and porters machines, which are not
   affected by this issue.
  
  They are affected by that or a very similar issue, as demonstrated by Jo
  Shields recently: http://apebox.org/wordpress/rants/545/
  
 
 MUL is a MIPS32 instruction, which is not present on MIPS3 CPUs like the
 Loongson 2, MULT + MFLO should be used instead. There is no CPU bug
 there, it's like trying to build x86 code with SSE4 instructions, and
 then saying that all x86 CPUs which do not support the SSE4 instructions
 are buggy.

That was only the first problem; read the whole entry.

Ben.

-- 
Ben Hutchings
Usenet is essentially a HUGE group of people passing notes in class.
  - Rachel Kadel, `A Quick Guide to Newsgroup Etiquette'


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


Bug#731014: ITP: hershey-fonts -- Hershey vector fonts library, tools, and glyph data

2013-11-30 Thread Kamal Mostafa
Package: wnpp
Severity: wishlist
Owner: Kamal Mostafa ka...@debian.org

* Package name: hershey-fonts
  Version : 0.1
  Upstream Author : Kamal Mostafa ka...@whence.com
* URL : http://www.whence.com/hershey-fonts/
* License : GPL
  Programming Lang: C
  Description : Hershey vector fonts library, tools, and glyph data

The Hershey fonts are a collection of vector fonts developed circa 1967
by Dr. A. V. Hershey.

This source package includes:

 - The Hershey fonts: Latin, Greek, Cyrilic, Japanese, and various symbol
   glyph sets encoded as .jhf format Hershey font files.

 - libhersheyfont: a library of C routines for loading Hershey font files.

 - hershey-font-gnuplot: a program to render Hershey vector font text in
   the form of a gnuplot input file.


-- 
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/20131130234825.10765.46697.reportbug@fourier



Re: Role of Release Goals (Was: Release sprint results - team changes, auto-rm and arch status)

2013-11-30 Thread Steve Langasek
On Sat, Nov 30, 2013 at 05:40:35PM +0100, Jakub Wilk wrote:
 * Steve Langasek vor...@debian.org, 2013-11-29, 12:01:
 What do you propose as a mechanism for agreeing to a reduced NMU
 delay for archive-wide changes?

 My proposal is to realize that reduced delay for archive-wide
 changes is not needed.

 Seriously, such changes will take months or years anyway, so what
 does reducing a 10-day delay buy you?

It buys you being able to finish in months, instead of in years.

It buys you not having to track dozens of in-flight NMUs in parallel,
letting you spend more of your time working on improving Debian instead of
doing paperwork.

It sets an appropriate project-wide expectation that certain NMUs are
sanctioned, so people (including new developers, NMs, or new contributors)
will feel supported in working on such tasks instead of being afraid to
stick their necks out.

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


signature.asc
Description: Digital signature


Re: debconf as a registry

2013-11-30 Thread Thomas Goirand
On 11/28/2013 09:56 PM, Ian Jackson wrote:
 Jakub Wilk writes (Re: debconf as a registry):
 I suggest the following test instead:

 1) DEBIAN_FRONTEND=noninteractive apt-get install $package
 2) rm -rf /var/cache/debconf
 3) DEBIAN_PRIORITY=low apt-get install --reinstall $package

 If any questions are asked in point 3, the package uses debconf as registry.

 Funnily enough, debconf itself fails this test.
 
 I don't think this is right.  Questions might be asked to know not
 what to write into some config file, but to determine directly whether
 the maintainer script should take some action right now (eg,
 restarting a daemon or not).  I think it is OK for the answers to such
 questions to be recorded solely in the debconf database.
 
 Thanks,
 Ian.

I agree with Ian. It is perfectly valid to do a db_unregister in a
postinst, each time the package is installed/upgraded/reconfigured, as
it is also valid to ask the same question to the user each time too.

Thomas


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



Accepted beets 1.3.1-1 (source all)

2013-11-30 Thread Simon Chopin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Nov 2013 00:39:48 -0800
Source: beets
Binary: beets beets-doc
Architecture: source all
Version: 1.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Python Applications Packaging Team 
python-apps-t...@lists.alioth.debian.org
Changed-By: Simon Chopin chopin.si...@gmail.com
Description: 
 beets  - music tagger and library organizer
 beets-doc  - music tagger and library organizer - documentation
Closes: 717763 730046
Changes: 
 beets (1.3.1-1) unstable; urgency=low
 .
   [ Simon Chopin ]
   * Version the dependency on python-musicbrainzngs (= 0.4) (Closes: #717763)
   * New upstream release (Closes: #730046)
 + Bump the dependency on python-mutagen (= 1.22)
 + Drop the fix_bpd_search patch, merged upstream.
   * Export PYTHONPATH when building the doc to build the API docs as well.
 .
   [ Stefano Rivera ]
   * Update copyright holders
Checksums-Sha1: 
 90e03146de1e059e08cc3e02db60c72efb058fef 2248 beets_1.3.1-1.dsc
 a79aa76741c0bb3936601779e73c58041995d95b 648456 beets_1.3.1.orig.tar.gz
 1dec7216a4188652d1c98480766e30872da049ca 6059 beets_1.3.1-1.debian.tar.gz
 1516f8f8ca66d6aa50e8eb2219af720fa353e216 200362 beets_1.3.1-1_all.deb
 28b431f3f03423060b7c973939b7007a0592196c 234176 beets-doc_1.3.1-1_all.deb
Checksums-Sha256: 
 2cd3af4ee5737aee5d9831a2dbdbf49f2d248bfb9fdbc55a37932471d02a7b9e 2248 
beets_1.3.1-1.dsc
 62ff54ad0f5cb224df2a9bed84d1281f27dd956cafe916b09318776a4b3ca308 648456 
beets_1.3.1.orig.tar.gz
 a3ac74e410228c4a4589d16b44c0aa2f1d38282e39ed0770ac00b7c7cde5b0d4 6059 
beets_1.3.1-1.debian.tar.gz
 f19ebd9c553ea976e63d8a1c8d313451341e53eea860933384a33f6231af530f 200362 
beets_1.3.1-1_all.deb
 6a6fa1c21602ca7d5c2f9ed8f01ed6916a626c2b56c79574fdc4f7f01ae65181 234176 
beets-doc_1.3.1-1_all.deb
Files: 
 9f407ad3944a0e1337b09ad165c6fcda 2248 sound optional beets_1.3.1-1.dsc
 2cb6f86ac1624df823883a1cb8b53667 648456 sound optional beets_1.3.1.orig.tar.gz
 e0865d4db21b454b44f143de968650ae 6059 sound optional 
beets_1.3.1-1.debian.tar.gz
 a7a16a629a4c39668dececa973b5c5ff 200362 sound optional beets_1.3.1-1_all.deb
 d66ccd6103fd2c093a6d5ecfa654ac23 234176 doc optional beets-doc_1.3.1-1_all.deb

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

iQIcBAEBCgAGBQJSmaVVAAoJEACQ/CG1zRrMhWgP/2GAYdmb2tuDoEKhpc5FdXAp
mDFj/FVS/tl0u+PLSUyq0XbuRRzcl91KkchNIsp6aXUy/LeiPNz6mMx0PV7LEIdu
eGKeIK8/zf/2tE+Zy9PIjMb/cdcqK8SvWR3C2k5O8rUAjHr2J6DxZL7zVbCFReRW
Tksd+WWP1+jDirOTWyKp1/ChIeZwUzFOSIDirwnlLPq+GJl5KYerStwlACqNaUcs
WtC5mqwSYKR6ZN4AH6SRv1kiMuWV8SPpmtUm6TWF9BjwoOoyFpvbRJ6QvCFa33KS
flTpVydk3TIjHKjRcbBRwxJ/fZcnC4qeaJLNHJs1NMH/J19kTpbrttdE3k3k+Cm5
nFTEB4/eM6js6Ezk17TttVCiqQn1fUErijckTq5bNBB77dBE0C75cXRx5QBJNllj
vhy0r6znZ1IbQ4eVeQ1r7TjtvWa6rtrwA854lnnlAEcfwPXpQFCCW+7xxWQR4NbU
6vW3i6+NVEptkr6CyaKuK8Jb4IMTNvUZfR0EtpqL1I8lu6VakVALfV8sNqSdCo4b
M5HwTuSLZyggLcUNfp7xwfF47s6ZR6JHx7H5/z5MsBIhEyuMUjXvxVVXoE4ueNT3
XnHaLdp3U76NwBUCeWDEVkoGQGVJVQVBSvR2na3lWzraZscBFAZbi9XjWPsOwpzz
8LkYpel8OhgPtRxoM5uF
=Lrof
-END PGP 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/e1vmghd-00025s...@franck.debian.org



Accepted gnumed-client 1.4.3+dfsg-1 (source all)

2013-11-30 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 08:58:26 +0100
Source: gnumed-client
Binary: gnumed-client gnumed-client-de gnumed-common gnumed-doc
Architecture: source all
Version: 1.4.3+dfsg-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: 
 gnumed-client - medical practice management - Client
 gnumed-client-de - medical practice management - Client for German users
 gnumed-common - medical practice management - common files
 gnumed-doc - medical practice management - Documentation
Changes: 
 gnumed-client (1.4.3+dfsg-1) unstable; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 01da5f4156fe4e278e2cacea2f8bc0b619f430b9 1663 gnumed-client_1.4.3+dfsg-1.dsc
 bee9a7ec68fa4f682968696d44701f427a7a1a1f 6834892 
gnumed-client_1.4.3+dfsg.orig.tar.xz
 948c4d429a8614b5a61d50713fca415d74521a05 34298 
gnumed-client_1.4.3+dfsg-1.debian.tar.gz
 f910a5b87c0a9562284a99fdc783131c2a9f2841 1235960 
gnumed-client_1.4.3+dfsg-1_all.deb
 2450d654b42b429e8ad01b52c96042e6e4e0763f 16376 
gnumed-client-de_1.4.3+dfsg-1_all.deb
 87dc594d40b80c104789fdae2a974c4720d13cc8 119392 
gnumed-common_1.4.3+dfsg-1_all.deb
 d93c51e0a5401e762fd03574c0a8ed8b832ecf46 1104014 
gnumed-doc_1.4.3+dfsg-1_all.deb
Checksums-Sha256: 
 68bc8f1ac578ba979cad0ed9251720f99d57c013a63f3e70468fb48e76872fdc 1663 
gnumed-client_1.4.3+dfsg-1.dsc
 a0aa413dc23355c4697fc978e5448368697c16629a34cbdab80f3dd9e6b1ff3b 6834892 
gnumed-client_1.4.3+dfsg.orig.tar.xz
 df613f3f5368b152643301591525204136ad219cd81c9b885606abc0808d5268 34298 
gnumed-client_1.4.3+dfsg-1.debian.tar.gz
 ae78fa5a383e52c241e22270486b5cc06c8d3b14401755cdcf9ddb35a51c0577 1235960 
gnumed-client_1.4.3+dfsg-1_all.deb
 17590727fba0945e49e16aecd568faf264fdaedd415778d19a20da1d45ce7445 16376 
gnumed-client-de_1.4.3+dfsg-1_all.deb
 3438bef2899fc2d94221142056a3ae6a17b9b9deef87acd50d7fc97ee48e59bd 119392 
gnumed-common_1.4.3+dfsg-1_all.deb
 5472c911cbee3491f23844bdaadc5cb67f241ccd11afec815bd9016ec9c2116e 1104014 
gnumed-doc_1.4.3+dfsg-1_all.deb
Files: 
 e458c102ad640de16d55ab94bf604be4 1663 misc optional 
gnumed-client_1.4.3+dfsg-1.dsc
 d240adf19629d8a6156aa3836d58cea6 6834892 misc optional 
gnumed-client_1.4.3+dfsg.orig.tar.xz
 72f02e0dd6501a49b01dc811af1b1700 34298 misc optional 
gnumed-client_1.4.3+dfsg-1.debian.tar.gz
 ca0f66d259b9d6c08dd0fa233437a3b7 1235960 misc optional 
gnumed-client_1.4.3+dfsg-1_all.deb
 76d62875a14a73f076acd0e3d5e0d40d 16376 misc optional 
gnumed-client-de_1.4.3+dfsg-1_all.deb
 9f89f72c80f7c597ba5c0668cf60943d 119392 misc optional 
gnumed-common_1.4.3+dfsg-1_all.deb
 cba93e22df00793efc1a0b3fdf3ca1cf 1104014 doc optional 
gnumed-doc_1.4.3+dfsg-1_all.deb

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

iEYEARECAAYFAlKZnEkACgkQYDBbMcCf01pdfgCfX02/lcge0mVGyiI0AMuk3H17
ihsAoKZl/xiid9uc8+OFACPFEC/D7luG
=/8v4
-END PGP 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/e1vmgjq-0002gr...@franck.debian.org



Accepted gnumed-server 19.3-1 (source all)

2013-11-30 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 08:43:54 +0100
Source: gnumed-server
Binary: gnumed-server
Architecture: source all
Version: 19.3-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: 
 gnumed-server - medical practice management - server
Changes: 
 gnumed-server (19.3-1) unstable; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 20e207df1768fe682a4177db7ab67a44e2609bee 1450 gnumed-server_19.3-1.dsc
 2f42673e438a012b2018e30926b93683ff41353c 14061632 
gnumed-server_19.3.orig.tar.gz
 db8717b1a2314b5456f0ed1462eff07781b617a9 11751 
gnumed-server_19.3-1.debian.tar.gz
 9a7ee9ec88c2a092475fea0ca01cbf7308981ed0 13226238 gnumed-server_19.3-1_all.deb
Checksums-Sha256: 
 e8f7619ea724368f5c1da07084c95f667a7983604e4ad4bdce35d28b150b8935 1450 
gnumed-server_19.3-1.dsc
 f92cac3ac47c3aa3ae9ed821a93fa4d6c979f528152503aa5a960a51e2e9e0a4 14061632 
gnumed-server_19.3.orig.tar.gz
 14d668255b508074fe338394e139fde63897f9ea18fa9e977fc4b11037199edc 11751 
gnumed-server_19.3-1.debian.tar.gz
 ab284b9644e5b997baea22669620c7d17235b828163e606e311bccb66be8671a 13226238 
gnumed-server_19.3-1_all.deb
Files: 
 8898fcc42aed40fc32c7e5ced670fbcd 1450 misc optional gnumed-server_19.3-1.dsc
 dd7daddb13d79e5b4129a2ec06bd7111 14061632 misc optional 
gnumed-server_19.3.orig.tar.gz
 1d154c7536e8f9d52632ce5dbb37ee22 11751 misc optional 
gnumed-server_19.3-1.debian.tar.gz
 571ef79e427e97ad9615c7da5532329a 13226238 misc optional 
gnumed-server_19.3-1_all.deb

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

iEYEARECAAYFAlKZl9sACgkQYDBbMcCf01rQuQCgsEpfIoi+2HK2WjtI1pPgUFFk
AWgAoKMGYn5P+NWpugEjCylIyt5CQPaW
=RxO9
-END PGP 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/e1vmgjd-0002mi...@franck.debian.org



Accepted mafft 7.127-1 (source amd64)

2013-11-30 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Nov 2013 17:30:14 +0900
Source: mafft
Binary: mafft
Architecture: source amd64
Version: 7.127-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: 
 mafft  - Multiple alignment program for amino acid or nucleotide sequences
Closes: 728190
Changes: 
 mafft (7.127-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/tests/with-example-data: Don't write progress to stderr on success.
 Closes: #728190, thanks to Martin Pitt martin.p...@ubuntu.com.
   * Conforms with Policy 3.9.5.
   * Pass CPPFLAGS within CFLAGS.
Checksums-Sha1: 
 8829d224536553f0be1cfec3af0ea1ff1688d4c0 1986 mafft_7.127-1.dsc
 c0f9f7b9fa9a131fb936837e6f09a11013730b33 383870 mafft_7.127.orig.tar.gz
 0a010e9aeefb8bb9a3ed2b7ea9a7cca618dfa654 6037 mafft_7.127-1.debian.tar.gz
 8cfff3b6a3db02bd96dd5825b32349a78955be3b 800548 mafft_7.127-1_amd64.deb
Checksums-Sha256: 
 70e74cb4132e8c253cda44e0a7d07fd90c8b52be54bb37eacc18c4e093dc6ebf 1986 
mafft_7.127-1.dsc
 930f27e21c643d60a6dc2bde9a69f070cc700869ab03b2471fbe1a0a72836b7b 383870 
mafft_7.127.orig.tar.gz
 344a3d976a43d0ca842b9b5ba5a477879370a794386acde567f05f549f217f09 6037 
mafft_7.127-1.debian.tar.gz
 bae9df1b060bdbca8043abf06ff302e950cfc0a51f471dc494b34725289b3e39 800548 
mafft_7.127-1_amd64.deb
Files: 
 015245bcf972a193e11bbaf358b3b36d 1986 science optional mafft_7.127-1.dsc
 1a53327de93c5b03bb875cc9c35b4758 383870 science optional 
mafft_7.127.orig.tar.gz
 45cdca4ec2c76b933d34823401cfb6fb 6037 science optional 
mafft_7.127-1.debian.tar.gz
 3ccb1eab89f9e36613dc60c6f44aec63 800548 science optional 
mafft_7.127-1_amd64.deb

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

iQIcBAEBCgAGBQJSmaOnAAoJEMW9bI8ildUCfXkP/R/qhMZUyoAqU7amReiomDhc
R82tTFqsxsjKXwHaz/pwGBEyIohiiXcZK5CPtEOAJWtfi+3ouF6TPlhSSTzjhkmR
yCEdwfilo5VP9OSZQMaMqNF2857JSlOmfWMAsZjt+4NLwYjnN2n1YcQxIbpEoS3L
/sZe0keIng9rVA4a1+6Ldd30DQHoA8+qlflKPCwvLr7zCY1jNet1NWUo0NhzsyeT
MEDWK2ajj242S4LcAg5PSUHrlJgwYUUjAnT1xPpwjGWufGXQPvqkYRw7F1vK8iEt
bJiYfnwL0DBuyy+fSSNnhJaFv/U9c/bNKmaGUNQvCHkqctTb46d/xiVt/GmOXLPs
afiUvsBzNCzhKPnr0r5mqfyVpwQVBiIRAMU5vz0kZ/6lGpsO1s8QjU/T0dS6n8MI
gsxfUQQ566OZB3A59wTkLU4QDK16gzmivq4ggk4wThni/BozI/ru1LJOQowi6vej
OA3diAK6+ejmldfyD9YvAO4b0vT5tErXbk1tJDZP8Cl/KM41+vanKhEuZfcAKyJt
4QcHkzNDltBdGipjyokfDKFiAE9ZsDo7tXBIRP05w/tbnqRFtmZFHWSLcSta69+c
bpUhW7r1FVPsnmXdK0ie2vKGMyYNovO0LHA8WW3YuVovX91xUO3cKO05x6dHAlh9
6vDku1Fp5jUsoOneVT2G
=2Kye
-END PGP 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/e1vmgkl-0003hs...@franck.debian.org



Accepted staden-io-lib 1.13.3-1 (source amd64)

2013-11-30 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Nov 2013 18:11:11 +0900
Source: staden-io-lib
Binary: staden-io-lib-utils libstaden-read-dev libstaden-read1
Architecture: source amd64
Version: 1.13.3-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: 
 libstaden-read-dev - development files for libstaden-read
 libstaden-read1 - Staden library for reading and writing DNA sequencing results
 staden-io-lib-utils - programs for maniuplating DNA sequencing files
Closes: 715753 715877 715878 715879 715953
Changes: 
 staden-io-lib (1.13.3-1) unstable; urgency=low
 .
   * New upstream release.  Closes: #715753, #715877, #715878, #715879, #715953.
 .
   [ Adam Conrad ]
   * Use dh_autotools-dev to update config.{sub,guess} for new ports.
 .
   [ Charles Plessy ]
   * Updated symbols file: some symbols have been removed, but they relate
 to obsolete code that is not expected to be used.
   * Conforms to Policy 3.5.9.
Checksums-Sha1: 
 13b01d9093e7f8a26b190bf88f93eba3ebea3bca 2297 staden-io-lib_1.13.3-1.dsc
 b7cbcf5cd32ad38ea8ae8268d6ef27e26d053a09 1660530 
staden-io-lib_1.13.3.orig.tar.gz
 328a2f4a5617f627976f94eb937ff624a7669ed6 10792 
staden-io-lib_1.13.3-1.debian.tar.gz
 ca5ca3549936c8234a86e0abcc0d507b6eaa3188 197676 
staden-io-lib-utils_1.13.3-1_amd64.deb
 f89e33dc372923b69c4b07f291abf6fa92821301 292404 
libstaden-read-dev_1.13.3-1_amd64.deb
 add3fb5ff9cdef53136ec37298fe58fa0e44560f 230196 
libstaden-read1_1.13.3-1_amd64.deb
Checksums-Sha256: 
 d6f44e70e3e9830bd4b16bf3a53ffe61bb8c39ff267ac538fbf2dcfada0d8c41 2297 
staden-io-lib_1.13.3-1.dsc
 d6ac0ba3578e69e4ec3df379f068e4f215dc5accfc566a5b155d06aaf170fc08 1660530 
staden-io-lib_1.13.3.orig.tar.gz
 1b45642e06f5cda9b6af2e8caa383138ffa13915bf37bc03cb5fea08783edd77 10792 
staden-io-lib_1.13.3-1.debian.tar.gz
 55d64167b35bef9d04d901a24f92f0e3c4ae1c5113f5e477a03f73dc63db3d48 197676 
staden-io-lib-utils_1.13.3-1_amd64.deb
 5817df361e09e2dffdaedcadda3ba1662ea316e96378b7d6e8d5231e0c5fe05f 292404 
libstaden-read-dev_1.13.3-1_amd64.deb
 4b5ab8ceb4c4ad29ebf0a9ee5081c29d8fb122704f62ab5e2c8db9bbe54a4367 230196 
libstaden-read1_1.13.3-1_amd64.deb
Files: 
 20c9a9e766b40db5892527f613936800 2297 science optional 
staden-io-lib_1.13.3-1.dsc
 819393d28cb0a8606242e5a8445f6ac1 1660530 science optional 
staden-io-lib_1.13.3.orig.tar.gz
 06a1db48b76e341ed7682d6ec006e83e 10792 science optional 
staden-io-lib_1.13.3-1.debian.tar.gz
 4b9db3315bf8ac407ff21a92a7237003 197676 science optional 
staden-io-lib-utils_1.13.3-1_amd64.deb
 7b4a1679fc261d914947ebe35d24b291 292404 libdevel optional 
libstaden-read-dev_1.13.3-1_amd64.deb
 c2b9eb8042fe266814d8a847550be4a9 230196 libs optional 
libstaden-read1_1.13.3-1_amd64.deb

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

iQIcBAEBCgAGBQJSma7nAAoJEMW9bI8ildUCScUP/j0DvJQgYr7oyquE4PEjxt9+
Dw1Wjch3jVkjcSEIVgF/Zx+xqQOQHMP/8rPxSYn//HVOFmBuGvGynX168ozJZvIl
n6HBbMxBXEzY3iY78cL9nlwhSrLIivK+rpYsScttGXJ6+JvAfc9dCwtG4+gkad6+
g2dgc/vSE6jKFDJWdVA9ZU0D3nn7VoLHFik7x6qDW8BEKElvtbJ/ipsjJOdupf4J
aFjvPBWL7/suRVuUa6CqFag+xqNnMnPVoNiJMYOYLZ8gE9coghWAEIOT446KEtdt
HGXWjpi59UtE4j4qhneN4MMoHcSmYA6TXhkqTTL8k9wwtom0zmLr+gV3tJ39pZ7n
N3raQl0D0pJ+wH8zRHJVW27XZw20b+yXtfA0PctE5pm2oyT/QAu5FdjHTnR6cv17
MXPOiEmpCVMBsNSQtpm+Pq9uWEGyVckUuiagac0q0aj0n64UrFLbRz3bklNvhkRT
aCo0Sy0dXeIvUGNvyDXe/BqiDpFsIU/naCixKclLA6I+vwgzuBfSA9WM5ARTmNdU
Ca8lCFHWbGth8kZRWUzzkva1ZW7lqYXyMoX55jvL35eYd0e2NiKOd3PPq7kvqotC
Ye3Fqh0slJ96MDX9tDgxgyG2xu0a8Aa7zgAyQ1GbmEK4RnsxlMDMpl/1a8H8e9Np
OjolauBweWgP8CP5RiBA
=dBuF
-END PGP 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/e1vmhbx-00053q...@franck.debian.org



Accepted bundler 1.5.0~rc.1-exp1 (source all)

2013-11-30 Thread Christian Hofstaedtler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 11:51:56 +0100
Source: bundler
Binary: bundler
Architecture: source all
Version: 1.5.0~rc.1-exp1
Distribution: experimental
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Christian Hofstaedtler z...@debian.org
Description: 
 bundler- Manage Ruby application dependencies
Changes: 
 bundler (1.5.0~rc.1-exp1) experimental; urgency=low
 .
   * New upstream release candidate.
Checksums-Sha1: 
 1c443111fbd47dd12fc21558d19055b79004089d 2067 bundler_1.5.0~rc.1-exp1.dsc
 0c6aec7a98bba11cc9dee556a087dade2c09dd23 291843 bundler_1.5.0~rc.1.orig.tar.gz
 471bee9d2a8b7e09f04ae4f621c0ec03783ad525 4962 
bundler_1.5.0~rc.1-exp1.debian.tar.gz
 e714127885852d7742902b4566caed66ec258b5f 142564 bundler_1.5.0~rc.1-exp1_all.deb
Checksums-Sha256: 
 555095a735b8cf223d1372ad7e62f82cb71e0525df2faff3924a10ab20e7879f 2067 
bundler_1.5.0~rc.1-exp1.dsc
 265534afc3263369fa057884942d189a8ae90f0c00c86f8b4c04643b4fb83fc0 291843 
bundler_1.5.0~rc.1.orig.tar.gz
 92b6e4fe46f70d089203e16ee642c1d08ad8da8a4d185a590e3626bc76905b52 4962 
bundler_1.5.0~rc.1-exp1.debian.tar.gz
 66be6a0e1a43e56074b0d5b86690be0fa6f7019bf3955e4170ee5ddc8e139f23 142564 
bundler_1.5.0~rc.1-exp1_all.deb
Files: 
 5dd250bc06dee831aadd38f96d1848a3 2067 ruby optional bundler_1.5.0~rc.1-exp1.dsc
 4da21b6b43ad80f69be02be2bec28a46 291843 ruby optional 
bundler_1.5.0~rc.1.orig.tar.gz
 169a9047f9a563d26012f207bc9cb260 4962 ruby optional 
bundler_1.5.0~rc.1-exp1.debian.tar.gz
 675396f8f88af301e3504896e1b1b9c9 142564 ruby optional 
bundler_1.5.0~rc.1-exp1_all.deb

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

iQIcBAEBCAAGBQJSmcSdAAoJEFwT1tuTBS4DJw4P/2Cl3lutam4k1ssGy4/PWyqO
BDFgKNhPXg88wI8y+9se6Jmg2HfllV6G4ho/DTpIRz/S378jGfOBR1i4DyaJmiAy
nS5f5vhhBLWLm/NxLcdHnQVRhKu6Fj9gx9wtlmPbsSfRJTNofmLhgBSfDYTOBUwZ
VGg1Qx3rIoB1xaYGfKdIjJ9537yCMRmvI/M8JA2zVAM+pp0mv2qFk52iJcnr/YtW
Hnx87D4ad7F9yiGcqYpvsvebtHSOFEQAdScHpD+zlRSod9mH1XEjUP/rd9k1PoHb
ARPl7gCBZtqfH3BY6qDoT4NXxqJ+4acRVSPZ4JHzfLP8KRr2KN903By6fMJJF2ZJ
ek/HaFCcc4qU8O8n6EPrUfnpTawVqshnSFwzH1pjteYCrDfM/KzHmRLYZbb5Y76z
FKX+rQLKWv8YyD8DX+4oEMVoza1yOR+gJyxTPpbRYGywMT/YRV2t12am4tUXa2Zf
LsI/04sb627YzgDk3lD+ClBccFCjsAnphfmZctgZcKKf4WqWu2aHJoGSSpQPItGh
LPiJI4m8gEFx/FelUfCjOwaSQu84ic4A6OLgD+inbxU/k+oA0LfzUH4uZhgC7KaK
fHJ3vWVtALVeeH9J8EjE4y9Y0UfgJYC/2Rh5TZ7t4PnPipHAxm3NoQaAUznOJJd+
uJOHqznOOAaLlxKelLE7
=30YA
-END PGP 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/e1vmikb-0001iz...@franck.debian.org



Accepted python-larch 1.20131130-1 (all source)

2013-11-30 Thread Lars Wirzenius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 09:50:25 +
Source: python-larch
Binary: python-larch
Architecture: all source
Version: 1.20131130-1
Distribution: unstable
Urgency: low
Maintainer: Lars Wirzenius l...@liw.fi
Changed-By: Lars Wirzenius l...@liw.fi
Description: 
 python-larch - B-tree library for Python
Changes: 
 python-larch (1.20131130-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 21ba90f7de2231c1edff2668bd1282d0a50571bd 78386 
python-larch_1.20131130-1_all.deb
 07d8f540ae8a90e5e682f2658b8d2f4206a9aa2c 1489 python-larch_1.20131130-1.dsc
 3b9bf0084dcc393aa4f07ed959c52826df8e5f35 86509 
python-larch_1.20131130.orig.tar.gz
 66d3947ab6e70d723858b97ec56fe327f9b5ff57 3792 python-larch_1.20131130-1.diff.gz
Checksums-Sha256: 
 07321179395f90fa659b28400f17a1780edf61346fd9a79a86f14ece9aabf7e0 78386 
python-larch_1.20131130-1_all.deb
 d4d37727c25687fae91abfae3239074bf9d820048b2d0f6e7a31721d73e35b5a 1489 
python-larch_1.20131130-1.dsc
 2717e851bde45b66e8b2d44181861f24135d185abab819857943d3b5cac1 86509 
python-larch_1.20131130.orig.tar.gz
 ba2f8982486ca1bbd17e041b724ce64adcf6e85ee24e52e1dd85683e29b5747a 3792 
python-larch_1.20131130-1.diff.gz
Files: 
 1c834335da92048403ffb8fb7d36cfe5 78386 python optional 
python-larch_1.20131130-1_all.deb
 182f48586c47627db74eb02587027a52 1489 python optional 
python-larch_1.20131130-1.dsc
 766d14840b3872de92761a32ecbe80ef 86509 python optional 
python-larch_1.20131130.orig.tar.gz
 649335a585891067ab935d599b6670fc 3792 python optional 
python-larch_1.20131130-1.diff.gz

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

iQEcBAEBCAAGBQJSmcHuAAoJEIahkFub41rmvD4H/jnPCO9Q9TTIvlK0qXT2uN3J
z5DH/LiYJtXPJTzK+XdUB499su0mCBHSH0grAGTTowHheG2ETcubCwzHpP4Sq3oV
rF+jfPuSF8GgJnmdYBdLFZucx9ptuUsNfx83yAevksbmP0J2//pis8iEuuRmy7Sh
UxlUsvu9AKzfoFogWmooJpx1fHA5Fe/ZZkOkd8DDmd+fA1DfQrB0WCsQNwk8q6ML
TyHGrciiH5jcfWXrrbZ/Vhju1drUTcSP9hliK1lfGniz3ngZ4GVfM21QF0w2xEsR
3+rUuk0HRLcfzunBMmNTf5X022D1KqEOu9wjymOrCXj+aPsZ+ydUGIy03T/4iPk=
=8vtj
-END PGP 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/e1vmikm-0001nx...@franck.debian.org



Accepted neutron 2013.2-6 (source all)

2013-11-30 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 25 Nov 2013 17:21:56 +
Source: neutron
Binary: python-neutron neutron-server neutron-common neutron-plugin-nec-agent 
neutron-l3-agent neutron-dhcp-agent neutron-metadata-agent 
neutron-metering-agent neutron-vpn-agent neutron-lbaas-agent 
neutron-plugin-openvswitch-agent neutron-plugin-linuxbridge-agent 
python-quantum quantum-server quantum-common quantum-plugin-cisco 
quantum-plugin-nec quantum-plugin-nec-agent quantum-plugin-bigswitch 
quantum-plugin-hyperv quantum-plugin-brocade quantum-plugin-plumgrid 
quantum-plugin-metaplugin quantum-plugin-nicira quantum-l3-agent 
quantum-dhcp-agent quantum-metadata-agent quantum-lbaas-agent 
quantum-plugin-openvswitch quantum-plugin-openvswitch-agent 
quantum-plugin-linuxbridge quantum-plugin-linuxbridge-agent
Architecture: source all
Version: 2013.2-6
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 neutron-common - OpenStack virtual network service - common files
 neutron-dhcp-agent - OpenStack virtual network service - DHCP agent
 neutron-l3-agent - OpenStack virtual network service - l3 agent
 neutron-lbaas-agent - OpenStack virtual network service - LBaaS agent
 neutron-metadata-agent - OpenStack virtual network service - metadata agent
 neutron-metering-agent - OpenStack virtual network service - metering agent
 neutron-plugin-linuxbridge-agent - OpenStack virtual network service - Linux 
bridge agent
 neutron-plugin-nec-agent - OpenStack virtual network service - NEC agent
 neutron-plugin-openvswitch-agent - OpenStack virtual network service - Open 
vSwitch agent
 neutron-server - OpenStack virtual network service - server
 neutron-vpn-agent - OpenStack virtual network service - VPN agent
 python-neutron - OpenStack virtual network service - Python library
 python-quantum - transitional dummy package for switching to python-neutron
 quantum-common - transitional dummy package for switching to neutron-common
 quantum-dhcp-agent - transitional dummy package for upgrading 
quantum-dhcp-agent
 quantum-l3-agent - transitional dummy package for upgrading quantum-l3-agent
 quantum-lbaas-agent - transitional dummy package for upgrading 
quantum-lbaas-agent
 quantum-metadata-agent - transitional dummy package for upgrading 
quantum-metadata-agent
 quantum-plugin-bigswitch - transitional dummy package for upgrading 
quantum-plugin-bigswitch
 quantum-plugin-brocade - transitional dummy package for upgrading 
quantum-plugin-brocade
 quantum-plugin-cisco - transitional dummy package for upgrading 
quantum-plugin-cisco
 quantum-plugin-hyperv - transitional dummy package for upgrading 
quantum-plugin-hyperv
 quantum-plugin-linuxbridge - transitional dummy package for upgrading 
quantum-plugin-linuxbrid
 quantum-plugin-linuxbridge-agent - transitional dummy package for upgrading 
quantum-plugin-linuxbrid
 quantum-plugin-metaplugin - transitional dummy package for upgrading 
quantum-plugin-metaplugi
 quantum-plugin-nec - transitional dummy package for upgrading 
quantum-plugin-nec
 quantum-plugin-nec-agent - transitional dummy package for upgrading 
quantum-plugin-nec-agent
 quantum-plugin-nicira - transitional dummy package for upgrading 
quantum-plugin-nicira
 quantum-plugin-openvswitch - transitional dummy package for upgrading 
quantum-plugin-openvswit
 quantum-plugin-openvswitch-agent - transitional dummy package for upgrading 
quantum-plugin-openvswit
 quantum-plugin-plumgrid - transitional dummy package for upgrading 
quantum-plugin-plumgrid
 quantum-server - transitional dummy package for switching to neutron-server
Changes: 
 neutron (2013.2-6) unstable; urgency=low
 .
   * Now starts the openvswitch agent using the ml2 config if this is the plugin
 which is in use in the core_plugin directive.
   * Now sets the OVSHybridIptablesFirewallDriver as default firewall driver.
   * Changes the rights of /var/lib/neutron/dhcp in Ubuntu, and depends:
 dpkg-dev to check if we are in Ubuntu.
Checksums-Sha1: 
 2ab95a4bb65642ac78bfcfe9b24ef4d294d63115 5211 neutron_2013.2-6.dsc
 a22ceacb306fceb9c44f8238d9fa46c41b446334 26248 neutron_2013.2-6.debian.tar.gz
 33ba8ca5e72cefa7e82288e0a14075970502e4da 894194 python-neutron_2013.2-6_all.deb
 e9bd8ea95bb2c4b93d66603064772255282ba720 12348 neutron-server_2013.2-6_all.deb
 f9ae8fd21c2942b818bcb16fbfb449b032559dad 34752 neutron-common_2013.2-6_all.deb
 7f1a13faa68bc20bd01aa9c26e9a4d8c0ec37af9 3310 
neutron-plugin-nec-agent_2013.2-6_all.deb
 ea9d24fca05e8e920496097455740c11129aa058 5470 neutron-l3-agent_2013.2-6_all.deb
 51515ac963c52596115b3c210e3f8bd9fcb88979 11976 
neutron-dhcp-agent_2013.2-6_all.deb
 44a19a6212877627e3d04fd1e3bd8506a5ded5ea 11906 
neutron-metadata-agent_2013.2-6_all.deb
 d2f07025b5cb7c83afc931c7bbbecdc42d0ae294 4526 
neutron-metering-agent_2013.2-6_all.deb
 5bdeec7adc142ee1b1ef74cf81b865603846c364 4560 

Accepted unrtf 0.21.5-1 (source i386)

2013-11-30 Thread Willi Mann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 12:29:40 +0100
Source: unrtf
Binary: unrtf
Architecture: source i386
Version: 0.21.5-1
Distribution: unstable
Urgency: low
Maintainer: Willi Mann wi...@debian.org
Changed-By: Willi Mann wi...@debian.org
Description: 
 unrtf  - RTF to other formats converter
Changes: 
 unrtf (0.21.5-1) unstable; urgency=low
 .
   * Imported Upstream version 0.21.5
   * fix lintian vcs-field-not-canonical: git.debian.org - anonscm.debian.org
   * Add Homepage field in d/control
   * d/watch: More flexibility, thanks Bart Martens
   * Add import script to filter unneeded files from upstream tarball
   * Standards-Version 3.9.4 = 3.9.5 (no changes)
Checksums-Sha1: 
 23623676ced7f5e01eef62c5d090d3d05d269823 1838 unrtf_0.21.5-1.dsc
 ad42430e67555a25efdbce7be64a31c2e4d6832d 645273 unrtf_0.21.5.orig.tar.gz
 222f15eb9b39a48c6111e7a9a49c9de24be8edb1 3851 unrtf_0.21.5-1.debian.tar.gz
 9bd1f693320602e15a3c9ffc8404195a57716797 49716 unrtf_0.21.5-1_i386.deb
Checksums-Sha256: 
 8175fd0deec4371d38feb52a18750df93c9b88d058aa6b78c7395d104adf516f 1838 
unrtf_0.21.5-1.dsc
 959b095458940e12e09d1b8f465c4230305c1884062a0f40589f3bce2aab5396 645273 
unrtf_0.21.5.orig.tar.gz
 9ad44c910e471d311774cf83e276073a15571a234addb68e8454e16de2f224d2 3851 
unrtf_0.21.5-1.debian.tar.gz
 9a745cc65f1558b60ec223c37e38b487c1fa35b5916b71e9e069e02747dfd923 49716 
unrtf_0.21.5-1_i386.deb
Files: 
 b439426cc8654faae1b47342695369fc 1838 text optional unrtf_0.21.5-1.dsc
 8e965b72298935cdb9f8dc9c89620d89 645273 text optional unrtf_0.21.5.orig.tar.gz
 71b9d52d5fb7a10da4b559804d7ac59b 3851 text optional 
unrtf_0.21.5-1.debian.tar.gz
 5c25e3aad3611a92c1914342fabef85d 49716 text optional unrtf_0.21.5-1_i386.deb

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

iQIcBAEBCAAGBQJSmcx6AAoJEIy+IZx0V22Bg4cQAL7TcrVbZfz/rj924gWQbGE2
F6zyqvyzv56ku8IYp64YhAfV9Es99c5gGZf2ln+FNCFNtupowIrWJXueKr0490GR
cgeQNPcE+FOKIehUs7fPrV5zVhcANJjbOM9IeQrB33+2EBoLqIMCpZLSeb55hTp5
uH/p+xcnuN/DiNdx45+Hh1qxl85bKC1QrN1lIVeIgUubsOZQPh7jglrKP9fMNgIJ
V+dlY4Bgh7YGJZV4U5huUOEaHC7QPdR3b5qLC891y88/ojAbdU4lR0ULbLQn1N5S
SqMMVw2ehivuRAkw219/cmwvOTq8QMaS44XDL9/iS6bw7WbNMtU+zkNxD4Yul/Wo
TrwL5MH8OZ4+y5HxIeuRzcnyHtU4o9eSBu5yPny9nSRj6aJf+DMh/XRUqejsq+up
XyzCuU58m8BceUV62yAVH/iJI+y3cBsH+Ex6g7MIPtD/U+U2sdhQ7OI7Q3aYgq2U
HFKHsmnQ5g40Hs52aoooIACV//xVwWMA+axc2PB4CrYWYUPO6Z95d7/QF8dsD/aS
nAPtFqtaurk1zBnFYrMkLNU3AkpviVQMXrrYvkFjL/mde+xncTkVhwq6KTjpWZcY
Brs0qLA8kcl+nD+XW9MCsuhCOFQI2b8ubPWO+BhPbLKj0AkmNWzDH7NadMQUkzXu
nqU+1vFstThebbuBSNlI
=C0v9
-END PGP 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/e1vmj2g-0003ya...@franck.debian.org



Accepted eximdoc4 4.82-2 (source all)

2013-11-30 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Nov 2013 12:49:28 +0100
Source: eximdoc4
Binary: exim4-doc-info exim4-doc-html
Architecture: source all
Version: 4.82-2
Distribution: unstable
Urgency: low
Maintainer: Exim4 Maintainers pkg-exim4-maintain...@lists.alioth.debian.org
Changed-By: Andreas Metzler ametz...@debian.org
Description: 
 exim4-doc-html - documentation for the Exim MTA (v4) in html format
 exim4-doc-info - documentation for the Exim MTA (v4) in info format
Changes: 
 eximdoc4 (4.82-2) unstable; urgency=low
 .
   * Add docbook-xsl to build-depends.
   * Upload to unstable.
Checksums-Sha1: 
 2a23c57fb580cd9d49c4fef1564d57adef86c908 2174 eximdoc4_4.82-2.dsc
 3b01f7137a1cb99c669f7b519b3288488df4dcb6 9232 eximdoc4_4.82-2.debian.tar.gz
 dcd357bbfb67eefa2915b6d960e6bbd2edf9e653 559740 exim4-doc-info_4.82-2_all.deb
 bd7de1aec937456114f6ca426cc5ab5567820f7b 458608 exim4-doc-html_4.82-2_all.deb
Checksums-Sha256: 
 a45250ace14b29d42bf5c7089d3c9abafd88dc689db4efcfcab40eb9d0ce2628 2174 
eximdoc4_4.82-2.dsc
 4420fd8bfe66d0122c897828aeaea5d8a13834a1e76c074a99f59a8a9da7da43 9232 
eximdoc4_4.82-2.debian.tar.gz
 e1c74833763f7e47f4d490c5aac680b9b5db43e2a17eaab8dfbd824cc5807463 559740 
exim4-doc-info_4.82-2_all.deb
 7da014b7449d517848fe92b771f8e6f72a79213c5f0f49ac846f604d3d256f55 458608 
exim4-doc-html_4.82-2_all.deb
Files: 
 09ec530fac2a46e1c6a0f7f9e75bf9c9 2174 doc optional eximdoc4_4.82-2.dsc
 39d7c71355176f34b6574315c454fc18 9232 doc optional 
eximdoc4_4.82-2.debian.tar.gz
 801c897853f0beab3991627271e9 559740 doc optional 
exim4-doc-info_4.82-2_all.deb
 75393d7b8702997bd8a7c0dd8a48f240 458608 doc optional 
exim4-doc-html_4.82-2_all.deb

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

iQIcBAEBCgAGBQJSmdHMAAoJEKVPAYVDghSEkIUP/jmvoNrqydCN4XAAB/nUE0zM
vU2VDQhQCQqOGmoymklMKdzyqQ5TCxT2dFvaLzKJ9KaGbeESgXxMt5rxfEUtKxZe
HlxC37kmZCZ7jKLN7EjnXXGSC+yQ4WPxZRpYf+588e/fFeihC/+N4npyIO5KArEb
a2YOQfcj9YDhj2GE5G2MRtrEB2IDyDzNdnZVdRZzPjKZCVmPZFPa2MJBQc/ygYNn
pgagnzLcEk3Dpmzx/yfxtakifh6q/ztzQ7FwHEqlVZtghWBnAyCKT4p7XZ7Nd7xT
xRCu8RrwC1rm4paWydwr0/+yCAG0vN2RVQbQjsjHjK3ps/ZpLLIaXRlR4pZ3kDTw
paWOQdPFHHpby1fcN+iY+tpupfgl2LMPYW2DJqZWcXWhynJSLc/RhAUrWixnQ7sV
tdf5bWTcv+x8QunKH/PC+B/EB/+xhEHxM4RViS6uXJg43A4Fp5h85fDczE3mMYO3
xK1tol/T6S9RoLjcxkVsiNYFTEEPj/M3UfAPASE3vhtzURxuJpN7wBa8dTHMqk0+
+gzBcSnli3Y2+WW2YcrGvPRkDtlpHtdidJP/5cQe82lsvQyN9KZzfteXLfhg8aqr
XfXD3ft63iknuVaGWGVNnacwPVJRYw5gxiFClRq8CnmFUTwZ3h7a0OM/Zm0ZiJL2
OjVP0ZXy//+M2jk1+9Lr
=Z8cd
-END PGP 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/e1vmjgc-0006ds...@franck.debian.org



Accepted freebsd-glue 0.2.2 (source kfreebsd-amd64)

2013-11-30 Thread Robert Millan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 12:09:03 +0100
Source: freebsd-glue
Binary: freebsd-glue libfreebsd-glue-0 libfreebsd-glue-0-udeb
Architecture: source kfreebsd-amd64
Version: 0.2.2
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers debian-...@lists.debian.org
Changed-By: Robert Millan r...@debian.org
Description: 
 freebsd-glue - Emulate a FreeBSD build environment
 libfreebsd-glue-0 - FreeBSD glue environment (shared objects)
 libfreebsd-glue-0-udeb - FreeBSD glue environment (udeb) (udeb)
Changes: 
 freebsd-glue (0.2.2) unstable; urgency=low
 .
   * Add strnstr().
   * setfstab: Only fail when file != NULL. Set errno when failing.
   * Provide libbsdxml stubs (for libexpat).
Checksums-Sha1: 
 fa8fd3099486ebfcbc0e468b4a21de98d4451958 1204 freebsd-glue_0.2.2.dsc
 98887349f40a34efbd9e47a0c53d7aeb3cfb3f21 45741 freebsd-glue_0.2.2.tar.gz
 398e1d6d517cdbb8c3f7b69a887c797cf68d625e 40902 
freebsd-glue_0.2.2_kfreebsd-amd64.deb
 7a3b5dc55ba20a3bb23a5b49ff3dcad970e78398 13766 
libfreebsd-glue-0_0.2.2_kfreebsd-amd64.deb
 ba3766b3e974819b250a9d4d7d4de2a6c583eb06 9674 
libfreebsd-glue-0-udeb_0.2.2_kfreebsd-amd64.udeb
Checksums-Sha256: 
 a5c0f8509ff23661d323072ca82a34fe9b0d4f1b95265a1eb0793ee30aad0af5 1204 
freebsd-glue_0.2.2.dsc
 b3ed2d321b04c1110b3a803d0cdd3c8999f045c54e3f27773259a3fedc2b55d7 45741 
freebsd-glue_0.2.2.tar.gz
 a728b472dcde3ef4a94026dede9a7a32aa3d0526808b9779d34be87ccf43e4ee 40902 
freebsd-glue_0.2.2_kfreebsd-amd64.deb
 66b4dc8007b82d90debc1d7e02a76d34d410308955af346c3ed32fd17cb2eec2 13766 
libfreebsd-glue-0_0.2.2_kfreebsd-amd64.deb
 eba699abb16767fcca041bdeaed55ea4ccfaef61ff86de51613b3a9f9c6d021b 9674 
libfreebsd-glue-0-udeb_0.2.2_kfreebsd-amd64.udeb
Files: 
 8caace1499c49b86c5e5e9c96dd95b8a 1204 devel extra freebsd-glue_0.2.2.dsc
 114533c613cba8eceb17c97405cd8023 45741 devel extra freebsd-glue_0.2.2.tar.gz
 ac609498f47ef6043412e38223400990 40902 devel extra 
freebsd-glue_0.2.2_kfreebsd-amd64.deb
 81faa6902e47af369a14f0c843abe745 13766 devel extra 
libfreebsd-glue-0_0.2.2_kfreebsd-amd64.deb
 8d0106839371b409edba7348abf3e8ac 9674 debian-installer extra 
libfreebsd-glue-0-udeb_0.2.2_kfreebsd-amd64.udeb

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

iEYEARECAAYFAlKZ00kACgkQC19io6rUCv/i+ACfUUGTby0Tx97UxPhsaX1JdRL+
bLgAnAlZDcuyzaDcrBCjVhoZFC1LgBEb
=Efgx
-END PGP 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/e1vmjv8-ui...@franck.debian.org



Accepted freebsd-glue 0.2.3 (source kfreebsd-amd64)

2013-11-30 Thread Robert Millan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 13:08:07 +0100
Source: freebsd-glue
Binary: freebsd-glue libfreebsd-glue-0 libfreebsd-glue-0-udeb
Architecture: source kfreebsd-amd64
Version: 0.2.3
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers debian-...@lists.debian.org
Changed-By: Robert Millan r...@debian.org
Description: 
 freebsd-glue - Emulate a FreeBSD build environment
 libfreebsd-glue-0 - FreeBSD glue environment (shared objects)
 libfreebsd-glue-0-udeb - FreeBSD glue environment (udeb) (udeb)
Changes: 
 freebsd-glue (0.2.3) unstable; urgency=low
 .
   * Only install *.so symlink for libfreebsd-glue.
Checksums-Sha1: 
 0b3c88ada3537e0241ca70a8f3de90bf86f40546 1204 freebsd-glue_0.2.3.dsc
 60c9c9ad4a05fe5aee85dba3bfc6cec1c15ae0b9 45856 freebsd-glue_0.2.3.tar.gz
 a4f4517620f3aa5a47834611bb3b0578fc5748d3 40614 
freebsd-glue_0.2.3_kfreebsd-amd64.deb
 80a66ebf09aec6101e5675128b0735af08dcd4f0 13814 
libfreebsd-glue-0_0.2.3_kfreebsd-amd64.deb
 f6e0f21758324b1041bb8cab47465742308945ed 9702 
libfreebsd-glue-0-udeb_0.2.3_kfreebsd-amd64.udeb
Checksums-Sha256: 
 ffb9c47f2c4923893c61782bf20a7dfe385cac8d3d40ede4437b2627f128ba4b 1204 
freebsd-glue_0.2.3.dsc
 d2b32928b44ecb0d0ec712f6773c7fc92e173b2607b896b841d1766d97811c5d 45856 
freebsd-glue_0.2.3.tar.gz
 841bcffebf513c62fbb78e2a146d4f4dd8f97c3b080084afc9f84435c91e 40614 
freebsd-glue_0.2.3_kfreebsd-amd64.deb
 f1c4cd2b98aa9e39167db71318f0acdd58ba004c6af6c3ddb19cba57efde673a 13814 
libfreebsd-glue-0_0.2.3_kfreebsd-amd64.deb
 72eddce5244ebde2062c04bfe3552532ef7b9f3159b92c8112c0f81ac2a80243 9702 
libfreebsd-glue-0-udeb_0.2.3_kfreebsd-amd64.udeb
Files: 
 4ea276f8221ed1efcd3663b71c043a4f 1204 devel extra freebsd-glue_0.2.3.dsc
 1059d03aa47f2c0f4028c25c29fe7825 45856 devel extra freebsd-glue_0.2.3.tar.gz
 01e1045b570e8f507f5f91476f85cb32 40614 devel extra 
freebsd-glue_0.2.3_kfreebsd-amd64.deb
 dadff31e76862f3e22ebb07e8a8603ae 13814 devel extra 
libfreebsd-glue-0_0.2.3_kfreebsd-amd64.deb
 83323afce191abb1687f5ae539f83630 9702 debian-installer extra 
libfreebsd-glue-0-udeb_0.2.3_kfreebsd-amd64.udeb

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

iEYEARECAAYFAlKZ1U4ACgkQC19io6rUCv9mGACeM/Ypcj0X7DYrVPDUSVqPivXW
gDIAoIV6m+MjZe8iVjrVoNcbE4ieLL3p
=LX0z
-END PGP 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/e1vmjvg-zz...@franck.debian.org



Accepted freebsd-libs 9.2+ds1-8 (source kfreebsd-amd64 all)

2013-11-30 Thread Robert Millan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 13:02:31 +0100
Source: freebsd-libs
Binary: libsbuf6 libsbuf6-udeb libsbuf-dev libdwarf-freebsd-3 
libdwarf-freebsd-dev libelf-freebsd-1 libelf-freebsd-dev libcam6 libcam-dev 
libgeom1 libgeom-dev libgeom1-udeb libusbhid4debian libusbhid-common 
libusbhid-dev libusb2debian libusb2-dev libusb2debian-udeb libkvm0 libkvm-dev 
libdevstat7 libdevstat-dev libmemstat3 libmemstat-dev libnetgraph4 
libnetgraph-dev libipx2 libipx-dev libipx2-udeb libkiconv4 libkiconv-dev 
libjail1 libjail-dev libalias7 libalias-dev
Architecture: source kfreebsd-amd64 all
Version: 9.2+ds1-8
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers debian-...@lists.debian.org
Changed-By: Robert Millan r...@debian.org
Description: 
 libalias-dev - Development files for libalias
 libalias7  - FreeBSD packet aliasing library
 libcam-dev - Development files for libcam
 libcam6- FreeBSD CAM (Common Access Method) library
 libdevstat-dev - Development files for libdevstat
 libdevstat7 - FreeBSD devstat (kernel interface) library
 libdwarf-freebsd-3 - library to consume and produce DWARF debug information 
(FreeBSD v
 libdwarf-freebsd-dev - Development files for libdwarf (FreeBSD version)
 libelf-freebsd-1 - library to read and write ELF files
 libelf-freebsd-dev - Development files for libelf (FreeBSD version)
 libgeom-dev - Development files for libgeom
 libgeom1   - FreeBSD GEOM library
 libgeom1-udeb - FreeBSD GEOM library (udeb) (udeb)
 libipx-dev - Development files for libipx
 libipx2- FreeBSD IPX address conversion support library
 libipx2-udeb - FreeBSD IPX address conversion support library (udeb) (udeb)
 libjail-dev - Development files for libjail
 libjail1   - FreeBSD jail library
 libkiconv-dev - Development files for libkiconv
 libkiconv4 - FreeBSD kernel side iconv library (udeb)
 libkvm-dev - Development files for libkvm
 libkvm0- FreeBSD kvm (kernel memory interface) library
 libmemstat-dev - Development files for libmemstat
 libmemstat3 - FreeBSD memstat (kernel interface) library
 libnetgraph-dev - Development files for libnetgraph
 libnetgraph4 - FreeBSD netgraph (kernel interface) library
 libsbuf-dev - Development files for libsbuf
 libsbuf6   - FreeBSD string buffer library
 libsbuf6-udeb - FreeBSD string buffer library (udeb) (udeb)
 libusb2-dev - Development files for libusb2
 libusb2debian - FreeBSD userspace USB programming library
 libusb2debian-udeb - Development files for libusb2 (udeb) (udeb)
 libusbhid-common - Common files for the USB HID devices FreeBSD library
 libusbhid-dev - Development files for libusbhid
 libusbhid4debian - FreeBSD library to access USB HID devices
Changes: 
 freebsd-libs (9.2+ds1-8) unstable; urgency=low
 .
   * Simplify 04_libkvm.diff even further.
   * Remove gratuitous header dependencies.
   * Remove 07_libkiconv.diff (obsolete).
Checksums-Sha1: 
 4afe053ee82f1cbb943232706ef135bf5bccc48e 3280 freebsd-libs_9.2+ds1-8.dsc
 872590cc4bd8704b1bd8cab00668ecd4a7e6a6ec 28337 
freebsd-libs_9.2+ds1-8.debian.tar.gz
 8cc883c0d62169675de00590380bc4837c0fa42e 15072 
libsbuf6_9.2+ds1-8_kfreebsd-amd64.deb
 bb606bc3a21e2f8d0ae4ee8219910c4393840464 4728 
libsbuf6-udeb_9.2+ds1-8_kfreebsd-amd64.udeb
 dd78dbd37fe8d6761c81390a36a74bdfa2b29c11 14768 
libsbuf-dev_9.2+ds1-8_kfreebsd-amd64.deb
 9d25d9c5b31182c1ea136950d89e87df2ef15d3f 25158 
libdwarf-freebsd-3_9.2+ds1-8_kfreebsd-amd64.deb
 bff5e18d04343b21e540490c6102a0c52b6c308e 30582 
libdwarf-freebsd-dev_9.2+ds1-8_kfreebsd-amd64.deb
 16b9e78f1ff0c852ee5f18550c5010f90e01808f 40746 
libelf-freebsd-1_9.2+ds1-8_kfreebsd-amd64.deb
 c12d44b01e92a0c9cdc4514fd49a25e83a558386 46968 
libelf-freebsd-dev_9.2+ds1-8_kfreebsd-amd64.deb
 0f7b719e8eed73628800a88d883dc92c37ed2c5f 54978 
libcam6_9.2+ds1-8_kfreebsd-amd64.deb
 e7b4f396037a4305ecff6a41c818b433b10e27e6 65908 
libcam-dev_9.2+ds1-8_kfreebsd-amd64.deb
 e91900ca7560f466b8c1f3377a9291ce1d9c144a 19492 
libgeom1_9.2+ds1-8_kfreebsd-amd64.deb
 b19e9ab49d04b683f8a21aa564c657d8db3dd1df 23780 
libgeom-dev_9.2+ds1-8_kfreebsd-amd64.deb
 9013bbc966ed753cb6c75b207273a066e9745ca3 9034 
libgeom1-udeb_9.2+ds1-8_kfreebsd-amd64.udeb
 73e83cf55b145d76cd8bcf18a2ef1a91432f9b3f 17504 
libusbhid4debian_9.2+ds1-8_kfreebsd-amd64.deb
 6c7d5ee7559cac6bd53577dc012427738a69f2fa 21018 
libusbhid-dev_9.2+ds1-8_kfreebsd-amd64.deb
 4f01a217807fae085ccb612c6d50b75b74595ab2 39198 
libusb2debian_9.2+ds1-8_kfreebsd-amd64.deb
 4b673971240264850857409c519af5e6e0898054 60456 
libusb2-dev_9.2+ds1-8_kfreebsd-amd64.deb
 03943c8fec399974d8e66204f533181577d637a2 27546 
libusb2debian-udeb_9.2+ds1-8_kfreebsd-amd64.udeb
 a5be92af8b3d8eb62441c25a144586e0515578ab 26050 
libkvm0_9.2+ds1-8_kfreebsd-amd64.deb
 861f095c6e3c996c4390728b7f0056b20b502230 47868 
libkvm-dev_9.2+ds1-8_kfreebsd-amd64.deb
 e4dcd94e86187a58d1358d8ddc561b8f283b3148 19376 
libdevstat7_9.2+ds1-8_kfreebsd-amd64.deb
 eef02f89d4a716f296ddc205640c6358ad0eb30b 25714 

Accepted ufsutils 9.2-3 (source kfreebsd-amd64)

2013-11-30 Thread Robert Millan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 12:56:31 +0100
Source: ufsutils
Binary: ufsutils ufsutils-udeb
Architecture: source kfreebsd-amd64
Version: 9.2-3
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers debian-...@lists.debian.org
Changed-By: Robert Millan r...@debian.org
Description: 
 ufsutils   - UFS filesystems utilities
 ufsutils-udeb - stripped-down versions of ufsutils, for debian-installer (udeb)
Changes: 
 ufsutils (9.2-3) unstable; urgency=low
 .
   * Bump kfreebsd-kernel-headers B-D to 9.2~5.
   * Fix ufsutils-udeb shlibs dependencies.
Checksums-Sha1: 
 c853a1686874ef88dc4272bfe5234d658a26f504 1430 ufsutils_9.2-3.dsc
 53e938e13201cb90edf056700a2745dad7d05d22 9427 ufsutils_9.2-3.debian.tar.gz
 9493ad6bc88c0f6bf69b96f64e65ad1c170b388a 149608 
ufsutils_9.2-3_kfreebsd-amd64.deb
 7b87023648b1ce0459f7eac7f36a4b07fb4254cd 92022 
ufsutils-udeb_9.2-3_kfreebsd-amd64.udeb
Checksums-Sha256: 
 7cceebea1f56d9d24269899dcc80cd2cf9c1dff36421f31dcf317162c1fc9887 1430 
ufsutils_9.2-3.dsc
 eca467da2ad846318e8a1b24544ffc2b033ac6aae7bafa008af3863028f124c1 9427 
ufsutils_9.2-3.debian.tar.gz
 abeafd3d18d47f5d8e4c274c22f20e7c6363be3c207d405cb5b1687e1e347621 149608 
ufsutils_9.2-3_kfreebsd-amd64.deb
 debb4cf25c152921d4af06e72a14856b6d091b58bd34193f3f5a3af957ebd6e2 92022 
ufsutils-udeb_9.2-3_kfreebsd-amd64.udeb
Files: 
 712aac046df43158f67166ad1f4d7f95 1430 utils optional ufsutils_9.2-3.dsc
 5feb908967955d299ea135863a41c984 9427 utils optional 
ufsutils_9.2-3.debian.tar.gz
 1cf5714f2fa24480904df89c963c65df 149608 utils optional 
ufsutils_9.2-3_kfreebsd-amd64.deb
 fca9fd1638c1d83056da1f9087a54bc1 92022 debian-installer optional 
ufsutils-udeb_9.2-3_kfreebsd-amd64.udeb

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

iEYEARECAAYFAlKZ0wMACgkQC19io6rUCv9W0QCeNjCJEqeLXDRA+0B+pwwRXGrJ
rmgAnRLudKZYpybuw6EMhL2yOcbU/u1J
=/n1Q
-END PGP 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/e1vmjwb-0001r4...@franck.debian.org



Accepted obnam 1.6-1 (amd64 i386 source)

2013-11-30 Thread Lars Wirzenius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 11:18:48 +
Source: obnam
Binary: obnam
Architecture: amd64 i386 source
Version: 1.6-1
Distribution: unstable
Urgency: low
Maintainer: Lars Wirzenius l...@liw.fi
Changed-By: Lars Wirzenius l...@liw.fi
Closes: 683868 684349 705554 722553 726808
Description: 
 obnam  - online and disk-based backup application
Changes: 
 obnam (1.6-1) unstable; urgency=low
 .
   * New upstream version.
 - Adds a better example for obnam mount (Closes: #726808)
 - Explain --log-max units in manpage (Closes:  #683868)
 - Fix bug for sftp URL handling of /~/ for home dirs
   (Closes: #684349)
 - Missing node problem fixes (Closes: #705554)
   * Add Depends and Build-Depends on python-fuse. (Closes: #722553)
Checksums-Sha1: 
 51a69631d15b31c2bf05569af5ac7402bae09d70 103326 obnam_1.6-1_amd64.deb
 2f80a37f6540b3fb32ab15a4d82d9060ae4e82b7 103388 obnam_1.6-1_i386.deb
 680d9e5855a982b856fc1ebb63f34d70243537d4 1578 obnam_1.6-1.dsc
 081482726721effe284453e572aafffb7c40cbff 177081 obnam_1.6.orig.tar.gz
 f02655360a86c42b671931545842f031d7eb31a9 5201 obnam_1.6-1.diff.gz
Checksums-Sha256: 
 2281207f6e4ab60248034a94920e340ab6e538611be148ea0588b31d4f32f097 103326 
obnam_1.6-1_amd64.deb
 030ecb25b1e3559e7215afbc7125741895fee8a7327b8a9e9a712f2351f6f866 103388 
obnam_1.6-1_i386.deb
 78e370ed4344a715ef87f576ea6171e234e45265626f80cf7f8ccb82736aee0f 1578 
obnam_1.6-1.dsc
 f5be19f4209cb26bf465d4988fe0d8c9f758231c6f5d11f9a9fb59bfee9de0ed 177081 
obnam_1.6.orig.tar.gz
 230fccff62e1acf298736c8d20d6e2256e0be36a0e74472765f759a9080b5f58 5201 
obnam_1.6-1.diff.gz
Files: 
 69c4b5300a9d756d8258b5571fd909a3 103326 python optional obnam_1.6-1_amd64.deb
 c2e110adcd9ba21bd07c7bebc6e757cc 103388 python optional obnam_1.6-1_i386.deb
 b109eaa5f08ed43fd8cbdf1d5849ecdb 1578 python optional obnam_1.6-1.dsc
 4f4ba291eff3bca446f438ee6153182d 177081 python optional obnam_1.6.orig.tar.gz
 5ed0c8541357e2ea22213d64ffbb7c8b 5201 python optional obnam_1.6-1.diff.gz

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

iQEcBAEBCAAGBQJSmd0VAAoJEIahkFub41rmq8AH/jRxqp7c0WOnveMNEaNJTtUO
9xgF5i2xzn4saOqDFMGbslmqTgEXMneTLUfYoVTDZrN3nJ68+yqRLBDXsooJnPYK
GfNdd1PAxtZL5xyR/BIv79nMywUR9LolWESm5DOHLbEFAeMq6TGgCnr255Ij3x3x
ZatCLBYoSp3jiWeOCOcR3u+DVQal8uUXPmXz592LAQknqVfQERiFMsu8LnHu2zfr
TbwzVsOa23VJvGkBj8bhLUgsxcMSAq5tJVf7wPRaGU8uSlmJyTXjc9RSHHRcPaU5
fUFVwEzG+W63+LJdyLMAIwu1W8JJjnG5JfkujGrU5ORrZgLk/hXu9jYPf4uVOaI=
=f5Aq
-END PGP 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/e1vmjzl-0008ez...@franck.debian.org



Accepted mtink 1.0.16-8 (source all amd64)

2013-11-30 Thread Graham Inggs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 11:22:01 +0200
Source: mtink
Binary: mtink mtink-doc
Architecture: source all amd64
Version: 1.0.16-8
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Graham Inggs gra...@nerve.org.za
Description: 
 mtink  - Status monitor tool for Epson inkjet printers
 mtink-doc  - Status monitor tool for Epson inkjet printers - documentation
Changes: 
 mtink (1.0.16-8) unstable; urgency=medium
 .
   * QA upload.
   * Really build with hardening flags.
   * Override Lintian spelling error warnings in non-English text.
   * Add keywords entries to d/*.desktop.
   * Update d/control.in and regenerate d/control:
 - Add VCS fields for new collab-maint repository
 - Rewrite package descriptions
 - Remove trailing spaces
   * Update d/watch - thanks Bart Martens.
Checksums-Sha1: 
 d162fcf2c3312da0f475d9c970456a6afe88bfbd 1684 mtink_1.0.16-8.dsc
 3796faf0c013867de49648cc6452305c5bdbc4a2 38352 mtink_1.0.16-8.debian.tar.gz
 9670c94451d986ca4620effc49b684e7ddeb52c3 508390 mtink-doc_1.0.16-8_all.deb
 4517272aa3eeae09a101b3e760945be4956e0f4c 149234 mtink_1.0.16-8_amd64.deb
Checksums-Sha256: 
 f51250bd619941df04fc4b31de8cb84870425d3a4eeafbc576a97e22294c1cf7 1684 
mtink_1.0.16-8.dsc
 fb4cbaf68ddcde59964eab54d24a13915c0498088eae4c3d3ff16a5113e7 38352 
mtink_1.0.16-8.debian.tar.gz
 4ecd5deef37b17613b0bdb28dcec9ee9b3e8685006dcee5fb3c95c0613d83813 508390 
mtink-doc_1.0.16-8_all.deb
 55a32e2ddfc0dfabf907756136da901ffe96335c93eaf858457067966221721e 149234 
mtink_1.0.16-8_amd64.deb
Files: 
 f63697c3314fd385a6fae5ec130dc039 1684 misc extra mtink_1.0.16-8.dsc
 0a4ec7bda0bb87acabce3d9ca87c5eee 38352 misc extra mtink_1.0.16-8.debian.tar.gz
 401e39938ec4cd8fe38bbf49f0410ca4 508390 doc extra mtink-doc_1.0.16-8_all.deb
 a2ef46492a130b329f70f2b430555676 149234 misc extra mtink_1.0.16-8_amd64.deb

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

iQEcBAEBCAAGBQJSmd/3AAoJEJxcmesFvXUKZRoIAIraUFCtJ3WnNgSa9qbQ99XZ
h4M9gF/2em+CJyrAilBpCrW0JI16kolvDuv+8yQ8xFL3IuAOVcqKd1Rc1Tr9UPlB
fbOydVfEBKRO0RNHVxacroo2FwBup2trWNUbxj2ViJxI6lSWoMl/H4kK3/CYKZrC
GTWI1ly1FBbFA6GTbqFdlbkph6x2L3YL7Occlp2c1pif6u9h8NnjeopmUeVuQTy2
5rlxsnefBG99DTqPV7pG5in1VAfJgakVzwa3+B51V4v21Y8AuSJhIjQ4INkAuRvd
nkoP+gbe4+JCnDdkPPR5VKyHVVZ0Z7KdZUlb3k22Iw8LkjxjbFjWC2xMSYIgtp4=
=h+BU
-END PGP 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/e1vmkcv-0002ad...@franck.debian.org



Accepted php-sabre-vobject 3.1.3-1 (source all)

2013-11-30 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 12 Nov 2013 18:27:03 -0400
Source: php-sabre-vobject
Binary: php-sabre-vobject
Architecture: source all
Version: 3.1.3-1
Distribution: experimental
Urgency: low
Maintainer: ownCloud for Debian maintainers 
pkg-owncloud-maintain...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description: 
 php-sabre-vobject - library to parse and manipulate iCalendar and vCard objects
Changes: 
 php-sabre-vobject (3.1.3-1) experimental; urgency=low
 .
   * Imported Upstream version 3.1.3
   * Ship new documentation
   * Bump standards version to 3.9.5
Checksums-Sha1: 
 8369d61ec00c1429f5b8e7e22fac4d736091f416 1714 php-sabre-vobject_3.1.3-1.dsc
 2e9956b04bfa33e270a5db28d5ab14874c689b20 126093 
php-sabre-vobject_3.1.3.orig.tar.gz
 6adc1f84903faa3e3a6880486cacabe67f3746fd 2361 
php-sabre-vobject_3.1.3-1.debian.tar.gz
 2e1b9d323480f5abcf9a68408024f1776e38285a 68198 
php-sabre-vobject_3.1.3-1_all.deb
Checksums-Sha256: 
 1b113b3b062a6004adac6abd508b9717d4c294cba8e299071c6e42b48f6c5e30 1714 
php-sabre-vobject_3.1.3-1.dsc
 3773fcca3d532b3c594c4130b5663e68281af6cfb0f50c704bfb5c1c2517acde 126093 
php-sabre-vobject_3.1.3.orig.tar.gz
 243ca69596143be91e6ce0f20847b778f5ec58b2aeaee7e7bd33d62dd44ab001 2361 
php-sabre-vobject_3.1.3-1.debian.tar.gz
 261846d3f0e0f3086b551d337215b015cfdb5f5e9de5a4243376eda2b6f98d55 68198 
php-sabre-vobject_3.1.3-1_all.deb
Files: 
 80a93cbddb42992143e303649c7137fd 1714 php optional 
php-sabre-vobject_3.1.3-1.dsc
 9d33224fec9495745363be81489961a4 126093 php optional 
php-sabre-vobject_3.1.3.orig.tar.gz
 b5c822b108875d5c39c69123af5d29e8 2361 php optional 
php-sabre-vobject_3.1.3-1.debian.tar.gz
 d27195997c6c02025c400cd80d5100a6 68198 php optional 
php-sabre-vobject_3.1.3-1_all.deb

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

iQEcBAEBCAAGBQJSmeMNAAoJEAWMHPlE9r08u2oIALJZ2tAgaKj0SxJWa1V1IdtR
Z3g1t5IcnzfwROVXrynp7FlRO/DIdvp9nEtVo2DTI3m71tP3uKc5U0B0hz6AZQ5S
XSHuDAQC7tYvOvSwHeu3Vmt7w1HXo6Jceijt1y0CGkvJ33Pi009UiMRIPhqnEq52
K/yFkdr0W/nAtkU8LmWQwilXYit4ow2LjFNtyu24O3qGDztvNCSbD/x46D4B33JC
hPtOLeQP90xc/Aq6IPrXZVhpLeCGL1RuKd0lAq00rAOVKOoGvOArTctKucuxV0FI
OiEfLJM40SkfLYtkbXYbtLJDls7b9nw8qTIA+fl5KqeRhJZ1G0jY4j+bh22LXNE=
=ayo0
-END PGP 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/e1vmkrk-0005ei...@franck.debian.org



Accepted libwww-perl 6.05-2 (source all)

2013-11-30 Thread Dominique Dumont
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 29 Nov 2013 18:37:09 +0100
Source: libwww-perl
Binary: libwww-perl
Architecture: source all
Version: 6.05-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Dominique Dumont d...@debian.org
Description: 
 libwww-perl - simple and consistent interface to the world-wide web
Changes: 
 libwww-perl (6.05-2) unstable; urgency=low
 .
   * control: added dod to uploaders. Removed jawnsy and ryan
   * added fix-https-patch from upstream that help fix #129528, #622212
 #687834
Checksums-Sha1: 
 1b73902a9d85238aab8f61e7bc58b81c16b79661 2594 libwww-perl_6.05-2.dsc
 456ebb4cab9d52c8a5c0b08fbb1187fada490be6 11959 libwww-perl_6.05-2.debian.tar.gz
 d6002dd0b951099058516288159da60d6cea597a 193126 libwww-perl_6.05-2_all.deb
Checksums-Sha256: 
 07d8ca470a8c1a7aaa89bc2115c5f1d3f2ca7507ac7a6f9d34ba74f4b966f874 2594 
libwww-perl_6.05-2.dsc
 a466f1b9c08e50c71208c5465dad597312298937d581ad279d9af90226124128 11959 
libwww-perl_6.05-2.debian.tar.gz
 eac61f97bd8e264e4ed284b97396374948af083a422c4c6470a2f4c1739ed3ba 193126 
libwww-perl_6.05-2_all.deb
Files: 
 9e3873837bf5a292cb6182270ca07fd9 2594 perl optional libwww-perl_6.05-2.dsc
 dd021bcf9941eff69722177199c51301 11959 perl optional 
libwww-perl_6.05-2.debian.tar.gz
 a3ce047b9019e6a64a64a3ea71bc0232 193126 perl optional 
libwww-perl_6.05-2_all.deb

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

iQIcBAEBAgAGBQJSmePNAAoJEMMfT9lJqytsGv0P/3/HfW0YGspB2dtLCfpCU6l2
7QtzNHriX1MmELdqk2Kk9hGqrqeQs87qVA+4/blaWoPOviZZNUuUXwgX17JMir9u
/a8hBiEE55lZOsIcLGBWtQantgUNasn2JVdHudBWkLkO9tfloqgAwwbaRgGE582B
pzoPCYZRqcKdpZAISqJFPRGKbN0lh2/F0ZGp91L6yvKtOy76vib3vi7i/n8i1OF9
GJTX5Mi4CWIVAqvJiMXUrfjzFVq+rL9Xr1HHijthykERbCzdhGgm7HAFouQuIHWN
q6p9cqgGzN9YoC0QAnnUIhFuwtQ1y/kzINuObYUtwCXZJl/2DUG6PFEYoPhGjg0a
rdu7ziqoEkeHNgkAyfPBq074w0fw/QNnbyMbSl53mA7s4maun/HZikyEDJtmTBXJ
biMH3+p7x90iblR/k0gvXeD1bXfiGtX/STbDPtBg0OfJQ4o6rDKu2/ora6aCvGvM
7hgoVzPJnUbmBL8vFZqFAmGg5sjOXvkvTbXCcNCw0jVo7T6NHjrTBrmsKFOMNLvH
K3QdVFPjsHXIHkYP/abNdD4J5pF7Mkm3/5K1qzUrMcDBqG601R1JTqcEeT5dLv+d
K9l4DzqFvUwFE/D61i1XCsCi6egoSIZBUeWpTgjcVo0ZklHEkaISbkRHIrE+SLvI
lGI+EH18Di8WUQtfuhtn
=GXYn
-END PGP 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/e1vmkfq-0007s9...@franck.debian.org



Accepted starlink-pal 0.3.0-3 (source amd64 all)

2013-11-30 Thread Ole Streicher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 13:27:20 +0100
Source: starlink-pal
Binary: libstarlink-pal-dev libstarlink-pal0 libstarlink-pal-doc
Architecture: source amd64 all
Version: 0.3.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Ole Streicher deb...@liska.ath.cx
Description: 
 libstarlink-pal-dev - Positional Astronomy Library (development files)
 libstarlink-pal-doc - Positional Astronomy Library (documentation)
 libstarlink-pal0 - Positional Astronomy Library (shared library)
Changes: 
 starlink-pal (0.3.0-3) unstable; urgency=low
 .
   * Build with erfa instead of iausofa.
Checksums-Sha1: 
 70159fa3ead3d44ac1df9c2a21e38dcd7371351e 2234 starlink-pal_0.3.0-3.dsc
 59e140a46a8cd3ccfcc8f139b1a24cf796b16b50 6042 
starlink-pal_0.3.0-3.debian.tar.gz
 a40bf6fa13e1f73c3f808cb876675e86384d1da6 51808 
libstarlink-pal-dev_0.3.0-3_amd64.deb
 7ee2bb512c8904f7b654d3e2f92e7988fa6ec095 40206 
libstarlink-pal0_0.3.0-3_amd64.deb
 0cf662681dce68362977244f2a04a89032e0a0be 319102 
libstarlink-pal-doc_0.3.0-3_all.deb
Checksums-Sha256: 
 cbf80c9f9ee4b7a3878bca5f42c1edb09fa7f1b47636be8b7d5a59c438b0d6ad 2234 
starlink-pal_0.3.0-3.dsc
 865c5d4579fbae20e147eee00da032c9c33864888c31a019cf578a831846837a 6042 
starlink-pal_0.3.0-3.debian.tar.gz
 3ee83a7163f0691fc07d83f3ef2a54dde03ab0324dbc2d0dd264fb81e57e801c 51808 
libstarlink-pal-dev_0.3.0-3_amd64.deb
 db6c59bb0163933f11b923bbba7eb0ad726faf99b7f12aadc9ca52eba9cfe916 40206 
libstarlink-pal0_0.3.0-3_amd64.deb
 bc461c71dd965bdb64deee833f1db48f8057f692e302552ef622c034afca5f24 319102 
libstarlink-pal-doc_0.3.0-3_all.deb
Files: 
 258046c1a0f875d7eea42e7e347d00e1 2234 science optional starlink-pal_0.3.0-3.dsc
 08f1e44812979fc5ed85ca8340863486 6042 science optional 
starlink-pal_0.3.0-3.debian.tar.gz
 99e024ee70d61fe2e2e67da2af2a42da 51808 libdevel optional 
libstarlink-pal-dev_0.3.0-3_amd64.deb
 86b2cabdc0ea9e18976c033297df4ddb 40206 libs optional 
libstarlink-pal0_0.3.0-3_amd64.deb
 b4d1c24dd566e574759d18bb690126d2 319102 doc optional 
libstarlink-pal-doc_0.3.0-3_all.deb

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

iQIcBAEBAgAGBQJSmecKAAoJEHEVr9B3ENz32/0P/0Yd5cCpy95lah+Q5AYg3bja
HvpgDu+sUQuMseG7BiKOOE+1eeCTBUJX8iaWFHgfJC+7DZCSez1XWW5aodcL9gxC
LcJYqjgK7UmiUBxmkT/B/nnT4AZyeoP4iYXn5t6knBp8risiz0lANJwILYGrwCgU
CrRDj/xdI0UBpKndhrA9wpDZ0NkG3IGt/C8gEhIYFamb1sjePjIiUYuOLqewpZc9
rOa5Md3in9R7B6UGzvEYpzxwXpMtAz7qtHCJEhqWZbCMOdmmJDEtwXZmgMtQRma9
izyUZXRPSIR0GvVylRcCsc4euiOb/C67mm+7PdIfZpPTJE6fyLP7XUwKpEMU/wi+
v4f61tnKqLITlbtZcbcrRxqaYegfZoO43FIj7QS3Fnx2RHwfbQHL3aZ7hBXESH0T
+6etGTS5UvtqY9NRXRH6ZxPV+PN2UGHuTQ/fdDeoSbKmboPChHVOdWh2O2RZ+KZZ
gczoDEt+f+SDZjKdudr7LPUW6f98mYGKq98Ydz85fkcrmYh01yTwgdAwdTw8vBie
56nA86AJUwuuhsx1GN4r3+wJlFyL89jffgS5VIESzIQqc/jea87WEdoSV/O8yZUf
wbfgR5yiKKXqCxjEn2xwdqkepLNHQ+/PCZa4DJbwwHF2/+Z6S4nG3lJCRFoIVQ52
xR7Gl3SXPIih4b9qjwfu
=4IXn
-END PGP 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/e1vmkgp-000886...@franck.debian.org



Accepted python-astropy 0.3-1 (source amd64 all)

2013-11-30 Thread Ole Streicher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 12:56:34 +0100
Source: python-astropy
Binary: python-astropy python3-astropy python-astropy-doc
Architecture: source amd64 all
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Ole Streicher deb...@liska.ath.cx
Description: 
 python-astropy - Core functionality for performing astrophysics with Python
 python-astropy-doc - Core functionality for performing astrophysics with 
Python (doc)
 python3-astropy - Core functionality for performing astrophysics with Python3
Changes: 
 python-astropy (0.3-1) unstable; urgency=low
 .
   * New upstream version.
   * Remove legacy packages that are no longer supported upstream.
Checksums-Sha1: 
 aad565eb6a80bd6e1596bb02be64ddada7bd5584 2459 python-astropy_0.3-1.dsc
 c7a1a57367dc948ee04cf687794dc20635867aeb 6122102 python-astropy_0.3.orig.tar.gz
 8eb731a60838295d15f4e1ddde76f7ed2fc34ab1 7166 
python-astropy_0.3-1.debian.tar.gz
 46a173fa29abff4caedbb0ae1b427953f840ec7c 2062376 python-astropy_0.3-1_amd64.deb
 83b325b8bbe4b68921d2d0072217b88f928d3429 2025620 
python3-astropy_0.3-1_amd64.deb
 3f38c35739878e871ea1234bd2260aa2a2bed88e 6239178 
python-astropy-doc_0.3-1_all.deb
Checksums-Sha256: 
 0f09e735c2485ca8e4542ed10e5c08b0f612a8587bf0c7833af10569e2286c7b 2459 
python-astropy_0.3-1.dsc
 6c827ed074c1bc83fb0c8909f3c1293531e84a7920c9418747b75c676f60f2d6 6122102 
python-astropy_0.3.orig.tar.gz
 6a2c2e60a7fe35d85f146b2b1284852a1f804dce77dedad8b8e3bd98d199483a 7166 
python-astropy_0.3-1.debian.tar.gz
 6dc91d929c102c6b58e76093f365084a5414c0e1377b658a9aa4451a726462a0 2062376 
python-astropy_0.3-1_amd64.deb
 2795876a32a05ecf65968947935d9312fad55de1b4421da8730f52ebf69e7d53 2025620 
python3-astropy_0.3-1_amd64.deb
 aef12065a9245fedc5db86c2985e0518f6382e6235666e18907171b4bed59fab 6239178 
python-astropy-doc_0.3-1_all.deb
Files: 
 5c3ee79c4a96548a42a8fbb1484919af 2459 python optional python-astropy_0.3-1.dsc
 d9aee73db94d86da1c67607d854c72b7 6122102 python optional 
python-astropy_0.3.orig.tar.gz
 fcf6309ec78d24f3a573ee93c078d576 7166 python optional 
python-astropy_0.3-1.debian.tar.gz
 e47d18f1138070a02e48825330642def 2062376 python optional 
python-astropy_0.3-1_amd64.deb
 d66d15b0727cac955df525af136ff89a 2025620 python optional 
python3-astropy_0.3-1_amd64.deb
 30196e1265a2e3cb9610219cd12c4974 6239178 doc optional 
python-astropy-doc_0.3-1_all.deb

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

iQIcBAEBAgAGBQJSmeYRAAoJEHEVr9B3ENz33t0P/iL3yIugDIpwqDlqy2rUbLft
QP7xJadCxIcoHrtA39iGrZpZab0MtGuhde9itNAPnqNAQ+Tw5R+KqnFTNcjuzvvk
JWV9BHaAr06uz0x2/SbGIYKKhSdC5V0RyM0Dnh5Y2+Y3910kw6EL8pxIc71woU8r
d8UDgpjKiyuHfcdKMCzXHev9p055b7McRRTs0fkoIOGXpa6mXMyTK2AP+6hGz2dr
JhV4F+OtWKqGS2etF77Thl7feiGLFozieuw1SSEugfBD6FIccNKcbpSXeyO6OuAB
5Ig6GpUEu1FAwYRMldbxmO7hA5wawxwSpb3OK2qyKc0EFgLOsQfW+O2Xep9r4FGq
4Pr9MAdwcHDjpdCFR6PPYxwnkZMZoyWgkgHNcrHa4RPlFRPLmyJ7+Qj1H8q0k64c
HUE9Tpe8sYR2eRVvxAV9LeMioIAlecYNZWHiPnNRUPDdwneTSoa+6begMxNPFq3j
jsYVi9h1A0grELhtxr0GXRqZZDjaueOuX9kVym35hO/w1cpIiCuoEpRExOwsj2XK
ErU3oWjpzfoI//2JluwplpkFw+KvA0Xj868LY0l0B0n7uuyhRLuTNri98bll4UWw
lBilZUtdvK77rrMAQhappUDCAjZKdDVzNE1s6kGpdTXlBo8scLbr/ESfjXj24Xdd
MDCTDLtbNq1itwEjtDfH
=haD1
-END PGP 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/e1vmkge-000831...@franck.debian.org



Accepted fonts-smc 6.0-1 (source all)

2013-11-30 Thread Vasudev Kamath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 16:33:23 +0530
Source: fonts-smc
Binary: fonts-smc fonts-mlym-udeb
Architecture: source all
Version: 6.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Changed-By: Vasudev Kamath kamathvasu...@gmail.com
Description: 
 fonts-mlym-udeb - Free fonts for Malayalam language (udeb) (udeb)
 fonts-smc  - Various TrueType fonts for Malayalam Language
Closes: 661923 661924 661925 661929 730753
Changes: 
 fonts-smc (6.0-1) unstable; urgency=low
 .
   * New upstream release.
 Closes: bug#730753, #661923, #661924, #661925, #661929.
   * Convert package to use CDBS.
   * Drop the debian-compatible-makefile.patch and use upstream makefile as
 is.
Checksums-Sha1: 
 955ba7eb38ae9daf8d99cf6fa74db6471dd14083 2009 fonts-smc_6.0-1.dsc
 88657936291fe93d27693993a92efe939982e7c4 2048160 fonts-smc_6.0.orig.tar.xz
 e8d83df1eb063599bb96e9878a9ca4c69df44368 5301 fonts-smc_6.0-1.debian.tar.gz
 480df338b25b3ac7404d0b0651aff615a155e25b 545504 fonts-smc_6.0-1_all.deb
 7fdfa9d02c73c275b9afdb93ba6062e69553d621 136140 fonts-mlym-udeb_6.0-1_all.udeb
Checksums-Sha256: 
 ea08df85e4fef48004a8a28423a9e97ac76b5c8714ceb6ad409bc8443c2b7a99 2009 
fonts-smc_6.0-1.dsc
 ee2612e4f9175277eae850d449a99c2060046c191c99a61d367c310bbe4ba64a 2048160 
fonts-smc_6.0.orig.tar.xz
 b914c197581dadbb73e887e3461e1058baec38837af081446487b1e79f629c0a 5301 
fonts-smc_6.0-1.debian.tar.gz
 4b55af90336dd93dee554feae4d5d53c207e800189017dcba0d59ce6004bb4ab 545504 
fonts-smc_6.0-1_all.deb
 f7bd872c88746cb58c4cfb614a18318386d658f1669be6480ec6d20d866f0d6d 136140 
fonts-mlym-udeb_6.0-1_all.udeb
Files: 
 0e836d8793e96c79b7564d93baecb08a 2009 fonts optional fonts-smc_6.0-1.dsc
 fa8e0017c9250ff71af946a9012f3a60 2048160 fonts optional 
fonts-smc_6.0.orig.tar.xz
 6b3e93321b93a60a4275b51c508071ed 5301 fonts optional 
fonts-smc_6.0-1.debian.tar.gz
 d409deda7bceeb2b831372dbe3a52686 545504 fonts optional fonts-smc_6.0-1_all.deb
 80442fd0acef9bec2ca90dce3473e17a 136140 debian-installer optional 
fonts-mlym-udeb_6.0-1_all.udeb

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

iQIcBAEBAgAGBQJSmcj+AAoJEGyPdK6HcAt+ig8P/iFF1QytdsYg5pi7Bvj0zpPR
HY29Gi8JksoSUjZub8UyQeGKMVH7Upt1TnWC/0hwZbdyazx7Pb5cRdn6OSA8n8b2
e5Cpio7AlvzIbIFFfm9C9ePxWVMsy+yC9R6GtgEyinJujnVGIST68DFXLZymUCvf
ZPvdXbGiQB9oeEzlEBPkYTIqduwrQq3aWBjMKXDPQ1biY0EGtWU8SPpEPi7U3x7B
UUPd0vuMyxtv72s/zqwY7v+UITkTNu9ZGyfwPF0NUweMegqwFBnbHWLjaIfP+p8U
W9dAocpc4CHj4mv/t85zoo6KkdXGN8Cg/C2nYlpSs/ykFniz5a4NHbiWkTa96B3N
0FC/YbM8IQIYl5zrDlkN+ngrzTTcM0xJbB8cNh7nvmDpq0KnPbJ14ycXFBgrR/OF
iY1oZI4PxEuP2VbmbchyoWxz9/WdAex6MIlbzRcOPLv12+lgY5n2susIdxGQWF0r
wK6l7STcVKW5XlbbUeSVcfw84/RNzvOlGnZ0oSUJQ0Sdir03uGOANE8O8MOYZvsw
qNGzmOjCARy3lhkgxe2roAqBif7MVg9b5z1GD7jA9uKstTPX/eWHkJRM6461QPk5
s1cHVVenNr8rVQ2/u1KVpWGJIwgahm/HzvU0pIeyAx8lrYM0mhx1ywod4xBV6rKS
VbMhGjBlx+Hcal03/Y69
=lCus
-END PGP 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/e1vmkue-0002um...@franck.debian.org



Accepted kate 4:4.11.3-2 (source amd64 all)

2013-11-30 Thread Pino Toscano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 15:13:26 +0100
Source: kate
Binary: kate katepart kate-data libkatepartinterfaces4 libkateinterfaces4 
kwrite kate-dbg
Architecture: source amd64 all
Version: 4:4.11.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Pino Toscano p...@debian.org
Description: 
 kate   - K Advanced Text Editor
 kate-data  - shared data files for kate
 kate-dbg   - debugging symbols for Kate
 katepart   - kate KPart
 kwrite - simple graphical text editor
 libkateinterfaces4 - kate plugin interface library
 libkatepartinterfaces4 - kate part library
Closes: 726756
Changes: 
 kate (4:4.11.3-2) unstable; urgency=low
 .
   * Team upload.
   * Do not install (again) the go.xml and nesc.xml highlighting files, as they
 are already provided by other packages. (Closes: #726756)
Checksums-Sha1: 
 7a0273daa051148a428fe6add68eb272f0927146 1723 kate_4.11.3-2.dsc
 ff8359b31c5290fb1834cce410d00f56ea924c38 10344 kate_4.11.3-2.debian.tar.gz
 2c63dab7a32cf821895f40a8be8bee65a1a263b0 529436 kate_4.11.3-2_amd64.deb
 488ce7e36c495d7555460cc3eff74405fdf0074f 63024 katepart_4.11.3-2_amd64.deb
 11ac35092d7ca0d3ecff0abb31386c4dca4d178d 1431042 kate-data_4.11.3-2_all.deb
 26afa6c18419782390d2d692400aa8ddb21f565e 793798 
libkatepartinterfaces4_4.11.3-2_amd64.deb
 63d432f8d5bdabe3c2a1340930daa150a48a60c3 143894 
libkateinterfaces4_4.11.3-2_amd64.deb
 4c2900ced105ce18e00790f862e59701c18ece57 71822 kwrite_4.11.3-2_amd64.deb
 c1ede7c635774908b654a3147727a4773e7e5ecf 23150428 kate-dbg_4.11.3-2_amd64.deb
Checksums-Sha256: 
 31add2edda10d8f66a689a45667f997e21b93dee59a75a9824db1ad57c3f9add 1723 
kate_4.11.3-2.dsc
 d1788f3ade7e70df6841d0d57ad1f56af29390d470879437e9aeed15583dced7 10344 
kate_4.11.3-2.debian.tar.gz
 ff7c42c5bb8e84cfb0f2cd96474dc638a74fc80525b0f997c175a7eba9de63e6 529436 
kate_4.11.3-2_amd64.deb
 95f7e1a19c09076907af9d49a98f6eec603b4ac25216e4b905e146b6aa21baf3 63024 
katepart_4.11.3-2_amd64.deb
 ea9365c7972b82104ff54170f96c95d14629ec4d15bc523f324eb0d023e6fb21 1431042 
kate-data_4.11.3-2_all.deb
 fd3a6a32e27fe155ea24470323413dbb3541784a8c6c0e0507ec95f4e12b4439 793798 
libkatepartinterfaces4_4.11.3-2_amd64.deb
 98b9b0136539ec86111ad35bebdadd8b082093cfd1bdcffd3c62275adfafcc71 143894 
libkateinterfaces4_4.11.3-2_amd64.deb
 becaa910de38d6c49aa327db77944117349c695a275f4679694398c4f6ddffda 71822 
kwrite_4.11.3-2_amd64.deb
 7766f3d087a07eafdd1031cc043090bb957811acc0924247f230a8f52ccd3f96 23150428 
kate-dbg_4.11.3-2_amd64.deb
Files: 
 aa3b1a4300a65e28de137291f69d2fd1 1723 kde optional kate_4.11.3-2.dsc
 e6b2649ba6e7d87d555c9326e1927479 10344 kde optional kate_4.11.3-2.debian.tar.gz
 dbf297fe8661afddbb04be3c24d95a34 529436 editors optional 
kate_4.11.3-2_amd64.deb
 84f5a23e10112b1a8d4f45f2999c1ffc 63024 kde optional katepart_4.11.3-2_amd64.deb
 fd9f56abcdffc63ff7290cecfcdafe5e 1431042 kde optional 
kate-data_4.11.3-2_all.deb
 cdb552d5fe24340220203ab9c8a7ec9a 793798 libs optional 
libkatepartinterfaces4_4.11.3-2_amd64.deb
 170a63ffd1525ae0c494898a32cca789 143894 libs optional 
libkateinterfaces4_4.11.3-2_amd64.deb
 f4f42872a0941082a395cc5362282a7b 71822 editors optional 
kwrite_4.11.3-2_amd64.deb
 34e8273d598edfe7b192e8d2f04de1ec 23150428 debug extra 
kate-dbg_4.11.3-2_amd64.deb

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

iD8DBQFSmfVGTNH2piB/L3oRApWmAJ9kKhJkOL5ZsMU15w/ZRqnOxd3dygCfRGlC
lRK3GofIMVEcvDvXvtX8a2U=
=8XKP
-END PGP 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/e1vmmme-0003ck...@franck.debian.org



Accepted kde-dev-utils 4:4.11.3-2 (source amd64)

2013-11-30 Thread Pino Toscano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 14:53:50 +0100
Source: kde-dev-utils
Binary: kdesdk-misc kpartloader kuiviewer kmtrace
Architecture: source amd64
Version: 4:4.11.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Pino Toscano p...@debian.org
Description: 
 kdesdk-misc - miscellaneous tools from the KDE Software Development Kit
 kmtrace- memory leak tracer
 kpartloader - test tool for KParts
 kuiviewer  - viewer for Qt Designer user interface files
Changes: 
 kde-dev-utils (4:4.11.3-2) unstable; urgency=low
 .
   * Team upload.
   * Re-enable kmtrace:
 - add kmtrace in control
 - add the libiberty-dev | binutils-dev build dependency
 - provide kmtrace.install and kmtrace.lintian-overrides
Checksums-Sha1: 
 f36d2ff79b4ffe3ad2b8bbd2cd89ca099c52240a 1729 kde-dev-utils_4.11.3-2.dsc
 8a9b94ce2acddedc5fc944a7df99a8cfc7e88900 4363 
kde-dev-utils_4.11.3-2.debian.tar.gz
 a508e6976c8cb23c7a730e7dadcd138df20c1f4c 9528 kdesdk-misc_4.11.3-2_amd64.deb
 91d85adf6d89a409e9aa62b8cd0dd527d374b1fe 11528 kpartloader_4.11.3-2_amd64.deb
 2e75adad770e7e4ea5625b4a8920c2c492f64f89 34608 kuiviewer_4.11.3-2_amd64.deb
 db8ec22a030eda8f8435c4d67a799a4e75a48180 64898 kmtrace_4.11.3-2_amd64.deb
Checksums-Sha256: 
 a7acaf60bed73e6e513a4960054422693d26473abbf13f217355e31e117f7ffe 1729 
kde-dev-utils_4.11.3-2.dsc
 f70e179c2ffb7b7c930421f447adf18a0542bc30b744af5f20bde8ddc733d53b 4363 
kde-dev-utils_4.11.3-2.debian.tar.gz
 48d345d9a1c5f65cb221ff859e04319d859333b87e28875e93e10a8080f078d4 9528 
kdesdk-misc_4.11.3-2_amd64.deb
 351aaf9a78d8172cb6b308550e37b5ab75231e24dc182f1a20e9b40434a61ded 11528 
kpartloader_4.11.3-2_amd64.deb
 25e84153bdc886c46e329418df5443702aa3f122fe1c09bbe2174bef4bc3951e 34608 
kuiviewer_4.11.3-2_amd64.deb
 0b708951e71c972ecc33a57b2b318b9c91fd4eea3e0dc16a8a8310947a9facd8 64898 
kmtrace_4.11.3-2_amd64.deb
Files: 
 bc3a9e7f623fa99e76acb0d3f5c10b7e 1729 kde optional kde-dev-utils_4.11.3-2.dsc
 3073d268dff6192cb9914c4cdb328eb8 4363 kde optional 
kde-dev-utils_4.11.3-2.debian.tar.gz
 6cc195652186f7935d564f8c1327acf5 9528 devel optional 
kdesdk-misc_4.11.3-2_amd64.deb
 2cd575deb077996c0fac4c1ecc243495 11528 devel optional 
kpartloader_4.11.3-2_amd64.deb
 a88f6af94362f867be814884c1f455ac 34608 devel optional 
kuiviewer_4.11.3-2_amd64.deb
 de3ef2954b840812f3fa67984265f9a8 64898 devel optional 
kmtrace_4.11.3-2_amd64.deb

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

iD8DBQFSme9HTNH2piB/L3oRAqqjAKC9SxFQGI9k82blOftEgb50gGKXewCfXQOp
tHic4r6LxNSPO8464XQ1Gfo=
=GEqb
-END PGP 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/e1vmmmo-0003kd...@franck.debian.org



Accepted mod-gnutls 0.5.10-3 (source i386)

2013-11-30 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Nov 2013 14:04:12 +0100
Source: mod-gnutls
Binary: libapache2-mod-gnutls
Architecture: source i386
Version: 0.5.10-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Andreas Metzler ametz...@debian.org
Description: 
 libapache2-mod-gnutls - Apache module for SSL and TLS encryption with GnuTLS
Closes: 710986 727461
Changes: 
 mod-gnutls (0.5.10-3) unstable; urgency=low
 .
   * QA upload.
   * Use dh_autotools-dev. Closes: #727461
   * Drop outdated Vcs-* lines from debian/control. - The repository only had
 a single commit.
   * Rebuilding gets rid of reference to symbol unixd_config. Closes: #710986
   * Update homepage location.
Checksums-Sha1: 
 662197554440cadf2d13ecb76b7183c2789c0f53 1847 mod-gnutls_0.5.10-3.dsc
 e5694f54af263ca90bd919a6f009fb79d33dd867 4992 mod-gnutls_0.5.10-3.debian.tar.gz
 54789949078383b4778bb1b3a35016be6d7b712a 27888 
libapache2-mod-gnutls_0.5.10-3_i386.deb
Checksums-Sha256: 
 2988b4e0a638b93752c543e3227b1f56df6b49d12324f39c7ff27341942b3c6e 1847 
mod-gnutls_0.5.10-3.dsc
 a075fee3943b88dd8c25f19113cd32fc6464784cbde0cd2938da9581aaf91fc1 4992 
mod-gnutls_0.5.10-3.debian.tar.gz
 68ed23831e67093d559282a4088dc280209d4a1d606a4f1db61c478e84fe6d1f 27888 
libapache2-mod-gnutls_0.5.10-3_i386.deb
Files: 
 671c42d31c687767b81463fe33a660fe 1847 httpd extra mod-gnutls_0.5.10-3.dsc
 97504e4cb2508a54086685e7e1ec330e 4992 httpd extra 
mod-gnutls_0.5.10-3.debian.tar.gz
 a9a3fee707e16fe3613818ed08189ae4 27888 httpd extra 
libapache2-mod-gnutls_0.5.10-3_i386.deb

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

iQIcBAEBCgAGBQJSmfAsAAoJEKVPAYVDghSE+BEP/RN8zWQqi86AArifwjAecEPj
o7lRSQs2jz5PaLlx8+SMM4zCoYXlYEhHDnxfC3KKiMmg3YtJOCE+2DHdl3LTxL8R
gx6R8mXF+YYsjTSv65Pqm2N1XkgdtYdBWUNpX3x+J8Dcht++VTuhHUtOyCw1+ai5
Z7hkxNRfoprUhyu/G1GfWvnJBMpssuH07y1tAuR2LYbRR9kPBlizFY94LxaoRRIR
eKRJwBBFh2mbePqXHswHtKMZCYnq4GD0/wUNm9sL00yk2FPerpn4XUFU4OCMKxTU
fGA+uKGBwf/uhde9oa1Q83+Eh0QO8sPH5sBj6G1sUIgoZn3I+x5Jb5Y38/PLe8yB
gVbHc9kHUOt+XWhUEhwurqtizQoFctv/FtFR1EPhcCtEIr0guhGvAzw5Aqjy3dUQ
JtznKQDrTFCfsYF8qPqX1wDlV9jzbSotMhk4bj8ocz5RbYaQkyujJJd1fB2A3W7y
QDrGi8tCLi0RvQrMOJcY4OnnigbpXgDGvRNi9ffe6w5n6+dKlZbdrk7V03xpwucP
fztD2RkE1eGvwiIyrabvW0uMpRZEGRt4Xjm0cm3bMrT1SG0iE+KKRabvvO/+S2lC
9VbCPvEt1UBQzsdHlN4/0T6W0jtdZWZOI7wQDNwlzhSpIFJQskUaDmxKhPjffIbZ
sGcCefbDDg1dA4VQcEVX
=9yLL
-END PGP 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/e1vmmn0-0003tj...@franck.debian.org



Accepted php-sabredav 1.9.0~alpha1+dfsg-1 (source all)

2013-11-30 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 12 Nov 2013 22:26:05 -0400
Source: php-sabredav
Binary: php-sabre-dav php-sabredav
Architecture: source all
Version: 1.9.0~alpha1+dfsg-1
Distribution: experimental
Urgency: low
Maintainer: ownCloud for Debian maintainers 
pkg-owncloud-maintain...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description: 
 php-sabre-dav - ${phpcomposer:description}
 php-sabredav - transitional dummy package
Changes: 
 php-sabredav (1.9.0~alpha1+dfsg-1) experimental; urgency=low
 .
   * Imported Upstream version 1.9.0~alpha1+dfsg
   * Bump standards version to 3.9.5
Checksums-Sha1: 
 9a25ef645677447ee2864bad9974e095e1a42442 1873 
php-sabredav_1.9.0~alpha1+dfsg-1.dsc
 7517ac9ac800d6895105d5a1cef389232f91fad1 346824 
php-sabredav_1.9.0~alpha1+dfsg.orig.tar.xz
 47fcb19642cb773260470555e51abc5aa6b4d16a 5173 
php-sabredav_1.9.0~alpha1+dfsg-1.debian.tar.gz
 e4624e6495af7d7d4ec850d2b832fe734973aa2d 162550 
php-sabre-dav_1.9.0~alpha1+dfsg-1_all.deb
 ab9214a661f0ef2edbd3798410e7c0d82894ca7c 23198 
php-sabredav_1.9.0~alpha1+dfsg-1_all.deb
Checksums-Sha256: 
 af59c101077c597b503712e759c69c742a3b6f43020909258b9dd2539a35de12 1873 
php-sabredav_1.9.0~alpha1+dfsg-1.dsc
 f7079f0ed4df698b210e0e8f03b5bc33e0e0c3081161d60fbfcdb716a40c8f08 346824 
php-sabredav_1.9.0~alpha1+dfsg.orig.tar.xz
 858755881177124a5356f00952f3b736847c742fd0e9f3e6d492b7d6adf416f1 5173 
php-sabredav_1.9.0~alpha1+dfsg-1.debian.tar.gz
 52965db08b8bf5fc80e8edbd65d91bc196855cb77eee90682c799b73a0c46bdb 162550 
php-sabre-dav_1.9.0~alpha1+dfsg-1_all.deb
 79b08257452ac3b22320b46adc576d0e8e8a6c2b2c948651006a200b86e532d5 23198 
php-sabredav_1.9.0~alpha1+dfsg-1_all.deb
Files: 
 13c612aa592c2e9ead21cec4599b92d8 1873 php optional 
php-sabredav_1.9.0~alpha1+dfsg-1.dsc
 044fd0b8b52ea9d2424b33e40a7d38e2 346824 php optional 
php-sabredav_1.9.0~alpha1+dfsg.orig.tar.xz
 3b964fe6bebb46afba151050f2245a1f 5173 php optional 
php-sabredav_1.9.0~alpha1+dfsg-1.debian.tar.gz
 2ee8b945c10b8ef4ab7ebe2d7d58f31d 162550 php optional 
php-sabre-dav_1.9.0~alpha1+dfsg-1_all.deb
 1decacc58f74b4178ec5ac43f5b02116 23198 oldlibs optional 
php-sabredav_1.9.0~alpha1+dfsg-1_all.deb

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

iQEcBAEBCAAGBQJSme+NAAoJEAWMHPlE9r08BtIH/jXv6DJwm0385UWg9HJACuqq
3I8wrlxaFVCQ9qioOIsr9sBpsnlaSSy6E46AxgJEAMRudivSSdTq5ieCMz6RPbd9
tiRfezCRWbtt7kcez/QfOqJGVfKnLpPLmirq1jl5CLVRA7hZ3AXBD04m+C2slcFP
DqfSGIVUZrVEmbG3GgrOGJfQr/rrWYG52PVyFHUd+Kl3Uto8EzCKN8+CXKiq/aC2
uCvlDwf1cfPHw6+7gktKuAJhHWopTbiZjkwCH4mTGRo+iD7uXsnKj7zCTItT6Pj/
utd0D2IBZMW6gEyKysNqDYc1qMRgOpiA20bdycBaec2251IzOqbKEK5nZgZhWdQ=
=BLty
-END PGP 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/e1vmmnd-0003yy...@franck.debian.org



Accepted modules 3.2.10-7 (source i386)

2013-11-30 Thread Alastair McKinstry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 29 Nov 2013 18:24:31 +
Source: modules
Binary: environment-modules
Architecture: source i386
Version: 3.2.10-7
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry mckins...@debian.org
Changed-By: Alastair McKinstry mckins...@debian.org
Description: 
 environment-modules - Modular system for handling environment variables
Closes: 711955
Changes: 
 modules (3.2.10-7) unstable; urgency=low
 .
   * Add /etc/environment-modules/modulespath as conffile;
 /usr/share/init/.modulespath  points to this. Closes: #711955
   * Add /etc/environment-modules/modules ; include in modulespath.
   * Patch for fixing minor compiler warnings from lintian.
   * Standards-Version: 3.9.5.
Checksums-Sha1: 
 dc9bfbb552342f97265a3bcb7c70618bf95dbb66 1753 modules_3.2.10-7.dsc
 af8fe5977c91d623a968e8e8cb4d7e91f1211e28 7374 modules_3.2.10-7.debian.tar.gz
 1c5eefd1a846f64715c5856b2b105bc67629a660 91354 
environment-modules_3.2.10-7_i386.deb
Checksums-Sha256: 
 87a6b5ca18ab16df0d252a38764f16d440d039c75440ee72c362ea829ad6a722 1753 
modules_3.2.10-7.dsc
 7b6650ba4689fc94abbf1315090ffbd280949ec0150cdcccda51e8a15e0030db 7374 
modules_3.2.10-7.debian.tar.gz
 1f77aab3803e0a2b83bf2c93c3889eefe1a53a939f09db84dcb424a5c32e0918 91354 
environment-modules_3.2.10-7_i386.deb
Files: 
 0f9afad945a61d150f91763a682f05a7 1753 devel optional modules_3.2.10-7.dsc
 4492fefcca50efd6d1dee9aa572a56a9 7374 devel optional 
modules_3.2.10-7.debian.tar.gz
 6ca169fc0ed4c6a406c98ab567043955 91354 devel optional 
environment-modules_3.2.10-7_i386.deb

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

iQIcBAEBCAAGBQJSmgLMAAoJEN9LdrZRJ3QsiEgP/06LF/8X6tP8Er4EPw1XIXdS
r77nlCVToQLzj5XGFDdubyTRokiCrsIZler7sGR29w1yfReAczo0PH5aWtesET3r
IrGcVx2VY6lR2ZrlQrnW4nsAgu1NOsh2Q7jXLcs6Nj27LAPjmuvILpQn/t6nCVUR
eQWkidH+kzC384c41t2FH9xVbxmn60nu+pVnxApmszwk9NLEbyqUYv5sYyXm+7+H
fhaS0boMvDiAryFhTLPWhaV9TDmlikU/nUt/8zMLuXGPJFjZEnp3Cl8FsKmBkztc
LiPk3i/0GXR5AaDFwUW7T3+ZvBAPtuNVjTUP+KJrk+b1eXJSbFKADyMoZ2pqBg4U
wWiZnytwjeDTJSXkfrxQYx8dqRxg88BXXJbIDCMeeTCbEioCtRBQBMy/LyPY2GKA
qmW5qStxFrsuh9lRp3HGu1To/vOesYN79x/zMwiXjydpoBfiTQA27ihRcEHr1Etu
r2BYrj82wy7pXgrtmKJJGxIlS3AgQfFmysQkLdJoFbC6dD4rX2RppgUNye1eOLWs
2/o1NIpXG6yC6Vzdco0e5mH388jehvKkNgF0oxNYK1MgvwGIurBZi5nSxi7mN4LR
7im51MC7hRtQjF6qga2rMBQhniSQ8AGP04+qUUsOs1aQGPwcZY2JRO6JhjWcw3nh
OY16+ERUIFYZMN2C4ISk
=cJgO
-END PGP 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/e1vmmnr-vg...@franck.debian.org



Accepted pymarkups 0.4-1 (source all)

2013-11-30 Thread Dmitry Shachnev
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 13:27:43 +0400
Source: pymarkups
Binary: python3-markups
Architecture: source all
Version: 0.4-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry Shachnev mity...@gmail.com
Changed-By: Dmitry Shachnev mity...@gmail.com
Description: 
 python3-markups - Wrapper around various text markups, implemented in Python 3
Changes: 
 pymarkups (0.4-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/watch: use HTTPS, and correctly escape dots.
Checksums-Sha1: 
 f5df593a9b6945fd8d76378a52fab39646df7e29 2020 pymarkups_0.4-1.dsc
 47c9fa5c0ad7076b6b52346d59195f5651cb670a 9725 pymarkups_0.4.orig.tar.gz
 8a4a9140bc3259696a3accd7c4538876f01b4981 2424 pymarkups_0.4-1.debian.tar.gz
 fbede3392695a4303d93668744fcc97fe8d0ad13 8752 python3-markups_0.4-1_all.deb
Checksums-Sha256: 
 bdb64d2b405e347c8cea1008aa24b289a98755ebfd89264547d23da6bfc32991 2020 
pymarkups_0.4-1.dsc
 3c33a19200a224b9c320e48557ec29e13dbe8094c6670da2851b75d6657950b8 9725 
pymarkups_0.4.orig.tar.gz
 8a59f304f2f2ccdf8ea88d46490fc83139735e07b412cc5ef0259f0d8ab48e48 2424 
pymarkups_0.4-1.debian.tar.gz
 3199ee50189da5f7cd07e8484de9b2cce2b0780e7bc2f859076368bb10ee233c 8752 
python3-markups_0.4-1_all.deb
Files: 
 ff1f6843c5dce567717a47e3a235e169 2020 python optional pymarkups_0.4-1.dsc
 930b5b2a0bc77219e825b954366f50c9 9725 python optional pymarkups_0.4.orig.tar.gz
 26c2a1b4e20f42611bf37df9295faecf 2424 python optional 
pymarkups_0.4-1.debian.tar.gz
 3252b1829079eb67b5a0e1db2e2bf74b 8752 python optional 
python3-markups_0.4-1_all.deb

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

iQIcBAEBCAAGBQJSmglvAAoJEGAmk20vHIrgUeUP/0dw4CGmJ4hNjrTJ5YYxPloQ
zXtKQ7wkbvZHctMJEUwS3oOUBbTTeZihypqpdWLbDW2yG1CJSan03/xALr0GyjxY
mEdkmR6zk6sR+sur4kX3ZYkiTBgAG+6Lvi4VjIyPRFDn1s3eScbhxxTGdHY+W7D1
d0wA+kCqDsF5Q4QAOBa8IdTrIDRKtQtC5dR+EVdxLZvVt59KZviqsC1mGCRIDJL1
hgAJb0wlB6ukw/Q7wq/wVaM3xGnw/6HZ37z8FP8pan1rpm7t6CqFKKS4EdtCj5Ht
OYj4UBZ/qcPxxu6EKJBjm2UMQaFibzH5J8+NHLxDV/F04Ehgf97mgMjQDyXr6hpv
W3hgtxpLEZta3cW0uM8Vlyvrme6mo0AgzskZ/hWG2NHghqlyMJSBUJmbMKHh0DlQ
ftKA0L7PT2ssIA69d3PvAS5x57ZRWjGXgil5qXCQDX52PnD66TcYiRx0Qt14lf7O
1qmihqU9MetcqynlgTjiMik2CHdsx4kyzhq0WU+T3L4oizyiaFApuSsrRqbJXCv7
clDRO3mU/lzkEHgKnNyDcfuxDyALmwmhtVbCLP/P+MR2HSgbEg5ELiDlDPxJSjX5
zcTRutKvz+DH6EUIFam0ktuqUXvYMTkqYF3r5WUAcJwxIC9Ppw+1lar9oQtT2/mw
gW9svrW3UxfTn+Q+8b9e
=23HL
-END PGP 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/e1vmn1g-0003yo...@franck.debian.org



Accepted kstars 4:4.11.3-4 (source amd64 all)

2013-11-30 Thread Pino Toscano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 16:52:19 +0100
Source: kstars
Binary: kstars kstars-data kstars-dbg
Architecture: source amd64 all
Version: 4:4.11.3-4
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Pino Toscano p...@debian.org
Description: 
 kstars - desktop planetarium for KDE
 kstars-data - data files for KStars desktop planetarium
 kstars-dbg - debug information for the desktop planetarium for KDE
Changes: 
 kstars (4:4.11.3-4) unstable; urgency=low
 .
   * Backport upstream commits 3231f23c31896b1da601e7a0704443d1181a0604
 (as upstream_tests-split-init-tearup.patch) and
 bf2cb5653908863eee0ee6c6c05f87ba38886fa3 (as
 upstream_tests-use-proper-temporary-files.patch) to make tests properly
 use temporary files instead of relying on ~/.kde.
   * Remove the custom home for tests, should not be needed anymore now.
Checksums-Sha1: 
 412d260cc3b0e9386bf75f68209db797a610cdda 1667 kstars_4.11.3-4.dsc
 294fa380d33993d4ce60407b4bf4f116edb56a62 10677 kstars_4.11.3-4.debian.tar.gz
 19fbba2d3257cec7b821a0e6467220a4453d5dbc 988350 kstars_4.11.3-4_amd64.deb
 9c450cdec79c736e7f5532cbfe9d7592e6f0c0fd 11735624 kstars-data_4.11.3-4_all.deb
 0394ce282e93a37d365b380526103ae97838461e 28115248 kstars-dbg_4.11.3-4_amd64.deb
Checksums-Sha256: 
 54ce0c4958b115f93e33315d3d2b00d7f9a9687dac57b03b0becfd79511fbe50 1667 
kstars_4.11.3-4.dsc
 e30b36bb18dbee017f8b2012197eb03c860ae92d9bb63c9c2b5f22779e39c3f1 10677 
kstars_4.11.3-4.debian.tar.gz
 bfba2d82d887aebf1f138d9651592e055a11bf1c1f8570e8e3fff486c4a3e0a9 988350 
kstars_4.11.3-4_amd64.deb
 0aa35f70bc4a2490265645d0896cdf274e4d32007c36adaaa3b2e5b40601fb16 11735624 
kstars-data_4.11.3-4_all.deb
 8d14fa314e24e0ea819400e24e37e11db5efe423b5263cd1f44c084b48e9edcf 28115248 
kstars-dbg_4.11.3-4_amd64.deb
Files: 
 0b1846b558e96719f40c0943966a1857 1667 kde optional kstars_4.11.3-4.dsc
 97297a3f54facea5ffd10dff9d0a6449 10677 kde optional 
kstars_4.11.3-4.debian.tar.gz
 9a73010cd4c51d8c4e57f14ae811af1e 988350 science optional 
kstars_4.11.3-4_amd64.deb
 29daa20f8b46cd7d7e6e925a392acd8c 11735624 science optional 
kstars-data_4.11.3-4_all.deb
 3707e3b2de2f0ef5f4be74b3541f97b7 28115248 debug extra 
kstars-dbg_4.11.3-4_amd64.deb

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

iD8DBQFSmgy3TNH2piB/L3oRAiE0AJ96Syl3+sSwhXbb8q64TVBNLDVOxQCgizbW
YhAA39+6sMiIkJzT/R8tvQM=
=uU1p
-END PGP 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/e1vmnfs-0006hv...@franck.debian.org



Accepted tabmixplus 0.4.1.3~131123a1-1 (source all)

2013-11-30 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 11:34:38 -0400
Source: tabmixplus
Binary: xul-ext-tabmixplus
Architecture: source all
Version: 0.4.1.3~131123a1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description: 
 xul-ext-tabmixplus - add dozens of new capabilities to tabbed browsing
Changes: 
 tabmixplus (0.4.1.3~131123a1-1) experimental; urgency=low
 .
   * Team upload
   * Imported Upstream version 0.4.1.3~131123a1
   * Update upstream changelog
Checksums-Sha1: 
 eedc444b1e6611d4e21194066aa9cc4b5e9a4b97 1715 tabmixplus_0.4.1.3~131123a1-1.dsc
 0d1df4401c85e83a554d4307260e9964a6090bd9 481909 
tabmixplus_0.4.1.3~131123a1.orig.tar.bz2
 da1a1ef150fa346259db6a0566b0041acdbfaf63 24898 
tabmixplus_0.4.1.3~131123a1-1.debian.tar.gz
 f08c3e4c9ecec3819d53541852882a78a8cc6a89 499708 
xul-ext-tabmixplus_0.4.1.3~131123a1-1_all.deb
Checksums-Sha256: 
 3a9719ab824e660938aa0f47c2b9106e355b82e34ff427a8cf230c0121d5b67e 1715 
tabmixplus_0.4.1.3~131123a1-1.dsc
 ad7f45dcd0952af065ad51eaa513c21e79b7eba914c9ee718996b3a2097bcc9c 481909 
tabmixplus_0.4.1.3~131123a1.orig.tar.bz2
 6de4dcb0ea91fd087206fd4105a6d4d03052a8eeaaced17c1f35f8ca6cf80a60 24898 
tabmixplus_0.4.1.3~131123a1-1.debian.tar.gz
 c6cc706f359e80f3fb060902bd20672b24cf5fdb47ebf9a2837269cdb7ab9095 499708 
xul-ext-tabmixplus_0.4.1.3~131123a1-1_all.deb
Files: 
 c923a4f79037789c952b440393843b6f 1715 web optional 
tabmixplus_0.4.1.3~131123a1-1.dsc
 e79ce67c6783b26eb4a52b16fb71ae49 481909 web optional 
tabmixplus_0.4.1.3~131123a1.orig.tar.bz2
 d115d9964f42b95a8af2733925e0e4d6 24898 web optional 
tabmixplus_0.4.1.3~131123a1-1.debian.tar.gz
 a5d85e2b966d6e96a915231bc21ec6f9 499708 web optional 
xul-ext-tabmixplus_0.4.1.3~131123a1-1_all.deb

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

iQEcBAEBCAAGBQJSmggrAAoJEAWMHPlE9r08AM8IAJsEVSu4N5j3RQM9SB7xym6P
RSQwscfx41Bb4kuBm62td42GDSuRQwXDNhxfR3bdxrPFE/cwpJS9Zsm8CrK2TgSO
zlatBfcCNKZC0mG7Y9uTXEVTzVyVGGLXvVN53gZ201dEcOupynKUqNwlDe9dvpBi
GmPZjBR3EG20oVvhn37Fjw3sBdTW7Cht8DDN+9wxqQ77GwuFdh03laP5GTuXsYUN
/Aui9mUwKgVPrTfULcwy2wNrL5EoNVM11cB/LMZ7MqIw6EUgVELyTTS7lxxTD++c
BWaGpObvodXTsBVdQLrK+sKiyHmqkjjpLBCJ0i8kFI4cxBBMbyY3xnyjzaEZWlU=
=uHhO
-END PGP 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/e1vmnik-0003m3...@franck.debian.org



Accepted obnam 1.6.1-1 (amd64 i386 source)

2013-11-30 Thread Lars Wirzenius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 12:46:30 +
Source: obnam
Binary: obnam
Architecture: amd64 i386 source
Version: 1.6.1-1
Distribution: unstable
Urgency: low
Maintainer: Lars Wirzenius l...@liw.fi
Changed-By: Lars Wirzenius l...@liw.fi
Description: 
 obnam  - online and disk-based backup application
Changes: 
 obnam (1.6.1-1) unstable; urgency=low
 .
   * Really fix dependencies on python-larch
Checksums-Sha1: 
 cb5c69549ffe236f2aa9e45e990a97a6e04844a2 103408 obnam_1.6.1-1_amd64.deb
 653ad812ca682b83802b61e0cb80f52f6ab0769c 103452 obnam_1.6.1-1_i386.deb
 212170132ec7dbb9b71a253c70fa05065464626b 1592 obnam_1.6.1-1.dsc
 6a01ddf0bc252a4b0cc559b3d433237902344753 177104 obnam_1.6.1.orig.tar.gz
 ee2eef05ac89f2f629490785290481e3ee2d2091 5256 obnam_1.6.1-1.diff.gz
Checksums-Sha256: 
 24036ef8d9c49fecd593c6afc8f3d534df130dd7f2e689f0841ad2a0ebf8 103408 
obnam_1.6.1-1_amd64.deb
 40cf8af9b30f37a589ac06daed4c1b702e0082b958e299c69ed68f3310e2a33d 103452 
obnam_1.6.1-1_i386.deb
 32d5e72a8ab6c55525026ec4014b611567e6a94c4d7f0a302c9dbba8a15362ae 1592 
obnam_1.6.1-1.dsc
 69bca2d17d7b4ebc0f2ca15a4d0777e266aa5214a8de1537ecc35f1cadb42510 177104 
obnam_1.6.1.orig.tar.gz
 fadee182a57c5a08f2405e1296f1314927ab2e85c9db1ee7239582f503b6d369 5256 
obnam_1.6.1-1.diff.gz
Files: 
 d07d48334fedacecae6ed84c4c7f7fcf 103408 python optional obnam_1.6.1-1_amd64.deb
 9eaddd9d8ba35fed1229cb40b4ccebd6 103452 python optional obnam_1.6.1-1_i386.deb
 c4a8a9caa3cf1576cbc4d29dbbae8fe1 1592 python optional obnam_1.6.1-1.dsc
 fa6aaf0ad228662a6b73a19c5fae83f5 177104 python optional obnam_1.6.1.orig.tar.gz
 121acec067a9e7228f75c199892917e4 5256 python optional obnam_1.6.1-1.diff.gz

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

iQEcBAEBCAAGBQJSmhgxAAoJEIahkFub41rmcYkH/1lYIUHNZ5Aok32Lt2Inm/yY
Vw+K1YDEM8m2J4dGPGbf1GFvAFBfAVada1UT7s/uztbh2LaPsIgeB6t0L8nd02hp
ZsTMlanAnv3KUDxtWfyLvUifj6g68fPFCY+p2WetjmlnpBgdlF5LXZsi3rNtgj0c
7RQbpIjyFODeXE1oMu9urnmlbIhoTgzt68mwdoPcjVDOxNU4aiNT2O4dMlXTc+pZ
900t/rbiFaw+v6ow3KFEvG4U7LLP/cvsfpHOhO+Z8kMF5ysh/ufV2NI7ZE3iuDRQ
0t96SXlYVRalIJgH3rJ7PNSz9dsTRoyCOqFsMvXpLpsYg6tVXZSQD67SCyJyowE=
=Fu6M
-END PGP 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/e1vmnxx-0006fl...@franck.debian.org



Accepted gtk-gnutella 1.0.0-1 (source amd64)

2013-11-30 Thread Luca Bruno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 17:54:44 +0100
Source: gtk-gnutella
Binary: gtk-gnutella
Architecture: source amd64
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Luca Bruno lu...@debian.org
Changed-By: Luca Bruno lu...@debian.org
Description: 
 gtk-gnutella - shares files in a peer to peer network
Changes: 
 gtk-gnutella (1.0.0-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 3acc6aa5aeda865ab23f4d38376694a1570d930d 1386 gtk-gnutella_1.0.0-1.dsc
 bd38b103dbccbca5d1431330df5c5d5b3eca4a24 18988804 
gtk-gnutella_1.0.0.orig.tar.bz2
 b36071cfc65f3fad7bb4ff6808f11ca5dafe4159 10287 
gtk-gnutella_1.0.0-1.debian.tar.gz
 72b9c87924ef830f0b71f8da08fe116699ec86e1 15106786 
gtk-gnutella_1.0.0-1_amd64.deb
Checksums-Sha256: 
 615e03f5cef77df88f7f2a3748d38e33e002ab107b8e50df4ea2bf9f1c6f153b 1386 
gtk-gnutella_1.0.0-1.dsc
 0c02add9819f8e47655083fddbecdaffb18d129e773c9e28eeeba7840789d986 18988804 
gtk-gnutella_1.0.0.orig.tar.bz2
 d6fff28186295322eae7f099d967f289f2f84492c14baafc9ccc5ddb6d577feb 10287 
gtk-gnutella_1.0.0-1.debian.tar.gz
 9781b786b1a778c6f1aee8fc229bba9883a498bdb0e795b00bf2b319d68886cc 15106786 
gtk-gnutella_1.0.0-1_amd64.deb
Files: 
 4911ce95be0c5862285a49a992fcf9c9 1386 net optional gtk-gnutella_1.0.0-1.dsc
 cec46d6b6aa2476ba831acdb70af7522 18988804 net optional 
gtk-gnutella_1.0.0.orig.tar.bz2
 ade8a4aabd9b929e76537824c4821d75 10287 net optional 
gtk-gnutella_1.0.0-1.debian.tar.gz
 65f34cae831df8601f1507b7db01c0c8 15106786 net optional 
gtk-gnutella_1.0.0-1_amd64.deb

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

iEYEARECAAYFAlKaG0EACgkQRqobajv7n7NpkgCfU9LPurf6K/wRgK6BJJJpqf6y
g5wAoKUv98gHoVSWhO7Cxv3ouiairpkn
=n93e
-END PGP 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/e1vmobh-s3...@franck.debian.org



Accepted ruby-gsl 1.15.3+dfsg-1 (source amd64)

2013-11-30 Thread Cédric Boutillier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 17:26:48 +0100
Source: ruby-gsl
Binary: ruby-gsl ruby-gsl-dbg
Architecture: source amd64
Version: 1.15.3+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Daigo Moriwaki da...@debian.org
Changed-By: Cédric Boutillier bou...@debian.org
Description: 
 ruby-gsl   - Ruby bindings for the GNU Scientific Library (GSL)
 ruby-gsl-dbg - Ruby bindings for the GNU Scientific Library (GSL) - debugging 
sy
Closes: 709497
Changes: 
 ruby-gsl (1.15.3+dfsg-1) unstable; urgency=medium
 .
   * Imported Upstream version 1.15.3
   * debian/watch: use gemwatch to track gsl gem
   * add ruby-tests.rb to run tests at build time
   * debian/control:
 - add myself to Uploaders
 - bump Standards-Version to 3.9.5 (no changes needed)
 - drop transitional packages
 - replace ruby1.8 by ruby in Depends
 - normalise VCS-Git url
   * debian/patches:
 - refresh patches 20110605_extconf.rb and 20130815_deprecated_enum.patch
 - deactivate 0110605_*_complex.c patches; not needed anymore
 - add 20131016_fix_test_typo.patch: fix typo in a test
 - add 20131016_test_output_less_verbose.patch: make tests less verbose
   when passing
 - add 20131016_deactivate_failing_tests.patch: skip failing tests on amd64
 - add DEP-3 headers to 00{1,2}*.patch files
   * debian/rules: drop --with quilt switch
   * Repack source to remove non-free documentation (Closes: #709497)
 - add debian/gbp.conf to filter out rdoc directory, containing files under
   the GNU Documentation license with invariant sections.
 - do not build the doc in debian/rules
 - add dversionmangle option in debian/watch to strip +dfsg suffix
 - document in debian/README.source how the repack is handled
   * debian/copyright: port to copyright-format/1.0
Checksums-Sha1: 
 62b29cb1f0cf55ae40c6ad3eb4bc0cf818ca24b4 2230 ruby-gsl_1.15.3+dfsg-1.dsc
 3e2574a2d06ca0e07f0cdeae7836bb3b9a8d9223 503662 
ruby-gsl_1.15.3+dfsg.orig.tar.gz
 b8a2aca2abdddebbc7e7d61f938254c721af3ba8 8136 
ruby-gsl_1.15.3+dfsg-1.debian.tar.gz
 9f2163655605e43611e4fd60632df7210010aa48 721754 
ruby-gsl_1.15.3+dfsg-1_amd64.deb
 9bab1f13a67f9c29b597d37969e6c265833ca65e 1635230 
ruby-gsl-dbg_1.15.3+dfsg-1_amd64.deb
Checksums-Sha256: 
 434eff8efbe4179338d03d634daf626609610bfe1d980148e9fb6929fde9c099 2230 
ruby-gsl_1.15.3+dfsg-1.dsc
 76939f7d5965f562fa428ba4b1f445fb8ef6b704b883bce410c6261884e2c5de 503662 
ruby-gsl_1.15.3+dfsg.orig.tar.gz
 9f29de1645857714dee18248f720e231129b6f9aab1325acbaf1a395d57a954e 8136 
ruby-gsl_1.15.3+dfsg-1.debian.tar.gz
 62d580f7131f6ddef48cdd0fb57b013eb2de9ffcdae434f43e90a7e425a5da3c 721754 
ruby-gsl_1.15.3+dfsg-1_amd64.deb
 42770296e40bdbb9294d1d502de859c8002c32c74adf884eeaeb21060a904099 1635230 
ruby-gsl-dbg_1.15.3+dfsg-1_amd64.deb
Files: 
 ea2aaed6bd62db22a4b0a278583b75f2 2230 ruby optional ruby-gsl_1.15.3+dfsg-1.dsc
 ccbca52303d52232e588be6d06346b0e 503662 ruby optional 
ruby-gsl_1.15.3+dfsg.orig.tar.gz
 11a10801ad35d31bf0855b0eb77dc231 8136 ruby optional 
ruby-gsl_1.15.3+dfsg-1.debian.tar.gz
 682d19790cf865d079570368e8977cb7 721754 ruby optional 
ruby-gsl_1.15.3+dfsg-1_amd64.deb
 fec8091afe51d5d7ba20cd7414ae2e1e 1635230 debug extra 
ruby-gsl-dbg_1.15.3+dfsg-1_amd64.deb

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

iQIcBAEBCAAGBQJSmhvrAAoJEKkHZFuPn48JGiYQAIIK9QAVqq2jYkSMmgkdz9jY
Rb2NQSvGRknnNhS8uBT9x4RZRx8EXVySMznWUKwBoaMOctVn0A+PUddYP1JjzMDc
KmkDaZyPGhuxya7+b9aKt5q4WZ9JHcjxXQUsNyIvo3Srx8WX9lKG7hAfaNQpmmCN
Vgl96bZGwlouoCLCEFignwFjKKWyrbOIkORMx0FMixGrhshfLRuywHRhUwzP/y74
ln55U2Z791wX6tYcwoaTFoeZj0BT+Phkh6QtLhzHH/ve2EoUmoTXBYljesmfXN3a
HJLLfdvo7M6CWfdlAv4VlZnVZVeUsjhUG16B/OfFwFjdiqJk7VwQgBFifYY55U0u
o5EHXh2ju5D6kcO6+Eu6TNd+OyPcYOoqsbJXfBlJpajislYO+ak+yzMkS62+ilGT
t5GAVTdDhXGY13F+2/G9DN71jLUZI006gUSZbX53TbzQp+/zMVO6Xv11bC219wCb
tBPlLDQnL54ueqTmrMJevALPq8vStHBeBPGn4ij3li/fwody3Adpzo8ePX5Go3/0
3x0UN0YuiDEChckdCwwDR/1x48EAPDxuxke+41FmNm83818qUoGG6Fso5mrPWJJ8
SCwSLDRV1Ymbv3ui6dY1tlcCRCLJs4tJEZwWPxWh5uRz170sHwgfQP5dr7/VVCQg
bISYs7dY8lZLOW3f3smL
=aLPY
-END PGP 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/e1vmobv-xn...@franck.debian.org



Accepted liblwp-protocol-https-perl 6.04-2 (source all)

2013-11-30 Thread Dominique Dumont
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 18:11:28 +0100
Source: liblwp-protocol-https-perl
Binary: liblwp-protocol-https-perl
Architecture: source all
Version: 6.04-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Dominique Dumont d...@debian.org
Description: 
 liblwp-protocol-https-perl - HTTPS driver for LWP::UserAgent
Closes: 129528 622212 687834
Changes: 
 liblwp-protocol-https-perl (6.04-2) unstable; urgency=low
 .
   * added patch to fix https_proxy (Closes: #129528, #622212, #687834)
   * compat: bumped to 9
   * control:
 *Standards-Version - 3.9.5
 * depends on libwww-perl 6.05-2 (yes -2 to get https proxy fix)
 * added dod to uploaders
Checksums-Sha1: 
 7b9b69fd7d18e1460d106f4a9368805106341213 2305 
liblwp-protocol-https-perl_6.04-2.dsc
 2a216c257780bfbf68b3284a5e7427ae3a3a1317 7180 
liblwp-protocol-https-perl_6.04-2.debian.tar.gz
 a3953df285203032a469b48a19affc8f2d6cb808 7830 
liblwp-protocol-https-perl_6.04-2_all.deb
Checksums-Sha256: 
 33b476aba1338c436a7cc17f4109dfd1cdd6aa69b532ab29a2e1c22ed3c252ed 2305 
liblwp-protocol-https-perl_6.04-2.dsc
 f946a01fc1d6e0bac509b4670810f6b921eab7e9e151754809d1455765be5216 7180 
liblwp-protocol-https-perl_6.04-2.debian.tar.gz
 a263a0e3cf0ddb16842d435c57cbd8ce9c93327c096c128b5fb80dcd483fe5e5 7830 
liblwp-protocol-https-perl_6.04-2_all.deb
Files: 
 915a46a11b822e4ca71969abca8e8358 2305 perl optional 
liblwp-protocol-https-perl_6.04-2.dsc
 01b961d601320fb7bb3eefabbc2edba9 7180 perl optional 
liblwp-protocol-https-perl_6.04-2.debian.tar.gz
 f6ea83ae5b7ec43edb4693f0e7032176 7830 perl optional 
liblwp-protocol-https-perl_6.04-2_all.deb

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

iQIcBAEBAgAGBQJSmhymAAoJEMMfT9lJqytscbMQAJHD9tK9Yu1s/0MNfqYoVe9q
S0UzoBFuiF7DL34qIwOsheJGUfpu5OHFTYihpm2LrgmR0yGEPAvWbJ6O0TshR8cc
xD5UilwLngkemDOr3CcO8rTPYTdXa5KluCkLX4SsUb5bv8LL7pXDrViqctnzKnqO
ZS+RgBOYNGvpzhg2uRzRZs4O8DDAOhwu2Fq7X/ed66VknVRPueYeOgJCzXq+9v0p
bTlPHyJ4pwsLs4gFb87It0WrlcdYYMxpUdYj+2KNea6c3DYa8LqwqypaLV67Kfnu
TrtmMtTAaj7AH/gIolHa3gZYB76jZHT+nzUNro1YwwTCBEy/0d5cByINEpoGTXs0
lAwvOHRNKfqQs7PhT4ZIWl7o+x+a8TlWUNIE2l5CKbXVg65jSgB8f2yhrc5+foIU
iZpvEvShDY/fd7PEkkiKVitYH61yYt4tBDD7IUZ6pOA+Yw9OBerx5a9BpTDR7V9P
IRPeQXQaJNzoLrQ2avQlEoim7x6WHgdlexaOHM9hj9O8Lu0LOnQ7VHbqdM07sl5T
YZ8a/iC9B4ae6+G20OaKbBYNSUGts96qXTiWrT7BhKXA7ItJ+Dftet43C+xyJzCt
AlOIN87j48qB61J72SDLTlCwb4NxZL6Q5NdsvkEJ6X6xnMwNQ5bljCmBytnHNiRQ
Wni73SaBh6+nZEk2mHkb
=ukW0
-END PGP 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/e1vmopy-00038s...@franck.debian.org



Accepted opentoken 4.0b-4 (source amd64)

2013-11-30 Thread Nicolas Boulenguez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 15:29:08 +0100
Source: opentoken
Binary: libopentoken3-dev libopentoken-dbg libopentoken6
Architecture: source amd64
Version: 4.0b-4
Distribution: unstable
Urgency: low
Maintainer: Nicolas Boulenguez nico...@debian.org
Changed-By: Nicolas Boulenguez nico...@debian.org
Description: 
 libopentoken-dbg - OpenToken lexical analysis library for Ada (debug)
 libopentoken3-dev - OpenToken lexical analysis library for Ada (development)
 libopentoken6 - OpenToken lexical analysis library for Ada (runtime)
Closes: 73753
Changes: 
 opentoken (4.0b-4) unstable; urgency=low
 .
   * Adopting the package. Closes: #73753.
   * Switch to debhelper 9, dpkg-dev and dh-ada-library helpers.
   * Build-Depends: gnat in addition to gnat-4.6 to ensure default compiler.
   * Vcs-*: correct field names and values.
   * Stop depending on inexistant ada-compiler virtual package.
   * Mark lib and -dev packages as Multiarch: same.
   * copyright: update, machine-readable format 1.0.
   * Move runtime tests to debian/tests. XS-Testsuite field accordingly.
   * rules: inherit hardening flags. Do not compress examples. Implement clean.
   * Standards-Version: 3.9.5.
   * source.lintian overrides: -lib does Depend on -dbg.
Checksums-Sha1: 
 224e55fbfd85ef16cf102d3ea2699a7fdd32fb1e 2059 opentoken_4.0b-4.dsc
 75dff0c5ce8b96dd32edb0a40fbb36c1938bcbfe 6632 opentoken_4.0b-4.debian.tar.gz
 fa58e963c2f41363fcfcba9b4804ac2ff1e8aa0c 553514 
libopentoken3-dev_4.0b-4_amd64.deb
 faa36ec7bc3dbbb43d7a174b79d23ffdf5326fa5 269334 
libopentoken-dbg_4.0b-4_amd64.deb
 b84b9d72918dde7b22f484edb5b42cf99263a958 128758 libopentoken6_4.0b-4_amd64.deb
Checksums-Sha256: 
 84a54cec0e634c9e876ed1b902ea142fb53c8b7f6c2696cccb93e80a8972d539 2059 
opentoken_4.0b-4.dsc
 c0793b2e3e97201279ed16ce8d1b65cb345f30a3c0d8598d9428798d92257daf 6632 
opentoken_4.0b-4.debian.tar.gz
 d7dd3a220b339aff64823ab2a4d43d874fcd5a1d78b9191b5676301eb7b65d5b 553514 
libopentoken3-dev_4.0b-4_amd64.deb
 0e40180321e50b7066f5216063c5a8bda05922fc61a1fe9b8d148d9457c0d551 269334 
libopentoken-dbg_4.0b-4_amd64.deb
 50f12b71c95b27bdb3c8561818315141d3fcddfc7eccbb3c1a7ee0231d86b7df 128758 
libopentoken6_4.0b-4_amd64.deb
Files: 
 d1eff7d41cb9cb0cab5ec225c0d1ee3b 2059 libs optional opentoken_4.0b-4.dsc
 5b0980c37bc6843bef560bd0957b1798 6632 libs optional 
opentoken_4.0b-4.debian.tar.gz
 6b3aebf7ebd7ac215ad2e51a57d8078b 553514 libdevel optional 
libopentoken3-dev_4.0b-4_amd64.deb
 ed39be2568bb95a4202646a70cd4a4d6 269334 debug extra 
libopentoken-dbg_4.0b-4_amd64.deb
 8aac2a0867aeb7eb45dc8afcdbb78766 128758 libs optional 
libopentoken6_4.0b-4_amd64.deb

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

iQIcBAEBCAAGBQJSmiNGAAoJELUqnPRJDfyNBEsP/2sDyo0sY/QY3ssXS5z2jQ3v
A6Zh0DffvLCOxIfxWECh0A7vGoBfkyOeRsITKeCA635oe75daq0fqQEUk3diXqQN
0BiB4dkQwREiPtiOclkbxjnEWEYdtCpLTWc/Pjn0OFHdjK6gWOFcDK7gk7h687rb
3c7RmicBsuqz0It0xpXe1M9iBWNl74wcz+l71L8pj0e0OhWGLhTlx4iN84r93BUs
CABhT36reykv74VlMtK+GW6Py0j/osC8SytebGa5zMm4/99QLIQT8iWpUyB9Unk7
h5wwEdV0J9WUKHPJzGXh8kepYAXoyPxZIr55H7QfmL5Nyj0Kvkvh9mtfiyA8BSzI
ptgIQ1RVuISoJyTcre6Kuxpz/rn4/SQSjfUwOyiQpEyaDnIusMK8LSGnx9hI+KZp
XQ0eBbi7aIpRC6P0BJgZfFL1dOYKRvNRGJcS4RNTBR/mXqD3pQEtQIfFlDB6jnCQ
o02+f8jEGNKkxtzQ7AOTTnWTU/SyZD8WtUmvw29350oNohpilsq4P6HWBqDmVCi0
nSFqOQXQIRe9k2WQoJnA+zqB7MlOM0P2AvbjS/TQoW7WmokwmmAPLmNQ0PNpsZ8L
UvWdDFWfhWSTMLV8yqEB+fk//pWP1md1RF4hSYvXNKWrnqo2r3icjEKUqyGCM32b
VsR45oYIX3VTzWrlOU75
=+4mm
-END PGP 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/e1vmofd-0005zc...@franck.debian.org



Accepted haskell-yesod-bin 1.2.4.1-1 (source amd64)

2013-11-30 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Nov 2013 12:23:09 -0500
Source: haskell-yesod-bin
Binary: yesod
Architecture: source amd64
Version: 1.2.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 yesod  - Helper executables for the Haskell web framework Yesod
Changes: 
 haskell-yesod-bin (1.2.4.1-1) unstable; urgency=low
 .
   [ Joachim Breitner ]
   * Adjust watch file to new hackage layout
 .
   [ Clint Adams ]
   * New upstream version.
Checksums-Sha1: 
 b67332ad230a423964e0f6c6e412da1b323c3dc6 3579 haskell-yesod-bin_1.2.4.1-1.dsc
 8aeba70c8acd9868c9cf759fabb8ae3cf8a1f410 359313 
haskell-yesod-bin_1.2.4.1.orig.tar.gz
 8f2414ad6c104f2801b962faaec546fc4649ee1e 3512 
haskell-yesod-bin_1.2.4.1-1.debian.tar.gz
 6353bd1a938876633c1ff80526bb81b2e6789758 6228910 yesod_1.2.4.1-1_amd64.deb
Checksums-Sha256: 
 156bc62cd568d3e56106d317395f287775143a9afbadcdbb357b5b0b6593aff0 3579 
haskell-yesod-bin_1.2.4.1-1.dsc
 9966b30d57bbb859c0d953fa476f18a578a6f584b5efd2cd97cdb9f8a8ea9fa3 359313 
haskell-yesod-bin_1.2.4.1.orig.tar.gz
 18b3491457e50bb85773a5a617351c8c61e90394aad27bdc375b9520978ef47d 3512 
haskell-yesod-bin_1.2.4.1-1.debian.tar.gz
 25274e3e4b54f162c165ee6a0fdb9cdd750909735542ec6ddefb5adb54a378f5 6228910 
yesod_1.2.4.1-1_amd64.deb
Files: 
 b43a49f8054853a7f7cbf015a5db1d01 3579 haskell extra 
haskell-yesod-bin_1.2.4.1-1.dsc
 d65d587aa16ba3c698e41dc6070b08e4 359313 haskell extra 
haskell-yesod-bin_1.2.4.1.orig.tar.gz
 0ffae24201bbd8c1e72fe89878b7006a 3512 haskell extra 
haskell-yesod-bin_1.2.4.1-1.debian.tar.gz
 17481ce38aa7477b9078dc84f3485413 6228910 haskell extra 
yesod_1.2.4.1-1_amd64.deb

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

iQIcBAEBCgAGBQJSmiEzAAoJEFWSMx4ZnTio7MoP/j1x3ccpDe2n5ItCR8u1lSr5
jvlrRW73no0fg1NPXq50OHuiurPakC4JUAv4xZdwdNaJnRe3kdEbh5mbw9SY5SSR
3X90+Xs8gohwAv/JYAZKOta4ZOJRAjtyy8bcfMxzKJWLDow5YDJ439iCK8Re3Qdm
1lt/9228KFM8GVFL2apzox2Pah6WlpqiZFuL1MMxCX1x9SezUQSTlRwLPP2jsk+U
M9iQsoTzLB4HOWJqzcmHSjhXFD2DFSH0r3wFjo8UnlivFNio7I3kpDDl0MTbT8ib
Y0Bi6wPaI98vN/XYPXVxsZvt8VSRCWZxwD0sUIMgfJK2NdXW6wGnxP80KHyDNmP/
sNL8MmZkh73D60G/zgmOK+V9UwaytoXBy7ym/KG2O2aeTTRreXEKgq2bDKIAfIDZ
Zt05IrAqSgL5neUG4VCZrbxaOFGpUqkvfGZY2oqJgjJbm39vqcfcBKYl2NZh7b0Z
hdJWvu/QyzJyXs0QAxzPwh+ERJfgjMx1BieTOp62F1oZHBFRSqaEeuOcRW+fAyGd
BSFMjddjn4UVPumuTTOMhtCZpuJOzVpGBZ6gwZE6KpVEM0xJd1gzBUCbF7bmhCLK
1o4BFVbKzLY8xesC7yhZUmdq/V9EwY/0efM2nxdx0U5znWRlLU2DOMz6RoBx2UH1
gi9XzPjI3tqvbBk0jlLl
=Zvlt
-END PGP 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/e1vmoet-0005ss...@franck.debian.org



Accepted emacspeak 39.0+dfsg-2 (source all amd64)

2013-11-30 Thread Paul Gevers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 18:16:29 +0100
Source: emacspeak
Binary: emacspeak emacspeak-espeak-server
Architecture: source all amd64
Version: 39.0+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Accessibility Team debian-accessibil...@lists.debian.org
Changed-By: Paul Gevers elb...@debian.org
Description: 
 emacspeak  - speech output interface to Emacs
 emacspeak-espeak-server - espeak syntesis server for emacspeak
Closes: 730682
Changes: 
 emacspeak (39.0+dfsg-2) unstable; urgency=medium
 .
   * Update standards to 3.9.5 (no changes needed)
   * Fix dont_use_-q_in_emacspeak.sh.patch thanks Jarek Czekalski.
 (Closes: #730682)
Checksums-Sha1: 
 626cec15e9b1536b81fbf5ec3ed7441d105fbdba 1755 emacspeak_39.0+dfsg-2.dsc
 2007d70d09eb58c364aa0529fa39499e17227d9d 52745 
emacspeak_39.0+dfsg-2.debian.tar.gz
 5d1c87c78edc44d8e2ef5f96b8d3d72947d2853f 3883914 emacspeak_39.0+dfsg-2_all.deb
 4f274e09ba0992d361e236b5a9c5db4f1438fe86 38146 
emacspeak-espeak-server_39.0+dfsg-2_amd64.deb
Checksums-Sha256: 
 b470e6f83226b868904de681f0eef1c316eb5f418e8cde1729db53b449a9b46f 1755 
emacspeak_39.0+dfsg-2.dsc
 4072d3f8969de62d39e852d89954b68a76bfc30fc8eb15a85d8f8c90f2ea8ae5 52745 
emacspeak_39.0+dfsg-2.debian.tar.gz
 1759f771bbda6fe534c212a958f14fde0c2416c0e6faf6b2957c63df13431bc5 3883914 
emacspeak_39.0+dfsg-2_all.deb
 bbb4f1a4a811615100d7154cbd58f188d0568b159fbc7ead14258b372432bca3 38146 
emacspeak-espeak-server_39.0+dfsg-2_amd64.deb
Files: 
 8fe21b2ac09fe02bcf55592671499fe6 1755 editors optional 
emacspeak_39.0+dfsg-2.dsc
 ce2b5b0e999425ed3cfc5eae1d18e3d8 52745 editors optional 
emacspeak_39.0+dfsg-2.debian.tar.gz
 48fc6a1770bc4a278ea3ca0df3d4ba34 3883914 editors optional 
emacspeak_39.0+dfsg-2_all.deb
 a5f88249a586569848032bb81084ec53 38146 editors optional 
emacspeak-espeak-server_39.0+dfsg-2_amd64.deb

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

iQEcBAEBCAAGBQJSmiCmAAoJEJxcmesFvXUKn6EH/A0jg9AHdvfmlbRC/XcpbGCF
4xDrt1gUELPi7j0WtN3rZ9mI/YCM33sXComaO4gRlxjoPMgcckbW+2DCtRBE8/7D
kovQgmQY0YpJyOG4ZiM6NL0JOxYnpXhWqUjE2ea7s2RBVd2hB7u2RRgoH+cteK+T
8z89FlKLqt9X82ISYsi+YzxpE9k7Hopr6CG2d6ddNjZw+ltXcdNnlFyeR7PPkLK3
MV7EwYXZH7r4Hjecx1sYGVVtfrB0xgQyROSTYXF654f5j1GRpzMyu8D1X0zZb98a
SN0dWZCXKy/tWkJignzL2EecMN6ZdC9LPFTbyvuSJJl1VVMO8+VFrSinMtBoRV8=
=0+eQ
-END PGP 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/e1vmoec-0005mv...@franck.debian.org



Accepted ruby-shoulda 3.5.0-2 (source all)

2013-11-30 Thread Jonas Genannt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 29 Nov 2013 14:24:48 +0100
Source: ruby-shoulda
Binary: ruby-shoulda
Architecture: source all
Version: 3.5.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Jonas Genannt jonas.gena...@capi2name.de
Description: 
 ruby-shoulda - additional features for the Test::Unit testing framework
Changes: 
 ruby-shoulda (3.5.0-2) unstable; urgency=low
 .
   * Team upload.
   * d/control
 - bumped standards version to 3.9.5 (no changes needed)
 - fixed vcs-browser url
 - dependency ruby1.8 = ruby
Checksums-Sha1: 
 fd2153f7bd2975cd950111d12a0e0bf841c1c503 2105 ruby-shoulda_3.5.0-2.dsc
 84006bdfa5c29d29341395fef8d8f44e3352b6b4 3202 
ruby-shoulda_3.5.0-2.debian.tar.gz
 2e6c98baefd0edee2e56a58517dd1ffb0d169326 5168 ruby-shoulda_3.5.0-2_all.deb
Checksums-Sha256: 
 64be534c1c94bb160a3f56fe530db7f6f9707371b1e3b6f1674a33899735d566 2105 
ruby-shoulda_3.5.0-2.dsc
 210ff2af4a3a855efafb7091a674d7c684aab9dc3d6372ae93e504347d8ddfa0 3202 
ruby-shoulda_3.5.0-2.debian.tar.gz
 d2770d14b9d84ac2424dd175da9f51d4bec710b57357fe559560dd9e67ceb4c0 5168 
ruby-shoulda_3.5.0-2_all.deb
Files: 
 b903b39ba1bef2627ebb08a02fa91453 2105 ruby optional ruby-shoulda_3.5.0-2.dsc
 6df5e766e619247ddba455f597bbc7bf 3202 ruby optional 
ruby-shoulda_3.5.0-2.debian.tar.gz
 0f288e2a610871f6b77642dd2fbaaa88 5168 ruby optional 
ruby-shoulda_3.5.0-2_all.deb

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

iQIcBAEBCAAGBQJSmiTmAAoJEKkHZFuPn48J1gAQAIOMfblZetQ0VwwT45Am/JZ8
En64XErTS7nkFwbRCs45r/o6/Ob3Ypyjo+uuqec8/I5sbfCCZ4YBseuMYjnwMJ4t
2mBaD1KSbWmfflzH8l8f0rArmQQT8vCCAaSM6eRtA7fEFNMA25VXbJ/zlk3v2uji
/y23R+Gp1C8IC1MKgwdWWTe7MtIVupwaqmKXb/03NVHgnZHlNV8xE5X5gXINm4gM
48HxJF+/l6dsynZV+oYHWAcT+nX0k1TuQ8/0/wnPeiyabgiGpYFKCArIa0PZhGWc
uj9cPiVrqeFkX6CxkkZpyVMtp81+bTu7lk+mBMhDQ4vnDruZn8evTC6ttPTdne9O
horEawuIDz4JVSip1FH5MDmMnbPr/OtK61svx0Md/lpeXcnT905yQjcozHl8tO9W
OpEmbjVgSvFVK5pydIG2apEJ9YqCl14G6ttKY5Z6gxs3eefw/JRar2BTPI6v4CE2
RxD01vJ9ObZZGPsjZHL/lWjPaaHNrzsDzmyeoB6BrzoSZaOMpRP4fO8EGsFkEgfY
OkP9miBprfpYA8nzKL2weK85js5c0eq71G464obz7KAncMrPO9H00om1xfNdQ0QC
yNGKoVklHocspJcp4cDsEoh9M1EBpSuOtXwRzDD1d4XcjtmrgqjDQPaxPouS6e4+
KQyBq5Q7b+i8AUX9L4dW
=XN3+
-END PGP 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/e1vmote-t3...@franck.debian.org



Accepted multcomp 1.3-1-1 (source all)

2013-11-30 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 11:50:36 -0600
Source: multcomp
Binary: r-cran-multcomp
Architecture: source all
Version: 1.3-1-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-multcomp - GNU R package for multiple comparison procedures
Changes: 
 multcomp (1.3-1-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Added (Build-)Depends: on new package r-cran-th.data
 .
   * debian/control: Set Build-Depends: to current R version
   * debian/control: Set Standards-Version: to current version
Checksums-Sha1: 
 13b4df8747f3a1b01c73a100a586f5f331e98502 1134 multcomp_1.3-1-1.dsc
 fcf75c6264acbe65cd7ee7061399402a647469ab 579337 multcomp_1.3-1.orig.tar.gz
 0b1614f7ebe9ffdc31c5c331a8a36847767d3f68 3109 multcomp_1.3-1-1.diff.gz
 55da719dc39595ada802d4fea256184d53574504 581276 r-cran-multcomp_1.3-1-1_all.deb
Checksums-Sha256: 
 f0fb1834d4dc3764be2c655c385ba724fe3a020704172e2568cbe2c5965ae55b 1134 
multcomp_1.3-1-1.dsc
 3e9c93bfcc0c90ee98ccee8c32b0fb4e0ce814d55e01fd2435c49008f387539d 579337 
multcomp_1.3-1.orig.tar.gz
 786009ce27c2cb88fd1803875996362304b0e125b256270a10beda95b0321dff 3109 
multcomp_1.3-1-1.diff.gz
 05d22386cc8e1ba2713e6e3f3ad0bd065a55002496c0d8d6fbb22899d7e30126 581276 
r-cran-multcomp_1.3-1-1_all.deb
Files: 
 c5f95d6f7759976d81f3a6591979f421 1134 gnu-r optional multcomp_1.3-1-1.dsc
 849c1e0471ed60dfa316a1e0a89253fb 579337 gnu-r optional 
multcomp_1.3-1.orig.tar.gz
 1802008b2fb348464b783a199b73df16 3109 gnu-r optional multcomp_1.3-1-1.diff.gz
 8cae1e90752da5bf3728b5005b47e372 581276 gnu-r optional 
r-cran-multcomp_1.3-1-1_all.deb

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

iD8DBQFSmiYdCZSR95Gw07cRAnSPAJ9TQpdago8F31smp1h/6iBFjQbmvACfQCNh
nDp9ANi9wwSEwYFjRP90sos=
=e52g
-END PGP 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/e1vmp87-0003kr...@franck.debian.org



Accepted haskell-representable-functors 3.2.0.2-1 (source all amd64)

2013-11-30 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Nov 2013 12:46:26 -0500
Source: haskell-representable-functors
Binary: libghc-representable-functors-dev libghc-representable-functors-prof 
libghc-representable-functors-doc
Architecture: source all amd64
Version: 3.2.0.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-representable-functors-dev - Representable functors${haskell:ShortBlurb}
 libghc-representable-functors-doc - Representable functors${haskell:ShortBlurb}
 libghc-representable-functors-prof - Representable 
functors${haskell:ShortBlurb}
Changes: 
 haskell-representable-functors (3.2.0.2-1) unstable; urgency=medium
 .
   [ Joachim Breitner ]
   * Adjust watch file to new hackage layout
 .
   [ Clint Adams ]
   * New upstream version.
Checksums-Sha1: 
 62d60e1cc59951b690a4824649e260d11be6555e 3399 
haskell-representable-functors_3.2.0.2-1.dsc
 da0bc1ce1983b130a904935cd711060999f760f1 9888 
haskell-representable-functors_3.2.0.2.orig.tar.gz
 fd7f37894c37900ee3e81fa109a5e91a71c87123 3453 
haskell-representable-functors_3.2.0.2-1.debian.tar.gz
 aeaa81f6883d32219fb970988a4e7892f4d13b32 51536 
libghc-representable-functors-doc_3.2.0.2-1_all.deb
 26022347bff44d36f66fbd474ef9c9de432eaab1 105796 
libghc-representable-functors-dev_3.2.0.2-1_amd64.deb
 c3e0a98858aad7cb6cd6aeacfda41f3cdff6005a 129394 
libghc-representable-functors-prof_3.2.0.2-1_amd64.deb
Checksums-Sha256: 
 1e3790af34df2eaf031acec0d537bb69c93367549c6a9c61d73b05652dcf03d3 3399 
haskell-representable-functors_3.2.0.2-1.dsc
 8206be657d1e44332d88d1f41cccad2561f1df21c6bc7bc9be7c760c5385d994 9888 
haskell-representable-functors_3.2.0.2.orig.tar.gz
 352b0384f93c2da675250e29150665beae5073e5f4e3c4c6f1465447845766e1 3453 
haskell-representable-functors_3.2.0.2-1.debian.tar.gz
 9b087084653fb0f14bbf8d1d4091b45d8205bec49f725e8525c6e6e14d6a70a2 51536 
libghc-representable-functors-doc_3.2.0.2-1_all.deb
 c2adc9fc9fb1f20897f7d972754c4eb79ed072e13f261b59f6573ca8381524e2 105796 
libghc-representable-functors-dev_3.2.0.2-1_amd64.deb
 a4581ae20759e0e7124e6cbbc4f17a00d1a4ced8b1ab8b45caf5c644031cfbb5 129394 
libghc-representable-functors-prof_3.2.0.2-1_amd64.deb
Files: 
 624272376eeb978e30121b6c579fd508 3399 haskell extra 
haskell-representable-functors_3.2.0.2-1.dsc
 6f5c884ffd6ccffc34c82f0e98889beb 9888 haskell extra 
haskell-representable-functors_3.2.0.2.orig.tar.gz
 4855fcce99d360d9e441f94faaa3bfd3 3453 haskell extra 
haskell-representable-functors_3.2.0.2-1.debian.tar.gz
 d794d6950843f9902acbb27bc26223a5 51536 doc extra 
libghc-representable-functors-doc_3.2.0.2-1_all.deb
 740ecad4ec9ffd0a2d12a723eaab74b5 105796 haskell extra 
libghc-representable-functors-dev_3.2.0.2-1_amd64.deb
 1516bf0d98c6f43d9e5cebb787341b24 129394 haskell extra 
libghc-representable-functors-prof_3.2.0.2-1_amd64.deb

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

iQIcBAEBCgAGBQJSmiiiAAoJEFWSMx4ZnTioF1kP/jsTS9wsxVTVD/nNTXmY0gK8
01+QENeRIZfBgNepevGV7+2fX+YCBw/OhTHR1ejcKq5eJtrNgdnCWa/z5X0Evf7K
5W9Y8tG3ybLYm1WxPnB5OI1szM6DPTGNZSkzPMn8hpi5A17EHK33dVubJtprp4Zp
CbcZ/bioT8h+7y9gysvYo4Zb4/tNDnJMJxF1KpdVH4XOAkI4sD/U3XNvwDGDlTSr
QHX1T7ON2A3ZK4LYp77jbupgSpV/D5OpW159b7JP0S/P0SZgm9AgT6qM9DyIARsT
lttjCAIdPExXpQobTgBI7AS/zDxG911KSQDVD1lD/uJPUcJK0Hoe1kNYBMlEPVeY
nNmglh4ZKtRPsVkeGlQS6u0y9Ct5WHVaSWPXVINrk6p6SIZD6tdQg2Tk+1YXXOaR
ipj405PMyOfrVX/IfXNvNBgUqRYnIUN22pUUuOEtubD7O55VRXMieDZnkQhWG95t
5tr6ccr6TQNIwilHAdkc+s73CUFrWH8HEAE8SeGIayuPRzyJ4OHw786xbVXI4w6P
dniBpv7DCBCfRucRKJCW09T10+aGP8zNIurN0tOkibuwKJ5XV8/vbJv6m3dZU9UU
IoiAas7qFR1xgXeGbdwOPPYM7k3al01NkgXRG0FdZpxEjMbaVUzGTH+J7Vmr5zmf
b8pV9iqdlv/E5LtTXULO
=9Cgv
-END PGP 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/e1vmp7v-0003gi...@franck.debian.org



Accepted acsccid 1.0.5-1 (source amd64)

2013-11-30 Thread Godfrey Chung
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 02 Sep 2013 11:46:30 +0800
Source: acsccid
Binary: libacsccid1
Architecture: source amd64
Version: 1.0.5-1
Distribution: unstable
Urgency: low
Maintainer: Godfrey Chung godfrey.ch...@acs.com.hk
Changed-By: Godfrey Chung godfrey.ch...@acs.com.hk
Description: 
 libacsccid1 - PC/SC driver for ACS USB CCID smart card readers
Changes: 
 acsccid (1.0.5-1) unstable; urgency=low
 .
   * New upstream release.
   * Updated Standards-Version to 3.9.4.
   * Updated debian/copyright.
Checksums-Sha1: 
 d9a84d87c4ad3b10ba26093565a1b03127ecf877 1161 acsccid_1.0.5-1.dsc
 6ef463ba7d3531ad333be904589887fbd38e6040 354406 acsccid_1.0.5.orig.tar.bz2
 fecb49e0dc01c5d254e06698cb7a4c8436d833db 3170 acsccid_1.0.5-1.debian.tar.gz
 ba444fdc08188ba7cec68b4e0cb45c831b9561d4 58430 libacsccid1_1.0.5-1_amd64.deb
Checksums-Sha256: 
 69c8aba245e600fce9549dcc3f8b99e1d4e0c72e3a330833b624a681f9f2c81a 1161 
acsccid_1.0.5-1.dsc
 9b056595af04820653a1df14e33a86c533cd3b9f3d7d604ac8ddbacf5fdff119 354406 
acsccid_1.0.5.orig.tar.bz2
 4dd34dba7b8d3d96d14c98b7fc39ff77d3decfe85833e85e75fdfb38a79d4e90 3170 
acsccid_1.0.5-1.debian.tar.gz
 d9a54b5475d53135fdf3fab4e263e88e0d0bda067c26d50542f934091f30d266 58430 
libacsccid1_1.0.5-1_amd64.deb
Files: 
 55940450b1ac41e3636283e4f31965ff 1161 libs extra acsccid_1.0.5-1.dsc
 d350e113ff95ed0da7d89354aabe8df7 354406 libs extra acsccid_1.0.5.orig.tar.bz2
 e2e3d87b6452345a9a78cf54f9da256e 3170 libs extra acsccid_1.0.5-1.debian.tar.gz
 a9df8055f26770b66ee5f48ff671b46c 58430 libs extra libacsccid1_1.0.5-1_amd64.deb

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

iEYEARECAAYFAlKaKdQACgkQP0qKj+B/HPkWkACcC/6x7erJhGNzUH/SPyY9TnHy
AT4AnAwegUZIOtxPldU/PXVdsARVOz6q
=nl3w
-END PGP 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/e1vmp7z-00036r...@franck.debian.org



Accepted gmanedit 0.4.2-6 (source amd64)

2013-11-30 Thread Ralf Treinen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 18:32:28 +0100
Source: gmanedit
Binary: gmanedit
Architecture: source amd64
Version: 0.4.2-6
Distribution: unstable
Urgency: low
Maintainer: Ralf Treinen trei...@debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 gmanedit   - GTK+ man pages editor
Closes: 730291
Changes: 
 gmanedit (0.4.2-6) unstable; urgency=low
 .
   * migrate packaging to git:
 - add debian/gbp.conf
 - debian/control: add Vcs-* fields.
   * debian/rules: migrate to dh (complete rewrite)
   * DH compat level 9
   * Rename patch spanish-translation to translation_spanish
   * Add patch translation_german with german translation provided by
 Mechthilde Stehmann - thanks! (closes: #730291)
   * debian/copyright:
 - migrate to machine-readable format 1.0
 - add copyright of spanish and german translation
   * Standards-Version 3.9.5 (no change)
Checksums-Sha1: 
 017e8ea6bdac9bae921270258a8b70c677d35bbb 1929 gmanedit_0.4.2-6.dsc
 c861bded3dfc237d8cd6fb90c6b300838321bc4a 20050 gmanedit_0.4.2-6.debian.tar.gz
 a29aac797ed3adc82fa280bd505010287ffd0788 45518 gmanedit_0.4.2-6_amd64.deb
Checksums-Sha256: 
 dc0275e0ef373586653d0ee96e90a06397e7ee593312f4fc89a277f70aaca9ef 1929 
gmanedit_0.4.2-6.dsc
 5483aa0f527939939b57ab1da6324998dfe6b51c46c7d440189804fe29024689 20050 
gmanedit_0.4.2-6.debian.tar.gz
 fcac31df73bb61d97a0d01b8590b8c6f3d51839a8a5bf335db25d5675b73b576 45518 
gmanedit_0.4.2-6_amd64.deb
Files: 
 84e6e1c6352e79be06a0d232df7eda88 1929 gnome optional gmanedit_0.4.2-6.dsc
 eb537f86508d951a8a6505e0e6166323 20050 gnome optional 
gmanedit_0.4.2-6.debian.tar.gz
 2bd07ba2a0722158c97feaa1acfadd89 45518 gnome optional 
gmanedit_0.4.2-6_amd64.deb

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

iQIcBAEBCAAGBQJSmihlAAoJEHRcR2bUys3/hOgQAK+/P/Vs+8ole0nadT8OehQx
47ido1CQcuXUAM0I3umUQmKri9CLdK1l3AfDPtWc4bzRjhMqVGYkGr5Yyr/vvo9k
H6S6sldhFBNWA8Sm4j4s0K6qYBhzbs2Dh+QdZhRgvnLB71i8O+dkr0eR6b3cWNBZ
+laqEApgsG75l5RyBJ6ClZviaJPaePikYxcYLSKo9TvRmAV+u1ncAn6eGsE55Y1O
4i2J/V6PfD3oTMQe70ZaTE9U4bGKLrV2mQXN7dClGmZIrBjDkf8R1RpOT5yrtEzY
HRJKf72316FD5n2xJvzUe+UDPACB23Zanhfm+8vxf+k22eMMNa/b5h9XQ0ompuGX
ZGyUrQVcASs1W/QwxQD/Xl9Re244jv+CsP0iZkQS+DuVW6JlmR5SL3XRgG44pacX
X6KAyizOK+ieEqAvXtlSsESgi9Fw8+S1TjusnkEO35OUwe/FCjrK6N9IG4Bqmn3V
bpYMm6oKnA6mQ5v4y6tiOjQi9Jm8K0Wg8iNjP8bcq6ZyIqIdjBh3hWaXMNXOtAm+
0l2U05xDNDwsxCe9A2y3Yf6z8Uspnlkoo8KRjbE+TEnTthBO+QcTD05zdPEDexpq
5pHx131EmbaBRXcSEbCtNNWuJi4frSLlq7ScSTDhOx9vJhutvQTeCHnLWjRre9nP
barnmXSmBvTCNypJw2Ug
=sFfU
-END PGP 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/e1vmp7m-0003bq...@franck.debian.org



Accepted rcs 5.9.2-1 (amd64 source)

2013-11-30 Thread Romain Francoise
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 19:05:31 +0100
Source: rcs
Binary: rcs
Architecture: amd64 source
Version: 5.9.2-1
Distribution: unstable
Urgency: low
Maintainer: Romain Francoise rfranco...@debian.org
Changed-By: Romain Francoise rfranco...@debian.org
Description: 
 rcs- The GNU Revision Control System
Changes: 
 rcs (5.9.2-1) unstable; urgency=low
 .
   * New upstream release.
   * Bump Standards-Version to 3.9.5.
Checksums-Sha1: 
 d26c2cb91f81dc6decf38383afefb9981eda71b9 1879 rcs_5.9.2-1.dsc
 cb053f6ba87ab6ea03306d6241e1cde67182100b 795096 rcs_5.9.2.orig.tar.xz
 9fe3010f5a4d5772720e0ff56f4a2e7ef7e31194 6222 rcs_5.9.2-1.debian.tar.gz
 14c4b31bf8d1779dae8d235de2fe13e79f3067ab 199920 rcs_5.9.2-1_amd64.deb
Checksums-Sha256: 
 14ea1b1eea71ad836e30a9d89ad08f5c80158865a734c543f777ab437662ae8f 1879 
rcs_5.9.2-1.dsc
 651af3429ccfaa7d0d10b64214a9fe7b77b33ed958f233532b6026f5e8adb571 795096 
rcs_5.9.2.orig.tar.xz
 412ef78c1a08aa3650a09677d64b9685418c5a08f80d98768da49c749ba22db5 6222 
rcs_5.9.2-1.debian.tar.gz
 0e6b7d50b9229213138b6760c59cd064c68080cbbb3602849d042def41f2287c 199920 
rcs_5.9.2-1_amd64.deb
Files: 
 e04598db304f346317180872a9eef434 1879 vcs optional rcs_5.9.2-1.dsc
 2af60f0baa0262888d229c2f0f5b8390 795096 vcs optional rcs_5.9.2.orig.tar.xz
 f07bc23ccdbca3cb29a229774223e4ed 6222 vcs optional rcs_5.9.2-1.debian.tar.gz
 498dde6af5040971f3f7fd6568682291 199920 vcs optional rcs_5.9.2-1_amd64.deb

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

iQIcBAEBCAAGBQJSmitFAAoJEK0V9DXwX5YtGrsP/2y7umqN5ViDkzrxigc+HFep
aWNY11ihZGMSR7pbfipq9XbOu0CFO/oyngAtfuNhxf7i13obK16ZZM9BE4V4cvZd
m2yto+3d13JOr176X0Pyu9fx+WNQUkvcnvD2IRIiAFl0re/L/6ljJlNnDRhNQtSW
ksFCvXnbbGN/icbSHr/tO0FFbMQeQ5iXjurvmcKpXwMF6KGuvpP7wNLFW/PKq+kn
Slv9Hb+Sn+My2//15orkxv0D1oe021bnFKH3ohCe+U9fKNKhREX+68Lp36On26SM
Q7vfuBfOmTmFl2xLtUlymbVR/Rj23Pyi0vNeKI5WIzYDuZRaXFIIksT5994xmmf4
jBH3BNQ8j4/HUfaFwuKWPJHTn9BvQ/PLDpr205nZDAk0L9c9uHeMw9TCFjILv4Ai
p2HPQEuBqQiEOw3WT1g7z39ZyT9L3l4TkBmDGd5yhYVx45JBeqJjKnbkSosSaqmH
3NxDLnxSwCSE4LLQesM7l2QqWGwexXyfuPQi+8t0RXvN4oOrwDHQ3btfYJdAAGjF
Up99fJ/s9iuffxyHB6FLygAd0MGHc9xrkLInibUisO8pDtsk9Ck+XveYMa7P2hCq
vHOXtTZYhfWjoXBDbzA3+IMZhfOhXyBKH/2HRCY4cH4yWYkyJaMa9D5hT1THc74j
wpbx2YVT3wAOyCCeA+Nc
=KB66
-END PGP 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/e1vmpmk-0006gg...@franck.debian.org



Accepted arc-gui-clients 0.4.6-1 (source amd64)

2013-11-30 Thread Mattias Ellert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 07:08:27 +0100
Source: arc-gui-clients
Binary: arc-gui-clients
Architecture: source amd64
Version: 0.4.6-1
Distribution: unstable
Urgency: low
Maintainer: Mattias Ellert mattias.ell...@fysast.uu.se
Changed-By: Mattias Ellert mattias.ell...@fysast.uu.se
Description: 
 arc-gui-clients - ARC Graphical Clients
Changes: 
 arc-gui-clients (0.4.6-1) unstable; urgency=low
 .
   * New Release
Checksums-Sha1: 
 fb1356f1e7ebce581ce6711fa2bdab7ef3afe237 1893 arc-gui-clients_0.4.6-1.dsc
 cf48fd54416dafdbc06ed689f5935a3b7fe633d8 19298405 
arc-gui-clients_0.4.6.orig.tar.gz
 6e0bd821bd34ab19bb8838f2c7e8e1ee24e21aa0 1882 
arc-gui-clients_0.4.6-1.debian.tar.gz
 7f44c86fc9cd4593b94e382df944cd50d165f643 694130 
arc-gui-clients_0.4.6-1_amd64.deb
Checksums-Sha256: 
 9e001b0352f271ac073b88edd96cea6ac82bb16c8362c7c6c5a6d0ca99f63fe3 1893 
arc-gui-clients_0.4.6-1.dsc
 b5322911f863a227de8e45de88ef149cf9f0f20ded2f612fa6a06ad7b318160e 19298405 
arc-gui-clients_0.4.6.orig.tar.gz
 5f634fa35c9738162e952c48c444eda0ddd3a9cac1d223f4105d4d5e0c397250 1882 
arc-gui-clients_0.4.6-1.debian.tar.gz
 c99855291ff1d5e5ef7ba0f456ab35e02598b2c0e614e8443b4ef354d9a74b67 694130 
arc-gui-clients_0.4.6-1_amd64.deb
Files: 
 dc81eb6e4553e840e96e86bb13b900fa 1893 net optional arc-gui-clients_0.4.6-1.dsc
 5884285d617abd3530c4aed269e0e908 19298405 net optional 
arc-gui-clients_0.4.6.orig.tar.gz
 b9ec3c057b557e0728d3bbe2aad27324 1882 net optional 
arc-gui-clients_0.4.6-1.debian.tar.gz
 f4c1cb3d9fd6dc50645d582a016931de 694130 net optional 
arc-gui-clients_0.4.6-1_amd64.deb

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

iQIcBAEBAgAGBQJSmiyUAAoJEOiuwv874alL/9AP/AgBM+pmdX7LWFNJu2L1sa/p
9DuwUZb/5wxstI9s/JIG0bxCHXHbde7xaNAk0cNlHJ9LsofIHzu9glzqwqSa21QO
3wVhczb1US5TfwO6XajetKp+OKzgWnfawf+BmFiZCb8jc/cZ4PUmeX9NcfytrT3H
qH3h/Ij+X3ob+j8+7QN1qD2ZcYUjv/Ha5fcDLGyynmwc3yGRVg+02fGF8XDlQ4w4
dYS2bPYN6/D0h7UKoKH7YAz1UnPTYWeTfYgywTB3O98antkFCh91CWDyW9ZcfVz0
n0MevfHxvoHJDmO+4svoMvMt/YXCiW/eLsYcH/3qf/m1eZvh936Sp276edDUyOxL
GhHIEP5ZcYLAPT0AkJdMWFX2atiQYo7O5CW9lDbk1YaXrFtqNv3UICvzx+qlVDPk
G/qYKzJHdLx4rYPASzbVJaUuCb/XclptHFG//009pNM3ls41e97nba5UyYT4a2QD
TANEkEjTgNdcSjNgYw8fCG/64s1pWJJyNOEa1KYHRnBlnP2yMH10oSw6SYDcTUUo
7BOy/8IWjyMg3eZMwgUQtfNeoLZT9qN22S8BP8ZgdisvU6J56+EPrWiIlEz2QBeV
c0fJl7AYFMXbeDC1jiaX4qm2JUlNFcGd/hLyDH+zw5mRTjthL6zU/RaCpw+r5UPE
Gv5Ry5mYbykYnn5YeQcC
=i5yv
-END PGP 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/e1vmpme-00065u...@franck.debian.org



Accepted alglib 3.8.2-1 (source amd64)

2013-11-30 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 18:45:20 +0100
Source: alglib
Binary: libalglib-dev libalglib3.8 libalglib3.8-dbg
Architecture: source amd64
Version: 3.8.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Anton Gladky gl...@debian.org
Description: 
 libalglib-dev - Development files for the alglib library
 libalglib3.8 - Numerical analysis and data processing library
 libalglib3.8-dbg - Debugging symbols for the alglib library
Changes: 
 alglib (3.8.2-1) unstable; urgency=low
 .
   * [a6b0053] Imported Upstream version 3.8.2
   * [f6a238d] Refresh patch.
   * [6145e76] Set Standards-Version 3.9.5, no changes.
Checksums-Sha1: 
 8d8616d991c7064ff4aa260ea525177e8b5cba3a 2108 alglib_3.8.2-1.dsc
 aa8f65186623a95cc5bcc61ffc53d31c1ae642e2 1674260 alglib_3.8.2.orig.tar.gz
 dd60a7aabb88f3bb76526c2091045839744ac427 5193 alglib_3.8.2-1.debian.tar.gz
 a09bb078b241d9ed01322743eb50f4fd9bb5e9b1 218718 libalglib-dev_3.8.2-1_amd64.deb
 a34920fc04e6ec12e728efadc0ba88e6dd37b3ce 718814 libalglib3.8_3.8.2-1_amd64.deb
 2ad746c0e28449a2fcce4bd1a56f8bf4aea5cb50 1779704 
libalglib3.8-dbg_3.8.2-1_amd64.deb
Checksums-Sha256: 
 f10eec067d03c3180a396acb7513dafa25d683f58c3790a936293ab7bec4aace 2108 
alglib_3.8.2-1.dsc
 c02944558849c8b22f32f8dea03ebf3b77a0aab9aa2518927d25f6bfe7cb06a2 1674260 
alglib_3.8.2.orig.tar.gz
 778b0d74e7252d0f76cf1db2d0992bf7ca22047c8b82b08afe34d0a91e91ae3a 5193 
alglib_3.8.2-1.debian.tar.gz
 d0732afe7f06566ae5b7e701ca6a604b33f1f8ee282542b0a7684b2532a7a50f 218718 
libalglib-dev_3.8.2-1_amd64.deb
 7bdc900182069ce23975f2b1d2d2d85258670de13ab0a38eee8008de4ee961a1 718814 
libalglib3.8_3.8.2-1_amd64.deb
 2bbdc67935229f291eee78d8cf6ba9c32ef7239710a2fb0ecb899195d0d3bd33 1779704 
libalglib3.8-dbg_3.8.2-1_amd64.deb
Files: 
 a0fb9f991351e00eb9836607f927d99e 2108 libs optional alglib_3.8.2-1.dsc
 a28827b5b9c98638dff7fcfa8f877ac7 1674260 libs optional alglib_3.8.2.orig.tar.gz
 bde98ea50ad08ef5e44928a84f54b4f2 5193 libs optional 
alglib_3.8.2-1.debian.tar.gz
 94d6bc12f5ddc67365a33b5e23e9a475 218718 libdevel extra 
libalglib-dev_3.8.2-1_amd64.deb
 17a5571f455f384ce9c0d85c5e3ca990 718814 libs optional 
libalglib3.8_3.8.2-1_amd64.deb
 d1c2e589fc0e46f1b54b0e083523ccbc 1779704 debug extra 
libalglib3.8-dbg_3.8.2-1_amd64.deb

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

iQIcBAEBAgAGBQJSmixHAAoJENPhc4PPp/8G7HYP/2qw33xTo59OnHVvXa4qQzU6
/GTwVwuFGMGLQPbD4uUN/eYmT6OXfCrgJG6QcWInjL5PbM30nJahvX0SpnqMEtZF
kwlWLZPylIUiR44gprTEoVZAtNm732xVYfVGCpmrg13bYDMbthzY0gKzjrLjYmin
0oPoy5IGKuEybhDGA+1g7ATveVhsTK/AmfK7YCBogThACZKYzpEAZ+xo3JKBcgNu
3PNwKmz3DNrJ4iJmsEEcQomF+34Bodx4XOClKtXVsf5TFQR4VBepqH2Dx+DUOJSL
ysmzWnJZ/iXk7G2h9XjfboOFNy9Xdrz3U0MtqoCpQGtbzPxBmI11cLOoPnXV2Z6k
FVybB9oSWXhWFMPIh9qVvAju4BTln9J34S/xXqYDWzLWfY8SzhiENQx8zeZQdCnx
yu+72hUL29/GyKOhfaaLCLj6aM2M3G91YCq6UJmLHrSi7/kQHmyq1jRhxraXfVMp
LtSiin4k08FB3NQU3oKKAiGTq1MPJcXV2dFONgAH6rZo4P5b2R+zDaeI1u4chMY9
QsuldLgFnoB8TBuRqDLyBfbhoRByqV0zmIl2W5HEhJeXtUjN14slz6qw0J1Ju1/h
hDoFKM96DT4HOfeqJWqgS13Ef684YwZ//UTJaHHrvhjUvryo8EbQYgT5n2M5CCRs
AtIxKUCqgSoyn49NEPAi
=t4W3
-END PGP 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/e1vmpm4-00062l...@franck.debian.org



Accepted ruby-passenger 4.0.25-2 (source amd64 all)

2013-11-30 Thread Felix Geyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 19:12:13 +0100
Source: ruby-passenger
Binary: ruby-passenger libapache2-mod-passenger ruby-passenger-doc
Architecture: source amd64 all
Version: 4.0.25-2
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Felix Geyer fge...@debian.org
Description: 
 libapache2-mod-passenger - Rails and Rack support for Apache2
 ruby-passenger - Rails and Rack support for Apache2 and Nginx
 ruby-passenger-doc - Rails and Rack support for Apache2 - Documentation
Closes: 680357
Changes: 
 ruby-passenger (4.0.25-2) unstable; urgency=low
 .
   * Fix building the documentation. (Closes: #680357)
 - Build-depend on ruby-mizuho.
Checksums-Sha1: 
 96c60fae3d515065dc295a462bf1a22343226259 2477 ruby-passenger_4.0.25-2.dsc
 540d13c3957993495143f8886f2297ade24888fc 11469 
ruby-passenger_4.0.25-2.debian.tar.gz
 fd60df9a16f629efb86919e3011cc0b583799944 655072 
ruby-passenger_4.0.25-2_amd64.deb
 ea4d2b31a4f27105fd962ab66f27920a77a3b1b5 143776 
libapache2-mod-passenger_4.0.25-2_amd64.deb
 f379f314dc88afa35c4f357ae8f5db9c8da42c3d 593016 
ruby-passenger-doc_4.0.25-2_all.deb
Checksums-Sha256: 
 a0ed600940efa7364ea95a7b34714dab2971f1fb712fbb72260e6095ac89177d 2477 
ruby-passenger_4.0.25-2.dsc
 750bc08572c211052a80955a7b035f70a452af4b3072722707e4387d70550a00 11469 
ruby-passenger_4.0.25-2.debian.tar.gz
 a799eb54748651f515b663e655b479fc25bdf35e3849d86e04a4d590bc05fea1 655072 
ruby-passenger_4.0.25-2_amd64.deb
 6897c6528df0ef0ba56793339b815cdd0fdf1c09bdec8141280c1cf7ef3438b4 143776 
libapache2-mod-passenger_4.0.25-2_amd64.deb
 95d3c43286ba4a5caf567a6147e4b2b0956f6c53f939aa674696bc86394be335 593016 
ruby-passenger-doc_4.0.25-2_all.deb
Files: 
 83c23c8292e016bfbe775c79398c9b4a 2477 ruby optional ruby-passenger_4.0.25-2.dsc
 ae639e349cc9bcc772b1fee1006f90de 11469 ruby optional 
ruby-passenger_4.0.25-2.debian.tar.gz
 ab99f606b23b9512f5a1d577fc69234e 655072 ruby optional 
ruby-passenger_4.0.25-2_amd64.deb
 a81cf9dcd75c213ae1a185349c7a4bac 143776 httpd optional 
libapache2-mod-passenger_4.0.25-2_amd64.deb
 0467d32aa483cbdde7367d5ffd255a2c 593016 doc optional 
ruby-passenger-doc_4.0.25-2_all.deb

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

iQIcBAEBCAAGBQJSmiwiAAoJEP4ixv2DE11FM5sQAK+Z7/RO086SisBNL8FOLmS9
NFZQoWtKo4u2ld4+/WLZFJ4sAomYDr5HF1gsDbu3XVOmWSCDZAxqZqP1fJqtbGqx
7n/mt4uJ0Ho/d2AhHGDUtlbSWdZWSg7GWmFKtJrBYxyd7Wk4JB+oKyunSUbCWO4s
SMoyGnJs+cMk7lQscayCIamfHVMMUklF5GC1WrSkYpZdul3kUtB8MZg17xtoJWNf
T/n6W32bXIwd+x77FvIrYD4149MEd/Oym7G4ZFzkciHbI+x2vbbLZ+aVr5ComCSm
cTRokB4QXvrHe1wFmB0Esdfi5NU0k7zXps/BIGSFu8l73DtfB83YZsVZOY2x9ECv
39EJZQHAbInYzmwoXmDQpYoPoGYcEpYRAVeRyRe3SElAGpxnrjBbHb7OK3O2JQ6R
+EGglE78w508uqIbd9Pbn169HgA9bZHQnQT5WpngUhixfohI7dsjxASJ1FIQCbll
xW6QtoHJG+nPBs6t4vRvptnIJ9X0PP4F5CuvRDWtPufnFwL/KMdAc7tLf47NBAfJ
Lm9zjaAkI1L3DM+YYJ78pybNOGiHv/7hOkMuPQstQlhu0ADjPwZroCui+nw9CXuV
YW3Gok2t5oeSsgDoNV2yYI9BVThwpC/0GXahvSnvpREIoAIdEgiLKeD1Fhzgcv3j
G08dfXJncLeKs1icphj4
=F4af
-END PGP 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/e1vmpmz-0006n4...@franck.debian.org



Accepted php-horde-core 2.11.1-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:34:14 +0100
Source: php-horde-core
Binary: php-horde-core
Architecture: source all
Version: 2.11.1-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-core - ${phppear:summary}
Changes: 
 php-horde-core (2.11.1-1) unstable; urgency=low
 .
   * New upstream version 2.11.1
Checksums-Sha1: 
 d4638590cec63483c7eb205f459b1f8ea0d361ad 1392 php-horde-core_2.11.1-1.dsc
 d20d0decb152414eda6b90ac3f2ed87152730f23 1580398 
php-horde-core_2.11.1.orig.tar.gz
 8c09677f6c6439249d93ff4984ca1ceb0b4979ef 3645 
php-horde-core_2.11.1-1.debian.tar.gz
 a84e0e3f88425c7d03e5ecde6fd4fe22ae2df58c 1303918 
php-horde-core_2.11.1-1_all.deb
Checksums-Sha256: 
 18624e95ff03a4970159ee76cd18f8814319a446601e40e4b1ebb184fe4ab78c 1392 
php-horde-core_2.11.1-1.dsc
 97325f0c02af2b6cbe2f91e667b2e21b189c82c0337a542cf8b99276e81ce63a 1580398 
php-horde-core_2.11.1.orig.tar.gz
 4a5eb00d4617e23fd4c3ffda7cbca2d9441532d8270efdc6508f653c7cd84774 3645 
php-horde-core_2.11.1-1.debian.tar.gz
 8a58437e599dc4b7960071f170e306b6f984c81cfe9913d72ff375306d7d6127 1303918 
php-horde-core_2.11.1-1_all.deb
Files: 
 95d4f33ee5e54d5303e8b7ca2e1d7932 1392 php extra php-horde-core_2.11.1-1.dsc
 9416d7765f1e3501e5e817a32d095b96 1580398 php extra 
php-horde-core_2.11.1.orig.tar.gz
 337ce9f17e4dbf646a7f5b078b4cdc26 3645 php extra 
php-horde-core_2.11.1-1.debian.tar.gz
 55cddb56cc065685f3bf9270b54448de 1303918 php extra 
php-horde-core_2.11.1-1_all.deb

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

iEYEARECAAYFAlKaMJYACgkQOW2jYf5fHX8zIgCeJFMR+x9U3KL0X3KgvSy7bOag
7zgAnA88ResKJTfQ2bYkoqUvf+zaGJNW
=B3eg
-END PGP 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/e1vmpb5-f4...@franck.debian.org



Accepted php-horde-crypt 2.4.0-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:41:34 +0100
Source: php-horde-crypt
Binary: php-horde-crypt
Architecture: source all
Version: 2.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-crypt - ${phppear:summary}
Changes: 
 php-horde-crypt (2.4.0-1) unstable; urgency=low
 .
   * New upstream version 2.4.0
Checksums-Sha1: 
 f408bdf21b9bf7175a768be79bf66288cb71c520 1377 php-horde-crypt_2.4.0-1.dsc
 253c14a57124fe5c179970c7be457f7d1fbf3bf8 146249 
php-horde-crypt_2.4.0.orig.tar.gz
 4d3ca2081c099e7e79224052d6eddf451daafc5c 2226 
php-horde-crypt_2.4.0-1.debian.tar.gz
 f2db30388461e5bb67e2775a6daa9a6b2f6a8cdb 163258 php-horde-crypt_2.4.0-1_all.deb
Checksums-Sha256: 
 f3313cd858169cf71f26dffb92ad291cd132cf31ac324c285c55b6622830e1e5 1377 
php-horde-crypt_2.4.0-1.dsc
 4948eca6616af2b8139e253367e9e36cce8b853aefadc7a9380a89089bd450f9 146249 
php-horde-crypt_2.4.0.orig.tar.gz
 9611444dc297872ffc4ce48fc9476dddad0cc27808c533281fd27b3fd85392c9 2226 
php-horde-crypt_2.4.0-1.debian.tar.gz
 24d7d2bcbb7773174a2bdf4d733bc582d8185216c08b1173ed21d20649be4b1e 163258 
php-horde-crypt_2.4.0-1_all.deb
Files: 
 f307e0473b939acb93f4a5c383533f72 1377 php extra php-horde-crypt_2.4.0-1.dsc
 cbb0e2c30a9c3ff371783b37789cbc95 146249 php extra 
php-horde-crypt_2.4.0.orig.tar.gz
 4e112a791a20ee76806ff4cf77ac5aef 2226 php extra 
php-horde-crypt_2.4.0-1.debian.tar.gz
 b0c60f7a57ed800638693aeff599cee4 163258 php extra 
php-horde-crypt_2.4.0-1_all.deb

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

iEYEARECAAYFAlKaMhUACgkQOW2jYf5fHX98IACgnIM/GBgEIK5H3y24uIJonJfK
ElEAn36YAhvZrTAgMe6sRcBte7mUNZTX
=7qI0
-END PGP 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/e1vmpbc-hq...@franck.debian.org



Accepted php-horde-activesync 2.9.1-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:41:43 +0100
Source: php-horde-activesync
Binary: php-horde-activesync
Architecture: source all
Version: 2.9.1-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-activesync - ${phppear:summary}
Changes: 
 php-horde-activesync (2.9.1-1) unstable; urgency=low
 .
   * New upstream version 2.9.1
Checksums-Sha1: 
 ef2673ea01c14e9382c5feb41f3b7cd57ce2ed9d 1432 php-horde-activesync_2.9.1-1.dsc
 ad7135e29e114a3e1902d1ad3a9fe6fae77ed7cd 215231 
php-horde-activesync_2.9.1.orig.tar.gz
 f2731e132230cd6a35d275ea7e2fbf9b9953e194 2537 
php-horde-activesync_2.9.1-1.debian.tar.gz
 64b8233c83e615d426781b0b2f301577173138f5 248624 
php-horde-activesync_2.9.1-1_all.deb
Checksums-Sha256: 
 ce93ce61cd80eff607d1e29722dd0390a35a2145f990f918b4e8b5b610a1d886 1432 
php-horde-activesync_2.9.1-1.dsc
 19d1f3edf53be7ed72fa5ae026b8b4e918fc7c2dc7711044bcd9fbb3532bda39 215231 
php-horde-activesync_2.9.1.orig.tar.gz
 1860d3ba0a5530f0503037176bf88f5d24381a7d5bb290013ce90782feed07da 2537 
php-horde-activesync_2.9.1-1.debian.tar.gz
 bc19e035337d7281b230d8c4b24b4f8abc1340bb452e60f6c9af95645fc7513d 248624 
php-horde-activesync_2.9.1-1_all.deb
Files: 
 e64436bd4b84c9ef6b31868ba97b6e9d 1432 php extra 
php-horde-activesync_2.9.1-1.dsc
 f93d62676b549f7d8b5b5367d841b097 215231 php extra 
php-horde-activesync_2.9.1.orig.tar.gz
 7ea8010674da0e314290ff8d2217e941 2537 php extra 
php-horde-activesync_2.9.1-1.debian.tar.gz
 cf075067740c3774e9f59b3d2ab3a4e8 248624 php extra 
php-horde-activesync_2.9.1-1_all.deb

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

iEYEARECAAYFAlKaMdoACgkQOW2jYf5fHX+SlgCdE4591JflQha0wvcdB4VIF74Q
WH0An29SnZzYFjld/bmPb+LgBp5mNUhV
=GEYT
-END PGP 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/e1vmpax-cp...@franck.debian.org



Accepted php-horde-mime 2.2.8-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:41:52 +0100
Source: php-horde-mime
Binary: php-horde-mime
Architecture: source all
Version: 2.2.8-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-mime - ${phppear:summary}
Changes: 
 php-horde-mime (2.2.8-1) unstable; urgency=low
 .
   * New upstream version 2.2.8
Checksums-Sha1: 
 08360f14e5e457269c19130dc029694a8472eb49 1363 php-horde-mime_2.2.8-1.dsc
 7ffbd76a6da9e4fc30491071d53f12863b6f4554 93081 php-horde-mime_2.2.8.orig.tar.gz
 cbcf16dc91987f92dac791a9cb3f105fc52e1c29 2352 
php-horde-mime_2.2.8-1.debian.tar.gz
 40f5d2cf0fdf56baa7d7a06634934176cb0ee7f1 109790 php-horde-mime_2.2.8-1_all.deb
Checksums-Sha256: 
 6df8504ee97bf29e1e362c32674a4ffde9a44eaa6b7b44d45b6c8a3a5ddbb374 1363 
php-horde-mime_2.2.8-1.dsc
 7deafcf68390697c28ec43e2d2245f62b44f45e0f22b4f77c2aeb8a17ba4a342 93081 
php-horde-mime_2.2.8.orig.tar.gz
 45c573d34fd691516f2b4084da278da8e214340ca81ac0ca4cfa1069023851f7 2352 
php-horde-mime_2.2.8-1.debian.tar.gz
 3ddc8f4512680dbbb143396c28d3ef6442b12fcb09b1b58122d580b23285229d 109790 
php-horde-mime_2.2.8-1_all.deb
Files: 
 a7491ed16409b1bfc145a59cf6cfbb67 1363 php extra php-horde-mime_2.2.8-1.dsc
 6326c6195e83805242d2d353720b0fc6 93081 php extra 
php-horde-mime_2.2.8.orig.tar.gz
 0f36ac6156cfed8509dd80100fa32044 2352 php extra 
php-horde-mime_2.2.8-1.debian.tar.gz
 96a19b05c0c2140a26714081eeae01e7 109790 php extra 
php-horde-mime_2.2.8-1_all.deb

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

iEYEARECAAYFAlKaMdkACgkQOW2jYf5fHX/FWACfSpnStQMlfZH4+GtZgYrXuIwq
9kIAn27UwyUX0K4EEOOhZ5/N8AmH8Wnb
=Z9Bz
-END PGP 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/e1vmpbj-jl...@franck.debian.org



Accepted sumo 0.19.0+dfsg-1 (source amd64 all)

2013-11-30 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:18:43 +0100
Source: sumo
Binary: sumo sumo-doc sumo-tools
Architecture: source amd64 all
Version: 0.19.0+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Anton Gladky gl...@debian.org
Description: 
 sumo   - Simulation of Urban MObility (SUMO)
 sumo-doc   - Simulation of Urban MObility (SUMO), documentation and examples
 sumo-tools - Simulation of Urban MObility (SUMO), tools and scripts
Changes: 
 sumo (0.19.0+dfsg-1) unstable; urgency=low
 .
   * [24595ef] Imported Upstream version 0.19.0+dfsg
   * [a2ba852] Refresh patch.
   * [0dc4baf] Set Standards-Version: 3.9.5. No changes.
Checksums-Sha1: 
 94d7825d5e4e945c6945b2e5545c4c82619fa6ef 2258 sumo_0.19.0+dfsg-1.dsc
 5148b50f65a29059052880ab830a2d283f7b25c6 3303184 sumo_0.19.0+dfsg.orig.tar.xz
 d5f560390a76c1523b162d005d2d73730756c4b0 20428 sumo_0.19.0+dfsg-1.debian.tar.gz
 fe4aba22125798e88492dfb51a790546bdb850f9 3446206 sumo_0.19.0+dfsg-1_amd64.deb
 b3cc9c12dcc57a5c41b790c07882a14ad9e0e0b8 8918476 sumo-doc_0.19.0+dfsg-1_all.deb
 02c020ee9cbb5d0e6cfe7dff3a478e058df8 1704828 
sumo-tools_0.19.0+dfsg-1_all.deb
Checksums-Sha256: 
 7d0ed0e82e03893d607f80947abeed5fbe15d0c30a65f1e2df9ac13200f8795d 2258 
sumo_0.19.0+dfsg-1.dsc
 2f76fd79f62112bda89f132f3d4915b21c37072d424c7506015f92763d9d8784 3303184 
sumo_0.19.0+dfsg.orig.tar.xz
 4d2d911c23324c5b5a83aa8624cd10c62610d42462bfd8e445dbebac9829f463 20428 
sumo_0.19.0+dfsg-1.debian.tar.gz
 450e1e59307bb8703d45349d744e7414569fb96aae74581fb137879f167c5488 3446206 
sumo_0.19.0+dfsg-1_amd64.deb
 725065d2a2e8f548ca6308dab41bd4da1797f43964677253338de5dc94b91ee6 8918476 
sumo-doc_0.19.0+dfsg-1_all.deb
 2afec833c41f67973fb3521cc29482c792bd02cdafa603af50488b823094f020 1704828 
sumo-tools_0.19.0+dfsg-1_all.deb
Files: 
 b23eeeb0bda5932ac08803222d488a85 2258 science optional sumo_0.19.0+dfsg-1.dsc
 e2399644cd221bf1f6cf6a423a8ee61f 3303184 science optional 
sumo_0.19.0+dfsg.orig.tar.xz
 4ceacbdd89c2850b0e99ff79406fdc73 20428 science optional 
sumo_0.19.0+dfsg-1.debian.tar.gz
 8c33be50987ba7d962281fb81efb3884 3446206 science optional 
sumo_0.19.0+dfsg-1_amd64.deb
 18e98655b883d3352807229178ade539 8918476 doc optional 
sumo-doc_0.19.0+dfsg-1_all.deb
 83e0e929f0568f72033f4ea2495018bc 1704828 science optional 
sumo-tools_0.19.0+dfsg-1_all.deb

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

iQIcBAEBAgAGBQJSmjBAAAoJENPhc4PPp/8G0JIQAJoiq7YsZKQqo45TQtVe6DU/
SSZGQjZMRt97f2ucoukpXtVTxtFZ9KRtR3je8LdhEIuGjags5fFynXzu/Znmri+M
XpbFakKh4dP9fcDRaCOsQPAjHtsZG8suaJO5qDTic/1XD1HwrCZ5X4EJBBxIwWZC
PjTx4YEvqR828+baNUXmgLyGj6MczBZa3WfyoJu0xIKV8MVW3KF2JFhLFkvCpV5u
HGQQnMhOxLmDK7KU32H5t3v80ufAMMO4HuaSkM9CqgVn49bfrvJacIgu45C5GM5P
ndF2NlwAOZ40w1+2+Cg1l0Yi0SBAmQ/HXKJmbeL3wZi92F41nh9ehgDQ/zMOgNyW
LY1Nz88v5F8UDB4GrZfaVBQHNoQjyjOv9FwwoDKQEOq4lH1Q+wiN6gCWIQPiHyy4
BQ665a/UpWXdr5t+N7OlCmUeCvHdrdTn0RKbldHuMrRUlcC6aKNIH/Pb4enpn7Ni
EJK/SipemnxAKHQJGpGSGRvZxjOplZz6rLELEHuYBZxUNu6L3srIbLPGUl9SZzPd
NXAZDrC5hhl1EMs6klo2le458C4CtGPWuz9MZ0qjSvBYXzXuHQCr6GTvB3DnFL52
b+Rhb+KFjfW6YQt1i3TIRAJl9oDo/QeDv21v801BWvLUdgPvM11RekHtrALzvLHI
bcw9aJLzdL7b0qqpCn7P
=YljY
-END PGP 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/e1vmpbk-sd...@franck.debian.org



Accepted php-horde 5.1.5+debian0-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:51:45 +0100
Source: php-horde
Binary: php-horde
Architecture: source all
Version: 5.1.5+debian0-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde  - ${phppear:summary}
Closes: 722960 726187 730110
Changes: 
 php-horde (5.1.5+debian0-1) unstable; urgency=low
 .
   * New upstream version 5.1.5+debian0
 - Fixes the grep path (Closes: #722960)
 - CVE-2013-6365 (Closes: #730110)
   * Remove .php extension from two files in $PATH
   * Fix php path in those two same files
   * Rename old README.Debian to NEWS which is more correct
   * Add a quick start guide in README.Debian
   * Provide a horde-writable-config to ease initial configuration
 (Closes: #726187)
   * Add ActiveSync URLs
Checksums-Sha1: 
 37f32fd0f95cb52c7a7598470998972de2de531a 1389 php-horde_5.1.5+debian0-1.dsc
 196d2c2009f6db12a6ab632705dc464029a484cb 2897282 
php-horde_5.1.5+debian0.orig.tar.gz
 60091ecb4d7fea452b46ab179eb818b23c5c3c78 12505 
php-horde_5.1.5+debian0-1.debian.tar.gz
 2694424566078a504b8dcd8608c85727eb5b82bd 2988526 
php-horde_5.1.5+debian0-1_all.deb
Checksums-Sha256: 
 32b6e4ffd77e4ec911182bc4e6a8d76a3130305201b47da8a81f3b45fc0b7914 1389 
php-horde_5.1.5+debian0-1.dsc
 32cb0b3a23c890c46da56d53b2318aad4cde5eed3da787da38e82474956ad9a2 2897282 
php-horde_5.1.5+debian0.orig.tar.gz
 c419ad3fb5aa9e9a474f13d95c6610ff7516e06d980219d165b31c251e5f3cb0 12505 
php-horde_5.1.5+debian0-1.debian.tar.gz
 53de58da92540587db5fa49d65fbbe87def605be5d75e12672a7a4917d2ed41a 2988526 
php-horde_5.1.5+debian0-1_all.deb
Files: 
 c5a9429693a43158ee54a9b73fd948bc 1389 php extra php-horde_5.1.5+debian0-1.dsc
 f33aa812a2b447b580169a284d0bbfe1 2897282 php extra 
php-horde_5.1.5+debian0.orig.tar.gz
 cd594a2228ab18e66db781d51a50076c 12505 php extra 
php-horde_5.1.5+debian0-1.debian.tar.gz
 8247fbf1f816c5d698a3b8b85104da08 2988526 php extra 
php-horde_5.1.5+debian0-1_all.deb

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

iEYEARECAAYFAlKaNJwACgkQOW2jYf5fHX9DVQCfao1XWRGUaNmBrz6y8foSN0Wg
UgsAoJhXv5mPn+SKmyrS3FpV5+0ibNzv
=pD4L
-END PGP 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/e1vmppo-0003gj...@franck.debian.org



Accepted php-horde-kolab-format 2.0.5-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:44:36 +0100
Source: php-horde-kolab-format
Binary: php-horde-kolab-format
Architecture: source all
Version: 2.0.5-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-kolab-format - ${phppear:summary}
Changes: 
 php-horde-kolab-format (2.0.5-1) unstable; urgency=low
 .
   * New upstream version 2.0.5
Checksums-Sha1: 
 524f8f5c540581d572f6c6e9cc072e573d67d23a 1451 
php-horde-kolab-format_2.0.5-1.dsc
 36d4efd8e65b8714badb594ed9d6f9aa03381779 58102 
php-horde-kolab-format_2.0.5.orig.tar.gz
 9bcdc7d497d7d523e74b5aecd79506156984e1c7 2156 
php-horde-kolab-format_2.0.5-1.debian.tar.gz
 8939ac349bfe7e425c30109c8fed5b153af35aa7 74232 
php-horde-kolab-format_2.0.5-1_all.deb
Checksums-Sha256: 
 07f845fdbacd5223bc04fcf3f2b7b06c7d8c3ac0e77a129fd3f7273276a430c3 1451 
php-horde-kolab-format_2.0.5-1.dsc
 f89280ace56e35ff0e4dafa2eaa0afb9b837376f409e9e81ca11be4a0b41d45e 58102 
php-horde-kolab-format_2.0.5.orig.tar.gz
 586bd03e3b3968574ad2e3366658e2ddced7abd2fb7eff8486d8c8cd1c02a2c5 2156 
php-horde-kolab-format_2.0.5-1.debian.tar.gz
 a800de62967d94f1e6d47c170ba8cae1c973e491d9034ecbd0a20b74b8c591aa 74232 
php-horde-kolab-format_2.0.5-1_all.deb
Files: 
 10a9fdd86554df2fa8311c2b0b25ea07 1451 php extra 
php-horde-kolab-format_2.0.5-1.dsc
 1f8481ee8b8798a604a056eba6e56101 58102 php extra 
php-horde-kolab-format_2.0.5.orig.tar.gz
 509ee7d19637fc29db060b10b1523b88 2156 php extra 
php-horde-kolab-format_2.0.5-1.debian.tar.gz
 f2ad05f13cbfa5ed4e1f5f56b10378c2 74232 php extra 
php-horde-kolab-format_2.0.5-1_all.deb

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

iEYEARECAAYFAlKaMuQACgkQOW2jYf5fHX+hdwCfS4Tp6pJmZVnRF1RHz2n8lH1z
fkAAn3e7QZpqAEFCp3Wx0wgeO9nuSXMP
=/MuK
-END PGP 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/e1vmppj-0003pn...@franck.debian.org



Accepted php-horde-dav 1.0.3-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:45:52 +0100
Source: php-horde-dav
Binary: php-horde-dav
Architecture: source all
Version: 1.0.3-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-dav - ${phppear:summary}
Changes: 
 php-horde-dav (1.0.3-1) unstable; urgency=low
 .
   * New upstream version 1.0.3
Checksums-Sha1: 
 110c7976a07575239072e941630238a386d5f628 1355 php-horde-dav_1.0.3-1.dsc
 9fe02e9ea0a1d3137b1606dd4447f222592a014b 221753 php-horde-dav_1.0.3.orig.tar.gz
 fd3532f46eb28fdca10045d5e6578f779c665a48 2787 
php-horde-dav_1.0.3-1.debian.tar.gz
 9a58e7a0b739fb14c7bd4907026f2f172fad21b1 254440 php-horde-dav_1.0.3-1_all.deb
Checksums-Sha256: 
 81e8d64a01f1e35dd6176aea717bd137626c198fc6eb173069cb913924f72545 1355 
php-horde-dav_1.0.3-1.dsc
 4519f76d23f68d5c31bbeced5ad2b11591f8dc93684a1cdf1d7914ee945d907a 221753 
php-horde-dav_1.0.3.orig.tar.gz
 fd770d03612613ce8b55c309e803566cbc234e8790aebc24c126d23c567a2e19 2787 
php-horde-dav_1.0.3-1.debian.tar.gz
 fe88b56b6c799c3b31f4b0d4dfb05f7e8b463c11609148ac0f5a6819b3d0d23e 254440 
php-horde-dav_1.0.3-1_all.deb
Files: 
 72789cc4233b430b9879a837bdbf8e86 1355 php extra php-horde-dav_1.0.3-1.dsc
 a28e8b881895f6e0a498bc8bdf8a95ee 221753 php extra 
php-horde-dav_1.0.3.orig.tar.gz
 c0b7556eeea3980ea4f66cd1609869bb 2787 php extra 
php-horde-dav_1.0.3-1.debian.tar.gz
 68b72630607a77db318066573c75cc85 254440 php extra php-horde-dav_1.0.3-1_all.deb

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

iEYEARECAAYFAlKaMrwACgkQOW2jYf5fHX9KlgCgkYmu8PNs9+c4hVW/lGMEqntv
BEUAnR4UqLQXJ6/wMakTGizkqubHYBHO
=YRtA
-END PGP 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/e1vmppv-0003kb...@franck.debian.org



Accepted php-horde-perms 2.1.2-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:44:24 +0100
Source: php-horde-perms
Binary: php-horde-perms
Architecture: source all
Version: 2.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-perms - ${phppear:summary}
Changes: 
 php-horde-perms (2.1.2-1) unstable; urgency=low
 .
   * New upstream version 2.1.2
Checksums-Sha1: 
 4c8fae56548b5a341e196753efdc816e1adfc305 1374 php-horde-perms_2.1.2-1.dsc
 0b045826cebede2cf6cee5bc22bcb1875f07c6e1 37403 
php-horde-perms_2.1.2.orig.tar.gz
 6e0fe0256af9e7df72778bb38d384c12800ee9fc 2180 
php-horde-perms_2.1.2-1.debian.tar.gz
 df12705672ff1438fb3a880c2f12eda51e32325a 49222 php-horde-perms_2.1.2-1_all.deb
Checksums-Sha256: 
 f01cb29c6cb6c35ca2e3ca9deac11f1468be0106bc303772dd43643430aab8b4 1374 
php-horde-perms_2.1.2-1.dsc
 6dceb2922d3b6d24b8291772b034d8f6246dea2a1acdb7f1dc6928d175498ba3 37403 
php-horde-perms_2.1.2.orig.tar.gz
 de94036de3a062a8d65ab551d5ee2e6680e13e32b5918c5aa43f19a24489b839 2180 
php-horde-perms_2.1.2-1.debian.tar.gz
 2c6292008890358b34e358911c9db4494671adf7051d3cf775dd904019fa30ab 49222 
php-horde-perms_2.1.2-1_all.deb
Files: 
 fb9d57305e2b9de9fbd26aec3b58d96a 1374 php extra php-horde-perms_2.1.2-1.dsc
 2aa754d055431f622715f02f387642c2 37403 php extra 
php-horde-perms_2.1.2.orig.tar.gz
 66e3b6767b8a0d64de87f0d1a47123eb 2180 php extra 
php-horde-perms_2.1.2-1.debian.tar.gz
 27c89e26ee688a71ebb1b2ea1e8efbd4 49222 php extra 
php-horde-perms_2.1.2-1_all.deb

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

iEYEARECAAYFAlKaMoIACgkQOW2jYf5fHX/yOQCgiSoj4e5nSBTQK4L3J5lcMYWi
O8cAn0qJIt7Si5+ga5uKFEy4sRYCbJHN
=U9g1
-END PGP 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/e1vmppq-0003ri...@franck.debian.org



Accepted php-horde-imap-client 2.16.2-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:48:07 +0100
Source: php-horde-imap-client
Binary: php-horde-imap-client
Architecture: source all
Version: 2.16.2-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-imap-client - ${phppear:summary}
Changes: 
 php-horde-imap-client (2.16.2-1) unstable; urgency=low
 .
   * New upstream version 2.16.2
Checksums-Sha1: 
 fba274ecd3dc32ea6d04d6c3e101a3e3105c4cb6 1450 
php-horde-imap-client_2.16.2-1.dsc
 50de3a3d6480a5debcc06bf72d53e47623de886f 186878 
php-horde-imap-client_2.16.2.orig.tar.gz
 bd69d99bdf156dfd49cdd035b1a5bc39a3c53cdc 2582 
php-horde-imap-client_2.16.2-1.debian.tar.gz
 155490c5efabe3637ea3b8573d4ef210a97179b9 219532 
php-horde-imap-client_2.16.2-1_all.deb
Checksums-Sha256: 
 9491763f8ca34f555e431f498e585b7704aadd6e12d52036911f74aa21b330cb 1450 
php-horde-imap-client_2.16.2-1.dsc
 63c0396593f3e1926770f1a6ea811f780db23370cafd56f51c7da62f4d8bf41f 186878 
php-horde-imap-client_2.16.2.orig.tar.gz
 c9ae3e1d7551f6c86daab61eea3bd15b68ce90fd9a72401a066353b0d9aa6987 2582 
php-horde-imap-client_2.16.2-1.debian.tar.gz
 4059dc757ca5516c85a78812824931601b64247b1b892fa1f341654e4ac59f3a 219532 
php-horde-imap-client_2.16.2-1_all.deb
Files: 
 8f0c79ca53bdeaee60d4f7b534ccf034 1450 php extra 
php-horde-imap-client_2.16.2-1.dsc
 4c11099c3163e16f2874b29f6d5f8f3a 186878 php extra 
php-horde-imap-client_2.16.2.orig.tar.gz
 4a1923b25973a2a217fcff134d04cbc6 2582 php extra 
php-horde-imap-client_2.16.2-1.debian.tar.gz
 94a722cb3b28d7f464a613dadc90c7ad 219532 php extra 
php-horde-imap-client_2.16.2-1_all.deb

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

iEYEARECAAYFAlKaM28ACgkQOW2jYf5fHX8eTQCdEAql7n5ANBw7ujB6utl02LfB
rjQAniU6zFnA67eBoyiPGAiMNaxWy2/R
=Yojf
-END PGP 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/e1vmppc-0003n1...@franck.debian.org



Accepted php-horde-prefs 2.5.2-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:47:19 +0100
Source: php-horde-prefs
Binary: php-horde-prefs
Architecture: source all
Version: 2.5.2-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-prefs - ${phppear:summary}
Changes: 
 php-horde-prefs (2.5.2-1) unstable; urgency=low
 .
   * New upstream version 2.5.2
Checksums-Sha1: 
 13c000dc1bc505c7d8b77dcbf3a7b2d205dad7a2 1374 php-horde-prefs_2.5.2-1.dsc
 e621e283d07cad9caedcac8379ff9b30042cdc6d 52796 
php-horde-prefs_2.5.2.orig.tar.gz
 e3985a8c0b0ea668df941b9c356c656a4d8d5399 2254 
php-horde-prefs_2.5.2-1.debian.tar.gz
 3063313e75b4561662b123f190cac82583e382b1 67440 php-horde-prefs_2.5.2-1_all.deb
Checksums-Sha256: 
 133495376513820345d0a43fb1a911dded1040a6d66db4912a8abb63e63de336 1374 
php-horde-prefs_2.5.2-1.dsc
 6bf35cd2e2d6e2795f9761d3096d7a736c9768763d26dd99947e2c42ac951b20 52796 
php-horde-prefs_2.5.2.orig.tar.gz
 5a528d090a7acd15192eb7d211d20784871bd8f91ffde1e2d7d8807d72469cdf 2254 
php-horde-prefs_2.5.2-1.debian.tar.gz
 6c7a11124b56c083122885fe1c304c765761c189ce11fb537a1f913aeb75c50b 67440 
php-horde-prefs_2.5.2-1_all.deb
Files: 
 b6b9a652e99484aa672e828b7eeb1f13 1374 php extra php-horde-prefs_2.5.2-1.dsc
 777f4104de3fa50fddbb666cb6f01fa8 52796 php extra 
php-horde-prefs_2.5.2.orig.tar.gz
 71f3180b5e511460a872e22b6b93d566 2254 php extra 
php-horde-prefs_2.5.2-1.debian.tar.gz
 7e65d2211137d07151de69c3711bf762 67440 php extra 
php-horde-prefs_2.5.2-1_all.deb

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

iEYEARECAAYFAlKaM1EACgkQOW2jYf5fHX8ZMQCcC8/UcVM7TxNhMB2xA9Sb4awL
Q5oAoInUoH1G0L+NJXecDqWMB9AL8rNB
=6poN
-END PGP 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/e1vmppx-0003ty...@franck.debian.org



Accepted php-horde-test 2.2.5-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:49:04 +0100
Source: php-horde-test
Binary: php-horde-test
Architecture: source all
Version: 2.2.5-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-test - ${phppear:summary}
Changes: 
 php-horde-test (2.2.5-1) unstable; urgency=low
 .
   * New upstream version 2.2.5
Checksums-Sha1: 
 96ea5d507e980bafb66c4eb864436bf188ae1dec 1372 php-horde-test_2.2.5-1.dsc
 8f70f7e75c80945682cabb33e326ac3342626a87 21006 php-horde-test_2.2.5.orig.tar.gz
 0aab029554a160422938d7716b6ae3704e2d66d4 2103 
php-horde-test_2.2.5-1.debian.tar.gz
 8d71bffbdccf0b23770233623ba21722e33a8471 21908 php-horde-test_2.2.5-1_all.deb
Checksums-Sha256: 
 6973de8e36d613683b5843f26f2ee985b24804e1119dccd76e2a6be91bd8fbb4 1372 
php-horde-test_2.2.5-1.dsc
 d9b99d101a7cf1600dfa5685f5d6c7824ca7840ca9a85c74ae9a3e27d88ed3e2 21006 
php-horde-test_2.2.5.orig.tar.gz
 50f0857d7eb1be3b2f7a239096c790690f320baf51e56a1e3904c76e479957ee 2103 
php-horde-test_2.2.5-1.debian.tar.gz
 b4fb75d57ed9aa86ab65f85643cb9c268bcc519bf81a228fc5cfb00d803fcffb 21908 
php-horde-test_2.2.5-1_all.deb
Files: 
 bedf684344cd54df5edca68ddf149406 1372 php extra php-horde-test_2.2.5-1.dsc
 b53fd8372feff28512ed1df3b14e3592 21006 php extra 
php-horde-test_2.2.5.orig.tar.gz
 bd481e94433dd1ef70564961089935ae 2103 php extra 
php-horde-test_2.2.5-1.debian.tar.gz
 0409d4a1ba557c891c3421727d0d10ed 21908 php extra php-horde-test_2.2.5-1_all.deb

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

iEYEARECAAYFAlKaM5MACgkQOW2jYf5fHX9d3wCfRgIx51oCcQhn0fIOJ+Jj2awF
9IIAoIcNE5Ni167fO5mqQC4RPYlR5W7v
=xdfz
-END PGP 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/e1vmpqh-00041m...@franck.debian.org



Accepted php-horde-smtp 1.3.1-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:51:04 +0100
Source: php-horde-smtp
Binary: php-horde-smtp
Architecture: source all
Version: 1.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-smtp - ${phppear:summary}
Changes: 
 php-horde-smtp (1.3.1-1) unstable; urgency=low
 .
   * New upstream version 1.3.1
Checksums-Sha1: 
 ad14d1ef470fc17200b768976a4e8190972c634f 1363 php-horde-smtp_1.3.1-1.dsc
 2e04e9bf50afdc7156cf42027545554f7c82bd93 22048 php-horde-smtp_1.3.1.orig.tar.gz
 53c3baab88b15012356d21ba07e57dfd7e927c1a 1889 
php-horde-smtp_1.3.1-1.debian.tar.gz
 19b1b458f9a313de7c786c14d70b4ec7939b5dd9 21988 php-horde-smtp_1.3.1-1_all.deb
Checksums-Sha256: 
 c3e8a6c533b5307c7676186738d0b9f28a93f0d728ac8c50d15eaf44d2a4781f 1363 
php-horde-smtp_1.3.1-1.dsc
 19a5f43b6b78a279557e2635f3fef0bd460c36ad200c1ff38861b332fa2fb337 22048 
php-horde-smtp_1.3.1.orig.tar.gz
 3212dc8a044689fbd478e1891fd442a16d4443d95b6b09a7506c86891ae58e5b 1889 
php-horde-smtp_1.3.1-1.debian.tar.gz
 ad2dc7ce667f37395ab2e595791de577b108bae69d78e8eb387bf55d3b692ce9 21988 
php-horde-smtp_1.3.1-1_all.deb
Files: 
 7d9a0553e0c4f48039ec31ed510a49bb 1363 php extra php-horde-smtp_1.3.1-1.dsc
 ecd7565ccda914cd66f450fd02faffbe 22048 php extra 
php-horde-smtp_1.3.1.orig.tar.gz
 fdc13f58a677e72307e4c7b15d6f97e5 1889 php extra 
php-horde-smtp_1.3.1-1.debian.tar.gz
 b895a12a48e03606ce06efbf2e14d3ed 21988 php extra php-horde-smtp_1.3.1-1_all.deb

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

iEYEARECAAYFAlKaM9YACgkQOW2jYf5fHX9q8ACfWRCXeaIhUHvf8f4jL9TDsB8r
+osAn30AZj1tJXoycS/4p9LOk1PCUJ6d
=ebEt
-END PGP 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/e1vmpq4-0003wk...@franck.debian.org



Accepted php-horde-stream 1.5.0-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:52:35 +0100
Source: php-horde-stream
Binary: php-horde-stream
Architecture: source all
Version: 1.5.0-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-stream - ${phppear:summary}
Changes: 
 php-horde-stream (1.5.0-1) unstable; urgency=low
 .
   * New upstream version 1.5.0
Checksums-Sha1: 
 62a537c1647f1dd6403352c0c6879f442bfc68b9 1385 php-horde-stream_1.5.0-1.dsc
 30eb961640dfab14c742467f751cc40841287704 16264 
php-horde-stream_1.5.0.orig.tar.gz
 ec12716bd5ccabed0fdfe387eb4e96f5a8f8af6a 2088 
php-horde-stream_1.5.0-1.debian.tar.gz
 dae6fed9107dfb771a6723d4bd73c6a8998b39eb 14286 php-horde-stream_1.5.0-1_all.deb
Checksums-Sha256: 
 c1bbb93e528675ca8f4408b5b17dad9c91b0d3e4867ec2123cbf83f6381f3f89 1385 
php-horde-stream_1.5.0-1.dsc
 e6a2f0c9740b762f31cf5ab4d9eb9e1c8d717f4f7ea427514e10b612679df60c 16264 
php-horde-stream_1.5.0.orig.tar.gz
 79454851244092efd060ad8f6416ed37d0fb685d4d99be43bd7dda45c426e323 2088 
php-horde-stream_1.5.0-1.debian.tar.gz
 b75faadef12372e70c113feec5707c4a2a54594bd19ca15485616e9ca9d05afe 14286 
php-horde-stream_1.5.0-1_all.deb
Files: 
 ad5910536cf9f095d32e76a903ed2b28 1385 php extra php-horde-stream_1.5.0-1.dsc
 cb4084414d36a2488632e16e40bd0512 16264 php extra 
php-horde-stream_1.5.0.orig.tar.gz
 ab19e3bdcf2f7ec73aadeae2e119e4e1 2088 php extra 
php-horde-stream_1.5.0-1.debian.tar.gz
 591f2b7d7af494d426635e7eaadd787c 14286 php extra 
php-horde-stream_1.5.0-1_all.deb

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

iEYEARECAAYFAlKaNGYACgkQOW2jYf5fHX9ksgCgg/cCQ8zkGREWN2uW+rJoKfsS
1coAniv31tBtwvTeCVrE95bCU5L77I0Z
=YVur
-END PGP 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/e1vmpqa-0003z5...@franck.debian.org



Accepted dcap 2.47.8-2 (source amd64)

2013-11-30 Thread Mattias Ellert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:38:29 +0100
Source: dcap
Binary: dcap libdcap1 dcap-dev dcap-tunnel-gsi dcap-tunnel-krb dcap-tunnel-ssl 
dcap-tunnel-telnet dcap-dbg
Architecture: source amd64
Version: 2.47.8-2
Distribution: unstable
Urgency: low
Maintainer: Mattias Ellert mattias.ell...@fysast.uu.se
Changed-By: Mattias Ellert mattias.ell...@fysast.uu.se
Description: 
 dcap   - Client Tools for dCache
 dcap-dbg   - Debug symbols for dcap
 dcap-dev   - Client Development Files for dCache
 dcap-tunnel-gsi - GSI tunnel for dCache
 dcap-tunnel-krb - Kerberos tunnel for dCache
 dcap-tunnel-ssl - SSL tunnel for dCache
 dcap-tunnel-telnet - Telnet tunnel for dCache
 libdcap1   - Client Libraries for dCache
Closes: 730920
Changes: 
 dcap (2.47.8-2) unstable; urgency=low
 .
   * Adapt to multi-arch Globus installation (Closes: #730920)
Checksums-Sha1: 
 bc93c667da7999fc0025544fb96f1aed01050a45 2237 dcap_2.47.8-2.dsc
 0dcf53cda284c8759a2e13bb321fa60931d77630 5401 dcap_2.47.8-2.debian.tar.gz
 3bd2d44034fc131c4f75a65bdc85a970f4f31174 12240 dcap_2.47.8-2_amd64.deb
 502a3ab9803189360b69164fd3f5e2685bedf880 65200 libdcap1_2.47.8-2_amd64.deb
 494701b9dba0ecbc51406e9d370df10315a55f73 58660 dcap-dev_2.47.8-2_amd64.deb
 7623c35e99eb4dc2e54345b8fa53edfefb11ed26 11040 
dcap-tunnel-gsi_2.47.8-2_amd64.deb
 c4019195e503db62942281dbe29ed3b3380ee3d0 11132 
dcap-tunnel-krb_2.47.8-2_amd64.deb
 ac64fbb448f2a33561e60292a3146705c1d18e14 6508 
dcap-tunnel-ssl_2.47.8-2_amd64.deb
 bf1ae90540d1952c60a9b995c1bfcf92e2f0c07b 7082 
dcap-tunnel-telnet_2.47.8-2_amd64.deb
 a6ec569a91a58074007c78ea71c71f2537968566 196888 dcap-dbg_2.47.8-2_amd64.deb
Checksums-Sha256: 
 80ca59f7cb8bc0d632d684e3fae2d1fde1b61b853e944ff7b8f5d14e0d7b53bf 2237 
dcap_2.47.8-2.dsc
 1f7cd6093433da5eda6c2a4da7048ffdee14ff4a0143f0076346a6b857e313c7 5401 
dcap_2.47.8-2.debian.tar.gz
 e9b9dd116e251f503c4e4bf77734d77cb55c0b44b8580fabdec6c4bb81d8c0a2 12240 
dcap_2.47.8-2_amd64.deb
 b46a1ab451a1ba65184bfacf96a8a8dee6a23badb5c8262ffc26ed5fd0cc0f94 65200 
libdcap1_2.47.8-2_amd64.deb
 f8c2ade3a8207f855ad7aefa3d3ed376b3d69993789947ea582439df4508c96f 58660 
dcap-dev_2.47.8-2_amd64.deb
 3a09caabe113f6bb43f83fe554c2bbdc0f9ea384c9f179e273337c650f3bc3a0 11040 
dcap-tunnel-gsi_2.47.8-2_amd64.deb
 cf5cf6ce6aaed52ba88dd931278a5075390a9a6920b5d6cbff94856c974a4dae 11132 
dcap-tunnel-krb_2.47.8-2_amd64.deb
 08d222740a594b8b8f49fb7de1e7dafbbeadf5f0118d1459acae1b18ba438d8f 6508 
dcap-tunnel-ssl_2.47.8-2_amd64.deb
 723191d95aa6d2a1c411be11afd8e32a11b471469d4b9ba2cbbe56c993c01ff7 7082 
dcap-tunnel-telnet_2.47.8-2_amd64.deb
 5f0d003fb54b80460a0c046f5a8580e4579f7be109a032fa033db88ef7fd630c 196888 
dcap-dbg_2.47.8-2_amd64.deb
Files: 
 9e569e1fd512c3737f1ef1beb2247772 2237 libs optional dcap_2.47.8-2.dsc
 40177a1b0bc18bfcdc2dd8e71b7c80e1 5401 libs optional dcap_2.47.8-2.debian.tar.gz
 7df4e1858962633ec2a901689f8b3dbd 12240 net optional dcap_2.47.8-2_amd64.deb
 e544271ebc37fd3497f176bb66c5ca9c 65200 libs optional 
libdcap1_2.47.8-2_amd64.deb
 10ad7ba619ff6c7c09ef63648c81d7ac 58660 libdevel optional 
dcap-dev_2.47.8-2_amd64.deb
 345bc24ce34f0b1c1a575b079b78beb8 11040 libs optional 
dcap-tunnel-gsi_2.47.8-2_amd64.deb
 90225ff841ae4405f82ebd528858618c 11132 libs optional 
dcap-tunnel-krb_2.47.8-2_amd64.deb
 b2e8a31e0312787f388d1f1d3ee55eed 6508 libs optional 
dcap-tunnel-ssl_2.47.8-2_amd64.deb
 10965120ff4a6b8c6edde9df368516a4 7082 libs optional 
dcap-tunnel-telnet_2.47.8-2_amd64.deb
 a69421c3fd38d8584b966df873f6db16 196888 debug extra dcap-dbg_2.47.8-2_amd64.deb

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

iQIcBAEBAgAGBQJSmjjIAAoJEOiuwv874alL420P/0CH2EjOoS4isI59vv61cEa3
dT28kwQxSAmSL6R2tyZkdj0/XM4vA4LWGb0P1RrmMM0T89Lh021b9+ebyO97v8yb
+SRiqE5DKRNvPZyI0vINTmAK0B2Ekcz/mIUrgC2Kym8SeJi8ogDDRtTpgOMJfSzi
ivSShkAWf3jvvk0S3j/TWYK+DZCo6xIfjd12jicKWWvlV6XSLtb9akWiqFIDe+1G
tA+tOltaT1LgwyVvBS43c+9umdOIbMgNR8grPy2io5ED0YQtt2pAiHFzblMf2EnB
SgVJ0dtXfDMTILpDYGEy9lmFf1EcuTQwTEeUJS6NsE4E9ruDqKQGANPA1S4p6oeZ
NZarRoIfZpQnnsNxRb8qpDW6TEkITR0JUheRZ/iJVN4T0TpnZzfjXPEQKnrw0lXP
N8241HRm4XX0EIERpXziyEh/lXASfcECwnMP10XKND8Tix/eSCc8jcTjsQxX3UBq
XJWtYVkFoNLW11DUqH51x4e4zgiohE81feBt9Cnx6t5bB9dtr0Y11kM5jYfIsGXj
5uWn3D5qXoEp/1rIqO2uREeMNbKhEvZatX8FiTX98OE8LIHHBWuWhHNCks0xoCdF
fUWi3zM3Z6WLfoo5b5TeOfSrRpRDfJU3tf+VTxhAQ7RvXsQg6fGk2weMdET7dRur
t2WDp7DRQwCtrMibgQB4
=2Rt+
-END PGP 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/e1vmq3t-0006me...@franck.debian.org



Accepted php-horde-imp 6.1.6-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 19:57:13 +0100
Source: php-horde-imp
Binary: php-horde-imp
Architecture: source all
Version: 6.1.6-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-imp - ${phppear:summary}
Changes: 
 php-horde-imp (6.1.6-1) unstable; urgency=low
 .
   * New upstream version 6.1.6
Checksums-Sha1: 
 678296a866327c9ef2aa21afd82892101b9f15bf 1374 php-horde-imp_6.1.6-1.dsc
 31e5f50d1dcd893f1f24419d581348ca30148ac6 4841439 
php-horde-imp_6.1.6.orig.tar.gz
 648d2d73cdc5c235a4488f2cece7a19de1f15a5a 2500 
php-horde-imp_6.1.6-1.debian.tar.gz
 626b30d16af1dd04f41bdb2aa99de60b508c95e9 4982696 php-horde-imp_6.1.6-1_all.deb
Checksums-Sha256: 
 4d6e2ec6e935da04cba75af43aa1a2ef926bc16ba152e92ee31320b1e172662c 1374 
php-horde-imp_6.1.6-1.dsc
 0b6728fb9d2633c69225f36818f330f353e6c741fa1c5c3238adaa5bdb35e6d4 4841439 
php-horde-imp_6.1.6.orig.tar.gz
 1d5f4f384001878bcf046205fab7dc5cc715230db3bdc7e1c3fc514916068f79 2500 
php-horde-imp_6.1.6-1.debian.tar.gz
 abf94fa0c3baffc2d0075b76b1832d5199648ec1558b16f2ee199ce622cc1b3f 4982696 
php-horde-imp_6.1.6-1_all.deb
Files: 
 8ae093c106eac7e7dfcfc14f833ba392 1374 php extra php-horde-imp_6.1.6-1.dsc
 46aec551b9a5fd7f8b4c784177186c12 4841439 php extra 
php-horde-imp_6.1.6.orig.tar.gz
 3d3d05efb628c75658167748b1154f8e 2500 php extra 
php-horde-imp_6.1.6-1.debian.tar.gz
 691898367dd5f530197bea2424e102ee 4982696 php extra 
php-horde-imp_6.1.6-1_all.deb

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

iEYEARECAAYFAlKaNr4ACgkQOW2jYf5fHX/tLACfe0P1dJI4FMu9jNdhbpcy1mSL
9I4An2Og6lxIV5aISGugeqafH7ostwp4
=oNmp
-END PGP 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/e1vmq4q-000707...@franck.debian.org



Accepted dxsamples 4.4.0-1 (source all)

2013-11-30 Thread Graham Inggs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 18 Nov 2013 13:36:18 +0200
Source: dxsamples
Binary: dxsamples
Architecture: source all
Version: 4.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Graham Inggs gra...@nerve.org.za
Changed-By: Graham Inggs gra...@nerve.org.za
Description: 
 dxsamples  - Sample programs for the OpenDX Data Explorer
Closes: 412811
Changes: 
 dxsamples (4.4.0-1) unstable; urgency=low
 .
   * New upstream. (Closes: #412811)
   * Update d/rules:
 - switch to dh-autoreconf
 - switch to dh_auto_configure
 - remove unrecognized option --disable-javadx
   * Create d/clean to prevent FTBFSx2.
   * Update d/copyright.
Checksums-Sha1: 
 b0b82d0dbde891491b178c18bb331e9e97a54d32 1514 dxsamples_4.4.0-1.dsc
 24a8981312c3a2564623acb85538d9935e5c2469 7791659 dxsamples_4.4.0.orig.tar.gz
 7f02a8da5ac074f15cf6619a716fc30e48d2e098 8153 dxsamples_4.4.0-1.debian.tar.gz
 0c79f2eb08247911dc9ba25b739a8b8c60bd677c 5455376 dxsamples_4.4.0-1_all.deb
Checksums-Sha256: 
 9ae136c1a113959f7c8b110d5bc8e17f5565d2d10998c568ef65614a4facd7aa 1514 
dxsamples_4.4.0-1.dsc
 ec2277facc8cf0f095a7fc4cb58391e053d5fd26c90d4711c927d2897dc455d9 7791659 
dxsamples_4.4.0.orig.tar.gz
 857a44f67dec8b1e44019daba9089ca9a5b9ed1f51056524d74d3cc6073a4895 8153 
dxsamples_4.4.0-1.debian.tar.gz
 77ec63ccb585dcedceb361230f83b80212bb5a2e5c5888e1e5f5f7135335fbbd 5455376 
dxsamples_4.4.0-1_all.deb
Files: 
 76f41aeea0b31d001f40e14efe132c88 1514 science optional dxsamples_4.4.0-1.dsc
 e8f43722ca0a66282608bded7c0e4f93 7791659 science optional 
dxsamples_4.4.0.orig.tar.gz
 b89ce27a28312de17a3103d61bac0a1b 8153 science optional 
dxsamples_4.4.0-1.debian.tar.gz
 1d29586d4e9e17ef01e70e908ad2ea97 5455376 science optional 
dxsamples_4.4.0-1_all.deb

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

iQEcBAEBCAAGBQJSmjbUAAoJEJxcmesFvXUKIP4H/2t/+LTEah838LMvHfrFMvDd
NDRTuZsM+gZ2I653PMlRuFHBGPzgt4k1weT3HZ342V19HKO48egErpkADsq2r5+P
+NwdFwNwIA1l7dc4KDVLfDLV4Xln4f/02hVQC56+yNOR5GadhXDgQaaOVZ8Nff7M
EqP5W+GbWBdGdznN0EXrxDjLv5pvlfArB1vijGSis/6f3JRCSrKdiIqaFX+peBry
BRRlaK2JIPATPCKI0u/yXthNhsIj9OdBktuViNmxCGurcYv9DH8AEnXFPDaed3sv
8fCtWn4oC5MW2A8CEAENG9xrvb9f+B+bLPoC57LOqjWlH5LIWEGX7twyumtq4lc=
=SVSe
-END PGP 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/e1vmq43-0006pg...@franck.debian.org



Accepted numexpr 2.2.2-2 (source amd64)

2013-11-30 Thread Antonio Valentino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 26 Nov 2013 18:44:55 +
Source: numexpr
Binary: python-numexpr python-numexpr-dbg python3-numexpr python3-numexpr-dbg
Architecture: source amd64
Version: 2.2.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Antonio Valentino antonio.valent...@tiscali.it
Description: 
 python-numexpr - Fast numerical array expression evaluator for Python and NumPy
 python-numexpr-dbg - Fast numerical array expression evaluator for Python and 
NumPy (d
 python3-numexpr - Fast numerical array expression evaluator for Python 3 and 
NumPy
 python3-numexpr-dbg - Fast numerical array expression evaluator for Python 3 
and NumPy
Changes: 
 numexpr (2.2.2-2) unstable; urgency=low
 .
   * New patch: 0002-relax-test-on-sparc.patch
 Introduces a temporary workaround to fix a cuople of test failiures
 on sparc.
Checksums-Sha1: 
 66499531df8fab0130f9245552d47e2020040350 1743 numexpr_2.2.2-2.dsc
 bcb343696e12e4288d6b074bde3a30309782b2c4 6599 numexpr_2.2.2-2.debian.tar.gz
 e3da4cb72daf7da0835897ced2c55f3c00f47aeb 127418 
python-numexpr_2.2.2-2_amd64.deb
 107223194f93efcd6b1ef04ff00967dd1ec13afc 96244 
python-numexpr-dbg_2.2.2-2_amd64.deb
 184d8d1deafccdaa64a3b3aa98f56457101e4cf7 120826 
python3-numexpr_2.2.2-2_amd64.deb
 4c67d8bae04066c4ffe79bab8770c970d9410ab1 95926 
python3-numexpr-dbg_2.2.2-2_amd64.deb
Checksums-Sha256: 
 13ae9a78681ce18f0b7cfaa85a4ef15fa0b128d34c71212a0ac8dcd9660d7801 1743 
numexpr_2.2.2-2.dsc
 0036ecc2a095691a39826b7d82e9f99e1ad63734a68b2011b92d3422691e79ab 6599 
numexpr_2.2.2-2.debian.tar.gz
 4f2e83d116fc250e69596db49614a72e6f0ef6a3420c755006eddd3824193c8c 127418 
python-numexpr_2.2.2-2_amd64.deb
 61ded91c99333b154e199dc97d4e5978b49ae3097d17d9f33facfe5085b3ce5f 96244 
python-numexpr-dbg_2.2.2-2_amd64.deb
 91c67c3183cb06705895b6d5816b67d53abd0c5b7de7fea222184d04a5b4fe96 120826 
python3-numexpr_2.2.2-2_amd64.deb
 ea081cf5bbf95bcbf74149c003980cd493cd3fe316d5307e074500677fcff552 95926 
python3-numexpr-dbg_2.2.2-2_amd64.deb
Files: 
 497c2e3833b8025db22b1d206dda2585 1743 python optional numexpr_2.2.2-2.dsc
 3d6cb733e93c326ac23a0ae5df4dd17e 6599 python optional 
numexpr_2.2.2-2.debian.tar.gz
 eb6d1fe7a3773e919126bb3c1351555b 127418 python optional 
python-numexpr_2.2.2-2_amd64.deb
 0a6c99bed116235ca617ef999f60e101 96244 debug extra 
python-numexpr-dbg_2.2.2-2_amd64.deb
 b4a78461d5f4a122e30ac45e30a408c7 120826 python optional 
python3-numexpr_2.2.2-2_amd64.deb
 43740514e9e76e866d199008debbd185 95926 debug extra 
python3-numexpr-dbg_2.2.2-2_amd64.deb

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

iEYEARECAAYFAlKaN2IACgkQjRFFY3XAJMjiRgCgm3vSf8JKGHHpqytQuVd3viyI
agAAnRGForeorJH0dtaoDWmaygrSFQGp
=Kjsz
-END PGP 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/e1vmq4h-0006xz...@franck.debian.org



Accepted libtelnet 0.21-2 (source amd64)

2013-11-30 Thread Ralph Lange
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Oct 2013 16:48:39 +0100
Source: libtelnet
Binary: libtelnet2 libtelnet-dev libtelnet-utils
Architecture: source amd64
Version: 0.21-2
Distribution: unstable
Urgency: low
Maintainer: Ralph Lange ralph.la...@gmx.de
Changed-By: Ralph Lange ralph.la...@gmx.de
Description: 
 libtelnet-dev - Small library for parsing the TELNET protocol - development 
files
 libtelnet-utils - Small library for parsing the TELNET protocol - utilities
 libtelnet2 - Small library for parsing the TELNET protocol - shared library
Closes: 727442
Changes: 
 libtelnet (0.21-2) unstable; urgency=low
 .
   * d/control: fix Vcs-*: links to use canonical URLs
   * d/control: bump Standards-Version: to 3.9.5 with no changes
   * Update config.{guess,sub} using autotools-dev (Closes: #727442)
Checksums-Sha1: 
 a53c69de4ccc9ee66df27a0855a45929b6b03905 2021 libtelnet_0.21-2.dsc
 e524079f7ca488b707a725ff8041dd44f5246323 3247 libtelnet_0.21-2.debian.tar.gz
 362c36ce714df2426a56cad5542175b9aed2b658 20224 libtelnet2_0.21-2_amd64.deb
 ff3b7411b829c9a3e7654d974ee063bbb8d8c6eb 24924 libtelnet-dev_0.21-2_amd64.deb
 ea8a45365946af7ecd651bf75a6aac87b8c0a0c1 21670 libtelnet-utils_0.21-2_amd64.deb
Checksums-Sha256: 
 4c92c99fbf8e9291fb71a3f863b29046b6449ae366b118d271e33eaa1735fd20 2021 
libtelnet_0.21-2.dsc
 4b67244c99099fcdda4cf1e60f567230723c5800f5c690e47c58ead72cf4fa20 3247 
libtelnet_0.21-2.debian.tar.gz
 acf1d59e238c51e849c55722dce76f9c8654ab3c2fe396f662b77fbde8bc73ae 20224 
libtelnet2_0.21-2_amd64.deb
 7d78206b93d61f388ccb37bf5ef648db200856313531493c4092e05909bd5f33 24924 
libtelnet-dev_0.21-2_amd64.deb
 73fcf7878a6ea204fd53776e0b2b4ecb6258e1965b2ca5954e7579df28b465fd 21670 
libtelnet-utils_0.21-2_amd64.deb
Files: 
 b19e45d3f06c644b42af92216a423a18 2021 libs optional libtelnet_0.21-2.dsc
 d21b188c1bea88f6664c55000e7b7d15 3247 libs optional 
libtelnet_0.21-2.debian.tar.gz
 904f04345db5a98e99d68bc65dbf7ac8 20224 libs optional 
libtelnet2_0.21-2_amd64.deb
 c8e4e266c621a6c7465ca10d3bb83a32 24924 libdevel optional 
libtelnet-dev_0.21-2_amd64.deb
 f54f8c103cb3629917e4b68b17ac6b31 21670 net optional 
libtelnet-utils_0.21-2_amd64.deb

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

iQIcBAEBAgAGBQJSmjteAAoJEBxXDIkOS9CrBxEP/RY0yeXNIRxxWNEh3WeTzeea
7us2RJGN6s96IVnk17e9gPOWqG/y06tXSHCOKHdQ7qKHvHD3iQvNXAxkAZYv2S0g
2bWZ2Qmvmx0boMxpJ8xSjbIH/TRRNwmeLAOzyzkm+kbimwnNZMGpXFjNMfDu0kXV
CL2RRen3d0+/SQBl88HGfJED+lvwtt2TUm2A/S2VirtoD/s4nJG7pQMTpHRpyoVH
zNQeG57KdGiQa0afRioAZKb2jjLtNvLbrdT6UAD4Xf4mDvmbWP7lQL07CgjMTkRv
p/h46QZqLOav4UvCBohp5aeFugfdyLblfz6EI9yikXAO5TUeRx61Kr4gTuvNEoFF
OwTENWX+r10/Ge5BH9416o5qeWs3F9PYWvojB4IoX2/NzUZhJVCdb3dGyIJ5QoCk
8ihXuXYZC8/ynjHrCAPn/NMKyBbyNCNWPe30MIFzXgMowkLRzB/lIGNG/yD68M8G
cMvl+Jr5OVjbTTqmCiKg6SU0EBuVgdaPld7SPJUx3flvynt7BPiXDpi3GOGZzbVy
HyLRGzV7siPhGZKJP2WjQmbg7cTd1OJ8FMYb1tBZCSOWJe5xHH5JDtOUxEOr6ktq
cSEBiDNlzP6YfUT6n/gXbfc/ONRzBnyXGOv3HpOAD3K6qeybSyNSRw6euTrK4eWn
N7dRnOdBJjrACVFDPBaE
=hBKK
-END PGP 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/e1vmqia-0001di...@franck.debian.org



Accepted kstars 4:4.11.3-5 (source amd64 all)

2013-11-30 Thread Pino Toscano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 20:20:34 +0100
Source: kstars
Binary: kstars kstars-data kstars-dbg
Architecture: source amd64 all
Version: 4:4.11.3-5
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Pino Toscano p...@debian.org
Description: 
 kstars - desktop planetarium for KDE
 kstars-data - data files for KStars desktop planetarium
 kstars-dbg - debug information for the desktop planetarium for KDE
Changes: 
 kstars (4:4.11.3-5) unstable; urgency=low
 .
   * Backport upstream commit 64748ed5e45177224699c4f597d81d6cae3bfcdc to just
 use the system temporary directory, bypassing KDE's one. It should finally
 allow to run tests with no available $HOME.
Checksums-Sha1: 
 147c6254a7601c23fab06dca7473fe8131fae6b2 1667 kstars_4.11.3-5.dsc
 41e43a91cd8d0dd98ced60dc122540d759d252ef 11097 kstars_4.11.3-5.debian.tar.gz
 99af71551d7d37689a583cd403a0fbefa4dfa8ff 986392 kstars_4.11.3-5_amd64.deb
 30c7c6d9f4891b59c8059100dd8dfa423ed86729 11738276 kstars-data_4.11.3-5_all.deb
 fbc36090776de9cc1f77504b14104a610d961073 28115368 kstars-dbg_4.11.3-5_amd64.deb
Checksums-Sha256: 
 fa84558ce4c0af6c1467986531e380f09a928b5999244090f3b828d1fdaf8b71 1667 
kstars_4.11.3-5.dsc
 a0711224ed767b729c8aa77b10e017f5c9ad7c06aeaa25e5da779a3d21cbbae8 11097 
kstars_4.11.3-5.debian.tar.gz
 a4ffca8e7e0daba146330b70620ef3bce9104dd49539ae8cafc4e7368ddf32d6 986392 
kstars_4.11.3-5_amd64.deb
 98a4b41d39414647decce65e492ad6df8fe93924524513dc9c47df326a4e270d 11738276 
kstars-data_4.11.3-5_all.deb
 db6fe6389d7ae91f3664a15fd40ce7a1ef2b0f36472794662b497a67e53371fd 28115368 
kstars-dbg_4.11.3-5_amd64.deb
Files: 
 cd9b5280bef3aba3f83d3941c4aca816 1667 kde optional kstars_4.11.3-5.dsc
 7d670dc18925c3f094b9853099509b45 11097 kde optional 
kstars_4.11.3-5.debian.tar.gz
 1f9633ba282a82557767ed252449fca8 986392 science optional 
kstars_4.11.3-5_amd64.deb
 6d2f788331609db499357a8820d08781 11738276 science optional 
kstars-data_4.11.3-5_all.deb
 73f97165263a1cbd9f0c4bac04ad0830 28115368 debug extra 
kstars-dbg_4.11.3-5_amd64.deb

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

iD8DBQFSmj0ETNH2piB/L3oRAlRCAJ9goH2Jj9/+QjDUdzzwRmHOTO78SACeIuKq
SKiF4agWK8bSDxn33YjdXK4=
=SGg2
-END PGP 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/e1vmqxt-00042h...@franck.debian.org



Accepted 9mount 1.3-10 (source i386)

2013-11-30 Thread Andrew Shadura
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 21:33:35 +0100
Source: 9mount
Binary: 9mount
Architecture: source i386
Version: 1.3-10
Distribution: unstable
Urgency: low
Maintainer: Andrew Shadura andre...@debian.org
Changed-By: Andrew Shadura andre...@debian.org
Description: 
 9mount - plan9 filesystem (v9fs) user mount utilities
Closes: 730858
Changes: 
 9mount (1.3-10) unstable; urgency=low
 .
   * Update the homepage (Closes: #730858).
   * Fix manpages.
   * Build on Linux only.
Checksums-Sha1: 
 8b209ac37443d2ed92057b2c1643c19d6a841b56 1675 9mount_1.3-10.dsc
 4045b8d3db611a8acfb19d1aee58bd4a49a98ae5 3385 9mount_1.3-10.debian.tar.gz
 73757092b9dcbb79efac6fdf2eccd7a75ceda47c 10836 9mount_1.3-10_i386.deb
Checksums-Sha256: 
 88b7597be9079efaef90398c903fd1aecd6bf8491b392bb92de0f2978b6e1a96 1675 
9mount_1.3-10.dsc
 7cf59b92ea85c6fe03eac45fb32d97fde7cc32b04862873d36581fc3ab39f44d 3385 
9mount_1.3-10.debian.tar.gz
 042b45be00c07575585b8f194a64c0ba09492a00e25cfd31b3721746f63d2de7 10836 
9mount_1.3-10_i386.deb
Files: 
 5a1a06bf2367935eb0ffadba63e1e193 1675 admin optional 9mount_1.3-10.dsc
 2072a9045ac508f866fd272ff5dea9e8 3385 admin optional 
9mount_1.3-10.debian.tar.gz
 5d0ea2f559aaf0b385d9992e6660e693 10836 admin optional 9mount_1.3-10_i386.deb

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

iQIcBAEBCAAGBQJSmlE0AAoJEG6k0jEaLSaNgCYQAKE/4LYWDnyqMqs31zu5vExT
4kX22fdrNoxHod0pr/yFqazZXttUbuEJAmPM1etsgmnUl2tx6eAdX4VqFRBShkqW
qlEpqeqEn9crVqzrMRPIta3tDYFxSs+fHrFC+1Y/Jbe7mBvExtSi4P7GLbWx5nMn
i1wd3pTNyJtZKzCTOq22mvg/92PKlUaMlNyb3kkGHN5vRmMGAYs0PLrH7Vpu55Zs
lMv3LCtFWHWR8gxtnh3P35vjWS8iCZo7DEKx0ZOCD3J+pvt736+HSxhyk8WTYhiQ
Wk7jobekveJIo2+UVyE2/B5skwGxfm5GUAsB6mtwsV9mtfgrIsc0TNkxClgRBAD5
Ds05GeiCPgHU9G8XQ4zSDfxQQF5iemXeq0XCWT9jzSSnmwjvwXkhAwQtwGaCO24+
H88QyH1cVHSF+nlo0zHloo9buVcntjzHsF6VtFnRRV2CLd6af3EaW/BPqTOVfKT+
QxohKZDraTuW/mPou/GO7e621FxhjkeVR1jwTfVggOTKE4Xfhpc71Wag7edWjZKu
eVv2qhIgIpQYJECTlkMSKQLqRO5KRy5OhZuZR2t+AtB+9jhI2Ob/DLAtzgFUj2FQ
xwgS4G3euEej7n5hPm6AKBGX0kBPmtZIxLZ99zu0PtP9YPRT9nqZ4lq3wG2nDusQ
jaKQYfajLFLkZJ150KRZ
=rcIJ
-END PGP 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/e1vmrwe-0004bx...@franck.debian.org



Accepted cl-mcclim 0.9.6.dfsg.cvs20100315-2 (source all)

2013-11-30 Thread Milan Zamazal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 21:06:22 +0100
Source: cl-mcclim
Binary: cl-mcclim cl-mcclim-examples cl-mcclim-doc
Architecture: source all
Version: 0.9.6.dfsg.cvs20100315-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Milan Zamazal p...@debian.org
Description: 
 cl-mcclim  - Common Lisp graphic user interface toolkit
 cl-mcclim-doc - Graphic user interface package for Common Lisp programs
 cl-mcclim-examples - Common Lisp graphic user interface toolkit
Changes: 
 cl-mcclim (0.9.6.dfsg.cvs20100315-2) unstable; urgency=low
 .
   * Orphaned.
Checksums-Sha1: 
 ca992924d5e8b26b9d42cb4ecfb8fbd624a86276 1320 
cl-mcclim_0.9.6.dfsg.cvs20100315-2.dsc
 074b0187b67ccad156efa2c4f6046efe7f8c2005 5419 
cl-mcclim_0.9.6.dfsg.cvs20100315-2.debian.tar.gz
 749381196673ee3fe328e606204a0ca8c5295be2 878504 
cl-mcclim_0.9.6.dfsg.cvs20100315-2_all.deb
 eb6f13cd005005badac6d11d1343e1cdd0fac695 42018 
cl-mcclim-examples_0.9.6.dfsg.cvs20100315-2_all.deb
 3e69a8266949d47e809aef4363271d4ee35acdec 3914 
cl-mcclim-doc_0.9.6.dfsg.cvs20100315-2_all.deb
Checksums-Sha256: 
 21d7489592f006c94b9fa128cd044111897acc07d3b02160102f28b78750832e 1320 
cl-mcclim_0.9.6.dfsg.cvs20100315-2.dsc
 25d6761db675f8e7e5986f0ceec8cfafc21daa9fe5ef876bacb28bb1607a6718 5419 
cl-mcclim_0.9.6.dfsg.cvs20100315-2.debian.tar.gz
 a6f1ea60efbcac1b55b61ec93ab604f90d59ee6be4232c3d3ec29f612461ba55 878504 
cl-mcclim_0.9.6.dfsg.cvs20100315-2_all.deb
 324b0d2339f01d7769c2a884dfb463b5159269c3cefd8a38f2636d9b3d9548c0 42018 
cl-mcclim-examples_0.9.6.dfsg.cvs20100315-2_all.deb
 f7317ff1f098d0e7887228a6b075879199b3dceb2852c2f01caad8f92eabdf2e 3914 
cl-mcclim-doc_0.9.6.dfsg.cvs20100315-2_all.deb
Files: 
 31a761626cf0e938e15cc0362c7a5574 1320 lisp optional 
cl-mcclim_0.9.6.dfsg.cvs20100315-2.dsc
 d59fdc9352b035b44f873f13c75a5f6c 5419 lisp optional 
cl-mcclim_0.9.6.dfsg.cvs20100315-2.debian.tar.gz
 6654d77258fe30f264b2636e34e65f73 878504 lisp optional 
cl-mcclim_0.9.6.dfsg.cvs20100315-2_all.deb
 b0d8401262d145549b4792bca63c16aa 42018 lisp optional 
cl-mcclim-examples_0.9.6.dfsg.cvs20100315-2_all.deb
 8ed844a2a329b9d9e6c31d25f7a13fee 3914 doc optional 
cl-mcclim-doc_0.9.6.dfsg.cvs20100315-2_all.deb

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

iEYEARECAAYFAlKaRcIACgkQkSkk/j3Cm0HCgwCfby5bnBSwTk7uG2y7nuepPLN7
ozoAoLejEoPX5fKNZdJulLVXZsfPInDx
=KWmv
-END PGP 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/e1vmrwy-0004mw...@franck.debian.org



Accepted cl-flexichain 1.5.1.dfsg.1-3 (source all)

2013-11-30 Thread Milan Zamazal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 21:08:07 +0100
Source: cl-flexichain
Binary: cl-flexichain
Architecture: source all
Version: 1.5.1.dfsg.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Milan Zamazal p...@debian.org
Description: 
 cl-flexichain - An efficient gap buffer with a well-defined external protocol
Changes: 
 cl-flexichain (1.5.1.dfsg.1-3) unstable; urgency=low
 .
   * Orphaned.
Checksums-Sha1: 
 66ccd6a3cffa76305ebbd050bbf1a8f15fa66326 1200 cl-flexichain_1.5.1.dfsg.1-3.dsc
 1daa3997cc6c58006c8557430046172e19949c95 1976 
cl-flexichain_1.5.1.dfsg.1-3.debian.tar.gz
 63c99ff91c3918518a1990c18b04ba34c9dcdbb1 9836 
cl-flexichain_1.5.1.dfsg.1-3_all.deb
Checksums-Sha256: 
 c193f78c03daecfd118fb7ff1e616cb365ea8905cb052398b17df1aa32f63b6b 1200 
cl-flexichain_1.5.1.dfsg.1-3.dsc
 b689948e3e200d53d0ed568f4eb4bd574bce0df1119216f4d147b92197a0c1bd 1976 
cl-flexichain_1.5.1.dfsg.1-3.debian.tar.gz
 2e586220bd5c2fffae65dc9670fcb98a4562aee719c16d3031467484d7aa3e12 9836 
cl-flexichain_1.5.1.dfsg.1-3_all.deb
Files: 
 6d6aa743741a91eb9d86d59a050cc6a8 1200 lisp optional 
cl-flexichain_1.5.1.dfsg.1-3.dsc
 3336492783cc71201bb6bf203bd29e98 1976 lisp optional 
cl-flexichain_1.5.1.dfsg.1-3.debian.tar.gz
 c4308ce55e81e2f0aaf408447e9702c7 9836 lisp optional 
cl-flexichain_1.5.1.dfsg.1-3_all.deb

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

iEYEARECAAYFAlKaRhsACgkQkSkk/j3Cm0H8sQCg4ihN2l8i2tP/oMW+k70ZlzWL
oY8AoK2ywk0rtF7RRRS08kUpAbXfWXEh
=UAWe
-END PGP 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/e1vmrwu-0004gp...@franck.debian.org



Accepted cl-spatial-trees 0.2-4 (source all)

2013-11-30 Thread Milan Zamazal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 21:09:25 +0100
Source: cl-spatial-trees
Binary: cl-spatial-trees
Architecture: source all
Version: 0.2-4
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Milan Zamazal p...@debian.org
Description: 
 cl-spatial-trees - Spatial trees Common Lisp library
Changes: 
 cl-spatial-trees (0.2-4) unstable; urgency=low
 .
   * Orphaned.
Checksums-Sha1: 
 2dbfba0dd9bcec69ba80fa638c74034d6ba040ac 1159 cl-spatial-trees_0.2-4.dsc
 a0b6f1535ee4bf5a4940900d7e4fa0439e2f6d75 2513 
cl-spatial-trees_0.2-4.debian.tar.gz
 d71a2c6b61acb57a017b485c37a5cb815c6ec11f 16258 cl-spatial-trees_0.2-4_all.deb
Checksums-Sha256: 
 f4106c9c9224586cedf8f7d8f967e2108e65624b5710e6116bf9f90c69ce2275 1159 
cl-spatial-trees_0.2-4.dsc
 45c86fa94c20aef92061f0db48ac77f579d86cad20934f8b68f5739ef97745fe 2513 
cl-spatial-trees_0.2-4.debian.tar.gz
 f8fbc31bf09d8dd969f56bce3406bd0fc5c5cfaf69c7b817dcbc96426e6dadd0 16258 
cl-spatial-trees_0.2-4_all.deb
Files: 
 571e77beb68959e7ab26960892a0b927 1159 lisp optional cl-spatial-trees_0.2-4.dsc
 48e7523e045eda926ad68b8ea615797f 2513 lisp optional 
cl-spatial-trees_0.2-4.debian.tar.gz
 bf19ee6a1e1ba13fe19b3a5e106e293a 16258 lisp optional 
cl-spatial-trees_0.2-4_all.deb

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

iEYEARECAAYFAlKaRm4ACgkQkSkk/j3Cm0FU9gCguikGweKuxTNVnCRrWhiZM9/D
RosAoKJE6i2R6EY0KXZQ46okoMN91t8Q
=FS7a
-END PGP 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/e1vmrx4-0004pj...@franck.debian.org



Accepted dsniff 2.4b1+debian-22.1 (source i386)

2013-11-30 Thread Andrew Shadura
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 21:29:23 +0100
Source: dsniff
Binary: dsniff
Architecture: source i386
Version: 2.4b1+debian-22.1
Distribution: unstable
Urgency: low
Maintainer: William Vera bi...@billy.com.mx
Changed-By: Andrew Shadura andre...@debian.org
Description: 
 dsniff - Various tools to sniff network traffic for cleartext insecurities
Closes: 712648
Changes: 
 dsniff (2.4b1+debian-22.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix TDS decoder patch (Closes: #712648).
Checksums-Sha1: 
 554e312242022a643316bfd2fb4a54e3e4d4 1839 dsniff_2.4b1+debian-22.1.dsc
 1d4dfd12de5423a02396e716bd105f8b2ef92ce2 29657 
dsniff_2.4b1+debian-22.1.debian.tar.gz
 6bf900cc83eb642a861bf747a8e666f6db84d9f9 93654 
dsniff_2.4b1+debian-22.1_i386.deb
Checksums-Sha256: 
 05c595fd3b3c38de14e1428acedd34f29241865a7ecf7178d7dfda25107d83ff 1839 
dsniff_2.4b1+debian-22.1.dsc
 28ddb8514c6a7a17f51f428b6fada299baf5a3efa153f77f081ac6c1e6466633 29657 
dsniff_2.4b1+debian-22.1.debian.tar.gz
 f18c5525128e571b58ab3242f3413ff311b934d7a5492579cddd2ae00cea5220 93654 
dsniff_2.4b1+debian-22.1_i386.deb
Files: 
 afb303a07c9a348145f29242f5033fca 1839 net extra dsniff_2.4b1+debian-22.1.dsc
 e80551b70dc3976d4c3319cca9eb 29657 net extra 
dsniff_2.4b1+debian-22.1.debian.tar.gz
 3f3a26c47586848e961443fcf076911d 93654 net extra 
dsniff_2.4b1+debian-22.1_i386.deb

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

iQIcBAEBCAAGBQJSmkyYAAoJEG6k0jEaLSaNjjQP/iXenJTo8ia2XVhtrZQhS5ju
CUUgrp/jRO7qauc6qS3VSfv1CBR0zERN+r/18RnbQXm3kj1DMktNVCHUlfLTqs08
jppYMib8KzWWCjoNbHviyowUJGGmMeC/9NnJeV/xmEJ4uB6CBiVK3HQJCK2Z+V1f
05B7tG007ZQRPXrPp3BaUF9MDUHjQZq3vZo74BeYpVdBasaIlF9ESBp9dj9A2k3c
ZN4BOxq0EInQEOufRp8ggavb+LZDcE9CdjwmkXuuWZv2+hV/kXkZQ+epFkTl8VAk
HUgv+xkU+mb07JRBQeJELq7HvlzE675ji9V/G+vzBWopmAeROfa8WLUXKcMiyVCy
qtrCEpEjvSlB/2TegwgaXwHwTGX7qmfYB0ove+7oU65Pxn8vRpBMcX7l0Cj3zi72
rSptOcypTcU9XgTkb3DrpAPPujE9DI0af0KH0MJcouGY8ttKOMJ+164G55emRZs8
DZ5vTqBjHyVtCJCyejQRiTEbwaYTxKuNr9msps4pb0Aq4kCAe956fcr2/BNSHBT/
HOIu5Lyos8Vds6bgCbxHnwEAHPOWRIpfGBkmEtC1IddxI2umfoSiefsE8Q6Vulct
Pm7iWgzOrPIAi2dYPEEP0srKPW4JtswGrq4yz4liEjiLHJTDi/OtGQAr5q5d0gwO
M+CDSeybwsHS6sIua9a/
=uWLN
-END PGP 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/e1vmrxt-0004ya...@franck.debian.org



Accepted git 1:1.8.5-1 (source amd64 all)

2013-11-30 Thread Jonathan Nieder
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 11:28:02 -0800
Source: git
Binary: git git-man git-core git-doc git-arch git-bzr git-cvs git-svn 
git-mediawiki git-email git-daemon-run git-daemon-sysvinit git-gui gitk git-el 
gitweb git-all
Architecture: source amd64 all
Version: 1:1.8.5-1
Distribution: unstable
Urgency: low
Maintainer: Gerrit Pape p...@smarden.org
Changed-By: Jonathan Nieder jrnie...@gmail.com
Description: 
 git- fast, scalable, distributed revision control system
 git-all- fast, scalable, distributed revision control system (all subpacka
 git-arch   - fast, scalable, distributed revision control system (arch interop
 git-bzr- fast, scalable, distributed revision control system (bzr interope
 git-core   - fast, scalable, distributed revision control system (obsolete)
 git-cvs- fast, scalable, distributed revision control system (cvs interope
 git-daemon-run - fast, scalable, distributed revision control system 
(git-daemon s
 git-daemon-sysvinit - fast, scalable, distributed revision control system 
(git-daemon s
 git-doc- fast, scalable, distributed revision control system (documentatio
 git-el - fast, scalable, distributed revision control system (emacs suppor
 git-email  - fast, scalable, distributed revision control system (email add-on
 git-gui- fast, scalable, distributed revision control system (GUI)
 git-man- fast, scalable, distributed revision control system (manual pages
 git-mediawiki - fast, scalable, distributed revision control system (MediaWiki 
in
 git-svn- fast, scalable, distributed revision control system (svn interope
 gitk   - fast, scalable, distributed revision control system (revision tre
 gitweb - fast, scalable, distributed revision control system (web interfac
Closes: 704985
Changes: 
 git (1:1.8.5-1) unstable; urgency=low
 .
   * new upstream release.
   * merge branch debian-experimental.
   * git-daemon-sysvinit: advertise GIT_DAEMON_BASE_PATH in
 /etc/default/git-daemon (thx Alexander Dahl and Antonio
 Ospite; closes: #704985).
Checksums-Sha1: 
 f42f1dbecb80fda6ea465594d479cb927fab6efa 2694 git_1.8.5-1.dsc
 3d73449a166b50068c931699282e7513ae2f2eed 3341800 git_1.8.5.orig.tar.xz
 c8a046de976b5f75d4da5f243cdf091d47f8281a 591025 git_1.8.5-1.debian.tar.gz
 3c64cee8f5710dd6236a24a0382da91a74a8c285 2899236 git_1.8.5-1_amd64.deb
 5ac2e9055923c06eaa37847ac4f3335c6fd3783e 1351112 git-doc_1.8.5-1_all.deb
 f3e2b347c5fdc1d0428ddb50ac9487913d2cc86c 553868 git-arch_1.8.5-1_all.deb
 935074417f7f04ff9e74c8318e7d12b92a4c6e7f 548640 git-bzr_1.8.5-1_all.deb
 e9e64ec8ca19f5a58333851c54f72f3c947179db 603554 git-cvs_1.8.5-1_all.deb
 a611250bb383a244657bb440e0c9247b399e0c9e 627014 git-svn_1.8.5-1_all.deb
 44a1081e66364027d6a77953d21e8bb32a7d4fd9 556066 git-mediawiki_1.8.5-1_all.deb
 a1ef9aa4a5440232c0428b02c6d8e750d82d1cda 542036 git-daemon-run_1.8.5-1_all.deb
 568bd082073997a5c88677f9098ed96b45463c35 543152 
git-daemon-sysvinit_1.8.5-1_all.deb
 29e39a42a39c02dda65bad70c049a2a4ebbc947a 559824 git-email_1.8.5-1_all.deb
 0955cdf8b96d857f23793ada21195e674d3aef58 721160 git-gui_1.8.5-1_all.deb
 9ad6d2f84bc15a0cb651f8ea910352239a786904 648774 gitk_1.8.5-1_all.deb
 a82e068134264ef399eaa0bcb814ca626ec99a1b 544426 gitweb_1.8.5-1_all.deb
 caa1071f4005f6e7fbfa14d4d875c1a864ce5623 540522 git-all_1.8.5-1_all.deb
 27e5086aa040b1023145381e38b148b530637602 560148 git-el_1.8.5-1_all.deb
 34bf3e05f40fc04c5a5cc2389719f45b70c63104 1225574 git-man_1.8.5-1_all.deb
 144b2b1ce08a3fa0a0fa145386bde5ff4a0a42f6 1408 git-core_1.8.5-1_all.deb
Checksums-Sha256: 
 a875722748b946ff4e16b6ee8522b7703b900c5e3f7e3d2c96c2ff2c9bd892f3 2694 
git_1.8.5-1.dsc
 5ab5b821a35e49cb71d23fd0d50e8d30b991bb7e85c9199d48d3b65b42396878 3341800 
git_1.8.5.orig.tar.xz
 579220819ef3f0b40e06d3f813f29e97c0786fd128fbb0f0f7b4f43fa9da8fca 591025 
git_1.8.5-1.debian.tar.gz
 63a555c0037c75f97496811f99851713fa9e11428526227f5af9606877be4ad0 2899236 
git_1.8.5-1_amd64.deb
 a8bb1148345ddfb059edf8720ebb8043375198dfbcdf8d69299e290094573ac6 1351112 
git-doc_1.8.5-1_all.deb
 826ed5d4c3efa66c1521b0bdbb41d93fc2dfbc14c184bfcba9262719972fdf03 553868 
git-arch_1.8.5-1_all.deb
 acb1e7b703a010e482d421e3fd8100cb7bd292e9c0225469981e058f26cadc11 548640 
git-bzr_1.8.5-1_all.deb
 8ed2b3d47c76b75616e7fff2c28a783d9e6585a374682bef3ff8e6b3e295681a 603554 
git-cvs_1.8.5-1_all.deb
 25a3895ccdc675932a01680e6514ffdddba47def37677d0e022f0249dad954a5 627014 
git-svn_1.8.5-1_all.deb
 bcdf959ef10f1f2b8960d869e660b54a05caba018d9b0d64bc55bd6a7456bf36 556066 
git-mediawiki_1.8.5-1_all.deb
 15d69c3350ae26074c96a61308fadd2d08bc78f17a2006f108b405440160d1c6 542036 
git-daemon-run_1.8.5-1_all.deb
 22ea01ee18bd74e6899db1653a4b940c6e1cb3a9be3cd2d9a6e6ee2f3380798f 543152 
git-daemon-sysvinit_1.8.5-1_all.deb
 d98dfd32bf50d698cb8a5f4d8a8bf9eaca099503fb6583fb4ece0f5fe7886c62 559824 
git-email_1.8.5-1_all.deb
 76878c890cedc1f3fe8c4559a37081f6e6dd44b3d3c93d95cab292a7fe962557 721160 

Accepted git-annex 5.20131130 (source amd64)

2013-11-30 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 16:32:35 -0400
Source: git-annex
Binary: git-annex
Architecture: source amd64
Version: 5.20131130
Distribution: unstable
Urgency: low
Maintainer: Joey Hess jo...@debian.org
Changed-By: Joey Hess jo...@debian.org
Description: 
 git-annex  - manage files with git, without checking their contents into git
Changes: 
 git-annex (5.20131130) unstable; urgency=low
 .
   * init: Fix a bug that caused git annex init, when run in a bare
 repository, to set core.bare=false.
 .
 git-annex (5.20131127.1) unstable; urgency=low
 .
   * Rebuild that does not try to use quvi 0.9 from experimental.
 .
 git-annex (5.20131127) unstable; urgency=low
 .
   * webapp: Detect when upgrades are available, and upgrade if the user
 desires.
 (Only when git-annex is installed using the prebuilt binaries
 from git-annex upstream, not from eg Debian.)
   * assistant: Detect when the git-annex binary is modified or replaced,
 and either prompt the user to restart the program, or automatically
 restart it.
   * annex.autoupgrade configures both the above upgrade behaviors.
   * Added support for quvi 0.9. Slightly suboptimal due to limitations in its
 interface compared with the old version.
   * Bug fix: annex.version did not get set on automatic upgrade to v5 direct
 mode repo, so the upgrade was performed repeatedly, slowing commands down.
   * webapp: Fix bug that broke switching between local repositories
 that use the new guarded direct mode.
   * Android: Fix stripping of the git-annex binary.
   * Android: Make terminal app show git-annex version number.
   * Android: Re-enable XMPP support.
   * reinject: Allow to be used in direct mode.
   * Futher improvements to git repo repair. Has now been tested in tens
 of thousands of intentionally damaged repos, and successfully
 repaired them all.
   * Allow use of --unused in bare repository.
 .
 git-annex (5.20131120) unstable; urgency=low
 .
   * Fix Debian package to not try to run test suite, since haskell-tasty
 is not out of new or in Build-Depends yet.
   * dropunused, addunused: Allow all instead of a range to
 act on all unused data.
   * Ensure execute bit is set on directories when core.sharedrepository is set.
   * Ensure that core.sharedrepository is honored when creating the .git/annex
 directory.
   * Improve repair code in the case where the index file is corrupt,
 and this hides other problems from git fsck.
 .
 git-annex (5.20131118) unstable; urgency=low
 .
   * Direct mode repositories now have core.bare=true set, to prevent
 accidentally running git commands that try to operate on the work tree,
 and so do the wrong thing in direct mode.
   * annex.version is now set to 5 for direct mode repositories.
 This upgrade is handled fully automatically, no need to run
 git annex upgrade
   * The status command has been renamed to info, to allow
 git annex status to be used in direct mode repositories, now that
 git status won't work in them.
   * The -c option now not only modifies the git configuration seen by
 git-annex, but it is passed along to every git command git-annex runs.
   * watcher: Avoid loop when adding a file owned by someone else fails
 in indirect mode because its permissions cannot be modified.
   * webapp: Avoid encoding problems when displaying the daemon log file.
   * webapp: Improve UI around remote that have no annex.uuid set,
 either because setup of them is incomplete, or because the remote
 git repository is not a git-annex repository.
   * Include ssh-keygen in standalone bundle.
   * Allow optionally configuring git-annex with -fEKG to enable awesome
 remote monitoring interfaceat http://localhost:4242/
   * Fix bug that caused bad information to be written to the git-annex branch
 when running describe or other commands with a remote that has no uuid.
   * Work around Android linker problem that had prevented git-annex from
 running on Android 4.3 and 4.4.
   * repair: Handle case where index file is corrupt, but all objects are ok.
   * assistant: Notice on startup when the index file is corrupt, and
 auto-repair.
   * Fix direct mode merge bug when a direct mode file was deleted and replaced
 with a directory. An ordering problem caused the directory to not get
 created in this case.
 Thanks to Tim for the test case.
   * Direct mode .git/annex/objects directories are no longer left writable,
 because that allowed writing to symlinks of files that are not present,
 which followed the link and put bad content in an object location.
 Thanks to Tim for the test case.
   * fsck: Fix up .git/annex/object directory permissions.
   * Switched to the tasty test framework.
   * Android: Adjust default .gitignore to ignore .thumbnails at any location
 in the tree, not just at its top.
   * webapp: Check annex.version.

Accepted libindicate 0.6.92-2 (source all amd64)

2013-11-30 Thread Andrew Starr-Bochicchio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 14:38:57 -0500
Source: libindicate
Binary: python-indicate libindicate5 libindicate-dev libindicate-gtk3-3 
libindicate-gtk3-dev libindicate-gtk3 libindicate-gtk-dev libindicate-doc 
gir1.2-indicate-0.7 libindicate0.1-cil libindicate0.1-cil-dev 
libindicate-gtk0.1-cil libindicate-gtk0.1-cil-dev
Architecture: source all amd64
Version: 0.6.92-2
Distribution: unstable
Urgency: low
Maintainer: The Ayatana Packagers pkg-ayatana-de...@lists.alioth.debian.org
Changed-By: Andrew Starr-Bochicchio a...@debian.org
Description: 
 gir1.2-indicate-0.7 - Typelib file for libindicate5
 libindicate-dev - library for raising indicators via DBus - development files
 libindicate-doc - library for raising indicators via DBus - documentation
 libindicate-gtk-dev - library for raising indicators via DBus - GTK+ bindings 
developme
 libindicate-gtk0.1-cil - CLI bindings for libindicate-gtk3
 libindicate-gtk0.1-cil-dev - CLI bindings for libindicate-gtk2 - development 
files
 libindicate-gtk3 - library for raising indicators via DBus - GTK+ bindings
 libindicate-gtk3-3 - library for raising indicators via DBus - GTK bindings
 libindicate-gtk3-dev - library for raising indicators via DBus - GTK bindings 
developmen
 libindicate0.1-cil - CLI bindings for libindicate5
 libindicate0.1-cil-dev - CLI bindings for libindicate5 - development files
 libindicate5 - library for raising indicators via DBus
 python-indicate - Python bindings for libindicate
Closes: 665571 707412 709696
Changes: 
 libindicate (0.6.92-2) unstable; urgency=low
 .
   * Team upload.
 .
   [ gregor herrmann ]
   * Non-maintainer upload.
   * Fix Including individual glib headers no longer supported:
 add patch glib-single-include.patch from Michael Biebl.
 (Closes: #665571)
   * Fix FTBFS: Indicate-0.7.gir:137.11-137.38: error: expected start
 element of `parameter':
 build-depend on valac (= 0.20)
 (Closes: #707412)
 This also fixes Upcoming vala 0.16 removal. (Closes: #709696)
 .
   [ Andrew Starr-Bochicchio ]
   * debian/patches/fix_doc_includes.patch:
- Do not include non-existing documentation file.
   * debian/patches/drop-g_type_init.patch:
- Do not use deprecated and now not-needed g_type_init.
Checksums-Sha1: 
 0cc8a8a2139236ab812601afc6d48f7d0c72cc96 3224 libindicate_0.6.92-2.dsc
 361f9bc9d6f811368b83c280f366149050bef7cc 11054 libindicate_0.6.92-2.diff.gz
 b86a91c009737328ca52ccf14a5cdf58131d04cc 54926 libindicate-doc_0.6.92-2_all.deb
 08f4ac35cc096b59b7c9b8365432cc4a9c4bcbd2 43872 
libindicate0.1-cil_0.6.92-2_all.deb
 02ff978ac24f64be3cf0ad7210b4b076c489d9a9 33472 
libindicate0.1-cil-dev_0.6.92-2_all.deb
 dfdd405b330dbb0f3537072ecc4ac895a46ad91e 36756 
libindicate-gtk0.1-cil_0.6.92-2_all.deb
 1899c6fdd75f77af8c724dbdb0de7a882da23ae8 33488 
libindicate-gtk0.1-cil-dev_0.6.92-2_all.deb
 f54a9494d6b3478d2d1f9c9aa1a695c79732d51e 44042 
python-indicate_0.6.92-2_amd64.deb
 fa437bcc6a5b91b7516f71432669a1592407ba12 56264 libindicate5_0.6.92-2_amd64.deb
 15906e051bb322c0fc28e7b4f8bc084260ce3347 73716 
libindicate-dev_0.6.92-2_amd64.deb
 42a032a73192b6f58206e44169d24ecb8d568ab6 36150 
libindicate-gtk3-3_0.6.92-2_amd64.deb
 2ca4e6da87384acf61d3ad42b3b9721557f6dc12 36304 
libindicate-gtk3-dev_0.6.92-2_amd64.deb
 6b2165a8b614f270cf5de2fe464e62cf303b6f60 36198 
libindicate-gtk3_0.6.92-2_amd64.deb
 76216e85249cef803e98c2b6677be062924d481a 36314 
libindicate-gtk-dev_0.6.92-2_amd64.deb
 76f7abe27878aa1a82bc330f6f49828321e9633c 37460 
gir1.2-indicate-0.7_0.6.92-2_amd64.deb
Checksums-Sha256: 
 3cc2885cd29aec197e42cbff26843186f74aa29457a2f87cb614a16e2e97b029 3224 
libindicate_0.6.92-2.dsc
 70ec5d5275364914dc5148854ecf34e550fc04c3b5a071f0a534c7167535441c 11054 
libindicate_0.6.92-2.diff.gz
 32def25dd0f00201b7a5f4840ad23801449074e03773a82ee47da3ad1a0cd7f5 54926 
libindicate-doc_0.6.92-2_all.deb
 aead6418d5164722d955862e0a783aa7f1304abc92bba57bb0a0f2303bc50c6f 43872 
libindicate0.1-cil_0.6.92-2_all.deb
 90181d268e0d347f4b0c92c650a5dc7b984f05c78e6a18c62dc3482fdbcdf8ea 33472 
libindicate0.1-cil-dev_0.6.92-2_all.deb
 f881c8103806bdd821c2d10d66cad907f263cb36c9204cd6a57f22bfe228efb0 36756 
libindicate-gtk0.1-cil_0.6.92-2_all.deb
 2b5e8ccdabd935cbcd501e73d98e3e1ef8536d49a381e062d842db5349e1c8c8 33488 
libindicate-gtk0.1-cil-dev_0.6.92-2_all.deb
 46c399a8d3afa1948ad4615fc8bf17b57bf79ef515ff031d0058f766049d7597 44042 
python-indicate_0.6.92-2_amd64.deb
 6e0ac8199849e8b3f63d925d77e6f83b9fea3810e21a5d989f8e01b8a7944e1d 56264 
libindicate5_0.6.92-2_amd64.deb
 0007e7fa428477f8b3923cc63aefbfc59618d8c74bf6805e1a269d8b322fee73 73716 
libindicate-dev_0.6.92-2_amd64.deb
 ef14b399d359711b391f7e9aa64cc4bbc50934a2fab083f76d33661f1fc2333a 36150 
libindicate-gtk3-3_0.6.92-2_amd64.deb
 e1f20bb461dd592b3a1a0ebc9ba1b6dc664f48f02d8166dbd0f5264599164e6f 36304 
libindicate-gtk3-dev_0.6.92-2_amd64.deb
 d322e03173da4435da14e2a3fc5337e7c39a752ae85aac463470cedc5073 36198 

Accepted libmoosex-app-cmd-perl 0.11-1 (source all)

2013-11-30 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 21:53:02 +0100
Source: libmoosex-app-cmd-perl
Binary: libmoosex-app-cmd-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: gregor herrmann gre...@debian.org
Description: 
 libmoosex-app-cmd-perl - Perl module combining App::Cmd and MooseX::Getopt
Closes: 730898
Changes: 
 libmoosex-app-cmd-perl (0.11-1) unstable; urgency=low
 .
   [ gregor herrmann ]
   * New upstream releases 0.08, 0.09.
   * Update years of upstream and packaging copyright.
   * Set debhelper compatibility level to 8.
   * Make (build) dependency on libgetopt-long-descriptive-perl versioned.
   * Add /me to Uploaders.
   * Add new (build) dependencies.
 .
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
   * Change search.cpan.org based URIs to metacpan.org based URIs
 .
   [ Damyan Ivanov ]
   * Imported Upstream version 0.10
   * bump years of upstream copyright
   * bump version of libmoosex-configfromfile-perl (build-)dependency
   * drop libtest-requires-perl drop b-d
 .
   [ gregor herrmann ]
   * New upstream release 0.11.
 Closes: #730898
   * Update (build) dependencies.
   * Update years of packaging copyright.
   * Declare compliance with Debian Policy 3.9.5.
Checksums-Sha1: 
 455a19bdc9d5351cb65a60886307382fd1feb470 2500 libmoosex-app-cmd-perl_0.11-1.dsc
 7ed2d4c628537d6f71ef0f546e76fe97e755b3f2 28852 
libmoosex-app-cmd-perl_0.11.orig.tar.gz
 913ab55c8702d8b276a5c8756c2d22b1ecb5638a 2531 
libmoosex-app-cmd-perl_0.11-1.debian.tar.gz
 e6ec0a7b41c74f0bea3016fb030166f1044b5815 14744 
libmoosex-app-cmd-perl_0.11-1_all.deb
Checksums-Sha256: 
 7ffcc670fc5cf5d66b863b70b5326c0f14a48c83d3c2cdd480a80a92965266f8 2500 
libmoosex-app-cmd-perl_0.11-1.dsc
 0a6d66a62088f45efb2cc4596989c88a0bf805ed5b4558aadde97d66abfb08b6 28852 
libmoosex-app-cmd-perl_0.11.orig.tar.gz
 b3defc6045ae14b7f04cc2fd314be845d7ea506ca9ec215a2a7557bb44b58393 2531 
libmoosex-app-cmd-perl_0.11-1.debian.tar.gz
 55cae3d07966b6582a619c421a79cc4333cd78b3d26f4d57364f436585eca28a 14744 
libmoosex-app-cmd-perl_0.11-1_all.deb
Files: 
 930e68f5d805c400cb2199e4c9dee65c 2500 perl optional 
libmoosex-app-cmd-perl_0.11-1.dsc
 2636f151a03b4d9a8f465b5a79e094db 28852 perl optional 
libmoosex-app-cmd-perl_0.11.orig.tar.gz
 3396e9782ff3293b0379552992e246ec 2531 perl optional 
libmoosex-app-cmd-perl_0.11-1.debian.tar.gz
 04ccee40ece073f566d45fb71d056b0d 14744 perl optional 
libmoosex-app-cmd-perl_0.11-1_all.deb

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

iQIcBAEBCAAGBQJSmlCJAAoJELs6aAGGSaoGWbAP/A69KNphu+K9UrMc1GBB8L7E
lYJd5xiqmt1GuWxoanKZHQf+V7ZKNGgQ9W7cW6fj1s6wRn2gcOni6tpQmMozJv0q
X9oc+o+t3Of9qPX/UikDaMF3YAIHKhdSA2EQYfZsgluuzQiqvbRYMX5KuQ62QdRo
Q4lJXj34Sm15JXbQthtTPs+LI9LxLo/eWJIMRThT3kvOQuD+A5/xfrDQxhR9dPcd
eSD7DVUCuP9r8kaO8fuz7o0sSeHJsGAIQkblqDTS49xDMq5j5UVbq/0iUO5XcV2O
/oUwXdal6WQWvR299ZPIhpQRMhNXsf7Mz97q53e58piwp9rXQPnMSRZowkvGeDX0
FVGsXAq6/Zpg0G18X8LPJoepZgue3MqBzNDPK61W82cC7BYuhj9fmtXju3vA6fJv
Sr+H/i4LeDDdsAgWM2XTSmj9I/+05G0e47BOPhylItHJuOskpubWXC9tKMgEJ5qS
yeCvEsNihTTh9A2xjgfSJviEboG8CEmT6eohueoGwtAeUy7IBouFN/gNezeLNsZ9
LkUB7VgSRKoEQWFjkLtQzx1uPISLwpi3aXb0EHDeGXz6BhmkryvvwzOT4RPihqPW
5WACdFx5PSo11VRyhZ5tNuV50FVEGEYcPgruAeM/dsdReMN018ZnqjcShq/HKd38
0e2m7B6wGy7XJjD4qemf
=oODp
-END PGP 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/e1vmrz1-0005nh...@franck.debian.org



Accepted libmoosex-configfromfile-perl 0.12-1 (source all)

2013-11-30 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 21:42:35 +0100
Source: libmoosex-configfromfile-perl
Binary: libmoosex-configfromfile-perl
Architecture: source all
Version: 0.12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libmoosex-configfromfile-perl - Moose role for setting attributes from a 
config file
Changes: 
 libmoosex-configfromfile-perl (0.12-1) unstable; urgency=low
 .
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
   * Change search.cpan.org based URIs to metacpan.org based URIs
 .
   [ Axel Beckert ]
   * debian/copyright: migrate pre-1.0 format to 1.0 using cme fix dpkg-
 copyright
 .
   [ Damyan Ivanov ]
   * Imported Upstream version 0.12
   * upstream moved homepage to Github
   * update debian/copyright
   * Break libmoosex-app-cmd-perl before version 0.10
   * update (build-)dependencies
 .
   [ gregor herrmann ]
   * Add build dependency on libmoosex-getopt-perl (additional test).
   * Update years of packaging copyright.
   * Declare compliance with Debian Policy 3.9.5.
Checksums-Sha1: 
 18bd94c7b823b73122d2bd089a2ac1fa3071a064 2610 
libmoosex-configfromfile-perl_0.12-1.dsc
 2dd6e6c41e8d7330791e7c06da8299fb05ed 20065 
libmoosex-configfromfile-perl_0.12.orig.tar.gz
 39bd9a317d32c9419ee4b5fe933622809affb8c4 2165 
libmoosex-configfromfile-perl_0.12-1.debian.tar.gz
 6ea75fe77a0bf31a455cdef78950a5c98adfc4ce 9478 
libmoosex-configfromfile-perl_0.12-1_all.deb
Checksums-Sha256: 
 f715dd2bf21c53accaea22639b413030d5b67cb14a8f4c16a52db33ae79ead9d 2610 
libmoosex-configfromfile-perl_0.12-1.dsc
 7d04a6c564da633efd316f1306853a835bda1975ac638713854f87272e5ad279 20065 
libmoosex-configfromfile-perl_0.12.orig.tar.gz
 5da9c4c35fdf62dfad718b9f2ede3017e59a73051436d245eb3a4fe27c51683f 2165 
libmoosex-configfromfile-perl_0.12-1.debian.tar.gz
 dfdd7b522161c06cdbfe92569fc87940f8b01ae119b81d4a69bd643abbd20572 9478 
libmoosex-configfromfile-perl_0.12-1_all.deb
Files: 
 fc0d45c74089d7d73160df7d4b108b80 2610 perl optional 
libmoosex-configfromfile-perl_0.12-1.dsc
 a1ea01b9d8ccbedf23e0df7bd2bafe2a 20065 perl optional 
libmoosex-configfromfile-perl_0.12.orig.tar.gz
 258e7eed27b3d66056df4a081bf9511e 2165 perl optional 
libmoosex-configfromfile-perl_0.12-1.debian.tar.gz
 e7f32897ce3a93137f6dc6bc12acbe53 9478 perl optional 
libmoosex-configfromfile-perl_0.12-1_all.deb

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

iQIcBAEBCAAGBQJSmk3gAAoJELs6aAGGSaoGJTEP/RUgTHI18CLfGzjMMR3roVEV
7zybSk4EdWS1c1dbN64n99dJYlglgtIS9JEQ9ff5NSznyy63rs1QzpJamIjmHbLo
nIWmwzw91KZHJQrS4ByMivenduSSDwWmxGDzfrhiHonrS8vrHCa18c0Xt43Om3FJ
Uu3Gwgyl2vwbKnsF4vdZRKAJQXd8+EYoa/3OC390ILAhCSUFnGh+QC3zC5EeJomg
1PT65n9FcvN5NNonrkkihcUn/DWd9Piq/cANdy0qNjxnoXIKU/9TaDnwN/uP3hZq
SSyWP1McnRz/F1hN6G7Q1lVC6yrtGFmy/OqdhJw4qlJieuIBmpQKXYuPrvOxPBa6
BWu0FCZ5RyAEJ0bxiWOisoKbZyUYbTuBHeS3ncng2plf9Mfi8TtQXiHQzxBVh52S
kgv4sNtRVy8IcsvY46lcWMCrx9F1x9sCY0xlsza8onQLID9RSamByRGbBeN61UJH
biycDPCzpiL/Ypz6zqIGRhdhEVtQjVZiY9co7PGHKALYnzYXGcfTgEM2PzrD8OTp
nBKUfK3kXisZ4hXJAscuRDwUmvOiMFe9yyFV1VPDTVI0BKTq1CVQ8O7nzvwRricp
CsDzuXbMLQ/U2ioVnWSAv8NB6UGwfhniODMov15aG+9Kx8AfojoQtNKoJZizrMWn
UVRVF/3pHchLTO33crX+
=hh6i
-END PGP 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/e1vmrz7-0005qv...@franck.debian.org



Accepted qbittorrent 3.1.3-1 (source amd64)

2013-11-30 Thread Cristian Greco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 15:31:48 +0100
Source: qbittorrent
Binary: qbittorrent qbittorrent-nox qbittorrent-dbg
Architecture: source amd64
Version: 3.1.3-1
Distribution: unstable
Urgency: low
Maintainer: Cristian Greco crist...@debian.org
Changed-By: Cristian Greco crist...@debian.org
Description: 
 qbittorrent - bittorrent client based on libtorrent-rasterbar with a Qt4 GUI
 qbittorrent-dbg - debug symbols for qbittorrent and qbittorrent-nox
 qbittorrent-nox - bittorrent client based on libtorrent-rasterbar (without X 
suppor
Changes: 
 qbittorrent (3.1.3-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 9e16646738e6ba40a51249944c242a9ff5bb44b9 2095 qbittorrent_3.1.3-1.dsc
 bb05570889543d309150ab98a5304bfcdbe7148b 2218480 qbittorrent_3.1.3.orig.tar.xz
 4334879b5a5455c177f2a87cf880cabac9a6fbee 15508 
qbittorrent_3.1.3-1.debian.tar.gz
 06bbb547121f7591ae5056c8793c6c4c962004af 2417064 qbittorrent_3.1.3-1_amd64.deb
 2a070d251c39ebabcac55019987b695d604556a8 1765260 
qbittorrent-nox_3.1.3-1_amd64.deb
 68bb42ba0f78507ae1c923b0676d50f8a6d508d5 11537816 
qbittorrent-dbg_3.1.3-1_amd64.deb
Checksums-Sha256: 
 3e4ad004ef91f8e4b436d01bd1cbef5574d00ee8b3a9453ccf4ddce811d80d15 2095 
qbittorrent_3.1.3-1.dsc
 9c6b3ea5d67169f3ca2371c5fb5c670efd2de36202d9967f5ec3482631a2a39a 2218480 
qbittorrent_3.1.3.orig.tar.xz
 89a2848eccf3e18d25c9314c124054765cebd23fe3055d7e785029e26e50e781 15508 
qbittorrent_3.1.3-1.debian.tar.gz
 b5f4c39207e6e5792ce830c228365a69f556e4b60cd1cdb1565397a92e7bf683 2417064 
qbittorrent_3.1.3-1_amd64.deb
 0ddf9a206a500187989b025e2eb620a613ee6583548a48c66f3d4b215abe4458 1765260 
qbittorrent-nox_3.1.3-1_amd64.deb
 21b038a718997b24a2e9bb2b59246920aa02a299507ff91c6a8714a31cdaab4a 11537816 
qbittorrent-dbg_3.1.3-1_amd64.deb
Files: 
 213589bb7cef8a10913fa9cd576040bf 2095 net optional qbittorrent_3.1.3-1.dsc
 79cf01a9d6f27cfe06977c762b1506cc 2218480 net optional 
qbittorrent_3.1.3.orig.tar.xz
 ae2ca893ece5c7b823e078abafa9ea50 15508 net optional 
qbittorrent_3.1.3-1.debian.tar.gz
 75be6340aecb2e1bd6bb23a02fc47783 2417064 net optional 
qbittorrent_3.1.3-1_amd64.deb
 09fdc2f8133021c13b00552a4ea46983 1765260 net optional 
qbittorrent-nox_3.1.3-1_amd64.deb
 60fec6c0dc5ea418d27117ce88501716 11537816 debug extra 
qbittorrent-dbg_3.1.3-1_amd64.deb

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

iQIcBAEBCAAGBQJSmflEAAoJEID329zPTTLkBdEP/3e7lFuEwihhYidFIPAjp1W4
Ejrgjn0YHnZb3IvLkl+RErWyutQJ9CYrZq4REiMw60BYoduuFdRol0JZLw148dsJ
GWzfc7ZSGeKQA0pRfBbOYIp4WoOgurU9FGRv4j9Hs+9zFGmkjLueuslsB1MXIquA
+ZB15s27A2Wh+3scWtSrdiIAB2+xOlW01qWuUipi1Cf7O3cfR5OQz09ITFGgaNBp
SH4aZVx4n7wLdhIZE6p2+CagZVdsK/sR1PB7h/FoDCqC92dPiW5RFelpuU0qRI3r
286o2RYg5+XVC98De9oI/Zt8S/w1lEM6HKHyFO3zGaPd31JMIvzUHN/QrOnthNM8
yRazkYnRWjn3RZGu/G0mMzdzG3KqExUMN1JCWRDuAJqEWzXft/XLr+KSxtKkkRVy
q4jk2T9xkSaQYZBpcpFM5TisI09BedAJxjfY8FwtqygUt40wF4YX4Yyp4ITYxldU
iAj+m43nERew41Mu+biN9I5g2UTrfYYoN0KoS6NDGns4tAkqqATRGsjPDdZOba32
HknWBUahV4t6jNUC3Vf6qEQ0OV4hzmUUrql9h2OLb09n/WpTShQJ19CNadvIrvgx
93Unx7fO7CQ4DEy1AngQN0jWGuh31w62hvAA4vDjVd7IxsJ+k3XOxEUkZZGRmYVX
1tAfyeRwizxJfPK+ejV8
=FvBf
-END PGP 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/e1vms02-00066h...@franck.debian.org



Accepted php-horde-text-filter 2.2.0-1 (source all)

2013-11-30 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 20:47:16 +0100
Source: php-horde-text-filter
Binary: php-horde-text-filter
Architecture: source all
Version: 2.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-text-filter - ${phppear:summary}
Closes: 705317 706151 730117
Changes: 
 php-horde-text-filter (2.2.0-1) unstable; urgency=low
 .
   * New upstream version 2.2.0
 - JsMin text filter is now optional (Closes: #705317, #706151, #730117)
Checksums-Sha1: 
 bd3862bbec6ed9ec77ff6c8683abf8a2ecea7199 1449 php-horde-text-filter_2.2.0-1.dsc
 8be713ad4461d1ce8c73a6dc4b1c56cb847678d1 52624 
php-horde-text-filter_2.2.0.orig.tar.gz
 f7ca8a2c1235373e581474fdf94bb00023f5bbf2 2806 
php-horde-text-filter_2.2.0-1.debian.tar.gz
 86e58619a9d497cc5ac0f9dfbdd909c59f291795 64002 
php-horde-text-filter_2.2.0-1_all.deb
Checksums-Sha256: 
 202e6f5a7995caafc294a5cd7ff4a6cdb37c609b39b12a0f291cf69066dbfeb8 1449 
php-horde-text-filter_2.2.0-1.dsc
 ef62927b6d964bdaffe887c38ef365d6e0f1f3bee130a8f942e6d4c23f07361d 52624 
php-horde-text-filter_2.2.0.orig.tar.gz
 71fd9342203ccd36c400b7bd419fe61998124ec644f8a1542b2a4ac98f6d17c3 2806 
php-horde-text-filter_2.2.0-1.debian.tar.gz
 ce51cf2f6513aee64a3f529fe4b799d6aec7619da69e6bb165fda3b11eba7dd0 64002 
php-horde-text-filter_2.2.0-1_all.deb
Files: 
 197f867974b9828f2dd24cdbb8b084c9 1449 php extra 
php-horde-text-filter_2.2.0-1.dsc
 e5908f50a866890b4ed457f85024dded 52624 php extra 
php-horde-text-filter_2.2.0.orig.tar.gz
 58f394a862fc2212765ec71c138d6dbf 2806 php extra 
php-horde-text-filter_2.2.0-1.debian.tar.gz
 27895bd7e140775d4de6b644ab454eac 64002 php extra 
php-horde-text-filter_2.2.0-1_all.deb

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

iEYEARECAAYFAlKaQQYACgkQOW2jYf5fHX9d1gCffSF0ApVmng1s3ipsPM7Dm7we
mrEAoJjG6kfW+t4fOFlKp16JvOElWhuv
=SCls
-END PGP 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/e1vmrzl-0005zi...@franck.debian.org



Accepted scanbuttond 0.2.3.cvs20090713-16 (source amd64)

2013-11-30 Thread Milan Zamazal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 21:11:22 +0100
Source: scanbuttond
Binary: scanbuttond
Architecture: source amd64
Version: 0.2.3.cvs20090713-16
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Milan Zamazal p...@debian.org
Description: 
 scanbuttond - Scanner button daemon
Changes: 
 scanbuttond (0.2.3.cvs20090713-16) unstable; urgency=low
 .
   * Orphaned.
Checksums-Sha1: 
 eea884f143322f39c56fb66ffc2d6d1350f90705 1183 
scanbuttond_0.2.3.cvs20090713-16.dsc
 2a5cd85b30ef05c1de1f196b7c9689a186400881 11567 
scanbuttond_0.2.3.cvs20090713-16.debian.tar.gz
 b9d836ff237ca6220a290c4d57099e61c900a267 38092 
scanbuttond_0.2.3.cvs20090713-16_amd64.deb
Checksums-Sha256: 
 da2539922db7489b04662a1b169c042e0df954d3e54df3b463fd3446965eb163 1183 
scanbuttond_0.2.3.cvs20090713-16.dsc
 9a61f4b32c54c198a9e1900efb23edd428c47a84ef8971ac50cc8d5d20b1d9da 11567 
scanbuttond_0.2.3.cvs20090713-16.debian.tar.gz
 300f1053d63a566b7de2b0b4ed2f5142eb88ee048b3e6ac8546a93cd26674328 38092 
scanbuttond_0.2.3.cvs20090713-16_amd64.deb
Files: 
 848f06f43e58781e5dd9d439fb7dacdc 1183 misc extra 
scanbuttond_0.2.3.cvs20090713-16.dsc
 756bee7be0f2c9005b9bd8d594734394 11567 misc extra 
scanbuttond_0.2.3.cvs20090713-16.debian.tar.gz
 45023815f196cfcac7bea2e325ddcf54 38092 misc extra 
scanbuttond_0.2.3.cvs20090713-16_amd64.deb

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

iEYEARECAAYFAlKaR0wACgkQkSkk/j3Cm0FZXwCfVNtPorjkQdykJySrBG3BWXkf
PZEAnRrd4z3spAYVhztb9SJVXPNziOXZ
=gc8s
-END PGP 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/e1vms0d-0006mc...@franck.debian.org



Accepted wmii 3.10~20120413+hg2813-4 (source i386)

2013-11-30 Thread Andrew Shadura
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 20:55:07 +0100
Source: wmii
Binary: wmii
Architecture: source i386
Version: 3.10~20120413+hg2813-4
Distribution: unstable
Urgency: low
Maintainer: Andrew Shadura andre...@debian.org
Changed-By: Andrew Shadura andre...@debian.org
Description: 
 wmii   - lightweight tabbed and tiled X11 window manager, version 3
Changes: 
 wmii (3.10~20120413+hg2813-4) unstable; urgency=low
 .
   * Install libwmii_hack.so under a multiarchified private directory.
   * Link properly against libixp.
Checksums-Sha1: 
 9d4f0103126b6f80ab045afdc4ab981be6ecf194 2022 wmii_3.10~20120413+hg2813-4.dsc
 9e499d5e64eb01181b79812da105cb4fdcb7473c 9692 
wmii_3.10~20120413+hg2813-4.debian.tar.gz
 0f6e2a507b6fef68bb993227082b4fbf00cff922 368194 
wmii_3.10~20120413+hg2813-4_i386.deb
Checksums-Sha256: 
 4847fa1e7a0bef01d8385f36f11cc1d334e5c47505491d06fe029e6b6b950666 2022 
wmii_3.10~20120413+hg2813-4.dsc
 c8d853e2dbcd7e195012f8ad493a3793eee552a82d46c27df256cef2c6e244b5 9692 
wmii_3.10~20120413+hg2813-4.debian.tar.gz
 82c65a77f2afc656d5875c1d68b1b6547df0215dcecbf7cb324c5aaee65d29ba 368194 
wmii_3.10~20120413+hg2813-4_i386.deb
Files: 
 6d1f81fbb64cb4a8a73c77fed40dd72c 2022 x11 optional 
wmii_3.10~20120413+hg2813-4.dsc
 f20724e4686159a26adede1659723baf 9692 x11 optional 
wmii_3.10~20120413+hg2813-4.debian.tar.gz
 657414b6288c7564bd74cff68c0850aa 368194 x11 optional 
wmii_3.10~20120413+hg2813-4_i386.deb

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

iQIcBAEBCAAGBQJSmkS1AAoJEG6k0jEaLSaNZDwP/RhjS5lSwu23TJ5TiFog+fc9
T9g4EcshujK0J2D0xwgc7K1EQ0hoNwmgyRKAyjOF5h7V4OJ+XbhG+bQWRCSZP7GY
RANfsk0zI18PcvoH2Cx2hzQciMgbqegIRKWcG+DjOBGy/okSTo2rhQr1gN138DZO
kitKhjlQhJCrHIX1yA0HF9vSeEH7cN8es5suQNyi2SxbrJH6c3I5bhaTjiTelnKU
n2/DcStaFsGCaSjNu2pJVdVMnMwX9/ltDIKv/VfVGIFOEIYuhHtOsNBmm+C+6Dy7
7gN5FpVHQSJLqachE/oSiVaaaFqUuZ/rA5+kZzdg/xBJPk7AIdf4xoadM43bqCH8
0HHyBdUgrBCnB/lnlbOQx5fPDazdtmz9LM6ChJnK4hQL6idYoWRZYrB879rgc1dx
SSB23gskC+wFNDXe0ubck2/Exa1kEAb2nqMGU8wHb44gR8saqEElMqk0EUrNgRfX
0Hu4Iholw8GataLWtkGsIiYgcqc4GZhCtD9RVFawyOZK+x21nifPPSLYvEre5PSR
TEOksd8gYRM99Ii/zT5dRmrw0S0Xwv+a3Mf9S7ENYRBGsByIjZNq6OLhNPE14CQv
6pgW/oLJvH9qLfoSmANyKoWSASrrDlH6HnWuXCwi8l8Tl3s05BNf2i/PWcgVQ2yb
UtubRpvnsPUUyRKVV3DD
=fmhS
-END PGP 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/e1vms0m-0006vt...@franck.debian.org



Accepted xprintidle 0.2-9 (source amd64)

2013-11-30 Thread Milan Zamazal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Nov 2013 21:03:33 +0100
Source: xprintidle
Binary: xprintidle
Architecture: source amd64
Version: 0.2-9
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Milan Zamazal p...@debian.org
Description: 
 xprintidle - Small utility that prints user's idle time in X
Changes: 
 xprintidle (0.2-9) unstable; urgency=low
 .
   * Orphaned.
Checksums-Sha1: 
 08c2f625530a0453dda56a27a88175704ed95264 1151 xprintidle_0.2-9.dsc
 9eafca17bce52c8253e72bcd03e17b98e975a05a 4197 xprintidle_0.2-9.debian.tar.gz
 dafc3d124c254740604e0d9664c43f8f784f6d82 6306 xprintidle_0.2-9_amd64.deb
Checksums-Sha256: 
 ab5ac3e71441b1e024323f0c20ac68bd3b5c418f4e5da1695a8646f946fa5918 1151 
xprintidle_0.2-9.dsc
 a11ad7d2f8875f2d704798a4a96e9bf14718849faf873d10c42acc9cd29aefbe 4197 
xprintidle_0.2-9.debian.tar.gz
 ff61258dc994d1e62ab13314f0c462b18a6d65fc3a91add9d95314954ef7c40b 6306 
xprintidle_0.2-9_amd64.deb
Files: 
 0be8743d2b32e81b8e68cb33971919d6 1151 x11 optional xprintidle_0.2-9.dsc
 6b910c0a060509748a9ebf19a642b1ae 4197 x11 optional 
xprintidle_0.2-9.debian.tar.gz
 8fef015a3a198275dd0d74a4837fa01b 6306 x11 optional xprintidle_0.2-9_amd64.deb

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

iEYEARECAAYFAlKaRRQACgkQkSkk/j3Cm0FG+ACfRNgVV6NypiRH/GXLZhnvIwMe
ROkAnA3hSf9KILJjL1R/nxU6y6N/snDW
=vhhb
-END PGP 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/e1vms0s-0006z3...@franck.debian.org



Accepted libaunit 1.03-8 (source amd64)

2013-11-30 Thread Nicolas Boulenguez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Nov 2013 22:30:03 +0100
Source: libaunit
Binary: libaunit2-dev libaunit-dbg libaunit3
Architecture: source amd64
Version: 1.03-8
Distribution: unstable
Urgency: low
Maintainer: Nicolas Boulenguez nico...@debian.org
Changed-By: Nicolas Boulenguez nico...@debian.org
Description: 
 libaunit-dbg - AUnit, a unit testing framework for Ada: debug symbols
 libaunit2-dev - AUnit, a unit testing framework for Ada: development
 libaunit3  - AUnit, a unit testing framework for Ada: shared library
Closes: 673752
Changes: 
 libaunit (1.03-8) unstable; urgency=low
 .
   * Adopting the package. Closes: #673752.
   * Switch to debhelper 9, dpkg-dev and dh-ada-library helpers.
   * Build-Depends: gnat in addition to gnat-4.6 to ensure default compiler.
   * Standards-Version: 3.9.5. Vcs-*: correct field names.
   * Stop depending on inexistant ada-compiler virtual package.
   * Mark lib and -dev packages as Multiarch: same.
   * copyright: update, machine-readable format 1.0.
   * Move runtime tests to debian/tests. XS-Testsuite field accordingly.
   * rules: inherit hardening flags. Do not compress examples. Implement clean.
   * source.lintian overrides: -lib does Depend on -dbg.
   * Empty but informative watch file.
Checksums-Sha1: 
 bfba22c6e334658a14c5e1db80a6da84319d6652 1993 libaunit_1.03-8.dsc
 02ba038ab4e7e6df8d1a663192ce3fb4c4d5bc7f 5909 libaunit_1.03-8.debian.tar.gz
 6753fabee9ca14488f09e2b77a00fc94a6e5245d 97570 libaunit2-dev_1.03-8_amd64.deb
 478a153c64c2b959b160f828e81a991650f486b3 51640 libaunit-dbg_1.03-8_amd64.deb
 335b9b084c74b88f55c8d8e80a92b27b2981aa0b 26746 libaunit3_1.03-8_amd64.deb
Checksums-Sha256: 
 9857317d9482dac50213dce0f78994cb9e2e81b567e71a1e884329618d8a38bb 1993 
libaunit_1.03-8.dsc
 025712c9fa8f00be7f69e442da2bd82fd3b1c46d6e7ebce9fb741b5f1d0258d6 5909 
libaunit_1.03-8.debian.tar.gz
 84e44d17dbc563101f548bc70d4d72e15b19e88fa7fcd5e975a3d44ff7fada2b 97570 
libaunit2-dev_1.03-8_amd64.deb
 33b29c05d37f637a3025c330d459bc8bb6c59c9f57d487fc645298c5c03a769b 51640 
libaunit-dbg_1.03-8_amd64.deb
 d6a948504f6a679a96e768c1386503a025fbf038da4d03de9e190397c3f44793 26746 
libaunit3_1.03-8_amd64.deb
Files: 
 340a0d509c6f86addb9350e2f0440eba 1993 libdevel extra libaunit_1.03-8.dsc
 2e04f7b004c506907157bfab14b9a93b 5909 libdevel extra 
libaunit_1.03-8.debian.tar.gz
 e385d7eeb5dcc3736db86a19677e8db0 97570 libdevel extra 
libaunit2-dev_1.03-8_amd64.deb
 23e1035c584e2ecb80f67f5fd1f2edff 51640 debug extra 
libaunit-dbg_1.03-8_amd64.deb
 baf51bbae9181831e93f195fdadde0c0 26746 libs extra libaunit3_1.03-8_amd64.deb

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

iQIcBAEBCAAGBQJSmmADAAoJELUqnPRJDfyNorIP/1n9LNwNIKyWTxetIwVcwaE7
DEzR1YnaeEo6JQZzMfcD5cgAoAUxnr38fwSALTFbs2mgxVEljTtiG+QeIt0+E8d4
V3XuTVfeAWJmdvTm8j6S5mxoqPyLz6YF1WpHfrHI9ymM4tkjIHTOUiGdEchQXA0Y
SQdnZdyuZT8sV2Tcj4GQwncevYMAXp3qqi2bpLYA6qbx+AmVIC7YoROl1wViYAwi
d8qIaOti8Oy67T5vfvP5ogfVkTXmM/qlyIQ+AOqKQU8yyzu+FtAn8SnLzE/yalEz
O/8mL5Z+oSr5e3JArEV5jTCf4eZYibSVsMg/qcfES+Xzok1QJ1yNmFNSMiuURHI7
bMSets6rZjUjA8tDbGxy+hw9B4dJFoWnW/CxALst1UuRAnR14sK7vuxjGEl2DfN3
Ssh5DpQNMGpP4nxHpIrluZrmdigbkaWhsKwW7FVTVTWviF0r1VRAI0Jpybh1u3IS
JH8ki5B+CLzJGcoUNMtibM8Aufo22xMHTtbX/Ud8QANr/XmMQXh+OVujLABDa+3W
ZsMePSwdCFzVTqQtHlxOydyRMDIOS26ARrQowpcd4/RkyeeYEvNSoOqc9+YXQmOG
EvB5L4MZCx1AStY3n4ZS6SP1r4t5/koW7y/uSDmbtF/nkbhSubl4cETrnVu9Cjuj
Lo/yFowrMKL0FphYCiq2
=lVJh
-END PGP 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/e1vmsdo-0005le...@franck.debian.org



  1   2   >