Bug#678100: ITP: salome-{kernel,gui,med,geom,paravis,..} -- integration platform for numerical simulation

2012-06-19 Thread Julien Cristau
Package: wnpp
Severity: wishlist
Owner: Julien Cristau julien.cris...@logilab.fr

* Package name: salome-{kernel,gui,med,geom,paravis,..}
  Version : 6.5.0
  Upstream Author : CEA, EDF RD, Open CASCADE
* URL : http://www.salome-platform.org/
* License : mostly LGPL
  Programming Lang: C++, Python
  Description : integration platform for numerical simulation

 Salomé is a pre- and post-processor for numerical simulations.  It can
 import CAD files in IGES and STEP formats, facilitates component
 integration in heterogeneous systems, and has a user-friendly GUI as
 well as a Python console with all of the platform functionality.

An earlier version used to be in sid as the 'salome' source package, but
was removed early this year.  I'm planning on reintroducing it in
smaller pieces in the hope it'll be more manageable.

Cheers,
Julien
-- 
Julien Cristau  julien.cris...@logilab.fr
Logilab http://www.logilab.fr/
Informatique scientifique  gestion de connaissances



--
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/20120619082917.ga16...@crater2.logilab.fr



Re: Malloc and security

2012-06-19 Thread Adam Borowski
On Mon, Jun 18, 2012 at 09:38:15PM +0100, Ben Hutchings wrote:
 On Mon, Jun 18, 2012 at 09:25:51PM +0100, Jamie White wrote:
  Hiya
  
  Just a quick question, which malloc, is there anyway that this
  function (used in C) could allocate memory into already allocated
  memory, such as the stack - or code space!
  
 Assuming that the program uses memory correctly, no.  But if the
 program has a bug that causes it to write to unallocated memory, it
 could corrupt the memory allocator's state so that malloc later
 returns memory that has already been allocated.

valgrind is a wonderful tool for debugging this kind of errors.

-- 
I was born an ugly, dumb and work-loving child, then an evil midwife
replaced me in the crib.


signature.asc
Description: Digital signature


Re: Announce: script to automatically restart services after update of dependencies

2012-06-19 Thread Goswin von Brederlow
Tomas Pospisek t...@sourcepole.ch writes:

 On Mon, 18 Jun 2012 14:10:46 +0100, Ben Hutchings b...@decadent.org.uk
 wrote:
 On Mon, 2012-06-18 at 20:40 +0800, Paul Wise wrote:
 On Mon, Jun 18, 2012 at 5:40 PM, Tomas Pospisek wrote:
 
  I want to announce restart-services here [1][2]. It's a script
  that tries to restart all services that have had their
  dependency packages updated. This is primarily useful when
  security-relevant libraries get security releases.
 
  It's using checkrestart from the debian-goodies package to do
  most of its work.
 
  Together with the unattended-upgrades package it is saving me
  a lot of system maintenance time, thus I am announcing it here
  in the hope that it will save others a lot of time as well.
 
 Sounds useful, maybe put it in the debian-goodies package?

 I've proposed this to Javier [3] and it's been quite well received :-)

 What, yet another feature reserved for those in the know?  Surely we
 should be doing this by default.

 I agree. Could you suggest a way forward? Currently I'm aiming for
 debian-goodies, however maybe unattended-upgrades would be a better fit.
 However I think really it should go into apt-level inftrastructure.

 ?

I want to automatically restart services so that / and /usr can be
remounted read-only again. But I don't want unattended upgrades. So for
me debian-goddies is a better fit. Easy enough to add it then to the apt
config.

 Also, please blacklist gdm3 and dbus since restarting them currently
 kills GNOME sessions (and probably other user desktop sessions started
 by gdm3).

 Noted. I'll discuss this with Javier.

 PS: Sorry Ben for also replying in private to you. I'll have to get used
 to mailing lists (and my web mail client) again :-o
  
 [3] http://bugs.debian.org/676509

MfG
Goswin


-- 
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/87r4tbd2ha.fsf@frosties.localnet



Re: Malloc and security

2012-06-19 Thread Goswin von Brederlow
Ben Hutchings b...@decadent.org.uk writes:

 On Mon, Jun 18, 2012 at 09:25:51PM +0100, Jamie White wrote:
 Hiya
 
 Just a quick question, which malloc, is there anyway that this
 function (used in C) could allocate memory into already allocated
 memory, such as the stack - or code space!
  
 Assuming that the program uses memory correctly, no.  But if the
 program has a bug that causes it to write to unallocated memory, it
 could corrupt the memory allocator's state so that malloc later
 returns memory that has already been allocated.

Actually I believe this is undefined in C. Malloc may verry well oveflow
the heap region and run into the stack or code going by the C standard.

But eglibc malloc uses sbrk() and mmap() to get memory from the kernel
and those functions will not return space already allocated by the stack
or code. That is probably true for every libc on every modern Unix system.

MfG
Goswin


-- 
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/87mx3zd24k.fsf@frosties.localnet



Re: Summary: Moving /tmp to tmpfs makes it useless

2012-06-19 Thread Goswin von Brederlow
Wouter Verhelst wou...@debian.org writes:

 On Wed, Jun 13, 2012 at 04:14:52AM +0300, Serge wrote:
 User cannot break the system filling /tmp on disk. But he can do that
 if he fills /tmp on tmpfs. So /tmp on tmpfs adds one more point of
 failure for servers.

 No, that's not true. The real danger in filling up /tmp is not that
 other processes can't write temporary files anymore (causing a minority
 of processes to hang or die; those who just happen to need temporary
 storage at that point in time), but that no process can write any file
 anymore (causing a significant majority of processes to hang or die).

So tmpfs for /tmp increases the chance of accidentally filling up /tmp
and causing a moderate failure but prevents malicious filling up of /tmp
to cause wide spread failure. :)

MfG
Goswin


-- 
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/87ipend1nb.fsf@frosties.localnet



On the (ab)use of the Urgency field

2012-06-19 Thread Adam D. Barratt

Hi,

I realise everyone's waiting for news of the freeze (we're working on 
it...) but please bear in mind that this is not an appropriate use of 
the Urgency field:


  * Urgency high to beat the freeze.

As mentioned in the last mail we sent to d-d-a (and several at various 
points before that) if you have serious concerns that important updates 
to your package won't be included in the release, the correct approach 
is to talk to us, not try and work around us.  The net effect of the 
above is more likely to be that the urgency will be overriden on the 
britney side as if the package had been uploaded with a lower urgency.


Regards,

Adam


--
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/381175f71668cfaf39ca8231141c2...@mail.adsl.funky-badger.org



Re: Announce: script to automatically restart services after update of dependencies

2012-06-19 Thread Tomas Pospisek
On Tue, 19 Jun 2012 12:23:45 +0200, Goswin von Brederlow wrote:
 Tomas Pospisek writes:
 
 On Mon, 18 Jun 2012 14:10:46 +0100, Ben Hutchings  wrote:
 On Mon, 2012-06-18 at 20:40 +0800, Paul Wise wrote:
 On Mon, Jun 18, 2012 at 5:40 PM, Tomas Pospisek wrote:
 
  I want to announce restart-services here [1][2]. It's a script
  that tries to restart all services that have had their
  dependency packages updated. This is primarily useful when
  security-relevant libraries get security releases.
 
  It's using checkrestart from the debian-goodies package to do
  most of its work.
 
  Together with the unattended-upgrades package it is saving me
  a lot of system maintenance time, thus I am announcing it here
  in the hope that it will save others a lot of time as well.
 
 Sounds useful, maybe put it in the debian-goodies package?

 I've proposed this to Javier [3] and it's been quite well received :-)

 What, yet another feature reserved for those in the know?  Surely we
 should be doing this by default.

 I agree. Could you suggest a way forward? Currently I'm aiming for
 debian-goodies, however maybe unattended-upgrades would be a better
fit.
 However I think really it should go into apt-level inftrastructure.
 
 I want to automatically restart services so that / and /usr can be
 remounted read-only again. But I don't want unattended upgrades. So for
 me debian-goddies is a better fit. Easy enough to add it then to the
 apt config.


Point taken.

However Ben argued, if I interpret him correctly, that services that
depend
on something (a library), should be restarted by default if that
dependency gets
updated and the user should not be required to install an obscure
package to
have that sane default behavior.

This implies that an apt-get install library needs to trigger that
restart.
Which means that apt-get needs to depend on restart-services. So either
restart-services and checkrestart should go into the apt package, or apt
needs
to depend on/recommend debian-goodies, which would currently pull in
python,
perl, curl, dialog and their respective dependencies.

The later may be a technically working solution, but from a conceptual and
a
KISS point of view doesn't make sense to me.

Is my conclusion correct so far?

So if we want a clean solution, then checkrestart/restart-services would
need
to move into apt and get rid of the non-essential dependencies (get
rewritten in
shell or C).

?

*t

 [3] http://bugs.debian.org/676509


-- 
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/dd25736bb03f21cb838910bbfd35c...@mail.sp-metanet



Re: On the (ab)use of the Urgency field

2012-06-19 Thread marcel partap
[
 net effect of the above is more likely to be that the urgency will be
 overriden on the britney side
... ?hmm? debian has a britney side? long blondish hair, well curved?
niccce - *niie*--- :D
*cough* freezes suck^^^ ]
#hacky day folks ;)


-- 
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/4fe06e5f.4070...@gmx.net



Re: Announce: script to automatically restart services after update of dependencies

2012-06-19 Thread Ben Hutchings
On Mon, 2012-06-18 at 23:47 +0200, Tomas Pospisek wrote:
 On Mon, 18 Jun 2012 14:10:46 +0100, Ben Hutchings b...@decadent.org.uk
 wrote:
  On Mon, 2012-06-18 at 20:40 +0800, Paul Wise wrote:
  On Mon, Jun 18, 2012 at 5:40 PM, Tomas Pospisek wrote:
  
   I want to announce restart-services here [1][2]. It's a script
   that tries to restart all services that have had their
   dependency packages updated. This is primarily useful when
   security-relevant libraries get security releases.
  
   It's using checkrestart from the debian-goodies package to do
   most of its work.
  
   Together with the unattended-upgrades package it is saving me
   a lot of system maintenance time, thus I am announcing it here
   in the hope that it will save others a lot of time as well.
  
  Sounds useful, maybe put it in the debian-goodies package?
 
 I suggested that to Javier [3] and I think it was quite well received :-)
 
  What, yet another feature reserved for those in the know?  Surely we
  should be doing this by default.
 
 I agree. Can you recommend any way forward? Currently I'm aiming for
 debian-goodies as Paul proposes. However there's also the
 unattended-upgrades package, that'd maybe be an even better fit.

 However I think this really belongs somewhere on the level of apt?
[...]

I don't think this belongs in unattended-upgrades; whether you want
services automatically restarted is orthogonal to whether you perform
upgrades interactively or not.

What I think would be most useful would be an APT hook (or built-in
feature) enabled in a default installation that does:

1. Check for running processes that have the old libraries mapped
2. Depending on configuration, restart services (with the blacklist
   as suggested):
   - if set to always restart, then do
   - if set to never restart, then don't
   - if set to ask, then ask (through debconf) with a default of no
   (I think the default would be 'ask')
3. If not everything was restarted (e.g. gdm3 or non-service process),
   send mail to root saying what needs to be restarted later

(How do you map from pid to service name when using sysvinit?)

Also, the set of libraries to check could be restricted to those for
which the upgrade had urgency=high.

Ben.

-- 
Ben Hutchings
If more than one person is responsible for a bug, no one is at fault.


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


Re: Announce: script to automatically restart services after update of dependencies

2012-06-19 Thread Eugene V. Lyubimkin
Hello,

On 2012-06-19 13:59, Tomas Pospisek wrote:
 This implies that an apt-get install library needs to trigger that
 restart.
 Which means that apt-get needs to depend on restart-services. So either
 restart-services and checkrestart should go into the apt package, or apt
 needs
 to depend on/recommend debian-goodies, which would currently pull in
 python,
 perl, curl, dialog and their respective dependencies.
 
 The later may be a technically working solution, but from a conceptual and
 a
 KISS point of view doesn't make sense to me.
 
 Is my conclusion correct so far?
 
 So if we want a clean solution, then checkrestart/restart-services would
 need
 to move into apt and get rid of the non-essential dependencies (get
 rewritten in
 shell or C).

I believe this is a wrong layer for proposed functionality -- apt-get
(libapt) is not the only high-level package manager for Debian.

If I were you, I'd look into dpkg file triggers instead. Triggers will
by the way automatically solve the problem that you don't restart
a service 5 times if 5 libraries were upgraded.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++ GNU/Linux developer, Debian Developer


-- 
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/20120619122924.GA20339@r500-debian



Re: new sections: education metapackages

2012-06-19 Thread Andreas Tille
On Tue, Jun 19, 2012 at 12:55:42PM +0200, Jonas Smedegaard wrote:
 On 12-06-19 at 08:48am, Andreas Tille wrote:
  
  I'm personally in favour of education because I assume that's where 
  users might seek first.  I have no idea whather I'm right with this 
  assumption.
  
  BTW, did I said that Debian Edu packages need some more changes than 
  just changing the section?
 
 I would say the opposite.  Else metapackages would really mean 
 metapackages of miscelanous topics not covered elsewhere which I find 
 is not its purpose.
 
 If metapackages is nonsense specifically for educational stuff, then 
 I'd be happy to hear examples of when it is sensible.
 
 If, on the other hand, metapackages is generally considered nonsense 
 then I find it better to raise that discussion on debian-devel that by 
 discretely working against it.

Fair point.  My guess is that when the section was invented the Blends
metapackages were not in the focus of the people inventing this.  I'm
basing my guess on the fact that they did not CCed debian-blends@l.d.o
when deciding about this.  So my plan was not to discretely working
against the metapackages section but rather thinking that it is OK in
the sense that other types of metapackages were just in mind.

BTW, even if I'm not convinced about this specific section I would not
have severe problems to move all metapackages into this section (besides
changing debian-blends package quite short in time before freeze which
is probably not a good idea).  The rationale why I do not have a very
strong opinion about this is, that I do not regard the section concept
as very helpfull in the end and so I could live with any consistent
structure.  Actually one main reason for the Blends metapackages concept
is to overcome the restrictions of the section concept.

Kind regards

   Andreas.

-- 
http://fam-tille.de


-- 
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/20120619123823.ge22...@an3as.eu



Re: On the (ab)use of the Urgency field

2012-06-19 Thread Ian Jackson
Adam D. Barratt writes (On the (ab)use of the Urgency field):
 I realise everyone's waiting for news of the freeze (we're working on 
 it...) but please bear in mind that this is not an appropriate use of 
 the Urgency field:
 
* Urgency high to beat the freeze.
 
 As mentioned in the last mail we sent to d-d-a (and several at various 
 points before that) if you have serious concerns that important updates 
 to your package won't be included in the release, the correct approach 
 is to talk to us, not try and work around us.  The net effect of the 
 above is more likely to be that the urgency will be overriden on the 
 britney side as if the package had been uploaded with a lower urgency.

On previous occasions the release team have said that the freeze would
be applied with respect to the /upload/ date, rather than the
/migration/ date.  Ie, packages uploaded before the freeze might
migrate afterwards unhindered, provided the other usual criteria were
satisfied.

Is this still the case ?  If so then this kind of abuse of the Urgency
field is not just inappropriate but also pointless.

It would be nice if some of this kind of thing were documented in the
Developers' Reference or perhaps on the RM webpages.

Thanks,
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/20448.30413.427373.68...@chiark.greenend.org.uk



Re: Announce: script to automatically restart services after update of dependencies

2012-06-19 Thread Ben Hutchings
On Tue, 2012-06-19 at 15:29 +0300, Eugene V. Lyubimkin wrote:
 Hello,
 
 On 2012-06-19 13:59, Tomas Pospisek wrote:
  This implies that an apt-get install library needs to trigger that
  restart.
  Which means that apt-get needs to depend on restart-services. So either
  restart-services and checkrestart should go into the apt package, or apt
  needs
  to depend on/recommend debian-goodies, which would currently pull in
  python,
  perl, curl, dialog and their respective dependencies.
  
  The later may be a technically working solution, but from a conceptual and
  a
  KISS point of view doesn't make sense to me.
  
  Is my conclusion correct so far?
  
  So if we want a clean solution, then checkrestart/restart-services would
  need
  to move into apt and get rid of the non-essential dependencies (get
  rewritten in
  shell or C).
 
 I believe this is a wrong layer for proposed functionality -- apt-get
 (libapt) is not the only high-level package manager for Debian.

 If I were you, I'd look into dpkg file triggers instead. Triggers will
 by the way automatically solve the problem that you don't restart
 a service 5 times if 5 libraries were upgraded.

But we still need one trigger per service?  I don't think that's a good
idea.

Ben.

-- 
Ben Hutchings
If more than one person is responsible for a bug, no one is at fault.


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


Re: Announce: script to automatically restart services after update of dependencies

2012-06-19 Thread Eugene V. Lyubimkin
On 2012-06-19 14:01, Ben Hutchings wrote:
 On Tue, 2012-06-19 at 15:29 +0300, Eugene V. Lyubimkin wrote:
  Hello,
  
  On 2012-06-19 13:59, Tomas Pospisek wrote:
   This implies that an apt-get install library needs to trigger that
   restart.
   Which means that apt-get needs to depend on restart-services. So either
   restart-services and checkrestart should go into the apt package, or apt
   needs
   to depend on/recommend debian-goodies, which would currently pull in
   python,
   perl, curl, dialog and their respective dependencies.
   
   The later may be a technically working solution, but from a conceptual and
   a
   KISS point of view doesn't make sense to me.
   
   Is my conclusion correct so far?
   
   So if we want a clean solution, then checkrestart/restart-services would
   need
   to move into apt and get rid of the non-essential dependencies (get
   rewritten in
   shell or C).
  
  I believe this is a wrong layer for proposed functionality -- apt-get
  (libapt) is not the only high-level package manager for Debian.
 
  If I were you, I'd look into dpkg file triggers instead. Triggers will
  by the way automatically solve the problem that you don't restart
  a service 5 times if 5 libraries were upgraded.
 
 But we still need one trigger per service?  I don't think that's a good
 idea.

Not necessarily, I imagine there can be a package 'restart-services'
which would declare a trigger on all dynamic libraries and then on
trigger invocation it will checkrestart needed services.

That however indeed depends on some details of actual
restart-services utilities and trigger processing which I don't know,
so I'm just proposing that for evaluation.

CC'ing debian-dpkg@ to hear an opinion of dpkg folks.

Should that idea be not workable, I agree that using APT hooks might be
a good alternative to hardcoding anything to libapt (which I object to).

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++ GNU/Linux developer, Debian Developer


-- 
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/20120619131348.GB20339@r500-debian



Re: On the (ab)use of the Urgency field

2012-06-19 Thread Neil Williams
On Tue, 19 Jun 2012 14:19:43 +0200
marcel partap mpar...@gmx.net wrote:

 [
  net effect of the above is more likely to be that the urgency will be
  overriden on the britney side
 ... ?hmm? debian has a britney side? long blondish hair, well curved?
 niccce - *niie*--- :D
 *cough* freezes suck^^^ ]
 #hacky day folks ;)

This kind of behaviour is obnoxious, sexist and repulsive. An apology on
list is warranted and expected. If not, feel free not to bother with any
involvement with Debian in the future. Debian is a diverse group, all
of whom deserve your respect.

No matter how you identify yourself or how others perceive you: we
welcome you. We welcome contributions from everyone as long as they
interact constructively with our community.
http://www.debian.org/intro/diversity

Your comments above are destructive, not constructive.

http://wiki.debian.org/AntiHarassment

-- 


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



pgpzilNTARLPC.pgp
Description: PGP signature


Lintian warning: hardening-no-fortify-functions version numbering

2012-06-19 Thread José Luis Segura Lucas
Hi!

I'm intending to package a new software for Debian [1]. I just completed
most of the package work and have a lintian-error free package, but I
still have a warning that is driving me crazy.

I have read the output of lintian-info -t about
hardening-no-fortify-functions, and it helps a lot. The software uses
Cmake as build tool, and the hardening-wrapper solution solved some
lintian warnings, but not the latest one.

I have looked at the buld logs, and I can see that the CPPFLAGS
-D_FORTIFY_SOURCE=2 is included in all the compiler calls, but the
warning is still present.

What's the problem with this?

My another question is about the version numbering: the software is
still in development and they make a new minor version each week
(approximately). Sometimes I need to package something that is in their
repository but not still in a numbered version, so, I tried to use the
latest known version and add a ~TIMESTAMPgit... to the minor version
number, but debuild warns me about the version 0.1.0~2012..git-1 is
less than 0.1.0.

The latest thing is that I have seen several packages with ~TIMESTAMP
(screen, by example): they add a alpha-numeric string after the git
word... what does it mean? Where can I found some information about
packaging directly from VCS?

Best regard and thanks in advance

-- 
José Luis Segura Lucas




signature.asc
Description: OpenPGP digital signature


Re: Lintian warning: hardening-no-fortify-functions version numbering

2012-06-19 Thread Andrey Rahmatullin
On Tue, Jun 19, 2012 at 04:04:31PM +0200, José Luis Segura Lucas wrote:
 I have read the output of lintian-info -t about
 hardening-no-fortify-functions, and it helps a lot. The software uses
 Cmake as build tool, and the hardening-wrapper solution solved some
 lintian warnings, but not the latest one.
Why do you need hardening-wrapper? You should use flags set by
dpkg-buildflags.

 I have looked at the buld logs, and I can see that the CPPFLAGS
 -D_FORTIFY_SOURCE=2 is included in all the compiler calls, but the
 warning is still present.
 
 What's the problem with this?
You should read http://bugs.debian.org/673112 mentioned in the lintian tag
description and use hardening-check --verbose on binaries reported. If
only memcpy and memmove are printed by hardening-check, you should ignore
the warning.

 My another question is about the version numbering: the software is
 still in development and they make a new minor version each week
 (approximately). Sometimes I need to package something that is in their
 repository but not still in a numbered version, so, I tried to use the
 latest known version and add a ~TIMESTAMPgit... to the minor version
 number, but debuild warns me about the version 0.1.0~2012..git-1 is
 less than 0.1.0.
That's right, 0.1.0~2012..git-1 is less than 0.1.0. If you need
versions that are greater than 0.1.0, use + instead of ~.

 The latest thing is that I have seen several packages with ~TIMESTAMP
 (screen, by example): they add a alpha-numeric string after the git
 word... what does it mean?
git-describe(1)

 Where can I found some information about packaging directly from VCS?
file:///usr/share/doc/git-buildpackage/manual-html/gbp.import.html#GBP.IMPORT.UPSTREAM-GIT
(if you use git-buildpackage)

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Re: On the (ab)use of the Misogyny field

2012-06-19 Thread marcel partap
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256


Dear Neil, Dear debian-devel list members,
please accept my honest pardon for my infamous demeanor. It was meant
as light-hearted joke, a mind fart - when I was done writing the three
lines I almost ditched it, and obviously should have. After all, what
does the one or two giggles it might have caused weigh against the
affront inflicted on so many? Never again will I engage in activities
that are
 obnoxious, sexist and repulsive
with regard to any form of public communication related to the Debian
community - be it on- or offline!

 Debian is a diverse group, all of whom deserve your respect.
You are right, and that is why I truely love the project and endorse
it whenever the opportunity arises. My intentions to become part of
this powerful freedom force in the near future? Well, this may have
been one lame joke too many - yet I still have some hope that may not
be the case. Please except my sincere apology - especially the few
brave and valuable developers of female gender, and those easily
enraged - I meant no harm, and anyone offended is cordially invited to
a beer, soft drink or chocolate bar at the very next occasion. If that
does not go all the way, remaining debt will be repaid in code
contributions.

#Regards,
Marcel.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBCAAGBQJP4IlTAAoJEGXGsEqKOfvak9cQANGmNcdbTLC8BItjUDp5gpjZ
EJhunbYIlIEA2c/TzZqKFsJLhsEDbSCFJ3qrj8Z2caqyGjyRTTnoj5ziObmkPmoQ
cdqTfur5z5iRvktK7hkC/pSNbwUCShGPz7WZqz8hx7j8n6u/0rNL7jmnZ01BxsOP
F10CzGIBNWzFR9AgzEEBahLf4yf3BDF1FiGb69IwzmQq4EYGR6sZb/SNhP7Y0dcR
R2DOrUTXBuAA1SeuqD+t71//Krk96OKmkOxNAJMtuCcfJlKsBjGtnteWsVLmpX0Y
tnIKmjzbNayq0tl6i7X7L0Tu2fhJzxihr9why020Xb1O1VcWzPMUBwSOLgXAK+so
IsWTrkjujnV5Gpho2DQ846/xCek4tJCls3SvHyDpiwd7NhVBRaC3zh5+YFjSZAxf
CbNZtWj4hHqjfs86bTjYQi60KHKhgr2+U0fyHkyK7UTbUaUPUItotaAj7oD6x6Mo
KyNWFk6Ak6CA0s6Z0fEL2IQn7M24Z83vfXX7nblc+/eFlpA1exYTjsiQe9ldmCx1
Fy23yf4EKhc9l7e90wxuyvs7gi6JuxmtqJo2iFNdVs5QfJknoVOyvGlan3kPOGhb
l/RKmZJIY9IXPBO9EtjrztMFmv+E0x/75I2TseSesnzA2wqqut4rG8mLM19HkBjZ
ucXA6OkfuLz20oUnYpG5
=tZoL
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4fe0895d.6080...@gmx.net



Bug#678142: ITP: libiniparser -- stand-alone ini file parsing library

2012-06-19 Thread Michael Stapelberg
Package: wnpp
Severity: wishlist
Owner: Michael Stapelberg stapelb...@debian.org

* Package name: libiniparser
  Version : 3.1
  Upstream Author : Nicolas Devillard ndevi...@free.fr
* URL : http://ndevilla.free.fr/iniparser/
* License : MIT/X11
  Programming Lang: C
  Description : stand-alone ini file parsing library

iniparser is a free stand-alone ini file parsing library.
It is written in portable ANSI C and should compile anywhere.



-- 
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/20120619142023.30934.35182.report...@x200.zekjur.net



Build environment bug: 675125

2012-06-19 Thread Alastair McKinstry
Hi,

I've an interesting problem: bug #675125.
Its a grave bug against slang2, as it breaks jed, (and other things).
slang2-2.2.14-12+ (in sid) breaks jed for certain locales (C is broken,
*.UTF-8 look fine);
but slang2_2.2.14-10 (in testing) looks fine.

The trouble is, while downgrading to -10 fixes issues, _rebuilding_ -10
in sid results in a
broken libslang2 ; i.e. the problem is not the slang2 package, but the
build environment.
So far i've tested with ncurses, locale from testing but haven't found
the cause yet.

While i'm still investigating, _something_ in the sid environment is the
real culprit and
I can't assign a bug to it yet until I pin it down. Has anyone seen a
similar issue elsewhere,
or got a hint as to how to handle it? I want to make  sure we don't just
freeze on the current slang but ship the
broken environment.

best regards
Alastair

-- 
Alastair McKinstry  , alast...@sceal.ie , mckins...@debian.org
http://blog.sceal.ie

Anyone who believes exponential growth can go on forever in a finite world
is either a madman or an economist - Kenneth Boulter, Economist.



-- 
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/4fe08a9b.4090...@debian.org



Re: Lintian warning: hardening-no-fortify-functions version numbering

2012-06-19 Thread José Luis Segura Lucas
El 19/06/12 16:10, Andrey Rahmatullin escribió:
 Why do you need hardening-wrapper? You should use flags set by
 dpkg-buildflags.
Because that
(http://wiki.debian.org/Hardening#Notes_for_packages_using_CMake),
referred by lintian-info too. Using it I only need to define export
DEB_BUILD_HARDENING=1 on my debian/rules and it adds the CPPFLAGS to
CFLAGS and CXXFLAGS (Cmake ignores CPPFLAGS).
 You should read http://bugs.debian.org/673112 mentioned in the lintian tag
 description and use hardening-check --verbose on binaries reported. If
 only memcpy and memmove are printed by hardening-check, you should ignore
 the warning.
Done. I have emmove, memcpy and read... I will read this link to learn
more about removing this warning.
 That's right, 0.1.0~2012..git-1 is less than 0.1.0. If you need
 versions that are greater than 0.1.0, use + instead of ~.
Ok, thanks
 git-describe(1)

 file:///usr/share/doc/git-buildpackage/manual-html/gbp.import.html#GBP.IMPORT.UPSTREAM-GIT
 (if you use git-buildpackage)
I don't use git-buildpackage and git describe on their repository
returns a bit estrange string...

$ git describe --tags
v0.1.1-27-g55c0f4e

Thanks for your quick help :-)

-- 
José Luis Segura Lucas




signature.asc
Description: OpenPGP digital signature


Re: Lintian warning: hardening-no-fortify-functions version numbering

2012-06-19 Thread Andrey Rahmatullin
On Tue, Jun 19, 2012 at 04:42:33PM +0200, José Luis Segura Lucas wrote:
  Why do you need hardening-wrapper? You should use flags set by
  dpkg-buildflags.
 Because that
 (http://wiki.debian.org/Hardening#Notes_for_packages_using_CMake),
 referred by lintian-info too. Using it I only need to define export
 DEB_BUILD_HARDENING=1 on my debian/rules and it adds the CPPFLAGS to
 CFLAGS and CXXFLAGS (Cmake ignores CPPFLAGS).
I see several solutions there, and the hardening-wrapper one is in my
opinion the worst one: it adds a build dependency and it uses own set of
configuration variables, not compatible with dpkg-buildflags ones.

  file:///usr/share/doc/git-buildpackage/manual-html/gbp.import.html#GBP.IMPORT.UPSTREAM-GIT
  (if you use git-buildpackage)
 I don't use git-buildpackage 
Then I don't understand what do you mean by packaging directly from VCS.

 and git describe on their repository
 returns a bit estrange string...
 
 $ git describe --tags
 v0.1.1-27-g55c0f4e
I thought you've meant exactly the -27-g55c0f4e part.

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Re: Lintian warning: hardening-no-fortify-functions version numbering

2012-06-19 Thread José Luis Segura Lucas
El 19/06/12 16:56, Andrey Rahmatullin escribió:
 I see several solutions there, and the hardening-wrapper one is in my
 opinion the worst one: it adds a build dependency and it uses own set of
 configuration variables, not compatible with dpkg-buildflags ones.
Yes, it adds a build-dependency... but it still use dpkg-buildflags,
doesn't it?
 Then I don't understand what do you mean by packaging directly from VCS.
I mean to package the software directly from a VCS version, instead for
a tarball. Now, I'm getting the sources with git, generate a tarball
myself with the appropriate name, put it in the parent directory and
build the package. I think that it can be a way to avoid the manual
tarball generation. I'm reading about git-buildpackage, because it can help.

 I thought you've meant exactly the -27-g55c0f4e part.

The problem are the -, but I hope that when uploading to Debian they
have a freeze stable version :-D

-- 
José Luis Segura Lucas




signature.asc
Description: OpenPGP digital signature


Re: Lintian warning: hardening-no-fortify-functions version numbering

2012-06-19 Thread Andrey Rahmatullin
On Tue, Jun 19, 2012 at 05:04:46PM +0200, José Luis Segura Lucas wrote:
  I see several solutions there, and the hardening-wrapper one is in my
  opinion the worst one: it adds a build dependency and it uses own set of
  configuration variables, not compatible with dpkg-buildflags ones.
 Yes, it adds a build-dependency... but it still use dpkg-buildflags,
 doesn't it?
It uses dpkg-buildflags in addition to doing more or less the same in a
different way.

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Re: Lintian warning: hardening-no-fortify-functions version numbering

2012-06-19 Thread Antti-Juhani Kaijanaho
On Tue, Jun 19, 2012 at 04:04:31PM +0200, José Luis Segura Lucas wrote:
 repository but not still in a numbered version, so, I tried to use the
 latest known version and add a ~TIMESTAMPgit... to the minor version
 number, but debuild warns me about the version 0.1.0~2012..git-1 is
 less than 0.1.0.

Use A~B only if this version should come before A - that is, for example, if
you expect the next upstream release to be A.  In your case, use A+B so the
version comes after A in version order.

 The latest thing is that I have seen several packages with ~TIMESTAMP
 (screen, by example): they add a alpha-numeric string after the git
 word... what does it mean?

It's the beginning of the hash git uses to uniquely identify the version.
You can see the full hash in, for example, git log, at the beginning of each
patch:

commit 2ff04fd5a95f36497bc8e8c6e44d70c474384ec2
Author: Antti-Juhani Kaijanaho antti-juh...@kaijanaho.fi
Date:   Mon Jun 18 23:26:59 2012 +0300

Add install-sh

Signed-off-by: Antti-Juhani Kaijanaho antti-juh...@kaijanaho.fi

In this case, the hash is the long string after the word commit
on the first line, and I would use for example 2ff04 in the version number if I
packaged this version as a git snapshot.

 Where can I found some information about
 packaging directly from VCS?

git-buildpackage has excellent docs.  You don't have to use the tools but they
help.

-- 
Antti-Juhani Kaijanaho, Jyväskylä, Finland
http://antti-juhani.kaijanaho.fi/newblog/
http://www.flickr.com/photos/antti-juhani/



signature.asc
Description: Digital signature


Bug#678168: ITP: python-astropy -- Core functionality for performing astronomy and astrophysics with Python

2012-06-19 Thread Ole Streicher
Package: wnpp
Severity: wishlist
Owner: Ole Streicher deb...@liska.ath.cx


* Package name: python-astropy
  Version : 0.1
  Upstream Author : Erik Tollerud erik.tolle...@gmail.com
* URL : http://astropy.org
* License : BSD
  Programming Lang: Python, C
  Description : core functionality for performing astronomy and
astrophysics with Python.

The astropy package (alternatively known as the “core” package) contains
various classes, utilities, and a packaging framework intended to
provide commonly-used astronomy tools. It is expected to be extended by
a number of affilated packages that are intended to work with the core
package.

The current release is a developer preview.

Best

Ole


-- 
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/4fe0c604.2020...@liska.ath.cx



Re: Build environment bug: 675125

2012-06-19 Thread Bernd Zeimetz
Hi,


 I've an interesting problem: bug #675125.
 Its a grave bug against slang2, as it breaks jed, (and other things).
 slang2-2.2.14-12+ (in sid) breaks jed for certain locales (C is broken,
 *.UTF-8 look fine);
 but slang2_2.2.14-10 (in testing) looks fine.
 
 The trouble is, while downgrading to -10 fixes issues, _rebuilding_ -10
 in sid results in a
 broken libslang2 ; i.e. the problem is not the slang2 package, but the
 build environment.
 So far i've tested with ncurses, locale from testing but haven't found
 the cause yet.
 
 While i'm still investigating, _something_ in the sid environment is the
 real culprit and
 I can't assign a bug to it yet until I pin it down. Has anyone seen a
 similar issue elsewhere,
 or got a hint as to how to handle it? I want to make  sure we don't just
 freeze on the current slang but ship the
 broken environment.

Try gcc/g++ 4.6 instead of 4.7. Maybe check if S-Lang load path (wherever that
is stored) is initialized in a sane way. I had a similar issue where an integer
was 0 all the time - although not being initialized with something useful -
which changed with gcc 4.7, then it was just a random value :)


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F


-- 
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/4fe0e915.1090...@bzed.de



Re: Build environment bug: 675125

2012-06-19 Thread Andrew Shadura
Hello,

On Tue, 19 Jun 2012 23:03:17 +0200
Bernd Zeimetz be...@bzed.de wrote:

 Try gcc/g++ 4.6 instead of 4.7. Maybe check if S-Lang load
 path (wherever that is stored) is initialized in a sane way. I had a
 similar issue where an integer was 0 all the time - although not
 being initialized with something useful - which changed with gcc 4.7,
 then it was just a random value :)

By the way, it might be a good idea to fill .bss section with random
values intentionally for debug builds to detect non-properly-initialised
things more effectively :)

-- 
WBR, Andrew


signature.asc
Description: PGP signature


Re: Build environment bug: 675125

2012-06-19 Thread Josh Triplett
Andrew Shadura wrote:
 By the way, it might be a good idea to fill .bss section with random
 values intentionally for debug builds to detect non-properly-initialised
 things more effectively :)

Variables in the .bss section will by definition get initialized to 0.
For example, a C variable defined as static typename varname; must get
initialized to 0, and the compiler and linker will stick it in the .bss
section expecting that it will end up with a value of 0 at runtime.
That represents a defined property of the standard, not an
implementation quirk.  So, the .bss section must get initialized to 0,
not to random values, whether in a debug build or not.

- Josh Triplett


-- 
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/20120619221131.GA27346@leaf



Report from the Bug Squashing Party in Salzburg

2012-06-19 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

For those who do not read Planet Debian, here is the report from the Debian
BSP in Salzburg (markdown/ikiwiki source, sorry for not re-formatting it :))


Participation and Results
- ---
- From June 15-17th we held a Debian BugSquashingParty in Salzburg, hosted and
sponsored by [conova communications GmbH](http://www.conova.com/). It was a
fun and busy weekend, with 15-17 people from 5 coutries being around, mainly
working on RC bugs in Testing/Unstable. Gerfried Fuchs (rhonda) also worked on
triaging the impact of RC bugs on the version in Squeeze, while Peter
Palfrader (weasel) took care of Tor related things and Debian sysadmin work,
including starting on the new bugs and udd hosts. Phillip Hug (hug) worked on
the  debian.ch infrastructure.
Together with Miroslav Suchý from Red Hat Bernd Zeimetz (bzed) worked on the
packaging of the necessary libraries and daemons to add (basic) Spacewalk
client support to Debian. As soon as the packages passed NEW and
[#677871](http://bugs.debian.org/677871) was applied (thanks to the APT guys
for working on that already), managing Debian clients with Spacewalk should
work out of the box.
Of course we also had a little keysigning party :)

Statistics
- ---
- -  about 68 bugs in unstable/testing were triaged/patched/fixed or at least 
pinged
- -  54 bugs were tagged to show if they affect Squeeze, several other bugs were
pinged to retrieve necessary information or to trigger an update in the next
stable pointrelease.
- -  5 packages were introduced into Debian (still in NEW, though) - the
Spacewalk client related packages and libapache2-mod-auth-memcookie.

Accomodation
- -
Thanks to Debian funds we were able to provide accomodation for four
participants in the JUFA youth hostel in Salzburg.
We had paid in advance for eight, but changing to rooms with a higher category
for only 4 people would have been equally or more expensive.


Press/Media coverage
- ---_-
Additionally to being mentioned in the calendars on ProLinux and similar
pages, we had some press coverage by the local newspaper and online magazines:

- -  [Scan of Salzburger Woche / Stadt
Nachrichten](http://www.conova.com/fileadmin/user_upload/dl.php?file=files/Presse_Debian_Bug_Squashing_Party_Stadt_Nachrichten.pdf)
- -  [article on the Salzburger Nachrichten
website](http://search.salzburg.com/news/artikel.html?uri=http%3A%2F%2Fsearch.salzburg.com%2Fnews%2Fresource%2Fsn%2Fnews%2Fst152700_15.06.2012_41-40204916)
- -
[meinbezirk.at](http://regionaut.meinbezirk.at/salzburg-stadt/leute/debian-bug-squashing-party-erstmals-in-salzburg-d194324.html/action/lesen/1/recommend/1/)
- -  [Salzburg Cityguide -
Photogallery](http://www.salzburg-cityguide.at/de/partyzone/detail/debian-bug-squashing-party---conova_102492)


Fun facts
- -
We consumed 2kg of Leberkas, a big plate of Buchteln mit Vanillesosse, about
16000cm^2 of Pizza, about 80 litres of coke, juice, beer and whine and I guess
we drank at least the same amount of water. We had coffee made of 1.5kg coffee
beans and managed to empty the (formerly well filled) icemaker in the fridge.
Also we had successful training sessions of a standard Debconf game (rules
won't be explained here obviously). Maybe we even successfully spread the game
to the employees of a commercial linux distribution ;)



- -- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIbBAEBCAAGBQJP4PysAAoJEOs2Fxpv+UNfedIP+LpbOOiIgbSOR95L+78kxzM1
AXr/eDEVv3uGpIslaQ2PIUaDGFiB0ecBxnloajrXBKoY46X/rLORQMBb6yyN/jHD
L3HzZWU8tZyyvObFiedMsi/OwW/qALT/BXi3MAIIR8+Y8pMKUWCt0jWjCKr13QOC
F/0ZFA47R7uFO2iQOgw6bkQp2NIBeh7PUX3TV/sK0AUwWt3e7LeVF4rU5nzDyzCu
gACn4+jG7XwdTERT/3YMmMwhKOl7HLUBGMWNX6/JfFhj0xDxc9SXckpiZg+bk+xi
Vp0yjwEkNd63GPk5032hqBa60yYlqJaJot1DVKKHbQSm1xPyXTn7NaLWvSxJCb5y
7NwyCGkQGnWGjQvxvy+22OsuYgWAc6GknQuMOCwX6l6bDIfbM013uXPmELi3m6Bj
5Y231jxa4HbZYuk5ZKSx1H7ktNE49dxyTHxa0T0pK97PDb0EpM4Uwp9iPkc1r5Bg
feOee7QBotQEg/DFuRGNqylVsnWwxqtL+mmRIGPrfhvI3/41gt/Tm+yvm6bpPUGq
DW68QTqhQBwLzcdMO4vYpAlFsR9Ggk1GQxF3hv7EyEPVeg3yHrpKVNocJbti0EIg
wl6uSxlnVOIW2M1U5Ezo45yqy8tjx4FDp0QMgUpt0OwKxWH3Cwh86udQUOTRYPbf
yHMWXVt2ordA5q7jCbc=
=SpWN
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4fe0fcb3.3090...@bzed.de



Re: Why is irqbalance package so out of date?

2012-06-19 Thread Stephen Hemminger
On Mon, 18 Jun 2012 23:56:18 -0300
Henrique de Moraes Holschuh h...@debian.org wrote:

 On Mon, 18 Jun 2012, Stephen Hemminger wrote:
  I will be happy to get involved; upstream irqbalance is on my list
  of things that are broken and needs to be fixed. Will try and get a hold
 
 Could you elaborate on this?
 
  of past contributors to figure out what is happening. I know there was
  talk of fixing it and integrating Holger's irqd logic.
 
 Don't cache topology and sibling relationship also play a role on maximum
 PPS throughput NIC interrupt routing when assigning interrupts to proper
 multiqueue NICs?  Especially when Intel DCA is enabled?
 
 Although trying to route the packet while it is still cache-hot might as
 well be a pipe dream...
 

I haven't looked in detail at current version. But the older versions had
dynamic policy and depended on making assumptions about which device had
which irq (by looking at /proc/interrupts), and polling for network activity.
What it was trying to do might have been a good idea in old i386 days but
was getting horribly confused with all the types of multiqueue drivers etc.

The ideal program would be state driven, handle power management (use less
cores when not busy), and be dynamically user configurable, and solve world
hunger...


-- 
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/20120619153455.4fa54...@s6510.linuxnetplumber.net



Re: Build environment bug: 675125

2012-06-19 Thread Andrew Shadura
Hello,

On Tue, 19 Jun 2012 15:11:33 -0700
Josh Triplett j...@joshtriplett.org wrote:

 Variables in the .bss section will by definition get initialized to 0.
 For example, a C variable defined as static typename varname; must
 get initialized to 0, and the compiler and linker will stick it in
 the .bss section expecting that it will end up with a value of 0 at
 runtime. That represents a defined property of the standard, not an
 implementation quirk.  So, the .bss section must get initialized to 0,
 not to random values, whether in a debug build or not.

Oh, yes, indeed, though I see no such requirement to put initialise
non-static variables in the standard, so static variables could just go
to .data section, leaving .bss truly uninitialised.

-- 
WBR, Andrew


signature.asc
Description: PGP signature


Bug#678218: ITP: ocamlrss -- RSS 2.0 parser and printer for OCaml

2012-06-19 Thread Sylvain Le Gall
Package: wnpp
Severity: wishlist
Owner: Sylvain Le Gall gil...@debian.org

* Package name: ocamlrss
  Version : 2.0
  Upstream Author : Maxence Guesdon
* URL : http://zoggy.github.com/ocamlrss/
* License : LGPL + BSD
  Programming Lang: OCaml
  Description : RSS 2.0 parser and printer for OCaml

OCaml-RSS is a small OCaml library providing functions to parse and print RSS
2.0 files. The parser can also parse some RDF files, but some fields are not
taken into account. There is still some work to do (add missing RSS 2.0
attributes, add convenient functions).

OCaml-RSS was previously part of Cameleon but is now developed separately
and is findlib compatible.



-- 
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/20120619230225.1367.42791.reportbug@localhost



Bug#678229: ITP: tilem -- GTK+ TI Z80 calculator emulator

2012-06-19 Thread Albert Huang
Package: wnpp
Severity: wishlist
Owner: Albert Huang alberth.deb...@gmail.com

* Package name: tilem
  Version : 2.0.0
  Upstream Author : TilEm2 tilem-de...@sourceforge.net
* URL : http://lpg.ticalc.org/prj_tilem/
* License : GPL, LGPL, GFDL
  Programming Lang: C
  Description : GTK+ TI Z80 calculator emulator
 TilEm is an emulator and debugger for Texas Instruments' Z80-based graphing
 calculators. It can emulate any of the following calculator models:
  * TI-73 / TI-73 Explorer
  * TI-76.fr
  * TI-81
  * TI-82
  * TI-82 STATS / TI-82 STATS.fr
  * TI-83
  * TI-83 Plus / TI-83 Plus Silver Edition / TI-83 Plus.fr
  * TI-84 Plus / TI-84 Plus Silver Edition / TI-84 pocket.fr
  * TI-85
  * TI-86
 TilEm fully supports all known versions of the above calculators (as of 2012),
 and attempts to reproduce the behavior of the original calculator hardware as
 faithfully as possible. In addition, TilEm can emulate the TI-Nspire's virtual
 TI-84 Plus mode. This is currently experimental, and some programs may not
work
 correctly.
 .
 TilEm runs on the X Window System on GNU/Linux and other Unix-like platforms,
 as well as on Microsoft Windows, and any other platform supported by the GTK+
 library. In addition to the emulation, TilEm 2 provide a lot of extra
features,
 such as:
  * Fully featured debugger
  * Grabbing screenshots and recording gif (animations)
  * Virtual linking (through libticables)
  * Flash writing and erasing
  * Application and OS loading
  * Scripting using macros



-- 
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/20120620043840.27675.88838.reportbug@ubuntu



Re: Build environment bug: 675125

2012-06-19 Thread Stéphane Glondu
Le 19/06/2012 16:20, Alastair McKinstry a écrit :
 While i'm still investigating, _something_ in the sid environment is the
 real culprit and
 I can't assign a bug to it yet until I pin it down. Has anyone seen a
 similar issue elsewhere,
 or got a hint as to how to handle it? I want to make  sure we don't just
 freeze on the current slang but ship the
 broken environment.

A hint: snapshot.debian.org.


Cheers,

-- 
Stéphane


--
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/4fe16530.2020...@debian.org



Accepted network-console 1.32 (source i386)

2012-06-19 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 07:46:36 +0200
Source: network-console
Binary: network-console
Architecture: source i386
Version: 1.32
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 network-console - Continue installation remotely using SSH (udeb)
Changes: 
 network-console (1.32) unstable; urgency=low
 .
   * Team upload
 .
   [ Updated translations ]
   * Bengali (bn.po) by Ayesha Akhtar
   * German (de.po) by Holger Wansing
   * Estonian (et.po) by Mattias Põldaru
   * Croatian (hr.po) by Tomislav Krznar
   * Swedish (sv.po) by Martin Bagge / brother
   * Vietnamese (vi.po) by Nguyen Vu Hung
Checksums-Sha1: 
 be6c7e2248ba6b4104846b6c7f0f8e5ce150a33a 1645 network-console_1.32.dsc
 d5d6bcbb1e89b893734fb4b2d2eeb01234e38f79 112685 network-console_1.32.tar.gz
 09cee7724b84c4ac4003d279758b5d1a9685a883 80890 network-console_1.32_i386.udeb
Checksums-Sha256: 
 36fdad7d2118e590e2d88fda31cbe9c392500baff2882f1a13e19a9e564ea98e 1645 
network-console_1.32.dsc
 16a4e8c509a328a2baef9c9de21511dfef11693af400d67433259ba0e6569a31 112685 
network-console_1.32.tar.gz
 f93b52b536881d531a287b4132248b5851aa386b13c135d5a687dd4ce8ec7e3b 80890 
network-console_1.32_i386.udeb
Files: 
 57906b4d4d8c154050d5c0305ba207e1 1645 debian-installer optional 
network-console_1.32.dsc
 5fe501e91a76058010a85d17de4bdcf9 112685 debian-installer optional 
network-console_1.32.tar.gz
 c8a956ee2aa39717894f35e4f6eacfcc 80890 debian-installer optional 
network-console_1.32_i386.udeb

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

iQIVAwUBT+AU7ocvcCxNbiWoAQL3/g/+P8CTRzqEXdYWc5Mst4KYNQPVrJslo4hQ
2FGazzMsMPIqsUgtlfDlmEHOAIg5JBGqixatZqi49gOrP6VWny/jG5BR/5TQFsMX
dnQ0Pnvt+BFNKEZ/tM5yYGL/7qgr9dI/ZIdogFrlXrjQ6XOg+VWzJFRorLjvX3vI
S10nc7ZxJhdGweRxv9xxvlGpQJCN7WQ81EecRMS+xr+Rv0sYbNIkeXnK95uWmTl4
3vLOb9r+jyL9T1rOm6jZttJTvwtsYqn/6Cbcy/wTw1+a1sGS8iysA5DhfurzzrVD
fY9jw99BC3ldgQNCxy5lpq1lonVrEVTpwvGDy/qR3hT0clYtqKLNsMFGouEpjzQd
UIIgfuZLsTRAQTyAYcbkqyIkHdgGI8m7RO6BpKoRlyy48cTrw15wMPsGFjSoVBpe
vz4OchvMUk9JBTif4bRfbz46oeTB+Bncwh7zpGb3acTn/9JoOPppSldBnQiKMCVK
wb1W8ntm+xcZYYQ9YaxAKbCVnNPl6z863UNeFp7pKUdFnCsFpCRzyiyvZZAC9CLn
dJopM85QMvcrDbW8SykbeVZ5xuxTlvhp0bS6sVFpOqz77bnkZ1+0nvz6nV0hMO/B
2/Es52amMI7Z35VMmgnWauZEKpErrG50NUSzUAbkpv5R/1bukajXIJvaNWT0Tos3
MlK7rEde6Q8=
=9IBP
-END PGP SIGNATURE-


Accepted:
network-console_1.32.dsc
  to main/n/network-console/network-console_1.32.dsc
network-console_1.32.tar.gz
  to main/n/network-console/network-console_1.32.tar.gz
network-console_1.32_i386.udeb
  to main/n/network-console/network-console_1.32_i386.udeb


-- 
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/e1sgrlz-0008vr...@franck.debian.org



Accepted netcfg 1.73 (source i386)

2012-06-19 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 08:00:34 +0200
Source: netcfg
Binary: netcfg netcfg-static
Architecture: source i386
Version: 1.73
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 netcfg - Configure the network (udeb)
 netcfg-static - Configure a static network (udeb)
Changes: 
 netcfg (1.73) unstable; urgency=low
 .
   * Team upload
 .
   [ Updated translations ]
   * Croatian (hr.po) by Tomislav Krznar
Checksums-Sha1: 
 15ffe96f7c52ec8bedd9a232c2e924e1d398f96d 1805 netcfg_1.73.dsc
 f1fd8c1eca11261cd56da8845629822495fd7b91 581796 netcfg_1.73.tar.gz
 734ad290a96d95c96c0e9f39b353542304b73766 390666 netcfg_1.73_i386.udeb
 a492a9816c65d78b2391facbed15280b283a1d4c 308122 netcfg-static_1.73_i386.udeb
Checksums-Sha256: 
 02e4f1d37e1c5f1f9a9908cb9d0fab90e4fb56094f7b6e73afd73eb9f6be9560 1805 
netcfg_1.73.dsc
 b1ac1403f934ce4a9810e029d01906c113f8791d6c64de3b5dd80448b32b126e 581796 
netcfg_1.73.tar.gz
 8665eac93fd33537c1f65994c5f440d7ffec95674480b86204414416ca35e809 390666 
netcfg_1.73_i386.udeb
 2c9862764922ad885899b9e788a517a2643b70ff6078d95d7ab123b4734d2978 308122 
netcfg-static_1.73_i386.udeb
Files: 
 276c40006b0117d7aab86f9b4bce81cd 1805 debian-installer optional netcfg_1.73.dsc
 060e7435e8abab2488545e66e097608f 581796 debian-installer optional 
netcfg_1.73.tar.gz
 3cf99ab2a8d2bee5cfb4fcf09da79ea2 390666 debian-installer optional 
netcfg_1.73_i386.udeb
 129027a94172bb770b8add9c17941f3d 308122 debian-installer optional 
netcfg-static_1.73_i386.udeb

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

iQIVAwUBT+AZZ4cvcCxNbiWoAQIjtxAAr5eQSBfXACwBD8++6tvV/SmPkZd/F2Rc
ubU7IlgH2i97DS9hdcsg7uzVg4w0R/yTwLyYyUknZi33clh9Vmd2SJIqJICI8cfB
Els5xZXnAa3+qROcKthS50i/Clu8IjhRoi8Y7u5mngw4UwdL0QeBsn4+QtBX5lTl
4Dm32Xn3HdxQZ5lBg10fLn27V/nXp+Qxk5EbugW4/zRO+aMF/Tk66nynG6UZEHWa
651mYvUTZkt2A71CcUgZs8MZWy+z//E0q2gwACqw9tAnOz3sGWqfl7rqVTVYIQHs
1mgP4wPC8Shby6s/nxeh4DgnwmaNQf/wyBvTNz+R9nO3AXXdh4BxP41J5BYEsc4D
Q3oiUQi98WgfU/ZMuIAlZYd62ORuUOW9OiSSH+EpdpCe9nszBhjW/u+hiseIjKbV
e2gR2jJjYNtx/0iOwwrT3sQHcRvv8h9t428f7wYB8EtGmTUAuNQv/f6O4jEL0FuY
k4CSKBCUcMK2ZLaNrtGP54c3LWQ4JH/LxDN8iYb0OdR5n/8P32lJTj6QSkEFtAQn
Q+gigibAQo9Nu2P/HZv6FbyN6IijwfSPfwmKw2aFUabzyB4W2oDoz2BbJboPAjp4
4OS9SyzNOYciTB0RyOOXLrhc6Q6vrXdXx5NMmIEPuBmD9Jv6/BhDwgMLw1ujIKEp
WKmX5JN3OiI=
=mAPf
-END PGP SIGNATURE-


Accepted:
netcfg-static_1.73_i386.udeb
  to main/n/netcfg/netcfg-static_1.73_i386.udeb
netcfg_1.73.dsc
  to main/n/netcfg/netcfg_1.73.dsc
netcfg_1.73.tar.gz
  to main/n/netcfg/netcfg_1.73.tar.gz
netcfg_1.73_i386.udeb
  to main/n/netcfg/netcfg_1.73_i386.udeb


-- 
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/e1sgrzx-0001bi...@franck.debian.org



Accepted gosa 2.7.4-3 (source all)

2012-06-19 Thread Cajus Pollmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 18 Jun 2012 14:29:03 +0200
Source: gosa
Binary: gosa gosa-dev gosa-desktop gosa-schema gosa-help-en gosa-help-de 
gosa-help-fr gosa-help-nl gosa-plugin-connectivity gosa-plugin-dhcp 
gosa-plugin-dhcp-schema gosa-plugin-dns gosa-plugin-dns-schema gosa-plugin-fai 
gosa-plugin-fai-schema gosa-plugin-gofax gosa-plugin-gofon gosa-plugin-goto 
gosa-plugin-kolab gosa-plugin-kolab-schema gosa-plugin-ldapmanager 
gosa-plugin-mail gosa-plugin-mit-krb5 gosa-plugin-mit-krb5-schema 
gosa-plugin-nagios gosa-plugin-nagios-schema gosa-plugin-netatalk 
gosa-plugin-opengroupware gosa-plugin-openxchange 
gosa-plugin-openxchange-schema gosa-plugin-opsi gosa-plugin-phpgw 
gosa-plugin-phpgw-schema gosa-plugin-phpscheduleit 
gosa-plugin-phpscheduleit-schema gosa-plugin-pptp gosa-plugin-pptp-schema 
gosa-plugin-pureftpd gosa-plugin-pureftpd-schema gosa-plugin-rolemanagement 
gosa-plugin-rsyslog gosa-plugin-samba gosa-plugin-scalix gosa-plugin-squid 
gosa-plugin-ssh gosa-plugin-ssh-schema gosa-plugin-sudo gosa-plugin-sudo-schema 
gosa-plugin-systems
 gosa-plugin-uw-imap
 gosa-plugin-webdav
Architecture: source all
Version: 2.7.4-3
Distribution: unstable
Urgency: low
Maintainer: GOsa packages maintainers group gosa-...@oss.gonicus.de
Changed-By: Cajus Pollmeier ca...@debian.org
Description: 
 gosa   - Web Based LDAP Administration Program
 gosa-desktop - Desktop integration for GOsa²
 gosa-dev   - GOsa² development utilities
 gosa-help-de - German online help for GOsa²
 gosa-help-en - English online help for GOsa
 gosa-help-fr - French online help for GOsa²
 gosa-help-nl - Dutch online help for GOsa
 gosa-plugin-connectivity - connectivity plugin for GOsa²
 gosa-plugin-dhcp - dhcp plugin for GOsa²
 gosa-plugin-dhcp-schema - LDAP schema for GOsa² dhcp plugin
 gosa-plugin-dns - dns plugin for GOsa²
 gosa-plugin-dns-schema - LDAP schema for GOsa² dns plugin
 gosa-plugin-fai - fai plugin for GOsa²
 gosa-plugin-fai-schema - LDAP schema for GOsa² fai plugin
 gosa-plugin-gofax - gofax plugin for GOsa²
 gosa-plugin-gofon - gofon plugin for GOsa²
 gosa-plugin-goto - goto plugin for GOsa²
 gosa-plugin-kolab - kolab plugin for GOsa²
 gosa-plugin-kolab-schema - LDAP schema for GOsa² kolab plugin
 gosa-plugin-ldapmanager - ldapmanager plugin for GOsa²
 gosa-plugin-mail - base mail plugin for GOsa²
 gosa-plugin-mit-krb5 - mit-krb5 plugin for GOsa²
 gosa-plugin-mit-krb5-schema - LDAP schema for GOsa² mit-krb5 plugin
 gosa-plugin-nagios - nagios plugin for GOsa²
 gosa-plugin-nagios-schema - LDAP schema for GOsa² nagios plugin
 gosa-plugin-netatalk - netatalk plugin for GOsa²
 gosa-plugin-opengroupware - opengroupware plugin for GOsa²
 gosa-plugin-openxchange - openxchange plugin for GOsa²
 gosa-plugin-openxchange-schema - LDAP schema for GOsa² openxchange plugin
 gosa-plugin-opsi - opsi plugin for GOsa²
 gosa-plugin-phpgw - phpgw plugin for GOsa²
 gosa-plugin-phpgw-schema - LDAP schema for GOsa² phpgw plugin
 gosa-plugin-phpscheduleit - phpscheduleit plugin for GOsa²
 gosa-plugin-phpscheduleit-schema - LDAP schema for GOsa² phpscheduleit plugin
 gosa-plugin-pptp - pptp plugin for GOsa²
 gosa-plugin-pptp-schema - LDAP schema for GOsa² pptp plugin
 gosa-plugin-pureftpd - pureftpd plugin for GOsa²
 gosa-plugin-pureftpd-schema - LDAP schema for GOsa² pureftpd plugin
 gosa-plugin-rolemanagement - rolemanagement plugin for GOsa²
 gosa-plugin-rsyslog - rsyslog plugin for GOsa²
 gosa-plugin-samba - samba3 plugin for GOsa²
 gosa-plugin-scalix - scalix plugin for GOsa²
 gosa-plugin-squid - squid plugin for GOsa²
 gosa-plugin-ssh - ssh plugin for GOsa²
 gosa-plugin-ssh-schema - LDAP schema for GOsa² ssh plugin
 gosa-plugin-sudo - sudo plugin for GOsa²
 gosa-plugin-sudo-schema - LDAP schema for GOsa² sudo plugin
 gosa-plugin-systems - systems plugin for GOsa²
 gosa-plugin-uw-imap - uw-imap plugin for GOsa²
 gosa-plugin-webdav - webdav plugin for GOsa²
 gosa-schema - LDAP schema for GOsa
Closes: 672398 674357
Changes: 
 gosa (2.7.4-3) unstable; urgency=low
 .
   * Reverted Apache2 transition because it has been aborted. Closes: #674357.
   * Checked if the package runs with debian packaged smarty
 3.1.x. Closes: #672398.
Checksums-Sha1: 
 0c1770fbe0e2ec4ce1b70f9420a3a806406d587c 13065 gosa_2.7.4-3.dsc
 60aa5ae12a25cc0d92921aff9d8967d44125470e 30590 gosa_2.7.4-3.debian.tar.gz
 0505e107933d87aa6008be0972fd7fc2da0dd13e 1776716 gosa_2.7.4-3_all.deb
 47430f9eaf4157a95ab02095755db5c0c098809e 19718 gosa-dev_2.7.4-3_all.deb
 27c015c286342d8c1d2db31afe6ddd1e7d315694 15658 gosa-desktop_2.7.4-3_all.deb
 c64230cfdb06c187bb5fb57392b825d39ef74177 34636 gosa-schema_2.7.4-3_all.deb
 0b6683baeb6f8d1ad38370505c87eea109934166 72554 gosa-help-en_2.7.4-3_all.deb
 88fd0aad11af1a3b75679afecdd3cf84bf75db76 119512 gosa-help-de_2.7.4-3_all.deb
 53a22f71c5c9ec526fd5ac97da1dd7d1eb015369 82448 gosa-help-fr_2.7.4-3_all.deb
 5617353c062a0a95c2e3eadf1544d365216faff5 64288 gosa-help-nl_2.7.4-3_all.deb
 

Accepted yasat 526-1 (source all)

2012-06-19 Thread Corentin LABBE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 17 Jun 2012 09:11:23 +
Source: yasat
Binary: yasat
Architecture: source all
Version: 526-1
Distribution: unstable
Urgency: low
Maintainer: Corentin LABBE corentin.la...@geomatys.fr
Changed-By: Corentin LABBE corentin.la...@geomatys.fr
Description: 
 yasat  - simple stupid audit tool
Changes: 
 yasat (526-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 900b8dc84f57c1cf1e5d96bacf463ec63b90229e 1034 yasat_526-1.dsc
 15081946fa2481f24e15cd760b1329297f7a0c9d 123976 yasat_526.orig.tar.gz
 25ad09e0995b45a6da1944b8b82ba9f04d13863f 1730 yasat_526-1.debian.tar.gz
 fe35f784478d1e435ee33b06b9b4805879583966 107858 yasat_526-1_all.deb
Checksums-Sha256: 
 b8d0e7d8259fd870771a0c8044594bf10ed5463a2e0d87c3d3c5329d0a90b284 1034 
yasat_526-1.dsc
 a4ff957d59923c7c87fbcde27c894d731a3685b8534be17867d9cdc41974e600 123976 
yasat_526.orig.tar.gz
 1b60b851bf6c904ce4ac87350419e274bf627dca4e9ee1b5a949c1c9b31d26dc 1730 
yasat_526-1.debian.tar.gz
 08e2b4bdf5ec2e7874446ef6b09df570bf29059fc3705262356f6ebd3c7801f3 107858 
yasat_526-1_all.deb
Files: 
 074e92742f0a4ea220135a904bd3991b 1034 utils optional yasat_526-1.dsc
 0c915684e263e1246669ad19ae905fb4 123976 utils optional yasat_526.orig.tar.gz
 c17322f7588f0eaeb2631f5606a4b30e 1730 utils optional yasat_526-1.debian.tar.gz
 41f342f6ab72840a191dbaae9dc27967 107858 utils optional yasat_526-1_all.deb

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

iEYEARECAAYFAk/gIC4ACgkQKFvXofIqeU6FBQCfZEfxkK1wewIOOjsyv0k1Gdqc
JcUAoLVaUTwahhhytD9VrHofBwyhjTLN
=kPNp
-END PGP SIGNATURE-


Accepted:
yasat_526-1.debian.tar.gz
  to main/y/yasat/yasat_526-1.debian.tar.gz
yasat_526-1.dsc
  to main/y/yasat/yasat_526-1.dsc
yasat_526-1_all.deb
  to main/y/yasat/yasat_526-1_all.deb
yasat_526.orig.tar.gz
  to main/y/yasat/yasat_526.orig.tar.gz


-- 
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/e1sgsvn-0004lh...@franck.debian.org



Accepted jimtcl 0.73-3 (source amd64)

2012-06-19 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 09:02:28 +0200
Source: jimtcl
Binary: jimsh libjim0debian2 libjim-dev
Architecture: source amd64
Version: 0.73-3
Distribution: unstable
Urgency: low
Maintainer: Didier Raboud o...@debian.org
Changed-By: Didier Raboud o...@debian.org
Description: 
 jimsh  - small-footprint implementation of Tcl named Jim
 libjim-dev - small-footprint implementation of Tcl - development files
 libjim0debian2 - small-footprint implementation of Tcl - shared library
Closes: 677966
Changes: 
 jimtcl (0.73-3) unstable; urgency=low
 .
   * Build static flavour and ship it in libjim-dev. (Closes: #677966)
   * Bump Standards-Version to 3.9.3 without changes needed.
Checksums-Sha1: 
 e0162441cf71f0573279e8af9f90f088cd1fae91 1754 jimtcl_0.73-3.dsc
 769908509f8d85eb6b075b91e43c9508a4706164 6078 jimtcl_0.73-3.debian.tar.gz
 305c8c19c140711b4b1dc69c805eee8b46ee35fe 152268 jimsh_0.73-3_amd64.deb
 871278b7676ac74905017945c20279af22285d60 136302 libjim0debian2_0.73-3_amd64.deb
 aff37428937df583b59780395767e22febc1e565 170664 libjim-dev_0.73-3_amd64.deb
Checksums-Sha256: 
 5b590e37b14e9cd3ee731bb680506a034ff0e5f7a9275fed0930bf8d06b06035 1754 
jimtcl_0.73-3.dsc
 63bb09eff0fbe64f3576e308ce361172f57359c6499e820eb371704f5038834f 6078 
jimtcl_0.73-3.debian.tar.gz
 1fcd429b47fd1c0d511fd084d2bc4af7a9358899eb984f4dccdf8d5b5df8dd32 152268 
jimsh_0.73-3_amd64.deb
 daad83656ba958905398f16c70b0326db52dec5be9492c661a4e7e4938d99157 136302 
libjim0debian2_0.73-3_amd64.deb
 aee0f7f0fce076804be0216d120a12762744c9fb4803198a18a65288a96cc162 170664 
libjim-dev_0.73-3_amd64.deb
Files: 
 b85a7d8ea1ca0ea77de941f3b1f7844f 1754 devel extra jimtcl_0.73-3.dsc
 bdaf94532a17bbc2474d1643b82d 6078 devel extra jimtcl_0.73-3.debian.tar.gz
 f09a72f98a0492bec3d6e2538675b27b 152268 devel extra jimsh_0.73-3_amd64.deb
 0191ec6233278d67820bbb0ec8bbec13 136302 libs extra 
libjim0debian2_0.73-3_amd64.deb
 cc648e78067f70e9605813aa0a7414eb 170664 libdevel extra 
libjim-dev_0.73-3_amd64.deb

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

iQGcBAEBCAAGBQJP4CZDAAoJEIvPpx7KFjRVHSgL/1T05uNM3EQhup+W/USkpdQb
jjxLV1s31jBs/9QlB0fmAvoXb0OQlgNAozsufj23SQzOBuhf4Cye0yo7dA/FOx8o
v6xLGoS6bsVesuAsT/lKXaJAYRr6U+SHYYgaXAeQ73MRKfPxWBD6x2Sd+BOuY/31
DvJO2QsibmE3LW9mrWzWRqNPi/93TB4OTdGxL1CLfxB0SWZuq2KfY+wDIWgsg0Ka
Y6OlkM3ATNJlpijko6heyMCMzRrnCrP2X98N7kpgEMHBXDXfaTcT9CFF5BBDef3g
HVpxvSOy7TD+1/Quv2VxDotZfAtSiRVonwj+Rin5fRqPKqr6RICcATbH0BqtmPTU
e3kQQUySvKhbjn7Il5ee93GBZVU780Pul1Z2eR7XknzAqUMNOk8HCQ78a/Ia5HlR
BkiOJawm9Gl9gguPkArExAO1YzYMJkyfbHISGLf2UKWVUmk8lEZ4ra4S7uFNKT0N
tJRkySwLOrDw52DOnFGqzw0GPF1/JVo31CrgNsxHyA==
=vxSU
-END PGP SIGNATURE-


Accepted:
jimsh_0.73-3_amd64.deb
  to main/j/jimtcl/jimsh_0.73-3_amd64.deb
jimtcl_0.73-3.debian.tar.gz
  to main/j/jimtcl/jimtcl_0.73-3.debian.tar.gz
jimtcl_0.73-3.dsc
  to main/j/jimtcl/jimtcl_0.73-3.dsc
libjim-dev_0.73-3_amd64.deb
  to main/j/jimtcl/libjim-dev_0.73-3_amd64.deb
libjim0debian2_0.73-3_amd64.deb
  to main/j/jimtcl/libjim0debian2_0.73-3_amd64.deb


-- 
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/e1sgshc-0005ct...@franck.debian.org



Accepted libassa 3.5.1-2 (source amd64)

2012-06-19 Thread Eric Dorland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 03:00:15 -0400
Source: libassa
Binary: libassa3.5-5-dev libassa3.5-5 libassa3.5-5-dbg
Architecture: source amd64
Version: 3.5.1-2
Distribution: unstable
Urgency: high
Maintainer: Eric Dorland e...@debian.org
Changed-By: Eric Dorland e...@debian.org
Description: 
 libassa3.5-5 - object-oriented C++ networking library
 libassa3.5-5-dbg - debugging symbols for libassa3.5-5
 libassa3.5-5-dev - object-oriented C++ networking library
Changes: 
 libassa (3.5.1-2) unstable; urgency=high
 .
   * Urgency high to beat the freeze.
   * debian/control: -dev package should depend on libtirpc-dev.
   * debian/control: Make shlib and dbg package Multi-Arch aware.
Checksums-Sha1: 
 65d5c0475ddefcc54071ed3e29973f704f0ba5ec 1322 libassa_3.5.1-2.dsc
 08aa010b806649efaa4a53fdb66ba78dfcd2731f 4961 libassa_3.5.1-2.debian.tar.gz
 2044f7f861ff5f79d414cac5d2bd947fc930329d 2012424 
libassa3.5-5-dev_3.5.1-2_amd64.deb
 7bc6a3bbdfc1054b2e4f68e29bdd2dc4d636aeb5 336268 libassa3.5-5_3.5.1-2_amd64.deb
 a98230f1e69e2d3034fe1226827b2eb405827135 2725794 
libassa3.5-5-dbg_3.5.1-2_amd64.deb
Checksums-Sha256: 
 e323331ed03106f5bf61a9f090d8ff5b1c6882f5aaffb88597338ad43a6b7a84 1322 
libassa_3.5.1-2.dsc
 51cdc9fc4c29e05a0c19f88e062201e1c0cc0543f447ac27c5384a1af3ed2811 4961 
libassa_3.5.1-2.debian.tar.gz
 bafe8c0bba6bfef1bdec25d08344c19d57dbfd18e23c6a75a7778ffc49e1be05 2012424 
libassa3.5-5-dev_3.5.1-2_amd64.deb
 20956371a6f373c7d63344c4841c8eb65c81327a348add238f2399a99011693e 336268 
libassa3.5-5_3.5.1-2_amd64.deb
 bbba02c49115c7834bf9bed97b649489e1080162a2539074a5be642c319b5930 2725794 
libassa3.5-5-dbg_3.5.1-2_amd64.deb
Files: 
 251fcd68539f0c27edd3903a68ba127e 1322 libs optional libassa_3.5.1-2.dsc
 db85ec8a92ac2802a3b10da4ac12a1e7 4961 libs optional 
libassa_3.5.1-2.debian.tar.gz
 521d454efe9f58949cbdeca043d8f916 2012424 libdevel optional 
libassa3.5-5-dev_3.5.1-2_amd64.deb
 6c265e2356cc895151ae169ce09fd8e0 336268 libs optional 
libassa3.5-5_3.5.1-2_amd64.deb
 02893b5d3ed4299ff05be290092181b6 2725794 debug extra 
libassa3.5-5-dbg_3.5.1-2_amd64.deb

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

iEYEARECAAYFAk/gJQkACgkQYemOzxbZcMZaOgCghEYZ89dXaeMBSvgcGai5RlQa
58sAoMIkPc4yBcgoNOo8YbRpddFAnKRS
=GKHh
-END PGP SIGNATURE-


Accepted:
libassa3.5-5-dbg_3.5.1-2_amd64.deb
  to main/liba/libassa/libassa3.5-5-dbg_3.5.1-2_amd64.deb
libassa3.5-5-dev_3.5.1-2_amd64.deb
  to main/liba/libassa/libassa3.5-5-dev_3.5.1-2_amd64.deb
libassa3.5-5_3.5.1-2_amd64.deb
  to main/liba/libassa/libassa3.5-5_3.5.1-2_amd64.deb
libassa_3.5.1-2.debian.tar.gz
  to main/liba/libassa/libassa_3.5.1-2.debian.tar.gz
libassa_3.5.1-2.dsc
  to main/liba/libassa/libassa_3.5.1-2.dsc


-- 
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/e1sgsht-0005dl...@franck.debian.org



Accepted nordugrid-arc-doc 1.1.2-1 (source all)

2012-06-19 Thread Mattias Ellert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 23 May 2012 22:33:06 +0200
Source: nordugrid-arc-doc
Binary: nordugrid-arc-doc
Architecture: source all
Version: 1.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Mattias Ellert mattias.ell...@fysast.uu.se
Changed-By: Mattias Ellert mattias.ell...@fysast.uu.se
Description: 
 nordugrid-arc-doc - ARC documentation
Changes: 
 nordugrid-arc-doc (1.1.2-1) unstable; urgency=low
 .
   * 1.1.2 Final Release
Checksums-Sha1: 
 87e345c56b0ef3713b1686d02923079ea8809030 2013 nordugrid-arc-doc_1.1.2-1.dsc
 c4dcb5c45c91f393065df9231ee82cfd605dfb20 8432216 
nordugrid-arc-doc_1.1.2.orig.tar.gz
 17d51b5a3f1d60549a9c5a492bfc5b757dcea38f 8298 
nordugrid-arc-doc_1.1.2-1.debian.tar.gz
 a4d7739cc433e39786f3090e69cc0ee3e371b98b 9196998 
nordugrid-arc-doc_1.1.2-1_all.deb
Checksums-Sha256: 
 ad94dd180f753afc842e038b952dd226ec5bcb98f90ec9ef9bbb3d89ba0d2955 2013 
nordugrid-arc-doc_1.1.2-1.dsc
 57bec77885c82f4c01e859bc5de6efe7d2a594d1c75e7fed51ea2b19eb2de949 8432216 
nordugrid-arc-doc_1.1.2.orig.tar.gz
 468ee294db9ecf13c2595de58fa4287bf1f651f33fdcd320f435f2945a6428fb 8298 
nordugrid-arc-doc_1.1.2-1.debian.tar.gz
 6edb7826140233f82a4a24ce920a8221cc841227db5d447bd0d1f9b0eed0a16c 9196998 
nordugrid-arc-doc_1.1.2-1_all.deb
Files: 
 f046248c24768a425efa466acdc47aef 2013 doc extra nordugrid-arc-doc_1.1.2-1.dsc
 f4221081a853ae8629ce5cc60eee2ad2 8432216 doc extra 
nordugrid-arc-doc_1.1.2.orig.tar.gz
 3c286b46c9dc0df3e71e92b5a83c1756 8298 doc extra 
nordugrid-arc-doc_1.1.2-1.debian.tar.gz
 709a1585a28b0e98aa263f87e64e0fa5 9196998 doc extra 
nordugrid-arc-doc_1.1.2-1_all.deb

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

iQIcBAEBAgAGBQJP4CO1AAoJEOiuwv874alLJ0QQAKKUOKRQI+5wfCnTJFx7PTIg
BLkEHU0dzYp2XFSGtwHU6YechlbnbxrLQKzZfvDNLbWAT6AVxtKaFG61IOht1s5t
wDrxBEuaXC9mZae1aVSqvmKnlQdAj30ue/CApw0XN4cgNXmCy2x2Ua8NaCoGr/nO
TTJEdL7VGbIp1v16f6j3BPkKhQWV2byMdo9w3+RZmr9sCdWRCy/BKD1gjhOTUvcb
qQzOqA7qqUcv/7GOf2bUXhOBaFOpN4zCBNEPcJrYXtG4LMjBsi7ugvGb/Hsn8fCc
UsBipIXRIo8zVWk31lUZTPV+Ro09J52pjrKAz3ze9b8JnxfrqKU+tvtpd0JADcdp
Vu1cMoG6Q/D5U852fR+ksnZwS/u9NpSot7rgrHcpJVASUubwzmobGFHFYd38omsK
cM4yP7cvp8Zcn/M0a+o3p51bRa7px2jOSgd0ah83rrSSNBIsIiA47tuFaBRBQXoz
ZipIKhx0kGxWFCLpUNqZA4yaLv6G3HLJneUIkvwui0mbPZr/MFdhUfWwhzdC1Kpy
kbEPpGFhBmqJHsq8Tc0zqgxPozSvCpeVuhxsEZAstOg8//WJ3PJV8CUGbz+GWNNw
LKurCxEeSt/hxY69nUBVNKLMeIXv3wN9vEoDWHqQfEqbAoe2Ym5rNawAVH73Q2cx
wLpmAwb5sHgSL3YHhFLj
=wyM/
-END PGP SIGNATURE-


Accepted:
nordugrid-arc-doc_1.1.2-1.debian.tar.gz
  to main/n/nordugrid-arc-doc/nordugrid-arc-doc_1.1.2-1.debian.tar.gz
nordugrid-arc-doc_1.1.2-1.dsc
  to main/n/nordugrid-arc-doc/nordugrid-arc-doc_1.1.2-1.dsc
nordugrid-arc-doc_1.1.2-1_all.deb
  to main/n/nordugrid-arc-doc/nordugrid-arc-doc_1.1.2-1_all.deb
nordugrid-arc-doc_1.1.2.orig.tar.gz
  to main/n/nordugrid-arc-doc/nordugrid-arc-doc_1.1.2.orig.tar.gz


-- 
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/e1sgsih-0005fq...@franck.debian.org



Accepted kdewebdev 4:4.8.4-1 (source all i386)

2012-06-19 Thread Eshat Cakar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 17 Jun 2012 01:02:59 +0200
Source: kdewebdev
Binary: kdewebdev kfilereplace kimagemapeditor klinkstatus kommander 
kdewebdev-dbg
Architecture: source all i386
Version: 4:4.8.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Eshat Cakar i...@eshat.de
Description: 
 kdewebdev  - web development apps from the official KDE release
 kdewebdev-dbg - debugging symbols for the KDE web development module
 kfilereplace - batch search-and-replace component
 kimagemapeditor - HTML image map editor
 klinkstatus - web link validity checker
 kommander  - visual dialog builder and executor tool
Changes: 
 kdewebdev (4:4.8.4-1) unstable; urgency=low
 .
   * New upstream release.
 .
   [ Eshat Cakar ]
   * Add watch file.
   * Bump kde-sc-dev-latest build dependency to 4:4.8.4.
   * Bump kdelibs5-dev and kdepimlibs5-dev build dependency to 4.8.
   * Bump Standars-Version to 3.9.3, no further changes.
Checksums-Sha1: 
 7c9581dbaa2411c639d1a8e86bcee4cb734d6f9f 1783 kdewebdev_4.8.4-1.dsc
 bab86ef6c04515a454298cee46eccb25e590f972 2603352 kdewebdev_4.8.4.orig.tar.xz
 8ae071f125aafbcf40c9fd459765693893e2e15a 7976 kdewebdev_4.8.4-1.debian.tar.gz
 85742309058a49ac65773d7e841c788b8c36 5730 kdewebdev_4.8.4-1_all.deb
 aeb8c9ae4607af25580f6d3e8e67326bc82bbc00 475374 kfilereplace_4.8.4-1_i386.deb
 cf32da2fc1b9da9c3bfb14ee5cb5c1dd101ce369 615170 
kimagemapeditor_4.8.4-1_i386.deb
 e1ad5e6444a85140eecd7eaa8622984167bb1b12 648934 klinkstatus_4.8.4-1_i386.deb
 e90ff932f084e3ee658082e5f284df39de309a54 335896 kommander_4.8.4-1_i386.deb
 92a068739fe47ec1961848d4c4440d4e08c52325 10672158 
kdewebdev-dbg_4.8.4-1_i386.deb
Checksums-Sha256: 
 4c9a911664485ce8a954d5d71ed08d5b3292cb9c97c087742cd3d0006d325708 1783 
kdewebdev_4.8.4-1.dsc
 bd38a168efb07255e2be26e13d036db87213956ea8cc5777b8b67caf10b665d7 2603352 
kdewebdev_4.8.4.orig.tar.xz
 4ef7db7e7e2815dbc390d76e809a48879f1bde6524a0224a2409c09341926200 7976 
kdewebdev_4.8.4-1.debian.tar.gz
 08fc24293c7cd0270c4564d4b628ea2ddb9ec39d8db0d37b45ad157529e2713f 5730 
kdewebdev_4.8.4-1_all.deb
 aeaea11b1a30e7c33b8a99dd8e08b2a2f62ea0085672876fc4aacbac2ec96139 475374 
kfilereplace_4.8.4-1_i386.deb
 98cb9a91d509d3f3df9d96daabeb2a0f3860637d4d81977f8dc58228a74de8d2 615170 
kimagemapeditor_4.8.4-1_i386.deb
 747c018fe452b7f0106360e62082f72cb902917c36eaaa72286728d60f6b62c1 648934 
klinkstatus_4.8.4-1_i386.deb
 421a4b29d564711fb069f15629ea02a17938491fd52c51034ab3297daa796c96 335896 
kommander_4.8.4-1_i386.deb
 c5401415bab441fa120e2ee1fa393f1fc225dfc01d00a6af3fe3724ed623c3df 10672158 
kdewebdev-dbg_4.8.4-1_i386.deb
Files: 
 805d7b1ca17855efe031a1d1ae94998c 1783 web optional kdewebdev_4.8.4-1.dsc
 abb166cdd4cb9c67ac683e9b883503d2 2603352 web optional 
kdewebdev_4.8.4.orig.tar.xz
 66ed87be0384138c8b4e542e70724348 7976 web optional 
kdewebdev_4.8.4-1.debian.tar.gz
 4bae59dd7e3f89bfa227ac4c952a58b7 5730 kde optional kdewebdev_4.8.4-1_all.deb
 711539dfb1185d775ef6a4237b9e 475374 kde optional 
kfilereplace_4.8.4-1_i386.deb
 80d1ebdd2e847dc3586656bb737488fe 615170 editors optional 
kimagemapeditor_4.8.4-1_i386.deb
 690a767fa0bc24a4711d5ccb23347bd7 648934 web optional 
klinkstatus_4.8.4-1_i386.deb
 557927958e423f09549259e3f9e95405 335896 devel optional 
kommander_4.8.4-1_i386.deb
 56a3bda8d57388b353d051e0eea8fdb4 10672158 debug extra 
kdewebdev-dbg_4.8.4-1_i386.deb

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

iEYEARECAAYFAk/gKAcACgkQnMvaFgH6i0pj7ACgh2ItlULAUA/BfNNFY7ncv5xh
9tcAn0Sn7WX3H0T6T0RGB9DUEiQCsrPs
=p0Hc
-END PGP SIGNATURE-


Accepted:
kdewebdev-dbg_4.8.4-1_i386.deb
  to main/k/kdewebdev/kdewebdev-dbg_4.8.4-1_i386.deb
kdewebdev_4.8.4-1.debian.tar.gz
  to main/k/kdewebdev/kdewebdev_4.8.4-1.debian.tar.gz
kdewebdev_4.8.4-1.dsc
  to main/k/kdewebdev/kdewebdev_4.8.4-1.dsc
kdewebdev_4.8.4-1_all.deb
  to main/k/kdewebdev/kdewebdev_4.8.4-1_all.deb
kdewebdev_4.8.4.orig.tar.xz
  to main/k/kdewebdev/kdewebdev_4.8.4.orig.tar.xz
kfilereplace_4.8.4-1_i386.deb
  to main/k/kdewebdev/kfilereplace_4.8.4-1_i386.deb
kimagemapeditor_4.8.4-1_i386.deb
  to main/k/kdewebdev/kimagemapeditor_4.8.4-1_i386.deb
klinkstatus_4.8.4-1_i386.deb
  to main/k/kdewebdev/klinkstatus_4.8.4-1_i386.deb
kommander_4.8.4-1_i386.deb
  to main/k/kdewebdev/kommander_4.8.4-1_i386.deb


-- 
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/e1sgsvc-0006nx...@franck.debian.org



Accepted nova 2012.1-7 (source all)

2012-06-19 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 18 Jun 2012 12:34:40 +
Source: nova
Binary: python-nova nova-common nova-compute nova-compute-lxc nova-compute-uml 
nova-compute-xen nova-compute-qemu nova-compute-kvm nova-scheduler nova-volume 
nova-api nova-network nova-objectstore nova-console nova-cert nova-xcp-plugins 
nova-xcp-network nova-doc nova-xvpvncproxy nova-api-metadata 
nova-api-os-compute nova-api-os-volume nova-api-ec2
Architecture: source all
Version: 2012.1-7
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 nova-api   - OpenStack Compute - compute API frontend
 nova-api-ec2 - OpenStack Compute - EC2 API frontend
 nova-api-metadata - OpenStack Compute - metadata API frontend
 nova-api-os-compute - OpenStack Compute - compute API frontend
 nova-api-os-volume - OpenStack Compute - Volume API frontend
 nova-cert  - OpenStack Compute - certificate manager
 nova-common - OpenStack Compute - common files
 nova-compute - OpenStack Compute - compute node
 nova-compute-kvm - OpenStack Compute - compute node (KVM)
 nova-compute-lxc - OpenStack Compute - compute node (LXC)
 nova-compute-qemu - OpenStack Compute - compute node (QEmu)
 nova-compute-uml - OpenStack Compute - compute node (UserModeLinux)
 nova-compute-xen - OpenStack Compute - compute node (Xen)
 nova-console - OpenStack Compute - console
 nova-doc   - OpenStack Compute - documentation
 nova-network - OpenStack Compute - network manager
 nova-objectstore - OpenStack Compute - object store
 nova-scheduler - OpenStack Compute - virtual machine scheduler
 nova-volume - OpenStack Compute - storage
 nova-xcp-network - OpenStack Compute network plugin for the Xen Cloud Platform
 nova-xcp-plugins - OpenStack Compute plugin for the Xen Cloud Platform
 nova-xvpvncproxy - OpenStack Compute - XVP VNC proxy
 python-nova - OpenStack Compute - libraries
Closes: 675136 677031 677364 677400 677798
Changes: 
 nova (2012.1-7) unstable; urgency=low
 .
   * Fixes prompting due to modified conffiles (Closes: #677400).
   * File /etc/default/nova-common isn't a conffile anymore as well.
   * Removed libvirt-type flag in nova-compute-xen nova-compute.conf, since we
   are using XenAPI and not libvirt.
   * Now configuring XenAPI URL, user and password through Debconf.
   * Makes replacements in nova.conf accept spaces, dashes and tabs.
   * Added initial Swedish debconf translation thanks to Martin Bagge
   brot...@bsnet.se (Closes: #677031).
   * Added initial Dutch debconf translation thanks to Jeroen Schot
   sc...@a-eskwadraat.nl (Closes: #677364).
   * Added initial Danish debconf translation thanks to Joe Dalton
   joedalt...@yahoo.dk (Closes: #677798).
   * Applied debian/control and debian/*.templates from debian-l10n-english
   (Closes: #675136).
Checksums-Sha1: 
 1fc3db6565d82c01937719824a2850af79e39a10 3033 nova_2012.1-7.dsc
 841439ee5a8429cf0bf2fa8c61c2a171da679841 41632 nova_2012.1-7.debian.tar.gz
 4cc5b62af7020e32986440b8b0cd895e327cad9a 1767814 python-nova_2012.1-7_all.deb
 13e8ed4c73456b5167739313563461fd04205839 36046 nova-common_2012.1-7_all.deb
 f2d5f936f59253dad6ca386a341027d40362ced8 15618 nova-compute_2012.1-7_all.deb
 fe4508eeca22e4e3cdec8e78ca7defa290fb4ffc 10882 
nova-compute-lxc_2012.1-7_all.deb
 4a1bd06f646ecf6cd7e3b2a8ab3a3a07a5f2e367 10900 
nova-compute-uml_2012.1-7_all.deb
 9b9cae246b674b4305725a1b95152f42083c6fc7 11920 
nova-compute-xen_2012.1-7_all.deb
 ca951b97d80ca64d648ac4143bafa5803238aeb8 10798 
nova-compute-qemu_2012.1-7_all.deb
 fe74188465f0f7626648d3e3a63b20fc83aa8f0d 10884 
nova-compute-kvm_2012.1-7_all.deb
 f49451815f02a1d5959279270789b79b31e52c18 13370 nova-scheduler_2012.1-7_all.deb
 e3b61084dcc2f7927def3944bef4699cba515e4d 14274 nova-volume_2012.1-7_all.deb
 89a94c7a1db714c76348701392b0a0dfde7d02e3 13262 nova-api_2012.1-7_all.deb
 9024ab4d69ed5483ebce7aa3cd23888452f24d3f 16118 nova-network_2012.1-7_all.deb
 4a04e5b2621cc632a9e92a260ea9e367281a1dd5 13476 
nova-objectstore_2012.1-7_all.deb
 bc116a557be322c8ac2e0d94a363f2cf69d4e8b7 13964 nova-console_2012.1-7_all.deb
 3968871be9e1da4052f750f69726923ad6e2a270 13336 nova-cert_2012.1-7_all.deb
 2c70d65f660ba1f2fe561d5b2e3cca3b8eb21e3b 33462 
nova-xcp-plugins_2012.1-7_all.deb
 fe84b65d69acdcf087f7d45bf62af5d07b0c 17954 
nova-xcp-network_2012.1-7_all.deb
 9d0a3751bfdf153d0ac9eb05e98897176e89b6f2 1706410 nova-doc_2012.1-7_all.deb
 a3304c8d1992b729463434980436b33a28d2b259 13260 
nova-xvpvncproxy_2012.1-7_all.deb
 d407bacd44ed42d7c985d8140f07c68ca55c6c00 13164 
nova-api-metadata_2012.1-7_all.deb
 920a04d6c5730d4ad5ba06aac132c378c623af4e 13174 
nova-api-os-compute_2012.1-7_all.deb
 881dabe2064b2f987889d22b999d0859866c482f 13178 
nova-api-os-volume_2012.1-7_all.deb
 7f79d38ce884f783f4142ec8b921325c23b03a5d 13138 nova-api-ec2_2012.1-7_all.deb
Checksums-Sha256: 
 e11aedcef0f70d3dd2e580a1f095832ad077719c814b85828bcf48791acd76c0 3033 

Accepted stealth 2.10.00-1 (source all amd64)

2012-06-19 Thread Frank B. Brokken
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 16 Jun 2012 16:03:36 +0200
Source: stealth
Binary: stealth stealth-doc
Architecture: source amd64 all
Version: 2.10.00-1
Distribution: unstable
Urgency: low
Maintainer: Frank B. Brokken f.b.brok...@rug.nl
Changed-By: Frank B. Brokken f.b.brok...@rug.nl
Description: 
 stealth- stealthy File Integrity Checker
 stealth-doc - stealthy File Integrity Checker
Changes: 
 stealth (2.10.00-1) unstable; urgency=low
 .
   * New upstream release
 + new option --reload and supports skipping directories
   * Added relro to LDFLAGS
Checksums-Sha1: 
 64ef3f8bc09266e6c135cf308e318b2eef125ca9 2165 stealth_2.10.00-1.dsc
 9188fc97c8881b320b5c23e3aff36e4ca0b265a8 92877 stealth_2.10.00.orig.tar.gz
 2eab00a25f30a5a8565e7616635b7c8d69ac98b3 8966 stealth_2.10.00-1.debian.tar.gz
 8e4a90aa92c2ee4f1c44731cf4ed1b0c4dddadbc 87504 stealth_2.10.00-1_amd64.deb
 a8b16311e0c06d11ddcfea0760a0e0e89125b537 420466 stealth-doc_2.10.00-1_all.deb
Checksums-Sha256: 
 369443b3ff211fab987b017dc8402264c8e39964473fe159b5972aa26ca9c327 2165 
stealth_2.10.00-1.dsc
 78cd899cbb486d8b11454b8dd1a713532a27d6160c878529d6e96dc167de1a78 92877 
stealth_2.10.00.orig.tar.gz
 e893ee8637100b40f990660b371ee0ca778c0a837bff5e79e79c88e3f1e9d99d 8966 
stealth_2.10.00-1.debian.tar.gz
 995667b6594aec6aca2fc61455b06f639400b87e12b11d27f15b205a47f11531 87504 
stealth_2.10.00-1_amd64.deb
 a2b7eeb757b64a9f7710208113f4135153ecc7e6d2ce9cd1c8d6227bc6ca3431 420466 
stealth-doc_2.10.00-1_all.deb
Files: 
 2beb2c869856962cab6099e0e062daa3 2165 admin optional stealth_2.10.00-1.dsc
 04dd71f3fba67eed3c74d5f305549411 92877 admin optional 
stealth_2.10.00.orig.tar.gz
 0602202e5a51637733442e60a4855d5e 8966 admin optional 
stealth_2.10.00-1.debian.tar.gz
 7048283e2a99865ce7aef905816ace98 87504 admin optional 
stealth_2.10.00-1_amd64.deb
 dd58805cc3d06911cddda0f4ab105c4e 420466 doc optional 
stealth-doc_2.10.00-1_all.deb

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

iQIcBAEBAgAGBQJP4CfwAAoJEBxXDIkOS9CreSAP/jEmX9m3v7xnsuV6MEQ/TV/8
otT4zLRgUe7JC4UnMvVmYJlaBys+vcxlJL5AJdTef3s//BU+weXoyKiSayqQoRcE
kbeARUHc3VaqCVyn5asAuBMd3LzEB+SS5y0rEnqhuxG7eBgqeuR1vmi/5qpc1D0R
1aKd7npgRWlp7CFgEVgpl628D3dNK5vHI9fytQ9/qzsOsBK3uzW0lJ+ietGEnPLq
NSVz8ZjD2z+KwLmZSP92WqL4bC/5Y89CxjWTPU0erSA+4trDrLZ0NrLfbOqAS20s
yuFReuBRDUcvwXMasCe74+GqC21ASZG1N60AeZH2cNiJ9XltMaiSOWaXQdFLQGhY
Nz8KnWpUVgvz+TFKR5z25HDOBny1vIRVWBIFuCfkHPao7W/Ur3/sJe61I20d6mV+
wkE5C7pdSkhq57vY7gOlH2UZecAXB3MFhp0g/19SqghFlf6r+OJ/iiRfpPHYX3sc
MCXnHNJpiFZTNzO7NZxYrU+Ate7z5FBT2lotZYb1Q7/uPLvhALCFTfxmOBIUN+P4
wCBYvq9UAp+a6DvM1Df2etA//KaO7LAf8I6ShgUmnbapU6jMGMq7Nfkkez+wiUFZ
V3hugZsS4osrNDzwcMJm+40HS4wnx0U872sPNwlhtHQuD4v7NRBy85B/pQ/LANYI
3rzoXz9qH4Ngg0za1Nd+
=wiWc
-END PGP SIGNATURE-


Accepted:
stealth-doc_2.10.00-1_all.deb
  to main/s/stealth/stealth-doc_2.10.00-1_all.deb
stealth_2.10.00-1.debian.tar.gz
  to main/s/stealth/stealth_2.10.00-1.debian.tar.gz
stealth_2.10.00-1.dsc
  to main/s/stealth/stealth_2.10.00-1.dsc
stealth_2.10.00-1_amd64.deb
  to main/s/stealth/stealth_2.10.00-1_amd64.deb
stealth_2.10.00.orig.tar.gz
  to main/s/stealth/stealth_2.10.00.orig.tar.gz


-- 
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/e1sgswy-0006ri...@franck.debian.org



Accepted kig 4:4.8.4-1 (source i386)

2012-06-19 Thread Debian Qt/KDE Maintainers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 17 Jun 2012 22:57:06 +0200
Source: kig
Binary: kig
Architecture: source i386
Version: 4:4.8.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Description: 
 kig- interactive geometry tool for KDE
Changes: 
 kig (4:4.8.4-1) unstable; urgency=low
 .
   * New upstrem release.
 .
   [ Eshat Cakar ]
   * Bump kde-sc-dev-latest build dependency to 4:4.8.4.
   * Bump kdelibs5-dev build dependency to 4:4.8.
   * Add watch file.
   * Bump Standards-Version to 3.9.3, no further changes.
   * Remove obsolete not-installed file.
Checksums-Sha1: 
 25ba67905bb2002f0792f24a6df51985b36e7f8c 1354 kig_4.8.4-1.dsc
 dcbde5fbb34e0c569a2ef95a328cf69a924cd38e 1529956 kig_4.8.4.orig.tar.xz
 27ab06a0524d8bd1e2ea2ee0b8da9d5c10374ca4 3006 kig_4.8.4-1.debian.tar.gz
 cc2bd3156dec0b01d8f0cffa3d9f9dcd54ab9894 1887014 kig_4.8.4-1_i386.deb
Checksums-Sha256: 
 dde87de801c6d618e1211feeba42fc7ba2f26661e05be0503c4667514d1fbcec 1354 
kig_4.8.4-1.dsc
 3bfae143adb3252a0b7280f072701fb85b649ba22e659032c10d1d194e9d7431 1529956 
kig_4.8.4.orig.tar.xz
 1e0e88dc08addb3820178f313287000757277be3dcd5a5ac86b016d7d534d889 3006 
kig_4.8.4-1.debian.tar.gz
 81dbe2322069bc5067cbd3fe183b9412f31df49d665d92a3d9045ea9aa880dd5 1887014 
kig_4.8.4-1_i386.deb
Files: 
 14ff5b4dd1549ed7e9c14c9f075cc378 1354 kde optional kig_4.8.4-1.dsc
 aadc1387787100f7798cf54123a90d30 1529956 kde optional kig_4.8.4.orig.tar.xz
 52a8b15df64c597ae43843c590454c37 3006 kde optional kig_4.8.4-1.debian.tar.gz
 9fd725af29e9d98e5f464e16cd203511 1887014 math optional kig_4.8.4-1_i386.deb

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

iEYEARECAAYFAk/gLToACgkQnMvaFgH6i0qLCACdEBc1C4knK6Y0VPkn3/PekA0Q
4foAoI6qetp3/fVKo5bs1Q5bzhYBFmTf
=70N1
-END PGP SIGNATURE-


Accepted:
kig_4.8.4-1.debian.tar.gz
  to main/k/kig/kig_4.8.4-1.debian.tar.gz
kig_4.8.4-1.dsc
  to main/k/kig/kig_4.8.4-1.dsc
kig_4.8.4-1_i386.deb
  to main/k/kig/kig_4.8.4-1_i386.deb
kig_4.8.4.orig.tar.xz
  to main/k/kig/kig_4.8.4.orig.tar.xz


-- 
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/e1sgtbw-000799...@franck.debian.org



Accepted asm2 2.2.3-6 (source all)

2012-06-19 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 10:29:46 +0200
Source: asm2
Binary: libasm2-java libasm2-java-doc
Architecture: source all
Version: 2.2.3-6
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Niels Thykier ni...@thykier.net
Description: 
 libasm2-java - Java bytecode manipulation framework
 libasm2-java-doc - Documentation for ASM, the Java(TM) bytecode manipulation 
framewo
Closes: 567266
Changes: 
 asm2 (2.2.3-6) unstable; urgency=low
 .
   * Team upload.
   * Recommend default-jdk-doc instead of depending on specific
 javadoc providing packages.  (Closes: #567266)
Checksums-Sha1: 
 13ea0a47eb13731b2ab78a419eb19db77bf04d80 2051 asm2_2.2.3-6.dsc
 6b8140b0d53a802fd6854d3a32460b5253ffb9a8 5915 asm2_2.2.3-6.debian.tar.gz
 e0a4ea15ae99bf8e585a46458d3cda92a4252bcf 163216 libasm2-java_2.2.3-6_all.deb
 cd020b4b2a77207999d7084da05f7a9fe5743ea9 349892 
libasm2-java-doc_2.2.3-6_all.deb
Checksums-Sha256: 
 7438daca1d586a903c0d93c06bc4483d2b1a156c4d4f0a37079315aeef9fd00a 2051 
asm2_2.2.3-6.dsc
 c9b96b17522a5fa75db54315510cb16f228f6a1be81222785310e7c1e75345c5 5915 
asm2_2.2.3-6.debian.tar.gz
 0ddcafdd0b9a61c5d05bfefe585db48ef7b3016cc3d4126c95a1bf6766dc88f1 163216 
libasm2-java_2.2.3-6_all.deb
 c7da3bf689bf3439f0ab8b802eccee881798a28ef2b6c3eb85e0860d067f6160 349892 
libasm2-java-doc_2.2.3-6_all.deb
Files: 
 1e8e09e66c9f6cb8c279a907e889e05b 2051 java optional asm2_2.2.3-6.dsc
 562e60243d1113df187bb1317af3b1d3 5915 java optional asm2_2.2.3-6.debian.tar.gz
 211aea0d8b918d18bb6f4479e07a7771 163216 java optional 
libasm2-java_2.2.3-6_all.deb
 ebd28e25df380d0db3124ae7e7cfc4d7 349892 doc optional 
libasm2-java-doc_2.2.3-6_all.deb

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

iQIcBAEBCAAGBQJP4D3GAAoJEAVLu599gGRChDIQAJ8J7UMgCfWC68xDFRnsq0VA
2nisGAmYqz0L2H/y3AAh+Zwc6FZUw/h2CtslUZr+3pda7VEVxQzYUqc8o9T8kkvA
jlDHZtwCreSmScJv4F7gDL1Ee3zUeuFNFNWvOB25N3feFtuOz4ILt8pEGBa2PKTj
O5Jw4JOM/JE6Jjw/2SJFGGQ3C7SnSa20HM/otpw5uDeG4OdcU9pgAE4x/WXgTD3L
+/5Rg8X4w3hu80pvAYtwngiVYwUZzCUP36EdnN+2iQVhp6MAwOpJeEKGRS2010j0
17+LbJ+W3qlDuTU0P+tQBsX6owMQf4YNxMVYJ5pIPR0ncyB5zcV67zjPMajb+bHu
V7exSiAai/qPiJLoTcQyZcb10mtedACnbtjrKdUvB7FWsAm8+8V7DUIWqUfQGu2E
xDBc0OPfkFEe1aOwe2m4gGscb1m078TbloCNsPcf9/8CCwsDDXx7NwTCTsTu1wke
YD0UNyzw2KoCxrBfv0Y9j6OPp/9gUI2Kh2S06rVjQjJFNRkiEkC1EMWnCf2FznzC
sQ1B6z/VJluGAUPQaXK+pZp6AkDpaGcqGLQDAbf1z/H9AESNQ6P5xT/WWpHeqQme
z/3UxBgt1HE4u1254dyPLknklSWjjaI7KKXGaT77wrOsQY+0baZLACkOYFVVLzo8
a+mtYYcX8mWrB/O292Or
=QGkb
-END PGP SIGNATURE-


Accepted:
asm2_2.2.3-6.debian.tar.gz
  to main/a/asm2/asm2_2.2.3-6.debian.tar.gz
asm2_2.2.3-6.dsc
  to main/a/asm2/asm2_2.2.3-6.dsc
libasm2-java-doc_2.2.3-6_all.deb
  to main/a/asm2/libasm2-java-doc_2.2.3-6_all.deb
libasm2-java_2.2.3-6_all.deb
  to main/a/asm2/libasm2-java_2.2.3-6_all.deb


-- 
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/e1sgukf-0002af...@franck.debian.org



Accepted c-ares 1.9.1-2 (source amd64)

2012-06-19 Thread Gregor Jasny
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 09:43:09 +0200
Source: c-ares
Binary: libc-ares-dev libc-ares2
Architecture: source amd64
Version: 1.9.1-2
Distribution: unstable
Urgency: low
Maintainer: Andreas Schuldei andr...@debian.org
Changed-By: Gregor Jasny gja...@googlemail.com
Description: 
 libc-ares-dev - library for asynchronous name resolves (development files)
 libc-ares2 - library for asynchronous name resolves
Changes: 
 c-ares (1.9.1-2) unstable; urgency=low
 .
   * Remove ares_free_soa declaration from ares.h
Checksums-Sha1: 
 c8f49cd7efff2e79e599f3cac545feed22ab2ff4 1954 c-ares_1.9.1-2.dsc
 29db2b48640d0a88c0171b6f085b75b73e0574d8 4891 c-ares_1.9.1-2.debian.tar.gz
 5baa00e4267117547f589065ded43dc5b9e99740 140920 libc-ares-dev_1.9.1-2_amd64.deb
 9cb9099efff60c054d9dff3d0afd50304956d018 74178 libc-ares2_1.9.1-2_amd64.deb
Checksums-Sha256: 
 e82f054be0cbbb1f6af63f8c1f82ca86f84665208bbd06eb594625dc517b66c3 1954 
c-ares_1.9.1-2.dsc
 f29a0fb592e1c59c60e0511ded6c65a326551c0f6f92b0773318dac7dfe07410 4891 
c-ares_1.9.1-2.debian.tar.gz
 f1474687b6e2366d1860a19f91eb01ce3e811f12b47aedefb108c42d2d54584d 140920 
libc-ares-dev_1.9.1-2_amd64.deb
 b60efe83e0dbfb7d0e2ea9bafa67ef9546406563326e18fbf32a5b96db14e176 74178 
libc-ares2_1.9.1-2_amd64.deb
Files: 
 c667ad2f74c1040769a90609a597d863 1954 libs extra c-ares_1.9.1-2.dsc
 e0fa5c7e27aa5f9c3aec834217c2b620 4891 libs extra c-ares_1.9.1-2.debian.tar.gz
 17e11abe02a0b4a3bb5b319ffa39c6d3 140920 libdevel extra 
libc-ares-dev_1.9.1-2_amd64.deb
 3760ee143f9fed65f0deaaca89faf06b 74178 libs extra libc-ares2_1.9.1-2_amd64.deb

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

iQIcBAEBCAAGBQJP4C/RAAoJEBmaZPrftQD/oU8QALQlPLmk5hqKyyVDNLEjKguN
WeFJqHGeSKypP9i2q7n0FVF5LJNaxSIy9lNa8Ny1rKBRpDj/cuLLXiTOa3vFxaLM
WIc4W+g8MUyhbI4j/UZBkkK1mxEcZxCaRlf7uo+S6ZgX59Svh1bS8tpYYZPp0MHJ
e48r2ii8g6jlsgfpMVDfWcRv1EQrnzLZ5TMNx8uXYeUaNp5fpWJ5+n34LbPb9i7d
MpaQgpIiohGUDlm3ulkTTjhCFlnN2mkYe+abTYzbvt/J4RvvtcfxMRtcr4SuB42q
kucpOhbowcHBMoU9FGlWA8gintmN8VQF/3HarbiVMut8RcfHJ/eLhEYj0NlCD+hT
EE9k7YiNGQxs11Qi18P4rjwAbimh+ipPOf5tO3mlbkMHPqs5SYdbNdjPX/ZqTDWA
350xvecyM8Q2Z8HJJvwuqTBjnSeDq3Fy2sHCat0QSq+MVK9ASMXJD1h79KCcTD/j
wX2/J7Rxe+/jegtDtlgymchuWvV9SQtj0fZNZDSvNUbbso6UHUqYc9iQultl89gK
A96thK/DZHGGrDkWsub/2T3e+vQ8Eq1Sn8iH8JjjajQ7+eIzgNXde5JhesBkeh85
/w9n+mEXJvEnfoa4r5GFr4ifwCXhAa89PamUbbi1Lc+Sb5FmFjZ1Ony2lV4+/iCJ
nTL/H88PTnwq8xu55XBo
=Qhnj
-END PGP SIGNATURE-


Accepted:
c-ares_1.9.1-2.debian.tar.gz
  to main/c/c-ares/c-ares_1.9.1-2.debian.tar.gz
c-ares_1.9.1-2.dsc
  to main/c/c-ares/c-ares_1.9.1-2.dsc
libc-ares-dev_1.9.1-2_amd64.deb
  to main/c/c-ares/libc-ares-dev_1.9.1-2_amd64.deb
libc-ares2_1.9.1-2_amd64.deb
  to main/c/c-ares/libc-ares2_1.9.1-2_amd64.deb


-- 
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/e1sguku-0002ax...@franck.debian.org



Accepted colt 1.2.0~nojar-2 (source all)

2012-06-19 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 09:46:59 +0200
Source: colt
Binary: libcolt-java libcolt-java-doc
Architecture: source all
Version: 1.2.0~nojar-2
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 libcolt-java - scalable scientific and technical computing in Java
 libcolt-java-doc - scalable scientific and technical computing in Java (doc)
Changes: 
 colt (1.2.0~nojar-2) unstable; urgency=low
 .
   * debian/control:
  - Pure Java is arch: all
  - Standards-Version: 3.9.3 (no changes needed)
   * debhelper 9 (control+compat)
Checksums-Sha1: 
 759475ff3e2505505c95d0b994d1d0b62ffc5628 1488 colt_1.2.0~nojar-2.dsc
 381976ac91fbace1c596100f42a63d7b028cbdb6 3744 colt_1.2.0~nojar-2.debian.tar.gz
 13d83a085a2c51a9bbc54625f9da6caa03f8b2b8 543894 
libcolt-java_1.2.0~nojar-2_all.deb
 2c9959b0d7e427549293e778ebb796dc18e5e648 1195592 
libcolt-java-doc_1.2.0~nojar-2_all.deb
Checksums-Sha256: 
 5d99e9f3fb295affe2dd418660e3b8b8ea99e4ef848c580141705f60395dc495 1488 
colt_1.2.0~nojar-2.dsc
 676cf77127ba99a1e2453df2bbaca2fa50e9d49186f7ef3fef03c6a47d1d410a 3744 
colt_1.2.0~nojar-2.debian.tar.gz
 0c866f3f8ac83633bfd5d09352144cb353b7ec9b1630a7850368922039615f55 543894 
libcolt-java_1.2.0~nojar-2_all.deb
 f8487b52ae2a0ea51de0859ca60f973ac96966f8d2ec766272dbfc4c1a5973c3 1195592 
libcolt-java-doc_1.2.0~nojar-2_all.deb
Files: 
 c612b0c15c1df685e0f2883e0149d299 1488 non-free/java optional 
colt_1.2.0~nojar-2.dsc
 f80302e1d97c0e97f53e1ed3f4428d4c 3744 non-free/java optional 
colt_1.2.0~nojar-2.debian.tar.gz
 63e12e33a8d377e839dade35e8b33a82 543894 non-free/java optional 
libcolt-java_1.2.0~nojar-2_all.deb
 9e8d272bb5f3b9589e4d3a899d93c85a 1195592 non-free/doc optional 
libcolt-java-doc_1.2.0~nojar-2_all.deb

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

iEYEARECAAYFAk/gL88ACgkQYDBbMcCf01pB9gCgppq0cYH7OSnuD07xKqWMK+we
a+4AoJtXHt2iGm2OMp1NhS+l22ftrJdJ
=cGfp
-END PGP SIGNATURE-


Accepted:
colt_1.2.0~nojar-2.debian.tar.gz
  to non-free/c/colt/colt_1.2.0~nojar-2.debian.tar.gz
colt_1.2.0~nojar-2.dsc
  to non-free/c/colt/colt_1.2.0~nojar-2.dsc
libcolt-java-doc_1.2.0~nojar-2_all.deb
  to non-free/c/colt/libcolt-java-doc_1.2.0~nojar-2_all.deb
libcolt-java_1.2.0~nojar-2_all.deb
  to non-free/c/colt/libcolt-java_1.2.0~nojar-2_all.deb


-- 
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/e1sguki-0002cg...@franck.debian.org



Accepted tuareg-mode 1:2.0.6-2 (source all)

2012-06-19 Thread Ralf Treinen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 09:46:23 +0200
Source: tuareg-mode
Binary: tuareg-mode
Architecture: source all
Version: 1:2.0.6-2
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 tuareg-mode - emacs-mode for ocaml programs
Closes: 676858 676860
Changes: 
 tuareg-mode (1:2.0.6-2) unstable; urgency=low
 .
   * debian/emacsen-install: fix tuareg-use-smie (f - nil). Thanks to
 Kevin Ryde (closes: #676860).
   * debian control: first choice of emacsen is emacs23, not xemacs21
   * new patch emacs21: add an (required 'derived) in case it is not loaded,
 needed by emacs21. Thanks to Kevin Ryde for the patch (closes: #676858).
Checksums-Sha1: 
 268ca7d69e2168c9b37ac960d653c2c5c75de239 1437 tuareg-mode_2.0.6-2.dsc
 4f635770069821c199897a42bdc65187136984b3 8817 tuareg-mode_2.0.6-2.debian.tar.gz
 b69e2f5d10fa7a10271710360caebcfe0811f0d4 65124 tuareg-mode_2.0.6-2_all.deb
Checksums-Sha256: 
 dded30b1653571cc66f0cd0470529f5cd492f602ac2d8d1304ee29fa6143f842 1437 
tuareg-mode_2.0.6-2.dsc
 54cec2e525a2912909e98b7feb64dbb225063b989d17d2670c527bc5689130c1 8817 
tuareg-mode_2.0.6-2.debian.tar.gz
 8bbf330034878c25178327f6af98fe3f8ca1cea066b839dca13edbf24bf4946b 65124 
tuareg-mode_2.0.6-2_all.deb
Files: 
 10f9157bdc63e80b6d89d0ee3320878d 1437 ocaml optional tuareg-mode_2.0.6-2.dsc
 1b39e2f0da651ca6c065bab74ba106cd 8817 ocaml optional 
tuareg-mode_2.0.6-2.debian.tar.gz
 353f74a736f1957936a8f49bd9b9cb27 65124 ocaml optional 
tuareg-mode_2.0.6-2_all.deb

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

iEYEARECAAYFAk/gMLgACgkQtzWmSeC6BMHS2wCg/dRlTzbhnEQ562V29ZThT667
rVIAoKjsd2PMmQ8GCdhHVy/dVbyi84/U
=c/gM
-END PGP SIGNATURE-


Accepted:
tuareg-mode_2.0.6-2.debian.tar.gz
  to main/t/tuareg-mode/tuareg-mode_2.0.6-2.debian.tar.gz
tuareg-mode_2.0.6-2.dsc
  to main/t/tuareg-mode/tuareg-mode_2.0.6-2.dsc
tuareg-mode_2.0.6-2_all.deb
  to main/t/tuareg-mode/tuareg-mode_2.0.6-2_all.deb


-- 
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/e1sguzn-0005lm...@franck.debian.org



Accepted jftp 1.52+dfsg-2 (source all)

2012-06-19 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 11:11:01 +0200
Source: jftp
Binary: jftp
Architecture: source all
Version: 1.52+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Debian Java maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Niels Thykier ni...@thykier.net
Description: 
 jftp   - Java GUI client for FTP, SMB, SFTP and NFS
Changes: 
 jftp (1.52+dfsg-2) unstable; urgency=low
 .
   * Add openjdk-7-jre as alternative to openjdk-6-jre.
Checksums-Sha1: 
 1bfbf42de1134a277063618d87648b9542279be9 2160 jftp_1.52+dfsg-2.dsc
 7af06308cfa6e32b130093d8252d5f36047c31c6 19569 jftp_1.52+dfsg-2.debian.tar.gz
 a0483d873f4bb6084201de42690b842c9ab251ad 468872 jftp_1.52+dfsg-2_all.deb
Checksums-Sha256: 
 928bd0902a8e9d9b76e4a6bc07e383fa51b8d4b9677457b9438c865417b5cc11 2160 
jftp_1.52+dfsg-2.dsc
 fe0db1d75653d965c4b854efc57449f20e39723b8e50957811493e5814415d7c 19569 
jftp_1.52+dfsg-2.debian.tar.gz
 eb3c7f2379a86d1c462b6f0d15efeaa5b9b002a39d12f0152ee487ac2260ef2b 468872 
jftp_1.52+dfsg-2_all.deb
Files: 
 edfe58ece6baf9d9ef8db434b6b15614 2160 net optional jftp_1.52+dfsg-2.dsc
 a09fd9cde41ff0202d4799b8a598ecfb 19569 net optional 
jftp_1.52+dfsg-2.debian.tar.gz
 fccb01f7356765f5bf081bbf1d372805 468872 net optional jftp_1.52+dfsg-2_all.deb

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

iQIcBAEBCAAGBQJP4EJrAAoJEAVLu599gGRCkhAP/0JwqG/ZnrQQzbXf0O6R17eq
yYdOBGzPMaP6zoS0AVYMTZbWemAsJlpCP8bx5AV0i49f0Y2A+ISXMOF0IAdTAtak
TsB+xjyQns/S1J8gXS8w0ye7srh7yyG796QgmhM61hF44NJtEDcuUFJ9I/Ewh0qp
KrHVxmX8xokezzbB7HlnUwfbRHEq/MpBR1RDX6FqYQyFJJe90v3SOvcjQLzh5beF
IDKRqWOKSTFQMBvr5vhUyBJrJAt3Mx3gbh4l9IoblDpgt5I82SKhv7xVr95sw18d
2syjM0AW6QHoGMuz2OA8p1fHlRbRxZ3+wvq36lA8UVL2hQPCzF4SElsgEFjM4my2
9Q55IbystzmvMghOyrVFt4DNvxYgVU4yl7TI22L0KROHpUd1QaRd41BFSkIhNPi7
xJ5lhzxMov4qNwCjiiRuChoBguFItnsgSB/ruMJLHqWouhwGsR82HalwPveXstxY
rFfuTGHdHnmkP2cM6pn7BQZq28Zdp5FybepeGGTc6ymk4PHKfJLe7gIf11yfXlRZ
Go/FjQbh6mKSntuN1Dwfjc2lh12h6uw3ck2vceNOf2QVnbm2Wd0iu3TbzVNp9Jlc
eHpTyJlu3qW/IpyAAj50iZH0ju7FyvvmrIwxZJ2cVZo4Cor/QVDK3s2T01uQahES
fOa2zfMM1kAvpQNfYCDN
=daXv
-END PGP SIGNATURE-


Accepted:
jftp_1.52+dfsg-2.debian.tar.gz
  to main/j/jftp/jftp_1.52+dfsg-2.debian.tar.gz
jftp_1.52+dfsg-2.dsc
  to main/j/jftp/jftp_1.52+dfsg-2.dsc
jftp_1.52+dfsg-2_all.deb
  to main/j/jftp/jftp_1.52+dfsg-2_all.deb


-- 
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/e1sgunw-0001nq...@franck.debian.org



Accepted libgadu 1:1.11.2-1 (source all amd64)

2012-06-19 Thread Marcin Owsiany
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 10:16:35 +0100
Source: libgadu
Binary: libgadu3 libgadu3-dbg libgadu-dev libgadu-doc
Architecture: source amd64 all
Version: 1:1.11.2-1
Distribution: unstable
Urgency: medium
Maintainer: Marcin Owsiany porri...@debian.org
Changed-By: Marcin Owsiany porri...@debian.org
Description: 
 libgadu-dev - Gadu-Gadu protocol library - development files
 libgadu-doc - Gadu-Gadu protocol library - documentation
 libgadu3   - Gadu-Gadu protocol library - runtime files
 libgadu3-dbg - Gadu-Gadu protocol library - debug symbols
Changes: 
 libgadu (1:1.11.2-1) unstable; urgency=medium
 .
   * New upstream release
 - contains a fix for threading issues in some clients
   * Pass dpkg-buildflags output to configure.
Checksums-Sha1: 
 0af6a440651a39d7440262b72159cbce6bb532d8 1736 libgadu_1.11.2-1.dsc
 f2b87a51722437ebcacf58d1c3de45aea0c176cb 209392 libgadu_1.11.2.orig.tar.gz
 d9245a5e372102ff25a1fa8ef83a51ae255588aa 7856 libgadu_1.11.2-1.debian.tar.gz
 34403d596a844d5880c6fe46272ac361b48eef63 76092 libgadu3_1.11.2-1_amd64.deb
 9ce0cdaaf17ab1342747f2459f1abcf7d50c1e4b 157248 libgadu3-dbg_1.11.2-1_amd64.deb
 0bf0b628ea24bff9cade1c15fbb7779430e25c19 100056 libgadu-dev_1.11.2-1_amd64.deb
 342f5da130f8c0ef89fad9e2b787f717b286f08f 555730 libgadu-doc_1.11.2-1_all.deb
Checksums-Sha256: 
 1380eafa02d3cc287ddee9e9159371cdf5371f4ac4b13a8014c85c2166c91785 1736 
libgadu_1.11.2-1.dsc
 9b8fe851e17df1585acd384d1a8a56750d9ebdf784bc3d2ef2c2dbf106c15ff9 209392 
libgadu_1.11.2.orig.tar.gz
 788902a91fb1bb3163eaa4972daa76d2e794c120956cb4a8e57d55d83947759e 7856 
libgadu_1.11.2-1.debian.tar.gz
 65c7b10bc7e5f808edc3923220ec4cb641104f1251631fb3fda4c8bf3d6095c1 76092 
libgadu3_1.11.2-1_amd64.deb
 99ccab738f52b5b2c3aeab367af0f98a48c57ca3552026a1b85e7e04e7006e7c 157248 
libgadu3-dbg_1.11.2-1_amd64.deb
 6da9f240ef1e6ac112377d68939131a9fe2317aa883d5d2494303edaec86c8db 100056 
libgadu-dev_1.11.2-1_amd64.deb
 1a7db89f8a5c5708b70cdb42f488ab99a80937e1447fbcb55f45f8d54d26f462 555730 
libgadu-doc_1.11.2-1_all.deb
Files: 
 6887d8715deb6281c133b17badabb0e1 1736 libs optional libgadu_1.11.2-1.dsc
 954cb32aa59e590c27c52a8baf03f094 209392 libs optional 
libgadu_1.11.2.orig.tar.gz
 c5a22a24e78118ea72b6b39b3cdc5fb6 7856 libs optional 
libgadu_1.11.2-1.debian.tar.gz
 244a874a7e3152f58f1ac6090da3ded2 76092 libs optional 
libgadu3_1.11.2-1_amd64.deb
 9101e6315dcd1d78ff3d446859f5a953 157248 debug extra 
libgadu3-dbg_1.11.2-1_amd64.deb
 0bf8080e93c952644e6b7c24e680ad4e 100056 libdevel optional 
libgadu-dev_1.11.2-1_amd64.deb
 6bec3cdf02d26151b5a6a6fa6cfa76c4 555730 doc optional 
libgadu-doc_1.11.2-1_all.deb

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

iQEcBAEBCAAGBQJP4EUCAAoJENv0gMYC+Ub8/s8H/3dp7gKxzycRWEj9cWSLDWON
wEVSJeSRQPjfVSFi3nvJ5ox8jnE/K3BUgFaP4gPwcBxDiueW92AUAeqiMboWpAHZ
3C5h5zN+k05wGAuWxzLkqqeOFz+IsPmT19q+t5MRMbj2K5b/RNh5KX2Advi6Ceep
qBH5AlAhAG1zu+J+3nrhmdnjyAAVqm3h1Kz2Ije9rWBaWQRmqhgJFb80+7SVP6Ku
TGrrPAWURayRpsLtA2hioq6X7W2B8uf6GkO/eCXZ5ch7qDEc/rr5vMF61/P1bjGe
K8CDbbjb349wSdpRtDFvBXNs7R75RQPsmBVEvrPr+BXXM4MvYL4gLLdcu3ON4ao=
=3KZU
-END PGP SIGNATURE-


Accepted:
libgadu-dev_1.11.2-1_amd64.deb
  to main/libg/libgadu/libgadu-dev_1.11.2-1_amd64.deb
libgadu-doc_1.11.2-1_all.deb
  to main/libg/libgadu/libgadu-doc_1.11.2-1_all.deb
libgadu3-dbg_1.11.2-1_amd64.deb
  to main/libg/libgadu/libgadu3-dbg_1.11.2-1_amd64.deb
libgadu3_1.11.2-1_amd64.deb
  to main/libg/libgadu/libgadu3_1.11.2-1_amd64.deb
libgadu_1.11.2-1.debian.tar.gz
  to main/libg/libgadu/libgadu_1.11.2-1.debian.tar.gz
libgadu_1.11.2-1.dsc
  to main/libg/libgadu/libgadu_1.11.2-1.dsc
libgadu_1.11.2.orig.tar.gz
  to main/libg/libgadu/libgadu_1.11.2.orig.tar.gz


-- 
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/e1sguog-0001xi...@franck.debian.org



Accepted zonecheck 3.0.3-2 (source all)

2012-06-19 Thread Sebastien Delafond
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 18 Jun 2012 15:44:33 +0200
Source: zonecheck
Binary: zonecheck zonecheck-cgi
Architecture: source all
Version: 3.0.3-2
Distribution: unstable
Urgency: low
Maintainer: Sebastien Delafond s...@debian.org
Changed-By: Sebastien Delafond s...@debian.org
Description: 
 zonecheck  - DNS configuration checker
 zonecheck-cgi - DNS configuration checker (web interface)
Closes: 676109 676173
Changes: 
 zonecheck (3.0.3-2) unstable; urgency=low
 .
   * Fix problems related to ruby 1.9, thanks to patches from Antonio
 Terceiro terce...@debian.org (Closes: #676109, #676173)
   * Bump-up Standards revision.
Checksums-Sha1: 
 a5146690b7024897f653ac66943ce22752dc 1152 zonecheck_3.0.3-2.dsc
 04c8c16968654fb5fcc9fcaeda4b99c643d888f1 12163 zonecheck_3.0.3-2.debian.tar.gz
 ea073f02b5fcb6e5fe231606f881637ce29a3825 192398 zonecheck_3.0.3-2_all.deb
 14479b263bf423ab8edb733358f8a2e0ade949bd 37690 zonecheck-cgi_3.0.3-2_all.deb
Checksums-Sha256: 
 54bd424d8194a409c0a0e39bcf4e41dba33cf06e46ab0cd0b198b4b6ef76 1152 
zonecheck_3.0.3-2.dsc
 69df261372f712cb9aad51602bd34df5164a5e13556858083e3c8152622ea421 12163 
zonecheck_3.0.3-2.debian.tar.gz
 ef22ec30398c6a370823e4eabf81ab84ad99cfff5ab80e2ec9f0b09c63a8716f 192398 
zonecheck_3.0.3-2_all.deb
 4b2dec34465d6445a161c19a50b3421d4e1a142f4d11f3131d460c3cb072743a 37690 
zonecheck-cgi_3.0.3-2_all.deb
Files: 
 a8caa6232edab00faa5f92508c726e04 1152 net optional zonecheck_3.0.3-2.dsc
 9673380aff0cdb1ac20267e57bff3d31 12163 net optional 
zonecheck_3.0.3-2.debian.tar.gz
 8b4b417a3f752ec798fb5246ef092cd4 192398 net optional zonecheck_3.0.3-2_all.deb
 90dba7125522654ff8cee10f5b0481f9 37690 net optional 
zonecheck-cgi_3.0.3-2_all.deb

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

iEYEARECAAYFAk/fMpAACgkQiZgNKcDdyD9+AgCeLHSOaT0bPgkQD6VCK0Pqorcz
41UAn3CIiHocrpk+Ysioy8QWT7MkDcU3
=6x8Y
-END PGP SIGNATURE-


Accepted:
zonecheck-cgi_3.0.3-2_all.deb
  to main/z/zonecheck/zonecheck-cgi_3.0.3-2_all.deb
zonecheck_3.0.3-2.debian.tar.gz
  to main/z/zonecheck/zonecheck_3.0.3-2.debian.tar.gz
zonecheck_3.0.3-2.dsc
  to main/z/zonecheck/zonecheck_3.0.3-2.dsc
zonecheck_3.0.3-2_all.deb
  to main/z/zonecheck/zonecheck_3.0.3-2_all.deb


-- 
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/e1sgv4d-0004lz...@franck.debian.org



Accepted javatools 0.42 (source all)

2012-06-19 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 11:48:47 +0200
Source: javatools
Binary: jarwrapper javahelper java-propose-classpath
Architecture: source all
Version: 0.42
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Niels Thykier ni...@thykier.net
Description: 
 jarwrapper - Run executable Java .jar files
 java-propose-classpath - Helper script to suggest a classpath for jar files
 javahelper - Helper scripts for packaging Java programs
Changes: 
 javatools (0.42) unstable; urgency=low
 .
   * Add support for Java7 in jh_depends.  The jvm open now
 defaults to any OpenJDK version.  The open6 and open7
 values can be used to depend on a specific one.
Checksums-Sha1: 
 35476acd486426ee18c3946b641f649caa24354b 1827 javatools_0.42.dsc
 89bb5b0a57bc4b1d916e95cde2202420f4ef2265 55599 javatools_0.42.tar.gz
 e84a2963f8f8e55eef48a2ef082ce3443f422dcf 15966 jarwrapper_0.42_all.deb
 4fa77923714ff930744db61b850f88e6f1c579fa 87694 javahelper_0.42_all.deb
 7ed00799134b73652007cf985507cca9b2c3aa29 13144 
java-propose-classpath_0.42_all.deb
Checksums-Sha256: 
 e65cb5fc88a205cd01bde990934505c0e87b6a9b94416458ebf8ad2262f8e096 1827 
javatools_0.42.dsc
 8e6a80ab4e9ee7e209a0a380a14a375326a137c538627f3b5f8fed070b6c09ec 55599 
javatools_0.42.tar.gz
 4350aca61b831d82cca0fdcc4733cd8cdeefabd02e24b36221564dc338082403 15966 
jarwrapper_0.42_all.deb
 5a4fff81e7916ae7f75e7abad998bf1566a2f69c1563e8f7788cd6ecfc9fc191 87694 
javahelper_0.42_all.deb
 686fe0e408d11891f529b8519b3253c8f7e26ec0211db0ec0925a79614f9b92b 13144 
java-propose-classpath_0.42_all.deb
Files: 
 bbff5ae01c28678235d085f11cb47119 1827 java optional javatools_0.42.dsc
 2cb4f0d4d0bca57442d42235154fb169 55599 java optional javatools_0.42.tar.gz
 54c49660dea2a7e39d0c0d31cde306c2 15966 java optional jarwrapper_0.42_all.deb
 59dccfd4a7974dd173e4ab368b23dac8 87694 java optional javahelper_0.42_all.deb
 0f3506d6fd8f65f03c1ec2c546c2a443 13144 java optional 
java-propose-classpath_0.42_all.deb

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

iQIcBAEBCAAGBQJP4EvuAAoJEAVLu599gGRCQmwP/1wtqVGcvEIqdTJnBEOrej6R
WAyTi+AYJYQ53qs/ci0gF/FLihGlbbrvYlshVVHTQUGwS+/GYombhzzsVJpbRLLV
txmXkczjYlyWEhySyStF9Xurp4/UXdqZdJjUxVx+fWYCx2CZviZVLgG2dmZoWdNF
vkZJae6I4jgqan2ZZa3GH7zWd0Sewj/851szHL2vCtGT4fdfCcodEmjC0ZKc+5L1
Os+Qnd55iyiYGFcgRcLXr8wim9sDN9/BwNhBxnBFds6vrl1bwk+qEkydUxjxACs3
rEUbkg9adxgbQoPhu5cLOAqU4xeaiML1wf6IoarsI2UhhTf+M56rFBfqhubykrBg
UWx8syRtIIlLlDPG4wx/8ExsR6mP73f1SdC5KeTuwIm4ufu+EJ3rDCaNztkvxWXG
Xh52NT31dJCau7GwbWAEmyLxp1PN526r50btjoxAU89zy+uc1qK3SzX6bmjEo+Ve
YBTNTrfPfHkB5r9f31z3fD++bI57XUiQh1UqnQgoW8BYtBXyaOqJH2CuNMZzlJYg
Hh0VYjUPs3/gQ8fxJgpIg5qL2iKhY2Sl8YJQZc5P2DD+7quhW4zgOW2iIHneSd5k
5eVPY8scksNc2Uo/KjZtZ+8jDpdqubeOYaLbrfbdwwIwQHiYu+9LxDF4Wf0wtggc
ONG/PkWhhI86zt15DRYN
=tyx9
-END PGP SIGNATURE-


Accepted:
jarwrapper_0.42_all.deb
  to main/j/javatools/jarwrapper_0.42_all.deb
java-propose-classpath_0.42_all.deb
  to main/j/javatools/java-propose-classpath_0.42_all.deb
javahelper_0.42_all.deb
  to main/j/javatools/javahelper_0.42_all.deb
javatools_0.42.dsc
  to main/j/javatools/javatools_0.42.dsc
javatools_0.42.tar.gz
  to main/j/javatools/javatools_0.42.tar.gz


-- 
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/e1sgvgf-0008k1...@franck.debian.org



Accepted octave-vrml 1.0.13-1 (source all)

2012-06-19 Thread Sébastien Villemot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 09:50:20 +
Source: octave-vrml
Binary: octave-vrml
Architecture: source all
Version: 1.0.13-1
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group pkg-octave-de...@lists.alioth.debian.org
Changed-By: Sébastien Villemot sebastien.ville...@ens.fr
Description: 
 octave-vrml - VRML functions for Octave
Changes: 
 octave-vrml (1.0.13-1) unstable; urgency=low
 .
   [ Rafael Laboissiere ]
   * Imported Upstream version 1.0.13
   * Drop patch remove_broken_files (applied upstream)
   * Drop patch remove_unused_files (applied upstream)
   * Refresh patch whitedune_for_freewrl for new upstream release
   * Drop patch structure_initialization (applied upstream)
   * Drop patch add_private_functions (fixed upstream)
   * Add patch autoload-yes
   * Build the HowTo documentation in PDF form
   * Drop the dependency on octave-linear-algebra
   * debian/copyright: Reflect upstream changes
Checksums-Sha1: 
 c849eaba4cba90f297c323cc4339fb9bf8160610 2085 octave-vrml_1.0.13-1.dsc
 3f88e92b45ae0790751889fefbfc2b8adf2e4fc4 1115406 octave-vrml_1.0.13.orig.tar.gz
 4fe73e03f321cb20ace757563ecc84c8aee917aa 4417 
octave-vrml_1.0.13-1.debian.tar.gz
 38f5d3e53bc247ba43d5179d1b75d5afca2e7d67 375842 octave-vrml_1.0.13-1_all.deb
Checksums-Sha256: 
 6095cb021504b19090b1e70efd722de5c2ef64a9e4ae51d1a928c03cf66fec33 2085 
octave-vrml_1.0.13-1.dsc
 c45357d47382b22a37dded72888c34a3839ff608baedbfea11ed2950c21ca9d7 1115406 
octave-vrml_1.0.13.orig.tar.gz
 28e19ab033f3498f3f930507d40dcc3be6f61fb78ea8ac46bc6bd5d0480c0dcc 4417 
octave-vrml_1.0.13-1.debian.tar.gz
 990dd9de09c5c6a953ef6e6d986f272bfebd2ced5e54faee0cee40a223405b62 375842 
octave-vrml_1.0.13-1_all.deb
Files: 
 9a831a0e332aa7b0c1e223069d16e45a 2085 math optional octave-vrml_1.0.13-1.dsc
 79df290cea3f45e49eb58bfc664679b1 1115406 math optional 
octave-vrml_1.0.13.orig.tar.gz
 0f508fd3e97b7a68d2b5476eab2a5159 4417 math optional 
octave-vrml_1.0.13-1.debian.tar.gz
 1a394b770700811b16af8f0bcc5b12a2 375842 math optional 
octave-vrml_1.0.13-1_all.deb

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

iQIcBAEBCAAGBQJP4ExHAAoJECzs6TUOzr5KMK0P+wW8nBf9bul8MJN14QVAcDug
TdJCf1pOrt7B9RTN0GL+OPQJ7jfDfJlezqDrkjJkaOnNpfBjVDZFLXb6ulUQetFF
BFdIENX3BoU7ZfDonkG6c3/LEyY1nGescrD3ek7Qqda3X95ujyVyvpULK3q16Orh
l+mpg0LPoy5xOL6NFDMoCRr+hU1OsTEEs33WjRxg47KLkzmOYeHmFqsEM6feV7mP
1f3zFYOkqD1MeZLCjRebOgrFE4L1apTI5SdNE4ezQILy1h976oe0pfQtDpnP3obe
bkpdQR+BjAXHtxRT9ihbaSzS/LSCDwJW/uD9NiAg9PRFwoUGvb/OObaQpdiH5f1L
0yd5O9e5QuI4FIBJPgFCZzLjUa1pP8kPnmeVEgb3J8c26B/WraBdJduXYxY3T5Uq
ZxN5A57kEslY79wsDTI1w6BMznP2q8u/2w4hQtbmI+J5ZNcJCNy0qHmr20P6Ony4
30fS/26H4MmSA8w0e7tC1Ef+ZbyV+pmMZCeyLwaVnxRN5fK4OfLcAy8FG3bS9XtY
KCGX2tSTXcTSxzhJ+30Cz4zVNkcNxXKo26iYnN3/wNRbVBSNHQ3UExXGUIeRgxam
Nq0UGH5ObMzMtVlK4r3FhF1/jvYOCtBBkXkjS/XJHhOF5AR3bgHLff3B8QgM2CUo
qE0R7bnbte1Tc1kbZkn4
=jVQO
-END PGP SIGNATURE-


Accepted:
octave-vrml_1.0.13-1.debian.tar.gz
  to main/o/octave-vrml/octave-vrml_1.0.13-1.debian.tar.gz
octave-vrml_1.0.13-1.dsc
  to main/o/octave-vrml/octave-vrml_1.0.13-1.dsc
octave-vrml_1.0.13-1_all.deb
  to main/o/octave-vrml/octave-vrml_1.0.13-1_all.deb
octave-vrml_1.0.13.orig.tar.gz
  to main/o/octave-vrml/octave-vrml_1.0.13.orig.tar.gz


-- 
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/e1sgvio-no...@franck.debian.org



Accepted pdf-presenter-console 3.0-1 (source amd64)

2012-06-19 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 18 Jun 2012 16:03:34 +0100
Source: pdf-presenter-console
Binary: pdf-presenter-console
Architecture: source amd64
Version: 3.0-1
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter b...@debian.org
Changed-By: Barak A. Pearlmutter b...@debian.org
Description: 
 pdf-presenter-console - multi-monitor presentation tool (ala Keynote) for PDF 
files
Changes: 
 pdf-presenter-console (3.0-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 4c7a57a0117accddd057566dcc05c807e7adb65c 1449 pdf-presenter-console_3.0-1.dsc
 5e4a2d43bc0739002738501aa6a28efd526b34d4 179077 
pdf-presenter-console_3.0.orig.tar.gz
 a14c8bfaabdebb3160a27829af914d7dbd15c66e 28967 
pdf-presenter-console_3.0-1.debian.tar.gz
 6dc786db9e5d377ec62c376c6f1d72e43b0ba584 90410 
pdf-presenter-console_3.0-1_amd64.deb
Checksums-Sha256: 
 8f5e36d3fa5081cf5faeccc87abc966807228a6a0a120c178be5dd4117c3471d 1449 
pdf-presenter-console_3.0-1.dsc
 32e9f2a852362cfc5893feea95fa1f38ea69472a5bb5a285811aafb680eb07a5 179077 
pdf-presenter-console_3.0.orig.tar.gz
 acc56711bd2c2becd8eea525ed71f24332a3238341f9e93511245bca0d58f584 28967 
pdf-presenter-console_3.0-1.debian.tar.gz
 6c46c8dad47ecffe1c711d52b90be113f2a461954a699909b49a1a156c9e4b00 90410 
pdf-presenter-console_3.0-1_amd64.deb
Files: 
 83b9172ca4fba8917bd683d29580dfb4 1449 graphics extra 
pdf-presenter-console_3.0-1.dsc
 7002c80eb56f17313e2fb218ec4fa343 179077 graphics extra 
pdf-presenter-console_3.0.orig.tar.gz
 3f7043cafc6e0f572c3d5bdb879a8a1f 28967 graphics extra 
pdf-presenter-console_3.0-1.debian.tar.gz
 7d23bd41481f39f6bcf30699d4d54c3a 90410 graphics extra 
pdf-presenter-console_3.0-1_amd64.deb

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

iEYEARECAAYFAk/gTF4ACgkQLz4Gnv7CP7K0swCg12x6IY+1R3bTcluSwZTeWqNi
UnUAnimM2aXm/dFA+emqtMVx1mtinMWB
=vocB
-END PGP SIGNATURE-


Accepted:
pdf-presenter-console_3.0-1.debian.tar.gz
  to main/p/pdf-presenter-console/pdf-presenter-console_3.0-1.debian.tar.gz
pdf-presenter-console_3.0-1.dsc
  to main/p/pdf-presenter-console/pdf-presenter-console_3.0-1.dsc
pdf-presenter-console_3.0-1_amd64.deb
  to main/p/pdf-presenter-console/pdf-presenter-console_3.0-1_amd64.deb
pdf-presenter-console_3.0.orig.tar.gz
  to main/p/pdf-presenter-console/pdf-presenter-console_3.0.orig.tar.gz


-- 
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/e1sgviz-op...@franck.debian.org



Accepted pymca 4.6.0-1 (source i386 all)

2012-06-19 Thread Picca Frédéric-Emmanuel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 18 Jun 2012 21:18:07 +0200
Source: pymca
Binary: pymca pymca-data
Architecture: source i386 all
Version: 4.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Picca Frédéric-Emmanuel pi...@debian.org
Description: 
 pymca  - Python applications and toolkit for X-ray fluorescence analysis
 pymca-data - Architecture independent data files for PyMca
Changes: 
 pymca (4.6.0-1) unstable; urgency=low
 .
   * Imported Upstream version 4.6.0
   * debian/patches
 - 0001-Hardcode-correct-Debian-paths-to-executable-scripts.patch (renamed)
   0001-install-the-data-at-the-right-place.patch
 - 0002-Various-build-system-fixes.patch (deleted)
 - 0003-feature-forwarded-missing-EADL97_KShellConstants.dat.patch (deleted)
   * debian/rules
 - execute the unit tests just for information now.
Checksums-Sha1: 
 cd4ade6f4115bca9d18297ca8cf991ade56cc22c 1439 pymca_4.6.0-1.dsc
 90b97beb071279f73f9b1a26ebfcc290e3cc5434 15987057 pymca_4.6.0.orig.tar.gz
 efafa314554b1b9efcc30aef665a3fdbfd253979 16158 pymca_4.6.0-1.debian.tar.gz
 1a5a037a70b34e950ee7412782e34d84228b8948 1588862 pymca_4.6.0-1_i386.deb
 23936142d94b3a09bc13158f9c9bc0a0e61ed6a9 8496616 pymca-data_4.6.0-1_all.deb
Checksums-Sha256: 
 9944a3261dab6066380c64ddc7e7a763395307c47cf3c1948e05e50ca3cad57d 1439 
pymca_4.6.0-1.dsc
 12f5bcbd0ecefe88da436e224ba8d59c0320f505020e56401b05d03b748ba0a0 15987057 
pymca_4.6.0.orig.tar.gz
 fb583609a7ef96bab4f973479bc93e9388b5893ddd6bed664664fcbc8f528dcc 16158 
pymca_4.6.0-1.debian.tar.gz
 d1ccf2ed2347a6e24eccf7308e79b8c9168b49deec6f2fc963c6442784780c9d 1588862 
pymca_4.6.0-1_i386.deb
 1ea95aaef4d2ab31d456676d7e8fa08c216c8da162576ecc867a373a2834e4ef 8496616 
pymca-data_4.6.0-1_all.deb
Files: 
 5f396abdbad2bc388a725ac88c0c558d 1439 science extra pymca_4.6.0-1.dsc
 0522603a781e312f90a67c39dffbfdb8 15987057 science extra pymca_4.6.0.orig.tar.gz
 df1691e8f50df9b334d9850c1572b554 16158 science extra 
pymca_4.6.0-1.debian.tar.gz
 73e3ea21c77d8acf5246ea6a3c009c45 1588862 science extra pymca_4.6.0-1_i386.deb
 a72438395c2209885e0b19f4034d2a67 8496616 science extra 
pymca-data_4.6.0-1_all.deb

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

iEYEARECAAYFAk/gVB8ACgkQtqm6aqWbEXH20QCfZDnT3j6CdYfxrJyf6vOg/69B
piEAniz1x7FjVuChSAST8eLf8dMO/Fu3
=3AUK
-END PGP SIGNATURE-


Accepted:
pymca-data_4.6.0-1_all.deb
  to main/p/pymca/pymca-data_4.6.0-1_all.deb
pymca_4.6.0-1.debian.tar.gz
  to main/p/pymca/pymca_4.6.0-1.debian.tar.gz
pymca_4.6.0-1.dsc
  to main/p/pymca/pymca_4.6.0-1.dsc
pymca_4.6.0-1_i386.deb
  to main/p/pymca/pymca_4.6.0-1_i386.deb
pymca_4.6.0.orig.tar.gz
  to main/p/pymca/pymca_4.6.0.orig.tar.gz


-- 
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/e1sgvjd-qh...@franck.debian.org



Accepted dbus-java 2.8-3 (source all)

2012-06-19 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 12:00:13 +0200
Source: dbus-java
Binary: libdbus-java dbus-java-bin libdbus-java-doc
Architecture: source all
Version: 2.8-3
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainer pkg-java-maintain...@lists.alioth.org
Changed-By: Niels Thykier ni...@thykier.net
Description: 
 dbus-java-bin - simple interprocess messaging system (Java Binaries)
 libdbus-java - simple interprocess messaging system (Java implementation)
 libdbus-java-doc - simple interprocess messaging system (Java interface 
documentatio
Changes: 
 dbus-java (2.8-3) unstable; urgency=low
 .
   * Team upload.
   * Bump build dependency on javahelper to allow OpenJDK-7 as
 alternative to OpenJDK-6.
   * Remove stamp file in clean rule.
Checksums-Sha1: 
 74e0d1a1d2a5c100239c7d03b6079f1735f76fc2 2259 dbus-java_2.8-3.dsc
 a8f64f83e3d9bb44b9c0ff3f24e4fe00da88d45a 7956 dbus-java_2.8-3.debian.tar.gz
 b05f292693d4e046d1b266eec951d7bd44c90938 152522 libdbus-java_2.8-3_all.deb
 f7ec35eea1fd8a4972e8d986eb3086438bbb2853 76062 dbus-java-bin_2.8-3_all.deb
 54434fcd05eab7eea3042a37ad541e854ab82451 524906 libdbus-java-doc_2.8-3_all.deb
Checksums-Sha256: 
 f258554ac681e5ecd557df1514cc3c1ec0e6e7477f73672bca03f4e0433e0f68 2259 
dbus-java_2.8-3.dsc
 1e725ca1f7ce8e24d007bdd65022d79ea2c9c9408d95ce190fa6ee46a5b62e5f 7956 
dbus-java_2.8-3.debian.tar.gz
 4960f0cac174acf5b6ee367dfab3f530bb4146ad33264b7d1f97a92b0b97bbe0 152522 
libdbus-java_2.8-3_all.deb
 c5023e12c864afb5f7b9dc009a8aace146814c7d47b010e9e3e227b59de398ce 76062 
dbus-java-bin_2.8-3_all.deb
 86e5c887f5eb1aba7a994c9b96ccae74114c64b52ce2400364d135b3557edbdb 524906 
libdbus-java-doc_2.8-3_all.deb
Files: 
 7a7a65370ee9578fc7744f633de3bebc 2259 java optional dbus-java_2.8-3.dsc
 53d9979edae5a02d3481d6bbc28ba2b0 7956 java optional 
dbus-java_2.8-3.debian.tar.gz
 c9781b91ed9b26a4dca87d4a71513d44 152522 java optional 
libdbus-java_2.8-3_all.deb
 d06baf54328e118dd6307613a313ce57 76062 utils optional 
dbus-java-bin_2.8-3_all.deb
 45c465ba36837c6a740700b065562c0e 524906 doc optional 
libdbus-java-doc_2.8-3_all.deb

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

iQIcBAEBCAAGBQJP4E5QAAoJEAVLu599gGRCqFsQAIkxK9XZYdOT0mscUimuDDsC
NBlSNDwPp9vyQFfKKMayC4QqaH8vtGjEoboG6av1qgJ4ytL7pT4uYjTgHvqlORJg
PoT8dIIVDavpPvX+sMwTEH68KIOem0Vnf6qlSp+WKnu1TuCL60Jmxxtl6Q47IZo3
1Wen+nJay3zYNDj5VwrFQ/e0K/OtIgknlIO9MCBi51EWl3wE+JRCplrGVS5AzI4r
9Ae54nk25Dxd6l9HEJWS7XACJISjI31Emutsbow37fXYbpAAaVHPwvBiTMPtVoNT
lds+96qFLkkxEpx2+kivglciWeO8EJldAJ7l7kyxibv5LDu/pB1ezAPkI13EGYkD
iaMoml5s73o1DCWp/ER2Cg8sbBdrvI9xU2vxYSnM5wlsCpzd1hi5rlamnDwa/y4k
pTdgSyHRVxjZhIFUxNmXudnNYqIuKIOa0L0qo4On92+olflIAWMcOPFncxbKyMRD
Z0+FKwz71O0fekOkrZ836oJhei8kuGHS5hicKebmuxLRT5tRdy0LHiVerZvfpwP8
FkqqQE+m2c7VJ3ANCE2ayeib/R2ySVr3OJdK6magZFBw3PJfeZjXPYPFQQcMvEMB
rttm5ocEjuXhdcFec5QiKQ0cKj4UQrPBzA3znXrGWicKacxX5ESwml2RWb+MRqYO
uLIABoeX0jCWpjCvIpEJ
=w3PM
-END PGP SIGNATURE-


Accepted:
dbus-java-bin_2.8-3_all.deb
  to main/d/dbus-java/dbus-java-bin_2.8-3_all.deb
dbus-java_2.8-3.debian.tar.gz
  to main/d/dbus-java/dbus-java_2.8-3.debian.tar.gz
dbus-java_2.8-3.dsc
  to main/d/dbus-java/dbus-java_2.8-3.dsc
libdbus-java-doc_2.8-3_all.deb
  to main/d/dbus-java/libdbus-java-doc_2.8-3_all.deb
libdbus-java_2.8-3_all.deb
  to main/d/dbus-java/libdbus-java_2.8-3_all.deb


-- 
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/e1sgvv8-0002x5...@franck.debian.org



Accepted docbook-slides-demo 3.4.0-1 (source all)

2012-06-19 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 12:11:15 +0200
Source: docbook-slides-demo
Binary: docbook-slides-demo
Architecture: source all
Version: 3.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian XML/SGML Group debian-xml-sgml-p...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 docbook-slides-demo - Demo presentation slides for the docbook-slides package
Changes: 
 docbook-slides-demo (3.4.0-1) unstable; urgency=low
 .
   * New upstream: 3.4.0
 - Adapt to new layout
   * Add get-orig-source target in d/rules
Checksums-Sha1: 
 13ddbc4848243f9c6950bb77c5808bfec5b6a467 2065 docbook-slides-demo_3.4.0-1.dsc
 aa39146159468f5ca1018d81f869c31430067177 82662 
docbook-slides-demo_3.4.0.orig.tar.bz2
 0c59183ff0ae8704eae16ad0bbc6da94c92ad81b 2629 
docbook-slides-demo_3.4.0-1.debian.tar.gz
 86faf8c758e2a51495147eaeb260476ab882c39e 122566 
docbook-slides-demo_3.4.0-1_all.deb
Checksums-Sha256: 
 5cf9e99226b5d61e72ffe4f4c96a502e73cc619c99fcfbb6c05963a456a5376b 2065 
docbook-slides-demo_3.4.0-1.dsc
 d4d123983136c674de89ae2fd02e28acb38dbda9edd19587b2f43baaf70d4306 82662 
docbook-slides-demo_3.4.0.orig.tar.bz2
 e6235f1caef7de6ff737a99cb6c01496a83d20ec0de20cdf6782faf29a461bc8 2629 
docbook-slides-demo_3.4.0-1.debian.tar.gz
 8bee12a355f16cfd458a7ba0da3f8506b717cd7aa06c9c500f8aaaecb3d7ddd9 122566 
docbook-slides-demo_3.4.0-1_all.deb
Files: 
 21e53d86ba55b11c659566e22996b4e1 2065 doc optional 
docbook-slides-demo_3.4.0-1.dsc
 794c5a42d8f05bf7c4eb43181f750eb0 82662 doc optional 
docbook-slides-demo_3.4.0.orig.tar.bz2
 a315a1a21dfa446e4d6eeb4fd6c144b8 2629 doc optional 
docbook-slides-demo_3.4.0-1.debian.tar.gz
 74c51a06e0d2a5ed5bb482f13c75bba7 122566 doc optional 
docbook-slides-demo_3.4.0-1_all.deb

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

iQIcBAEBAgAGBQJP4FH6AAoJEAFx4YKK4JNFyXsQAJobN2JxDUiNERXTTyR33SNA
ykQI76oLBLlBGxk3i2BHgn97bVOhZ4pIIqEHFkia0iGCMtZMI2LCTsjTycTDM+jY
92fx6g2V7+H8ei6jvW4+ScgaBd2NUPWTWeLoVyePEYOdtiilHXpjIeZAxBlwYgSn
ArMH5288LC0RdlAVQscWwHEDsQ5jjgXK9WmqarPH5/qTkEzqxJfwyUjuxZ87BfFY
KR2QXqOs4F0uttsbOrCvc2c1AcQ5tvAsUid/TI5Lg+XxjGofBey5BpY9yQNJbNGA
DJV42PBAsxAvSoGGtGsyrvyEn3OBRdIJonKZm8U5daaXbX22f7YJKx4TRyzJ74dV
AhaGM7hfh9bVHelOnF0VuC+4BXZVQ1jgD31KQjH441wvRoieFSN1fWpJlsLjMy4z
pFkYAU5qAxlhyrCL9VIG6CG0fHF2ddSRBCpQvot1yqpxtFrHixu8h/3kAFRvj3JM
tCkEL5iSHj414MpQh8u57zMnu62vHQNsI2xPGrMtuCBoEJ9iI4+bKxo4vzlN4KUi
3TEgr+Q8TgujZNTzVJ6mmsOPUHd78l/asW7CeFEmtKK3kPtjexY5jBY1uPU4KBJD
U98d3akvptTLN3xJK/WyoFQXJJIsKq/svBFC2KtQqXk4jPWJZepTMD8iFrNQLH7X
inlLQBFd9tiZqyA7Rk3Y
=ijYa
-END PGP SIGNATURE-


Accepted:
docbook-slides-demo_3.4.0-1.debian.tar.gz
  to main/d/docbook-slides-demo/docbook-slides-demo_3.4.0-1.debian.tar.gz
docbook-slides-demo_3.4.0-1.dsc
  to main/d/docbook-slides-demo/docbook-slides-demo_3.4.0-1.dsc
docbook-slides-demo_3.4.0-1_all.deb
  to main/d/docbook-slides-demo/docbook-slides-demo_3.4.0-1_all.deb
docbook-slides-demo_3.4.0.orig.tar.bz2
  to main/d/docbook-slides-demo/docbook-slides-demo_3.4.0.orig.tar.bz2


-- 
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/e1sgvjf-0005qx...@franck.debian.org



Accepted hg-fast-export 20120618-1 (source all)

2012-06-19 Thread Andrey Rahmatullin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 18 Jun 2012 15:09:29 +0600
Source: hg-fast-export
Binary: hg-fast-export
Architecture: source all
Version: 20120618-1
Distribution: unstable
Urgency: low
Maintainer: Andrey Rahmatullin w...@wrar.name
Changed-By: Andrey Rahmatullin w...@wrar.name
Description: 
 hg-fast-export - mercurial to git converter using git-fast-import
Changes: 
 hg-fast-export (20120618-1) unstable; urgency=low
 .
   * New upstream snapshot
   * Update git-hg from https://github.com/cosmin/git-hg/tree/96cb6a7b and
 update debian/git-hg.1
   * Update debian/hg-fast-export.1
   * Bump Standards-Version: to 3.9.3 (no change needed)
Checksums-Sha1: 
 62f38afdb243784db68c2f7be459cfedb019d450 1301 hg-fast-export_20120618-1.dsc
 89b7a995bda2025cd190e6509147cf2099bdabe4 13787 
hg-fast-export_20120618.orig.tar.gz
 83527bb5d67e2791cc86964dac3203cde3d93bbd 6546 
hg-fast-export_20120618-1.debian.tar.gz
 20307cb069d9b97fb28028f6fe99fef438b0d237 17094 
hg-fast-export_20120618-1_all.deb
Checksums-Sha256: 
 a868bcb1c35496e9fdd98ec0de1acc9d15588c8a3f100f5f6e5b7ca0daca87a2 1301 
hg-fast-export_20120618-1.dsc
 e07808942ea2d19a2bcbeb0caede1a16252ccdf484cc65734d13c53e137bf972 13787 
hg-fast-export_20120618.orig.tar.gz
 492be0d2c46eef642c857f3e4eda9c730e4033d28a1b2673d393324973faed2e 6546 
hg-fast-export_20120618-1.debian.tar.gz
 e69076f8c3cb75065da157e61e02fb65e851408248d7346660b55a05f3631b4e 17094 
hg-fast-export_20120618-1_all.deb
Files: 
 5fdc38dfb96dca939850ffb70fdcd9bd 1301 vcs optional 
hg-fast-export_20120618-1.dsc
 a9710b0ba56a4546374675271842d255 13787 vcs optional 
hg-fast-export_20120618.orig.tar.gz
 963307513f8ff83796b00b8bb4561f1a 6546 vcs optional 
hg-fast-export_20120618-1.debian.tar.gz
 8145f3b198443cee9433184eed0b727d 17094 vcs optional 
hg-fast-export_20120618-1_all.deb

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

iEYEARECAAYFAk/gUx0ACgkQLz4Gnv7CP7KYYwCguSjUHobuCGIQFCIIgDHQuVnT
DcQAoJ0KBv0Ex2jiN+6ln2+jTIa8hR5+
=q/Ha
-END PGP SIGNATURE-


Accepted:
hg-fast-export_20120618-1.debian.tar.gz
  to main/h/hg-fast-export/hg-fast-export_20120618-1.debian.tar.gz
hg-fast-export_20120618-1.dsc
  to main/h/hg-fast-export/hg-fast-export_20120618-1.dsc
hg-fast-export_20120618-1_all.deb
  to main/h/hg-fast-export/hg-fast-export_20120618-1_all.deb
hg-fast-export_20120618.orig.tar.gz
  to main/h/hg-fast-export/hg-fast-export_20120618.orig.tar.gz


-- 
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/e1sgvjr-0005sb...@franck.debian.org



Accepted mess 0.146-1 (source all amd64)

2012-06-19 Thread Jordi Mallach
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 11:10:20 +0200
Source: mess
Binary: mame-tools mess mess-data xmame-tools xmess-sdl xmess-x sdlmame-tools
Architecture: source amd64 all
Version: 0.146-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Jordi Mallach jo...@debian.org
Description: 
 mame-tools - Tools for MAME and MESS
 mess   - Multi Emulator Super System (MESS)
 mess-data  - Data files for the Multi Emulator Super System (MESS)
 sdlmame-tools - Transitional package for sdlmame-tools
 xmame-tools - Transitional package for mame-tools
 xmess-sdl  - Transitional package for xmess-sdl
 xmess-x- Transitional package for xmess-x
Changes: 
 mess (0.146-1) unstable; urgency=low
 .
   [ Emmanuel Kasper ]
   * New upstream release
   * Add DM-Upload-Allowed: yes to debian/control
   * Switch to http://www.progettosnaps.net/MESS/src/ for get-orig-source
   * Drop patches to link with flac and jpeg system lib: this has been pushed
 upstream by Cesare Falco.
   * Remove fix_mame_manpage_section.patch as it was unused
 .
   [ Jordi Mallach ]
   * Drop d/source/format and use standard compression for debian tar.
Checksums-Sha1: 
 4b4256363125cd7e6deaf5601c97aa6a0e55397a 1853 mess_0.146-1.dsc
 ce6e3d07919eb1205f18c317fe6c9423b5eee736 35163140 mess_0.146.orig.tar.xz
 48180fb99574333e4ce9635a941fc5078b439e80 58738 mess_0.146-1.debian.tar.gz
 c254d384f45bc266ff51569ccb5c0b2b1115a727 1020128 mame-tools_0.146-1_amd64.deb
 32e14aaab78469f1f56f84e22d09c92596507931 10271642 mess_0.146-1_amd64.deb
 ae41f4c039f845bc32269652ffbf853187d2bc3a 31889950 mess-data_0.146-1_all.deb
 950e3d228c72ef567f3ea4e2e8dc9fa44f5cc7a6 38050 xmame-tools_0.146-1_all.deb
 76a8f2a41c04f02803a2b91139ec0eb0870abd3b 38042 xmess-sdl_0.146-1_all.deb
 69e7f0edfa31b01b196d59202c9145139d19b0df 38042 xmess-x_0.146-1_all.deb
 415592d902480439bc01ce96aa9c0a640cf02d77 38048 sdlmame-tools_0.146-1_amd64.deb
Checksums-Sha256: 
 bcbd3e3f0bdd733700485ec4cf36f00968b2b1831186b749cb7fdc1a46aef688 1853 
mess_0.146-1.dsc
 682dee761cc89e37df06fdbbde0c5e3f86e8985d96ee0563cdf6db2266164168 35163140 
mess_0.146.orig.tar.xz
 66ab704898101d4f7ba4ca7fc12a6734cbf2efaf86fdccf05320ad32bb5080b8 58738 
mess_0.146-1.debian.tar.gz
 a6f0e8bca5cac6277287701b35144f245cea0d333da697e79a384a005517cbf8 1020128 
mame-tools_0.146-1_amd64.deb
 56fc16476f61888246a60d7a73675ba62280bd6df38e0b41ca689578dfb7c4e2 10271642 
mess_0.146-1_amd64.deb
 e67ccb195521357f87cd2d56dba0ea7d64675812eef96cd869760ac7941bf902 31889950 
mess-data_0.146-1_all.deb
 19a9f5a2c1f5484e03d87304a89895f2d77c9357cb42bbcdad0e04f8e854239a 38050 
xmame-tools_0.146-1_all.deb
 9a572d41c0876f5488b1f211e818c7daaf36f7d50dd2846d09588acf96981df0 38042 
xmess-sdl_0.146-1_all.deb
 6ebd59b8f76635733901d6ca9ca58d01b14aa32623ffa417d936bd43857befb3 38042 
xmess-x_0.146-1_all.deb
 23ff705ef12148a624a1a5ae6607d9496889ab9ac888d40b2c8b918ff6d4f825 38048 
sdlmame-tools_0.146-1_amd64.deb
Files: 
 2bc8d3fecd9dc362a51205eeca5078f0 1853 non-free/games optional mess_0.146-1.dsc
 711455caf945d11c0e1783cf889de6d8 35163140 non-free/games optional 
mess_0.146.orig.tar.xz
 5edb690d27cc25e60c03c565f47df54e 58738 non-free/games optional 
mess_0.146-1.debian.tar.gz
 91bbaaa4ad181afa3e45de4d505435b5 1020128 non-free/utils optional 
mame-tools_0.146-1_amd64.deb
 fbdc02139b990b097139cae32f7f75b2 10271642 non-free/games optional 
mess_0.146-1_amd64.deb
 778a3d4f151a90aa7343bde7ef57c966 31889950 non-free/games optional 
mess-data_0.146-1_all.deb
 c07f7ada3eff588e6dc6065394f28d01 38050 non-free/oldlibs extra 
xmame-tools_0.146-1_all.deb
 ba5ef56e4a2e9fb49fb90061860f5128 38042 non-free/oldlibs extra 
xmess-sdl_0.146-1_all.deb
 9a4faeb1daffe862279910a644dd5890 38042 non-free/oldlibs extra 
xmess-x_0.146-1_all.deb
 214638fa772b391056abcd00e992cd91 38048 non-free/oldlibs extra 
sdlmame-tools_0.146-1_amd64.deb

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

iEYEARECAAYFAk/gTlAACgkQJYSUupF6Il4TBQCfRiewfeQVK9/f93ag+0kZyrmQ
TrIAnA6/ZLuAx66BoUXyXGqs8bRaE+1x
=93l5
-END PGP SIGNATURE-


Accepted:
mame-tools_0.146-1_amd64.deb
  to non-free/m/mess/mame-tools_0.146-1_amd64.deb
mess-data_0.146-1_all.deb
  to non-free/m/mess/mess-data_0.146-1_all.deb
mess_0.146-1.debian.tar.gz
  to non-free/m/mess/mess_0.146-1.debian.tar.gz
mess_0.146-1.dsc
  to non-free/m/mess/mess_0.146-1.dsc
mess_0.146-1_amd64.deb
  to non-free/m/mess/mess_0.146-1_amd64.deb
mess_0.146.orig.tar.xz
  to non-free/m/mess/mess_0.146.orig.tar.xz
sdlmame-tools_0.146-1_amd64.deb
  to non-free/m/mess/sdlmame-tools_0.146-1_amd64.deb
xmame-tools_0.146-1_all.deb
  to non-free/m/mess/xmame-tools_0.146-1_all.deb
xmess-sdl_0.146-1_all.deb
  to non-free/m/mess/xmess-sdl_0.146-1_all.deb
xmess-x_0.146-1_all.deb
  to non-free/m/mess/xmess-x_0.146-1_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact 

Accepted cups 1.5.3-2 (source all amd64)

2012-06-19 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 12:25:11 +0200
Source: cups
Binary: libcups2 libcupsimage2 libcupscgi1 libcupsdriver1 libcupsmime1 
libcupsppdc1 cups cups-client libcups2-dev libcupsimage2-dev libcupscgi1-dev 
libcupsdriver1-dev libcupsmime1-dev libcupsppdc1-dev cups-bsd cups-common 
cups-ppdc cups-dbg cupsddk
Architecture: source all amd64
Version: 1.5.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian CUPS Maintainers pkg-cups-de...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 cups   - Common UNIX Printing System(tm) - server
 cups-bsd   - Common UNIX Printing System(tm) - BSD commands
 cups-client - Common UNIX Printing System(tm) - client programs (SysV)
 cups-common - Common UNIX Printing System(tm) - common files
 cups-dbg   - Common UNIX Printing System(tm) - debugging symbols
 cups-ppdc  - Common UNIX Printing System(tm) - PPD manipulation utilities
 cupsddk- Common UNIX Printing System (transitional package)
 libcups2   - Common UNIX Printing System(tm) - Core library
 libcups2-dev - Common UNIX Printing System(tm) - Development files CUPS library
 libcupscgi1 - Common UNIX Printing System(tm) - CGI library
 libcupscgi1-dev - Common UNIX Printing System(tm) - Development files for CGI 
libra
 libcupsdriver1 - Common UNIX Printing System(tm) - Driver library
 libcupsdriver1-dev - Common UNIX Printing System(tm) - Development files 
driver librar
 libcupsimage2 - Common UNIX Printing System(tm) - Raster image library
 libcupsimage2-dev - Common UNIX Printing System(tm) - Development files CUPS 
image li
 libcupsmime1 - Common UNIX Printing System(tm) - MIME library
 libcupsmime1-dev - Common UNIX Printing System(tm) - Development files MIME 
library
 libcupsppdc1 - Common UNIX Printing System(tm) - PPD manipulation library
 libcupsppdc1-dev - Common UNIX Printing System(tm) - Development files PPD 
library
Closes: 668662 677180
Changes: 
 cups (1.5.3-2) unstable; urgency=low
 .
   [ Till Kamppeter ]
   * debian/libcups2-dev.install, debian/rules: Correctly install
 language-private.h as /usr/include/cups/i18n.h, .install file entries
 cannot rename files (LP: #1013470).
 .
   [ Martin Pitt ]
   * debian/local/apparmor-profile: Allow cups-pdf to read /proc/*/auxv; it's
 harmless information. (LP: #1009367)
   * debian/control: Tighten cups' and cups-client's dependency to libcups2 to
 current binary version. They use private symbols from the libraries which
 the automatic dependencies from the .symbols files don't cover.
 (Closes: #668662, #677180)
 .
   [ Andy Whitcroft ]
   * debian/libcupsppdc1.symbols: add two optional symbols which are only
 emitted on armel and armhf architectures.
Checksums-Sha1: 
 5c2107fd86084d991efd7c20ee92daea34ac4a89 3415 cups_1.5.3-2.dsc
 c8718f5ddaaa7ac7aad4470c7c2e47fcc2c0eb6b 308358 cups_1.5.3-2.debian.tar.gz
 3533e93a669a76d672bcb0299df928ece4f5704a 902594 cups-common_1.5.3-2_all.deb
 e9c2da6e0917863456414f72a77de0a302627aee 86934 cupsddk_1.5.3-2_all.deb
 479b92cc5e6c8199d36c06a00b5be12a9e7912b4 255430 libcups2_1.5.3-2_amd64.deb
 6bc723ffc9f521dbda01ef88b6d2114a9116123a 137140 libcupsimage2_1.5.3-2_amd64.deb
 f4e9214235ed0424c6dc4a4fcb2bb30b51884e44 115736 libcupscgi1_1.5.3-2_amd64.deb
 de119fb737a40d6ed2ea9b61fab51fce1b323d00 103904 
libcupsdriver1_1.5.3-2_amd64.deb
 abd628ca02d41dcc87c4abaa6c5fe5c5a0558c6d 98654 libcupsmime1_1.5.3-2_amd64.deb
 763c2fea6ae4dbb6227eee82f82cd486e32861b5 138788 libcupsppdc1_1.5.3-2_amd64.deb
 000c80e1bda58774fcc4ce08142be3024b7c187e 1366336 cups_1.5.3-2_amd64.deb
 d806158bf9c9c45429ed62e4e137d6b6c1c5da96 178832 cups-client_1.5.3-2_amd64.deb
 93a04ff687e15f4941db6c3df519e5cbf77815fd 327828 libcups2-dev_1.5.3-2_amd64.deb
 39b6a7b6237c12dba4d5d29651125d9c6e6606fe 65268 
libcupsimage2-dev_1.5.3-2_amd64.deb
 7234a7b63db4461492e1e435b52ad8a62da184c0 122132 
libcupscgi1-dev_1.5.3-2_amd64.deb
 d1656891e7994deb8a56f3626a79dc9c47190734 107566 
libcupsdriver1-dev_1.5.3-2_amd64.deb
 2e8eafd738e10376ad605305a95accf969bc0682 99920 
libcupsmime1-dev_1.5.3-2_amd64.deb
 56d9d8483d2a4ca4d65d99cd52c52c4b1a67fc10 157340 
libcupsppdc1-dev_1.5.3-2_amd64.deb
 17d0bc4b11b807277fe9a36964691287f38c6e5e 45422 cups-bsd_1.5.3-2_amd64.deb
 d1c2f224b705e8b03191b08502b89eac421501c9 116520 cups-ppdc_1.5.3-2_amd64.deb
 ab757356cee7dc5e6e4114706bc8b74db381b279 2164698 cups-dbg_1.5.3-2_amd64.deb
Checksums-Sha256: 
 50fb59dfeb92ed4b9a43b474c1450efab3e588382305abc501645e00641d9d3d 3415 
cups_1.5.3-2.dsc
 55e1c72db61b3f2c891f35a4a5b28b0ff3eeccaa52c2eef071e7640495c269c6 308358 
cups_1.5.3-2.debian.tar.gz
 57e9ce5d145ad2aca75d6df7a7496c8458822616d7b19a950a115464585fb67b 902594 
cups-common_1.5.3-2_all.deb
 517682923da3a8dd5df70620f9d98a7c345d71e7b108063483037cb5a68357b3 86934 
cupsddk_1.5.3-2_all.deb
 66ae80c3739be5e8b6b33ecc1057b7f83572fae7b2e6d9b8f54be59fcdbb6863 255430 
libcups2_1.5.3-2_amd64.deb
 

Accepted batik 1.7+dfsg-2 (source all)

2012-06-19 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 12:57:28 +0200
Source: batik
Binary: libbatik-java
Architecture: source all
Version: 1.7+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Niels Thykier ni...@thykier.net
Description: 
 libbatik-java - xml.apache.org SVG Library
Changes: 
 batik (1.7+dfsg-2) unstable; urgency=low
 .
   * Team upload.
   * Allow OpenJDK-7 as alternative to OpenJDK-6.
   * Remove old references to sun-java.
   * Add missing call to mh_clean in the clean rule.
   * Fix typo in manpage.
Checksums-Sha1: 
 cf82da7878bcda1b7bce9f5300ce09698d4c3de6 2253 batik_1.7+dfsg-2.dsc
 fd8c5aba566912ad11b7e8b2b92da25b129b2a17 11829 batik_1.7+dfsg-2.debian.tar.gz
 c3a24ed08f969b30ae818cf1c8a8acc70e9352ab 8585122 
libbatik-java_1.7+dfsg-2_all.deb
Checksums-Sha256: 
 a57429aa472d9b6fd1ffdbc2d5ecd7467b733cd7dc4b847f7c4387bdc418c897 2253 
batik_1.7+dfsg-2.dsc
 7f6eb814e72ef86aa893737c18620e2a96aa9af1a216523ceb2dfc1122b7a22c 11829 
batik_1.7+dfsg-2.debian.tar.gz
 bc1b334a898f46f872abef772486669c1db92d9b6c34ce6e8d168a6fd2715b7e 8585122 
libbatik-java_1.7+dfsg-2_all.deb
Files: 
 16f6f0431d15cbe1d6f86d91fd788959 2253 java optional batik_1.7+dfsg-2.dsc
 e426b1f167389086c61709c5ed821e1a 11829 java optional 
batik_1.7+dfsg-2.debian.tar.gz
 2eaf5ce6163a8b62138192d6cd809077 8585122 java optional 
libbatik-java_1.7+dfsg-2_all.deb

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

iQIcBAEBCAAGBQJP4F03AAoJEAVLu599gGRCpI0P/iJ8GVBGvmQlUNokvU475Cab
erfn3pY4kr1Qv7SF4bEQf+sm3bu+Nel3TSUCHMhGThB2W/9n85bK1i7h0Pqb1oJv
6ST8FkM/UTcKB6BNrYQcwQFNbbRUPKgsFwsMADj1XWEj8fRNOtz2RLHxF/i3ua/g
qGYyDzJdVReLvfE3QKolgyry3iWBbFybdzG1RjQXGebdS2hWsetMd0a9FSd5bQTM
fHdpt3s/h0VaHx/EPFcbWNpmOXi5j6eus95ny2tYj02nsYpWxSjVIfdIB9aEuSu2
ffLq3SLd4UiEe48Q5EFgxO99bDkQgx50SDnuB/540LxxY5upD2G+Qw/aZbbqD4b2
dmwX8L0kVaZcvmbY6VdzyMwMAaMV6T8ng9dGON2v0MEdXZthJT063+hthk62ToPi
ZaNUR0xJqRWJw/jUfzx8TyD0/u+mHdTViOY1kEBSUJEdfUlQGSEv1agB5TutOXGF
TM9NWqSBjVV1ilLxRd5lLCCirOXerJV3dMe7jxLldMHv7D5SzLzJKm9mGDRsh3JP
XxGWgEXvIioOwqfOBsvorOw9UO6drx7xtGSoIgtWptVpaqznvrW9oCgD5AC1f6IQ
5t4Xv0qJTbNm41e1H8TjFm+buDeG3zvbSATHVEOW+Jcgo0h/2qQCvbyrM7xa2zg5
ZyoYEYwkt6QzG70Jon0D
=RW9J
-END PGP SIGNATURE-


Accepted:
batik_1.7+dfsg-2.debian.tar.gz
  to main/b/batik/batik_1.7+dfsg-2.debian.tar.gz
batik_1.7+dfsg-2.dsc
  to main/b/batik/batik_1.7+dfsg-2.dsc
libbatik-java_1.7+dfsg-2_all.deb
  to main/b/batik/libbatik-java_1.7+dfsg-2_all.deb


-- 
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/e1sgwqs-mu...@franck.debian.org



Accepted oath-toolkit 1.12.4-1 (source amd64)

2012-06-19 Thread Simon Josefsson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 10:48:26 +0200
Source: oath-toolkit
Binary: liboath-dev liboath0 oathtool oath-dbg libpam-oath
Architecture: source amd64
Version: 1.12.4-1
Distribution: unstable
Urgency: low
Maintainer: OATH Toolkit Team oath-toolkit-h...@nongnu.org
Changed-By: Simon Josefsson si...@josefsson.org
Description: 
 liboath-dev - Development files for the OATH Toolkit Liboath library
 liboath0   - OATH Toolkit Liboath library
 libpam-oath - OATH Toolkit libpam_oath PAM module
 oath-dbg   - OATH Toolkit debugging symbols
 oathtool   - OATH Toolkit oathtool command line tool
Changes: 
 oath-toolkit (1.12.4-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 9816a140a34090ee1e4fa8c6700f062daed62df0 1905 oath-toolkit_1.12.4-1.dsc
 57c58848e3ad8312ce2122a9e41f9d0ec0ba34b9 2028101 
oath-toolkit_1.12.4.orig.tar.gz
 15effa30e4ce354a6a3f674020cccff54f9d728b 4169 
oath-toolkit_1.12.4-1.debian.tar.gz
 6905ae34a08e3cb7ef7aac4c293814e2a5fdb4a9 51434 liboath-dev_1.12.4-1_amd64.deb
 b2161cf686ec2caf5d894b2b73915d192614a27e 44618 liboath0_1.12.4-1_amd64.deb
 63c3c12ecc753606e5513b45825d928d588f2d7d 46328 oathtool_1.12.4-1_amd64.deb
 6ad67b42217832e3c9b5a1448cb3e1244bd2f7b7 125234 oath-dbg_1.12.4-1_amd64.deb
 162c4675af1dd73d7d9e5693f78ed7c7c8542acb 28758 libpam-oath_1.12.4-1_amd64.deb
Checksums-Sha256: 
 0c2dd6790ba8f6973b3df70e8cc502383e77724f1fc5bc21300cf4fd7faefdd8 1905 
oath-toolkit_1.12.4-1.dsc
 6995314a908498c5904ad2566463c2004b1165ce2b70aeae39b99203e53f670a 2028101 
oath-toolkit_1.12.4.orig.tar.gz
 332f3a93cbf87f063b722923821a200b0fb5118377205cbebf0acbef6e3b50f8 4169 
oath-toolkit_1.12.4-1.debian.tar.gz
 d0810ec3d2f9544db45c46009b58983ba7f7853fbac6b0a29357912bae20c80b 51434 
liboath-dev_1.12.4-1_amd64.deb
 7891ce53d1a56ec78a4812e37ca4f25c5b8c042a4e837dec44707016517ac7bd 44618 
liboath0_1.12.4-1_amd64.deb
 118d76bcc8474bcc001af89c8af03f1c61c94ec8ca2b2f618a98ed9c5428aa83 46328 
oathtool_1.12.4-1_amd64.deb
 5f450440e0a77d7692408cc45bcbc10600ade08e764c819e7eaabb0796fa9dab 125234 
oath-dbg_1.12.4-1_amd64.deb
 9e6eaa835c9eb573278fa486ed15ce0da0440818459f14f7c580da5788e21afc 28758 
libpam-oath_1.12.4-1_amd64.deb
Files: 
 ed470a841407b97d1b04bc630a92ab68 1905 devel optional oath-toolkit_1.12.4-1.dsc
 b8c267bb007a634c0f3514697060cb2d 2028101 devel optional 
oath-toolkit_1.12.4.orig.tar.gz
 f6e4143e9660ee5eec5ef3b7298b5ed5 4169 devel optional 
oath-toolkit_1.12.4-1.debian.tar.gz
 6cbd6d29768f4670258ae6655a218d53 51434 libdevel optional 
liboath-dev_1.12.4-1_amd64.deb
 d4cb5832da59833521a91de7b7fca2dd 44618 libs optional 
liboath0_1.12.4-1_amd64.deb
 08adae4c912a2599215634ef3f83bcff 46328 devel optional 
oathtool_1.12.4-1_amd64.deb
 9137f8b073dc4c8a080ab612728a34d3 125234 debug extra oath-dbg_1.12.4-1_amd64.deb
 e9dbf165cb0f6f4fadb4f4786f74cf76 28758 admin optional 
libpam-oath_1.12.4-1_amd64.deb

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

iQFOBAEBAgA4BQJP4EoiMRSAABUAE3BrYS1hZGRyZXNzQGdudXBnLm9yZ3Np
bW9uQGpvc2Vmc3Nvbi5vcmcACgkQYM7nERBeci6KQAgAoBavF6imFtKQu1pNL2Lo
ywAc2VRmtbfWpcfucnr5Z5glAes8npjZJ+tdn3PcdMk6M8yAS/HllcXkqlf5qPuL
o1hlqTngRzQflA4UnJP4MGrryxJeBEjQOVQYNJrDIn0MQKlQCXa/i33bJVVRxWsE
vefkJoCdcaqha405Q/3rNQ+poHBkYDV0Jituywi0g8tEi2pGyn2nLtRn70vxtqY2
fO9CvBwfwDYNuQ4Q0RexDcSwIowlSN3HH+ZZS8xBPrf1UV6NCCaKnMSZOCDmNraC
H0y3EB422yjX3u7UNsgkFBaAx8leSQ/dkWSjnoVc9tzYosRuzm7RrNT/7VBV/8VR
5g==
=VZUq
-END PGP SIGNATURE-


Accepted:
liboath-dev_1.12.4-1_amd64.deb
  to main/o/oath-toolkit/liboath-dev_1.12.4-1_amd64.deb
liboath0_1.12.4-1_amd64.deb
  to main/o/oath-toolkit/liboath0_1.12.4-1_amd64.deb
libpam-oath_1.12.4-1_amd64.deb
  to main/o/oath-toolkit/libpam-oath_1.12.4-1_amd64.deb
oath-dbg_1.12.4-1_amd64.deb
  to main/o/oath-toolkit/oath-dbg_1.12.4-1_amd64.deb
oath-toolkit_1.12.4-1.debian.tar.gz
  to main/o/oath-toolkit/oath-toolkit_1.12.4-1.debian.tar.gz
oath-toolkit_1.12.4-1.dsc
  to main/o/oath-toolkit/oath-toolkit_1.12.4-1.dsc
oath-toolkit_1.12.4.orig.tar.gz
  to main/o/oath-toolkit/oath-toolkit_1.12.4.orig.tar.gz
oathtool_1.12.4-1_amd64.deb
  to main/o/oath-toolkit/oathtool_1.12.4-1_amd64.deb


-- 
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/e1sgwrz-r6...@franck.debian.org



Accepted hime 0.9.9+git20120619+dfsg-1 (source all amd64)

2012-06-19 Thread 魏銘廷
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 09 Jun 2012 11:42:18 +0800
Source: hime
Binary: hime hime-data hime-tables hime-dev hime-qt4-immodule 
hime-gtk3-immodule hime-anthy hime-chewing
Architecture: source amd64 all
Version: 0.9.9+git20120619+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: IME Packaging Team pkg-ime-de...@lists.alioth.debian.org
Changed-By: Yao Wei (魏銘廷) m...@lxde.org
Description: 
 hime   - GTK+ based input method for Chinese users
 hime-anthy - support library to use Anthy in HIME
 hime-chewing - support library to use Chewing in HIME
 hime-data  - icons, locales and scripts for HIME
 hime-dev   - development files for HIME
 hime-gtk3-immodule - GTK3 input method module with HIME as backend
 hime-qt4-immodule - Qt4 input method module with HIME as backend
 hime-tables - input method tables for HIME
Changes: 
 hime (0.9.9+git20120619+dfsg-1) unstable; urgency=low
 .
   * Imported Upstream version 0.9.9+git20120609+dfsg
   * debian/control:
 - upgrade dh compatibility to 9
 - add dependency to dpkg-dev
   * debian/compat: upgrade dh compatibility to 9
   add copyright information for DFSG git package
   * debian/rules:
 - dirty hack for autoclean
 - remove moving gtk immodules to specific directories
 - add hardening flags
   * debian/hime.install, debian/hime-gtk3-immodule.install:
 update gtk immodules install path
   * debian/copyright: add copyright information for DFSG git package
Checksums-Sha1: 
 8576deaeaa78b4c1221ddb4d5f0ec25e27ed5c5c 1835 hime_0.9.9+git20120619+dfsg-1.dsc
 016fc9d8c987c28b18448eae7fa540f77729ef75 3748929 
hime_0.9.9+git20120619+dfsg.orig.tar.gz
 d47b9d70f1c730c63fed517dad4d776c688cd717 14255 
hime_0.9.9+git20120619+dfsg-1.debian.tar.gz
 598c8f6f0881380e988d12a1c45e272434eefc53 347974 
hime_0.9.9+git20120619+dfsg-1_amd64.deb
 e32a53fbc21182f2b57212ddcb3fba1425b3441c 506226 
hime-data_0.9.9+git20120619+dfsg-1_all.deb
 b0ff2105639e1d66bcd3eaf3f42e2393b9d9370a 2831140 
hime-tables_0.9.9+git20120619+dfsg-1_amd64.deb
 8035aa40326a57e077c1a399c1910bd31296a9c0 16022 
hime-dev_0.9.9+git20120619+dfsg-1_all.deb
 77707205ca0ec92a6ea3b57710c0b4a40e36fd1f 29072 
hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64.deb
 2ffd7a2218c3c7a7a565ec18feff8daaed43baa4 21166 
hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64.deb
 ca55c791eeb03aa8c757b2de92c894967da23061 38172 
hime-anthy_0.9.9+git20120619+dfsg-1_amd64.deb
 33dbd7a720e37bcaf31f42ff62db168525073dd8 27622 
hime-chewing_0.9.9+git20120619+dfsg-1_amd64.deb
Checksums-Sha256: 
 1b0336fe3dc94f54826eeb184157a57c864e029f4c66682140231cae8345d6e9 1835 
hime_0.9.9+git20120619+dfsg-1.dsc
 22dba9f9ae48f2d4cd2cd05d3b2477c92eb1dc1aa1d2a5d5240ae00ca5281317 3748929 
hime_0.9.9+git20120619+dfsg.orig.tar.gz
 2db36519537bc5bd5e7fa2d9ef112b574bd0e2d9a642895744c4c60e4bfca340 14255 
hime_0.9.9+git20120619+dfsg-1.debian.tar.gz
 2e0fc8541a1f19fb06ec4ffd4d5aa4a63a8e4c1d037a4bfe2f7f9f0b090d78e2 347974 
hime_0.9.9+git20120619+dfsg-1_amd64.deb
 758e93414eb2bde9b342b5924738ac499a3832b3ea588ed985e85a041ff4f191 506226 
hime-data_0.9.9+git20120619+dfsg-1_all.deb
 99da716835d584a51d729da6c78884448f34ddb5a2496e5c136dd0d136999f87 2831140 
hime-tables_0.9.9+git20120619+dfsg-1_amd64.deb
 1f06aa171b2ad8b6dfffcf48fff33c8fa35c7023af80f799248d9e982cbb7eb3 16022 
hime-dev_0.9.9+git20120619+dfsg-1_all.deb
 cb3282b218992671125d8acee119abfcedfa09327c00455318b4c25d022f607b 29072 
hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64.deb
 b72a87d51f72c1edc5c15bcf4a0b973ca98d66fd5dc44d564d6d21d71cad 21166 
hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64.deb
 1ab9272d68480049d5a48eb5d2e1665bb52f329d028f0b434e84eb8a0c1f4d1c 38172 
hime-anthy_0.9.9+git20120619+dfsg-1_amd64.deb
 276e584c982b1c3a85308ea064519e53e0b54625b67686efbd7a47a4ea879d2a 27622 
hime-chewing_0.9.9+git20120619+dfsg-1_amd64.deb
Files: 
 0d027bc07a55a15c1c0893fde70b2e27 1835 utils optional 
hime_0.9.9+git20120619+dfsg-1.dsc
 8cc893759ec2d3412e1d14e39eb54614 3748929 utils optional 
hime_0.9.9+git20120619+dfsg.orig.tar.gz
 965d8be7e0b9afbd6075a453fa2ad666 14255 utils optional 
hime_0.9.9+git20120619+dfsg-1.debian.tar.gz
 e340b783f8666715695cbf16541bdb61 347974 utils optional 
hime_0.9.9+git20120619+dfsg-1_amd64.deb
 dfaa1e60f9d2f62ecdff1ad3ff212111 506226 utils optional 
hime-data_0.9.9+git20120619+dfsg-1_all.deb
 f13e115c23845162c7ba9147ffc36278 2831140 utils optional 
hime-tables_0.9.9+git20120619+dfsg-1_amd64.deb
 a24f03a828d41784234b5f27d9986858 16022 devel optional 
hime-dev_0.9.9+git20120619+dfsg-1_all.deb
 65685f88fbc28f9162cd20e3927c24c1 29072 utils optional 
hime-qt4-immodule_0.9.9+git20120619+dfsg-1_amd64.deb
 2f9e278c39f39dbcef2570bf6d50c76c 21166 utils optional 
hime-gtk3-immodule_0.9.9+git20120619+dfsg-1_amd64.deb
 1e6dfddb0aabfd0613f921b83724bd50 38172 utils optional 
hime-anthy_0.9.9+git20120619+dfsg-1_amd64.deb
 29a7ab5e5e219ba7bc9c8686fe45d99d 27622 utils optional 
hime-chewing_0.9.9+git20120619+dfsg-1_amd64.deb

-BEGIN PGP 

Accepted tiles 2.2.2-3 (source all)

2012-06-19 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 13:15:10 +0200
Source: tiles
Binary: libtiles-java libtiles-java-doc
Architecture: source all
Version: 2.2.2-3
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Niels Thykier ni...@thykier.net
Description: 
 libtiles-java - Java templating framework for web application user interfaces
 libtiles-java-doc - Java templating framework for web application user 
interfaces - d
Closes: 678118
Changes: 
 tiles (2.2.2-3) unstable; urgency=low
 .
   * Team upload.
   * Build with source and target 1.5 to ensure a proper build
 with Java7.  Thanks to James Page for the report and the
 patch.  (Closes: #678118)
Checksums-Sha1: 
 1554250f7847a0890f3609c5058d7ae27a85b01e 2188 tiles_2.2.2-3.dsc
 61f8b8b8067429b6736e6446893dd0ecf4371e13 4454 tiles_2.2.2-3.debian.tar.gz
 88427d0bfab778c4cde676ad04845e2fbdbc67b3 345860 libtiles-java_2.2.2-3_all.deb
 2e7a37376bab268069471c5dcfcb732b1937103a 421926 
libtiles-java-doc_2.2.2-3_all.deb
Checksums-Sha256: 
 82c43e758512139d91542678d92fa7f4e2f264ca7b850294702579b82821bf87 2188 
tiles_2.2.2-3.dsc
 45bfe292236df9af1f26e0b9de00f827343b356508f61072dce06ddec30ea37a 4454 
tiles_2.2.2-3.debian.tar.gz
 dcdd0d125273945de28bbebbaefbf31d3078239360bc753958abefffbf9262f7 345860 
libtiles-java_2.2.2-3_all.deb
 22c4c5104bc2294a39db33cab7f1406d150cddc32d308261eaa5a79163ff54c5 421926 
libtiles-java-doc_2.2.2-3_all.deb
Files: 
 b4a125b47911db57a3851603fecb6012 2188 java optional tiles_2.2.2-3.dsc
 264c4d2044407cb80a30acb1c0987d88 4454 java optional tiles_2.2.2-3.debian.tar.gz
 19d27a1d0cfe58e3950665b3f3325a4b 345860 java optional 
libtiles-java_2.2.2-3_all.deb
 4187066ee68e698f86a34fa27b3a86e3 421926 doc optional 
libtiles-java-doc_2.2.2-3_all.deb

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

iQIcBAEBCAAGBQJP4F+rAAoJEAVLu599gGRC7B0P/igplOpb49Qr7+ji/zDaz///
A5/MZF/pyKvMA70Qqg7i7840SyDAQ9MDKiW8rGM41QkUpI+kJmrxZFSTZIzolX/6
LZjEJoTrYu/W2QUHNnHIg6FkgEPkc23hKtY8mSlyNQemrjtAOq3A9p6Z+upOOIOT
3kTtEbJU2UrsMkEbVeo7+d/0JvUO9VtUGXbM6rJ4t2+uebvvOBJpyyVzV+2GRrWl
ZhxlD4AFQ9KQm21ciEp36LQymQQ7S8xRGNssJKlYtmf1HSvy5U+zj+QVTQTx+80W
wNRXMLf66pcj9XvpD2uXo6sMA/d1aYpaAG7cpSIfl8NRFXeRbqXg+9oC042ZRRWH
WVR0ABDZUJdXQgR+HPvsPlfDKfHDfnATqWA0BGLwblfQxUDdxH5d9HvID2JpTW3V
/gFpKeYAl8vGd7iESOU+eJhVCYgzelpWvT0VVwK4NEFq62li9cGKMQXO1QFEi24W
u2GZ6PxFvdT6aIoyOcI0WRP7wuwFStiYlE2N60eRWZotrGaiH60rv5piFmrf6S5U
Jhss9+Ka7i8ArQWsWBzI3p4pwej30PUPlq6Ke8540yWmHF1EZ1y+LA0VL6mEA7/D
Um8X6Q2/CmYEH3qPfRAcud7wfxi1pCVNJfm/o5nQugmzMmzZ5zLWCBuFaFIPIV4h
DvqB1IKrQIWU9TjktEEs
=fqwT
-END PGP SIGNATURE-


Accepted:
libtiles-java-doc_2.2.2-3_all.deb
  to main/t/tiles/libtiles-java-doc_2.2.2-3_all.deb
libtiles-java_2.2.2-3_all.deb
  to main/t/tiles/libtiles-java_2.2.2-3_all.deb
tiles_2.2.2-3.debian.tar.gz
  to main/t/tiles/tiles_2.2.2-3.debian.tar.gz
tiles_2.2.2-3.dsc
  to main/t/tiles/tiles_2.2.2-3.dsc


-- 
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/e1sgwgq-000251...@franck.debian.org



Accepted goldencheetah 2.1-4 (source amd64)

2012-06-19 Thread KURASHIKI Satoru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 18 Jun 2012 20:27:50 +0900
Source: goldencheetah
Binary: goldencheetah
Architecture: source amd64
Version: 2.1-4
Distribution: unstable
Urgency: low
Maintainer: KURASHIKI Satoru lur...@gmail.com
Changed-By: KURASHIKI Satoru lur...@gmail.com
Description: 
 goldencheetah - set of analysis tools for cycling performance
Changes: 
 goldencheetah (2.1-4) unstable; urgency=low
 .
   * enable hardening build flags.
Checksums-Sha1: 
 36affbb363fcdd55b819a3c8566fc5d4bb6777ce 2156 goldencheetah_2.1-4.dsc
 bcca333641f04fb04a08ac05a1c2895d0900bf7f 8401099 goldencheetah_2.1.orig.tar.gz
 f102dac3a8192f32c04ded739bda7d67897cc4b7 12266 
goldencheetah_2.1-4.debian.tar.gz
 dce4a24fa6562f80ecc18c3024ccd39be6d03516 5527538 goldencheetah_2.1-4_amd64.deb
Checksums-Sha256: 
 8be7490e0342184096e00935e51f78879e14a8386f25cf58f14756209b19c05f 2156 
goldencheetah_2.1-4.dsc
 72866e0162f4f8b218ebae4d3b9703e59632cf8fd9c0ef2d9c5759f709f4ea26 8401099 
goldencheetah_2.1.orig.tar.gz
 257640a0f191e9e9e6521d3a1e60d6822ee38cefadab506fe4549d0ef4a090ac 12266 
goldencheetah_2.1-4.debian.tar.gz
 61f6f626a98907f51ae2db962fe60fa4a9a3b466f8d5d7413b8fce908b1d74b5 5527538 
goldencheetah_2.1-4_amd64.deb
Files: 
 f9a570621a5c85a9968cd5d159d1a99a 2156 misc optional goldencheetah_2.1-4.dsc
 8fb3c8138b06317de9f2a15e82e90d8b 8401099 misc optional 
goldencheetah_2.1.orig.tar.gz
 f0ef5367fddc70594864049dd3f71c20 12266 misc optional 
goldencheetah_2.1-4.debian.tar.gz
 0235a59e30d52c9214a882dd48da4240 5527538 misc optional 
goldencheetah_2.1-4_amd64.deb

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

iQIcBAEBCAAGBQJP3yLDAAoJENJ93hFAovETW/sQAMo11S1JHxmvbwzDhxulCGEe
YMi4eXtKRy9ZEixigLGiJ4Sm39sjvXXDoLSGu/BmD2lICVgHRAQLExnVUkkWjX/X
xvBFo336vVDIBuZGO1HNRfaLwBx4NnPiYiNumCE2rVoZkclIpf4IS132zua33UJ+
k1RZIDuUq1F1RE6PA/i/uYKktQa70Ffiaj1lj4gcpaYjsRyBEDoLUzruRa37XkMT
Z8SSFjbE9KkxFEYn3q/dL6Qb0VzVGALlNzCTayeInok4NrN4y6rxNw1cR6v6yRFu
L/vGTySVFxbaFCooP+y0FnO5lDW9vGjrptSe5NG0nVHcYPHUvt9TQAuQYue34J9g
VFct89d+9d29T5TBNP4WIsFZYXKVTXM6lZeOSH+5EH2shGnbMkLEOMu+iVH8E5wI
rzz8vbcpJvFb21j8hIRblFXz02C4nxqrHWyXOIlckXYvl2OnmabldM5E5J6ZDpm3
hpsT1LaoZlQ0F+oIpyoQX+ZI8vvgEl0tQtyqZqZlSagS6dSJtiIoIOaIO82uig4A
DkVJmZgcB2syxo8vaqw4hL/s6nG9zbBrdlPlB6gNgm7BRIw3HzdbtibTI5cBwfJd
xv0qOa/hTIjSY4PYjebi5QCE/AP7CEg51SB9/6zveIanbmjRAAb97NOXqFkZd8/C
+rm4Jh9dekIaQY2xuYkk
=P00d
-END PGP SIGNATURE-


Accepted:
goldencheetah_2.1-4.debian.tar.gz
  to main/g/goldencheetah/goldencheetah_2.1-4.debian.tar.gz
goldencheetah_2.1-4.dsc
  to main/g/goldencheetah/goldencheetah_2.1-4.dsc
goldencheetah_2.1-4_amd64.deb
  to main/g/goldencheetah/goldencheetah_2.1-4_amd64.deb


-- 
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/e1sgwui-0002nu...@franck.debian.org



Accepted vxl 1.14.0-18 (source amd64)

2012-06-19 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 13:40:50 +0200
Source: vxl
Binary: libvxl1.14 libvxl1-dev
Architecture: source amd64
Version: 1.14.0-18
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 libvxl1-dev - C++ Libraries for Computer Vision Research
 libvxl1.14 - C++ Libraries for Computer Vision Research
Closes: 674350
Changes: 
 vxl (1.14.0-18) unstable; urgency=low
 .
   * Fix compilation with gcc 4.7. Closes: #674350
   * Use CPPFLAGS for hardening (using dh/compat 9)
Checksums-Sha1: 
 1f31ecee53ae67a17f616acc869d8bd667f8ec1e 2372 vxl_1.14.0-18.dsc
 7008aaf02c6b32bb9f6f26dcc6cbabbc75bd7d78 39624 vxl_1.14.0-18.debian.tar.gz
 a4d6b4268e5b5006bd9afea591757a7055ecdaf7 12671218 
libvxl1.14_1.14.0-18_amd64.deb
 32efb1e2669a36d922a1c42f90814d2dd8e1b420 2133040 
libvxl1-dev_1.14.0-18_amd64.deb
Checksums-Sha256: 
 c027ac926ed768e71531b818b32a04767a4dcf649f498602d36be7b69e55609d 2372 
vxl_1.14.0-18.dsc
 fc5184d55385c6cdcf9b710e9cb7ae06b8bbfa6054bbbedea1047f6855d37924 39624 
vxl_1.14.0-18.debian.tar.gz
 2f28d1f2671cbe059a1e59eb8767b9c62f36194264bb9bb0a3e233c8f26e8cde 12671218 
libvxl1.14_1.14.0-18_amd64.deb
 1ca20caf294f42198cd0954cb0c4887bf98e47688c53cbf746247eaa708b1a63 2133040 
libvxl1-dev_1.14.0-18_amd64.deb
Files: 
 7b32966db2710932e9b445bf7d771154 2372 science optional vxl_1.14.0-18.dsc
 80f6e08af12439424cfc7a73216d8bf7 39624 science optional 
vxl_1.14.0-18.debian.tar.gz
 cb69bc22a6d55c32788a44cdbf05fe2e 12671218 libs optional 
libvxl1.14_1.14.0-18_amd64.deb
 8fd60437f4f4e3767467ff018434d038 2133040 libdevel optional 
libvxl1-dev_1.14.0-18_amd64.deb

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

iQIcBAEBAgAGBQJP4G8pAAoJEAFx4YKK4JNFRWEP/2fFd1vFW88roAM9GpRIkHny
b6y6qlHH7KXVmw9uMnUfgV7IBiAz0EQu9yaB0/LMCY0Cn2vX6MuMv1c8QjhFFVv/
ggLS57MdY8KOP9zuIrSUtJrFe7A654dc87crfg9wrO8q5Loe0ryGmaS/qM5qYJx8
btLyRy9AtU9uzm2HZBskiXCDP0O53VHtypSSTJbWx8/Y2Zqhw8iChwFi+/q1+vZi
hOnC3Z3yNHLOc5HqAe3wOj/JdLMSqKrj2dFaRkbMIe9uhzqTiIKsaIDmw6YenH/2
rtQ2OgUfoYQ3p/HqNVpQr2DJIOuUMwNIfDS8SYLuyHhcTqsJR0MT0VQYk67LFAWL
NuWOqt0XKdpY8OIQS/Y4rZhUaDIPOuFrnmzMl4kJI0x3qcglcbkImrLzywhWzfAI
qlgiUtJmERf/GQ2x7SBF98RGhAc5eBgBqOgXkDAOkmPOYKIum3CizW89QeIrJDfq
5t7Z1L9Yuij/O4u2yiiZeXmy3tygkE0pEeyDwzOJHZ3liVQo4Kj4eNG/FlWWGucM
DFdp1BZptEYZXvl+OPXXBqymI5hOHMA3O11rGmHMefvV/ZRv/zfIXTsXPI6ChYiP
5jyTgKYiTQwJUIuLgdc32dMnbZ468XzWfRYYHaaBC1WD5NsIPIsSv3JVwpEiGZ+E
ulxxv9BD7YGiNbPm4nYv
=bodV
-END PGP SIGNATURE-


Accepted:
libvxl1-dev_1.14.0-18_amd64.deb
  to main/v/vxl/libvxl1-dev_1.14.0-18_amd64.deb
libvxl1.14_1.14.0-18_amd64.deb
  to main/v/vxl/libvxl1.14_1.14.0-18_amd64.deb
vxl_1.14.0-18.debian.tar.gz
  to main/v/vxl/vxl_1.14.0-18.debian.tar.gz
vxl_1.14.0-18.dsc
  to main/v/vxl/vxl_1.14.0-18.dsc


-- 
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/e1sgxce-0006yv...@franck.debian.org



Accepted putty 0.62-7 (source i386 all)

2012-06-19 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 13:28:15 +0100
Source: putty
Binary: pterm putty putty-tools putty-doc
Architecture: source i386 all
Version: 0.62-7
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 pterm  - PuTTY terminal emulator
 putty  - Telnet/SSH client for X
 putty-doc  - PuTTY HTML documentation
 putty-tools - command-line tools for SSH, SCP, and SFTP
Closes: 678126
Changes: 
 putty (0.62-7) unstable; urgency=low
 .
   * Add System category to pterm.desktop (closes: #678126).
   * Use dpkg-buildflags to enable hardening options.
Checksums-Sha1: 
 06f5028118fcc3b4346bda7cf15b63bff5d88370 2040 putty_0.62-7.dsc
 b01de4d6114b946ae0d752a692733bc9866d38e1 15845 putty_0.62-7.debian.tar.gz
 1de7aafae5b7c13e1d41c74e949812f481007052 200336 pterm_0.62-7_i386.deb
 330aed0115db002de1cc11945348998a0115fe46 341532 putty_0.62-7_i386.deb
 ea180afde3a96674bbac1368f3f00961f161534b 700092 putty-tools_0.62-7_i386.deb
 a17e4f8c5c4efd13defff6064c37d4b2c6714a85 173668 putty-doc_0.62-7_all.deb
Checksums-Sha256: 
 a035dcc4978abf7c4257d6b2f4b58b3df25a779de62fc6bf8ef771bfe5348a2f 2040 
putty_0.62-7.dsc
 816d5d2063f979cb9f6c4e029ca3774a6698c982916be3975fe8f04de512d40d 15845 
putty_0.62-7.debian.tar.gz
 f6d44acc0ee15e2d36481a27f4ebc4674d2393ec733bd8a50fd72b31398d720f 200336 
pterm_0.62-7_i386.deb
 d2170bad03bd9baca5e96250fff88831e3566c89cefb53aac885c35934cee1ab 341532 
putty_0.62-7_i386.deb
 a0a10b3640fdd7dd925f42d15ec8be34edea7d9547da7e2826be79c75813d87b 700092 
putty-tools_0.62-7_i386.deb
 cc7cf533922ec8c81281a571ebe3f9be1732c2a02ae1e5371f289546a35efae0 173668 
putty-doc_0.62-7_all.deb
Files: 
 c75160458de3d44fd0f9956e07913b5e 2040 net optional putty_0.62-7.dsc
 0beb967929b7839b4027de7e2f76705c 15845 net optional putty_0.62-7.debian.tar.gz
 95b40c457783408198671efc1121395b 200336 x11 optional pterm_0.62-7_i386.deb
 cde27c8e388f25177a66de744183f22e 341532 net optional putty_0.62-7_i386.deb
 6982618f4be5c546f4e0a2c5aa596bfc 700092 net optional 
putty-tools_0.62-7_i386.deb
 d64162aa6c3f88d556540a73eb9876ff 173668 doc optional putty-doc_0.62-7_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Colin Watson cjwat...@debian.org -- Debian developer

iQIVAwUBT+ByIDk1h9l9hlALAQj+KBAAuagJsHm71jfCkgBsgsT4YdFdIlZ1gEMy
2Q9QeYYYtl3XmTeI3JMlkVg6xIz74gGuRKk7jXfNIkiwFDw1lvv1r+WFX2TA/w5v
Xt72znSegcrkYvgexCeRigGA8CK//LhvkkeQYUzJTCQ/h/wTkNMRxaDy+w9t2AzE
pc/svkGgbCMjerW/lDM73vs1Fe3GCHYZsWMqHguWwT6R55In0/Po2kApaSWoXrLD
q3Pj0Gay04uFogBXBXryQHQzejZ0WLY7UW+hxkLJawDLGhQZONagPfTnNMdk5CIK
1jsTfrPN++PiryOlql8Me2jNUB4A80O3jjn4328p5IJ/SngjlXQ7AOpqTvOdJ4Td
6th4cSF9wM11Bh2+lzjUKc4I3H1i+RvPiRavEz80jg4J1wh7WnhSLGK2i0cPMGFj
gvv2sEBNLs/WXedN51+fg9m94c4nHrwmI2zbf2Q+iNxxyXt/Bz2nizv8NGj9D+by
6AQpdpPX8c2MqWJCc3F8Hg9unOkJBzwkSAArOoIen2jehKn+dEZzQjPbp02J1uLa
c8v214JbiI5dZU8PRS4JtPfQKM1dpN0654Np7vCvrjL/9ERFILb0Sv3R/iEAg3Xj
OP9Fb83Zcjm1ZK4oi2EnE+OQgGbzYmvd5dJ3dylLG621lGNyZetas1tc3rP1dSJz
d/zN+rjogUQ=
=D9bb
-END PGP SIGNATURE-


Accepted:
pterm_0.62-7_i386.deb
  to main/p/putty/pterm_0.62-7_i386.deb
putty-doc_0.62-7_all.deb
  to main/p/putty/putty-doc_0.62-7_all.deb
putty-tools_0.62-7_i386.deb
  to main/p/putty/putty-tools_0.62-7_i386.deb
putty_0.62-7.debian.tar.gz
  to main/p/putty/putty_0.62-7.debian.tar.gz
putty_0.62-7.dsc
  to main/p/putty/putty_0.62-7.dsc
putty_0.62-7_i386.deb
  to main/p/putty/putty_0.62-7_i386.deb


-- 
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/e1sgxqj-0008ou...@franck.debian.org



Accepted chrony 1.26-1 (source amd64)

2012-06-19 Thread John G. Hasler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 17 Jun 2012 21:55:47 -0500
Source: chrony
Binary: chrony
Architecture: source amd64
Version: 1.26-1
Distribution: unstable
Urgency: low
Maintainer: John G. Hasler jhas...@debian.org
Changed-By: John G. Hasler jhas...@debian.org
Description: 
 chrony - Sets your computer's clock from time servers on the Net
Closes: 348554 572964 598253 600403 642209 644241 646732
Changes: 
 chrony (1.26-1) unstable; urgency=low
 .
   * New upstream release
 Closes: #348554: chrony and hwclock packages not coordinated.
 Closes: #572964: RTC support is missing.
 Closes: #642209: add RTC support for linux 3.0.
 Closes: #644241: new upstream version 1.26 available.
 .
   * Applied patches from Joachim Wiedorn ad_deb...@joonet.de:
 Fixed several typos in man pages and README.
 Added version.h.
 Moved default chrony.conf to debian/ .
 Renamed cron and init files.
 Removed debian/NEWS.Debian, debian/info.
 Added debian/clean.
 Updated debian/copyright.  COPYING stays.  Upstream requires it.
 Fixed debian/menu, debian/control, updated debian/compat.
 Added --without-readline to debian/rules: rewrite later.
 Minor fixes to initscript: rewrite later.
 .
 Closes: #646732 Move from readline support to editline support.
 Closes: #598253 Fix typo in LSB init headers ($hwclock to $time).
 Closes: #600403 Fix init check with PPP connection.
Checksums-Sha1: 
 55b7d85d83998dad584480770001df069708be6b 1684 chrony_1.26-1.dsc
 9b5a5391a1dccc04c78277adfd0ec094bef91e70 381475 chrony_1.26.orig.tar.gz
 98f302cb56e7cc0ac57c402eb3e2d371bced3acf 17007 chrony_1.26-1.diff.gz
 439c727e14c9c9d1c057f630e6881ef8fde86482 390768 chrony_1.26-1_amd64.deb
Checksums-Sha256: 
 322c5da379ddc4fa7693bf409ca6198835b2bd6b585ceca64464eef3a649c9ae 1684 
chrony_1.26-1.dsc
 fb191ca4ba59e192c96d022618ca3eaee49f3c11f9af8dd7297020b27bf3e05b 381475 
chrony_1.26.orig.tar.gz
 e458be92e7667f76ef3889dc54610274128ce481dffd0ad138e57a37d5313354 17007 
chrony_1.26-1.diff.gz
 2324e1e95bd4c7a2d5493ba5197e3377386eaa7b38e4f825362888946b06bb0e 390768 
chrony_1.26-1_amd64.deb
Files: 
 a009f97f76140c5e95c638a776b48b69 1684 admin extra chrony_1.26-1.dsc
 ad6dd619ff1986e4ff780363c64e2246 381475 admin extra chrony_1.26.orig.tar.gz
 021a3bf05e9539c64f09f210f5b4f267 17007 admin extra chrony_1.26-1.diff.gz
 be12b3ac83ee5b631b25577d05546aee 390768 admin extra chrony_1.26-1_amd64.deb

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

iQIcBAEBCAAGBQJP3+mOAAoJEHNAHjW0+9ql6TIP/1nu+6ZnzbvuMgxNq77HerdF
QCQRt8mdh8Q9ZAr+pQXSjeH7XtoZXlWaqk/HUmiGUtXVubIsfO5FmkGcLv47jfnn
d97652QcLsd4J9IEZnkGjXMF6bSkw/hjU7lipUtHhygL/+FnE1/YkWZ1v/LxwtjP
fvX4upRRC0Ff+i4P2vcr+H5C2TbHAqJrAckES7bvCtUuaMn7la78Mxoe8uO8t9N+
eOaKQidxjmMlqYdaejHsaaPpbjm727ZjFXWB+nA4txDX8RYa0xLiL6cswhhCglTc
nRwUVgK0es6X/JfdMlFtmiX+MXbgvP6yEMOi8yKSh6wN4V+YnOhDfwRXtr2MA2C9
K4tVoddAz3y4Z/qD6YxJZeK1HOWvyZvjNUlGF/ptvyBYXkVsEXMvSRPMiq3SiaJ0
vtisrOHhxqdihXombScCL3pJZXpNzpMtX5pHAMdeX7fQAMw6ddNADqbbEYidgQCW
vW5pmwVNTdEgnMyqNn4FHXI/hMsq691dOSm+sN96ZptYa1S8zR3fki+DO9g7gW9I
bpLQIV7/BvoUu9DcKoV4Zk9d3fiHps5VUp+okjT4McqztWBD2pknNRtPTSikI8i+
H8qyjKWjyP4IAQ/KWK9xiEWa9/ojUNgOLdIRiJh4wp+czxQJnFpIL++xAHqike6U
yvqqF8hEsRVioplnW/ir
=nGvG
-END PGP SIGNATURE-


Accepted:
chrony_1.26-1.diff.gz
  to main/c/chrony/chrony_1.26-1.diff.gz
chrony_1.26-1.dsc
  to main/c/chrony/chrony_1.26-1.dsc
chrony_1.26-1_amd64.deb
  to main/c/chrony/chrony_1.26-1_amd64.deb
chrony_1.26.orig.tar.gz
  to main/c/chrony/chrony_1.26.orig.tar.gz


-- 
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/e1sgyiw-0001yi...@franck.debian.org



Accepted cmtk 2.2.2-1 (source amd64)

2012-06-19 Thread Yaroslav Halchenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 18 Jun 2012 16:00:54 -0400
Source: cmtk
Binary: cmtk
Architecture: source amd64
Version: 2.2.2-1
Distribution: unstable
Urgency: low
Maintainer: NeuroDebian Team t...@neuro.debian.net
Changed-By: Yaroslav Halchenko deb...@onerussian.com
Description: 
 cmtk   - Computational Morphometry Toolkit
Changes: 
 cmtk (2.2.2-1) unstable; urgency=low
 .
   * Fresh upstream release
 - dropping 0001-FIX-remove-JPLS-header.patch
Checksums-Sha1: 
 bf6414bcbdd230150962aa78c9ca74c96164eadb 1564 cmtk_2.2.2-1.dsc
 64443906b16c3007228343dc7463a1ef1d618f0f 1214988 cmtk_2.2.2.orig.tar.gz
 8e734aef37a4af18d1fcaa0de69c892400e83f28 6878 cmtk_2.2.2-1.debian.tar.gz
 12a12161304efe89909c2fc5d6c6c08065e767b2 6307566 cmtk_2.2.2-1_amd64.deb
Checksums-Sha256: 
 df3899fbbf7b289d203eeace3dfd46c6945f39cc6e6b0b93f8d119c9bc94b4a4 1564 
cmtk_2.2.2-1.dsc
 8a427dbc74239f397c9f468b1cbf85c1c88ce74e8bc027e3791fc7f21fbb50bd 1214988 
cmtk_2.2.2.orig.tar.gz
 31c4e6c2b000916420dd9c631c71d112b5e5ba21bcc09d9e2928 6878 
cmtk_2.2.2-1.debian.tar.gz
 93523a539bcb375d5c61923f0e3765b4ff8f9d9992bcaa1db067493cc02b6a0b 6307566 
cmtk_2.2.2-1_amd64.deb
Files: 
 7a1de2b84c0e6fc76e8a98998a79cef4 1564 science extra cmtk_2.2.2-1.dsc
 2b92fc4c6dde668e5d86380e67d06078 1214988 science extra cmtk_2.2.2.orig.tar.gz
 9bd09f1887d2caa798a9ab7f1ed03748 6878 science extra cmtk_2.2.2-1.debian.tar.gz
 e563b4d6c68f151eed0b6ce67cad3eed 6307566 science extra cmtk_2.2.2-1_amd64.deb

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

iEYEARECAAYFAk/gehgACgkQjRFFY3XAJMjX9wCfeAS3rlu3v8zLReU3iaCdMG1l
dNkAnjnOtCeawSPKtJTARqmhGoTpWDxo
=0RO5
-END PGP SIGNATURE-


Accepted:
cmtk_2.2.2-1.debian.tar.gz
  to main/c/cmtk/cmtk_2.2.2-1.debian.tar.gz
cmtk_2.2.2-1.dsc
  to main/c/cmtk/cmtk_2.2.2-1.dsc
cmtk_2.2.2-1_amd64.deb
  to main/c/cmtk/cmtk_2.2.2-1_amd64.deb
cmtk_2.2.2.orig.tar.gz
  to main/c/cmtk/cmtk_2.2.2.orig.tar.gz


-- 
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/e1sgyj9-0001zw...@franck.debian.org



Accepted debram 1.0.3-0.2 (source all amd64)

2012-06-19 Thread Samuel Thibault
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 19 Jun 2012 15:01:41 +0200
Source: debram
Binary: debram debram-data
Architecture: source all amd64
Version: 1.0.3-0.2
Distribution: unstable
Urgency: low
Maintainer: Thaddeus H. Black t...@debian.org
Changed-By: Samuel Thibault sthiba...@debian.org
Description: 
 debram - ramified catalog of available .debs
 debram-data - debram's architecture-independent data
Closes: 677881
Changes: 
 debram (1.0.3-0.2) unstable; urgency=low
 .
   * Non-maintainer Upload.
   * Use source:Version instead of Source-Version to fix binNMU installability
 (Closes: Bug#677881).
Checksums-Sha1: 
 9c5a4036485bbcb195d56468c09f40a263b0024f 872 debram_1.0.3-0.2.dsc
 4e42f0441077dd4035992643e61c5cacb9f01f09 624733 debram_1.0.3-0.2.tar.gz
 fe48ae3656be51088f4a636bcc162d4874ab42bb 520310 debram-data_1.0.3-0.2_all.deb
 5c5a683abe79bcb9674b71368d1cbbb698c7b85e 36434 debram_1.0.3-0.2_amd64.deb
Checksums-Sha256: 
 7dbc04eb14e30339b56a6f5f210be60f9122445f9f4035ca4e273326242260a5 872 
debram_1.0.3-0.2.dsc
 70873632f0e162c7b53b25acf335296166e5e63c064a585e150c0e9adb4fe761 624733 
debram_1.0.3-0.2.tar.gz
 b52e73e650a176f9ec2e67d98639033b0cdcd42d25b64ca8823e04742f3c8609 520310 
debram-data_1.0.3-0.2_all.deb
 43dcd3f2416fb6260822cf680879d8e2028f2d31fbff0a713345c915fd460da7 36434 
debram_1.0.3-0.2_amd64.deb
Files: 
 f32cc2fc1b3823fb9617184f9fa3a292 872 admin optional debram_1.0.3-0.2.dsc
 505d8b71b211fb68b09ae17f322d8820 624733 admin optional debram_1.0.3-0.2.tar.gz
 401047f39634795b95dafd7149226990 520310 admin optional 
debram-data_1.0.3-0.2_all.deb
 01f65eaf1a023794b830f860483a762b 36434 admin optional 
debram_1.0.3-0.2_amd64.deb

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

iF4EAREKAAYFAk/geqAACgkQUesQhRznqyhofgD+Mlq0tQiWDPaiqgKGRAfiFJtR
E62cKwapwVj6zSdGHggA/Re68+9kIDu3IQFGVlrl7Olwl1dm+98Fv4Vli2zLxxBG
=0Vmt
-END PGP SIGNATURE-


Accepted:
debram-data_1.0.3-0.2_all.deb
  to main/d/debram/debram-data_1.0.3-0.2_all.deb
debram_1.0.3-0.2.dsc
  to main/d/debram/debram_1.0.3-0.2.dsc
debram_1.0.3-0.2.tar.gz
  to main/d/debram/debram_1.0.3-0.2.tar.gz
debram_1.0.3-0.2_amd64.deb
  to main/d/debram/debram_1.0.3-0.2_amd64.deb


-- 
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/e1sgyxa-0003tg...@franck.debian.org



Accepted mnemosyne 2.0~RC1-2 (source all)

2012-06-19 Thread Robert Lemmen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 14:16:21 +0100
Source: mnemosyne
Binary: mnemosyne
Architecture: source all
Version: 2.0~RC1-2
Distribution: unstable
Urgency: low
Maintainer: Robert Lemmen rober...@semistable.com
Changed-By: Robert Lemmen rober...@semistable.com
Description: 
 mnemosyne  - spaced repetition flash-card program
Closes: 678017
Changes: 
 mnemosyne (2.0~RC1-2) unstable; urgency=low
 .
   * Depend on libqt4-sql-sqlite (closes: #678017)
Checksums-Sha1: 
 51cbd1368afcb9827c553dc934e1330bbb1534f7  mnemosyne_2.0~RC1-2.dsc
 b1310b87a7a0d6cc6dcd3f19b6bbfabb6ad10355 3590 mnemosyne_2.0~RC1-2.debian.tar.gz
 a343a4703725d49711e61b5ae57d72f41a6d5887 337132 mnemosyne_2.0~RC1-2_all.deb
Checksums-Sha256: 
 b036b40417d0cb1cf4291c9a786f95c00e26dc41deae9c26855cc2d304365835  
mnemosyne_2.0~RC1-2.dsc
 23f22591f1c76fa7877367230aca864853fec323441f31a252b7079605d6c65a 3590 
mnemosyne_2.0~RC1-2.debian.tar.gz
 315acd2be88c551f9398d84f3772e3476d74c97e5db5006cb2c0ccdc0ab55921 337132 
mnemosyne_2.0~RC1-2_all.deb
Files: 
 03f27b4668bd2e24f7b061e4dddf6886  misc extra mnemosyne_2.0~RC1-2.dsc
 4fc8711b620e9d5e40ef184e598b313f 3590 misc extra 
mnemosyne_2.0~RC1-2.debian.tar.gz
 767b7e26b5b5194c6a1eaede8d82cdaf 337132 misc extra mnemosyne_2.0~RC1-2_all.deb

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

iEYEARECAAYFAk/gfFQACgkQS6AOchRbaWZOYQCaAsuQae6vuKopotSYXY/M441p
JOkAn0UpZRT2T3fvtH8hSx668SAqhsdH
=QJC7
-END PGP SIGNATURE-


Accepted:
mnemosyne_2.0~RC1-2.debian.tar.gz
  to main/m/mnemosyne/mnemosyne_2.0~RC1-2.debian.tar.gz
mnemosyne_2.0~RC1-2.dsc
  to main/m/mnemosyne/mnemosyne_2.0~RC1-2.dsc
mnemosyne_2.0~RC1-2_all.deb
  to main/m/mnemosyne/mnemosyne_2.0~RC1-2_all.deb


-- 
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/e1sgyz6-0003yi...@franck.debian.org



Accepted qr-tools 1.2-2 (source all)

2012-06-19 Thread Koichi Akabe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 18 Jun 2012 23:13:49 +0900
Source: qr-tools
Binary: python-qrtools qtqr
Architecture: source all
Version: 1.2-2
Distribution: unstable
Urgency: low
Maintainer: Koichi Akabe vbkaise...@gmail.com
Changed-By: Koichi Akabe vbkaise...@gmail.com
Description: 
 python-qrtools - high level library for reading and generating QR codes
 qtqr   - Qt frontend for QR code generator and decoder
Closes: 677722
Changes: 
 qr-tools (1.2-2) unstable; urgency=low
 .
   * debian/patches/100_remove_tmp_files.patch
- add to remove temporary directory (Closes: #677722)
Checksums-Sha1: 
 931775fe1f42293ba039aca39fc5725c18b74c84 1743 qr-tools_1.2-2.dsc
 1463db1739d1dd0a9c4579298bb0d1278f37cc88 2965 qr-tools_1.2-2.debian.tar.gz
 5e3f3ba2c1982be4be09f9683b5958c6a437c2fe 4844 python-qrtools_1.2-2_all.deb
 b3996870f576147d6bb183455ae33413e230c7e4 30990 qtqr_1.2-2_all.deb
Checksums-Sha256: 
 afd536a7e928b55f8084953aa6424c9cb236290adcc4f9ed26710f50a6757b80 1743 
qr-tools_1.2-2.dsc
 5f8d8da8e3f734a3be3ac244605a944c302cad0a323995f863d30d33f4fd319b 2965 
qr-tools_1.2-2.debian.tar.gz
 24bb4ca3ed38388385a50aee8034612d24e99f6edc06f1c213ef323631667104 4844 
python-qrtools_1.2-2_all.deb
 6dbf7e62dff9d670f130426fde540706996cc7abfa387e48a913d546d710d1a5 30990 
qtqr_1.2-2_all.deb
Files: 
 fcee75662c8ed1cb12daa6648e25c96c 1743 python optional qr-tools_1.2-2.dsc
 01f7b0893405688203b6d0aef2b470dc 2965 python optional 
qr-tools_1.2-2.debian.tar.gz
 b087f6f76c53c23cea8e1a3dc45b1bd0 4844 python optional 
python-qrtools_1.2-2_all.deb
 0936f1afde352d737fa2b9f09beb4192 30990 python optional qtqr_1.2-2_all.deb

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

iQIcBAEBCgAGBQJP4HsJAAoJEF0yjQgqqrFAxxoQAK577aqKJlcUdMJM+DjS8ey3
J7tQTKKVtdxlG/RT1sji53pQ/OSCS1i59IoY3C8pAayeRYDn+eGnCc+OlDbtqxXK
OIlj1XX0IpFRRYJbI3c49BPE06/SZINZ2nDLMCTNRyylP12+JOEXb78ceDKWDZ4L
baWpSfimJjnAs5e+aWZ/eCuFmSc/C2y5kqwYIQiHMbhdhYv84VYU9w1iniWVeOgv
LgA6/FJSvPRATh+J5WkJCOi5B5OkrArEZNuoS7f9isYkomJKtTHRohHBi/AG2d0K
LWjxCJAd6NTSzBQr6e0sg6JlvY0AUVrqN7HJEJoQwIqa+reVxXI6Ugenxj79Uyj2
FGG5VLapjwQ0W86BGAmHN/UjH11YOvxp4CkwY87SMTGKU33D8ieRixkbi+Q4hSkk
3he+PPOoRM7wZHbuuZYDtDb/5Zr8NG626aloh+QBxKionUHb1pl4SA+m/lJGVMpv
0O4HjzIBcm7LbhS/brNr1HUBnaUdfS+HDP9OdeSNagKuV22BjrRPnx/wj8NZri/s
zrO5qQEdJOsjAEh4IKInhZ72nVmq7sdHuXg8BOlScQHtnB76m7PflsM6CKFiQP9M
Lf/UoMqUEK52QskjjCOWlQdrvdQThweDks1k4Q/V8RHiDOea6y884hRIQAk0Owfe
kBi1m5FKfs8vX9JXTH2b
=miCi
-END PGP SIGNATURE-


Accepted:
python-qrtools_1.2-2_all.deb
  to main/q/qr-tools/python-qrtools_1.2-2_all.deb
qr-tools_1.2-2.debian.tar.gz
  to main/q/qr-tools/qr-tools_1.2-2.debian.tar.gz
qr-tools_1.2-2.dsc
  to main/q/qr-tools/qr-tools_1.2-2.dsc
qtqr_1.2-2_all.deb
  to main/q/qr-tools/qtqr_1.2-2_all.deb


-- 
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/e1sgyai-0003ca...@franck.debian.org



Accepted kdeadmin 4:4.8.4-1 (source all amd64)

2012-06-19 Thread Lisandro Damián Nicanor Pérez Meyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 10:12:22 -0300
Source: kdeadmin
Binary: kdeadmin kcron kde-config-cron ksystemlog kuser 
system-config-printer-kde kdeadmin-dbg
Architecture: source all amd64
Version: 4:4.8.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Lisandro Damián Nicanor Pérez Meyer lisan...@debian.org
Description: 
 kcron  - program scheduler frontend - transitional package
 kde-config-cron - program scheduler frontend
 kdeadmin   - system administration tools from the official KDE release
 kdeadmin-dbg - debugging symbols for kdeadmin
 ksystemlog - system log viewer
 kuser  - user and group administration tool
 system-config-printer-kde - printer configuration utility
Changes: 
 kdeadmin (4:4.8.4-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
 .
   [ Lisandro Damián Nicanor Pérez Meyer ]
   * Remove duplicated Section field for package kdeadmin. Simply inherit
 it from the source package.
 .
   [ Eshat Cakar ]
   * Bump kde-sc-dev-latest build dependency to 4:4.8.4.
   * Bump build dependency on kdepimlibs5-dev to 4:4.8.
   * Update Standards-Version to 3.9.3 (no further changes).
   * Add watch file.
   * Update installed files.
Checksums-Sha1: 
 13c861d93ccf2545487b3c69dbcebe5b165fdbf3 2441 kdeadmin_4.8.4-1.dsc
 b825e40b29b4ae684265cb13b7935737d7ae6d68 1169564 kdeadmin_4.8.4.orig.tar.xz
 307c93d4419c90e5bc99df660f9857a466a66076 19636 kdeadmin_4.8.4-1.debian.tar.gz
 46f133ef634190774e0b6fe775e7a62475f2f1e6 8808 kdeadmin_4.8.4-1_all.deb
 4948894f57c79333c7974b1f8d635ae466d01ea0 8550 kcron_4.8.4-1_all.deb
 4c905f9e111da79bd7ffcec0f14859fd2d1df59a 213290 
kde-config-cron_4.8.4-1_amd64.deb
 b0bdd407fa87aa8bafbbad689562cdd0f1da2608 505118 ksystemlog_4.8.4-1_amd64.deb
 65d1bc403d823fd7b91b76bba98757b6c88adf2b 234776 kuser_4.8.4-1_amd64.deb
 38097e15c11fa237c4904495a288bb9a9fff9037 574572 
system-config-printer-kde_4.8.4-1_all.deb
 69df67085712f50ccb138082eb58315324b0dad8 7870326 kdeadmin-dbg_4.8.4-1_amd64.deb
Checksums-Sha256: 
 ff6be6172f0260ee1bfe218420ed9535020fb6d7a8a06304f1406361069e0ef3 2441 
kdeadmin_4.8.4-1.dsc
 20531b048091c4f69bf8e115f1343aa5757ecd860ba5020cd8ba8352e3b67e63 1169564 
kdeadmin_4.8.4.orig.tar.xz
 47ceba7db081616b08ca9bed79b492b845a70fcc098fc2cdd307ab31cf597ccc 19636 
kdeadmin_4.8.4-1.debian.tar.gz
 bdaf4ac068acc42ec2229984231e5855bc123bae87bf5dd1fc97aa8afa710e84 8808 
kdeadmin_4.8.4-1_all.deb
 0ce5e3b16a04ae854aac4fd3b76b19e55956bd82617812de99d3ccbf9d065c6a 8550 
kcron_4.8.4-1_all.deb
 e44e0a8635c66742829e8860b10fb21bbe65125248813634e374f5d8c3dceed1 213290 
kde-config-cron_4.8.4-1_amd64.deb
 b078e982bd5a92bf1683746bf0fc882f1407dd6acd58825a8260d05687a10764 505118 
ksystemlog_4.8.4-1_amd64.deb
 6042eb0e39546e25fbe119ae7f37d42a22ce5e2342d188703ae6ce9256b9fdd2 234776 
kuser_4.8.4-1_amd64.deb
 8cdd97f5c6ed4147eae26cdbde699e73a8b8d845ac6a434ab45ab736169d5272 574572 
system-config-printer-kde_4.8.4-1_all.deb
 10fce84cbd3ba4e0c91c3c4a9bc587e30eab933cbe5d9c6b2968e1ddb74d0f67 7870326 
kdeadmin-dbg_4.8.4-1_amd64.deb
Files: 
 955f39228fd3f81c8d04de583e34280c 2441 kde optional kdeadmin_4.8.4-1.dsc
 7807e66e0cfe1c573b96f705d3219ee2 1169564 kde optional 
kdeadmin_4.8.4.orig.tar.xz
 73d7c7ac4621c2427700cc7a8c0541b9 19636 kde optional 
kdeadmin_4.8.4-1.debian.tar.gz
 6b74c2484295b5c56b51e183ca943ece 8808 kde optional kdeadmin_4.8.4-1_all.deb
 3ba1bffc685b6e212e07e51d36828484 8550 admin optional kcron_4.8.4-1_all.deb
 d6945708244f425c2d8f91ad60500bd2 213290 admin optional 
kde-config-cron_4.8.4-1_amd64.deb
 227554140d80ab3933fa9e177a80adef 505118 admin optional 
ksystemlog_4.8.4-1_amd64.deb
 7d6cd0812edae7b7df66ff71703689da 234776 admin optional kuser_4.8.4-1_amd64.deb
 aaddbe1ee7244a3d65334e4abbae7328 574572 admin optional 
system-config-printer-kde_4.8.4-1_all.deb
 0f7b0d25915e86c0e9d34573531b5e08 7870326 debug extra 
kdeadmin-dbg_4.8.4-1_amd64.deb

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

iQIcBAEBCAAGBQJP4IMHAAoJEKtkX0BihqfQvJgP/izQ0eFc0tWuWOPRcZYwnBqS
9Qj5phk3hrsV6kagX+vNTcQFHVwIvY2ORlPXae77lCjhmYGnTmJHFQhFQN9h5L8F
JlJCO5IzUvqKeLLEZx+WCitUHf/FtlqO+zFAK8C1h9a4ThRNBJ2yZ3F2kbaQcbTp
J1jjILt6R1Mkc7R2700H4ULV8hj2XnsM49wNhs4Wz3LbX2txJiobClv6RzNXgrJV
bAhWElZ2707QKZ866/g3l5xiNznSNQ8kx6t/FCNbKFfOo6kmGaezMOFpP5VAZ0Tp
ombnXKiZUss+TSfwfeClnUzzib0q0SfwiWhBjkg2vQCZNXAUCz2r2z1tkOLVbzOa
w9aC0HO9ThkYwyWPNPEXvGDCgyxuerJ0ttdae9cNRZkDqOorIb2JAU1/Moa6llAz
K47zMeAH1IvOJgFnLvuvhgrddHivG2aAoFJjnBsJ6c8r2wLOZZDys3YKnVueUD88
jApTWqcH2i8BsWh1AjO9mJKLx5BgrU3cb+jsPieJ7X25VntxE9pF9dDndNFdlj2U
NfWbQDf+cJRZx/sogp14ck9n8ipXjwriAQ6dbXG6aQgawA0MMg75LNJ0KQ6OrCKZ
UyyW1+KXLuca2zNd30zQLvGbKk907rfXnNYOX4bItVJqVyy43vTfiV60yv6YWx/Q
CXGvr81S/2SAM5hAeLAr
=3lqV
-END PGP SIGNATURE-


Accepted:
kcron_4.8.4-1_all.deb
  to main/k/kdeadmin/kcron_4.8.4-1_all.deb
kde-config-cron_4.8.4-1_amd64.deb
  to main/k/kdeadmin/kde-config-cron_4.8.4-1_amd64.deb

Accepted me-tv 1.3.7-0.2 (source i386)

2012-06-19 Thread Timo Jyrinki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 19 Jun 2012 16:37:17 +0300
Source: me-tv
Binary: me-tv
Architecture: source i386
Version: 1.3.7-0.2
Distribution: unstable
Urgency: low
Maintainer: Scott Evans sc...@vk7hse.hobby-site.org
Changed-By: Timo Jyrinki t...@debian.org
Description: 
 me-tv  - Me TV, it's TV for me computer
Closes: 667731
Changes: 
 me-tv (1.3.7-0.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Pick fix_database_access_problem.patch from upstream
   - Should fix EPG thread related hangs (Closes: #667731)
Checksums-Sha1: 
 9b1dbfa599b65c2c320813c4feb724b0fcc11c16 1947 me-tv_1.3.7-0.2.dsc
 79a68771c6611aafc8dada9254e8c6b8285a2b61 6695 me-tv_1.3.7-0.2.debian.tar.gz
 5cad03f4310d83ef84b418eeac0cc310dae45276 595476 me-tv_1.3.7-0.2_i386.deb
Checksums-Sha256: 
 a1982698810ccae24ec2923953317072479e8143772710614d0d158564576af1 1947 
me-tv_1.3.7-0.2.dsc
 a1371e5f5a83a9705473b22ae9f4033e6bbb7d8f3ea01f11b82c729c7f229884 6695 
me-tv_1.3.7-0.2.debian.tar.gz
 0fe885fc329ec439ffd475a1f0eb28ea88f7a357adf999644186dbec1d04b0d1 595476 
me-tv_1.3.7-0.2_i386.deb
Files: 
 a36a1c4244da5bd840aaa670ebff9d3e 1947 video extra me-tv_1.3.7-0.2.dsc
 f4505b836fb04887c3a91a491a168fa0 6695 video extra me-tv_1.3.7-0.2.debian.tar.gz
 a282aed22c1d59bc4ac36f4014228d01 595476 video extra me-tv_1.3.7-0.2_i386.deb

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

iQIcBAEBCgAGBQJP4IRvAAoJEOD3WfeQvdIHjSYP/3FAbFd7CNePOPuXIc0mumFX
2vyMIenbdjc0LPEWGr2xQ4Gm0Lpee1Bf22S7qghUld+Dv29QpU4hnMsv3+lX1XrS
mkIAlCtq1mGvsxeMbiVp72Sb+2GOj+N79ldOMbvzmEd0JrLTftJpWnsfKCKohbug
Be5BvcL+vEog5Ld+u3NZsRDlwlyJ4oo4wtL4jpRSHRrgVfYZnPOiJB8kTENgnJtY
30JqDv2GvHTCZ8iUdIPmaIE+B7YiFDuYIDLv5Mtjh6cxKbNENDnwRbwcfdzZRg6+
hjUWa8/UUYIX36uggBqCl7iON9rVdUggKX2LxIyGlIGndg8HjKLPNGx5lrjc1psy
0KK2z4zgGLZlpCJZCiE/P48MI927skeBMChFqZSj+beOyhFtyOJaSIPoSzmxYZmT
yuFdfVgH4Cn+WdOZ6FCSShPQiI8j/SzO/lYp19n2LN1UrwJAv9C7FSeY7F13ntTa
lvXKf+goI66jSQBXetwjaA0mxfCi94whJQvPFo9maMiX1m/E04J2nDNQHfjFLKoH
btBAwzU9lh9j+63ZxwUoNw3MgJiFtMx+1zcrDx9pU0QtCGgTC1pp3B37mDnusBO5
rG4jmLzeVwTBR8evXBNfhr6/K6eqUqOCg9EUz27tIFstMnt7RWiq+UxWM2znYq2h
6ZAnJmd+5E+XIbddsAKN
=4rXv
-END PGP SIGNATURE-


Accepted:
me-tv_1.3.7-0.2.debian.tar.gz
  to main/m/me-tv/me-tv_1.3.7-0.2.debian.tar.gz
me-tv_1.3.7-0.2.dsc
  to main/m/me-tv/me-tv_1.3.7-0.2.dsc
me-tv_1.3.7-0.2_i386.deb
  to main/m/me-tv/me-tv_1.3.7-0.2_i386.deb


-- 
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/e1sgzlf-0006wx...@franck.debian.org



Accepted openr2 1.3.2-1.1 (source amd64)

2012-06-19 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 16 Jun 2012 15:40:43 +0200
Source: openr2
Binary: libopenr2-dev libopenr2-bin libopenr2-3
Architecture: source amd64
Version: 1.3.2-1.1
Distribution: unstable
Urgency: low
Maintainer: Debian VoIP Team pkg-voip-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libopenr2-3 - MFC/R2 (telephony) call setup library
 libopenr2-bin - MFC/R2 (telephony) call setup library - test programs
 libopenr2-dev - MFC/R2 (telephony) call setup library - development headers
Closes: 666351
Changes: 
 openr2 (1.3.2-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix FTBFS: dh_install: libopenr2-bin missing files
 (etc/openr2/*.conf), aborting:
 update build{,-arch,-indep} target in debian/rules.
 (Closes: #666351)
Checksums-Sha1: 
 f05ca17aa5efda6bc2ec7bf4d2f5062d318c762d 2020 openr2_1.3.2-1.1.dsc
 c96722f6e950fed4d71e3e0eca56791ea0e30539 3695 openr2_1.3.2-1.1.debian.tar.gz
 8bb298dfd9fbdecf8e5b7ec0a679d715faa8848a 64436 
libopenr2-dev_1.3.2-1.1_amd64.deb
 c564b993c1fc3ac6473b2e3984caab4f75f4676c 28830 
libopenr2-bin_1.3.2-1.1_amd64.deb
 a35497e163fd4bec83624971691923350433e933 55580 libopenr2-3_1.3.2-1.1_amd64.deb
Checksums-Sha256: 
 eb5b39ea426720a8db54cc5fb2a6927126e4a4f2b32582708f06fe5fa57aa7bd 2020 
openr2_1.3.2-1.1.dsc
 a66d9357611cd35ac277ce480495041a79ac993364c8e60a1ad88a376326afa9 3695 
openr2_1.3.2-1.1.debian.tar.gz
 425083482b2eef2f39db9b98cf26d543e3929d283435a41f11becdbfd1240d42 64436 
libopenr2-dev_1.3.2-1.1_amd64.deb
 78f72a5090a0e5e453c07f3c299bb5fffc938afe16dfeeb0d1d80937218de108 28830 
libopenr2-bin_1.3.2-1.1_amd64.deb
 c101a14c6e8d72d80a09a9be9f5ff05063314c10319835198c9acf635503404a 55580 
libopenr2-3_1.3.2-1.1_amd64.deb
Files: 
 d85c7a3f95e39771b96984bfac04c776 2020 libs optional openr2_1.3.2-1.1.dsc
 3d2103190a2835a81bf3f72d4d731b5d 3695 libs optional 
openr2_1.3.2-1.1.debian.tar.gz
 8a6fbd70a731a32d6eed29c462f5409a 64436 libdevel optional 
libopenr2-dev_1.3.2-1.1_amd64.deb
 7cce2bce7174e7b0e8a694bc5c5ca9bb 28830 comm optional 
libopenr2-bin_1.3.2-1.1_amd64.deb
 7007303dea94763a27f906735b71d4e9 55580 libs optional 
libopenr2-3_1.3.2-1.1_amd64.deb

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

iQIcBAEBCAAGBQJP3I0aAAoJELs6aAGGSaoGCpoP/Ry/vhLe+kD2jNHaGwL3yJtD
WBo4AGGex0rm0iFVj5pVAUazNUNVN0E0QClGh7Yknw8GHux1Wph06yMbi4U+18y+
6+mPH+OEZW/2ui20ttTxVbCSdQuRHqx42bsaK4WIoiaNCk0nL0uVylpgenuSvBXC
fnBplgayTEX8Rd41Pymp2wUt9vcIW7vMXFL6IsLtlczhU9BqH5eWpdloutteUVES
ZDRXD8LvINUSSvegjLmwH6I6eEiC4fDEoffRoQ0tBUC0crKR2D5aT71maygL3LHc
Nvw8t1JgdqYURpM4cU54QBDMOYvj4mqvAEZHxAmPezG7BtHvHoCGaCY9m+qAUca8
WYrvUXfAZlTSdiLp+3Dn1i/Jp94weP0clr2tELW1m2++ASQaK9GtR05bheIbYuC8
6V4d0sZadY4zK5N+VVLDBaB8itMOB/jrK3ZF9KKi4DrY7owsQ5g4j4PmAu4hfzd6
NydacR/JSgua4fSyVVPsnYjGNaW82BXElMsfuJRJccvRdFaHJ3niY3dyStnTRZBb
2xLDeJ94CZ2izWM+D+PRvQab255XHfOXD868g5y+FbTXm6MVGfLB+yxumtLDSHlD
BfMyX+5SUfiOWhS24mGmJEL+djzZTUQ4K8EhWlR01Ix4B2tRV3KheVrGGQvXsKOt
NKK2my7U+5yheMVe9sHB
=wDKr
-END PGP SIGNATURE-


Accepted:
libopenr2-3_1.3.2-1.1_amd64.deb
  to main/o/openr2/libopenr2-3_1.3.2-1.1_amd64.deb
libopenr2-bin_1.3.2-1.1_amd64.deb
  to main/o/openr2/libopenr2-bin_1.3.2-1.1_amd64.deb
libopenr2-dev_1.3.2-1.1_amd64.deb
  to main/o/openr2/libopenr2-dev_1.3.2-1.1_amd64.deb
openr2_1.3.2-1.1.debian.tar.gz
  to main/o/openr2/openr2_1.3.2-1.1.debian.tar.gz
openr2_1.3.2-1.1.dsc
  to main/o/openr2/openr2_1.3.2-1.1.dsc


-- 
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/e1sgzls-0006xk...@franck.debian.org



Accepted gtkhtml4.0 4.4.3-1 (source all amd64)

2012-06-19 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 16:40:54 +0200
Source: gtkhtml4.0
Binary: libgtkhtml-4.0-0 libgtkhtml-4.0-dev libgtkhtml-4.0-dbg 
libgtkhtml-editor-4.0-0 libgtkhtml-4.0-common libgtkhtml-editor-4.0-dev
Architecture: source all amd64
Version: 4.4.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Evolution Maintainers 
pkg-evolution-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 libgtkhtml-4.0-0 - HTML rendering/editing library - runtime files
 libgtkhtml-4.0-common - HTML rendering/editing library - common data
 libgtkhtml-4.0-dbg - HTML rendering/editing library - debug files
 libgtkhtml-4.0-dev - HTML rendering/editing library - development files
 libgtkhtml-editor-4.0-0 - HTML rendering/editing library - editor widget
 libgtkhtml-editor-4.0-dev - HTML rendering/editing library - editor widget 
development files
Changes: 
 gtkhtml4.0 (4.4.3-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
   * Drop Build-Depends on libgladeui-dev since we do not actually build with
 Glade catalog support. The plugin currently doesn't build and needs to be
 switched on explicitly via the --with-glade-catalog configure switch.
   * Upload to unstable.
Checksums-Sha1: 
 a9fdb13cae18b3491fde5f7ec240c2df6b9ccf8b 2897 gtkhtml4.0_4.4.3-1.dsc
 e66dcbf3201ea7a52e3e10b798775e3729db102e 1038092 gtkhtml4.0_4.4.3.orig.tar.xz
 a3b2c8e7a5b30bb0af92e9afefa67bae619eaae6 12642 gtkhtml4.0_4.4.3-1.debian.tar.gz
 ecf1070244e1be8d7a955e0adfe80befac4c3040 601862 
libgtkhtml-4.0-common_4.4.3-1_all.deb
 fd8227114fc65f9ac7a7708932a66efdfbe9b278 421300 
libgtkhtml-4.0-0_4.4.3-1_amd64.deb
 5109c967a42e54b1e2be4e3edb834bb5432ac851 81460 
libgtkhtml-4.0-dev_4.4.3-1_amd64.deb
 6359bf55b7aca3278c1dcf00d52917516bec29a7 1622788 
libgtkhtml-4.0-dbg_4.4.3-1_amd64.deb
 cdf07b8df0ff8c24b192a0ac270914e0df87f1fb 154222 
libgtkhtml-editor-4.0-0_4.4.3-1_amd64.deb
 820a06c8f66820d6cbe7bcbd4f0c29684621a764 75290 
libgtkhtml-editor-4.0-dev_4.4.3-1_amd64.deb
Checksums-Sha256: 
 d6c1b4223824384673c3f09d9a5d6c7283e863987d1e86dba98bc7c07dec5bde 2897 
gtkhtml4.0_4.4.3-1.dsc
 da1f593dafcb202dbed0e99bc14ef20bfd5c54ec0d966912feeb7ba7864418aa 1038092 
gtkhtml4.0_4.4.3.orig.tar.xz
 abacfd7153f20a11b1652293d38be672e1909475b617e2fd4335fb35cf427103 12642 
gtkhtml4.0_4.4.3-1.debian.tar.gz
 86fe1e2f12122949a62a9dd37775a8621d86526ee4e17d55eace373166c175fe 601862 
libgtkhtml-4.0-common_4.4.3-1_all.deb
 cbfc266aa94272058dab5e14e2a86086d8cff7ce08c3a5e2fd01683b8787c9f1 421300 
libgtkhtml-4.0-0_4.4.3-1_amd64.deb
 8aa4687edc8f5cca3c30f1befa60988bb839cfae33cfda4e78d9c61afb85a011 81460 
libgtkhtml-4.0-dev_4.4.3-1_amd64.deb
 7ab915de612046be2958cb493d436ef4c7ce71a4b517cfb329ed8bfd5a37767a 1622788 
libgtkhtml-4.0-dbg_4.4.3-1_amd64.deb
 1c2f5d055fe25c618783b30c25faef888a3830434a5a229411e0072c4ddb0788 154222 
libgtkhtml-editor-4.0-0_4.4.3-1_amd64.deb
 d2eaaa360e4ed8ffed8c341a9bdb7ead72052b3bcb0ac330f781bc18252364fe 75290 
libgtkhtml-editor-4.0-dev_4.4.3-1_amd64.deb
Files: 
 4a41be0131c4905c879d34bb958f2b54 2897 gnome optional gtkhtml4.0_4.4.3-1.dsc
 2f9cd755bfa4aef436cef1524b90fe0e 1038092 gnome optional 
gtkhtml4.0_4.4.3.orig.tar.xz
 2ab36db2ae13ca7cd8219ebf4347dfc1 12642 gnome optional 
gtkhtml4.0_4.4.3-1.debian.tar.gz
 5b03b7f7b2f70e34086fe252c20542a3 601862 libs optional 
libgtkhtml-4.0-common_4.4.3-1_all.deb
 6909e8f46c23bf0e72c029a11dda98f6 421300 libs optional 
libgtkhtml-4.0-0_4.4.3-1_amd64.deb
 4d13dd539a5c7915e6041a8db32d1ca4 81460 libdevel optional 
libgtkhtml-4.0-dev_4.4.3-1_amd64.deb
 4e0701b3a479a0af171315ffcdaaf14d 1622788 debug extra 
libgtkhtml-4.0-dbg_4.4.3-1_amd64.deb
 b7256de15657f208af3d2b0a22ac83f3 154222 libs optional 
libgtkhtml-editor-4.0-0_4.4.3-1_amd64.deb
 916eeda332f644323ec28bc0896d9f3b 75290 libdevel extra 
libgtkhtml-editor-4.0-dev_4.4.3-1_amd64.deb

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

iQIcBAEBCAAGBQJP4JC4AAoJEGrh3w1gjyLcqSgP/RjmL3lUdkcxaYKCjuGnmH90
vQC9MPbM/GKD2KExjKu40+i1vHojP5/rKY4dGKFXiDNySYKeKyT4Ip87scZSscZE
mN7yA8sw/yfG6n/AoF0ok3PEumwpl0+SCcbtGI3R0rsMYYRxxinAuLYdgScfo2W0
THYFxWQS9FIePtzvWOZ+lm7AX1/+llQs3MvwKEBTZR2NLNlvilKcjZaLh4FyP2L0
XFXtoDybQvyn7qSRm+CiCWt3FjiOwR2U8A63lpQOwdNnpwbJvrFXxTGnUJuapIGY
imArIHZ0oahPBqGV98LEWlzGdRQGWcFlGkfHE1meyF9NJ8Q2d0Me8gQzEmkgVz3s
MoTeVGnEZsJL8F/VEzZxPZX9FS45KzNY40yuUWXXDQlPbmeTtYiAGFFMwfFOt/G4
J38KeAGFwCUWcySIODa5JwAzokIkfUQmKiipd871XRJrk1V+j45/e7tN802/8cl9
0CMy1mawCi17hQtHGjmnC1WKVS4Jp0U6OrCznRqyFf/gYgePdW5mIHs16g2M4+Hz
SYonCaytOyWN4re14PmF1XjuSC9If6QclRA4V26OMS2YFZNhGPOOntlHC2yaOC1O
4Tz3VefOkaDRKecr4nTXXOCK+K/7HjuY/p2Wj+Yn/CVXXuAy3GeebjBKrtC6RwB+
7wixaA5mAC7Cm5QqdVXB
=S8cm
-END PGP SIGNATURE-


Accepted:
gtkhtml4.0_4.4.3-1.debian.tar.gz
  to main/g/gtkhtml4.0/gtkhtml4.0_4.4.3-1.debian.tar.gz
gtkhtml4.0_4.4.3-1.dsc
  to main/g/gtkhtml4.0/gtkhtml4.0_4.4.3-1.dsc
gtkhtml4.0_4.4.3.orig.tar.xz
  to main/g/gtkhtml4.0/gtkhtml4.0_4.4.3.orig.tar.xz

Accepted mail-notification 5.4.dfsg.1-6 (source amd64)

2012-06-19 Thread Stephen Kitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 00:03:39 +0200
Source: mail-notification
Binary: mail-notification mail-notification-evolution
Architecture: source amd64
Version: 5.4.dfsg.1-6
Distribution: unstable
Urgency: low
Maintainer: LIU Qi liuq...@gmail.com
Changed-By: Stephen Kitt st...@sk2.org
Description: 
 mail-notification - mail notification in system tray
 mail-notification-evolution - evolution support for mail notification
Closes: 677455
Changes: 
 mail-notification (5.4.dfsg.1-6) unstable; urgency=low
 .
   * Allow linking with --as-needed (thanks to Michael Bienia for the
 patch).
   * Support building with Evolution 3.4 (thanks to Michael Biebl and
 Mathieu Trudel-Lapierre for the patch; closes: #677455).
Checksums-Sha1: 
 a509782f16720127cd427fa1eec496d6a1ffa16a 2255 
mail-notification_5.4.dfsg.1-6.dsc
 0d556b9f3afeb804a7dd63ff81c11dce4b1a4e72 36110 
mail-notification_5.4.dfsg.1-6.debian.tar.gz
 e538366fa55edb65d08aa58f65d7ba25d0347bf5 437892 
mail-notification_5.4.dfsg.1-6_amd64.deb
 b7232b380cddb939061fd32d8ed5c95ea5741b36 22110 
mail-notification-evolution_5.4.dfsg.1-6_amd64.deb
Checksums-Sha256: 
 6bcd6bce5a68e46ce257c71b563fc904d69dbbc5be71d878a112e1ed6f9f9de0 2255 
mail-notification_5.4.dfsg.1-6.dsc
 d340bd34a46f9f03f5a14acb899e18e486aa3db621de8b06a5a143e8797f1f39 36110 
mail-notification_5.4.dfsg.1-6.debian.tar.gz
 47cc59c8a8c6adf3beee94b562d97e322f0e43ce65003319f2b7b3de09696ece 437892 
mail-notification_5.4.dfsg.1-6_amd64.deb
 992c0fadead2f0954f5e799ebbd71205e8e8340a9516c9078994dad507f3d430 22110 
mail-notification-evolution_5.4.dfsg.1-6_amd64.deb
Files: 
 1190740144f17448babbee2c8c56b69d 2255 gnome optional 
mail-notification_5.4.dfsg.1-6.dsc
 9e4036654db123249316f45bc6b36c4f 36110 gnome optional 
mail-notification_5.4.dfsg.1-6.debian.tar.gz
 41414c2a7c8ed5d1f5edadfd82f5f810 437892 gnome optional 
mail-notification_5.4.dfsg.1-6_amd64.deb
 9b735ab57b03b82829bf1ab8b2c653ba 22110 gnome optional 
mail-notification-evolution_5.4.dfsg.1-6_amd64.deb

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

iQIcBAEBCAAGBQJP4JJHAAoJEGrh3w1gjyLcij0P/026mks5byhyCGoT0l9DQedd
N44zKhBvifInjPt4x4p0Jtss4m6peQBWa9DAubLi4Bc5gAcD/0R+fRBUoR4k1kzI
9tFtyPynB6h06ZVYtAnRfocdviTshESNw555Qu6Dq8q6dDK/8nI9GN367SmRWqlE
z775RIHuXWES+FoTIQs4Fdm8CiG9RNJxJcHp11+Lck+U7mmcNzOnwx8yqd73KAIo
DZclhovtq7WAsGjMjhyr/z+fyeDujC2dvgX7p998HLaZYpIw+7jxI1N4QNVH+fIO
KSJXy4T/mAd1Ke6h+fxhfwJNmu5mCRZ2EQzvUqi+BEIMztInBTZNPM5nS0jZcRDm
8IBo8OjLOhmGVSMQhBQ91XM23rYAYdPFTqIeUQ2eu05BPkBxor46NdzfJsynvFll
7OpohvI9xdBqUeCkQkL/vnlJnlVlf7JQLL5I02lG8xnIGUlwscttztgJW1UEAnGd
4DNRiB8s8VV/IoYBOMWJIR2NXSAYNHr+wrr+7ytW/OWSMhGf4BF2A4/Xm1OcJmi1
NMfTwg76eFWy85n9XhxY2dtLE39uXYaP6Xkne4R2ebgUSNeeQDo7sOwj+RlWByzR
oHhRVC9qJQ1Wq3gX1Gz64HBE6wgaoOfBDEY8FwigirlDxnZjbVJ8v+YpZyEXx44w
qTN2gwnBBekVSQauiLAV
=MMSI
-END PGP SIGNATURE-


Accepted:
mail-notification-evolution_5.4.dfsg.1-6_amd64.deb
  to main/m/mail-notification/mail-notification-evolution_5.4.dfsg.1-6_amd64.deb
mail-notification_5.4.dfsg.1-6.debian.tar.gz
  to main/m/mail-notification/mail-notification_5.4.dfsg.1-6.debian.tar.gz
mail-notification_5.4.dfsg.1-6.dsc
  to main/m/mail-notification/mail-notification_5.4.dfsg.1-6.dsc
mail-notification_5.4.dfsg.1-6_amd64.deb
  to main/m/mail-notification/mail-notification_5.4.dfsg.1-6_amd64.deb


-- 
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/e1sgzxh-00085x...@franck.debian.org



Accepted apt 0.9.7 (source all amd64)

2012-06-19 Thread Michael Vogt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 16:42:43 +0200
Source: apt
Binary: apt libapt-pkg4.12 libapt-inst1.5 apt-doc libapt-pkg-dev libapt-pkg-doc 
apt-utils apt-transport-https
Architecture: source all amd64
Version: 0.9.7
Distribution: unstable
Urgency: low
Maintainer: APT Development Team de...@lists.debian.org
Changed-By: Michael Vogt m...@debian.org
Description: 
 apt- commandline package manager
 apt-doc- documentation for APT
 apt-transport-https - https download transport for APT
 apt-utils  - package managment related utility programs
 libapt-inst1.5 - deb package format runtime library
 libapt-pkg-dev - development files for APT's libapt-pkg and libapt-inst
 libapt-pkg-doc - documentation for APT development
 libapt-pkg4.12 - package managment runtime library
Closes: 672603 677175 677312 677454 677887
Changes: 
 apt (0.9.7) unstable; urgency=low
 .
   [ Julian Andres Klode ]
   * apt-pkg/contrib/mmap.cc:
 - Fix the Fallback option to work correctly, by not calling
   realloc() on a map mapped by mmap(), and by using malloc
   and friends instead of new[].
 - Zero out the new memory allocated with realloc().
 .
   [ Daniel Hartwig ]
   * apt-pkg/pkgcachegen.cc:
 - always reset _error-StackCount in MakeStatusCache (Closes: #677175)
 .
   [ David Kalnischkies ]
   * apt-pkg/deb/deblistparser.cc:
 - ensure that mixed positive/negative architecture wildcards
   are handled in the same way as dpkg handles them
 - use PackageArchitectureMatchesSpecification filter
   * apt-pkg/cachefilter.cc:
 - add PackageArchitectureMatchesSpecification (Closes: #672603)
   * apt-pkg/cacheset.cc:
 - add PackageContainerInterface::FromGroup to support
   architecture specifications with wildcards on the commandline
   * apt-pkg/pkgcache.cc:
 - do a string comparision for architecture checking in IsMultiArchImplicit
   as 'unique' strings in the pkgcache aren't unique (Closes: #677454)
   * buildlib/configure.mak:
 - print a message detailing how to get config.guess and config.sub
   in case they are not in /usr/share/misc (Closes: #677312)
   * cmdline/apt-get.cc:
 - print a friendly message in 'download' if a package can't be
   downloaded (Closes: #677887)
Checksums-Sha1: 
 916bd6791e0d00867af9874c42e7ed8a978aa169 1683 apt_0.9.7.dsc
 3d3cfcb38c99a64067839ac00418a414454ec84f 3404407 apt_0.9.7.tar.gz
 259944c07be9d11571f6484240cbabd610f686b8 258280 apt-doc_0.9.7_all.deb
 b727331576130d841bc31ab7a95dde85cc7553e2 947720 libapt-pkg-doc_0.9.7_all.deb
 8d0ac652e835f624fa0e79c721faaf5ad56b4ca2 873890 libapt-pkg4.12_0.9.7_amd64.deb
 7922aa6e2870788c352625c2cc9fc1f23fe38869 161916 libapt-inst1.5_0.9.7_amd64.deb
 4cbbec1406b0124de07154ea0b6906f9b8d1fcb1 1035564 apt_0.9.7_amd64.deb
 70583f891172bfe5f0303393a942727de1758563 182990 libapt-pkg-dev_0.9.7_amd64.deb
 d598ac56ba26f66510eb4e5262f3a3154ac1b9ed 370066 apt-utils_0.9.7_amd64.deb
 ad39265065840b8098f7887f2a955061c28d95d1 104610 
apt-transport-https_0.9.7_amd64.deb
Checksums-Sha256: 
 1947034bd5cd44e278420f2db95bd522d641636ece8ab44fdad16de33630ef1d 1683 
apt_0.9.7.dsc
 0288c80f097ecf48ce18cd898cbea78f20577fa5a379de4bd81e7b00b4f6c59a 3404407 
apt_0.9.7.tar.gz
 3a9383adc1f4955bbfce6702ea47be98cd73083b47d40394b9a0eb2523cf37a1 258280 
apt-doc_0.9.7_all.deb
 13c727e44aaf536da89b410e18fa1a99d65955cf3f853f55fc273a8b7793a8e1 947720 
libapt-pkg-doc_0.9.7_all.deb
 38070ae9d26a165e553348e57aef57ce1d19db736a33b75fadd1691a1aa305ae 873890 
libapt-pkg4.12_0.9.7_amd64.deb
 73dd2f47015ecbea70ac809029a6f5362665dc0c0a590b61f167d5aed431f8b3 161916 
libapt-inst1.5_0.9.7_amd64.deb
 b91388c14eb2a4cc4fa5be3fca3f114bf4c3fc0949fc761663ca9018d807c9d2 1035564 
apt_0.9.7_amd64.deb
 7c44989709863c8708446fb3595dd3b36176c33112b258e63380752052456f23 182990 
libapt-pkg-dev_0.9.7_amd64.deb
 4c35db01cd72b8532270e264975e0ab290ff186d71575bda354216e480e64c7c 370066 
apt-utils_0.9.7_amd64.deb
 7bddc86a4d46d2f41eec6e469139c4d6931f477796b2e3ba3eb15802ccf5a6d9 104610 
apt-transport-https_0.9.7_amd64.deb
Files: 
 76bb2e21d13514aef4bc9b41447a9876 1683 admin important apt_0.9.7.dsc
 9c5a7cfdd8dddc490448c94d4717081f 3404407 admin important apt_0.9.7.tar.gz
 cf0efbaa7875b3bd278e6aa312475583 258280 doc optional apt-doc_0.9.7_all.deb
 25d27cc8291b4db604b245afbff11f69 947720 doc optional 
libapt-pkg-doc_0.9.7_all.deb
 dc7de3bbf80c68b286352fc1337854eb 873890 admin important 
libapt-pkg4.12_0.9.7_amd64.deb
 2ef8eccff2eeeb7e4f30337734dc61c0 161916 admin important 
libapt-inst1.5_0.9.7_amd64.deb
 51b7a5e6390f093d7ff1cdfb114ddc91 1035564 admin important apt_0.9.7_amd64.deb
 3a20c1c1728eb6e9269ad3d85355c510 182990 libdevel optional 
libapt-pkg-dev_0.9.7_amd64.deb
 11314af268a6260cc101905f446e1338 370066 admin important 
apt-utils_0.9.7_amd64.deb
 fb85c21bfebccf2d729928651d5a6578 104610 admin optional 
apt-transport-https_0.9.7_amd64.deb

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


Accepted dracut 019+39+gf48f934-1 (source all)

2012-06-19 Thread Thomas Lange
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 10:30:39 +0200
Source: dracut
Binary: dracut dracut-network
Architecture: source all
Version: 019+39+gf48f934-1
Distribution: unstable
Urgency: high
Maintainer: Thomas Lange la...@debian.org
Changed-By: Thomas Lange la...@debian.org
Description: 
 dracut - A new initramfs infrastructure
 dracut-network - A new initramfs infrastucture
Changes: 
 dracut (019+39+gf48f934-1) unstable; urgency=high
 .
   * sync to upstream, get important fix for missing libraries needed for
 nfs module
   * add nogroup to /etc/group inside the initrd
   * use /etc/ld.so.conf.d/ for creating list of library pathes
Checksums-Sha1: 
 23c09755300b02c99068364dfe68aa3cbc89c08e 1348 dracut_019+39+gf48f934-1.dsc
 9ddd88a6eae099876096338be76048d4168040f4 169845 
dracut_019+39+gf48f934.orig.tar.bz2
 cace9d75fcbeddd17c88d463190f0733e2edab82 6898 
dracut_019+39+gf48f934-1.debian.tar.gz
 127725d9353b52a52caa92ee415d893d545a593f 140164 
dracut_019+39+gf48f934-1_all.deb
 fca4936458b5fe55ee7dd05e07cbcb9c3d962fb4 35230 
dracut-network_019+39+gf48f934-1_all.deb
Checksums-Sha256: 
 ef10570cc9486ffcfbb814b4969723a23a74794f94e202057d597ed76bbce430 1348 
dracut_019+39+gf48f934-1.dsc
 668d0a238933464553225ff5072995fdc71fab0f9b04b4fd7ab89f690af7aa9b 169845 
dracut_019+39+gf48f934.orig.tar.bz2
 caff6be633a5ffc8e9d107d7ee8a60264f8fafc7dd149890d333e0e212e67c47 6898 
dracut_019+39+gf48f934-1.debian.tar.gz
 c9e68c5198d9099138c86d32010972e07d737f3c2ff900c1f7d324fbd2c36580 140164 
dracut_019+39+gf48f934-1_all.deb
 7dcc4269900c825dbf4a4743a72cca83e27db0ca435315c682958079061ef820 35230 
dracut-network_019+39+gf48f934-1_all.deb
Files: 
 d1a1bf92b1aca76e82ddaa60ac4cbb13 1348 utils optional 
dracut_019+39+gf48f934-1.dsc
 b5fc96bfbfd555e6e44da34b66ddfd89 169845 utils optional 
dracut_019+39+gf48f934.orig.tar.bz2
 ae1fa7b5fb95eadf8b84ccbb70126b3f 6898 utils optional 
dracut_019+39+gf48f934-1.debian.tar.gz
 02ff00098ca61bf593012c9118657b59 140164 utils optional 
dracut_019+39+gf48f934-1_all.deb
 e75e7e1faeabed0fd222846d06475c94 35230 utils optional 
dracut-network_019+39+gf48f934-1_all.deb

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

iD8DBQFP4Dnp3BPlTqubZv0RAqnvAKDkIYxkiOPsfLjVMGKXodCYKb4vOQCgniZg
VHNZsZJbMxj6kDx48zP5Tl8=
=54ob
-END PGP SIGNATURE-


Accepted:
dracut-network_019+39+gf48f934-1_all.deb
  to main/d/dracut/dracut-network_019+39+gf48f934-1_all.deb
dracut_019+39+gf48f934-1.debian.tar.gz
  to main/d/dracut/dracut_019+39+gf48f934-1.debian.tar.gz
dracut_019+39+gf48f934-1.dsc
  to main/d/dracut/dracut_019+39+gf48f934-1.dsc
dracut_019+39+gf48f934-1_all.deb
  to main/d/dracut/dracut_019+39+gf48f934-1_all.deb
dracut_019+39+gf48f934.orig.tar.bz2
  to main/d/dracut/dracut_019+39+gf48f934.orig.tar.bz2


-- 
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/e1sh0bf-et...@franck.debian.org



Accepted greekocr4gamera 1.0.1-4 (source all)

2012-06-19 Thread Jakub Wilk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 14:20:55 +0200
Source: greekocr4gamera
Binary: python-gamera.toolkits.greekocr
Architecture: source all
Version: 1.0.1-4
Distribution: unstable
Urgency: low
Maintainer: Jakub Wilk jw...@debian.org
Changed-By: Jakub Wilk jw...@debian.org
Description: 
 python-gamera.toolkits.greekocr - toolkit for building OCR systems for 
polytonal Greek
Changes: 
 greekocr4gamera (1.0.1-4) unstable; urgency=low
 .
   * Don't include *.egg-info in the binary package, as distribution name is
 too generic.
   * Do not pass explicit debian/control path to pyversions.
Checksums-Sha1: 
 1ac335200ea67db29809618f4691535f6108b711 2202 greekocr4gamera_1.0.1-4.dsc
 9a0cd415c974c90cf978f47560cc8d1fd620ed44 4147 
greekocr4gamera_1.0.1-4.debian.tar.gz
 74c9287a20dd34a90f9d78ca86308a41d273d52a 105970 
python-gamera.toolkits.greekocr_1.0.1-4_all.deb
Checksums-Sha256: 
 b083cf44267274140b9d967066d54fb58cc8216e8bedd6e11d1d3539500d0dea 2202 
greekocr4gamera_1.0.1-4.dsc
 4fa4fddb2470481e0c3db4229525a3c11daaf7b61ba11a518be87ac2b74e837f 4147 
greekocr4gamera_1.0.1-4.debian.tar.gz
 5b081164552a7356d9e21430d3730c19f3c2561d3ebb93d918fed9ca820c20e1 105970 
python-gamera.toolkits.greekocr_1.0.1-4_all.deb
Files: 
 ba9c4043d6732d4feaaf13bd1696e7ef 2202 python optional 
greekocr4gamera_1.0.1-4.dsc
 a709b966acf01cdcc06781905dd6d380 4147 python optional 
greekocr4gamera_1.0.1-4.debian.tar.gz
 e467cb3f0e89d3670fe683cb8faeb388 105970 python optional 
python-gamera.toolkits.greekocr_1.0.1-4_all.deb

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

iQIcBAEBCAAGBQJP4JSJAAoJEC1Os6YBVHX1ZmcQAINd5N5C9fGKqqDtEFV70X3R
CBlfZ3rb+gqwHrTUhwPvUpD7VLUs9MtJ/WKoJ0TpW+HaI2JxVgX0j8E4DnjmADUa
sV3ov/bbGS1Knv7fsJ3p84Es7uSPypn7kligxjdv41g/V1GnCBMbSdbIT9J2sZnb
vuSd/pcGoGrwNCWK9WWM9XDSOwVcNd8HbS7YHyIImpFm7j+Rvi+4MAI5Iu+Nz6Z0
0gQUSOQQVr0bOkJ8cGXHggPxDF65km32amZZ/JMDnY1qKvOugxKeZBvPdQe0QnOw
iImK7apeA7Xr7RyTGUsXcN4hbt4o6dtVKzxH7BUVm9RGugmGxr4GThFcrKVcFEyl
oJZlerSeIdLnplkzqGWD+AAb/kto4uVIyRZ+gpFz+XBkj2HPHnB9PGAsh7uMxINK
yyW8oWx/x8UxRz7aFLzLu/A36bepgSa1ET3qFSlwCF/IvQakWXtFMdJJrS1s6nr9
jGtgO6qpO2YA51xyDLekoCl/xTknnLypXlvz54mRXtLNw4OO5rfwiOHfyfxIp8S4
jL0YjNlCu/DtbWqE2YhkAs2A08+7dgfyCxfNEQyTe50xYJR+u69mtKhXwWoay7CR
xQG1QPVBclhR6ogIR/J+KIOW5HxuTD0lK+cbV4jS23IyNFvRJDh6yFNtbyjJkQA3
mPALD7RvU2I03MfZimnD
=iZYC
-END PGP SIGNATURE-


Accepted:
greekocr4gamera_1.0.1-4.debian.tar.gz
  to main/g/greekocr4gamera/greekocr4gamera_1.0.1-4.debian.tar.gz
greekocr4gamera_1.0.1-4.dsc
  to main/g/greekocr4gamera/greekocr4gamera_1.0.1-4.dsc
python-gamera.toolkits.greekocr_1.0.1-4_all.deb
  to main/g/greekocr4gamera/python-gamera.toolkits.greekocr_1.0.1-4_all.deb


-- 
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/e1sh0c0-gl...@franck.debian.org



Accepted ocr4gamera 1.0.6-3 (source all)

2012-06-19 Thread Jakub Wilk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 14:11:39 +0200
Source: ocr4gamera
Binary: python-gamera.toolkits.ocr
Architecture: source all
Version: 1.0.6-3
Distribution: unstable
Urgency: low
Maintainer: Jakub Wilk jw...@debian.org
Changed-By: Jakub Wilk jw...@debian.org
Description: 
 python-gamera.toolkits.ocr - toolkit for building OCR systems
Changes: 
 ocr4gamera (1.0.6-3) unstable; urgency=low
 .
   * Don't include *.egg-info in the binary package, as distribution name is
 too generic.
   * Do not pass explicit debian/control path to pyversions.
Checksums-Sha1: 
 3e2877985aa29d069c5265dd719fb74cf85506b5 2172 ocr4gamera_1.0.6-3.dsc
 454a4472fcb880f2a78baf28ff28be4cfe241222 5657 ocr4gamera_1.0.6-3.debian.tar.gz
 964943434226af6351ae570ddde0699cdcd06e3d 122106 
python-gamera.toolkits.ocr_1.0.6-3_all.deb
Checksums-Sha256: 
 06550a8a838d92ffa9de65005244f8971cfd3679de711900ed04463561aba29f 2172 
ocr4gamera_1.0.6-3.dsc
 a8c387f977f969d3109785ca8419634928826b4cc9ca0be48b87bf5d91e2acdf 5657 
ocr4gamera_1.0.6-3.debian.tar.gz
 d471cfe46e4773ced66119b225012b4050215c734ff1d2bdf14b6648f990233c 122106 
python-gamera.toolkits.ocr_1.0.6-3_all.deb
Files: 
 bb848a32dd6d8711d70feb505bd09342 2172 python optional ocr4gamera_1.0.6-3.dsc
 ff6ecac1e0fee12fbfa38ef272bd99ec 5657 python optional 
ocr4gamera_1.0.6-3.debian.tar.gz
 76d55db710d1fdffae8512ee8388dfc6 122106 python optional 
python-gamera.toolkits.ocr_1.0.6-3_all.deb

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

iQIcBAEBCAAGBQJP4JRAAAoJEC1Os6YBVHX1XT0P/0Ou1w2+oAxzdkl8+7LZS0gs
/bdKycceb8sXmjsWob3HA42yiMtaGCn9hh+43xIIo6ueIx8U3tCi1CeD80WiP1mJ
MjXBGD3jTfIZ8QGo+4Q/mxHEKs0+h//TGQeObz7LMsDeBMkWYbowFnTnGUXyqx8p
TTNpVceK8W0/+ZuciwrD5QLiRT1uPfQsQDuHEb8H+3+8b7cR1/KDvw4J9+9aPQcg
eW+d/cGMnYNVRFu8PPCmQAAeCTDPF9m2sohB3Yvf/CP60Fao74eScbHxHlsOEGpg
TBODqdivu6SH9ZegRMmKFngX9kjrK9eFOUi9TdMuA6MP7InEGn8ohpRY6PBK/PIK
uDpL6sie/raIHv71TSP1uG7DxzSnp47q43vhFeLDZl+WBw8FvAtW5TZWMLBDNZlY
2ZemqhLnixqK2iqJQdFjWifGon0FwqvfwpLDBICB1bSvtfIibgjtL09lQqfrXBel
7Z26VX1ta9Gly+6P2CNXkF2+76ad6AsKdJR2tFYvnXFy7wWTWtuMAhX1WBWZsiJD
ruh/6cKGPpbrW9/w+IzvZLiH0LutdV6mKpkyzhhveCy/1CkKMZYsewrmGzgY38W5
UOW6S3aW666nKuWquf5TxvXmu0V3fnskv0/UN5CSWkUHm4lS1pVxPX+7MRJpHqmZ
WBCll3kbrfuzy18asfmd
=kp3w
-END PGP SIGNATURE-


Accepted:
ocr4gamera_1.0.6-3.debian.tar.gz
  to main/o/ocr4gamera/ocr4gamera_1.0.6-3.debian.tar.gz
ocr4gamera_1.0.6-3.dsc
  to main/o/ocr4gamera/ocr4gamera_1.0.6-3.dsc
python-gamera.toolkits.ocr_1.0.6-3_all.deb
  to main/o/ocr4gamera/python-gamera.toolkits.ocr_1.0.6-3_all.deb


-- 
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/e1sh0d2-jm...@franck.debian.org



Accepted pypy 1.9+dfsg-1 (source all amd64)

2012-06-19 Thread Stefano Rivera
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 19 Jun 2012 14:42:45 +0200
Source: pypy
Binary: pypy python-pypy.translator.sandbox pypy-lib pypy-doc pypy-dev
Architecture: source amd64 all
Version: 1.9+dfsg-1
Distribution: experimental
Urgency: low
Maintainer: Stefano Rivera stefa...@debian.org
Changed-By: Stefano Rivera stefa...@debian.org
Description: 
 pypy   - fast alternative implementation of Python - PyPy interpreter
 pypy-dev   - header files for PyPy (an alternative Python interpreter)
 pypy-doc   - developer Documentation for PyPy (an alternative Python interpret
 pypy-lib   - standard library for PyPy (an alternative Python interpreter)
 python-pypy.translator.sandbox - sandboxed PyPy interpreter
Changes: 
 pypy (1.9+dfsg-1) experimental; urgency=low
 .
   * New upstream release.
   * Refresh patches.
   * Update patches for the removal of lib-python/modified-2.7.
   * Drop patches, applied upstream:
 - ignore-shufps
 - pypy-help
   * Apply patches applied in python2.7 2.7.3~rc2-2:
 - pypirc-secure: CVE-2011-4944, distutils creates ~/.pypirc insecurely.
 - xdg-gvfs-open: Use xdg-open/gvfs-open in webbrowser.
   * Moved RAM check and translation options generation into shell scripts in
 debian/scripts. They were getting unwieldy in debian/rules.
   * Updated machine-readable copyright Format to 1.0.
 - Removed mentions of lib-python/modified-2.7.
   * Bumped Standards-Version to 3.9.3, no changes needed.
   * Use valgrind headers on ppc64 and s390x, now that they are available
 there.
   * Don't enforce the RAM check on Ubuntu.
   * Patch ignore-paddd: Update ignored operations ins trackinggcroot our
 gcc4.7 produces paddd on i386.
Checksums-Sha1: 
 a9e0191fd9e15a846b3eb311524db2544afb0b65 2359 pypy_1.9+dfsg-1.dsc
 0488e97e22feb950ec553c0866fc6709628637e4 10799832 pypy_1.9+dfsg.orig.tar.xz
 52e9868af5beaa867d5130f896254a35179824da 69475 pypy_1.9+dfsg-1.debian.tar.gz
 ba33e050f8597883693cd8db6642bd2348e51d9e 10814404 pypy_1.9+dfsg-1_amd64.deb
 f5624b49fb349bc9317714e86d1df89e431a8ec0 3813286 
python-pypy.translator.sandbox_1.9+dfsg-1_amd64.deb
 ed9019bdb441fe6a1f32713ef6248f0d1f99a30c 3916454 pypy-lib_1.9+dfsg-1_all.deb
 7b4437125aa0f26714cb01bdca8b7b159f4538c6 1387078 pypy-doc_1.9+dfsg-1_all.deb
 eb3e1fb2e2d14b7a51a7b8a5b7ef19691e2ad5e5 29058 pypy-dev_1.9+dfsg-1_all.deb
Checksums-Sha256: 
 a188f8fc8209db35cdef9b393476296c208035172b72a5ab666197e3409fabd9 2359 
pypy_1.9+dfsg-1.dsc
 38303cfcf55240ceba9de90dc9aa46305a19779ab05b041631c17ea6eac67748 10799832 
pypy_1.9+dfsg.orig.tar.xz
 77517cb823bc061a9d0363f64fa5bd081b141c47e4d119e7afd0683d908c7e90 69475 
pypy_1.9+dfsg-1.debian.tar.gz
 178e861a85d081e4ae73e184ed78065d66e890ab2d1f98d3c6c5c2ef66e91679 10814404 
pypy_1.9+dfsg-1_amd64.deb
 7ee725c423dbb8e4eaff01b7d1be723949dd8e269734df7a599ee9ff33b57517 3813286 
python-pypy.translator.sandbox_1.9+dfsg-1_amd64.deb
 4276d40990cb8d25df983f3717629e2489ff23fc2f7863226c1fd0018fafcab9 3916454 
pypy-lib_1.9+dfsg-1_all.deb
 af976be0358af3a9093be6fb95506c95704db99f1ce6cff8060e666fa28d5bf1 1387078 
pypy-doc_1.9+dfsg-1_all.deb
 29aa54321ae6cad9f464a788d1592065f11aad59c102fb4bd3efbc84e04d3210 29058 
pypy-dev_1.9+dfsg-1_all.deb
Files: 
 b73aa611c3e7d8e807f79224864f7782 2359 python extra pypy_1.9+dfsg-1.dsc
 2df3779a956bdbf02bed54f5bf1b94e6 10799832 python extra 
pypy_1.9+dfsg.orig.tar.xz
 03459768e23be6ce33c1b9293b29a636 69475 python extra 
pypy_1.9+dfsg-1.debian.tar.gz
 b60652cca06b59eb69a4f96c788f003e 10814404 python extra 
pypy_1.9+dfsg-1_amd64.deb
 51808028079a742f91aa5b8c8937d2f7 3813286 python extra 
python-pypy.translator.sandbox_1.9+dfsg-1_amd64.deb
 d94a66c89ba5fb7d2308d6bacf42bc78 3916454 python extra 
pypy-lib_1.9+dfsg-1_all.deb
 b326b1986a0c624e6d74c94c3bfb08dd 1387078 doc extra pypy-doc_1.9+dfsg-1_all.deb
 64c399b2d82b09cd89b6273b13a23843 29058 python extra pypy-dev_1.9+dfsg-1_all.deb

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

iQIcBAEBCgAGBQJP4JTdAAoJEACQ/CG1zRrMpRgP/AzI7xFoaBzDw1uQVX3kA/iv
oATI8JUlsbKk/lhjBW6NyyGiPA/3knq8y56CN2NRfvrLoFWciNb952EdU31kas0q
oEszs3ujrLFD6iCsvGowQagfF5m8STe5eS5xPAb7Z22Y2tshUDv6QtlZBF38lFKa
WLbCtLDH2FTgMOPbNDe/4DI1gdrpogJHdmRGgP8SPUSX0M0K/9+8q0S5DtYI2++A
MaNIgII37qstfgid+2w6AYRyDJBrS2HVSyc6H3pR/UMSBXdv0wvjnvzSbyKq4LC+
uZsvTXZmANPlgZp0ALmMjvAgRZKQFgZ+pfnhb/KnPtb1Syx7xMGIeuB95vP6hG3M
b9Ygy4VoKrRZc65XJ/r7ajL/5HYXtA7Vi01hREZuBGF/VSB5oaridGZn/VRMM/3m
E3LYzhaiKRnq9wqkxETjWO0U71vtpRwvuAhANwxniw0LpL2GVZSJu2UmqjCPWdfY
+8lgFfLj6xEQW3g+Pf6RtXhlM0/BM238qfffE67vHbfzYFa6eCQH5BkQB749kNm3
wr07PnhHhAablSAd40zWdPCa1b1o8dcOgdTUXn+OcV4jVs7hZbe4wF2cKFw8ZENc
OMrJMfnM5p1ZTgPTvXwV+kGgcrBmix//hhjG9+1+uGEvs3z5YdRLfiKNzRN6ZfSc
y3AQWzOHUi8eu9wOLMTA
=0TAe
-END PGP SIGNATURE-


Accepted:
pypy-dev_1.9+dfsg-1_all.deb
  to main/p/pypy/pypy-dev_1.9+dfsg-1_all.deb
pypy-doc_1.9+dfsg-1_all.deb
  to main/p/pypy/pypy-doc_1.9+dfsg-1_all.deb
pypy-lib_1.9+dfsg-1_all.deb
  to main/p/pypy/pypy-lib_1.9+dfsg-1_all.deb

Accepted mini-httpd 1.19-9.3 (source amd64)

2012-06-19 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 16 Jun 2012 01:31:28 +0200
Source: mini-httpd
Binary: mini-httpd
Architecture: source amd64
Version: 1.19-9.3
Distribution: unstable
Urgency: low
Maintainer: Marvin Stark m...@der-marv.de
Changed-By: Bernd Zeimetz b...@debian.org
Description: 
 mini-httpd - a small HTTP server
Closes: 674515
Changes: 
 mini-httpd (1.19-9.3) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Do not install htpasswd, recommend apache2-utils instead.
 (Closes: #674515).
   * Add missing dependencies on $remote_fs to fix a lintian error.
Checksums-Sha1: 
 a113fc8beb4a39f1edfa906d76852d6011d00430 1716 mini-httpd_1.19-9.3.dsc
 501001d24c5f3183feab0b54794084c5d61dd66c 7993 mini-httpd_1.19-9.3.diff.gz
 523a720a36e366b6b36fd710fcd212920af991e5 38018 mini-httpd_1.19-9.3_amd64.deb
Checksums-Sha256: 
 6d8bed834a6e46ef80677f5e094175fd55565e261421599884b04235e5472bc8 1716 
mini-httpd_1.19-9.3.dsc
 5e6e7f98e1d15ea513aad01d5324d97bf4a298cd164f1b6939b18781f43d7eb0 7993 
mini-httpd_1.19-9.3.diff.gz
 d5834f7cca0f00ff2703a2f57fe3414f643a4c22bcd393a7507d03d65e32f6d3 38018 
mini-httpd_1.19-9.3_amd64.deb
Files: 
 c6280181240457b3738ba7a6d893fbc9 1716 web optional mini-httpd_1.19-9.3.dsc
 36afdcd7edfab68b919c06a4b351479c 7993 web optional mini-httpd_1.19-9.3.diff.gz
 246e955912fe92f116336709f8d5c4b2 38018 web optional 
mini-httpd_1.19-9.3_amd64.deb

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

iQIcBAEBCAAGBQJP3fKjAAoJEOs2Fxpv+UNfuJAP/R7sPqE/F6Eq+ffT3ucr5HFB
FLkkcJgiudgzmz2Sx34hM3kD0FwIePzpIe+EV5ollBqPIXOmKlcizAbs7XWs+dzp
MRDG6vFOsZNvmHE+il/k1He9dAa466h2gl2/fcP1dlkhrI+PFQIAJScuQBRJy29V
eQ2XlJWYdDBOcJ/4jWhbnFPY5snmP2oN0vZtFik8yJUjur/emyjzv8yajUVqrbFa
OKvWBD0JohcCVHLrOq8tuMhrK9eeQnT/2v5rAVbX6jatRIn7M2KmuKFvtam7ebgj
nTgWoJ4FvH6pZsBX0hNM6wFhD4IlnKkM4/VeKISq8zxQO3lmsPY8+raAS0TDzGzM
P7soB5cbITY8qSgA6C+r5zbOmvk3Mg4vs6P7ov7z5mmu4VKqbU7//VFgAciHD+EU
TeFDwauhu/ETTEcL6EqY22el1J7sayIOm5xr7dtVxMPwU3Ub8m29h4gKoAZQdUpm
VcM4VKHnIkx8/YG2AR14azpmRuNvQ/VKUeYNHkXDP8hj3FvPwXVe0v2alXBZ1Wy4
tnjQe1fnXFAeX7vWe4nqrcCSjPAz/Lbhy0CsuILuUOoN0AbJ6zgJZZjbzvoTBKG6
ipOVyUyCmgwUx+qMLdMZyw6LG7/PL/M5ccNUcAbekNL3uMYg5SyfDgjjKnmQWyhL
edXE2cDezeCFKoYreQ3C
=4TCL
-END PGP SIGNATURE-


Accepted:
mini-httpd_1.19-9.3.diff.gz
  to main/m/mini-httpd/mini-httpd_1.19-9.3.diff.gz
mini-httpd_1.19-9.3.dsc
  to main/m/mini-httpd/mini-httpd_1.19-9.3.dsc
mini-httpd_1.19-9.3_amd64.deb
  to main/m/mini-httpd/mini-httpd_1.19-9.3_amd64.deb


-- 
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/e1sh0qz-0001ys...@franck.debian.org



Accepted pymca 4.6.0-2 (source i386 all)

2012-06-19 Thread Picca Frédéric-Emmanuel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 18:10:01 +0200
Source: pymca
Binary: pymca pymca-data
Architecture: source i386 all
Version: 4.6.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Picca Frédéric-Emmanuel pi...@debian.org
Description: 
 pymca  - Python applications and toolkit for X-ray fluorescence analysis
 pymca-data - Architecture independent data files for PyMca
Changes: 
 pymca (4.6.0-2) unstable; urgency=low
 .
   * debian/patches
 - 0002-fix-from-upstream-hurd-FTBFS.patch (new)
Checksums-Sha1: 
 de172f1d41d8606ebec7caa2166929672b9a1984 1439 pymca_4.6.0-2.dsc
 63f39bda8404390bde28af970a55a4f3fd9e80ef 16451 pymca_4.6.0-2.debian.tar.gz
 28865eeaaea06c247a9a9068d9cbde86228c77a4 1588652 pymca_4.6.0-2_i386.deb
 3aee62a07eaf87050ead21064815a77c002c5c1d 8496656 pymca-data_4.6.0-2_all.deb
Checksums-Sha256: 
 556d6b63baa63dd084840bf04efe0a54faf9f7f9b7ab17a36456213594195bdf 1439 
pymca_4.6.0-2.dsc
 79815cab7ed6954faf8fc09cfe24c34e8d8dc2ae8ff209519e9c1a9ee1c7e08a 16451 
pymca_4.6.0-2.debian.tar.gz
 fd6bc9c23ce22c7bf77bded1ca625b71cf0d4e77115254da5b0fb3e0d89f901a 1588652 
pymca_4.6.0-2_i386.deb
 f87001f044b0495636a78f66706c1e02df9fbe4fb76d59ef8a6cb89334bc8dea 8496656 
pymca-data_4.6.0-2_all.deb
Files: 
 090a29a46552f73f448c29c420d1f6a9 1439 science extra pymca_4.6.0-2.dsc
 c0cdb5d3244b5726c1f3a9aa027fe64f 16451 science extra 
pymca_4.6.0-2.debian.tar.gz
 2c21512e3e35a97a501d1223ddb114e3 1588652 science extra pymca_4.6.0-2_i386.deb
 e384ffcf296b5b712de8b5c34c769619 8496656 science extra 
pymca-data_4.6.0-2_all.deb

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

iEYEARECAAYFAk/gqjcACgkQtqm6aqWbEXGF6gCghJVFUNHsa9HLF3T828VnD2hS
IQIAn1XJkmMc170tkJZkA6NdcMutRjD3
=y6K1
-END PGP SIGNATURE-


Accepted:
pymca-data_4.6.0-2_all.deb
  to main/p/pymca/pymca-data_4.6.0-2_all.deb
pymca_4.6.0-2.debian.tar.gz
  to main/p/pymca/pymca_4.6.0-2.debian.tar.gz
pymca_4.6.0-2.dsc
  to main/p/pymca/pymca_4.6.0-2.dsc
pymca_4.6.0-2_i386.deb
  to main/p/pymca/pymca_4.6.0-2_i386.deb


-- 
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/e1sh0gw-0002h3...@franck.debian.org



Accepted sweeper 4:4.8.4-1 (source amd64)

2012-06-19 Thread Lisandro Damián Nicanor Pérez Meyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 12:38:27 -0300
Source: sweeper
Binary: sweeper
Architecture: source amd64
Version: 4:4.8.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Lisandro Damián Nicanor Pérez Meyer lisan...@debian.org
Description: 
 sweeper- history and temporary file cleaner
Changes: 
 sweeper (4:4.8.4-1) unstable; urgency=low
 .
   * Team upload.
 .
   [ Eshat Cakar ]
   * Initial packaging, split from kdeutils.
Checksums-Sha1: 
 7c98ea77f2b465e472aa1f02eb6af7b84ef03cb8 2164 sweeper_4.8.4-1.dsc
 8a4dd11724ed14987981dfaa60e742cfd80ee6d9 84892 sweeper_4.8.4.orig.tar.xz
 3e2787e7b6c0cafcfb6d9ab87c271a8f874b1184 1880 sweeper_4.8.4-1.debian.tar.gz
 8fc19eb8cfaf1f3a8470117f4fc54c09a5ba1153 97884 sweeper_4.8.4-1_amd64.deb
Checksums-Sha256: 
 f0a6e88c8f0fbab4fcfc3406c8716e0e899028f7f5fbd40bd40924c494ef1df9 2164 
sweeper_4.8.4-1.dsc
 ddeccf88191752eadff4958278922be91ce4285d836839666f4f5cf5bf739ebd 84892 
sweeper_4.8.4.orig.tar.xz
 4f4425e19919d56d0266865205cd2d361e2b87bddce26ed7db5bd4c3f7398a8c 1880 
sweeper_4.8.4-1.debian.tar.gz
 6d5bd7d061f6538ed3e92e46d9ab7ae2b355080146ead09d73cbea6883b75c14 97884 
sweeper_4.8.4-1_amd64.deb
Files: 
 82909837af4da5335fdc0d1724d3df77 2164 kde optional sweeper_4.8.4-1.dsc
 a4c1851cc50d5550d32e71fd1c7bcfad 84892 kde optional sweeper_4.8.4.orig.tar.xz
 e202c8e5f6ffdf72340417672b38267a 1880 kde optional 
sweeper_4.8.4-1.debian.tar.gz
 583dc684b18a36a71125a28ef6fbb8e5 97884 utils optional sweeper_4.8.4-1_amd64.deb

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

iQIcBAEBCAAGBQJP4J3pAAoJEKtkX0BihqfQwG8QALXwJZ2Oei5TKN9vk9/G2UXh
r5kgxCbln0HYwhXDDmeTYADTMMr7TL6oJOjHFdWDnVNbDVUAgTsWRaFhCBuHax/N
v/uPd8ltz+0omgrHhr3e2EftBCSwqUsoz91afjmdBeoGiKc6UP5u6gi9bFjlLZVP
yE/1XB8Gua6inGiB/xwKt+pFADlsW+UI+GN2I4DUS2aLzhIAb2mUClZd52K9uzQJ
7jMj/2+ejri0CQOuMqRSEp4KEIqomxm1J6giDVY+kHchgXPYP4I9yxmjrq80AgBx
3YU6lhSLRQUN7f/j2h/2fEt/D0b8UTIKduk6TM/Kr3H+JaxwhDizfHLE8wrWmTYf
THY5OaMaKHbi3FlExV3zERF8uHs2lQAzFrb8eFgzwGWg2Rjs+C1W8fhWFXNRxp3c
6TcO18VvGoTkOgWgSjNUQwc0RBf2dv2lYdJBZ34v0jgTtld3WSnW7s0bW/sSb1QP
7SHKi+Y8cohl3YbVsOQ1bdNk+XMG5KTZPQTjWiBpX/jGxQ5J070W3hDTAHgG/nZ6
iX4TUK7TkrS1cLLEmrotmv1GGeWrFZJa3UqaSE5HK008LmCG/7vm0026pbKk9sZM
gMAaVaR8PM2Lqa6X9bsgz9UsV3xn6QrdeJaWNY3aVTqrYJfb/RfyzGIgvC3MXJG3
lx9dsqdamscOjynM7WVd
=16OW
-END PGP SIGNATURE-


Accepted:
sweeper_4.8.4-1.debian.tar.gz
  to main/s/sweeper/sweeper_4.8.4-1.debian.tar.gz
sweeper_4.8.4-1.dsc
  to main/s/sweeper/sweeper_4.8.4-1.dsc
sweeper_4.8.4-1_amd64.deb
  to main/s/sweeper/sweeper_4.8.4-1_amd64.deb
sweeper_4.8.4.orig.tar.xz
  to main/s/sweeper/sweeper_4.8.4.orig.tar.xz


-- 
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/e1sh0gi-0002hn...@franck.debian.org



Accepted schleuder 2.2.1-1 (source all)

2012-06-19 Thread Jérémy Bobbio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 17:49:16 +0200
Source: schleuder
Binary: schleuder
Architecture: source all
Version: 2.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Jérémy Bobbio lu...@debian.org
Changed-By: Jérémy Bobbio lu...@debian.org
Description: 
 schleuder  - GnuPG enabled mailing list manager with remailer-capabilities
Changes: 
 schleuder (2.2.1-1) unstable; urgency=low
 .
   * Update README.source.
   * Drop the following patches:
 - 0004-Deactivate-log-file-rotation-by-default.patch:
   Upstream has removed support for log file rotation.
 - 0008-Suggest-to-install-highline-package-in-newlist.patch:
   highline is required by `bin/schleuder-migrate-v2.1-to-v2.2` and
   thus now a hard Depends.
 - 0011-Formal-workaround-for-ruby-gpgme-1.0.8-for-use-with-.patch:
   It was cherry-picked from upstream master branch.
 - 0012-Better-workaround-for-ruby-gpgme-1.0.8-for-use-with-.patch:
   It was cherry-picked from upstream master branch.
 - 0013-newlist-add-the-necessary-workaround-for-ruby-gpgme-.patch:
   It has been integrated upstream.
 - 0014-Don-t-echo-passphrase-to-terminal-when-asking-for-it.patch:
   It was cherry-picked from master.
   * Refresh the following patches:
  - 0001-Enable-logging-through-syslog.patch
= feature-logging.patch
  - 0002-Allow-list-configuration-files-to-be-in-a-single-dir.patch
= feature-list-conf-dir.patch
  - 0003-Add-support-for-multiple-plugins-directory.patch
= feature-multiple-plugins-dir.patch
  - 0005-Adjust-other-default-configuration-settings.patch
= debian-default-settings.patch
  - 0006-No-need-for-rubygems-we-have-Debian-packages.patch
= debian-no-rubygems.patch
  - 0007-Explicitely-use-ruby1.8-in-executable-scripts.patch
= debian-use-ruby1.8.patch
  - 0009-Mention-README.Debian-in-newlist.patch
= debian-readme-debian-in-newlist.patch
   * New patches:
  - bugs-dead-configuration-in-example.patch:
Remove removed setting from example configuration.
  - bugs-missing-admin-only-keywords.patch:
Adjust default settings to example configuration.
  - bugs-fix-manpages-wrt-2.2.1.patch:
Update manpages with recent changes and improve formatting.
  - debian-use-magic-instead-of-filemagic.patch:
Use the 'magic' gem instead of 'ruby-filemagic', as the former is
already in Debian.
   * Refresh Depends in debian/control for 2.2.1.
   * Install library according to the new Debian Ruby policy.
   * Use upstream manpages.
   * Install schleuder-newlist from its new location.
   * Update README.Debian for Schleuder 2.2.
   * Add new default-members.conf to examples.
   * Call migration scripts when upgrading from previous version.
   * Add weekly reminder for expired member keys.
   * Add debian/NEWS to help admins cope with the new version.
   * Ship README.plugins at its intended location
   * Remove schleuder-migrationhelper.pl from examples (removed upstream).
   * Update mutt-schleuder-resend.vim name in examples.
   * Do not ship TODO in docs (removed upstream).
Checksums-Sha1: 
 1e57dd1d96d65189d087da34898bf2686e600bcc 1847 schleuder_2.2.1-1.dsc
 4be3635bab5c283e75f73a590764798ddedcf2cc 55641 schleuder_2.2.1.orig.tar.gz
 f154fa42f1531cde781a36e6c7f5589ca9c3788c 43485 schleuder_2.2.1-1.debian.tar.gz
 90acb8cd310944a029c6baf23daa9f21dde127c5 55478 schleuder_2.2.1-1_all.deb
Checksums-Sha256: 
 62cde068677eb2cfbea90e10599494dc39bc1c55572db638a7ef6bfe6ef8478a 1847 
schleuder_2.2.1-1.dsc
 55240f04e08e074ca28b59ac2ea40cc7664c73c526da04f67f6a06ea18812ded 55641 
schleuder_2.2.1.orig.tar.gz
 acc7332f6ab7cbb162999141c9c127ca208da89856edc83ac1773f8c6aa5ba6d 43485 
schleuder_2.2.1-1.debian.tar.gz
 51dfafa3987304d77ed27d3ca95a389e963f614838af6e49bca766a69eb00774 55478 
schleuder_2.2.1-1_all.deb
Files: 
 9e9e3ac01f679ec43bd46f4463a90715 1847 mail optional schleuder_2.2.1-1.dsc
 98ca9cfcfedd5c17a6ae43c54d911eee 55641 mail optional 
schleuder_2.2.1.orig.tar.gz
 07605a6c3d7bc606999bff3c8a4fe08f 43485 mail optional 
schleuder_2.2.1-1.debian.tar.gz
 3a4265729e40b15c11baca9a0e4b4301 55478 mail optional schleuder_2.2.1-1_all.deb

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

iQIcBAEBCAAGBQJP4KEiAAoJEEgU3sIrMHw896EQALlE8eYeTta6aAydnc0BZD8F
WtTsUkePsJonBv34dFyg1/bMH0CM0J8H12KL4F9BItmjlCkxg742GFSjsUcIOqwR
QbW8ulC4P8gKet3HB55K66zd52AfbzLE/YUhAZYj1BbC7anDPIwvfKKikDZzg9bg
oZHxz8N0VaepaT83Ap8reL6rGKoEr8JIukCbrgFyKU5uFgJcNHV1URYQxNXHRj1k
oaSWxt6go2veGHs4UHH7XoVI+j/FIGJY6DBk3Sor1rcdXF/fJf0X5VL86ZOI3Z2m
oew3fxIQHZY61UT7Hr48M4pFI9EFROqNYqNy61PUREIuxx70BU9P+GcmjF+GpN85
Z6yRCTIqmBBuG54U6Ar+TVOW/mDhSMopTpPVX6NuU8I/WYLOElMy0hsNTfHZMjTH
7rArHcAtp2cKhUfzhifF+sVZUbVxb1tvKDmGkJEtjguD+iBEoDeYKqC4XzYt6Mnm
DpaUdFFhFo90r5LvFpAKfLwoSnK2yUfZA4VZhTeMfp0eoH4O5Tmb1/A9BELyXsNJ
dMwRUztc0tLD49welRL+UTLkIZG171Ry9OIUv+Zt7R1x+LTtD6N7InMfjEoTStFb

Accepted kdetoys 4:4.8.4-1 (source all amd64)

2012-06-19 Thread Lisandro Damián Nicanor Pérez Meyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 12:52:38 -0300
Source: kdetoys
Binary: kdetoys amor kteatime ktux kdetoys-dbg
Architecture: source all amd64
Version: 4:4.8.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Lisandro Damián Nicanor Pérez Meyer lisan...@debian.org
Description: 
 amor   - desktop companion
 kdetoys- desktop toys from the official KDE 4 release
 kdetoys-dbg - debugging symbols for kdetoys
 kteatime   - utility for making a fine cup of tea
 ktux   - Tux screensaver for KScreenSaver
Changes: 
 kdetoys (4:4.8.4-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
 .
   [ Eshat Cakar ]
   * Add watch file.
   * Update Standards-Version to 3.9.3, no further changes.
   * Bump kde-sc-dev-latest build dependency to 4.8.4.
   * Bump kde-workspace-dev build dependency to 4.8.
Checksums-Sha1: 
 5e3d076a10d57a4081be5a67b7de2713da363ed1 2335 kdetoys_4.8.4-1.dsc
 dd5f63f0e833135bac73a2e12692b1e6dd412f67 391732 kdetoys_4.8.4.orig.tar.xz
 781492cceb2635d0b85447b081115e06da0eb600 6920 kdetoys_4.8.4-1.debian.tar.gz
 3a2ddb0b30c10ea8bb64a5a2357585b14828e449 6148 kdetoys_4.8.4-1_all.deb
 a4b62016f2a862ac6e663ec23a9f4a8fb6e5ccfd 232460 amor_4.8.4-1_amd64.deb
 ad96bc8101f33af5156ce21b0df6f21b5607346b 124498 kteatime_4.8.4-1_amd64.deb
 97cc46852c659e48dcef760db1ec05358102be75 127560 ktux_4.8.4-1_amd64.deb
 0b0d9958ade81840cb91b0bbf95ab7912fabea41 1438354 kdetoys-dbg_4.8.4-1_amd64.deb
Checksums-Sha256: 
 ed58edad5ed5c8c78bb81fb86bb2678c8a1c7874100e57da3d317814f1da050f 2335 
kdetoys_4.8.4-1.dsc
 d6ae160c8966cce7aafbb791c4144c517209380865bc79a280f57887ab33100d 391732 
kdetoys_4.8.4.orig.tar.xz
 dd22987b1892799a940bb21a98087e11536620232bd8859a73cf4b30fead53e2 6920 
kdetoys_4.8.4-1.debian.tar.gz
 b42fff4e9ffa9e617626c45b498f46fddbe59263f87a5f1594ff8adf1c0751e0 6148 
kdetoys_4.8.4-1_all.deb
 2845ae7aed8d7823ca075a5016db93254fc8974342b88b44a264dabf281498e9 232460 
amor_4.8.4-1_amd64.deb
 dff3ff183ca92eb436f8df56650bafc49a6ec3b2d60c0600e60dd1bb5f22c63a 124498 
kteatime_4.8.4-1_amd64.deb
 aa8af6c4bc8c16618214b51a51e1a87ac42e40a7da620be99e3129a44a85acb5 127560 
ktux_4.8.4-1_amd64.deb
 b1c4a232d5f064e1c8ba966fcbed9a63fdabc899b6410b5db9b87c3afa5f895f 1438354 
kdetoys-dbg_4.8.4-1_amd64.deb
Files: 
 f2e43f0814b456920596f7ceb38017a3 2335 kde optional kdetoys_4.8.4-1.dsc
 99c4c36ea5ea275a1b42e64639ac43ff 391732 kde optional kdetoys_4.8.4.orig.tar.xz
 dd04bdf8432b5d42ff035d37fc833993 6920 kde optional 
kdetoys_4.8.4-1.debian.tar.gz
 77ea5b579f2c73856c6c1ec983598714 6148 kde optional kdetoys_4.8.4-1_all.deb
 dc48f851f64ca3b9e4c64561c5a6055a 232460 games optional amor_4.8.4-1_amd64.deb
 0c6536ff67834bd42018ee26ef562470 124498 kde optional kteatime_4.8.4-1_amd64.deb
 3b1c63ba6275f00df4b73206b1c6 127560 kde optional ktux_4.8.4-1_amd64.deb
 71e0a4040a838676daa59d3a8ed46106 1438354 debug extra 
kdetoys-dbg_4.8.4-1_amd64.deb

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

iQIcBAEBCAAGBQJP4KGxAAoJEKtkX0BihqfQa5MQAKr0gv7gEzxtgVQkgyqaDS+0
/MJF27dzVA5ARmYln7S9KUQ1EWSph5mzdDQunLAC+z0/8wj/cxiPyT9CKdMgvDrN
8rpd9jdQc4lwW5C5vc6bTh24x4xEx0VNzYlKv2KJ7bNNwEFxldi13j+08ZVBhXA7
4U7ViXZg/70CtdCxCQ+WUA+oKMNAXN0tOTk3Y/sRlIPzqiuBnFDdSyn2y1RHKx4n
RPv7AC69SFlYYD52hDIX0H2IQOrrO9QzZBcZxMqKBULlDsOS/+0vPq0CiN13NqT2
ytOzVy+/+GTOv0CSSe/+2v0q/tLzT5MOJ2qTe5EchuKxJpuLWu0oDOopaXTHDvb6
VyS/G2/aWol8LZ1Xe0V9re55ma0WQ7hxrFbmjJ+aVwwSPMi+4zeVDQtOCrkvMOD8
+c24uIA8DrBttV4o+mGrqqrsau2tgbY4vn89cR3jkZyVyYP7u2yjJcAEy9t0lALW
IBtG7Q9rufkp+OcnWzPytU7+5sifBDApBycCANxOlJCqaqxnt4SHCXWjz5oeHNXy
h7ZQe+au4/mRT+9fMQN6Ble/RqdE7UB1DbcfEU18XuZHUVvQFA5/W3ManUNMHnSF
Q+CNTri7WEetnKy7XpVDmV8fWG4wcCa6P8zQxU3I556JFKjr7wfjeq7eNOhO+/qw
6+o1yqNY6APLVHXC7xN5
=/Fhu
-END PGP SIGNATURE-


Accepted:
amor_4.8.4-1_amd64.deb
  to main/k/kdetoys/amor_4.8.4-1_amd64.deb
kdetoys-dbg_4.8.4-1_amd64.deb
  to main/k/kdetoys/kdetoys-dbg_4.8.4-1_amd64.deb
kdetoys_4.8.4-1.debian.tar.gz
  to main/k/kdetoys/kdetoys_4.8.4-1.debian.tar.gz
kdetoys_4.8.4-1.dsc
  to main/k/kdetoys/kdetoys_4.8.4-1.dsc
kdetoys_4.8.4-1_all.deb
  to main/k/kdetoys/kdetoys_4.8.4-1_all.deb
kdetoys_4.8.4.orig.tar.xz
  to main/k/kdetoys/kdetoys_4.8.4.orig.tar.xz
kteatime_4.8.4-1_amd64.deb
  to main/k/kdetoys/kteatime_4.8.4-1_amd64.deb
ktux_4.8.4-1_amd64.deb
  to main/k/kdetoys/ktux_4.8.4-1_amd64.deb


-- 
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/e1sh17t-0004hf...@franck.debian.org



Accepted kmplot 4:4.8.4-1 (source amd64)

2012-06-19 Thread Lisandro Damián Nicanor Pérez Meyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 13:03:09 -0300
Source: kmplot
Binary: kmplot
Architecture: source amd64
Version: 4:4.8.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Lisandro Damián Nicanor Pérez Meyer lisan...@debian.org
Description: 
 kmplot - mathematical function plotter for KDE
Changes: 
 kmplot (4:4.8.4-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
 .
   [ Eshat Cakar ]
   * Bump kde-sc-dev-latest build dependency to 4:4.8.4.
   * Bump kdelibs5-dev build dependency to 4:4.8.
   * Bump Standards-Version to 3.9.3, no further changes.
   * Add watch file.
Checksums-Sha1: 
 55308068745fc71a2fa2d6e351750960e4e18568 2044 kmplot_4.8.4-1.dsc
 07ada013e1a046afe3bb3542a2485b1ec0d4736e 682292 kmplot_4.8.4.orig.tar.xz
 bd7911a62c06b92cf166009cca37916a0da3b85e 2419 kmplot_4.8.4-1.debian.tar.gz
 deea78c4871660c60f6022e4a88267ac2cbd59e7 878924 kmplot_4.8.4-1_amd64.deb
Checksums-Sha256: 
 b7b78d170a5303bcac3e1c65ea4d86e8d42db88e646c0fc57c59c9deb70977c5 2044 
kmplot_4.8.4-1.dsc
 edca3e253fce336afcc00d12e84f88615382dfd8e47df96ee413ed5621594aa7 682292 
kmplot_4.8.4.orig.tar.xz
 d43289c23c699b750e819f917feb10bec46b35c05687d147659e2daca1c76e32 2419 
kmplot_4.8.4-1.debian.tar.gz
 5eb2ef8b31bb2d37920be0baff72561790cfbcf21f4bafec71021585b8413758 878924 
kmplot_4.8.4-1_amd64.deb
Files: 
 57cfbc313b79130e762f069918e8ac1d 2044 kde optional kmplot_4.8.4-1.dsc
 50bdeea24f418aa29394911b61c785ad 682292 kde optional kmplot_4.8.4.orig.tar.xz
 2124896a1ae66e04e7669ae11dccf178 2419 kde optional kmplot_4.8.4-1.debian.tar.gz
 a0b2af480f142c1c933449bc85e19889 878924 math optional kmplot_4.8.4-1_amd64.deb

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

iQIcBAEBCAAGBQJP4KPCAAoJEKtkX0BihqfQuW0QAKUlDFByR+h59UFMAhF7BqXR
maAvyCfawr4/JZHSg5qQ58XHQjD+px/G+Qu5FEZrUBWoVP/MLfK+LBS8ZjeSKKBi
F1rmx1JzUe63voAwcoSK9fOK1fjtaqMnbwVUVBk07UvHWyVwao1wi6KKGCghXqHX
CMdIX6hNR/eLeAcHmHjdCLKEYUYZjmsr200aIU/NKZwPCOW/6TaP0k6z2tAwK7Sr
qVYIwegJqfisNYDAIq4feskortxzvPXVcsxx+FIy44wJ/u/rrtbPayRUEeouI7Vm
qFhiUPSYj597aECPX86U31+lmvB+ttHjdmIOJu/RDy/a8IBD/PrKU2fCXWkjSTzV
SpBsgnhAtuQFnsS1OYma7A8a0qxC5sp+q1FmPlg6J+X2FIqIPZ4b3fk2uFSW+WtJ
3WkXPu5DVvqugxE0BR+agryzE9J0tAZUcgI0N5yBPHisOsAeim1l8JKK+q2Qn80W
OlwV7zPvRDy7z3dtm3ijqnbDoHL1T5xmhk2p7q5hqRu6VuLxFGUM0vbQnzdUdikC
il/pE+7hu0NlXQ8x03bYK+4698QoT3qZzc1D1z3MUv68bdYlZOJE0xS9T6YOHCXY
RZQ1D+Z1TiQ0LdxJaLvlUWJ542cENppV3gn8vM3pSNhXybSpaJ9O3b1W+A1pbUTj
A2fhx3fvGfbAwqD1t3qt
=MxHV
-END PGP SIGNATURE-


Accepted:
kmplot_4.8.4-1.debian.tar.gz
  to main/k/kmplot/kmplot_4.8.4-1.debian.tar.gz
kmplot_4.8.4-1.dsc
  to main/k/kmplot/kmplot_4.8.4-1.dsc
kmplot_4.8.4-1_amd64.deb
  to main/k/kmplot/kmplot_4.8.4-1_amd64.deb
kmplot_4.8.4.orig.tar.xz
  to main/k/kmplot/kmplot_4.8.4.orig.tar.xz


-- 
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/e1sh17g-0004iw...@franck.debian.org



Accepted statsmodels 0.4.1-1 (source all amd64)

2012-06-19 Thread Yaroslav Halchenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 15 Jun 2012 17:57:17 -0400
Source: statsmodels
Binary: python-statsmodels python-statsmodels-lib python-statsmodels-doc 
python-scikits.statsmodels
Architecture: source amd64 all
Version: 0.4.1-1
Distribution: unstable
Urgency: low
Maintainer: NeuroDebian Team t...@neuro.debian.net
Changed-By: Yaroslav Halchenko deb...@onerussian.com
Description: 
 python-scikits.statsmodels - transitional compatibility package for 
statsmodels migration
 python-statsmodels - Python module for the estimation of statistical models
 python-statsmodels-doc - documentation and examples for statsmodels
 python-statsmodels-lib - low-level implementations and bindings for statsmodels
Changes: 
 statsmodels (0.4.1-1) unstable; urgency=low
 .
   * Fresh upstream release
 - dropped up_versioncomparison_with_rc
 - require Python = 2.6
   * Do fail if unittests fail
   * Added joblib to build-depends since seems could be used during tests
Checksums-Sha1: 
 9831ae28578b1f456a73cbd0696804592ac3fce4 1808 statsmodels_0.4.1-1.dsc
 5b8461c857baa026a45187ce48071528b764d864 4197449 statsmodels_0.4.1.orig.tar.gz
 ddcb27f33e727594dd34420f212cbd017577beb7 84088 
statsmodels_0.4.1-1.debian.tar.gz
 65a465b087e3bf613d745f1a520d42891ecd2a81 113636 
python-statsmodels-lib_0.4.1-1_amd64.deb
 c12eaecbaaa674dd8c75dff2fa2d42b169350728 3102694 
python-statsmodels_0.4.1-1_all.deb
 201a91673f553d36860ccf504e2c28aabfab5c15 6128784 
python-statsmodels-doc_0.4.1-1_all.deb
 0d45db94e9a83e2b825427e41b8915f43462bf19 9852 
python-scikits.statsmodels_0.4.1-1_all.deb
Checksums-Sha256: 
 4b4adcaf80af3eeb4ca0c433883f150d28cfef330f153b5312bab1c588524e07 1808 
statsmodels_0.4.1-1.dsc
 2e4002672f9cfda88d82e89f641e7999e05e6694e5efcdef72f9fd97ac8bb5c1 4197449 
statsmodels_0.4.1.orig.tar.gz
 4ddcd5120ae53c7c57502964938d1e92543f01f5c238e37ab76b78c70fa0c7ef 84088 
statsmodels_0.4.1-1.debian.tar.gz
 bb0b10a74140ed0b4cd9c95c0753da4f4ce011d06cbd685f0d305313e214d700 113636 
python-statsmodels-lib_0.4.1-1_amd64.deb
 0f0af86c844090b6cf49615b716a34b67fdab1b1966cdce9bdc04fb9cd254d3f 3102694 
python-statsmodels_0.4.1-1_all.deb
 4cb8b91f898d3e7683e689221505cd87703cc58afe721544f6b29a2277c6f099 6128784 
python-statsmodels-doc_0.4.1-1_all.deb
 a2ce445be099bb44021601f31ca4127b828174d73944310591cbd6465de7b093 9852 
python-scikits.statsmodels_0.4.1-1_all.deb
Files: 
 c1ddde0dd4d88c5a748ec530646a0ecf 1808 python extra statsmodels_0.4.1-1.dsc
 35894b0a276898629e88d61fc336257d 4197449 python extra 
statsmodels_0.4.1.orig.tar.gz
 ef60f94f230f073013059c8055f35de8 84088 python extra 
statsmodels_0.4.1-1.debian.tar.gz
 57228e5877b83c41ff79acf3b38679ec 113636 python extra 
python-statsmodels-lib_0.4.1-1_amd64.deb
 871edaec508b9acd7c28c1778787af62 3102694 python extra 
python-statsmodels_0.4.1-1_all.deb
 86a53d7f3e4068116b59a0d10591fcd0 6128784 doc extra 
python-statsmodels-doc_0.4.1-1_all.deb
 cc26d59fcc4d9fdc240dc4d9c4195fe1 9852 oldlibs extra 
python-scikits.statsmodels_0.4.1-1_all.deb

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

iEYEARECAAYFAk/goqkACgkQjRFFY3XAJMjvcQCgh673mex7t5B9vKDFO9CpI0hR
3ccAoKaN5ceFuXJLwaoDno5PF/RzVHZ7
=ds04
-END PGP SIGNATURE-


Accepted:
python-scikits.statsmodels_0.4.1-1_all.deb
  to main/s/statsmodels/python-scikits.statsmodels_0.4.1-1_all.deb
python-statsmodels-doc_0.4.1-1_all.deb
  to main/s/statsmodels/python-statsmodels-doc_0.4.1-1_all.deb
python-statsmodels-lib_0.4.1-1_amd64.deb
  to main/s/statsmodels/python-statsmodels-lib_0.4.1-1_amd64.deb
python-statsmodels_0.4.1-1_all.deb
  to main/s/statsmodels/python-statsmodels_0.4.1-1_all.deb
statsmodels_0.4.1-1.debian.tar.gz
  to main/s/statsmodels/statsmodels_0.4.1-1.debian.tar.gz
statsmodels_0.4.1-1.dsc
  to main/s/statsmodels/statsmodels_0.4.1-1.dsc
statsmodels_0.4.1.orig.tar.gz
  to main/s/statsmodels/statsmodels_0.4.1.orig.tar.gz


-- 
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/e1sh193-0004mo...@franck.debian.org



Accepted auto-multiple-choice 1.1.1-2 (source all amd64)

2012-06-19 Thread georgesk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 15:52:47 +0200
Source: auto-multiple-choice
Binary: auto-multiple-choice auto-multiple-choice-common 
auto-multiple-choice-doc auto-multiple-choice-doc-pdf
Architecture: source amd64 all
Version: 1.1.1-2
Distribution: unstable
Urgency: low
Maintainer: Alexis Bienvenüe p...@passoire.fr
Changed-By: georg...@ofset.org
Description: 
 auto-multiple-choice - Auto Multiple Choice - multiple choice papers management
 auto-multiple-choice-common - Auto Multiple Choice - architecture independent 
files
 auto-multiple-choice-doc - Auto Multiple Choice - HTML documentation
 auto-multiple-choice-doc-pdf - Auto Multiple Choice - PDF documentation
Changes: 
 auto-multiple-choice (1.1.1-2) unstable; urgency=low
 .
   * Calls dh_installtex only for package auto-multiple-choice-common.
   * Added misc:Depends dependency for all packages.
   * changed debhelper build-depends version to =9 to reflect compat
 value.
Checksums-Sha1: 
 b30b093d76f1ed1b447a1381642a95e2bb126495 1722 auto-multiple-choice_1.1.1-2.dsc
 253e66e0a477dd587a5eabaca59e1917415b93d9 7302 
auto-multiple-choice_1.1.1-2.debian.tar.gz
 80b6f26130b167420214dcac76c0b50c7d110d17 25052 
auto-multiple-choice_1.1.1-2_amd64.deb
 8c90b31900513b1b10c0e3be5d2814deea88c06d 403596 
auto-multiple-choice-common_1.1.1-2_all.deb
 520f4edd2cc93fa2ac6a09534480595897b9aa61 165466 
auto-multiple-choice-doc_1.1.1-2_all.deb
 18d5184055df17acff90c68cfa2b703579061b66 1613286 
auto-multiple-choice-doc-pdf_1.1.1-2_all.deb
Checksums-Sha256: 
 e044a158f06422dd04c123af272590dd4797e07393eb09211289647254a5df1d 1722 
auto-multiple-choice_1.1.1-2.dsc
 70946b01caa337996710b24d84b31617f797228291ad44b1623c6c182230cb01 7302 
auto-multiple-choice_1.1.1-2.debian.tar.gz
 f0766793d47a4a903c7afa803cb67148c1f554dda3aa15b7ac62992ed900435b 25052 
auto-multiple-choice_1.1.1-2_amd64.deb
 5709544e3d23b8a9c37a4af25f561aec917aa524f6ae90aa3cd31d3b387d681e 403596 
auto-multiple-choice-common_1.1.1-2_all.deb
 2842b79ebee3a04988e6055392a3286e83460dc8bc8f6e8366a632d2d9f7121e 165466 
auto-multiple-choice-doc_1.1.1-2_all.deb
 b22ef2cffb6495a0efd0e9396c14519dc15c4c5b50360049a9f33849ff07d504 1613286 
auto-multiple-choice-doc-pdf_1.1.1-2_all.deb
Files: 
 7dfc64f131046bcf7a61e85d46f30b83 1722 education optional 
auto-multiple-choice_1.1.1-2.dsc
 471477748322a3554cab395989602627 7302 education optional 
auto-multiple-choice_1.1.1-2.debian.tar.gz
 e9ffd6f1fe8e58a228ef9420d1a27659 25052 education optional 
auto-multiple-choice_1.1.1-2_amd64.deb
 650746c2231950fe613edc17c0fd2b4f 403596 education optional 
auto-multiple-choice-common_1.1.1-2_all.deb
 d9ded12b49a93527b56281e1c2d002c4 165466 doc optional 
auto-multiple-choice-doc_1.1.1-2_all.deb
 3967201718156f365e38f30a818cdf8c 1613286 doc optional 
auto-multiple-choice-doc-pdf_1.1.1-2_all.deb

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

iD8DBQFP4Ke/nfmb2hFpETARAiCEAJ9OstJ9qVFSvQK7XEaAimekBGhu5QCdHdaf
eQbxhHQvLi6P7PsehQ1oAS8=
=/OL+
-END PGP SIGNATURE-


Accepted:
auto-multiple-choice-common_1.1.1-2_all.deb
  to main/a/auto-multiple-choice/auto-multiple-choice-common_1.1.1-2_all.deb
auto-multiple-choice-doc-pdf_1.1.1-2_all.deb
  to main/a/auto-multiple-choice/auto-multiple-choice-doc-pdf_1.1.1-2_all.deb
auto-multiple-choice-doc_1.1.1-2_all.deb
  to main/a/auto-multiple-choice/auto-multiple-choice-doc_1.1.1-2_all.deb
auto-multiple-choice_1.1.1-2.debian.tar.gz
  to main/a/auto-multiple-choice/auto-multiple-choice_1.1.1-2.debian.tar.gz
auto-multiple-choice_1.1.1-2.dsc
  to main/a/auto-multiple-choice/auto-multiple-choice_1.1.1-2.dsc
auto-multiple-choice_1.1.1-2_amd64.deb
  to main/a/auto-multiple-choice/auto-multiple-choice_1.1.1-2_amd64.deb


-- 
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/e1sh1lp-0005vg...@franck.debian.org



Accepted dictionaries-common 1.12.9 (source all)

2012-06-19 Thread Agustin Martin Domingo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 17:57:18 +0200
Source: dictionaries-common
Binary: dictionaries-common dictionaries-common-dev
Architecture: source all
Version: 1.12.9
Distribution: unstable
Urgency: low
Maintainer: Agustin Martin Domingo agmar...@debian.org
Changed-By: Agustin Martin Domingo agmar...@debian.org
Description: 
 dictionaries-common - Common utilities for spelling dictionary tools
 dictionaries-common-dev - Developer tools and Policy for spelling dictionary 
tools
Closes: 677920
Changes: 
 dictionaries-common (1.12.9) unstable; urgency=low
 .
   * debian/po:
 - Updated Slovak translation of debconf templates. Thanks
   Ivan Masár (Closes: #677920).
   * scripts/debhelper/installdeb.in:
 - Improve doctrings, pod and debug messages. Enable debugging
   if DICT_COMMON_DEBUG is set to non-nil.
 - Do not automatically create symlinks for extra hashes for
   the clean list.
Checksums-Sha1: 
 f1e618344fd23ec6512a9077001a1213b75e5dae 1225 dictionaries-common_1.12.9.dsc
 5140038ec36a13ca9a0aff9c1ce152760cb1e2da 319547 
dictionaries-common_1.12.9.tar.gz
 f9650a7aff571d21b9e35d70104f4333ac04387d 300180 
dictionaries-common_1.12.9_all.deb
 388d8baa960ceb537c325a0e6724d734bc14b1ae 133070 
dictionaries-common-dev_1.12.9_all.deb
Checksums-Sha256: 
 35eae87058367be0992e8bceb48fc13f574a8edec58793c7b1a6265f10215a30 1225 
dictionaries-common_1.12.9.dsc
 10c0c971b669f4f3d75456536de42eace0b85f4f2514f1a861077c87f51b0e08 319547 
dictionaries-common_1.12.9.tar.gz
 76b8576a98203d4cb2f102617cc59ea464c9daefb66f8691b1676e035d5d0b92 300180 
dictionaries-common_1.12.9_all.deb
 1b0685c06f2eed6adc354e190f10b18d6a9799715e9397aefa474af6cb33f03b 133070 
dictionaries-common-dev_1.12.9_all.deb
Files: 
 fca466e20ab7fb46e6fb4442a6d6c59d 1225 text optional 
dictionaries-common_1.12.9.dsc
 08c948720482c8350edde726990a012f 319547 text optional 
dictionaries-common_1.12.9.tar.gz
 0371f428d0f8e747d5d334c6fb8bab3b 300180 text optional 
dictionaries-common_1.12.9_all.deb
 fbebaa9eea681eca4c70151b8e560f2f 133070 devel extra 
dictionaries-common-dev_1.12.9_all.deb

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

iD8DBQFP4KbQTShHqj72DpwRAjZmAKCVQXhnQXUFP+KD22F23QSDFmITrgCbBvcA
bRAObv+rmuDIxB+PE8kIYBY=
=TkPi
-END PGP SIGNATURE-


Accepted:
dictionaries-common-dev_1.12.9_all.deb
  to main/d/dictionaries-common/dictionaries-common-dev_1.12.9_all.deb
dictionaries-common_1.12.9.dsc
  to main/d/dictionaries-common/dictionaries-common_1.12.9.dsc
dictionaries-common_1.12.9.tar.gz
  to main/d/dictionaries-common/dictionaries-common_1.12.9.tar.gz
dictionaries-common_1.12.9_all.deb
  to main/d/dictionaries-common/dictionaries-common_1.12.9_all.deb


-- 
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/e1sh1m2-0005x6...@franck.debian.org



Accepted masqmail 0.3.4-1 (source amd64)

2012-06-19 Thread Steffen Rumberger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 27 May 2012 14:30:42 +0200
Source: masqmail
Binary: masqmail
Architecture: source amd64
Version: 0.3.4-1
Distribution: unstable
Urgency: low
Maintainer: Steffen Rumberger i...@sdfeu.org
Changed-By: Steffen Rumberger i...@sdfeu.org
Description: 
 masqmail   - mail transport agent for intermittently connected hosts
Closes: 212852 349211 432793 661591 674666
Changes: 
 masqmail (0.3.4-1) unstable; urgency=low
 .
   * New upstream release. (Closes: #349211)
   * New Maintainer: Steffen Rumberger maintains the package now with
 the help of Markus Schnalke.
   * New init-script based on skeleton.
 - Also converted to lsb fancy boot messages. (Closes: #674666)
   * Switch to source format 3.0 (quilt) and Debhelper compatibility
 level 9.
   * Set Standards-Version to 3.9.3
   * No more use of Debconf for the configuration. The new upstream
 version makes a minimal static configuration file possible.
   * Fixed removal of user-created data on package purge.
   * Ifupdown hooks are not installed by default anymore. (Closes:
 #212852, #661591)
   * Stop handling inetd. The MTA can assume to have the SMTP port
 reserved for it. (Closes: #432793)
Checksums-Sha1: 
 9565f7b3c674c589117cafa0b124aa7ce6381c8a 1976 masqmail_0.3.4-1.dsc
 2509f14704626d74481a826a0dda21cc3742dca8 255824 masqmail_0.3.4.orig.tar.gz
 c47ef44f2f62ffc973b09fb6a3bee938ef9dfbe4 18959 masqmail_0.3.4-1.debian.tar.gz
 562764bffd5f19048d44fa1fa1e6c2b91ecd96d0 141612 masqmail_0.3.4-1_amd64.deb
Checksums-Sha256: 
 e6db2dbd9b83bc7079557ad8d80678771f04317e09050f06d7dc8518e48355a6 1976 
masqmail_0.3.4-1.dsc
 1f0db635febc4fa8336a0645f444faf26c9db346d5056f9367206265c83cc06c 255824 
masqmail_0.3.4.orig.tar.gz
 ada19c3c500f52d77bafe44dd223f185ec7685ca8d6705a63bc442f05dee6ee0 18959 
masqmail_0.3.4-1.debian.tar.gz
 9251469bb6933be5aec6ee897c12590fa5de73860a72b5533b5f6660246dd0d2 141612 
masqmail_0.3.4-1_amd64.deb
Files: 
 f8fa2bcd042b62f03efeb9f7a41d8113 1976 mail extra masqmail_0.3.4-1.dsc
 551bd887c71d7b8f3bb149b617adb1b3 255824 mail extra masqmail_0.3.4.orig.tar.gz
 2f503233b8845ed50b50cd567ac6f666 18959 mail extra 
masqmail_0.3.4-1.debian.tar.gz
 162c14341e6d37c57cb7a60b04c18dee 141612 mail extra masqmail_0.3.4-1_amd64.deb

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

iQIcBAEBCgAGBQJP4KuwAAoJEOCD7BUSMcRl3eYP/15DJNzsVf5m/RqcAWOAH7eP
QIcGiWZMoy1EbYfWWoE7WHsn80BvDjC/X36daOo9mGjRdO28z0mg0+DzlKFrVr/Q
tN1MGyL/P5Qadf1rdGAXAZa+Hcb0JnWbvwOCJGl4026hm0joAHUX+LpMcrUDprYm
rNJAAam9aArW/mpoylw/54xwol1YG8Wwg1eLaipJCJgjbmPNcIwKNbynJXuuumyB
eppHa5mcnRnnI1NBf1I+qHXFi++mfHgc6460JvvGCwRrf2Z89ReQalyZLKJsAvT8
nx0SQmPL36Ly7FSnsVRmU9591sXQn/IAMeNN08LMRWr290+ffFIWnvh8KF7eYRRT
+XG9NHoI9If5YrWtpEXn+D8QXG+lViZNqH1ZSA6N4ns29MhvI2nvB9W/3VDCcHHs
m9Ag0gNUdpv8flXd1gWQIwyWN1d5TqLy4oh5y7YAhKnu0CbDsSCHtwePK8P2upNk
7ubJiOBOZMCxCDizR5QhuqFD6KhKbXQOT5UGXbJzC25X2eWd+njqvQJZDIGvEa4A
Tr3+WpX6WeKIgWHCqc9u8CVzb0EnFtdsdd19UcywQ1b6NzvsGD61zMhG9FfqOll6
85FU1/cUe4UrSyOag+ZN0NXRI+jGEGBGS8/0M7N3g2nC7GSLPWqnejiN2YwBjN1c
m5co5wp+pn57WEq/OXUp
=aQgg
-END PGP SIGNATURE-


Accepted:
masqmail_0.3.4-1.debian.tar.gz
  to main/m/masqmail/masqmail_0.3.4-1.debian.tar.gz
masqmail_0.3.4-1.dsc
  to main/m/masqmail/masqmail_0.3.4-1.dsc
masqmail_0.3.4-1_amd64.deb
  to main/m/masqmail/masqmail_0.3.4-1_amd64.deb
masqmail_0.3.4.orig.tar.gz
  to main/m/masqmail/masqmail_0.3.4.orig.tar.gz


-- 
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/e1sh1bi-0007ub...@franck.debian.org



Accepted evolution-data-server 3.4.3-1 (source all amd64)

2012-06-19 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 18:46:44 +0200
Source: evolution-data-server
Binary: evolution-data-server evolution-data-server-common 
evolution-data-server-dev evolution-data-server-dbg evolution-data-server-doc 
libedataserver-1.2-16 libedataserver1.2-dev gir1.2-edataserver-1.2 
libcamel-1.2-33 libcamel1.2-dev libebook-1.2-13 libebook1.2-dev 
gir1.2-ebook-1.2 libedataserverui-3.0-1 libedataserverui-3.0-dev 
libedata-book-1.2-13 libedata-book1.2-dev libecal-1.2-11 libecal1.2-dev 
gir1.2-ecalendar-1.2 libedata-cal-1.2-15 libedata-cal1.2-dev libebackend-1.2-2 
libebackend1.2-dev
Architecture: source all amd64
Version: 3.4.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Evolution Maintainers 
pkg-evolution-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 evolution-data-server - evolution database backend server
 evolution-data-server-common - architecture independent files for Evolution 
Data Server
 evolution-data-server-dbg - evolution database backend server with debugging 
symbols
 evolution-data-server-dev - Development files for evolution-data-server 
(metapackage)
 evolution-data-server-doc - Documentation files for the Evolution Data Server 
libraries
 gir1.2-ebook-1.2 - GObject introspection for the EBook library
 gir1.2-ecalendar-1.2 - GObject introspection for the ECalendar library
 gir1.2-edataserver-1.2 - GObject introspection for the EDataServer library
 libcamel-1.2-33 - Evolution MIME message handling library
 libcamel1.2-dev - Development files for libcamel
 libebackend-1.2-2 - Utility library for evolution data servers
 libebackend1.2-dev - Utility library for evolution data servers (development 
files)
 libebook-1.2-13 - Client library for evolution address books
 libebook1.2-dev - Client library for evolution address books (development 
files)
 libecal-1.2-11 - Client library for evolution calendars
 libecal1.2-dev - Client library for evolution calendars (development files)
 libedata-book-1.2-13 - Backend library for evolution address books
 libedata-book1.2-dev - Backend library for evolution address books 
(development files)
 libedata-cal-1.2-15 - Backend library for evolution calendars
 libedata-cal1.2-dev - Backend library for evolution calendars (development 
files)
 libedataserver-1.2-16 - Utility library for evolution data servers
 libedataserver1.2-dev - Utility library for evolution data servers 
(development files)
 libedataserverui-3.0-1 - GUI utility library for evolution data servers
 libedataserverui-3.0-dev - GUI utility library for evolution data servers 
(development files
Changes: 
 evolution-data-server (3.4.3-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
   * Change Conflicts for evolution-data-server to versioned Breaks and add
 libebook-1.2-12 ( 3.4) since the AddressBook D-Bus API had a version
 bump between 3.2 and 3.4. Fix a typo while at it.
   * Upload to unstable.
Checksums-Sha1: 
 5bfcaae806a6935fb2c68d066e870b75b43c2f73 4688 evolution-data-server_3.4.3-1.dsc
 40fc66ca36977a5a35fcebfb9997c3a5fe86ef18 3645752 
evolution-data-server_3.4.3.orig.tar.xz
 362a33fe5f2ffafda740de1ea5c3c0a2e201b483 23233 
evolution-data-server_3.4.3-1.debian.tar.gz
 51c2d1e7ff3aa200989652cd4864194777a9ebad 2671516 
evolution-data-server-common_3.4.3-1_all.deb
 eab897d309557887e9df68406a5d8564c1d61078 1183064 
evolution-data-server-doc_3.4.3-1_all.deb
 8717b2a46fd3496eb428150d3069b0fc1099db64 969346 
evolution-data-server_3.4.3-1_amd64.deb
 1d59b3c7c47c5a06aa08169126b0af117d9d8b4e 408792 
evolution-data-server-dev_3.4.3-1_amd64.deb
 83e13a2ae3c6ef079ccdfddf2c1775b9f72832c3 5440224 
evolution-data-server-dbg_3.4.3-1_amd64.deb
 cbab7bfd6d86eb678cc183808cf197a9438588d3 526344 
libedataserver-1.2-16_3.4.3-1_amd64.deb
 be02b0772d006e745b91b7e7344eac8c74a0fb82 466124 
libedataserver1.2-dev_3.4.3-1_amd64.deb
 73a13e37b7536b618dfd7113dc4b507173e63e53 423830 
gir1.2-edataserver-1.2_3.4.3-1_amd64.deb
 02704e001cb5aa028001af6838cc136a257106b0 870862 
libcamel-1.2-33_3.4.3-1_amd64.deb
 21759d786b4662489f67e9b4787d3db2215662e8 483750 
libcamel1.2-dev_3.4.3-1_amd64.deb
 469335f64894f27df3dad31f33ceb5e499dcfb15 523242 
libebook-1.2-13_3.4.3-1_amd64.deb
 ddffaac66aa166a706f08bca0d492dbb3cdeb868 453928 
libebook1.2-dev_3.4.3-1_amd64.deb
 037d6a78fbfe1b912eab6355bfb6de07cf8db380 423462 
gir1.2-ebook-1.2_3.4.3-1_amd64.deb
 3c56ddcfe522307d61628108b09c7317b48c9bac 518286 
libedataserverui-3.0-1_3.4.3-1_amd64.deb
 3bb9b82667313883e15b77ad7e717a5d6d8e0275 418008 
libedataserverui-3.0-dev_3.4.3-1_amd64.deb
 858c3d2d451ca92387d2810ff6093734434f0632 488422 
libedata-book-1.2-13_3.4.3-1_amd64.deb
 acbccaab1e1a2df983695c1f407064ba6ebf 417090 
libedata-book1.2-dev_3.4.3-1_amd64.deb
 ef1e6b5115ac2219f0367a39e1a5575c85e09f33 560058 
libecal-1.2-11_3.4.3-1_amd64.deb
 f6fa467b7f8136d2e12d9b53adf2603d5780edab 458172 
libecal1.2-dev_3.4.3-1_amd64.deb
 

Accepted maven-hpi-plugin 1.79-3 (source all)

2012-06-19 Thread James Page
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 17:13:00 +0100
Source: maven-hpi-plugin
Binary: libmaven-hpi-plugin-java libmaven-hpi-plugin-java-doc
Architecture: source all
Version: 1.79-3
Distribution: sid
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: James Page james.p...@ubuntu.com
Description: 
 libmaven-hpi-plugin-java - Maven2 plugin for building Jenkins plugins
 libmaven-hpi-plugin-java-doc - Documentation for libmaven-hpi-plugin-java
Changes: 
 maven-hpi-plugin (1.79-3) unstable; urgency=low
 .
   * Fix FTBFS with openjdk-7 (LP: #1009471):
 - d/patches/java7-compat.patch: Add profile for Java 7 to pickup
   tools.jar to support annotation processing.
   * d/control: Bumped Standards-Version to 3.9.3:
 - d/copyright: reference released version of DEP-5.
Checksums-Sha1: 
 4484c4c5dae74efca14d9bc669a71746c1dd58b8 2604 maven-hpi-plugin_1.79-3.dsc
 de40c089b49d9dd85d4a45f975b4978067f0c4b7 11843 
maven-hpi-plugin_1.79-3.debian.tar.gz
 6dcaf262bdfe9d0aa87808424b820299db87256c 81558 
libmaven-hpi-plugin-java_1.79-3_all.deb
 feafc6f8422aeb965845e919ecec8ec4fd7b7a08 214710 
libmaven-hpi-plugin-java-doc_1.79-3_all.deb
Checksums-Sha256: 
 97877ca2da2983818d6b86b20df34dd8113112b436320e6c5e62fc057b91e130 2604 
maven-hpi-plugin_1.79-3.dsc
 1eab882276eeca83775868a84e139af4ff0af15cdbd80088112b6ce757ad83f0 11843 
maven-hpi-plugin_1.79-3.debian.tar.gz
 f29a56aa7bb000ef9c74828c72bb86e5a6370cfe53a7ce6a0292b733fe45622e 81558 
libmaven-hpi-plugin-java_1.79-3_all.deb
 783259e0446f62682a4da9dfb5455f5ef5a10cda3c401fb059864c1c3be1f5ab 214710 
libmaven-hpi-plugin-java-doc_1.79-3_all.deb
Files: 
 78163055c7b00322477525c13056ac38 2604 java optional maven-hpi-plugin_1.79-3.dsc
 c5668d75ab6c4849baad0a34bc4b658a 11843 java optional 
maven-hpi-plugin_1.79-3.debian.tar.gz
 3d887d148d551f50cb47553474919743 81558 java optional 
libmaven-hpi-plugin-java_1.79-3_all.deb
 e5084cf38c49259ad8fd7a8064e4f98f 214710 doc optional 
libmaven-hpi-plugin-java-doc_1.79-3_all.deb

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

iQIcBAEBCAAGBQJP4LHfAAoJEL/srsug59jDkJYP/1qsw70bAifyBjCZY2cSKEMW
XHXF9fp7y5QeO/wlXpPvhCyK7ZeVBoIXtq7u9Jtzb65Pl+vNLeBSDB7ITIRaIGRb
VzmGGH2Jd4N+PsWG4+ndopZKp0tPD8eUXiHtIWvvzNtNwdLvVJ+8mnwiadF4eGfD
jBeVCXeuTpkhFfUUrEEBoV0kevXaTKH593Jr5DDLOJC03rf0jVI34Gdt5cAMYDHW
JZEQQFu2Ew8sR0HvPd9WdDa/G5yI4bREmmsz6gyvojJ5B/LZE8KojqguWpNbR/Sr
azrEV4B/5+CNAoGm6tS+sGqQWNsCb9TFaFzvZL3hGJ5ux0dqEDQwpGaVV+LkHzG5
CWcmHQ6KcI+6Op46oBI0XVCzMg37Ms99gCwk9fV3gGcFkOnhOJHKGfuJlOQHfeqD
jGGsTUMBp/3KcR+piWU4AxxAvF7Uf78z9WE83HHJPU3CpFtUtZAz1zEEEsxARcvR
o+L0ZnPmHYsNFa3bl/Ng1brfbGjZbDC5E9eIQXVpPko+vBMpfnxRBc1R/5LP8emQ
5BSk8pxcxz6kqR8l6tAMp7Ejymg8JAYGSVjdHOkxxS7nbC1kgnTGZf3JxuFVabYU
9BZjSPC/T9NYx2cvlWdix4QE2KqugRuzxS/iz4JY4olCvWxMvkRRhDjuAzz9WdWh
opqfHy26lrCKUEuRgJet
=KAY8
-END PGP SIGNATURE-


Accepted:
libmaven-hpi-plugin-java-doc_1.79-3_all.deb
  to main/m/maven-hpi-plugin/libmaven-hpi-plugin-java-doc_1.79-3_all.deb
libmaven-hpi-plugin-java_1.79-3_all.deb
  to main/m/maven-hpi-plugin/libmaven-hpi-plugin-java_1.79-3_all.deb
maven-hpi-plugin_1.79-3.debian.tar.gz
  to main/m/maven-hpi-plugin/maven-hpi-plugin_1.79-3.debian.tar.gz
maven-hpi-plugin_1.79-3.dsc
  to main/m/maven-hpi-plugin/maven-hpi-plugin_1.79-3.dsc


-- 
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/e1sh255-0001hg...@franck.debian.org



Accepted openjpeg 1.5.0-3 (source all amd64)

2012-06-19 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 19 Jun 2012 16:46:59 +0200
Source: openjpeg
Binary: libopenjpeg-dev libopenjpeg5 libopenjpeg-java libopenjpeg5-dbg 
openjpip-dec-server openjpip-viewer-xerces openjpip-viewer openjpip-server 
openjpeg-tools
Architecture: source amd64 all
Version: 1.5.0-3
Distribution: experimental
Urgency: low
Maintainer: Debian PhotoTools Maintainers 
pkg-phototools-de...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 libopenjpeg-dev - development files for OpenJPEG, a JPEG 2000 image library
 libopenjpeg-java - java bindings for libopenjpeg, a JPEG 2000 image library
 libopenjpeg5 - JPEG 2000 image compression/decompression library
 libopenjpeg5-dbg - debug symbols for libopenjpeg5, a JPEG 2000 image library
 openjpeg-tools - command-line tools using the JPEG 2000 library
 openjpip-dec-server - tool to allow caching of JPEG 2000 files using JPIP 
protocol
 openjpip-server - JPIP server for JPEG 2000 files
 openjpip-viewer - JPEG 2000 java based viewer for basic remote JPIP access
 openjpip-viewer-xerces - JPEG 2000 java based viewer for advanced remote JPIP 
access
Changes: 
 openjpeg (1.5.0-3) experimental; urgency=low
 .
   * Add missing jp2-thumbnailer
   * Mark packages with Multi-Arch: same/foreign
Checksums-Sha1: 
 72305a31a99fc0e499a01ca302eac7bc44457f8b 2683 openjpeg_1.5.0-3.dsc
 3950ee5077bb62eaa13d1c446b4bfab0bc23499c 26565 openjpeg_1.5.0-3.debian.tar.gz
 e80d49964812d307abc0694b7cb11905b3a70fd9 32238 
libopenjpeg-dev_1.5.0-3_amd64.deb
 f8498f96ced3a16620248d298fc92a3cf2814f19 187838 libopenjpeg5_1.5.0-3_amd64.deb
 7b77e687ef1dd2c43ddf46b9426678a8605354fe 63418 
libopenjpeg-java_1.5.0-3_amd64.deb
 e062a135a571799dfe725300fb5a5f19218440d1 2195090 
libopenjpeg5-dbg_1.5.0-3_amd64.deb
 4aaa1bd94e5a6544f65070cd3ae703721665f648 150146 
openjpip-dec-server_1.5.0-3_amd64.deb
 a339ffe15c0f82517e1553fac9ff433db07cc3ef 44972 
openjpip-viewer-xerces_1.5.0-3_all.deb
 e11c7565766c42b1e2d29dee24fd8afb2695387a 40170 openjpip-viewer_1.5.0-3_all.deb
 ccf858ce23aa1edf13c5b463167dc5f41a9ab81a 59556 
openjpip-server_1.5.0-3_amd64.deb
 fa91e2d889525fa81d7672c32888cb85e78f4619 577604 
openjpeg-tools_1.5.0-3_amd64.deb
Checksums-Sha256: 
 1cc337865d5371bb20536055f29fc202734d7a4e71817a0899707e58ff316d2b 2683 
openjpeg_1.5.0-3.dsc
 1539dbc8a74cf0dee84c41fa40effd47973890fe82ae5b5dd5e1815ae1f3759c 26565 
openjpeg_1.5.0-3.debian.tar.gz
 6f9350b256edebc4cc8e3b87c2e6d06aea12ff74d8a859bf684e8e7a3b32e048 32238 
libopenjpeg-dev_1.5.0-3_amd64.deb
 af84e9d5737dcc6e14d67dc058166133f6e4bf81012ef6f334f7f8a37719a9fe 187838 
libopenjpeg5_1.5.0-3_amd64.deb
 e36d86273a1e646e0af34047f5c2feefe39c07361e5d7920d6be45c203b7e24e 63418 
libopenjpeg-java_1.5.0-3_amd64.deb
 75c88b2c43f263efe698a57c45a065881f0df6250214517bac2124bad03871cf 2195090 
libopenjpeg5-dbg_1.5.0-3_amd64.deb
 e0e9e6d9335757c4639af26dcc410a813492fa98e4b32e37fdc1660e4e6ae005 150146 
openjpip-dec-server_1.5.0-3_amd64.deb
 b649185e6b1c87f521fbd8865a95485a59066f698d3fe0fb4577c8a44ead5918 44972 
openjpip-viewer-xerces_1.5.0-3_all.deb
 92ce7580da7262f65cd0a3bdff0ffc6811d0c755ec6ec55f3e54f221fa5577e2 40170 
openjpip-viewer_1.5.0-3_all.deb
 99098b71a060884857ed5a22d1f1e9a9817f75b109edb05787423d029686d79e 59556 
openjpip-server_1.5.0-3_amd64.deb
 bba1fe5b1c076d17ed7fb7a36ffab3f7e818fd3c5ac021d8f12c29c0b6a2fa3f 577604 
openjpeg-tools_1.5.0-3_amd64.deb
Files: 
 bb4db559d5cfd6ff417b56494b89f2fc 2683 libs extra openjpeg_1.5.0-3.dsc
 cca21d57aa29f5f7d952397acf730137 26565 libs extra 
openjpeg_1.5.0-3.debian.tar.gz
 180274ec97b476e689720d64bf381e3f 32238 libdevel extra 
libopenjpeg-dev_1.5.0-3_amd64.deb
 245103b70240cd18f42cc52dcddab851 187838 libs extra 
libopenjpeg5_1.5.0-3_amd64.deb
 bc034f6b6fa3b3496934abf9c1745336 63418 java extra 
libopenjpeg-java_1.5.0-3_amd64.deb
 43c1d7b1ace739c144fe1a25d4734709 2195090 debug extra 
libopenjpeg5-dbg_1.5.0-3_amd64.deb
 7a3c13db4ca8b785b08647fb14a71160 150146 graphics extra 
openjpip-dec-server_1.5.0-3_amd64.deb
 1b6cffaec3bbe1e2401cda4714586040 44972 graphics extra 
openjpip-viewer-xerces_1.5.0-3_all.deb
 401ea97b474865ce6a8a4bc196097280 40170 graphics extra 
openjpip-viewer_1.5.0-3_all.deb
 2409f626daa056580ba2dececa071a16 59556 graphics extra 
openjpip-server_1.5.0-3_amd64.deb
 68321aacd78bdb1db66957ae41d5a5b9 577604 graphics extra 
openjpeg-tools_1.5.0-3_amd64.deb

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

iQIcBAEBAgAGBQJP4LENAAoJEAFx4YKK4JNFBEEP+wbtSTkCnAS4tThmVTf+QA5a
kEhNINxBHQ3NBfk2iYkp31vYj9oPIos00EypHkPRbZxsXm8k7QRThDY0As5jDEKn
AhqUFD9t+QChz0GUGjVME9hbnOSJl1PfAa03atIRft8tmIyvPBMJuw2UL8WpXnsi
hkih07IyJ9747e6YBF5BYHkZ2Y2CBRLT7ji+7MLWlkEKO8Md6+8E0WqA/Y17vbHt
8APO1K6dY8a08lBtW2Cs1puOBGD9JiDqKsj/muRroTae4oXRi7N2Hn7ci7KNkioY
887pwmCBW5VUx8B8klLcy/R8HkZfgY1wbRLQX3e9ycWQ4MqxVT7KoIZeAN6Zt7T2
RQLOS9nRLuY358HDAOq1sYQtiRyr1TuD7kDirJQ9iDlNhvC9atbye30GZb6i75Pa
U1NmtjGnDfeGXvvvHmGBJ3gZ2SDGdkDF+rt+DuxknVtyB/7PaoWmfn7EE6kzFWuh

Accepted dovecot-antispam 2.0+20120225-3 (source amd64)

2012-06-19 Thread Ron Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 20 Jun 2012 01:55:54 +0930
Source: dovecot-antispam
Binary: dovecot-antispam
Architecture: source amd64
Version: 2.0+20120225-3
Distribution: unstable
Urgency: low
Maintainer: Ron Lee r...@debian.org
Changed-By: Ron Lee r...@debian.org
Description: 
 dovecot-antispam - Dovecot plugins for training spam filters
Closes: 676007
Changes: 
 dovecot-antispam (2.0+20120225-3) unstable; urgency=low
 .
   * Apply patch from Johannes for dovecot 2.1  Closes: #676007
Checksums-Sha1: 
 2d3ccfc7e246a1e168b501c687ae0adfd2b52040 1318 
dovecot-antispam_2.0+20120225-3.dsc
 f3c27895ac20493092e20155bb60e59226187112 3775 
dovecot-antispam_2.0+20120225-3.diff.gz
 71eb264f0c3721367caa4a076f90495f75702260 23510 
dovecot-antispam_2.0+20120225-3_amd64.deb
Checksums-Sha256: 
 9c016616e7d2f08d478399484820a4fa2233def8830c83ba374be34cf1c8a898 1318 
dovecot-antispam_2.0+20120225-3.dsc
 c43be5281513c3893bf004bc3d494c72b391512a321b56946d263bfd81ac80b8 3775 
dovecot-antispam_2.0+20120225-3.diff.gz
 6f69a3cf5960f404223f52701701f22bcfb3b441bc461436a84b0fd79d5db4e3 23510 
dovecot-antispam_2.0+20120225-3_amd64.deb
Files: 
 a87bc4f6e316e743d5c0277ccd547bad 1318 mail optional 
dovecot-antispam_2.0+20120225-3.dsc
 37a8e761e0152d1dc6892d1d7e75be5f 3775 mail optional 
dovecot-antispam_2.0+20120225-3.diff.gz
 40fa391a9bc823401c09bf68d0feb4e9 23510 mail optional 
dovecot-antispam_2.0+20120225-3_amd64.deb

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

iD8DBQFP4LUMp4BCHGgCHOQRAmPCAJ9Ax6p/rjpggVi8bysGolKVOWFS5QCfXjPw
9WZ2NKfCfBLDbWRDbYXhoYo=
=Y+Zw
-END PGP SIGNATURE-


Accepted:
dovecot-antispam_2.0+20120225-3.diff.gz
  to main/d/dovecot-antispam/dovecot-antispam_2.0+20120225-3.diff.gz
dovecot-antispam_2.0+20120225-3.dsc
  to main/d/dovecot-antispam/dovecot-antispam_2.0+20120225-3.dsc
dovecot-antispam_2.0+20120225-3_amd64.deb
  to main/d/dovecot-antispam/dovecot-antispam_2.0+20120225-3_amd64.deb


-- 
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/e1sh2ie-0002tm...@franck.debian.org



Accepted postgresql-common 131 (source all)

2012-06-19 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 19 Jun 2012 19:26:12 +0200
Source: postgresql-common
Binary: postgresql-common postgresql-client-common postgresql-server-dev-all 
postgresql postgresql-client postgresql-doc postgresql-contrib
Architecture: source all
Version: 131
Distribution: unstable
Urgency: low
Maintainer: Debian PostgreSQL Maintainers 
pkg-postgresql-pub...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 postgresql - object-relational SQL database (supported version)
 postgresql-client - front-end programs for PostgreSQL (supported version)
 postgresql-client-common - manager for multiple PostgreSQL client versions
 postgresql-common - PostgreSQL database-cluster manager
 postgresql-contrib - additional facilities for PostgreSQL (supported version)
 postgresql-doc - documentation for the PostgreSQL database management system
 postgresql-server-dev-all - extension build tool for multiple PostgreSQL 
versions
Changes: 
 postgresql-common (131) unstable; urgency=low
 .
   [ Martin Pitt ]
   * debian/backport-ppa: Adjust for lucid, build -9.2 for oneiric as well.
   * debian/control: Move bzr branches to alioth, so that other members of
 pkg-postgresql can commit. Update Vcs-* tags.
   * debian/control: Set Maintainer: to pkg-postgresql group, and move myself
 to Uploaders:.
   * debian/README.Devel: Update for moved packaging branches.
   * debian/backport-ppa: Disable dpkg 1.16.2 build dependency for natty as
 well.
   * debian/tests/control: Drop breaks-computer restriction. While DEP-8
 mentions it, autopkgtest does not understand it yet and skips the test.
   * debian/tests/system: Run testsuite under en_US.UTF-8, as autopkgtests sets
 it to C by default.
   * t/180_ecpg.t: Ensure that test.pgc is readable for nobody.
   * debian/tests/system: Run the packaged tests instead of the ones in the
 local build tree.
   * debian/tests/system: Unset $TMPDIR so that 'postgres' and 'nobody' do not
 fall over the autopkgtest provided $TMPDIR which is not world writable.
   * t/030_errors.t: Fix nonzero exit code which caused stderr output.
 .
   [ Christoph Berg ]
   * pg_buildext: Also set DESTDIR and VPATH for the configure, build and clean
 targets.
   * Add myself to Uploaders.
Checksums-Sha1: 
 df1fdef7b54878c1086c82cb3ee999e50644c360 2100 postgresql-common_131.dsc
 02c6d61ea2b534167a1a356b02cd9f8858343f75 139802 postgresql-common_131.tar.gz
 9f990ebb6ed962dbd3ab6111b61077ebd43cddba 45584 
postgresql-server-dev-all_131_all.deb
 023c7d889adeae31494d9699c2da70552b1c9cf1 41194 postgresql_9.1+131_all.deb
 e7d6667da72cf109cc5111201cbb77f121e69c62 41228 
postgresql-client_9.1+131_all.deb
 998f2cf6123b01847bcb6c391409e100c1b589ac 41206 postgresql-doc_9.1+131_all.deb
 1a3c1cbbf12c16672aaafe06aef22d3c366b0467 41230 
postgresql-contrib_9.1+131_all.deb
 fa48b77e718e722b74b69f8d9422906c76c87eff 134936 postgresql-common_131_all.deb
 e54c3fb6bd754bbfbe6626d82552808de4083269 61106 
postgresql-client-common_131_all.deb
Checksums-Sha256: 
 9716f430a4a0f88a1e00f1bc334ee6ee1806e832eddc691857ddff347d5bcca4 2100 
postgresql-common_131.dsc
 0f6aa7321ffd52cba3db77fa6740490b5eed967aa9b70b015cdd04ed97ce9257 139802 
postgresql-common_131.tar.gz
 e4b0312f3e3050287c8ac996b7b475e02e884c8e27f737bad7321336ea7adb4c 45584 
postgresql-server-dev-all_131_all.deb
 d0c126612f65e75873b13c6cc32b9be865c853cb5921cb446eed90996fd44ece 41194 
postgresql_9.1+131_all.deb
 2ff4afd77377ce0c726aeaf688afe3388a07168840225f3366a1e39eb8818963 41228 
postgresql-client_9.1+131_all.deb
 ad119af61fa2a505b95de3bc3f155d8a24c5664100176e861853fcd71b40629b 41206 
postgresql-doc_9.1+131_all.deb
 22e7137bb8cbfd7b586f2eda0d270ee10fd45dcaa6ecb6b4e1d630d9d743eeda 41230 
postgresql-contrib_9.1+131_all.deb
 da19351baa4ec089a18fe80c60d9d4beeaadb7cc3687de99b877b7fcf2b85f57 134936 
postgresql-common_131_all.deb
 a642747067a80f29db5ed336a7309f28cd05fd8fa7e4d686f9aa46f7b933cba9 61106 
postgresql-client-common_131_all.deb
Files: 
 7d0e6efc2e7100ea0c7dfbe6010368d7 2100 database optional 
postgresql-common_131.dsc
 62a6edbcd12d0479c8deec34e4c20e3a 139802 database optional 
postgresql-common_131.tar.gz
 547d79f35600d0bde8bcc48e3ad182e1 45584 database optional 
postgresql-server-dev-all_131_all.deb
 306fdd88cdc3e9906e75efa93ead2c13 41194 database optional 
postgresql_9.1+131_all.deb
 7eb1382e257e4bba3e9ccea4887f0700 41228 database optional 
postgresql-client_9.1+131_all.deb
 a9440d6ee6ae9bdabb7a296dc7c482fe 41206 doc optional 
postgresql-doc_9.1+131_all.deb
 f6cc2c609e21f9c08be3e975452b2b35 41230 database optional 
postgresql-contrib_9.1+131_all.deb
 5fd9ae67e5a725e6bad36b8f59eb306c 134936 database optional 
postgresql-common_131_all.deb
 a66b1435fc0f2b26539d6a9cc7478454 61106 database optional 
postgresql-client-common_131_all.deb

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

iQIcBAEBCAAGBQJP4LZhAAoJEPmIJawmtHuf5DYP/3jg+bblBlDtVMkoflClIPze

Accepted sysfsutils 2.1.0+repack-1.2 (source amd64)

2012-06-19 Thread Bastian Blank
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 16 Jun 2012 17:18:46 +
Source: sysfsutils
Binary: libsysfs-dev libsysfs2 sysfsutils libsysfs2-udeb
Architecture: source amd64
Version: 2.1.0+repack-1.2
Distribution: unstable
Urgency: low
Maintainer: Martin Pitt mp...@debian.org
Changed-By: Bastian Blank wa...@debian.org
Description: 
 libsysfs-dev - interface library to sysfs - development files
 libsysfs2  - interface library to sysfs
 libsysfs2-udeb - interface library to sysfs (udeb)
 sysfsutils - sysfs query tool and boot-time setup
Closes: 663040
Changes: 
 sysfsutils (2.1.0+repack-1.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Support multi-arch: (closes: #663040)
 - Mark libsysfs2 as same.
 - Mark sysfsutils as foreign.
 - Adjust debhelper and cdbs build-dependencies.
 - Fixup -dev installation.
Checksums-Sha1: 
 00ea3e053a03fa438746b17038feb98415b07929 1361 sysfsutils_2.1.0+repack-1.2.dsc
 03caaf36315867b1d544fb82c0e8ac30dfcf63eb 8149 
sysfsutils_2.1.0+repack-1.2.debian.tar.gz
 d80e3090be522291d42eef014c5f01567737cb93 47712 
libsysfs-dev_2.1.0+repack-1.2_amd64.deb
 846a8f30ebf0df7f27e15bc32b9e955885f6d750 30330 
libsysfs2_2.1.0+repack-1.2_amd64.deb
 e79d1c8a78649815ff6b8bc0c8f09002c95f80cf 25518 
sysfsutils_2.1.0+repack-1.2_amd64.deb
 a64475a14c35803e7adc6a88043d29b7acb147cf 14470 
libsysfs2-udeb_2.1.0+repack-1.2_amd64.udeb
Checksums-Sha256: 
 97d5c23806498e14c949a3f187e5b206e81943ad0d57ad0c8f88ad5885f36fe9 1361 
sysfsutils_2.1.0+repack-1.2.dsc
 937d3609d278ee0e84e876a89c69a705c219300f1a360a7ee433d1639f9f5aeb 8149 
sysfsutils_2.1.0+repack-1.2.debian.tar.gz
 3ea1256985c22456b2753af9e1462e2f7a8f665f17a3f300b624627853472b4b 47712 
libsysfs-dev_2.1.0+repack-1.2_amd64.deb
 e3161421fe97f36e4213c5f4dcb965af323921956bc080fffe2c7f14d3732fec 30330 
libsysfs2_2.1.0+repack-1.2_amd64.deb
 a196f0af0af0b8d8902e46cefb40c544ec22b9e35743ce8fbc6c28da41e5be50 25518 
sysfsutils_2.1.0+repack-1.2_amd64.deb
 bc0708972265f6ee5c3ed0a8731783743467828f4451dcf2bcdf0d6d46f41b29 14470 
libsysfs2-udeb_2.1.0+repack-1.2_amd64.udeb
Files: 
 16a288cf21564614808e2e38d3d8aa42 1361 libs extra 
sysfsutils_2.1.0+repack-1.2.dsc
 9e3130c48556054adde0529bdafa9783 8149 libs extra 
sysfsutils_2.1.0+repack-1.2.debian.tar.gz
 1eedd850beee9f93bbfe2c730f0f9896 47712 libdevel optional 
libsysfs-dev_2.1.0+repack-1.2_amd64.deb
 0fc7801aa3422c3ee99ef18f74cac59b 30330 libs important 
libsysfs2_2.1.0+repack-1.2_amd64.deb
 715a9244f19b68d86c0e7a4c5e0b9749 25518 utils extra 
sysfsutils_2.1.0+repack-1.2_amd64.deb
 96b5e905475718f458c8c31e53eb718d 14470 debian-installer optional 
libsysfs2-udeb_2.1.0+repack-1.2_amd64.udeb
Package-Type: udeb

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

iEYEARECAAYFAk/cwSsACgkQLkAIIn9ODhGzjgCdFoHP0Q+0y6dlidhZlaKV0cd3
m7MAn1GD0pBKGS3MpbnRq6jViAEVQjLO
=2XPN
-END PGP SIGNATURE-


Accepted:
libsysfs-dev_2.1.0+repack-1.2_amd64.deb
  to main/s/sysfsutils/libsysfs-dev_2.1.0+repack-1.2_amd64.deb
libsysfs2-udeb_2.1.0+repack-1.2_amd64.udeb
  to main/s/sysfsutils/libsysfs2-udeb_2.1.0+repack-1.2_amd64.udeb
libsysfs2_2.1.0+repack-1.2_amd64.deb
  to main/s/sysfsutils/libsysfs2_2.1.0+repack-1.2_amd64.deb
sysfsutils_2.1.0+repack-1.2.debian.tar.gz
  to main/s/sysfsutils/sysfsutils_2.1.0+repack-1.2.debian.tar.gz
sysfsutils_2.1.0+repack-1.2.dsc
  to main/s/sysfsutils/sysfsutils_2.1.0+repack-1.2.dsc
sysfsutils_2.1.0+repack-1.2_amd64.deb
  to main/s/sysfsutils/sysfsutils_2.1.0+repack-1.2_amd64.deb


-- 
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/e1sh2xm-00039t...@franck.debian.org



  1   2   >